From 43fe2ae2bc5c26f561b7891a56c65c92aeaff25c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Montan=CC=83ana?= Date: Mon, 23 Dec 2024 15:06:56 +0100 Subject: [PATCH] Initial commit --- .gitignore | 24 + compile | 1 + data/.gitignore | 1 + data/balance-scale.arff | 632 +++++ data/balloons.arff | 23 + data/breast-cancer-wisc-diag.arff | 602 +++++ data/breast-cancer-wisc-prog.arff | 234 ++ data/breast-cancer-wisc.arff | 711 +++++ data/breast-cancer.arff | 298 +++ data/cardiotocography-10clases.arff | 2150 +++++++++++++++ data/cardiotocography-3clases.arff | 2150 +++++++++++++++ data/conn-bench-sonar-mines-rocks.arff | 271 ++ data/cylinder-bands.arff | 550 ++++ data/datasets.txt | 49 + data/dermatology.arff | 403 +++ data/echocardiogram.arff | 144 + data/fertility.arff | 112 + data/haberman-survival.arff | 312 +++ data/heart-hungarian.arff | 309 +++ data/hepatitis.arff | 177 ++ data/ilpd-indian-liver.arff | 595 +++++ data/ionosphere.arff | 387 +++ data/iris.arff | 157 ++ data/iris.csv | 150 ++ data/led-display.arff | 1010 +++++++ data/libras.arff | 453 ++++ data/low-res-spect.arff | 634 +++++ data/lymphography.arff | 169 ++ data/mammographic.arff | 969 +++++++ data/molec-biol-promoter.arff | 166 ++ data/musk-1.arff | 645 +++++ data/oocytes_merluccius_nucleus_4d.arff | 1066 ++++++++ data/oocytes_merluccius_states_2f.arff | 1050 ++++++++ data/oocytes_trisopterus_nucleus_2f.arff | 940 +++++++ data/oocytes_trisopterus_states_5b.arff | 947 +++++++ data/parkinsons.arff | 220 ++ data/pima.arff | 779 ++++++ data/pittsburg-bridges-MATERIAL.arff | 116 + data/pittsburg-bridges-REL-L.arff | 113 + data/pittsburg-bridges-SPAN.arff | 102 + data/pittsburg-bridges-T-OR-D.arff | 112 + data/planning.arff | 197 ++ data/post-operative.arff | 101 + data/seeds.arff | 220 ++ data/statlog-australian-credit.arff | 707 +++++ data/statlog-german-credit.arff | 1027 ++++++++ data/statlog-heart.arff | 286 ++ data/statlog-image.arff | 2331 +++++++++++++++++ data/statlog-vehicle.arff | 867 ++++++ data/synthetic-control.arff | 663 +++++ data/tic-tac-toe.arff | 970 +++++++ data/vertebral-column-2clases.arff | 319 +++ data/wine.arff | 194 ++ data/zoo.arff | 120 + deps | 1 + pom.xml | 88 + run | 1 + setup | 2 + src/main/java/com/testpbc4/App.java | 197 ++ src/test/java/com/testpbc4/AppTest.java | 38 + target/maven-archiver/pom.properties | 3 + .../compile/default-compile/createdFiles.lst | 1 + .../compile/default-compile/inputFiles.lst | 1 + .../default-testCompile/createdFiles.lst | 1 + .../default-testCompile/inputFiles.lst | 1 + .../TEST-com.testpbc4.AppTest.xml | 59 + .../surefire-reports/com.testpbc4.AppTest.txt | 4 + 67 files changed, 28332 insertions(+) create mode 100644 .gitignore create mode 100755 compile create mode 100644 data/.gitignore create mode 100755 data/balance-scale.arff create mode 100755 data/balloons.arff create mode 100755 data/breast-cancer-wisc-diag.arff create mode 100755 data/breast-cancer-wisc-prog.arff create mode 100755 data/breast-cancer-wisc.arff create mode 100755 data/breast-cancer.arff create mode 100755 data/cardiotocography-10clases.arff create mode 100755 data/cardiotocography-3clases.arff create mode 100755 data/conn-bench-sonar-mines-rocks.arff create mode 100755 data/cylinder-bands.arff create mode 100644 data/datasets.txt create mode 100755 data/dermatology.arff create mode 100755 data/echocardiogram.arff create mode 100755 data/fertility.arff create mode 100755 data/haberman-survival.arff create mode 100755 data/heart-hungarian.arff create mode 100755 data/hepatitis.arff create mode 100755 data/ilpd-indian-liver.arff create mode 100755 data/ionosphere.arff create mode 100644 data/iris.arff create mode 100755 data/iris.csv create mode 100755 data/led-display.arff create mode 100755 data/libras.arff create mode 100755 data/low-res-spect.arff create mode 100755 data/lymphography.arff create mode 100755 data/mammographic.arff create mode 100755 data/molec-biol-promoter.arff create mode 100755 data/musk-1.arff create mode 100755 data/oocytes_merluccius_nucleus_4d.arff create mode 100755 data/oocytes_merluccius_states_2f.arff create mode 100755 data/oocytes_trisopterus_nucleus_2f.arff create mode 100755 data/oocytes_trisopterus_states_5b.arff create mode 100755 data/parkinsons.arff create mode 100755 data/pima.arff create mode 100755 data/pittsburg-bridges-MATERIAL.arff create mode 100755 data/pittsburg-bridges-REL-L.arff create mode 100755 data/pittsburg-bridges-SPAN.arff create mode 100755 data/pittsburg-bridges-T-OR-D.arff create mode 100755 data/planning.arff create mode 100755 data/post-operative.arff create mode 100755 data/seeds.arff create mode 100755 data/statlog-australian-credit.arff create mode 100755 data/statlog-german-credit.arff create mode 100755 data/statlog-heart.arff create mode 100755 data/statlog-image.arff create mode 100755 data/statlog-vehicle.arff create mode 100755 data/synthetic-control.arff create mode 100755 data/tic-tac-toe.arff create mode 100755 data/vertebral-column-2clases.arff create mode 100755 data/wine.arff create mode 100755 data/zoo.arff create mode 100755 deps create mode 100644 pom.xml create mode 100755 run create mode 100755 setup create mode 100644 src/main/java/com/testpbc4/App.java create mode 100644 src/test/java/com/testpbc4/AppTest.java create mode 100644 target/maven-archiver/pom.properties create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst create mode 100644 target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst create mode 100644 target/surefire-reports/TEST-com.testpbc4.AppTest.xml create mode 100644 target/surefire-reports/com.testpbc4.AppTest.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..524f096 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.nar +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +replay_pid* diff --git a/compile b/compile new file mode 100755 index 0000000..0add8ca --- /dev/null +++ b/compile @@ -0,0 +1 @@ +mvn clean package diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 0000000..f47cb20 --- /dev/null +++ b/data/.gitignore @@ -0,0 +1 @@ +*.out diff --git a/data/balance-scale.arff b/data/balance-scale.arff new file mode 100755 index 0000000..c30a673 --- /dev/null +++ b/data/balance-scale.arff @@ -0,0 +1,632 @@ +@relation balance-scale +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'clase' {0,1,2} +@data +-1.41308,-1.41308,-1.41308,-1.41308,0 +-1.41308,-1.41308,-1.41308,-0.706541,2 +-1.41308,-1.41308,-1.41308,0,2 +-1.41308,-1.41308,-1.41308,0.706541,2 +-1.41308,-1.41308,-1.41308,1.41308,2 +-1.41308,-1.41308,-0.706541,-1.41308,2 +-1.41308,-1.41308,-0.706541,-0.706541,2 +-1.41308,-1.41308,-0.706541,0,2 +-1.41308,-1.41308,-0.706541,0.706541,2 +-1.41308,-1.41308,-0.706541,1.41308,2 +-1.41308,-1.41308,0,-1.41308,2 +-1.41308,-1.41308,0,-0.706541,2 +-1.41308,-1.41308,0,0,2 +-1.41308,-1.41308,0,0.706541,2 +-1.41308,-1.41308,0,1.41308,2 +-1.41308,-1.41308,0.706541,-1.41308,2 +-1.41308,-1.41308,0.706541,-0.706541,2 +-1.41308,-1.41308,0.706541,0,2 +-1.41308,-1.41308,0.706541,0.706541,2 +-1.41308,-1.41308,0.706541,1.41308,2 +-1.41308,-1.41308,1.41308,-1.41308,2 +-1.41308,-1.41308,1.41308,-0.706541,2 +-1.41308,-1.41308,1.41308,0,2 +-1.41308,-1.41308,1.41308,0.706541,2 +-1.41308,-1.41308,1.41308,1.41308,2 +-1.41308,-0.706541,-1.41308,-1.41308,1 +-1.41308,-0.706541,-1.41308,-0.706541,0 +-1.41308,-0.706541,-1.41308,0,2 +-1.41308,-0.706541,-1.41308,0.706541,2 +-1.41308,-0.706541,-1.41308,1.41308,2 +-1.41308,-0.706541,-0.706541,-1.41308,0 +-1.41308,-0.706541,-0.706541,-0.706541,2 +-1.41308,-0.706541,-0.706541,0,2 +-1.41308,-0.706541,-0.706541,0.706541,2 +-1.41308,-0.706541,-0.706541,1.41308,2 +-1.41308,-0.706541,0,-1.41308,2 +-1.41308,-0.706541,0,-0.706541,2 +-1.41308,-0.706541,0,0,2 +-1.41308,-0.706541,0,0.706541,2 +-1.41308,-0.706541,0,1.41308,2 +-1.41308,-0.706541,0.706541,-1.41308,2 +-1.41308,-0.706541,0.706541,-0.706541,2 +-1.41308,-0.706541,0.706541,0,2 +-1.41308,-0.706541,0.706541,0.706541,2 +-1.41308,-0.706541,0.706541,1.41308,2 +-1.41308,-0.706541,1.41308,-1.41308,2 +-1.41308,-0.706541,1.41308,-0.706541,2 +-1.41308,-0.706541,1.41308,0,2 +-1.41308,-0.706541,1.41308,0.706541,2 +-1.41308,-0.706541,1.41308,1.41308,2 +-1.41308,0,-1.41308,-1.41308,1 +-1.41308,0,-1.41308,-0.706541,1 +-1.41308,0,-1.41308,0,0 +-1.41308,0,-1.41308,0.706541,2 +-1.41308,0,-1.41308,1.41308,2 +-1.41308,0,-0.706541,-1.41308,1 +-1.41308,0,-0.706541,-0.706541,2 +-1.41308,0,-0.706541,0,2 +-1.41308,0,-0.706541,0.706541,2 +-1.41308,0,-0.706541,1.41308,2 +-1.41308,0,0,-1.41308,0 +-1.41308,0,0,-0.706541,2 +-1.41308,0,0,0,2 +-1.41308,0,0,0.706541,2 +-1.41308,0,0,1.41308,2 +-1.41308,0,0.706541,-1.41308,2 +-1.41308,0,0.706541,-0.706541,2 +-1.41308,0,0.706541,0,2 +-1.41308,0,0.706541,0.706541,2 +-1.41308,0,0.706541,1.41308,2 +-1.41308,0,1.41308,-1.41308,2 +-1.41308,0,1.41308,-0.706541,2 +-1.41308,0,1.41308,0,2 +-1.41308,0,1.41308,0.706541,2 +-1.41308,0,1.41308,1.41308,2 +-1.41308,0.706541,-1.41308,-1.41308,1 +-1.41308,0.706541,-1.41308,-0.706541,1 +-1.41308,0.706541,-1.41308,0,1 +-1.41308,0.706541,-1.41308,0.706541,0 +-1.41308,0.706541,-1.41308,1.41308,2 +-1.41308,0.706541,-0.706541,-1.41308,1 +-1.41308,0.706541,-0.706541,-0.706541,0 +-1.41308,0.706541,-0.706541,0,2 +-1.41308,0.706541,-0.706541,0.706541,2 +-1.41308,0.706541,-0.706541,1.41308,2 +-1.41308,0.706541,0,-1.41308,1 +-1.41308,0.706541,0,-0.706541,2 +-1.41308,0.706541,0,0,2 +-1.41308,0.706541,0,0.706541,2 +-1.41308,0.706541,0,1.41308,2 +-1.41308,0.706541,0.706541,-1.41308,0 +-1.41308,0.706541,0.706541,-0.706541,2 +-1.41308,0.706541,0.706541,0,2 +-1.41308,0.706541,0.706541,0.706541,2 +-1.41308,0.706541,0.706541,1.41308,2 +-1.41308,0.706541,1.41308,-1.41308,2 +-1.41308,0.706541,1.41308,-0.706541,2 +-1.41308,0.706541,1.41308,0,2 +-1.41308,0.706541,1.41308,0.706541,2 +-1.41308,0.706541,1.41308,1.41308,2 +-1.41308,1.41308,-1.41308,-1.41308,1 +-1.41308,1.41308,-1.41308,-0.706541,1 +-1.41308,1.41308,-1.41308,0,1 +-1.41308,1.41308,-1.41308,0.706541,1 +-1.41308,1.41308,-1.41308,1.41308,0 +-1.41308,1.41308,-0.706541,-1.41308,1 +-1.41308,1.41308,-0.706541,-0.706541,1 +-1.41308,1.41308,-0.706541,0,2 +-1.41308,1.41308,-0.706541,0.706541,2 +-1.41308,1.41308,-0.706541,1.41308,2 +-1.41308,1.41308,0,-1.41308,1 +-1.41308,1.41308,0,-0.706541,2 +-1.41308,1.41308,0,0,2 +-1.41308,1.41308,0,0.706541,2 +-1.41308,1.41308,0,1.41308,2 +-1.41308,1.41308,0.706541,-1.41308,1 +-1.41308,1.41308,0.706541,-0.706541,2 +-1.41308,1.41308,0.706541,0,2 +-1.41308,1.41308,0.706541,0.706541,2 +-1.41308,1.41308,0.706541,1.41308,2 +-1.41308,1.41308,1.41308,-1.41308,0 +-1.41308,1.41308,1.41308,-0.706541,2 +-1.41308,1.41308,1.41308,0,2 +-1.41308,1.41308,1.41308,0.706541,2 +-1.41308,1.41308,1.41308,1.41308,2 +-0.706541,-1.41308,-1.41308,-1.41308,1 +-0.706541,-1.41308,-1.41308,-0.706541,0 +-0.706541,-1.41308,-1.41308,0,2 +-0.706541,-1.41308,-1.41308,0.706541,2 +-0.706541,-1.41308,-1.41308,1.41308,2 +-0.706541,-1.41308,-0.706541,-1.41308,0 +-0.706541,-1.41308,-0.706541,-0.706541,2 +-0.706541,-1.41308,-0.706541,0,2 +-0.706541,-1.41308,-0.706541,0.706541,2 +-0.706541,-1.41308,-0.706541,1.41308,2 +-0.706541,-1.41308,0,-1.41308,2 +-0.706541,-1.41308,0,-0.706541,2 +-0.706541,-1.41308,0,0,2 +-0.706541,-1.41308,0,0.706541,2 +-0.706541,-1.41308,0,1.41308,2 +-0.706541,-1.41308,0.706541,-1.41308,2 +-0.706541,-1.41308,0.706541,-0.706541,2 +-0.706541,-1.41308,0.706541,0,2 +-0.706541,-1.41308,0.706541,0.706541,2 +-0.706541,-1.41308,0.706541,1.41308,2 +-0.706541,-1.41308,1.41308,-1.41308,2 +-0.706541,-1.41308,1.41308,-0.706541,2 +-0.706541,-1.41308,1.41308,0,2 +-0.706541,-1.41308,1.41308,0.706541,2 +-0.706541,-1.41308,1.41308,1.41308,2 +-0.706541,-0.706541,-1.41308,-1.41308,1 +-0.706541,-0.706541,-1.41308,-0.706541,1 +-0.706541,-0.706541,-1.41308,0,1 +-0.706541,-0.706541,-1.41308,0.706541,0 +-0.706541,-0.706541,-1.41308,1.41308,2 +-0.706541,-0.706541,-0.706541,-1.41308,1 +-0.706541,-0.706541,-0.706541,-0.706541,0 +-0.706541,-0.706541,-0.706541,0,2 +-0.706541,-0.706541,-0.706541,0.706541,2 +-0.706541,-0.706541,-0.706541,1.41308,2 +-0.706541,-0.706541,0,-1.41308,1 +-0.706541,-0.706541,0,-0.706541,2 +-0.706541,-0.706541,0,0,2 +-0.706541,-0.706541,0,0.706541,2 +-0.706541,-0.706541,0,1.41308,2 +-0.706541,-0.706541,0.706541,-1.41308,0 +-0.706541,-0.706541,0.706541,-0.706541,2 +-0.706541,-0.706541,0.706541,0,2 +-0.706541,-0.706541,0.706541,0.706541,2 +-0.706541,-0.706541,0.706541,1.41308,2 +-0.706541,-0.706541,1.41308,-1.41308,2 +-0.706541,-0.706541,1.41308,-0.706541,2 +-0.706541,-0.706541,1.41308,0,2 +-0.706541,-0.706541,1.41308,0.706541,2 +-0.706541,-0.706541,1.41308,1.41308,2 +-0.706541,0,-1.41308,-1.41308,1 +-0.706541,0,-1.41308,-0.706541,1 +-0.706541,0,-1.41308,0,1 +-0.706541,0,-1.41308,0.706541,1 +-0.706541,0,-1.41308,1.41308,1 +-0.706541,0,-0.706541,-1.41308,1 +-0.706541,0,-0.706541,-0.706541,1 +-0.706541,0,-0.706541,0,0 +-0.706541,0,-0.706541,0.706541,2 +-0.706541,0,-0.706541,1.41308,2 +-0.706541,0,0,-1.41308,1 +-0.706541,0,0,-0.706541,0 +-0.706541,0,0,0,2 +-0.706541,0,0,0.706541,2 +-0.706541,0,0,1.41308,2 +-0.706541,0,0.706541,-1.41308,1 +-0.706541,0,0.706541,-0.706541,2 +-0.706541,0,0.706541,0,2 +-0.706541,0,0.706541,0.706541,2 +-0.706541,0,0.706541,1.41308,2 +-0.706541,0,1.41308,-1.41308,1 +-0.706541,0,1.41308,-0.706541,2 +-0.706541,0,1.41308,0,2 +-0.706541,0,1.41308,0.706541,2 +-0.706541,0,1.41308,1.41308,2 +-0.706541,0.706541,-1.41308,-1.41308,1 +-0.706541,0.706541,-1.41308,-0.706541,1 +-0.706541,0.706541,-1.41308,0,1 +-0.706541,0.706541,-1.41308,0.706541,1 +-0.706541,0.706541,-1.41308,1.41308,1 +-0.706541,0.706541,-0.706541,-1.41308,1 +-0.706541,0.706541,-0.706541,-0.706541,1 +-0.706541,0.706541,-0.706541,0,1 +-0.706541,0.706541,-0.706541,0.706541,0 +-0.706541,0.706541,-0.706541,1.41308,2 +-0.706541,0.706541,0,-1.41308,1 +-0.706541,0.706541,0,-0.706541,1 +-0.706541,0.706541,0,0,2 +-0.706541,0.706541,0,0.706541,2 +-0.706541,0.706541,0,1.41308,2 +-0.706541,0.706541,0.706541,-1.41308,1 +-0.706541,0.706541,0.706541,-0.706541,0 +-0.706541,0.706541,0.706541,0,2 +-0.706541,0.706541,0.706541,0.706541,2 +-0.706541,0.706541,0.706541,1.41308,2 +-0.706541,0.706541,1.41308,-1.41308,1 +-0.706541,0.706541,1.41308,-0.706541,2 +-0.706541,0.706541,1.41308,0,2 +-0.706541,0.706541,1.41308,0.706541,2 +-0.706541,0.706541,1.41308,1.41308,2 +-0.706541,1.41308,-1.41308,-1.41308,1 +-0.706541,1.41308,-1.41308,-0.706541,1 +-0.706541,1.41308,-1.41308,0,1 +-0.706541,1.41308,-1.41308,0.706541,1 +-0.706541,1.41308,-1.41308,1.41308,1 +-0.706541,1.41308,-0.706541,-1.41308,1 +-0.706541,1.41308,-0.706541,-0.706541,1 +-0.706541,1.41308,-0.706541,0,1 +-0.706541,1.41308,-0.706541,0.706541,1 +-0.706541,1.41308,-0.706541,1.41308,0 +-0.706541,1.41308,0,-1.41308,1 +-0.706541,1.41308,0,-0.706541,1 +-0.706541,1.41308,0,0,1 +-0.706541,1.41308,0,0.706541,2 +-0.706541,1.41308,0,1.41308,2 +-0.706541,1.41308,0.706541,-1.41308,1 +-0.706541,1.41308,0.706541,-0.706541,1 +-0.706541,1.41308,0.706541,0,2 +-0.706541,1.41308,0.706541,0.706541,2 +-0.706541,1.41308,0.706541,1.41308,2 +-0.706541,1.41308,1.41308,-1.41308,1 +-0.706541,1.41308,1.41308,-0.706541,0 +-0.706541,1.41308,1.41308,0,2 +-0.706541,1.41308,1.41308,0.706541,2 +-0.706541,1.41308,1.41308,1.41308,2 +0,-1.41308,-1.41308,-1.41308,1 +0,-1.41308,-1.41308,-0.706541,1 +0,-1.41308,-1.41308,0,0 +0,-1.41308,-1.41308,0.706541,2 +0,-1.41308,-1.41308,1.41308,2 +0,-1.41308,-0.706541,-1.41308,1 +0,-1.41308,-0.706541,-0.706541,2 +0,-1.41308,-0.706541,0,2 +0,-1.41308,-0.706541,0.706541,2 +0,-1.41308,-0.706541,1.41308,2 +0,-1.41308,0,-1.41308,0 +0,-1.41308,0,-0.706541,2 +0,-1.41308,0,0,2 +0,-1.41308,0,0.706541,2 +0,-1.41308,0,1.41308,2 +0,-1.41308,0.706541,-1.41308,2 +0,-1.41308,0.706541,-0.706541,2 +0,-1.41308,0.706541,0,2 +0,-1.41308,0.706541,0.706541,2 +0,-1.41308,0.706541,1.41308,2 +0,-1.41308,1.41308,-1.41308,2 +0,-1.41308,1.41308,-0.706541,2 +0,-1.41308,1.41308,0,2 +0,-1.41308,1.41308,0.706541,2 +0,-1.41308,1.41308,1.41308,2 +0,-0.706541,-1.41308,-1.41308,1 +0,-0.706541,-1.41308,-0.706541,1 +0,-0.706541,-1.41308,0,1 +0,-0.706541,-1.41308,0.706541,1 +0,-0.706541,-1.41308,1.41308,1 +0,-0.706541,-0.706541,-1.41308,1 +0,-0.706541,-0.706541,-0.706541,1 +0,-0.706541,-0.706541,0,0 +0,-0.706541,-0.706541,0.706541,2 +0,-0.706541,-0.706541,1.41308,2 +0,-0.706541,0,-1.41308,1 +0,-0.706541,0,-0.706541,0 +0,-0.706541,0,0,2 +0,-0.706541,0,0.706541,2 +0,-0.706541,0,1.41308,2 +0,-0.706541,0.706541,-1.41308,1 +0,-0.706541,0.706541,-0.706541,2 +0,-0.706541,0.706541,0,2 +0,-0.706541,0.706541,0.706541,2 +0,-0.706541,0.706541,1.41308,2 +0,-0.706541,1.41308,-1.41308,1 +0,-0.706541,1.41308,-0.706541,2 +0,-0.706541,1.41308,0,2 +0,-0.706541,1.41308,0.706541,2 +0,-0.706541,1.41308,1.41308,2 +0,0,-1.41308,-1.41308,1 +0,0,-1.41308,-0.706541,1 +0,0,-1.41308,0,1 +0,0,-1.41308,0.706541,1 +0,0,-1.41308,1.41308,1 +0,0,-0.706541,-1.41308,1 +0,0,-0.706541,-0.706541,1 +0,0,-0.706541,0,1 +0,0,-0.706541,0.706541,1 +0,0,-0.706541,1.41308,2 +0,0,0,-1.41308,1 +0,0,0,-0.706541,1 +0,0,0,0,0 +0,0,0,0.706541,2 +0,0,0,1.41308,2 +0,0,0.706541,-1.41308,1 +0,0,0.706541,-0.706541,1 +0,0,0.706541,0,2 +0,0,0.706541,0.706541,2 +0,0,0.706541,1.41308,2 +0,0,1.41308,-1.41308,1 +0,0,1.41308,-0.706541,2 +0,0,1.41308,0,2 +0,0,1.41308,0.706541,2 +0,0,1.41308,1.41308,2 +0,0.706541,-1.41308,-1.41308,1 +0,0.706541,-1.41308,-0.706541,1 +0,0.706541,-1.41308,0,1 +0,0.706541,-1.41308,0.706541,1 +0,0.706541,-1.41308,1.41308,1 +0,0.706541,-0.706541,-1.41308,1 +0,0.706541,-0.706541,-0.706541,1 +0,0.706541,-0.706541,0,1 +0,0.706541,-0.706541,0.706541,1 +0,0.706541,-0.706541,1.41308,1 +0,0.706541,0,-1.41308,1 +0,0.706541,0,-0.706541,1 +0,0.706541,0,0,1 +0,0.706541,0,0.706541,0 +0,0.706541,0,1.41308,2 +0,0.706541,0.706541,-1.41308,1 +0,0.706541,0.706541,-0.706541,1 +0,0.706541,0.706541,0,0 +0,0.706541,0.706541,0.706541,2 +0,0.706541,0.706541,1.41308,2 +0,0.706541,1.41308,-1.41308,1 +0,0.706541,1.41308,-0.706541,1 +0,0.706541,1.41308,0,2 +0,0.706541,1.41308,0.706541,2 +0,0.706541,1.41308,1.41308,2 +0,1.41308,-1.41308,-1.41308,1 +0,1.41308,-1.41308,-0.706541,1 +0,1.41308,-1.41308,0,1 +0,1.41308,-1.41308,0.706541,1 +0,1.41308,-1.41308,1.41308,1 +0,1.41308,-0.706541,-1.41308,1 +0,1.41308,-0.706541,-0.706541,1 +0,1.41308,-0.706541,0,1 +0,1.41308,-0.706541,0.706541,1 +0,1.41308,-0.706541,1.41308,1 +0,1.41308,0,-1.41308,1 +0,1.41308,0,-0.706541,1 +0,1.41308,0,0,1 +0,1.41308,0,0.706541,1 +0,1.41308,0,1.41308,0 +0,1.41308,0.706541,-1.41308,1 +0,1.41308,0.706541,-0.706541,1 +0,1.41308,0.706541,0,1 +0,1.41308,0.706541,0.706541,2 +0,1.41308,0.706541,1.41308,2 +0,1.41308,1.41308,-1.41308,1 +0,1.41308,1.41308,-0.706541,1 +0,1.41308,1.41308,0,0 +0,1.41308,1.41308,0.706541,2 +0,1.41308,1.41308,1.41308,2 +0.706541,-1.41308,-1.41308,-1.41308,1 +0.706541,-1.41308,-1.41308,-0.706541,1 +0.706541,-1.41308,-1.41308,0,1 +0.706541,-1.41308,-1.41308,0.706541,0 +0.706541,-1.41308,-1.41308,1.41308,2 +0.706541,-1.41308,-0.706541,-1.41308,1 +0.706541,-1.41308,-0.706541,-0.706541,0 +0.706541,-1.41308,-0.706541,0,2 +0.706541,-1.41308,-0.706541,0.706541,2 +0.706541,-1.41308,-0.706541,1.41308,2 +0.706541,-1.41308,0,-1.41308,1 +0.706541,-1.41308,0,-0.706541,2 +0.706541,-1.41308,0,0,2 +0.706541,-1.41308,0,0.706541,2 +0.706541,-1.41308,0,1.41308,2 +0.706541,-1.41308,0.706541,-1.41308,0 +0.706541,-1.41308,0.706541,-0.706541,2 +0.706541,-1.41308,0.706541,0,2 +0.706541,-1.41308,0.706541,0.706541,2 +0.706541,-1.41308,0.706541,1.41308,2 +0.706541,-1.41308,1.41308,-1.41308,2 +0.706541,-1.41308,1.41308,-0.706541,2 +0.706541,-1.41308,1.41308,0,2 +0.706541,-1.41308,1.41308,0.706541,2 +0.706541,-1.41308,1.41308,1.41308,2 +0.706541,-0.706541,-1.41308,-1.41308,1 +0.706541,-0.706541,-1.41308,-0.706541,1 +0.706541,-0.706541,-1.41308,0,1 +0.706541,-0.706541,-1.41308,0.706541,1 +0.706541,-0.706541,-1.41308,1.41308,1 +0.706541,-0.706541,-0.706541,-1.41308,1 +0.706541,-0.706541,-0.706541,-0.706541,1 +0.706541,-0.706541,-0.706541,0,1 +0.706541,-0.706541,-0.706541,0.706541,0 +0.706541,-0.706541,-0.706541,1.41308,2 +0.706541,-0.706541,0,-1.41308,1 +0.706541,-0.706541,0,-0.706541,1 +0.706541,-0.706541,0,0,2 +0.706541,-0.706541,0,0.706541,2 +0.706541,-0.706541,0,1.41308,2 +0.706541,-0.706541,0.706541,-1.41308,1 +0.706541,-0.706541,0.706541,-0.706541,0 +0.706541,-0.706541,0.706541,0,2 +0.706541,-0.706541,0.706541,0.706541,2 +0.706541,-0.706541,0.706541,1.41308,2 +0.706541,-0.706541,1.41308,-1.41308,1 +0.706541,-0.706541,1.41308,-0.706541,2 +0.706541,-0.706541,1.41308,0,2 +0.706541,-0.706541,1.41308,0.706541,2 +0.706541,-0.706541,1.41308,1.41308,2 +0.706541,0,-1.41308,-1.41308,1 +0.706541,0,-1.41308,-0.706541,1 +0.706541,0,-1.41308,0,1 +0.706541,0,-1.41308,0.706541,1 +0.706541,0,-1.41308,1.41308,1 +0.706541,0,-0.706541,-1.41308,1 +0.706541,0,-0.706541,-0.706541,1 +0.706541,0,-0.706541,0,1 +0.706541,0,-0.706541,0.706541,1 +0.706541,0,-0.706541,1.41308,1 +0.706541,0,0,-1.41308,1 +0.706541,0,0,-0.706541,1 +0.706541,0,0,0,1 +0.706541,0,0,0.706541,0 +0.706541,0,0,1.41308,2 +0.706541,0,0.706541,-1.41308,1 +0.706541,0,0.706541,-0.706541,1 +0.706541,0,0.706541,0,0 +0.706541,0,0.706541,0.706541,2 +0.706541,0,0.706541,1.41308,2 +0.706541,0,1.41308,-1.41308,1 +0.706541,0,1.41308,-0.706541,1 +0.706541,0,1.41308,0,2 +0.706541,0,1.41308,0.706541,2 +0.706541,0,1.41308,1.41308,2 +0.706541,0.706541,-1.41308,-1.41308,1 +0.706541,0.706541,-1.41308,-0.706541,1 +0.706541,0.706541,-1.41308,0,1 +0.706541,0.706541,-1.41308,0.706541,1 +0.706541,0.706541,-1.41308,1.41308,1 +0.706541,0.706541,-0.706541,-1.41308,1 +0.706541,0.706541,-0.706541,-0.706541,1 +0.706541,0.706541,-0.706541,0,1 +0.706541,0.706541,-0.706541,0.706541,1 +0.706541,0.706541,-0.706541,1.41308,1 +0.706541,0.706541,0,-1.41308,1 +0.706541,0.706541,0,-0.706541,1 +0.706541,0.706541,0,0,1 +0.706541,0.706541,0,0.706541,1 +0.706541,0.706541,0,1.41308,1 +0.706541,0.706541,0.706541,-1.41308,1 +0.706541,0.706541,0.706541,-0.706541,1 +0.706541,0.706541,0.706541,0,1 +0.706541,0.706541,0.706541,0.706541,0 +0.706541,0.706541,0.706541,1.41308,2 +0.706541,0.706541,1.41308,-1.41308,1 +0.706541,0.706541,1.41308,-0.706541,1 +0.706541,0.706541,1.41308,0,1 +0.706541,0.706541,1.41308,0.706541,2 +0.706541,0.706541,1.41308,1.41308,2 +0.706541,1.41308,-1.41308,-1.41308,1 +0.706541,1.41308,-1.41308,-0.706541,1 +0.706541,1.41308,-1.41308,0,1 +0.706541,1.41308,-1.41308,0.706541,1 +0.706541,1.41308,-1.41308,1.41308,1 +0.706541,1.41308,-0.706541,-1.41308,1 +0.706541,1.41308,-0.706541,-0.706541,1 +0.706541,1.41308,-0.706541,0,1 +0.706541,1.41308,-0.706541,0.706541,1 +0.706541,1.41308,-0.706541,1.41308,1 +0.706541,1.41308,0,-1.41308,1 +0.706541,1.41308,0,-0.706541,1 +0.706541,1.41308,0,0,1 +0.706541,1.41308,0,0.706541,1 +0.706541,1.41308,0,1.41308,1 +0.706541,1.41308,0.706541,-1.41308,1 +0.706541,1.41308,0.706541,-0.706541,1 +0.706541,1.41308,0.706541,0,1 +0.706541,1.41308,0.706541,0.706541,1 +0.706541,1.41308,0.706541,1.41308,0 +0.706541,1.41308,1.41308,-1.41308,1 +0.706541,1.41308,1.41308,-0.706541,1 +0.706541,1.41308,1.41308,0,1 +0.706541,1.41308,1.41308,0.706541,0 +0.706541,1.41308,1.41308,1.41308,2 +1.41308,-1.41308,-1.41308,-1.41308,1 +1.41308,-1.41308,-1.41308,-0.706541,1 +1.41308,-1.41308,-1.41308,0,1 +1.41308,-1.41308,-1.41308,0.706541,1 +1.41308,-1.41308,-1.41308,1.41308,0 +1.41308,-1.41308,-0.706541,-1.41308,1 +1.41308,-1.41308,-0.706541,-0.706541,1 +1.41308,-1.41308,-0.706541,0,2 +1.41308,-1.41308,-0.706541,0.706541,2 +1.41308,-1.41308,-0.706541,1.41308,2 +1.41308,-1.41308,0,-1.41308,1 +1.41308,-1.41308,0,-0.706541,2 +1.41308,-1.41308,0,0,2 +1.41308,-1.41308,0,0.706541,2 +1.41308,-1.41308,0,1.41308,2 +1.41308,-1.41308,0.706541,-1.41308,1 +1.41308,-1.41308,0.706541,-0.706541,2 +1.41308,-1.41308,0.706541,0,2 +1.41308,-1.41308,0.706541,0.706541,2 +1.41308,-1.41308,0.706541,1.41308,2 +1.41308,-1.41308,1.41308,-1.41308,0 +1.41308,-1.41308,1.41308,-0.706541,2 +1.41308,-1.41308,1.41308,0,2 +1.41308,-1.41308,1.41308,0.706541,2 +1.41308,-1.41308,1.41308,1.41308,2 +1.41308,-0.706541,-1.41308,-1.41308,1 +1.41308,-0.706541,-1.41308,-0.706541,1 +1.41308,-0.706541,-1.41308,0,1 +1.41308,-0.706541,-1.41308,0.706541,1 +1.41308,-0.706541,-1.41308,1.41308,1 +1.41308,-0.706541,-0.706541,-1.41308,1 +1.41308,-0.706541,-0.706541,-0.706541,1 +1.41308,-0.706541,-0.706541,0,1 +1.41308,-0.706541,-0.706541,0.706541,1 +1.41308,-0.706541,-0.706541,1.41308,0 +1.41308,-0.706541,0,-1.41308,1 +1.41308,-0.706541,0,-0.706541,1 +1.41308,-0.706541,0,0,1 +1.41308,-0.706541,0,0.706541,2 +1.41308,-0.706541,0,1.41308,2 +1.41308,-0.706541,0.706541,-1.41308,1 +1.41308,-0.706541,0.706541,-0.706541,1 +1.41308,-0.706541,0.706541,0,2 +1.41308,-0.706541,0.706541,0.706541,2 +1.41308,-0.706541,0.706541,1.41308,2 +1.41308,-0.706541,1.41308,-1.41308,1 +1.41308,-0.706541,1.41308,-0.706541,0 +1.41308,-0.706541,1.41308,0,2 +1.41308,-0.706541,1.41308,0.706541,2 +1.41308,-0.706541,1.41308,1.41308,2 +1.41308,0,-1.41308,-1.41308,1 +1.41308,0,-1.41308,-0.706541,1 +1.41308,0,-1.41308,0,1 +1.41308,0,-1.41308,0.706541,1 +1.41308,0,-1.41308,1.41308,1 +1.41308,0,-0.706541,-1.41308,1 +1.41308,0,-0.706541,-0.706541,1 +1.41308,0,-0.706541,0,1 +1.41308,0,-0.706541,0.706541,1 +1.41308,0,-0.706541,1.41308,1 +1.41308,0,0,-1.41308,1 +1.41308,0,0,-0.706541,1 +1.41308,0,0,0,1 +1.41308,0,0,0.706541,1 +1.41308,0,0,1.41308,0 +1.41308,0,0.706541,-1.41308,1 +1.41308,0,0.706541,-0.706541,1 +1.41308,0,0.706541,0,1 +1.41308,0,0.706541,0.706541,2 +1.41308,0,0.706541,1.41308,2 +1.41308,0,1.41308,-1.41308,1 +1.41308,0,1.41308,-0.706541,1 +1.41308,0,1.41308,0,0 +1.41308,0,1.41308,0.706541,2 +1.41308,0,1.41308,1.41308,2 +1.41308,0.706541,-1.41308,-1.41308,1 +1.41308,0.706541,-1.41308,-0.706541,1 +1.41308,0.706541,-1.41308,0,1 +1.41308,0.706541,-1.41308,0.706541,1 +1.41308,0.706541,-1.41308,1.41308,1 +1.41308,0.706541,-0.706541,-1.41308,1 +1.41308,0.706541,-0.706541,-0.706541,1 +1.41308,0.706541,-0.706541,0,1 +1.41308,0.706541,-0.706541,0.706541,1 +1.41308,0.706541,-0.706541,1.41308,1 +1.41308,0.706541,0,-1.41308,1 +1.41308,0.706541,0,-0.706541,1 +1.41308,0.706541,0,0,1 +1.41308,0.706541,0,0.706541,1 +1.41308,0.706541,0,1.41308,1 +1.41308,0.706541,0.706541,-1.41308,1 +1.41308,0.706541,0.706541,-0.706541,1 +1.41308,0.706541,0.706541,0,1 +1.41308,0.706541,0.706541,0.706541,1 +1.41308,0.706541,0.706541,1.41308,0 +1.41308,0.706541,1.41308,-1.41308,1 +1.41308,0.706541,1.41308,-0.706541,1 +1.41308,0.706541,1.41308,0,1 +1.41308,0.706541,1.41308,0.706541,0 +1.41308,0.706541,1.41308,1.41308,2 +1.41308,1.41308,-1.41308,-1.41308,1 +1.41308,1.41308,-1.41308,-0.706541,1 +1.41308,1.41308,-1.41308,0,1 +1.41308,1.41308,-1.41308,0.706541,1 +1.41308,1.41308,-1.41308,1.41308,1 +1.41308,1.41308,-0.706541,-1.41308,1 +1.41308,1.41308,-0.706541,-0.706541,1 +1.41308,1.41308,-0.706541,0,1 +1.41308,1.41308,-0.706541,0.706541,1 +1.41308,1.41308,-0.706541,1.41308,1 +1.41308,1.41308,0,-1.41308,1 +1.41308,1.41308,0,-0.706541,1 +1.41308,1.41308,0,0,1 +1.41308,1.41308,0,0.706541,1 +1.41308,1.41308,0,1.41308,1 +1.41308,1.41308,0.706541,-1.41308,1 +1.41308,1.41308,0.706541,-0.706541,1 +1.41308,1.41308,0.706541,0,1 +1.41308,1.41308,0.706541,0.706541,1 +1.41308,1.41308,0.706541,1.41308,1 +1.41308,1.41308,1.41308,-1.41308,1 +1.41308,1.41308,1.41308,-0.706541,1 +1.41308,1.41308,1.41308,0,1 +1.41308,1.41308,1.41308,0.706541,1 +1.41308,1.41308,1.41308,1.41308,0 diff --git a/data/balloons.arff b/data/balloons.arff new file mode 100755 index 0000000..c73af6e --- /dev/null +++ b/data/balloons.arff @@ -0,0 +1,23 @@ +@relation balloons +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'clase' {0,1} +@data +0.968246,-0.968246,0.968246,0.968246,1 +0.968246,-0.968246,0.968246,-0.968246,1 +0.968246,-0.968246,-0.968246,0.968246,1 +0.968246,-0.968246,-0.968246,-0.968246,1 +0.968246,0.968246,0.968246,0.968246,1 +0.968246,0.968246,0.968246,-0.968246,0 +0.968246,0.968246,-0.968246,0.968246,0 +0.968246,0.968246,-0.968246,-0.968246,0 +-0.968246,-0.968246,0.968246,0.968246,1 +-0.968246,-0.968246,0.968246,-0.968246,0 +-0.968246,-0.968246,-0.968246,0.968246,0 +-0.968246,-0.968246,-0.968246,-0.968246,0 +-0.968246,0.968246,0.968246,0.968246,1 +-0.968246,0.968246,0.968246,-0.968246,0 +-0.968246,0.968246,-0.968246,0.968246,0 +-0.968246,0.968246,-0.968246,-0.968246,0 diff --git a/data/breast-cancer-wisc-diag.arff b/data/breast-cancer-wisc-diag.arff new file mode 100755 index 0000000..4f71f85 --- /dev/null +++ b/data/breast-cancer-wisc-diag.arff @@ -0,0 +1,602 @@ +@relation breast-cancer-wisc-diag +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'clase' {0,1} +@data +1.0961,-2.07151,1.26882,0.98351,1.56709,3.28063,2.65054,2.53025,2.21557,2.25376,2.48755,-0.564768,2.83054,2.48539,-0.213814,1.3157,0.72339,0.660239,1.14775,0.906286,1.88503,-1.3581,2.30158,1.99948,1.30654,2.61436,2.10767,2.29406,2.7482,1.93531,1 +1.82821,-0.353322,1.68447,1.90703,-0.826235,-0.486643,-0.0238249,0.547662,0.00139114,-0.867889,0.498816,-0.875473,0.263095,0.741749,-0.604819,-0.692317,-0.440393,0.259933,-0.804742,-0.0993563,1.80434,-0.368879,1.53378,1.88883,-0.375282,-0.430066,-0.14662,1.08613,-0.243675,0.280943,1 +1.5785,0.455786,1.56513,1.55751,0.941382,1.052,1.36228,2.03544,0.938859,-0.397658,1.2276,-0.779398,0.85018,1.1803,-0.296744,0.814257,0.212889,1.42357,0.236827,0.293301,1.51054,-0.0239533,1.34629,1.455,0.526944,1.08198,0.854222,1.95328,1.15124,0.201214,1 +-0.768233,0.253509,-0.592166,-0.763792,3.28067,3.39992,1.91421,1.45043,2.86486,4.9066,0.326087,-0.110312,0.286341,-0.288125,0.689095,2.74187,0.818798,1.11403,4.72852,2.04571,-0.281217,0.133866,-0.24972,-0.549538,3.39129,3.88997,1.98784,2.17387,6.04073,4.93067,1 +1.74876,-1.1508,1.77501,1.82462,0.280125,0.538866,1.36981,1.42724,-0.00955206,-0.561956,1.26943,-0.789549,1.27207,1.18931,1.48176,-0.0484772,0.827742,1.1432,-0.360775,0.498889,1.29743,-1.46548,1.33736,1.21965,0.220362,-0.313119,0.61264,0.728618,-0.86759,-0.396751,1 +-0.475956,-0.834601,-0.386808,-0.505206,2.23545,1.24324,0.86554,0.823931,1.00452,1.88834,-0.254846,-0.592141,-0.321022,-0.289004,0.156209,0.445152,0.159885,-0.0690628,0.134001,0.486418,-0.165353,-0.31356,-0.114908,-0.244105,2.04671,1.7201,1.26213,0.905091,1.75253,2.23983,1 +1.16988,0.160508,1.13712,1.09433,-0.123028,0.0882176,0.299809,0.646366,-0.0642681,-0.761662,0.149751,-0.804232,0.155274,0.298365,-0.908231,-0.650995,-0.309869,-0.227889,-0.828937,-0.61068,1.36778,0.322599,1.36712,1.2741,0.518184,0.0211963,0.509104,1.19566,0.262245,-0.0147175,1 +-0.118413,0.358135,-0.0728028,-0.218772,1.60264,1.1391,0.0609721,0.281702,1.40212,1.65889,0.643057,0.290306,0.48962,0.233517,0.587514,0.268696,-0.23235,0.434966,-0.687399,0.611131,0.163619,0.400695,0.0993612,0.0288341,1.44669,0.724148,-0.0210353,0.623647,0.477221,1.72492,1 +-0.319885,0.588312,-0.183919,-0.38387,2.1999,1.68253,1.21802,1.14968,1.96387,1.57108,-0.356536,-0.389475,-0.227543,-0.352093,-0.436293,0.532821,0.120462,0.0751769,0.107387,-0.0173479,-0.161215,0.82209,-0.0315813,-0.248145,1.6613,1.81671,1.27891,1.39039,2.38776,1.28752,1 +-0.473118,1.10447,-0.329192,-0.508616,1.58131,2.5611,1.73734,0.940932,0.796597,2.78065,-0.387909,0.692736,-0.40906,-0.360447,0.0359768,2.60729,1.50852,0.409035,-0.320854,2.37526,-0.243975,2.44096,-0.286026,-0.297148,2.31826,5.10838,3.99192,1.61859,2.36836,6.84084,1 +0.537083,0.918465,0.441622,0.406096,-1.01679,-0.712915,-0.700068,-0.40433,-1.03457,-0.825398,-0.0925744,-0.0541168,-0.197867,0.00380121,-1.00315,-0.905125,-0.691833,-0.681514,-0.718852,-0.284537,0.604317,1.3346,0.492189,0.473195,-0.624927,-0.630274,-0.605339,-0.226011,0.0763637,0.0317908,1 +0.46898,-0.325421,0.478661,0.358357,0.0525961,0.470701,0.13473,0.441742,0.110823,-0.2801,0.362868,-0.420473,0.345198,0.303861,-0.422971,0.844969,-0.131972,0.165934,-0.0559252,0.13193,0.858805,0.260773,0.870136,0.734894,0.316716,1.94891,0.595863,1.01006,1.44057,1.15464,1 +1.43094,1.28117,1.6639,1.33019,0.073927,2.6785,1.47643,1.62052,2.13532,2.1532,1.9845,4.26204,4.05763,1.66765,-1.29957,3.21037,1.8885,4.71678,2.93934,3.41831,0.970531,0.693556,1.32248,0.792854,-1.25561,0.864612,0.439601,0.944646,0.444893,1.01622,1 +0.488843,1.08354,0.482776,0.363188,-0.878141,-0.0784088,0.132723,0.121663,0.129062,-1.33387,-0.0067507,-0.251706,0.0182707,-0.0825895,0.908578,0.322861,0.616718,1.31661,1.12113,-0.299653,0.118101,0.322599,0.141025,-0.00717147,-0.843913,-0.393202,-0.191677,-0.0411703,-0.14831,-1.16691,1 +-0.112737,0.771989,0.0671208,-0.217636,1.19024,2.36608,1.55546,0.807437,0.938859,1.98607,-0.696225,-0.0867462,-0.398179,-0.464423,-0.203822,1.89198,0.765793,0.726686,-0.112782,1.62433,-0.256389,1.03035,0.0457938,-0.32121,1.43355,3.2938,2.02331,1.61555,1.12376,3.2752,1 +0.117112,1.91822,0.195933,0.0111132,1.24712,1.04443,0.942058,0.637089,1.79243,1.12918,-0.126832,-0.33328,0.00640045,-0.171178,-0.477592,0.944924,0.514021,-0.145234,-0.238593,0.631539,0.246379,1.86337,0.501116,0.109978,1.5518,2.56415,2.06309,0.860973,2.12914,2.77689,1 +0.156839,0.195384,0.114036,0.0841424,0.164228,-0.612371,-0.186269,0.0946027,-0.822997,-0.506718,0.243508,0.0419589,0.162693,0.111295,-0.440623,-0.773844,-0.394676,-0.114442,-0.779338,-0.646205,0.579489,0.846495,0.480285,0.452119,0.614538,-0.426888,0.0920867,0.704277,0.207289,-0.0988755,1 +0.568298,0.32326,0.663854,0.408938,1.46754,1.85294,1.04617,1.38858,1.28539,1.52434,0.591491,-0.26077,0.488631,0.3043,-0.00498878,-0.0261411,-0.000454393,0.190245,-0.441826,0.131174,0.970531,0.944115,0.879064,0.762996,2.03795,1.07435,0.988435,1.41017,1.30156,1.67509,1 +1.61255,0.665038,1.56513,1.71948,0.138631,-0.0310717,0.741355,1.18705,-0.837588,-1.25314,1.27303,-0.362284,1.48326,1.58411,-0.182173,-0.365651,0.0667952,0.553275,-0.844663,-0.679462,2.28642,0.846495,2.36705,2.66514,0.824766,0.38602,1.27028,1.88939,-0.214581,-0.431632,1 +-0.166653,-1.14615,-0.185565,-0.251735,0.101657,-0.436466,-0.277965,-0.0285841,0.267676,-0.727669,-0.487796,-0.776316,-0.399662,-0.3688,0.473276,-0.60744,-0.265809,0.219417,-0.0897974,-0.564952,-0.239837,-1.04409,-0.225019,-0.297499,0.509425,-0.489175,-0.159083,0.215933,0.123238,-0.628739,0 +-0.297184,-0.832276,-0.260877,-0.383301,0.792066,0.429044,-0.540886,-0.459223,0.56679,0.752425,-0.793227,-0.850457,-0.733514,-0.564223,-0.980503,-0.362859,-0.49406,-0.85995,-0.455133,-0.517712,-0.366046,-0.843964,-0.332451,-0.439238,-0.0511813,0.148312,-0.398748,-0.635551,0.457824,-0.117147,0 +-1.31193,-1.59256,-1.30166,-1.08262,0.429441,-0.746429,-0.743094,-0.725698,0.0123343,0.885562,-0.461111,-0.435157,-0.473357,-0.541581,0.85429,-0.623075,-0.398983,0.391208,-0.0329405,-0.312503,-1.24951,-1.62981,-1.25381,-0.993547,0.0013755,-0.886413,-0.87966,-0.796202,-0.728583,-0.344152,0 +0.344124,-1.1694,0.433391,0.14069,0.777846,2.06691,1.49148,1.25354,2.58763,1.06544,0.121264,-0.919523,0.256171,0.100524,-0.0839225,1.55247,1.07885,1.73798,1.95705,0.22641,0.372588,-1.07337,0.530876,0.176193,0.290438,2.16819,1.7175,1.89699,2.85488,0.858975,1 +1.99563,0.871965,1.86143,2.12868,-0.147914,-0.0405391,0.262177,0.963869,-0.155461,-1.41885,1.03323,-0.162882,0.710704,1.17942,-0.770346,-0.719679,-0.488428,-0.229509,-1.17492,-0.683241,2.66918,1.61282,2.40276,3.04627,0.338615,0.0364503,0.207605,1.31281,-0.127297,-0.480909,1 +0.715855,0.486011,0.742046,0.709579,1.11914,0.783125,0.799057,1.10252,0.668926,0.0711564,1.44829,-0.571294,1.28048,1.36869,-0.330715,-0.371793,-0.148536,-0.0804075,-0.709174,-0.375615,2.10848,0.957132,2.0754,2.34373,2.10803,0.658048,0.945774,1.44364,1.15124,0.647473,1 +0.8549,-0.671849,0.98897,0.732596,1.58131,2.33389,1.68215,2.34985,4.48081,1.60507,2.31085,-0.436607,2.18114,1.56213,0.329064,0.698667,0.179761,1.97298,0.306991,1.37906,1.23743,-0.695907,1.34331,1.01943,0.969297,0.893848,0.542178,2.13584,1.88345,1.21554,1 +0.128463,0.520887,0.223917,-0.0286692,0.64275,1.56135,0.673618,1.00278,1.60639,0.912473,-0.543329,-0.423555,-0.373943,-0.423976,-0.862269,0.283215,-0.168413,0.279381,-0.72611,-0.0317088,0.279483,1.22559,0.450525,0.0286584,0.881702,2.6061,1.35033,2.36556,2.20349,2.41147,1 +1.27203,0.223284,1.24001,1.24778,-0.139382,0.0427741,0.755153,0.731669,-0.418098,-0.822565,1.61452,1.14592,1.36802,1.16953,1.2353,0.0972662,0.626656,1.18534,0.288845,0.159518,1.04295,0.257519,0.971319,0.917556,0.0626918,-0.270535,0.347091,0.52324,-0.904766,-0.539044,1 +0.332773,1.39044,0.429276,0.220255,0.841838,1.23756,0.997251,0.994537,0.417233,0.368592,0.121985,-0.371348,0.312555,0.0695285,-0.602154,0.284332,0.128082,-0.156579,-0.346258,-0.31288,0.82777,1.79504,1.25106,0.682203,1.38975,2.26734,1.73188,1.33563,1.82041,0.820218,1 +0.976918,-0.985727,0.947816,0.85308,0.150007,0.215081,0.124821,0.788882,-0.264893,-0.185204,0.703639,-0.714864,0.884802,0.456418,-0.470931,0.27093,0.0720957,0.282623,-0.156332,-0.0199934,0.773975,-1.00178,0.822521,0.608435,-0.300826,0.171193,-0.111629,0.471515,-0.233977,-0.263316,1 +1.27771,1.35324,1.35113,1.23073,0.713853,1.59732,1.79505,1.94524,1.3547,-0.117219,1.53447,0.45164,1.33934,1.42144,-0.264105,0.461346,0.664753,-0.0350287,-0.057135,0.289144,1.42364,1.35575,1.58437,1.38651,0.732791,1.08961,1.63505,1.06787,0.878077,0.768173,1 +-0.649052,-0.137095,-0.577762,-0.608924,1.03382,0.894841,0.413958,0.0747588,1.78513,2.15179,0.278847,-0.338718,0.301179,0.0145726,-0.496243,0.483682,0.336456,-0.219785,0.264651,0.7075,0.113963,0.397441,0.361246,0.0142562,1.37223,2.05442,2.02954,0.608434,3.00682,3.11463,1 +0.820848,1.09052,0.857277,0.694519,1.65952,0.856971,1.91798,1.83958,1.5918,0.144807,0.705802,0.328373,0.560347,0.60326,0.408664,0.298292,0.613736,-0.10958,0.0577885,0.0223335,0.953979,1.04336,0.858232,0.81393,1.35909,0.645972,1.37382,1.06635,1.01708,0.048401,1 +1.45932,1.66945,1.4787,1.44101,-0.167112,1.27922,0.964637,0.696105,0.150948,-0.0265723,0.54317,-1.10696,0.327393,0.611833,-0.67476,0.430075,0.101911,-0.348953,-0.618445,0.0382061,1.63054,0.849749,1.61115,1.63767,0.811627,2.57242,1.61492,0.97203,1.24661,1.56989,1 +0.568298,-0.327746,0.618584,0.432807,0.543206,0.976261,0.584556,0.737081,0.67987,0.333183,-0.256649,-0.962848,-0.337838,-0.116662,-0.951195,0.178793,-0.174044,-0.442303,-0.42489,0.00835054,0.815356,0.257519,0.757049,0.668152,0.535703,2.07285,1.22331,1.09221,2.21319,2.17893,1 +0.741394,0.534837,0.746162,0.609839,-0.0185067,0.554014,0.57703,0.290207,0.307801,-0.883469,0.203121,-0.538665,0.0702033,0.106679,-0.421306,-0.0272579,0.167504,0.0249361,0.888867,-0.427012,0.773975,0.543872,0.780857,0.611948,1.04813,0.821392,1.28802,1.01463,3.17169,0.132005,1 +0.0348202,0.565062,0.0683554,-0.0622001,0.132942,0.103365,0.540652,0.181967,0.267676,-0.219197,-0.429739,-0.358659,-0.1034,-0.339124,-0.387335,0.249711,0.538536,-0.0301667,-0.0317308,0.0858239,-0.0784546,0.761891,0.266015,-0.142236,0.535703,1.07753,1.18113,0.457823,1.11568,0.966387,1 +-0.311372,-0.202195,-0.385162,-0.372503,-0.464322,-1.26259,-0.792517,-0.507415,-1.25708,-0.590283,-0.797915,2.03961,-0.838863,-0.575434,-0.895575,-1.14915,-0.611664,-0.0253047,0.74612,-0.762604,-0.614327,-0.466499,-0.678556,-0.587827,-1.54861,-1.32248,-1.07302,-0.98089,-1.47696,-1.23224,0 +0.244806,1.37417,0.14696,0.124777,-0.177066,-1.00413,-0.813089,-0.5136,-0.899599,-1.09876,2.91666,1.76044,2.57731,1.44343,-0.0526155,-0.811816,-0.454306,1.19506,-1.53154,-0.771296,-0.264665,-0.0776445,-0.348819,-0.319278,-1.68614,-1.28994,-1.18974,-1.3025,-2.15906,-1.60043,1 +-0.183678,0.35581,-0.14688,-0.27191,0.372559,0.400642,0.219527,0.140991,-0.3342,0.197212,-0.69298,-1.13379,-0.65339,-0.479591,-0.557525,-0.172443,-0.0465021,0.133521,-0.819259,-0.229738,-0.152939,0.05577,0.0011543,-0.246213,1.25398,1.06927,1.10635,1.69161,-0.151543,1.28198,1 +-0.195029,0.532512,-0.238242,-0.261112,-1.04808,-0.833719,-0.723776,-0.737295,-0.100745,-0.981197,-0.601026,-0.707613,-0.640036,-0.435406,-1.25261,-0.807348,-0.596094,-0.796582,-0.81563,-0.948162,-0.0701785,0.743994,-0.141692,-0.162786,-1.00596,-0.317568,-0.305278,-0.0518196,0.150716,-0.691303,1 +-0.901603,0.479036,-0.825921,-0.806416,1.87283,0.330583,0.195694,0.200265,0.304153,0.83599,-0.607877,0.382756,-0.516387,-0.513664,0.340721,-0.437685,-0.196903,-0.23113,-0.843453,-0.285292,-0.709501,1.57214,-0.59642,-0.643855,2.56352,0.0987371,0.623664,0.422833,0.102225,0.670727,1 +1.40257,1.28349,1.49516,1.27619,-0.394641,2.17105,1.52911,1.30637,1.81796,0.0895691,2.07682,0.81419,2.94974,1.41925,-0.164188,4.19484,2.16445,2.36356,3.9664,1.4554,1.61813,1.21908,2.08731,1.35313,-0.335864,3.1152,2.16663,2.04912,2.85973,1.09927,1 +-0.240431,0.230259,-0.191326,-0.311693,0.550316,0.743362,0.121308,0.326287,0.592324,0.71135,-0.125389,-0.710513,-0.217157,-0.197997,-0.655776,-0.223816,-0.332727,-0.362404,-0.405534,-0.180609,0.229827,0.377917,0.17376,0.046749,0.903601,0.750843,0.451585,0.526282,1.3549,1.03836,1 +-0.271645,0.585987,-0.269519,-0.350623,0.0554403,0.0067979,-0.0778892,0.0927987,-0.239359,-0.145546,-0.762215,-1.0959,-0.757749,-0.56818,-1.22929,-0.649878,-0.575554,-0.80112,-1.13863,-0.784145,-0.00810839,0.685421,-0.0524131,-0.245686,0.785348,0.865247,0.482262,0.701234,1.28055,0.677371,1 +1.28338,-0.392847,1.30586,1.19663,0.962713,1.21673,1.36228,1.33961,0.347926,-0.32684,0.806771,-1.00345,0.705758,0.686354,-0.248784,0.807556,0.783351,0.835271,0.452157,-0.0982226,1.35537,-0.708923,1.28975,1.2056,1.55618,1.61905,2.216,1.87417,1.45188,0.437632,1 +-1.68309,-0.569549,-1.65682,-1.28721,-0.736646,-0.850381,-0.914695,-1.10822,-0.155461,0.316186,-0.897442,-0.471593,-0.876452,-0.706339,0.641802,-0.503577,-0.5305,-0.952814,0.628777,-0.458379,-1.51145,-0.604795,-1.48802,-1.12124,-0.116877,-0.753576,-0.974903,-1.35346,0.330132,-0.545688,0 +-0.271645,-0.146395,-0.246473,-0.341814,1.38222,0.355199,0.423994,0.630904,1.15408,0.704268,-0.425772,-0.585796,-0.479292,-0.353632,-0.169517,-0.118278,-0.0942063,0.0573495,-0.376501,-0.0574073,-0.123973,0.369782,-0.132764,-0.212842,2.02481,1.03177,1.09485,1.43299,1.61514,1.87994,1 +-0.589462,-1.08338,-0.573235,-0.584202,0.479213,-0.254124,-0.286997,-0.552257,-0.498348,-0.335338,-0.510514,-0.883631,-0.503527,-0.449915,-0.517226,-0.625867,-0.287342,-0.994466,-0.757563,-0.518846,-0.519153,-0.809797,-0.517259,-0.523368,0.745931,-0.245747,0.157276,-0.747368,-0.248524,-0.0518135,0 +-0.180841,0.699913,-0.208199,-0.266795,-0.628569,-0.518075,-0.51793,-0.388609,-0.00955206,-0.795655,-0.617974,0.2468,-0.559417,-0.442661,-0.86127,-0.650995,-0.362542,0.00710873,-0.499893,-0.694956,-0.231561,0.999434,-0.245851,-0.319278,-0.708142,-0.528581,-0.21085,0.206805,-0.0480959,-0.818094,0 +-0.671753,0.537162,-0.709867,-0.645013,-0.710338,-1.03537,-0.90604,-0.97336,-1.15494,-0.554874,0.0037068,-0.0124235,-0.114281,-0.260866,-0.394329,-0.877819,-0.669637,-0.705176,0.425544,-0.765627,-0.680535,0.00695981,-0.7226,-0.639464,-1.04538,-1.06851,-1.03995,-1.17836,-0.756061,-1.01409,0 +-0.138276,-0.6858,-0.195853,-0.236106,-1.38724,-0.828417,-0.880952,-0.816671,-1.67292,-0.46281,-0.786015,-0.531957,-0.700871,-0.566861,-0.853943,-0.765468,-0.699121,-0.62236,-0.882164,-0.470095,-0.330873,-0.404673,-0.332749,-0.393221,-1.02786,-0.610571,-0.801386,-0.437322,-0.896684,-0.204627,0 +-0.620676,-0.244046,-0.669124,-0.617449,-0.977685,-1.07608,-0.866526,-0.913055,0.205664,-0.240442,-0.641413,-1.05856,-0.665755,-0.502673,0.0562931,-0.954767,-0.622265,-0.615229,-0.0704419,-0.438349,-0.655707,-0.707296,-0.702066,-0.620671,-0.786977,-1.05001,-0.863555,-0.785705,-0.187103,-0.546242,0 +1.16137,-0.137095,1.16593,1.07444,1.31112,0.836143,1.10889,1.47105,1.02276,0.0428293,1.54529,0.681859,0.994602,1.28537,-1.04645,0.230725,-0.123359,-0.417183,0.749749,0.503046,0.896047,-0.251734,0.828473,0.773534,-0.191333,-0.156131,-0.0473985,0.272222,0.194358,-0.225666,1 +0.27602,0.634813,0.217744,0.16456,-0.412417,-0.634903,-0.45496,-0.401495,-0.713565,-0.843811,-0.341391,-0.694198,-0.380373,-0.229212,-0.787998,-0.847553,-0.525531,-0.417183,-1.1604,-0.818536,0.378796,0.978283,0.310655,0.262431,0.286058,-0.30867,-0.0047381,0.584093,-0.364902,-0.288785,1 +-0.739857,-0.125469,-0.766659,-0.698719,-0.0796552,-0.939375,-0.733059,-0.67364,0.395346,-0.527963,-0.289464,-0.467242,-0.337838,-0.370778,0.428647,-0.93567,-0.609676,-0.506644,1.40784,-0.532451,-0.709501,-0.521817,-0.757419,-0.657554,-0.327105,-1.06183,-0.869642,-0.782662,0.65502,-0.752207,0 +1.44229,-0.16732,1.37993,1.41259,0.63564,0.423364,0.54567,1.05716,0.384403,-0.45148,1.16233,-0.0432403,0.974818,1.36649,-0.194163,-0.13503,-0.0809551,0.580826,-0.244642,-0.448553,2.04228,0.400695,1.87006,2.22078,1.3153,0.615464,0.554641,1.43755,1.0284,-0.0556892,1 +0.165352,0.534837,0.147371,0.00571417,1.2329,0.608925,0.508038,0.832693,0.785654,0.677358,0.0628458,-0.121188,-0.0648213,-0.00543138,-1.12638,0.171534,-0.204522,0.149728,-0.286982,0.118325,0.331208,0.817209,0.251135,0.184273,0.194084,1.11058,0.414676,1.04657,1.28863,1.40932,1 +-0.305697,0.00473177,-0.385162,-0.362842,-1.1206,-1.25824,-1.10521,-1.15332,0.0269253,-1.103,-0.00422648,-0.00517255,-0.134065,-0.162166,0.149881,-0.942873,-1.03365,-1.23643,0.164244,-0.304188,-0.421909,-0.557611,-0.506545,-0.450479,-1.32568,-1.22257,-1.29584,-1.57451,-0.746363,-1.1658,0 +-1.56334,-1.74368,-1.54858,-1.22299,0.0824593,-0.977434,-0.855362,-1.05972,-0.469167,1.28498,-0.898884,-1.15518,-0.900193,-0.703767,1.02215,-0.833593,-0.400308,-0.981176,0.0432719,-0.380528,-1.3991,-1.67211,-1.40945,-1.0638,1.79269,-0.828575,-0.744825,-1.07126,0.516013,0.349598,0 +-1.12294,-1.02525,-1.1284,-0.974639,1.21157,-0.449342,-0.977916,-0.92826,3.39743,0.963462,0.398928,0.406321,0.22056,-0.125675,0.157541,-0.809024,-0.802646,-0.58395,2.57522,0.815585,-1.08606,-1.33857,-1.11305,-0.89923,-0.213232,-0.988995,-1.20076,-1.35118,1.06073,-0.207395,0 +-1.56902,0.39301,-1.53542,-1.23067,1.98659,-0.27855,-0.737575,-1.02209,0.0597549,0.675941,-0.169383,1.5411,-0.184513,-0.482449,1.62831,0.342964,-0.0627348,-0.411186,1.57599,-0.282269,-1.3871,0.221725,-1.34517,-1.06556,1.38099,-0.536843,-0.873237,-1.32091,0.115156,-0.377926,0 +0.0348202,0.665038,0.183175,-0.0261118,0.607199,1.82643,1.56424,0.969281,0.501131,1.43369,1.07614,0.0927159,1.23992,0.449384,0.788012,2.51739,1.22892,1.08323,-0.428519,0.876052,0.289828,0.623595,0.352318,0.138607,1.38537,2.35441,2.01324,0.97203,-0.0917376,1.61972,1 +-1.40585,-1.2624,-1.34858,-1.11956,-1.36164,-0.318692,-0.362762,-0.698896,1.93104,0.967711,0.0166885,1.90003,-0.127635,-0.369679,0.565199,0.776286,0.371903,0.616481,2.5861,0.766078,-1.29503,-1.04897,-1.24012,-1.00198,-1.48949,-0.549555,-0.635058,-0.969633,0.616227,0.0528303,0 +-0.41069,1.05797,-0.381869,-0.442975,1.12625,0.413897,0.301063,0.510552,0.34063,0.439409,0.0733033,-0.0704315,0.030141,-0.0852274,0.246467,0.0559443,-0.0716793,0.1789,-0.507151,-0.0732799,0.169826,1.26789,0.135073,0.0135537,2.3095,0.965033,0.624144,0.867058,0.77948,1.06051,1 +0.185215,1.08122,0.223506,0.0381084,1.48176,0.824782,0.475424,1.06618,0.515722,0.530056,-0.171186,0.116282,-0.205781,-0.112046,-0.112565,-0.132796,-0.289661,0.00710873,-0.186575,-0.215755,0.215344,1.25487,0.2184,0.078188,1.42041,0.555084,0.144813,0.711884,0.679265,0.285926,1 +-1.32299,0.399985,-1.31113,-1.09541,0.571647,-0.503874,-0.841438,-0.87311,-0.345144,0.877064,-0.613286,1.43959,-0.596511,-0.574555,1.1587,-0.44271,-0.488759,-0.399193,0.271909,0.167076,-1.21227,0.957132,-1.19727,-0.965797,0.982436,-0.558453,-0.853537,-0.752084,-0.0367814,0.452027,0 +-0.799447,-0.0580438,-0.830036,-0.741059,-1.06443,-1.08555,-0.648638,-0.68601,-1.07834,-0.867889,-0.477699,-0.496609,-0.511936,-0.487725,0.746381,-0.908084,-0.373143,-0.458834,0.155776,-0.623152,-0.81502,-0.298917,-0.870804,-0.726931,-0.147536,-1.03463,-0.612529,-0.684537,-0.809401,-0.970907,0 +-1.44671,-0.455622,-1.36545,-1.14911,0.728073,0.699812,2.81236,-0.133216,1.09206,2.50163,-0.280449,-0.0414275,-0.485227,-0.498276,0.835306,3.38292,9.00768,3.4721,2.59215,2.17836,-1.23296,-0.492531,-1.2428,-0.976335,0.693374,1.15825,4.69654,0.918783,2.1453,1.8578,0 +-0.382314,-0.650924,-0.436193,-0.433029,0.138631,-0.984629,-0.655663,-0.52262,-0.808406,-0.887718,-0.607156,-0.622957,-0.68999,-0.483768,0.30675,-1.10933,-0.531494,-0.50794,0.241666,-0.713852,-0.581223,-0.962736,-0.642547,-0.572019,-0.121257,-1.16728,-0.806658,-0.848688,-0.836879,-1.09881,0 +1.36568,0.469736,1.30174,1.35008,-0.445835,-0.0272848,0.240852,0.788366,-0.837588,-1.15966,1.38338,-0.760182,1.29581,1.2247,-0.864934,-0.500226,-0.3049,0.308553,-0.808371,-0.792459,1.77744,0.146882,1.74507,1.73075,-0.57237,-0.131343,-0.0167214,0.978115,-0.565331,-0.999698,1 +-1.48673,-1.08105,-1.36545,-1.16758,0.104501,0.923243,-0.0343618,-0.520558,0.329687,3.8245,0.436431,-0.661025,0.149339,-0.327473,3.38683,3.80842,0.822111,0.950339,0.588856,6.85359,-1.35234,-1.62818,-1.33029,-1.04712,-0.511054,-0.0677849,-0.617323,-1.01542,-1.04539,1.35396,0 +0.871926,1.21607,0.914893,0.780051,0.763625,1.48939,1.00854,0.786562,0.420881,0.293525,0.669021,-0.318778,0.414936,0.640411,-0.406652,1.71329,0.352026,-0.0852695,-0.637801,0.946345,1.45882,1.32483,1.31951,1.40583,1.14449,3.08342,1.8426,1.14546,0.666335,2.76582,1 +-0.0928738,-0.813676,-0.0633374,-0.201154,0.308567,0.447979,-0.136846,0.0456372,-0.545769,0.405417,-0.456063,-1.08104,-0.449617,-0.373416,-0.77401,-0.269605,-0.473852,-0.419776,-1.00919,-0.25128,0.0622378,-0.783765,0.0904333,-0.119755,0.382412,0.635167,0.027377,0.360458,-0.503909,1.05497,1 +-0.515683,-0.643949,-0.525908,-0.522824,-0.329937,-0.682619,-0.690911,-0.675186,-0.3342,-0.518048,-0.557753,-0.347782,-0.556944,-0.454092,-0.728382,-0.406973,-0.451656,-0.620901,-0.808371,-0.563441,-0.446737,-0.401419,-0.522318,-0.473311,-0.646825,-0.444684,-0.488383,-0.426065,-0.457035,-0.434954,0 +0.551272,0.0837825,0.499238,0.462644,-0.332781,-0.380608,0.111524,0.449989,-0.0496771,-1.2588,1.23409,-0.364097,1.06978,0.855398,1.25862,-0.192545,0.102905,1.02003,-0.609977,-0.69798,0.724319,-0.181773,0.640987,0.60141,0.772209,-0.316297,0.0513436,0.568879,-0.405311,-1.11154,1 +-0.16949,-1.94131,-0.167045,-0.27191,2.32789,0.0067979,-0.251246,0.428857,2.1572,0.511644,0.0177703,-0.367722,-0.105873,-0.16898,2.1179,0.1626,-0.671625,-0.576495,0.626357,0.895326,-0.452944,-2.14557,-0.473215,-0.483147,0.557602,-0.739593,-0.895382,-0.616686,-0.30833,-0.666388,0 +1.11313,-0.729975,1.16182,0.997718,0.720963,2.08773,0.998506,1.52259,1.24162,0.556967,2.07501,-1.20793,1.70385,2.07652,0.299422,1.83781,0.486525,1.44302,0.649342,1.23167,1.2664,-1.10103,1.27487,1.28112,0.675855,1.9648,0.510063,1.45429,1.3743,1.48684,1 +1.71754,1.08819,2.12894,1.67686,2.29234,4.56441,3.5951,2.87301,3.99201,2.6376,1.89868,1.21118,2.86022,1.67204,1.11207,2.39398,2.55768,2.29063,7.0657,0.828434,1.46916,0.983164,1.87601,1.30396,1.38099,2.30166,2.37706,2.07194,4.10433,0.868941,1 +-0.359612,-0.299846,-0.361292,-0.422231,0.211867,-0.16816,-0.626059,-0.664105,-0.341496,-0.400491,-0.503663,-0.22089,-0.538149,-0.439363,-0.582171,-0.4952,-0.370493,-0.586219,-0.370453,-0.357853,-0.41984,-0.139471,-0.45774,-0.453991,-0.151915,-0.255281,-0.474961,-0.53773,-0.196801,-0.263869,0 +-0.75972,0.390685,-0.747317,-0.720031,0.984044,-0.203,-0.538001,-0.685237,0.110823,1.0272,-0.288743,1.73507,-0.390265,-0.345499,1.10874,-0.470072,-0.199884,-0.69529,-0.288192,0.0684396,-0.653638,1.05475,-0.676473,-0.624359,1.02185,-0.550826,-0.463457,-0.811415,-0.224279,0.252706,0 +-0.223405,-0.797401,-0.225484,-0.383301,0.813397,0.930817,0.352493,0.539931,0.475597,0.881313,-0.429739,-0.364097,-0.658336,-0.601813,-0.0822573,0.573585,0.261918,0.329622,0.0964996,0.305395,-0.152939,-0.404673,-0.315488,-0.466637,0.929879,1.42901,1.02391,0.854888,1.01224,0.977461,0 +3.14772,1.30674,3.27302,3.47559,0.706743,3.07045,3.07453,3.4941,0.0634026,0.71135,1.77463,0.466142,2.23356,1.75118,0.374693,1.75628,0.841656,1.3782,-1.19669,0.79291,2.84091,1.29229,3.10806,2.95319,1.09193,2.24573,1.79946,2.6181,-0.882137,1.17125,1 +1.41108,1.6276,1.52809,1.35576,1.78751,1.41555,1.31587,2.52509,-0.647905,1.33738,0.410468,3.06925,1.45161,0.588312,0.167866,1.95563,-0.349622,1.07513,1.21186,2.49241,0.840184,1.14586,1.01298,0.733137,0.299198,0.174371,-0.138951,1.05722,-0.953257,0.447598,1 +-0.60365,-0.846226,-0.618093,-0.601252,0.0618395,-0.618998,-0.593194,-0.780591,0.975336,-0.441565,-0.642134,0.0691502,-0.704828,-0.531469,-0.357027,-0.410881,-0.391695,-0.77292,-0.0994752,-0.448931,-0.537774,-0.126455,-0.579754,-0.549186,0.233501,-0.342991,-0.21804,-0.582456,0.773014,-0.260547,0 +1.22947,-0.178945,1.19886,1.19379,0.169205,0.0181588,0.560722,1.00588,1.16867,-0.365082,1.06208,0.467955,0.947616,0.885074,-0.189834,-0.501901,-0.127003,0.389587,0.381994,-0.0150804,1.37812,0.325853,1.33736,1.26883,0.325476,-0.288331,0.208564,0.754481,1.28378,0.102107,1 +0.100086,0.504611,0.0938709,-0.0190078,-0.136538,-0.0922312,0.396397,0.0118768,0.960745,-0.911796,0.0549125,1.81845,0.21512,-0.0322499,0.775356,0.24301,0.722727,0.942236,0.44006,-0.206307,-0.0122464,0.581293,0.0338899,-0.125902,-0.0774597,-0.360152,0.300595,0.12009,0.192742,-0.857405,1 +1.38838,1.23234,1.23589,1.19663,-0.431614,0.307862,0.727557,0.870834,0.515722,-0.92171,0.520452,-1.00291,0.0934492,0.380579,-1.05544,-0.394129,0.172473,0.0330395,-0.109153,-0.17305,1.71537,0.770026,1.35819,1.30396,-0.327105,0.421612,1.45386,1.23218,1.70565,0.49466,1 +-0.501495,0.583662,-0.501627,-0.536464,-0.614349,-0.187284,-0.359375,-0.295575,0.431824,0.175967,-0.387188,0.516899,-0.327946,-0.426174,0.0236538,-0.0306083,-0.161125,0.183762,-0.116411,0.252486,-0.50467,0.784669,-0.470239,-0.537243,-0.0862192,-0.0506243,-0.137992,0.0896633,0.115156,0.479711,0 +0.145488,-0.941552,0.156425,-0.00849384,1.19735,0.559695,0.136236,0.559775,1.1103,0.0938181,0.383423,-0.869491,0.468847,0.0532615,-0.510564,1.04097,0.412981,0.718583,0.450948,0.395339,0.0146507,-1.21004,0.0636496,-0.135211,-0.204472,0.347249,-0.0565058,0.381757,0.404484,0.0434179,0 +0.139813,1.09982,0.10704,0.0221955,-0.470721,-0.346147,-0.72478,-0.498653,-0.461871,-0.586034,-0.119259,-0.191886,-0.290357,-0.14458,-0.723719,-0.407531,-0.685208,-0.517016,0.0372233,-0.340846,-0.0329364,0.558515,-0.129788,-0.135035,-0.913989,-0.493624,-0.864226,-0.686819,-0.612205,-0.635936,0 +0.352637,0.806864,0.338737,0.20832,-0.310029,-0.0140304,0.293537,0.667757,-0.345144,-0.258855,-0.332736,-0.680784,-0.391254,-0.239544,0.946213,-0.0579701,0.444453,0.945477,0.504175,-0.624663,0.0332717,0.0264839,0.00710623,-0.0872618,-0.292067,-0.346805,0.0594922,0.501941,-0.557249,-0.867371,1 +-0.243269,-1.05315,-0.297504,-0.293222,-1.62188,-1.01852,-0.704835,-0.578286,-1.55254,-1.3622,0.00190378,-0.11575,-0.0816375,-0.0876454,-0.852611,-0.843086,-0.606694,-0.1582,-1.19185,-0.891852,0.0187887,-0.541341,-0.0821727,-0.0877887,-1.39138,-0.82921,-0.657586,-0.220686,-1.4123,-1.21175,0 +-0.192191,-0.230095,-0.220957,-0.283561,0.415221,-0.42965,-0.615397,-0.544268,-0.633315,-0.806985,-0.397285,0.283055,-0.379384,-0.332309,-0.385336,-0.590129,-0.436417,-0.393845,-0.205931,-0.747487,-0.241906,0.042754,-0.287812,-0.318224,0.0670715,-0.503158,-0.642727,-0.540012,-0.360053,-0.991947,0 +0.26467,0.125633,0.342853,0.1441,0.536096,0.9649,1.01858,1.01103,0.158244,0.00600396,0.258293,-0.457635,0.415431,0.149544,0.735723,0.651761,0.555763,1.0881,-0.672883,-0.103891,0.405693,-0.235464,0.483261,0.253649,0.995575,1.05529,1.18927,1.47407,-0.107901,-0.0889094,1 +1.74024,0.86964,1.6639,1.73085,-0.396774,0.510464,0.723794,0.977012,1.0337,-0.893383,1.27087,0.529588,0.834848,1.04489,-0.341373,0.521653,0.345401,0.144866,0.729183,0.232834,1.64503,0.962013,1.45343,1.52702,-0.585509,0.63326,0.659614,0.649509,1.27409,-0.0147175,1 +-0.552572,-0.337046,-0.583524,-0.579088,0.578757,-0.639447,-0.801549,-0.502776,0.322392,0.503146,-0.140895,0.533214,-0.225565,-0.349455,-0.535543,-0.764351,-0.681895,0.550033,0.200536,-0.146218,-0.71157,-0.774003,-0.747599,-0.676874,-0.804496,-1.02128,-1.06598,-0.848688,-1.08903,-0.563959,0 +-1.23162,0.151208,-1.22882,-1.02408,0.429441,-0.971943,-1.02823,-1.05616,-1.68386,0.864317,-0.253043,1.4976,-0.363062,-0.445958,1.36186,-0.605764,-0.880728,-1.06091,-0.306337,0.7075,-1.10675,0.0996992,-1.14429,-0.903621,-0.0336624,-1.01397,-1.20647,-1.3813,-1.56262,0.328558,0 +-0.717156,-1.49956,-0.725505,-0.688489,-0.464322,-0.550833,-0.587549,-0.397372,-0.698974,0.428079,-0.626268,-1.2286,-0.688012,-0.540482,-0.295745,-0.680032,-0.495716,-0.796096,-0.487795,-0.470095,-0.663983,-1.38576,-0.723196,-0.646489,0.470007,-0.4396,-0.383409,-0.458164,-0.208115,0.200107,0 +0.0830602,0.111683,0.103336,-0.0352049,0.0824593,0.184785,0.0637318,0.244076,0.245789,0.156138,-0.417118,1.14955,-0.242381,-0.296478,0.321071,0.19387,0.0436057,0.39607,-0.716433,0.248329,0.0125817,0.843241,0.0666255,-0.0951655,0.470007,0.307208,0.226299,0.637339,-0.295399,0.530648,1 +-0.146789,1.32302,-0.161284,-0.205133,-0.105252,-0.364135,-0.0319784,-0.103836,-0.739099,-0.578952,0.18509,0.132596,-0.00250227,0.0616148,-0.389333,-0.591804,-0.179676,-0.303898,-0.712804,-0.544167,0.149136,1.56075,0.0398418,0.0455195,-0.257029,-0.381126,0.214316,0.0577155,-0.403695,-0.552332,1 +-2.02786,-1.36238,-1.98276,-1.45316,1.46754,-0.542691,-1.11389,-1.26071,0.431824,2.1787,-0.652953,0.527776,-0.649433,-0.670552,1.04879,-0.8174,-1.05657,-1.91177,0.731603,0.115302,-1.72538,-0.99853,-1.69187,-1.22135,1.14011,-0.852091,-1.30468,-1.74353,0.050502,0.546705,0 +-0.552572,0.286059,-0.606982,-0.557491,-1.15402,-1.21109,-0.814971,-0.804558,-0.264893,-0.853725,-0.767264,0.641979,-0.832433,-0.564003,-0.653111,-1.08219,-0.702434,-0.810195,-0.734578,-0.855194,-0.606051,1.16539,-0.674985,-0.584489,-0.878951,-1.05281,-0.755849,-0.613035,-0.334191,-0.839687,0 +-1.20637,0.025657,-1.15309,-1.01328,0.294346,-0.139568,-0.341939,-0.480097,0.48654,0.0598256,-0.810897,0.00932944,-0.661798,-0.627972,0.671777,-0.196454,-0.0531277,-0.10958,-0.538604,-0.0849954,-1.13985,0.187558,-1.04281,-0.912228,1.03061,-0.152953,-0.0373326,-0.260393,-0.450569,0.0528303,0 +-1.03213,8.17231e-05,-1.0107,-0.905872,0.250973,-0.351449,-0.738202,-0.951197,1.47872,0.285026,-0.180922,0.574907,-0.278981,-0.378252,0.184519,-0.183611,-0.102488,-0.51572,0.793299,-0.129968,-0.978472,-0.385149,-0.983295,-0.839163,-0.458497,-0.671586,-0.921841,-1.25625,-0.120832,-0.466513,0 +-0.288671,-0.867151,-0.195853,-0.354317,3.08869,1.36632,1.48396,1.21359,0.413585,2.00024,-0.0518262,-0.531232,-0.225565,-0.124796,0.0403065,0.203363,0.756518,0.337726,-0.613606,1.2483,0.00844365,-0.533206,-0.0256294,-0.0937604,2.35767,0.989185,1.75153,1.27782,0.398019,3.13124,1 +-0.705805,-0.22312,-0.691347,-0.688773,1.26846,-0.0500066,-0.227037,-0.36258,-0.0387339,0.340264,-0.357618,0.797875,-0.351687,-0.433428,0.499255,-0.132796,-0.0809551,0.353932,-0.591831,0.0170427,-0.647431,0.58292,-0.647309,-0.630331,1.5956,0.0745851,0.0724341,0.10944,-0.153159,0.388909,0 +-0.501495,-0.174295,-0.533316,-0.534759,-0.824102,-0.68527,-0.782357,-0.765643,-0.764633,-0.302762,-1.0287,-0.584527,-0.997925,-0.683873,-1.19366,-0.838061,-0.669969,-1.011,-0.971684,-0.921708,-0.616396,0.29494,-0.645821,-0.590988,-0.611787,-0.368415,-0.376219,-0.459229,0.132936,-0.66971,0 +2.31061,0.0884325,2.50344,2.42704,2.57675,3.26548,4.23484,3.4374,2.71531,1.07535,2.92027,0.594847,3.55314,2.8503,-0.175179,3.41754,2.38873,2.1075,1.27961,0.469411,2.50987,0.379544,2.96224,2.5984,1.65254,2.8311,3.30073,2.68352,1.86567,0.772049,1 +-0.790934,0.458111,-0.802051,-0.734239,-0.623592,-0.730713,-0.470013,-0.771313,-1.18412,0.353012,-0.61581,-0.418298,-0.627671,-0.525974,0.690094,-0.553274,-0.247257,-0.868864,-0.588202,-0.498061,-0.674328,0.565023,-0.692543,-0.636654,1.64378,-0.220324,0.190829,-0.484179,-0.115983,0.242186,0 +-1.23446,-0.534673,-1.21277,-1.0363,0.521875,-0.384395,-0.570239,-0.802496,-0.830292,1.11218,-0.00783252,0.375505,-0.0588861,-0.383968,2.26777,0.214531,-0.15483,-0.253819,1.48405,0.318622,-1.07985,-0.684518,-1.05888,-0.902041,0.627678,-0.494259,-0.681553,-0.932056,-0.594425,0.0406496,0 +-0.424878,0.34186,-0.404092,-0.495829,0.211156,0.313542,0.222036,0.29098,-0.279484,1.11926,-0.226358,1.06254,-0.0766916,-0.436506,1.9547,0.83436,0.633282,1.80767,0.108597,0.792154,-0.60812,-0.0337153,-0.543447,-0.620319,-0.160675,-0.186003,-0.242486,-0.0624688,-1.09065,0.0506156,0 +0.0376579,0.0837825,0.241202,-0.0710091,-1.27916,2.25247,2.65305,0.748936,-0.392564,2.1093,-0.152795,0.495146,0.26359,-0.24372,-0.580506,2.73517,3.69728,1.80281,0.619099,3.47122,-0.200526,-0.316814,-0.0077736,-0.301363,-1.87797,1.04893,1.94662,0.54606,-0.812633,1.34288,0 +-1.02646,0.209334,-0.960083,-0.911271,1.12625,0.491529,-0.301548,-0.470047,0.402642,2.12771,-0.258091,1.16586,-0.408071,-0.449036,1.61165,0.66963,0.46433,0.59055,0.281587,1.13266,-1.05709,-0.476261,-1.03091,-0.889043,-0.103738,-0.313755,-0.68395,-0.810046,-0.836879,0.349598,0 +-1.53269,-0.804376,-1.48685,-1.20481,1.32534,-0.422833,-0.595577,-0.76487,-0.593189,1.91667,-0.86066,-1.14285,-0.747858,-0.689611,0.406333,-0.186961,0.0230664,-0.226268,-0.418841,0.00419344,-1.37407,-0.985514,-1.27315,-1.04712,1.75327,-0.113547,-0.127447,-0.146142,0.0408038,0.982998,0 +-0.623513,0.520887,-0.635378,-0.614608,0.0938358,-0.489484,-0.696431,-0.743222,-0.450928,-0.121468,-0.336703,-0.533226,-0.428349,-0.341762,0.253794,-0.0227906,-0.448675,-0.662066,-0.939021,0.0230894,-0.537774,0.0769211,-0.586896,-0.522665,0.772209,-0.0913014,-0.584249,-0.641027,-0.747979,0.0810676,0 +-1.46913,-0.820651,-1.36751,-1.16417,-0.123739,0.37792,0.0480518,-0.665909,-1.84801,1.25098,-0.331655,-0.43135,0.204733,-0.514323,3.76651,2.3521,2.01206,1.82874,0.39893,0.682558,-1.41834,-1.4004,-1.30708,-1.07241,-0.633686,-0.421803,-0.564596,-1.15843,-2.01844,-0.372389,0 +0.210754,-0.609074,0.274537,0.0784592,1.41066,1.14667,1.00603,1.03886,1.25986,0.691521,0.07727,-0.485732,0.0608059,0.0185294,-0.018644,0.00847999,-0.0590907,0.148107,-0.547072,0.0336711,0.525695,0.275416,0.590395,0.376595,2.42775,1.23134,0.950088,1.34019,1.10598,1.24876,1 +0.46898,0.841739,0.565084,0.362904,1.36089,1.3417,1.56173,1.18215,1.03735,1.48893,0.529467,-0.262583,0.362015,0.402122,0.55221,0.797505,0.914537,0.340967,-0.676512,0.827301,0.811218,0.784669,0.685626,0.687472,2.32702,1.51417,2.22127,1.35084,0.603297,2.28412,1 +1.08475,0.167483,0.914893,0.929519,-0.87743,-0.702879,-0.199064,0.181452,1.15772,-1.77719,0.524419,-0.00517255,0.242817,0.301223,-1.00482,-0.952422,-0.297611,-0.313298,3.58049,-0.715364,0.891909,0.350258,0.652891,0.668152,-1.10232,-0.852091,-0.226668,0.0592368,3.2024,-1.26435,1 +-0.771071,-1.96921,-0.766659,-0.714916,-0.187021,-0.709885,-0.67335,-0.584729,-0.52753,-0.236193,-0.953335,-1.37072,-0.872001,-0.65589,-0.33338,-0.56891,-0.555015,-0.864812,-0.85918,-0.600477,-0.713639,-1.57937,-0.699983,-0.650002,0.982436,-0.0970216,-0.29713,-0.380729,0.186276,0.0711015,0 +1.28622,-0.504448,1.2112,1.19947,0.64275,0.107152,0.713758,0.972373,0.563142,-0.0945574,1.10932,0.660106,1.0035,1.10204,0.353377,-0.249503,0.0505625,0.682928,-0.0111656,0.292923,1.23743,-0.126455,1.135,1.17399,0.785348,-0.159944,0.263687,0.803163,-0.0109197,0.0340055,1 +2.87247,0.211659,3.0549,3.14313,3.43709,3.45293,4.23986,3.92448,3.07643,0.845904,3.98044,3.44993,3.43296,4.23519,5.42512,4.053,3.17717,1.0411,3.01556,2.29778,2.01745,-0.274512,2.19146,2.09432,1.63064,1.08134,1.47687,1.6764,0.519246,-0.213485,1 +0.105761,-1.95294,0.0951055,-0.0403198,0.976934,0.105259,-0.00475811,0.228356,0.161891,0.173134,-0.404857,-0.652324,-0.46396,-0.354951,-1.07343,-0.710186,-0.101826,0.0330395,-0.174478,-0.37297,-0.117766,-1.57774,-0.132764,-0.237256,-0.0468016,-0.479641,-0.0775964,0.114004,-0.0190014,-0.215146,0 +-0.214893,-0.674174,-0.241534,-0.288108,-1.79252,-0.588702,-0.0988376,-0.539114,-1.42123,-0.646937,-0.870036,-0.139316,-0.81265,-0.564443,-0.373679,0.403272,0.585578,-0.229509,-1.0237,0.106232,-0.415702,-0.476261,-0.454466,-0.436428,-1.30817,-0.00740479,0.280943,-0.377687,-1.37836,-0.424434,0 +-0.0786856,-0.483523,-0.145234,-0.188083,-0.605105,-0.813837,-0.935769,-0.96666,-0.72086,-0.552041,-0.673146,-0.653955,-0.67812,-0.493,-0.81331,-0.910709,-0.754213,-1.13157,-0.976523,-0.78868,-0.161215,-0.34122,-0.207163,-0.27168,-0.73004,-0.758025,-0.915706,-0.967046,-0.86759,-0.671371,0 +-0.146789,1.25559,-0.173219,-0.233833,-0.268789,-0.487022,-0.450946,-0.465665,-0.184643,-0.212115,-0.628071,-0.384037,-0.551009,-0.450794,-0.983501,-0.767143,-0.461594,-0.796744,-0.884584,-0.880515,0.128446,1.62095,0.176736,-0.0559985,0.645197,0.216955,0.514856,0.278307,0.920103,-0.273836,1 +1.3827,-0.0882691,1.29351,1.37281,-1.00897,-0.45559,0.0490554,0.189441,0.490187,-1.75028,1.02566,0.226859,1.16227,0.898923,-0.870263,0.102292,0.281795,0.293967,-0.0293114,-0.419076,1.25192,0.00858682,1.21832,1.15467,-1.32568,-0.177105,0.232531,0.10944,-0.0965866,-1.02627,1 +0.27602,-0.674174,0.313222,0.0557264,1.32534,1.44584,0.313607,0.938613,0.690813,0.265197,0.0927759,-0.269834,-0.034651,-0.010927,0.654458,0.914211,0.00484607,1.74771,0.361428,0.449382,-0.0329364,-1.1954,-0.0405092,-0.207222,0.272919,0.21632,-0.365195,0.421311,-0.502293,-0.34083,0 +1.60688,1.35557,1.58159,1.52626,0.365449,1.03307,2.07854,1.70041,1.42401,-0.236193,0.325005,-0.0323638,-0.0499834,0.505439,-0.668765,0.352457,0.518659,-0.221406,-0.576105,-0.215755,1.31605,1.28579,1.2332,1.24424,-0.213232,0.837917,1.41456,0.8914,0.653404,0.0389886,1 +-0.549735,-1.39493,-0.530435,-0.565732,0.728073,-0.175166,-0.755763,-0.517981,0.249437,0.270863,-0.738055,-0.726103,-0.441703,-0.551693,-0.0892514,-0.0512692,-0.719329,-0.599994,0.735232,0.131552,-0.606051,-1.28,-0.472619,-0.589056,0.452488,0.0269166,-0.829426,-0.498023,0.918486,0.468637,0 +0.378175,0.0442571,0.400468,0.267142,0.912941,0.340051,0.725048,0.823415,0.435471,-0.685179,0.249278,-0.78121,0.112738,0.175264,-0.266769,-0.594038,-0.124684,-0.140372,-0.795065,-0.504107,0.6188,0.052516,0.524924,0.483733,0.973677,-0.0944793,0.51246,0.559752,-0.103052,-0.207949,1 +0.57681,0.523212,0.585661,0.440195,0.315677,0.455553,0.19444,0.185833,1.2708,-0.550625,0.10107,0.0872776,-0.0109104,0.0734853,-0.720721,-0.332705,-0.321463,-0.415724,-0.628123,-0.537364,0.662249,0.976656,0.667771,0.517104,0.312337,0.325639,0.129474,0.252445,0.936266,-0.429417,1 +0.449116,-1.24613,0.412814,0.303514,-0.123739,-0.184065,-0.218883,0.268301,0.0159821,-0.788573,-0.337064,-0.727553,-0.442198,-0.272517,-0.607483,-0.576727,-0.500685,0.143245,-0.466021,-0.553615,0.254655,-1.04571,0.209472,0.0741483,-0.440978,-0.377313,-0.485507,0.346767,-0.287317,-0.732829,0 +1.22663,0.609237,1.16182,1.19379,-0.146492,-0.137296,0.332423,0.503851,-0.436337,-0.782907,0.687772,-0.0269255,0.445107,0.61579,-0.346369,-0.628659,-0.11077,-0.429176,-0.680141,-0.600855,1.2933,0.929472,1.14095,1.246,0.618918,-0.170113,0.595863,0.354373,0.336597,-0.4344,1 +-0.385151,0.739439,-0.421789,-0.422231,-0.413128,-0.884843,-0.522948,-0.563854,-0.826644,-0.304178,-0.607516,0.295744,-0.696914,-0.449915,0.152546,-0.751508,-0.284029,-0.466127,-0.492634,-0.440617,-0.368115,1.25162,-0.452978,-0.398666,0.41745,-0.64807,-0.26118,-0.323984,-0.115983,-0.181373,1 +-0.685942,-0.609074,-0.709867,-0.657232,0.621419,-0.8216,-0.663315,-0.590656,-1.72399,-0.474141,0.157685,2.34052,0.193852,-0.131171,-0.154197,-0.652112,-0.174707,0.206451,-0.841034,-0.0332205,-0.60812,-0.0320883,-0.627965,-0.586421,-0.23075,-0.962682,-0.803303,-0.683472,-1.92146,-0.58223,0 +-0.765396,-0.906677,-0.778182,-0.724862,0.00211309,-0.671258,-0.674479,-0.519785,-0.283132,-0.58745,-0.826764,-0.40434,-0.852217,-0.608188,-0.63546,-0.573377,-0.581517,-0.517664,-0.669254,-0.83403,-0.817089,-0.595033,-0.813367,-0.735186,-0.585509,-0.568622,-0.634099,-0.454057,-0.363286,-0.902252,0 +0.233455,-0.399822,0.200871,0.0659561,1.44621,0.495316,0.816619,0.961807,0.530313,-0.0903084,3.21236,0.426262,2.74646,1.3533,0.985513,0.520537,1.12225,2.62773,3.76679,-0.343114,0.471901,-0.691026,0.420765,0.159508,0.382412,-0.240663,0.303471,0.792514,0.829587,-0.69075,1 +-0.80796,-1.37168,-0.780651,-0.767486,1.42488,0.175318,-0.532481,-0.0247184,-0.148166,-0.294264,-0.240783,0.228672,-0.502044,-0.307909,1.40849,0.530588,-0.332064,1.27285,-0.573686,-0.133369,-0.899849,-1.61191,-0.91455,-0.784364,0.189704,-0.458031,-0.889151,-0.433519,-1.29108,-0.891732,0 +-1.24553,-1.70183,-1.26462,-1.04113,-0.274477,-1.19897,-1.11389,-1.26071,0.333335,0.201461,-0.744185,-1.30673,-0.815123,-0.617201,-0.33338,-1.10688,-1.05657,-1.91177,0.26949,-0.217267,-1.16882,-1.88362,-1.21215,-0.944369,-0.392801,-1.15819,-1.30468,-1.74353,0.330132,-0.134864,0 +0.562622,-0.288221,0.540392,0.449288,0.0604175,0.177211,0.0711327,0.270878,0.18013,-0.0449849,1.08083,0.208732,0.824461,0.741749,-0.0902506,-0.340523,-0.0405391,-0.0204427,-0.216818,-0.136392,0.755354,-0.0662555,0.646939,0.618973,-0.0424219,-0.194901,0.0384017,0.106398,-0.175788,-0.130988,1 +-0.765396,-0.460273,-0.75349,-0.729977,0.912941,-0.179521,-0.859125,-0.781106,-0.60778,0.399751,-0.435869,1.25288,-0.459508,-0.416721,-0.125554,-0.453879,-0.67295,-0.368887,0.275538,-0.101624,-0.721915,0.176168,-0.732124,-0.663175,0.391172,-0.477099,-0.935215,-0.769579,-0.511991,-0.165316,0 +-0.348262,-0.78345,-0.338658,-0.405466,-0.681897,-0.175166,-0.499993,-0.464892,-0.122632,-0.0633976,-0.688292,-0.807858,-0.582168,-0.520918,-0.571846,-0.549924,-0.55634,-0.682649,0.0602079,-0.721033,-0.370184,-0.627573,-0.300311,-0.415878,-0.0511813,0.00340008,-0.302882,-0.203952,1.0478,-0.153135,0 +-0.958356,-1.00433,-0.975721,-0.851313,-1.31045,-1.00262,-0.831529,-1.05776,-1.50512,-0.838145,-0.550541,0.0401462,-0.5243,-0.496737,-0.164522,-0.428192,-0.388051,-1.00224,-0.463601,-0.542277,-0.893642,-0.806543,-0.877053,-0.771718,-1.0848,-0.838744,-0.837096,-1.2243,-0.971037,-0.900037,0 +-0.632026,-1.07873,-0.570355,-0.631089,1.33956,0.478275,-0.648513,-0.486798,0.668926,2.20844,-0.0323536,-1.02067,0.076633,-0.336486,1.04213,1.22468,-0.132635,-0.112821,1.29775,2.12696,-0.645362,-1.49151,-0.624989,-0.651583,0.439349,-0.0163029,-0.853153,-0.824346,-0.280852,1.0882,0 +-0.660403,-0.629999,-0.534139,-0.633362,0.905831,1.24324,0.967146,0.650232,3.16033,1.54558,-0.308215,0.37913,-0.289368,-0.3433,-0.537542,0.605972,0.483544,1.07513,4.32326,0.317488,-0.523291,0.114342,-0.456252,-0.507385,0.268539,0.984736,0.854222,1.09374,4.64419,1.05497,1 +0.233455,-0.120819,0.241614,0.0983504,-1.06514,0.234016,0.0213333,-0.342736,-0.246655,0.302023,0.0606822,1.25469,0.200282,-0.0199397,-0.416643,1.30063,0.7002,0.562999,1.57478,2.10618,-0.00397038,-0.0337153,-0.00479763,-0.124497,-1.4308,-0.0137606,-0.106356,-0.464858,-0.0788067,0.455903,0 +0.0887355,-0.955502,0.0823478,-0.0420248,0.237464,-0.0424326,-0.0492891,0.164958,-0.319609,-0.281517,-0.593453,-0.865503,-0.368997,-0.420678,-0.44462,-0.140055,-0.024969,0.507896,-0.72611,-0.478787,-0.0867306,-0.948093,0.0398418,-0.199669,-0.0336624,0.122254,0.18268,0.689064,-0.33904,-0.393982,0 +-0.1099,-0.320771,-0.158403,-0.198597,-1.20308,-0.768394,-0.752502,-0.91821,-1.23519,-0.991112,-0.559556,-0.832874,-0.639541,-0.414743,-1.39982,-0.53373,-0.466895,-0.967238,-0.877326,-0.687398,-0.19225,-0.523444,-0.299716,-0.27168,-1.54423,-0.45676,-0.55501,-0.827846,-0.890219,-0.764388,0 +-0.319885,0.34651,-0.348123,-0.385006,1.21868,-0.538714,-0.720515,-0.579059,2.65694,-0.273019,0.0541913,0.190604,0.00343287,-0.122158,-0.00798627,-0.785012,-0.410909,-0.0431321,1.08484,-0.854816,-0.436392,-0.254988,-0.489285,-0.463476,-0.116877,-0.913743,-0.91585,-0.785705,0.477221,-1.08496,0 +-1.67656,0.32791,-1.59262,-1.28153,-0.164268,0.495316,0.543161,-0.701988,1.49696,2.80614,-0.763297,1.35076,-0.802758,-0.662265,1.79483,1.60161,1.51183,-0.25544,0.308201,3.01772,-1.48496,0.657762,-1.46362,-1.10789,1.34157,1.12329,1.2746,-0.54488,0.680882,3.57971,0 +-1.24751,-0.918302,-1.16009,-1.00789,0.770735,1.052,4.03916,0.764141,2.68612,4.27207,1.51211,2.62331,0.596947,0.209117,1.30858,3.93015,12.0621,6.64375,1.80463,9.84293,-1.08606,-1.00667,-1.07793,-0.87833,-0.138776,0.14577,2.6335,0.646467,0.334981,2.32288,0 +-0.84485,-1.44376,-0.868309,-0.775726,0.0838814,-1.00754,-0.865272,-0.800435,0.0670503,-0.247524,-0.649347,-0.789186,-0.710763,-0.546417,0.658787,-0.920984,-0.660362,-0.577629,0.403769,-0.822315,-0.885366,-1.52568,-0.922883,-0.772421,0.075831,-1.04588,-0.963591,-0.905889,-0.0674922,-0.898376,0 +-0.277321,-0.918302,-0.274046,-0.329595,-0.179199,-0.366597,0.051815,-0.363096,0.0378685,-0.103056,-0.483829,-0.768884,-0.517871,-0.385726,0.513909,-0.296409,-0.0471647,-0.366294,0.864672,-0.119386,-0.310183,-0.842337,-0.285431,-0.35704,0.675855,-0.182189,0.137623,-0.2645,1.5327,0.132005,0 +-0.532709,-0.313796,-0.56377,-0.552945,-0.69825,-0.711021,-0.626561,-0.659981,0.577733,-0.0733121,-0.667737,-0.425186,-0.68356,-0.523776,-0.507234,-0.550482,-0.396001,-0.627546,-0.308757,-0.495415,-0.554326,-0.0743905,-0.614871,-0.555685,-0.467256,-0.479641,-0.373343,-0.494372,0.343063,-0.145384,0 +1.00813,0.33721,1.04659,0.877518,1.07648,1.17697,1.21301,1.45559,0.581381,-0.161126,1.46451,0.331999,1.32252,1.17766,0.664782,1.34362,0.668066,1.07189,-0.334161,0.443335,0.86915,-0.0922876,0.763001,0.740163,0.413071,0.607202,0.412759,0.561273,-0.70757,-0.36353,1 +0.76977,0.0396071,0.6762,0.640244,-1.55788,-0.608016,-0.46788,-0.546587,0.118119,-1.43302,0.265866,1.52841,0.303158,0.137894,-1.19832,0.0632036,-0.0441832,-0.112821,-0.646269,-0.860107,0.403624,0.389306,0.38803,0.265944,-1.95461,-0.529216,-0.402582,-0.460142,-0.604123,-1.34131,0 +-0.586624,-1.52281,-0.62262,-0.586192,-0.231104,-0.983304,-0.866526,-0.75482,-0.808406,-0.527963,-0.804046,-0.885262,-0.838369,-0.595438,-0.503903,-0.876088,-0.780218,-0.895119,-0.712804,-0.478031,-0.647431,-1.18238,-0.689865,-0.610835,-0.213232,-0.833024,-0.890733,-0.674801,-0.625136,-0.274943,0 +-0.915791,-1.47166,-0.958025,-0.818635,-1.50811,-1.27168,-1.07513,-1.09093,-1.34827,-0.760246,-0.444884,-0.825623,-0.523311,-0.479151,-0.299408,-1.08018,-0.995781,-1.33221,-0.504732,-0.427012,-0.808813,-1.21655,-0.86872,-0.721135,-0.668724,-1.08891,-1.21581,-1.14215,-0.263072,-0.392875,0 +-0.674591,0.207009,-0.653074,-0.66803,0.89161,0.184785,-0.255511,-0.297379,0.661631,0.245368,0.348444,0.863134,0.524242,-0.0439005,0.796672,-0.0797479,0.323867,-0.0447527,1.62438,0.478482,-0.610189,0.0866831,-0.546126,-0.591339,0.150287,-0.413541,-0.367112,-0.540316,0.431963,-0.225666,0 +1.43662,-0.7788,1.41286,1.4268,-0.669809,0.268098,0.382599,1.2306,-0.257598,-1.56332,2.14497,-1.05729,2.03028,1.73579,0.787679,0.283215,0.382504,2.61639,1.33283,-0.163603,1.19191,-1.28,1.17071,1.07914,-0.874572,-0.334729,-0.219478,0.959859,-0.739897,-1.18684,1 +1.55012,-0.264971,1.59393,1.58877,1.11203,1.17886,2.03213,2.05348,0.785654,-0.2801,1.19442,-0.306089,0.952561,1.24712,-0.993826,-0.151224,0.278151,0.199969,-0.445455,-0.180231,2.16435,0.115969,2.01291,2.37358,0.500665,0.828384,1.95956,1.67488,1.19973,0.458671,1 +-0.50717,0.681313,-0.498747,-0.54101,0.344118,-0.0537935,-0.440283,-0.533444,-0.950667,0.681607,-0.397645,0.796062,-0.450606,-0.412984,1.43181,0.350223,-0.021325,-0.0723041,-0.211979,0.586944,-0.556395,0.488554,-0.592253,-0.575356,0.561982,-0.130072,-0.495573,-0.496958,-1.02276,0.380604,0 +2.59438,0.639463,2.47463,2.93001,-0.851121,0.192359,0.546924,1.23962,-0.0387339,-1.02935,0.934064,-0.653955,0.859083,1.26427,-0.709731,-0.00212969,-0.121702,0.718583,-0.118831,-0.0207492,2.42918,0.413711,2.28967,2.67392,-0.419079,0.661226,0.587715,1.82549,1.11245,0.438739,1 +0.239131,0.109358,0.145313,0.10034,-0.86392,-0.962286,-0.869662,-0.761005,-1.08199,-1.43585,-0.797555,-0.275272,-0.78149,-0.520918,-1.13471,-0.976936,-0.78267,-0.86935,-0.157542,-0.859729,-0.0598335,0.0232299,-0.147644,-0.172973,-1.22057,-0.980796,-0.933201,-0.868161,-0.411777,-1.27875,0 +-0.944167,-2.22729,-0.954733,-0.844777,-0.0298832,-0.889576,-0.796406,-0.823114,-1.57078,0.170301,-0.837942,-1.46915,-0.860625,-0.634347,0.255792,-0.87458,-0.692496,-1.04568,-0.968055,-0.632978,-0.966058,-2.22204,-0.99996,-0.819491,0.491906,-0.817134,-0.802824,-1.04326,-1.31047,-0.385123,0 +0.752744,-0.113844,0.713238,0.657578,-0.548223,-0.237083,-0.0574426,0.434011,0.296858,-1.05626,0.698951,0.315684,0.624645,0.593588,-0.305736,-0.0434516,-0.186633,0.68779,0.0444816,-0.114095,0.782251,0.101326,0.69753,0.666395,-0.681863,-0.269264,-0.193594,0.498899,-0.146694,-0.645902,1 +0.948542,1.25327,0.993086,0.936907,0.607199,1.05957,1.59434,1.42724,-0.998088,0.120729,2.4623,0.350126,2.21131,1.80174,-0.288751,0.606531,0.481887,0.631067,-1.09991,0.500779,1.42157,1.08241,1.42962,1.36894,0.229122,0.818214,1.03924,0.874665,-1.19733,0.501304,1 +0.239131,-0.543973,0.174944,0.0881206,0.155695,-0.482667,-0.7875,-0.286297,-0.115336,-0.891967,-0.482748,0.0002657,-0.481271,-0.352973,-0.653111,-0.657696,-0.815533,-0.441331,-0.851921,-0.789436,-0.0329364,-0.435586,-0.0791968,-0.152599,-0.471636,-0.575614,-0.986024,-0.452688,-0.802935,-1.08884,0 +-0.512845,-1.60418,-0.539901,-0.542147,0.457883,-0.653838,-0.613766,-0.307172,0.537608,-0.459978,-0.610041,-0.999284,-0.591565,-0.503552,0.334393,-0.763793,-0.499029,0.099487,-0.157542,-0.584604,-0.572947,-1.63306,-0.603859,-0.582206,0.268539,-0.811414,-0.709354,-0.314856,-0.119216,-0.89893,0 +-0.197867,0.0791324,-0.252234,-0.254292,-0.418105,-0.785056,-0.379069,-0.374693,-0.779224,-0.862223,0.23269,-0.126627,0.136479,0.0673303,-0.345703,-0.829126,-0.34399,-0.381366,-0.646269,-0.728213,0.353967,0.682167,0.277919,0.198499,0.338615,-0.633452,-0.0373326,0.0212038,-0.0270832,-0.566728,1 +0.378175,-1.72043,0.433391,0.233042,2.08614,0.968687,1.43503,1.5664,0.563142,1.11784,0.0567155,-1.01252,-0.0301996,0.0945884,-0.548866,-0.126654,0.368921,0.22752,-0.317225,0.141,0.521557,-1.40528,0.5279,0.388889,0.907981,0.661226,1.48981,1.03593,0.509548,0.944241,1 +-0.864713,-1.06478,-0.895471,-0.801869,0.301456,-0.888251,-0.81748,-0.595037,-0.895951,0.551302,-0.713534,1.06616,-0.736482,-0.467281,2.63746,-0.238335,-0.575223,0.653756,1.24331,0.374176,-1.01778,-1.44108,-1.04906,-0.850228,-0.471636,-1.09234,-1.11592,-1.08845,-1.61435,-0.59884,0 +-0.983894,-0.962477,-1.00741,-0.86751,-0.600128,-1.1611,-1.11389,-1.26071,0.424528,-0.431651,-0.267828,1.28369,-0.351687,-0.403532,0.556873,-0.854813,-1.05657,-1.91177,1.46469,-1.05549,-0.978472,-1.05385,-1.01365,-0.829503,-1.0848,-1.18444,-1.30468,-1.74353,-0.30833,-1.23501,0 +-1.5483,-1.12523,-1.54529,-1.21532,-0.354112,-1.16602,-1.11389,-1.26071,-0.326905,0.629201,-0.666295,-0.778672,-0.707795,-0.636985,0.709745,-0.975595,-1.05657,-1.91177,0.794508,-0.14962,-1.44979,-1.40528,-1.45528,-1.09138,-0.708142,-1.16753,-1.30468,-1.74353,-0.49906,-0.302626,0 +-1.19842,-0.285896,-1.12634,-1.00163,0.0447748,0.474488,0.525599,-0.303049,-0.520235,2.60077,0.0934971,1.89278,0.131533,-0.282629,1.93805,3.49571,2.90884,2.07508,2.20867,5.33814,-1.0364,-0.209432,-1.01752,-0.861293,-0.0993584,0.258903,0.366264,-0.235899,-0.4635,1.78582,0 +0.66194,0.190733,0.713238,0.505836,0.138631,0.97058,1.13523,1.02417,-0.0642681,0.0612419,-0.365912,0.12172,-0.189954,-0.192282,-0.137877,0.863397,0.722727,1.02651,-0.450294,0.298214,0.314656,0.451133,0.483261,0.17672,0.399931,1.3502,1.50515,1.35236,0.247698,0.622558,1 +-0.317048,0.681313,-0.409854,-0.365115,-2.40685,-1.60872,-1.09389,-1.21298,-1.51971,-1.48117,-0.83686,-0.13569,-0.87299,-0.571477,-1.20665,-1.29696,-1.00373,-1.61162,-0.533765,-1.06823,-0.469496,0.543872,-0.56785,-0.477351,-2.23886,-1.39793,-1.26645,-1.60267,-0.979118,-1.41274,0 +-0.373801,-1.44841,-0.439485,-0.415127,-0.637813,-1.26108,-0.998576,-0.917952,-1.26072,-0.207866,-0.419281,-0.41141,-0.538149,-0.407709,0.497256,-1.06734,-0.851841,-0.711172,-1.19669,-0.16776,-0.54605,-1.55009,-0.611895,-0.544269,-0.708142,-1.26999,-1.17248,-1.13652,-1.80669,-0.595518,0 +3.71525,0.599937,3.70925,4.53267,0.927162,1.64845,2.48747,3.57914,-0.0423817,-0.722004,1.55394,0.478831,1.46101,1.94243,-0.802653,-0.00603852,-0.0266254,0.099487,-0.579734,-0.396023,3.48644,1.16702,3.37887,4.10185,0.649576,0.947873,1.25494,2.34578,-0.0723413,-0.173067,1 +1.97577,1.6927,2.08778,1.86441,1.26135,3.38666,2.00578,2.59468,2.12802,1.58383,0.810017,-0.822904,0.765604,0.903979,-0.928547,1.23474,0.22614,0.627826,-0.309967,0.566915,2.154,1.26952,2.06052,2.12242,0.732791,3.20418,1.94518,2.67287,1.93518,2.4613,1 +0.446279,0.237234,0.379891,0.317438,-0.0277501,-0.309603,-0.286871,0.0765628,-0.706269,-1.03502,-0.127192,-0.121188,-0.227543,0.0141329,-0.804318,-0.159041,-0.409252,-0.328856,-0.613606,-0.515823,0.794665,1.16213,0.655867,0.682203,0.395552,0.638345,0.0863347,0.600827,0.866763,0.130898,1 +-0.771071,-1.01595,-0.75884,-0.71861,-0.410284,-0.431543,-0.338552,-0.65225,-2.3514,-0.088892,-0.255207,-0.197324,-0.476819,-0.386166,0.104919,0.659021,0.902943,0.862823,0.134001,0.373798,-0.806744,-1.2979,-0.837473,-0.726053,-0.887711,-0.592774,-0.514746,-0.785705,-1.76144,-0.535722,0 +0.327098,0.725488,0.28606,0.158308,-0.411706,0.0162653,-0.439656,-0.419793,-0.308666,0.0527438,-0.720385,-1.30745,-0.752804,-0.457389,-1.24928,-0.643736,-0.468883,-0.937904,-1.06725,-0.461025,0.316725,0.382798,0.194592,0.162494,-0.0993584,0.480721,0.435287,0.121611,0.443277,0.762637,1 +-1.14848,-0.971777,-1.16091,-0.958726,-0.26239,-1.08669,-1.09386,-1.19876,-0.396212,-0.328256,0.0696973,0.0927159,-0.092024,-0.305711,2.44762,-0.752625,-1.00367,-1.52216,0.585227,-0.122787,-0.910194,-0.731701,-0.948476,-0.779095,0.864183,-0.968402,-1.27151,-1.58501,0.0521183,-0.386231,0 +1.1869,-0.164995,1.09597,1.09717,-0.745178,-0.372277,-0.0891788,0.237633,-0.695326,-1.21065,-0.53179,-1.34353,-0.51886,-0.250974,-1.39049,-0.910039,-0.588805,-0.822837,-1.19185,-1.02337,1.04295,0.111088,0.950487,0.92985,-0.392801,-0.0620647,0.391189,0.646467,0.493384,-0.806467,1 +-0.685942,-0.488173,-0.711513,-0.666609,0.098102,-0.81289,-0.636094,-0.425978,-1.07834,-0.261688,-0.577226,-0.81819,-0.555955,-0.494099,-0.0452883,-0.936675,-0.401302,0.0087294,-0.190204,-0.802663,-0.674328,-0.697534,-0.679747,-0.630682,-0.00300424,-0.955055,-0.575621,-0.0715968,-0.531387,-0.718433,0 +-0.657565,-0.441672,-0.687232,-0.642171,0.308567,-0.922523,-0.818734,-0.860482,-0.341496,-0.70784,-0.790703,1.2855,-0.917504,-0.56862,0.26312,-0.932654,-0.541101,-0.900467,1.31227,-0.682863,-0.765364,0.130612,-0.824081,-0.686886,0.141527,-0.980478,-0.882728,-1.08845,0.483686,-1.0069,0 +-0.518521,-0.788101,-0.540724,-0.543283,-1.10638,-0.602335,-0.631704,-0.834453,-0.52753,-1.14125,-0.602107,-0.691298,-0.583157,-0.483988,-0.348034,-0.18752,-0.355254,-0.869188,-0.03536,-0.782256,-0.603982,-0.990395,-0.613383,-0.586421,-0.997204,-0.567351,-0.622595,-1.01101,-0.676859,-1.15639,0 +0.0263073,0.890565,0.0988094,-0.127841,0.792066,2.59329,1.37106,0.444835,2.08789,1.78778,-0.429739,1.61905,-0.372954,-0.189424,0.309414,6.13808,2.80614,0.788272,3.70026,2.99504,-0.10949,1.87151,-0.0256294,-0.207573,0.91674,4.312,2.76388,0.952252,3.66145,3.35825,1 +-0.385151,0.492986,-0.409442,-0.419105,-0.630703,-0.72579,-0.723526,-0.52262,-0.429041,0.010253,1.17531,0.962835,1.1138,0.29265,-0.822636,-0.423166,-0.335708,0.935753,1.59534,0.786107,-0.521222,-0.354236,-0.542257,-0.528813,-1.6857,-1.04543,-1.0561,-1.0174,-1.16662,-0.843563,0 +-1.25063,-0.248696,-1.28561,-1.04227,-1.90984,-1.53185,-1.11389,-1.26071,-0.578599,0.23687,-0.184889,6.64943,-0.314592,-0.409907,-1.7745,-1.04657,-1.05657,-1.91177,2.11068,-0.796239,-1.30372,-0.788646,-1.33952,-1.01304,-2.68034,-1.44261,-1.30468,-1.74353,-1.60303,-1.01631,0 +-0.50717,1.76012,-0.445246,-0.504353,0.500544,0.586203,0.247124,-0.0850233,0.479244,0.930886,0.00046137,1.07341,-0.110819,-0.129632,0.685099,0.724354,0.190031,0.229141,-0.213189,0.70939,-0.128111,2.22294,-0.1655,-0.196157,2.02043,1.37498,0.816355,0.476079,0.507931,2.0239,1 +0.207917,0.91149,0.346968,0.0469174,0.571647,1.77342,1.01481,1.02727,-0.272189,0.555551,-0.452817,-0.461623,0.358552,-0.332749,0.346383,1.43744,0.782357,1.13996,0.593695,0.19542,-0.0391435,0.342123,0.337438,-0.168406,-0.0336624,1.33812,0.894965,0.883793,0.160414,0.169655,1 +-0.345424,-0.688125,-0.388454,-0.393531,-1.20521,-0.959635,-0.628066,-0.648126,0.0634026,-0.867889,-0.760773,-0.558786,-0.679109,-0.540482,-0.580506,-0.536522,-0.287673,-0.547161,-0.243432,-0.620884,-0.494325,-0.598287,-0.489582,-0.491753,-0.992824,-0.658875,-0.459144,-0.490721,0.199207,-0.800377,0 +-0.101387,0.697588,-0.0551066,-0.187515,1.68085,0.423364,0.623442,0.421125,0.0816413,0.845904,0.771432,1.62268,1.00895,0.205819,2.25112,0.446827,0.488844,1.42682,0.767894,0.193153,0.0249957,1.35575,0.129121,-0.129415,1.81021,0.368223,0.521088,0.801642,0.289723,0.519575,1 +1.12164,0.592962,1.04659,1.04887,-1.6105,-0.339331,0.269703,0.228356,-0.151814,-1.33104,0.833095,0.159788,0.715156,0.791869,-0.503237,1.5346,0.967542,0.428483,0.103758,0.469034,0.72225,-0.158995,0.649915,0.610192,-1.93359,-0.368415,-0.0895796,-0.346804,-0.859508,-1.01686,1 +1.43378,0.744089,1.46224,1.40123,-0.791395,0.728214,0.283501,0.484523,-0.162757,-1.06335,0.110085,-0.26077,0.478244,0.305179,-0.505236,0.642269,-0.160131,0.0670735,-0.77329,-0.150375,1.46709,1.03848,1.75995,1.41812,-0.00738397,1.94383,0.54793,0.854888,0.472372,0.457564,1 +0.0915732,0.216309,0.103748,-0.0346366,0.167783,0.307862,0.366291,0.280414,0.504778,0.263781,-0.706683,-1.02593,-0.702355,-0.459807,-0.998155,-0.530938,-0.394014,-0.72819,-0.643849,-0.687398,0.426383,0.722843,0.316607,0.28702,0.999955,0.961855,1.07615,1.05266,2.99389,0.960851,1 +-0.538384,0.0628573,-0.552658,-0.550956,-0.0355714,-0.444419,-0.588678,-0.202283,0.610563,-0.377829,-0.186692,0.197855,-0.276014,-0.287905,0.157541,-0.429309,-0.592449,-0.0642008,-0.666834,-0.172673,-0.37846,0.436489,-0.449704,-0.425363,0.461248,-0.318204,-0.644644,-0.100502,-0.376217,-0.12213,0 +0.968405,0.00705679,0.951932,0.843134,-0.474987,0.292714,0.185659,0.669045,-1.11482,-1.11717,-0.0291081,-0.704531,0.109771,0.00863733,-0.316727,0.0118304,-0.157812,0.268037,-0.55675,-0.429657,0.858805,0.0264839,0.959415,0.629512,0.25102,0.557626,0.376809,1.20631,0.0440365,-0.292107,1 +2.60005,1.71595,2.75448,2.92717,1.26135,1.97034,3.30534,2.91424,1.41671,-0.0718957,0.536318,0.622039,0.890737,0.941349,0.761368,1.43688,1.91102,2.08319,0.146098,0.529123,1.83124,1.13936,2.0754,1.94152,0.929879,1.0324,2.47819,2.41424,0.480453,0.203429,1 +-0.0900361,1.03704,-0.0168334,-0.162225,2.55542,1.372,0.840452,1.10406,1.60275,1.6164,0.575624,1.29276,0.515834,0.272206,0.593842,0.31281,-0.0256316,0.18052,-0.0680224,0.268737,0.606386,2.63132,0.632059,0.478464,3.9519,1.69468,0.922287,1.31889,2.47504,1.36503,1 +-0.470281,-0.160345,-0.447716,-0.491566,0.233908,0.0276262,-0.109751,-0.275989,0.413585,0.13206,-0.0327142,-0.31334,-0.182535,-0.220859,-0.0293017,-0.355599,-0.161787,-0.23113,-0.329322,-0.0789487,-0.268803,-0.168757,-0.333642,-0.355986,0.448109,-0.104649,-0.0243907,-0.199388,0.183043,0.196785,0 +0.281695,-0.606749,0.280298,0.175358,-0.540402,-0.160207,-0.166826,-0.209499,-0.793815,-0.416071,-0.483469,-1.54945,-0.441208,-0.305491,-0.522554,-0.351132,-0.381094,-0.573091,-0.64264,-0.345381,0.310518,-0.88464,0.310655,0.191298,0.732791,0.50106,0.29005,0.161165,0.831203,0.744919,1 +-1.20637,-0.469573,-1.19548,-1.02153,0.89161,-0.606312,-0.893621,-0.757654,0.446415,0.00742032,-0.690455,0.226859,-0.667239,-0.615662,0.891925,-0.725263,-0.792376,-0.691887,0.188438,-0.49995,-1.2102,-0.399792,-1.19578,-0.964216,0.399931,-0.82349,-1.00687,-0.893414,0.142634,-0.561744,0 +0.81801,0.225609,0.7297,0.708727,-0.614349,-0.592678,-0.242089,0.128363,0.782006,-1.49675,0.651351,-0.655224,0.613269,0.618208,-0.6671,-0.583428,-0.411903,-0.0917522,0.290055,-0.458757,0.730526,-0.10205,0.676698,0.578577,-0.931508,-0.671586,-0.378616,-0.0761607,0.604913,-1.06614,1 +-0.288671,0.755714,-0.203672,-0.35659,0.273015,0.832356,-0.0219433,0.0541418,0.140005,1.45919,-0.76474,-0.533951,-0.680098,-0.554991,-0.596159,0.275397,-0.219761,-0.56596,0.556193,0.152338,-0.355701,0.56665,-0.231566,-0.423782,0.110869,1.18177,0.210961,-0.0305211,1.98367,1.30966,0 +0.32426,-1.48328,0.255195,0.200648,-1.03386,-0.796038,-0.374804,-0.44711,-1.65103,-1.0676,-0.691537,-1.54818,-0.663282,-0.447057,-0.915891,-0.732522,-0.446687,-0.716845,-1.33109,-0.808332,0.229827,-1.58751,0.191616,0.0915364,-0.445358,-0.22668,0.115095,-0.168961,-0.938709,-0.509699,0 +1.83105,0.662713,1.75855,1.80473,-0.388242,0.576736,0.943312,1.20328,-0.170052,-1.77861,1.64049,0.477019,2.05897,1.56873,0.360704,0.593687,0.761818,2.56939,1.35703,-0.540388,1.44226,0.351885,1.5189,1.36192,-0.638066,0.239836,0.546013,1.17741,0.0133257,-1.40056,1 +-0.649052,-0.081294,-0.677355,-0.644729,-0.543957,-0.669175,-0.779095,-0.901716,-1.01633,-0.315509,-0.659804,-0.637459,-0.703344,-0.510366,-0.507567,-0.458346,-0.379106,-0.818299,-0.530136,-0.329887,-0.614327,-0.111812,-0.655939,-0.587124,-0.191333,-0.421168,-0.599587,-0.691839,-0.591192,-0.222344,0 +3.9678,-0.19057,3.97263,5.24023,1.26846,0.894841,2.90142,2.84981,-0.596837,-1.06901,8.89908,0.469768,9.45367,10.6672,2.13455,0.125186,1.05997,0.368518,3.30105,0.257399,2.44987,-1.17262,2.41764,2.84253,-0.795736,-0.652519,0.229655,0.682979,-2.0249,-1.5888,1 +0.934354,1.45787,0.927239,0.832905,0.301456,0.194253,0.995997,0.439423,-1.83707,-0.586034,0.448692,0.816003,0.445601,0.399923,8.02294,3.35444,3.70722,4.45261,0.146098,3.31249,0.372588,0.389306,0.391006,0.246624,-0.353383,-0.476463,0.038881,-0.0715968,-2.09764,-0.872908,1 +0.0177944,1.05099,0.0370784,-0.125568,-0.123028,0.49721,0.284756,0.404632,1.54438,0.217041,0.0559943,1.13867,0.33036,-0.205251,1.2786,0.648969,0.165185,0.725066,2.95749,0.367751,0.122239,1.49242,0.230304,-0.121687,1.03061,0.963762,0.489931,0.952252,2.94702,1.03283,1 +-0.0758479,-0.548623,-0.0415257,-0.215931,0.443662,0.896734,0.128082,0.182998,1.07382,0.901142,-0.536838,-0.0414275,-0.461487,-0.387925,-0.360024,0.497084,0.238398,0.413897,-0.139396,0.289144,-0.107421,0.203828,-0.0851487,-0.229176,0.59702,1.16143,0.917494,0.772736,1.17872,1.21554,1 +-0.634864,-0.21847,-0.602866,-0.632794,-0.194131,0.2094,-0.281477,-0.450976,0.56679,0.0484947,-0.392597,0.627477,-0.385319,-0.414963,0.609829,0.91812,0.913212,0.981132,0.893705,0.370397,-0.624672,0.231487,-0.626774,-0.613645,0.356134,0.319919,0.040319,-0.0122652,0.802109,-0.0163785,0 +-1.11443,-0.420747,-1.10783,-0.948212,-1.12487,-0.857198,-0.389606,-0.9847,0.555847,0.0499111,-0.174792,1.27825,-0.0588861,-0.385726,-0.786333,0.319511,0.856232,-0.176027,0.611841,0.309174,-0.990886,-0.196416,-0.948179,-0.837582,-1.62482,-0.728153,-0.381971,-1.20026,-0.052945,-0.32422,0 +1.60971,0.527862,1.55278,1.63424,-0.17991,0.49721,0.481696,0.979074,1.03005,-0.989696,1.98378,-0.0559295,1.7909,1.8479,-0.0789267,0.346873,0.0850155,0.862823,-0.190204,0.094516,1.95745,0.482046,1.87601,1.98191,0.128388,0.440044,0.429056,1.02528,0.273559,-0.0772824,1 +1.5331,3.06446,1.48282,1.61435,-0.864631,0.163957,0.322388,0.449731,-1.39934,-1.36928,1.20452,0.188792,0.91794,1.52916,-0.50024,0.0537107,-0.174044,-0.164682,-0.873696,-0.581581,2.40642,3.21054,2.17063,2.80389,0.369273,0.987914,0.610243,0.728618,-0.303481,-0.457654,1 +-0.135438,-1.42516,-0.16828,-0.244347,0.00709029,-0.326266,-0.626185,-0.600192,-1.64738,0.0909854,-0.703076,-1.41984,-0.729558,-0.504211,-0.968513,-0.476215,-0.509299,-0.832561,-0.826517,-0.400558,-0.19225,-1.51755,-0.224721,-0.306281,-0.0555611,-0.0436329,-0.46154,-0.517952,-0.841728,0.179067,0 +-0.160977,-1.2531,-0.139061,-0.265943,0.621419,0.281353,-0.12794,-0.113629,0.548551,0.0329148,-0.534675,-1.30292,-0.422908,-0.424415,-0.396327,-0.130563,-0.213798,-0.556885,-0.256739,-0.331398,-0.266734,-1.39064,-0.183356,-0.340706,0.229122,0.0987371,-0.0694477,-0.360648,0.265478,-0.120469,0 +-1.1201,-0.409122,-1.10494,-0.971229,0.692522,-0.365839,-0.892116,-0.76719,0.358869,0.889811,-0.571456,0.0002657,-0.605909,-0.55587,0.285767,-0.640944,-0.773858,-0.676166,0.704989,-0.0128129,-1.05502,-0.461618,-1.05115,-0.886936,0.360514,-0.700823,-0.989667,-0.895392,0.249314,0.222807,0 +0.460467,0.223284,0.437507,0.302377,0.436552,0.304075,0.324896,0.404632,0.450062,0.0329148,-0.208689,-0.536489,-0.307668,-0.179092,-0.75769,-0.0970584,-0.266802,-0.511992,-0.341419,-0.250902,0.68087,0.750502,0.554684,0.3643,0.999955,1.23134,0.601136,0.506505,1.76546,1.24322,1 +-0.243269,-0.527698,-0.305323,-0.308283,-0.846855,-1.03007,-0.668081,-0.627767,-1.15129,-0.857974,-0.405578,-0.591234,-0.406587,-0.34418,-0.336044,-0.806232,-0.308212,-0.443924,-0.692238,-0.49088,-0.23363,-0.337966,-0.250612,-0.301714,-0.208852,-0.782813,-0.448598,-0.271194,-0.638067,-0.427202,0 +0.0603591,-1.35308,0.0222629,-0.038899,0.191958,-0.532087,-0.395878,-0.0744571,0.960745,-1.17807,0.421286,-0.733716,0.443623,0.174824,0.0159936,-0.625309,-0.274753,0.172417,0.256183,-0.88127,0.103618,-1.42806,0.0934092,-0.0129675,-0.116877,-0.646799,-0.522415,-0.0898526,0.260629,-1.28595,0 +-1.04632,-0.890401,-1.04321,-0.924342,0.63564,-0.513531,-1.03056,-0.947331,-0.0861545,0.241119,-0.771231,-0.569481,-0.820068,-0.625994,-0.175845,-0.97258,-0.96325,-1.10597,-0.668044,-0.368057,-0.98261,-0.956228,-1.00561,-0.85216,0.075831,-0.883235,-1.17819,-1.06441,-0.461884,-0.069531,0 +0.247644,-0.878776,0.225564,0.0841424,-0.899471,0.0995785,-0.29791,-0.286555,0.253085,-0.527963,-0.625186,-1.30564,-0.291841,-0.449695,-0.973176,0.368092,0.150609,-0.0398907,-0.802323,-0.223314,0.0291337,-1.03595,0.206496,-0.127131,-0.822015,0.689191,0.326,0.354373,0.0860619,-0.0180396,0 +-0.427716,1.08819,-0.437016,-0.450363,-1.23223,-0.550075,-0.431754,-0.736006,-1.08563,-0.369331,-0.577947,-0.273459,-0.702849,-0.479811,-0.62347,-0.141731,-0.0574343,-0.50324,-0.833776,-0.146596,-0.428116,0.916456,-0.493749,-0.450654,-0.423459,0.579236,0.569979,0.0516302,-0.120832,0.6591,0 +-0.368125,0.706888,-0.276103,-0.43104,0.8845,1.4307,1.0123,0.507459,1.13584,1.37987,-0.357258,-0.268021,-0.301238,-0.334288,-0.0193101,0.731613,0.494807,0.51762,-0.452714,0.688604,-0.221216,0.727724,-0.058365,-0.306632,1.9854,1.77985,1.70647,1.26412,0.818272,2.23429,1 +0.829361,-0.0487437,0.88197,0.6823,1.26135,1.00088,1.282,1.54836,1.16502,0.0640746,-0.394039,-0.974993,-0.352676,-0.183708,-0.502571,-0.301434,-0.0445145,0.331243,-1.0612,-0.551347,0.687077,-0.128082,0.780857,0.541693,1.6613,0.884315,1.1006,2.12519,0.336597,0.368976,1 +-0.79661,1.81127,-0.831682,-0.736512,-1.95748,-1.25369,-0.90905,-1.18017,0.209312,-0.923127,-1.02473,-0.587609,-0.893763,-0.697546,-1.12838,-0.503018,-0.515593,-1.40531,-0.625704,-0.658676,-0.866745,1.31345,-0.816641,-0.752222,-1.76672,-0.705908,-0.782692,-1.42664,-0.0836558,-0.72397,0 +-0.824986,3.37601,-0.871602,-0.761803,-1.31969,-1.29895,-1.05159,-1.0949,0.121766,-0.639855,-0.653674,0.779748,-0.681087,-0.546857,-0.893243,-1.04227,-0.9498,-1.35766,-0.16722,-0.476519,-0.808813,2.61993,-0.857709,-0.719554,-1.42029,-1.17846,-1.19357,-1.28683,0.0165584,-0.602162,0 +1.81119,1.981,1.7462,1.88714,-0.339181,0.0579219,0.835435,0.888617,-1.32638,-0.974116,0.428498,-0.0504913,0.445601,0.652281,-0.673095,-0.27128,0.0886596,-0.143614,-0.914827,-0.343114,1.69675,1.90405,1.64984,1.74129,-0.440978,0.138779,0.682622,0.634296,-0.749595,-0.0368644,1 +-1.29405,-0.785775,-1.30701,-1.06642,-0.833346,-1.20181,-0.906667,-0.831103,-0.950667,0.174551,-0.685046,-0.701087,-0.816606,-0.608847,1.53172,-0.841969,-0.663674,-0.352194,0.39772,-0.096333,-1.19158,-1.06036,-1.23566,-0.956664,0.789728,-1.0113,-0.961434,-0.644831,-0.232361,-0.119915,0 +-0.0276079,0.455786,-0.0896759,-0.146312,-0.402462,-0.660654,-0.9305,-0.772086,-1.07469,-0.629941,-0.527462,0.518712,-0.593049,-0.401554,0.11591,-0.650437,-0.814671,-0.284612,-0.957167,-0.328753,-0.194319,0.748875,-0.267575,-0.289947,-0.160675,-0.654426,-1.00601,-0.532101,-1.09065,-0.430524,0 +2.57735,1.7857,2.53224,2.88454,-0.0903207,1.20916,1.33217,1.9272,0.355221,0.0414129,2.35412,-0.459266,2.16679,2.53815,-0.204155,0.176001,0.433189,0.869306,-0.561588,-0.280379,3.04988,1.4371,2.93843,3.62412,0.688994,1.00635,1.48502,2.20126,0.326899,0.156367,1 +1.80267,0.504611,1.66801,1.8502,-0.910848,-0.394999,0.0203298,0.291238,-1.25708,-1.5619,1.01772,-0.318778,1.12666,0.948823,0.30575,0.32677,0.353683,0.796375,-0.862809,0.0521891,1.64503,0.0801751,1.62008,1.52702,-0.419079,-0.147232,0.209043,0.45478,-1.07125,-0.701823,1 +0.0263073,1.9903,0.0239091,-0.0880587,-1.0047,-0.00834996,0.269703,-0.124711,-1.71304,-0.213531,-0.251601,2.00698,-0.376416,-0.228113,-0.244454,0.16595,0.218852,-0.273267,-1.05153,-0.0778149,-0.107421,2.41818,-0.141692,-0.204763,-1.0629,-0.0741407,0.163986,-0.493155,-1.63374,-0.331417,0 +0.945704,4.6478,0.88197,0.755045,0.125121,0.482062,0.663583,1.01,-0.00955206,-0.444398,0.473934,-0.653955,0.0672357,0.190432,-0.726383,0.132446,-0.194584,0.315036,-1.00193,-0.391488,1.29123,3.12268,1.01001,0.926338,0.180945,0.757834,0.248828,1.39952,-0.0771903,0.0561524,1 +-0.138276,-0.857851,-0.188857,-0.226161,-0.151469,-0.720299,-0.523701,-0.299183,-0.345144,-0.877803,-0.291988,-1.00726,-0.430327,-0.289004,-0.190167,-0.725821,-0.456956,-0.124166,-0.188995,-0.756179,-0.293631,-1.07825,-0.391376,-0.346326,-0.200092,-0.795525,-0.569869,-0.340566,-0.599274,-1.04344,0 +-0.484469,-0.988052,-0.549778,-0.506911,-1.21588,-1.33322,-0.981805,-0.975164,-0.968906,-0.744666,-1.04529,-0.983151,-1.04313,-0.688731,-1.2576,-1.14742,-0.841472,-1.30207,-0.404325,-0.920196,-0.635017,-0.863489,-0.69671,-0.592217,-1.25561,-1.12183,-1.00544,-1.12709,0.000394857,-0.892286,0 +-0.802285,-0.255671,-0.742378,-0.754414,-0.0313053,0.533186,0.827908,-0.525197,0.884143,1.96766,-0.58552,0.770684,-0.245843,-0.526413,-0.125887,1.87969,1.88518,0.217796,-0.0716516,1.84428,-0.763295,0.371409,-0.598205,-0.716041,0.102109,1.46524,2.25962,0.10944,0.658253,2.53328,0 +-0.107062,1.04169,-0.141118,-0.184389,-1.13269,-0.686785,-0.524704,-0.656631,-0.14087,-1.20498,0.106479,-0.289774,-0.0183293,-0.00894856,-0.895908,0.066554,0.0601696,-0.27975,0.65781,-0.26753,-0.260527,0.107834,-0.27561,-0.306632,-1.69446,-0.699552,-0.653272,-0.81461,-0.384298,-1.14808,0 +1.49621,0.978916,1.52809,1.42112,0.450772,0.974367,1.45636,1.02933,0.606915,-0.396242,0.42958,1.06072,0.579142,0.44125,1.18868,0.39322,0.240385,0.61486,0.159405,0.0582358,1.11329,0.78955,1.12012,0.942145,0.610159,0.270344,0.352843,0.635818,0.0311057,-0.432185,1 +-1.03497,0.132608,-1.0391,-0.901325,0.756515,-0.84508,-0.507895,-0.469531,-0.272189,0.226956,-0.11998,2.52905,-0.172643,-0.376274,2.99716,-0.648762,-0.438736,-0.0755455,1.71994,-0.0887746,-0.990886,0.61546,-0.999365,-0.839163,0.837905,-0.963953,-0.738593,-0.718767,-0.0286996,-0.357994,0 +-0.263132,-0.432372,-0.322607,-0.321923,-1.72142,-1.11907,-0.569988,-0.975937,-1.18412,-0.913212,-0.873281,0.696361,-0.985758,-0.588624,-0.259775,-0.546574,-0.0365638,-1.03936,-0.111572,-0.583848,-0.48191,0.348631,-0.564874,-0.489294,-0.975306,-0.657604,-0.203181,-0.987432,-0.216197,-0.662513,0 +-0.351099,-1.20428,-0.288861,-0.405466,-0.622881,0.572949,0.609644,-0.235012,-0.786519,0.183049,-0.730843,-1.40788,-0.233973,-0.527293,-0.512896,1.69989,1.646,0.308553,-0.953538,1.42101,-0.388805,-1.2979,-0.0672929,-0.424133,-0.305206,2.10145,2.3991,0.631254,-0.423091,1.87441,0 +-0.986732,1.37882,-0.98601,-0.874898,0.0149116,-0.605933,-0.815473,-0.844504,0.311449,0.0697401,-0.560638,0.500584,-0.67713,-0.520918,0.049299,-0.844761,-0.698459,-0.899656,0.125533,-0.444396,-0.831572,1.54773,-0.871399,-0.746251,0.767829,-0.727517,-0.765436,-0.810046,0.821505,-0.137079,0 +-0.739857,-1.01363,-0.744847,-0.706391,0.351228,-0.497247,-0.570991,-0.505869,0.26038,-0.158294,-0.537199,-0.324216,-0.583652,-0.477393,-0.12622,-0.736989,-0.359229,-0.281371,-0.456343,-0.38204,-0.748812,-0.730074,-0.785096,-0.682846,0.286058,-0.610571,-0.43997,-0.281843,-0.382682,-0.32422,0 +1.9332,0.992866,1.9314,2.01501,0.308567,1.06525,2.28802,2.11533,1.43495,-0.54071,2.1594,-0.717945,1.73402,2.14466,-0.585502,0.759533,2.09654,1.10916,0.419495,0.456184,1.92641,0.215217,1.72721,1.98367,-0.493535,0.400002,2.04632,1.45885,0.364075,-0.302073,1 +-0.745532,-0.19522,-0.769128,-0.703266,-0.206929,-0.841293,-0.782984,-0.727502,0.0816413,-0.489721,-0.0449747,-0.677884,-0.0900457,-0.2934,-0.220142,-0.828009,-0.644129,-0.4248,0.287635,-0.882026,-0.682604,-0.523444,-0.718434,-0.652812,-0.616167,-0.949335,-0.916185,-0.747976,-0.259839,-1.05617,0 +1.58985,0.123308,1.59393,1.56604,0.699632,1.52537,1.91798,1.24941,-0.28678,0.59096,1.30152,-0.791906,0.61772,1.15348,0.479938,1.40114,1.19612,1.28258,-0.710384,1.30915,1.86434,-0.0141913,1.56354,1.84843,1.69195,2.16882,2.76435,2.07042,-0.245292,2.53328,1 +0.900302,-0.513748,0.865508,0.776641,0.315677,-0.00456299,0.474169,0.891967,0.00503887,-0.944372,-0.345718,-0.652686,-0.332892,-0.147437,-0.760688,-0.583428,-0.284029,0.133521,-0.798694,-0.541521,0.740871,-0.0955416,0.703482,0.599653,0.404311,-0.0874879,0.314496,1.08156,0.383472,-0.155904,1 +1.5104,0.00938181,1.42109,1.4609,0.507655,0.273779,0.615916,0.953303,-0.129927,-0.896216,0.687772,-1.0562,0.460439,0.674044,-0.796658,-0.417582,-0.145886,0.141624,-0.833776,-0.470473,1.95124,-0.180146,1.66174,1.91693,0.75907,0.393011,0.764587,1.29759,0.773014,0.307519,1 +-0.0474715,-0.520723,-0.0221834,-0.149153,0.941382,0.446086,0.114033,0.0912524,0.351574,-0.212115,0.0715003,-0.737886,-0.149892,-0.101055,-0.2298,0.0732549,-0.0233126,0.263175,0.00939968,-0.415674,0.0249957,-0.586897,0.024962,-0.095868,0.824766,0.457205,0.233489,0.346767,0.270327,-0.242276,1 +1.53877,2.2042,1.71328,1.56888,-0.267367,1.93058,1.12395,1.68753,0.296858,-0.0676466,1.57738,-0.0323638,2.12277,1.45222,-0.228135,1.23809,0.223159,0.550033,-0.143025,0.550664,1.81675,1.72345,2.12302,1.83614,-0.186953,1.77095,0.732952,1.20936,-0.133763,0.916557,1 +0.338448,-0.469573,0.462199,0.165981,2.64074,2.34903,1.95686,1.94009,2.13896,1.86427,0.916034,-0.286149,0.591012,0.420367,1.03547,1.13925,0.594191,1.5354,-0.205931,1.83861,0.302242,-0.490904,0.37315,0.0846865,1.93284,1.24596,0.818273,1.6475,0.577435,1.94639,1 +0.434928,0.909165,0.750277,0.337045,1.03382,3.92062,2.87006,2.288,2.49279,2.58378,3.19793,2.24264,3.58777,2.15785,1.77152,1.92492,1.67052,2.98914,0.342073,0.84922,0.740871,0.970148,1.08441,0.606679,0.789728,1.67116,1.65806,2.00196,0.608146,0.994071,1 +0.398039,3.31789,0.482776,0.255775,0.706743,1.12774,1.08255,0.903822,1.01911,0.524391,-0.588765,0.110843,-0.476325,-0.38067,-0.564852,0.00457116,-0.0995067,-0.25544,-1.28174,-0.164736,0.459487,3.88249,0.566588,0.271213,2.44965,1.92031,1.42894,1.32041,0.98799,2.01836,1 +1.75443,1.80662,1.68447,1.79905,0.258794,0.0844307,0.791531,1.14453,0.00868661,-1.00244,-0.0269445,-0.33328,-0.138021,0.263853,-0.665434,-0.541548,-0.355254,-0.585246,-0.934182,-0.719143,1.66779,2.19366,1.63794,1.69211,0.868563,0.255726,0.511022,0.838153,0.404484,-0.219022,1 +0.91449,0.876615,0.7832,0.790565,-0.692562,-0.784678,-0.751248,-0.529578,-0.903247,-1.37778,-0.0161264,0.181541,-0.142967,0.0895324,-0.437959,-0.805115,-0.643798,-0.668549,-0.778128,-0.83781,0.740871,0.942488,0.623131,0.592628,-0.366522,-0.671586,-0.724213,-0.490721,-0.72535,-1.04067,1 +0.897464,0.660388,0.923124,0.832336,-0.452945,0.434725,0.102493,0.673942,1.08112,-1.15541,1.54925,0.754369,1.62224,1.11237,-0.107902,1.91711,0.4799,1.57106,0.838058,0.772124,0.852598,0.254265,0.9118,0.727868,-0.830774,0.20615,-0.203181,0.58105,0.26871,-0.504163,1 +0.42074,0.0210069,0.330506,0.294705,-1.27703,-0.912298,-0.585919,-0.527001,-0.965258,-1.18515,-0.632398,-0.395276,-0.65883,-0.399136,-1.40381,-0.914283,-0.622265,-1.07323,-1.2596,-0.925865,0.339484,0.975029,0.257087,0.189717,-1.04976,-0.467565,-0.221396,-0.440061,-0.351971,-0.866817,1 +0.869088,0.646438,0.807893,0.776925,0.0639726,-0.272491,0.0227131,0.421383,0.202016,-0.991112,0.0545519,-0.867497,-0.0232753,0.111735,-0.848614,-0.749274,-0.378112,-0.311353,-1.10112,-0.838943,1.09881,0.594309,0.989175,0.975516,1.02623,0.0154761,0.559434,1.27477,0.509548,-0.456547,1 +1.87361,2.75058,1.7997,2.1713,-0.118762,0.188572,0.600863,0.967477,-0.155461,-0.857974,2.76521,0.725365,2.41508,3.50317,-0.829297,-0.597388,-0.346641,-0.407783,-0.831356,-0.56533,3.35609,3.49526,3.17651,4.48123,0.338615,0.0644158,0.345173,0.780343,-0.052945,-0.0977682,1 +-1.00092,-0.078969,-0.933744,-0.876603,0.0369535,0.196146,-0.312712,-0.579832,0.402642,0.29919,0.163454,-0.0359893,0.278923,-0.290982,0.142887,0.576935,0.0545379,0.30045,1.75382,-0.180231,-0.908125,-0.445348,-0.862471,-0.800523,-0.484775,-0.0175741,-0.386285,-0.53773,0.0634328,-0.447135,0 +-0.152464,0.592962,-0.197911,-0.266795,-1.19455,-0.411851,-0.603104,-0.708689,-0.644258,-0.595948,-0.242225,1.26738,-0.136043,-0.298456,-0.534544,-0.0791894,-0.0299382,-0.304222,-0.0293114,-0.297008,-0.303976,0.709827,-0.285729,-0.38479,-1.39576,-0.516505,-0.608215,-0.801983,-0.735048,-0.758851,0 +-0.356775,-0.716025,-0.394627,-0.405466,-0.150047,-0.798121,-0.624679,-0.844504,0.723642,-0.72342,-0.61545,0.0038912,-0.652895,-0.485746,-0.507234,-0.206506,-0.19889,-0.885881,0.651761,-0.618995,-0.490187,-0.331458,-0.535412,-0.497198,-0.296447,-0.466929,-0.349856,-0.864205,1.13669,-0.737812,0 +-0.969706,0.255834,-0.92469,-0.880866,0.841838,0.465021,-0.0541812,-0.521847,-0.523883,0.824659,-0.307855,0.493333,-0.314592,-0.43079,0.61982,1.24925,1.37468,0.916305,0.815074,1.4418,-0.947437,-0.0760175,-0.915145,-0.825814,0.0495526,0.00467124,-0.0900589,-0.435193,-0.478047,0.169655,0 +0.0461708,-0.574199,-0.0686874,-0.0633368,-2.28029,-1.46917,-1.02295,-1.09964,-1.10752,-1.28005,-0.991559,-0.901033,-1.00015,-0.649954,-1.182,-1.21554,-0.896696,-1.32703,-0.626913,-0.91226,-0.281217,-0.817932,-0.381555,-0.344218,-2.04527,-1.29598,-1.11937,-1.23647,-0.715652,-1.25937,0 +-0.805123,-1.45306,-0.81234,-0.758393,0.140764,-0.535117,-0.704333,-0.550711,-0.155461,-0.013825,-0.774476,-1.24636,-0.841831,-0.597197,-0.189501,-0.79618,-0.631872,-0.477634,-0.438197,-0.369568,-0.817089,-1.5452,-0.862768,-0.743089,0.150287,-0.658239,-0.693536,-0.412373,-0.271153,-0.206288,0 +2.16305,0.395335,2.27709,2.37589,-0.167112,1.73744,1.6395,1.54321,-0.330553,-0.121468,2.74718,0.244987,2.96804,2.56013,-0.450948,1.34697,1.04009,0.618102,-0.157542,0.309552,2.46642,0.407203,2.63786,2.64055,-0.226371,1.38706,1.47879,1.05722,-0.109518,0.256581,1 +-1.24439,-0.841576,-1.25392,-1.03715,-0.425926,-1.08782,-0.975533,-0.898108,0.982632,0.045662,-0.493205,0.348313,-0.551998,-0.526413,2.25112,-0.826892,-0.780053,-0.376666,-0.309967,0.176146,-1.14192,-0.780511,-1.16572,-0.922766,0.627678,-1.02052,-1.11089,-0.958679,-0.0965866,-0.121576,0 +1.07907,1.20677,0.956047,0.977542,-0.555333,-0.645128,-0.399014,-0.0381195,-0.998088,-1.09026,0.0577974,0.391819,-0.0499834,0.120308,-0.53188,-0.769935,-0.519237,-0.53063,-0.768451,-0.394511,0.962255,1.46638,0.828473,0.771777,-0.0380421,-0.468201,-0.307675,-0.0153079,-0.641299,-0.247259,1 +-0.634864,-0.448647,-0.648959,-0.623132,1.85861,-0.610477,-0.370163,0.647397,0.741881,-0.573286,0.851126,1.95078,0.571228,0.186914,2.37768,-0.591246,-0.636841,1.18372,0.754588,-0.299653,-0.800537,-1.08802,-0.827354,-0.716919,0.154666,-1.08421,-0.961817,-0.382555,-1.10035,-1.30754,0 +-0.793772,-1.19265,-0.830448,-0.733955,-0.182754,-1.24252,-1.09524,-1.17481,0.519369,-0.64977,-0.604632,0.114469,-0.643498,-0.511026,0.461287,-0.920258,-1.00731,-1.3716,0.367477,-0.819292,-0.841917,-1.08802,-0.889552,-0.742211,-0.283307,-1.14903,-1.28093,-1.57451,-0.230744,-1.11209,0 +1.32879,0.160508,1.19062,1.27051,-0.506984,-0.861553,-0.107869,0.245107,-0.954315,-1.81826,-0.277203,-0.704894,-0.248811,-0.0790723,0.176526,-0.800647,-0.187627,0.459276,-0.150283,-0.800774,0.76363,-0.224075,0.646939,0.624243,-0.353383,-0.878786,-0.245362,0.225061,-0.539469,-1.47143,1 +-0.152464,-0.337046,-0.235773,-0.234685,-1.20024,-1.20844,-0.86339,-0.941662,-0.870417,-1.07609,-0.530708,-0.0921845,-0.585136,-0.398256,-1.09907,-1.12821,-0.703759,-1.0943,-0.85918,-1.00863,-0.159146,0.0687861,-0.248529,-0.248496,-1.19867,-1.13162,-0.796592,-0.954724,-0.914464,-1.18019,0 +-0.0786856,-0.955502,-0.122599,-0.191777,-0.0853434,-0.519969,-0.55205,-0.304337,1.08842,-0.604446,-0.567129,-0.539027,-0.51243,-0.460027,-0.934542,-0.562209,-0.573898,-0.221406,-0.636591,-0.832141,-0.266734,-0.640589,-0.264599,-0.369861,-0.607408,-0.520318,-0.606777,-0.223272,0.0876782,-0.820863,0 +1.4281,1.69967,1.40874,1.37281,0.401,0.775552,1.2958,1.22983,0.329687,-0.0846429,0.832735,-0.391288,0.719607,0.644367,0.116909,-0.0551781,0.264569,0.183762,-0.749095,-0.131857,1.54158,1.66325,1.56354,1.48135,2.00729,0.825206,1.45339,1.10438,0.577435,0.733846,1 +-0.677429,-1.2252,-0.72962,-0.646718,-1.29623,-1.15391,-0.832281,-0.548649,1.05559,-0.236193,0.565167,0.0927159,0.420871,-0.0551115,0.330729,-0.617491,-0.555015,1.07999,1.04855,-0.676438,-0.612258,-1.20679,-0.671414,-0.609254,-1.25999,-1.07582,-0.981854,-0.482353,0.323667,-0.944885,0 +1.49621,-0.257996,1.44989,1.3927,0.521875,0.754723,0.925751,1.17829,0.296858,-0.549208,0.237017,-0.401983,0.0182707,0.281878,-0.461939,-0.194779,-0.0431894,0.51762,-0.521668,-0.691555,1.55606,0.483673,1.34331,1.31274,0.851044,0.766732,0.764108,1.68249,1.11407,-0.3364,1 +0.599512,-0.120819,0.692661,0.42684,0.728073,1.43638,1.32967,1.07211,0.234846,0.572547,-0.425051,-0.543015,-0.198857,-0.26922,-0.8253,0.521095,0.22614,0.0476255,-0.805952,0.108121,0.471901,-0.0955416,0.584443,0.264187,0.180945,1.37498,1.10443,0.8914,-0.211348,1.23769,1 +-0.351099,-0.834601,-0.324665,-0.392963,-1.29267,-0.161722,0.284756,-0.387063,-1.38475,-0.488305,-0.410627,0.312059,-0.256724,-0.374735,-0.207485,0.789129,1.56948,0.963304,-0.213189,-0.0373776,-0.490187,-0.974125,-0.450597,-0.500535,-1.45007,-0.143419,0.298199,-0.196345,-1.45756,-0.701823,0 +-0.439066,-0.206845,-0.49957,-0.471391,-0.883829,-1.17739,-1.09056,-1.18535,-0.418098,-0.601614,-0.480584,0.241361,-0.566341,-0.3932,-0.219142,-0.97554,-0.994953,-1.43788,0.625147,-0.672659,-0.572947,-0.42257,-0.645821,-0.555861,-1.25123,-1.19505,-1.27794,-1.61008,-0.639683,-1.08718,0 +-0.620676,0.34186,-0.580231,-0.607788,-0.733091,-0.0613674,-0.289255,-0.28372,-0.815701,0.688688,-0.47229,0.313871,0.164176,-0.405071,-0.107236,1.45642,0.396749,0.73479,-0.220447,1.59485,-0.626741,0.2624,-0.448216,-0.587475,-0.909609,0.171829,-0.171066,0.0135972,-0.704337,0.878354,0 +-0.351099,-1.43446,-0.414792,-0.394952,-1.90629,-1.2696,-0.8304,-0.958928,-1.73128,-0.989696,-0.908621,-1.35567,-0.866066,-0.607968,-0.769347,-0.671656,-0.509299,-0.954759,-0.526507,-0.647717,-0.548119,-1.64933,-0.591063,-0.533203,-1.58584,-0.887048,-0.736197,-0.927188,-0.956489,-0.819201,0 +-0.813636,0.155858,-0.751021,-0.741059,-1.14904,0.260524,0.0494317,0.17939,2.85757,-0.0662303,0.293632,1.24744,0.00541126,-0.124356,2.89724,3.19082,1.62646,3.73951,1.64978,1.02873,-0.912263,-0.544595,-0.862768,-0.778041,-1.29503,-0.444684,-0.563638,-0.32657,0.0876782,-0.767156,0 +-0.782422,-0.0929191,-0.814809,-0.73566,-0.6563,-1.02742,-0.812964,-0.7007,0.734586,-0.459978,-0.503302,1.37252,-0.4511,-0.502233,-0.167519,-0.643736,-0.600731,-0.303412,1.64736,-0.327619,-0.808813,0.0752941,-0.832414,-0.739928,-0.90085,-0.999037,-0.943795,-0.799853,0.591982,-0.775461,0 +0.0802226,0.102383,0.167125,-0.0110513,-0.625014,1.1978,0.594591,0.440711,-0.356087,1.29206,1.71621,1.00272,0.738896,0.808356,0.240139,4.51871,2.24297,2.57911,2.44699,7.20506,-0.103283,-0.577135,-0.1655,-0.198967,-1.4251,-0.044904,-0.240569,-0.19026,-1.01629,0.223915,0 +0.236293,-0.0440937,0.208279,0.0920989,-0.457923,-0.11571,-0.368783,-0.018791,0.245789,-0.605863,-0.423609,-0.487364,-0.343773,-0.340003,-0.569182,-0.241685,-0.547727,0.0119707,-0.643849,-0.370324,-0.00397038,0.0834291,0.0547217,-0.124321,-0.0468016,0.30975,-0.43997,0.521718,0.0989927,0.0428643,0 +-0.334074,-0.7602,-0.36335,-0.401203,0.294346,-0.471685,-0.341814,-0.392217,-0.297723,0.269447,-0.705961,-0.821635,-0.808693,-0.498276,0.56087,-0.304226,-0.283035,-0.0771661,0.690472,0.351879,-0.523291,-0.935077,-0.549102,-0.51845,0.697753,-0.301679,-0.230503,-0.137014,0.774631,0.658546,0 +-0.646215,-0.425397,-0.67612,-0.631373,-0.89876,-0.907375,-0.776712,-0.673125,0.231198,-0.799904,-0.714616,0.0383334,-0.807209,-0.581589,0.184519,-0.585104,-0.588805,-0.521554,-0.317225,-0.759958,-0.663983,0.0118408,-0.68183,-0.63718,0.198464,-0.498708,-0.673884,-0.353041,0.323667,-0.768264,0 +-0.399339,-1.28101,-0.419319,-0.462582,0.0220219,-0.386478,-0.952327,-0.76487,-0.633315,-0.254606,-0.809455,-0.949433,-0.754782,-0.59258,-0.325387,-0.763793,-0.83912,-0.618794,-0.822888,-0.908103,-0.572947,-1.33369,-0.557137,-0.574127,-0.112498,-0.680485,-1.05385,-0.778555,-0.859508,-0.815326,0 +-0.101387,-1.39958,-0.160872,-0.205133,-0.311451,-0.797743,-0.980551,-0.766674,-0.80111,-0.520881,-0.670983,-0.946714,-0.686033,-0.496737,-0.896907,-0.967443,-0.915049,-0.805009,0.120694,-0.753156,-0.330873,-1.42318,-0.38959,-0.385493,-0.673104,-0.934717,-1.1258,-0.860858,-0.125681,-0.886196,0 +-0.912953,-1.61348,-0.939506,-0.827444,-0.79495,-1.08176,-0.95885,-0.907901,-1.32274,-0.352335,-0.828927,-0.344157,-0.790887,-0.64292,-1.18666,-0.740898,-0.70144,-0.389469,1.07274,-0.13866,-1.01364,-1.76648,-1.03686,-0.85778,-1.71898,-1.13899,-1.16644,-1.25762,-1.2248,-0.9698,0 +-0.671753,-0.267296,-0.698343,-0.63592,0.236042,-0.855872,-0.777088,-0.354849,-0.702621,0.010253,0.864828,1.60999,0.629096,0.19285,-0.481256,-0.861514,-0.635184,0.409035,-0.579734,-0.391865,-0.601913,-0.372133,-0.65951,-0.574302,-0.817635,-1.10925,-1.01133,-0.654263,-1.4915,-0.819201,1 +0.0376579,-0.260321,-0.0308257,-0.061916,-2.17577,-0.98728,-0.80343,-0.906613,-0.644258,-0.982614,-0.631677,-0.993121,-0.596017,-0.434747,-1.28958,-0.653787,-0.699121,-1.06205,-1.15072,-0.694578,-0.0101774,-0.0678825,-0.0434852,-0.106933,-1.66073,-0.238756,-0.55453,-0.597974,-0.42794,-0.397858,0 +-1.02646,0.88359,-1.03375,-0.911271,0.365449,-0.688678,-0.800922,-0.777498,-0.425394,0.391253,-0.426854,-0.133878,-0.285411,-0.434747,1.04213,-0.616933,-0.440061,0.114073,1.70543,-0.689288,-1.10468,-0.237091,-1.1059,-0.909593,-0.791357,-1.06857,-1.10538,-1.26812,-1.08903,-0.895608,0 +1.5331,-0.0905941,1.54455,1.5973,1.32534,1.13342,1.64201,1.4762,-0.0715635,0.385588,2.54524,-0.101248,2.16185,2.03695,-0.328051,0.365859,0.811179,0.896857,-0.205931,0.374932,1.99883,0.0915641,1.89982,2.05919,0.75031,0.99999,1.6293,1.26869,0.108691,0.849563,1 +-0.473118,0.139583,-0.474877,-0.521687,-0.842589,-0.055687,-0.257142,-0.462058,-0.111689,-0.0435686,-0.147747,-0.320591,-0.141978,-0.264164,-0.170183,0.458554,0.504414,0.362036,0.82959,0.323535,-0.581223,-0.424197,-0.569338,-0.578342,-1.19867,-0.244476,-0.392037,-0.583521,-0.348739,-0.349135,0 +1.69201,1.06262,1.75855,1.68254,0.827618,1.50454,1.74989,2.03802,1.59545,1.68439,2.40461,0.953772,2.44228,1.98859,0.307416,1.21966,1.47738,1.22585,0.824751,0.806137,1.5333,0.610579,1.53378,1.43217,0.102109,0.539194,1.05938,1.18197,0.635624,0.594874,1 +-1.03213,-0.15802,-1.03334,-0.910987,0.742294,-0.71121,-0.825759,-0.801981,-1.20236,0.453573,-0.925569,0.627477,-0.905634,-0.665122,0.610828,-0.899932,-0.457619,-0.42091,-0.318435,-0.180609,-1.07778,-0.185027,-1.08626,-0.887287,0.391172,-0.952513,-0.900943,-0.75041,-1.11166,-0.305948,0 +-0.756883,-0.262646,-0.756371,-0.715484,-0.556756,-0.518833,-0.694424,-0.873625,-1.46135,-0.0520667,-0.279007,-0.286149,-0.193416,-0.382649,-0.129551,0.0581779,-0.320801,-0.646508,-0.193833,-0.145084,-0.742605,-0.66174,-0.731231,-0.686359,-0.786977,-0.479006,-0.717023,-0.905433,-1.11974,-0.418897,0 +-0.717156,1.20909,-0.730032,-0.675418,-1.53726,-0.898665,-0.866275,-0.922333,0.450062,-0.569037,-0.555229,1.03172,-0.447638,-0.486406,-0.306069,-0.117719,-0.52785,-0.77762,1.3788,-0.598587,-0.792261,0.966894,-0.769918,-0.709718,-1.61694,-0.751034,-0.957695,-1.01101,0.554806,-0.913326,0 +-0.263132,-0.806701,-0.325077,-0.334141,-0.799927,-0.98141,-1.09557,-1.17667,-0.655201,-0.546376,-0.774837,-1.16624,-0.822047,-0.545978,-1.13537,-0.983748,-1.0192,-1.52507,-0.85918,-0.457245,-0.384667,-0.850473,-0.454168,-0.427997,-0.857053,-0.760568,-1.251,-1.3632,-0.403695,-0.00530512,0 +-1.45494,-1.13685,-1.46545,-1.16105,-1.87074,-1.38567,-1.06772,-1.17123,-0.0861545,0.783584,-0.831451,0.159788,-0.851723,-0.671519,0.11591,-1.15004,-0.934627,-1.34907,0.782411,-0.620506,-1.35938,-0.912299,-1.37969,-1.04518,-1.47854,-1.28352,-1.23413,-1.53222,0.145867,-0.326988,0 +-0.178003,-1.52978,-0.258407,-0.252019,-1.60695,-1.29137,-1.0793,-1.14683,-1.62915,-1.33812,-0.651871,-0.961579,-0.671195,-0.438484,-1.23329,-1.21353,-0.989321,-1.38634,-0.694658,-0.842345,-0.268803,-1.42155,-0.350605,-0.319454,-1.84556,-1.24513,-1.23858,-1.40732,-1.02438,-1.21951,0 +-0.305697,-1.26705,-0.381046,-0.35318,-0.912981,-1.26846,-1.0567,-1.03318,-1.30815,-1.07893,-0.0276657,-0.703987,-0.147913,-0.161067,-0.963518,-1.15965,-0.962786,-1.13044,-0.764822,-0.575156,-0.318459,-1.34671,-0.395839,-0.365646,-1.34758,-1.24444,-1.21725,-1.2062,-1.28299,-1.00468,0 +-0.688779,-0.0417687,-0.725917,-0.671156,-0.584486,-0.981032,-0.915322,-0.964856,0.45371,-0.214948,-0.883739,0.386381,-0.869033,-0.638743,-0.325387,-0.914004,-0.711379,-0.673897,0.356589,-0.806442,-0.757088,0.142001,-0.783905,-0.698126,-0.440978,-0.925183,-0.925293,-0.870138,0.947581,-0.795394,0 +0.136975,-0.836926,0.0292591,0.028447,-1.43488,-1.31012,-0.932382,-0.776983,-0.655201,-1.45143,-0.321558,-0.553529,-0.4511,-0.251414,-0.669431,-1.08649,-0.880165,-0.886853,-0.677722,-1.096,0.0394787,-0.638962,-0.10598,-0.0698738,-1.36948,-1.16562,-1.07719,-0.859185,-0.599274,-1.49468,0 +-0.387989,-1.37633,-0.398331,-0.428483,-0.598706,-0.470738,-0.605613,-0.604057,-0.768281,-0.197952,-0.283694,-1.01052,-0.257219,-0.333188,-0.182173,0.122953,-0.0173496,-0.179268,-0.391018,0.225654,-0.430185,-1.50941,-0.452978,-0.459787,-0.56799,-0.212697,-0.456747,-0.463945,-0.544318,-0.0783897,0 +-0.734182,-1.99246,-0.750609,-0.698435,-0.738779,-0.845458,-0.942417,-1.03117,0.0779935,-0.254606,-0.987953,-1.5529,-0.870023,-0.679235,-0.971511,-0.674448,-0.724298,-1.1554,-0.0268919,-0.696468,-0.812951,-2.08374,-0.77468,-0.724999,-1.01472,-0.582605,-0.905688,-1.02623,0.790794,-0.531846,0 +-1.5693,-0.160345,-1.55887,-1.23237,0.784956,-0.868559,-1.11389,-1.26071,1.28175,1.52859,-0.246552,2.82815,-0.318549,-0.495199,4.56584,-0.639269,-1.05657,-1.91177,4.9499,1.14324,-1.51393,-0.526698,-1.50617,-1.12492,0.102109,-1.1224,-1.30468,-1.74353,0.389937,-0.154243,0 +-0.464605,-0.567223,-0.525908,-0.492419,-0.799927,-1.24972,-1.05778,-1.09518,-2.17631,-0.859391,-0.842269,-0.909553,-0.899698,-0.607748,-0.703736,-1.25452,-0.969776,-1.36236,-0.799903,-0.926243,-0.606051,-0.970871,-0.677961,-0.590812,-0.962166,-1.30126,-1.21179,-1.31999,-1.5901,-1.22947,0 +-0.552572,-1.21125,-0.605747,-0.549819,-1.3524,-1.36749,-0.973024,-1.13054,-0.505644,-0.893383,-0.69911,-1.11893,-0.706312,-0.538943,-0.565518,-1.10068,-0.684545,-1.09316,-0.0934266,-1.07507,-0.707432,-1.49802,-0.763669,-0.645435,-1.41328,-1.27717,-1.10739,-1.46178,-0.982351,-1.30532,0 +1.16137,-0.0975692,1.10009,1.05739,0.0781932,0.139342,0.303572,0.788109,-0.0168475,-0.872138,-0.00386587,-1.20829,-0.157805,0.188233,-0.739372,-0.496317,-0.258852,-0.0593388,-0.94265,-0.507887,1.1526,-0.110185,1.00108,1.06158,0.483146,0.14005,0.542178,0.958338,-0.143461,-0.108842,1 +-1.44303,-0.0905941,-1.31277,-1.16616,0.236042,1.75827,1.36353,0.00414542,1.89092,3.48883,0.216824,1.25831,0.44659,-0.354731,0.93389,2.25717,2.34566,2.18367,1.73809,1.5427,-1.28468,-0.370506,-1.14995,-1.02481,-0.449737,0.766097,0.904552,-0.001616,0.378623,1.19339,0 +-0.481631,-0.532348,-0.550189,-0.504638,-1.47825,-1.32167,-0.945553,-0.822856,-1.23884,-1.01802,-0.0987046,1.7822,-0.187481,-0.201734,0.105252,-0.820192,-0.726651,-0.0966142,1.66793,-0.315148,-0.697087,-0.889521,-0.758907,-0.640518,-2.11447,-1.31657,-1.19746,-1.31269,-1.61596,-1.36346,0 +-1.10024,-0.723,-1.04733,-0.939687,0.692522,0.127981,-0.270188,-0.238878,-0.250302,1.41528,-0.135126,0.460704,-0.627671,-0.388144,1.14871,0.958884,0.269869,0.59055,0.804186,1.43651,-1.03227,-0.82444,-1.06335,-0.860942,0.342995,-0.116089,-0.394913,-0.261153,-0.473198,0.72388,0 +1.71187,0.0861075,1.6104,1.75927,-1.14904,-0.3541,0.334932,0.730381,0.424528,-1.67663,0.675512,-0.96176,0.495555,0.758676,-0.834293,-0.654346,-0.180339,0.109211,0.167873,-0.833653,1.40502,-0.430705,1.27784,1.36367,-1.18115,-0.639172,-0.0555471,0.424354,0.249314,-1.36291,1 +-0.359612,-1.38796,-0.376519,-0.426494,1.21157,-0.302976,-0.637223,-0.384486,-0.979849,0.277945,-0.66341,-0.316965,-0.619263,-0.522457,-0.376677,-0.296967,-0.426479,-0.273267,-1.03096,-0.259972,-0.46122,-0.747971,-0.430361,-0.493685,0.978056,-0.198079,-0.446202,0.0135972,-0.838495,0.0877116,0 +1.76295,0.516236,1.80793,1.73085,1.46754,1.5746,2.10363,2.61529,2.76273,0.552718,0.595097,-0.351408,0.566777,0.631398,-0.518225,-0.0652293,0.000208164,0.306933,0.863462,-0.170027,1.86848,1.00594,1.89982,1.85721,1.17514,1.23897,1.25686,2.34122,4.29506,1.02175,1 +-0.546897,-0.948527,-0.57447,-0.559765,-0.684741,-0.736394,-0.863767,-0.82466,-0.633315,-0.213531,-0.532511,-0.742418,-0.448627,-0.46882,-0.545535,-0.630893,-0.708397,-1.07842,-0.872487,-0.653763,-0.521222,-0.699161,-0.480654,-0.52249,-0.296447,-0.39066,-0.745304,-0.898283,-0.387531,-0.240062,0 +-0.413528,-0.462598,-0.441131,-0.468833,0.457883,-0.524513,-0.713365,-0.717709,-0.381621,-0.418903,-0.703798,-0.482832,-0.643003,-0.499595,-0.0772615,-0.891444,-0.616302,-0.862543,0.00335107,-0.759958,-0.529498,-0.744717,-0.552375,-0.53777,0.26416,-0.845735,-0.815765,-0.891285,-0.343889,-0.834151,0 +-0.00490678,-1.49026,-0.079799,-0.109087,-0.232526,-0.970996,-0.892492,-0.55638,-1.59996,-0.821149,-0.533953,-0.246268,-0.64696,-0.360886,-0.116229,-0.790596,-0.867179,-0.837747,-0.77208,-0.498439,-0.152939,-1.24909,-0.263707,-0.229528,-0.186953,-0.9112,-1.0503,-0.847471,-1.29431,-0.726185,0 +-0.595137,-0.316121,-0.653486,-0.59358,-1.38866,-1.23873,-1.0945,-1.1166,-1.56713,-0.297097,-0.619056,-0.556792,-0.692463,-0.513664,-0.770013,-1.03814,-1.01735,-1.27144,-0.711594,-0.770918,-0.661914,-0.557611,-0.729743,-0.627345,-1.36072,-1.14636,-1.26762,-1.31817,-1.17955,-0.751654,0 +0.608025,0.330235,0.614469,0.451277,1.46043,0.521825,0.740101,0.926758,0.497483,-0.00391054,0.116576,0.0274569,0.199787,0.0895324,-0.114563,-0.259554,0.0194223,0.344208,-0.626913,-0.38015,0.622938,0.765145,0.670746,0.42226,1.16639,0.256997,0.419469,0.664723,0.326899,-0.107734,1 +0.605187,0.602262,0.639161,0.488502,1.43199,0.45366,1.14276,0.796098,0.209312,0.357261,0.596539,0.435325,0.0469573,0.382118,1.17202,0.674656,0.877766,0.0103501,2.38045,0.904018,0.302242,-0.0760175,0.191616,0.166182,0.448109,-0.271171,0.298199,-0.150705,-0.266304,-0.244491,1 +0.539921,-0.878776,0.569199,0.393025,-0.103119,0.620286,0.396397,0.553847,-0.108041,-0.430234,-0.24547,-0.850639,-0.117248,-0.155351,-0.400324,0.389312,0.17413,0.452793,-0.710384,-0.254681,0.51535,-0.601541,0.507068,0.332686,0.487526,1.23007,1.07088,1.27021,0.191125,0.403858,1 +-0.325561,0.0140319,-0.306557,-0.400351,-0.0405486,0.154489,-0.222395,-0.500457,-0.184643,0.368592,-0.493205,-1.17911,-0.198362,-0.432769,-0.437626,0.394896,0.398736,-0.321725,0.842897,0.293679,-0.382598,-0.606422,-0.239601,-0.432564,-0.156295,0.451484,0.343735,-0.24381,1.12376,0.427112,0 +-0.824986,0.132608,-0.824275,-0.760382,0.64275,-0.692086,-1.0511,-1.06529,0.468301,-0.356584,-0.387909,1.35801,-0.448627,-0.45541,1.94804,-0.806232,-0.947348,-1.10678,2.6478,-0.692311,-0.887435,0.0167219,-0.903242,-0.780676,0.439349,-1.00152,-1.24069,-1.43592,0.632391,-1.03679,0 +-0.816473,-1.0485,-0.847321,-0.752709,-0.945688,-1.13156,-1.10168,-1.18492,-0.14087,-0.281517,-0.687931,-0.400171,-0.661303,-0.55543,-0.474262,-1.0249,-1.02431,-1.43513,-0.428519,-0.66699,-0.726053,-0.588525,-0.749384,-0.681265,-0.690623,-0.993571,-1.27823,-1.48992,-0.138612,-0.540705,0 +-0.518521,-0.0626939,-0.57982,-0.541294,-0.940711,-1.18004,-1.0166,-1.04075,-0.99444,-0.474141,-0.797555,0.571282,-0.82452,-0.595658,0.279772,-0.951863,-0.824543,-0.854764,-0.139396,-0.59443,-0.603982,0.45276,-0.676473,-0.590637,-0.445358,-1.04073,-1.13121,-1.13759,-0.560482,-0.65753,0 +0.832199,0.39766,0.816123,0.749361,1.10492,0.0238392,0.777732,1.29941,-0.308666,-0.29568,1.48182,1.65349,1.58762,1.0295,-0.195163,-0.419258,0.434846,0.914684,-0.272465,-0.0233946,0.976738,1.21583,1.06953,0.845545,0.548842,-0.311212,0.574293,1.03593,-0.448953,-0.440491,1 +-0.322723,-1.17638,-0.324665,-0.399498,-0.123739,-0.0888229,-0.645,-0.720028,-0.582246,1.35721,-0.80693,-1.04352,-0.961572,-0.569939,-0.60282,-0.135588,-0.0253003,-0.726245,-0.502312,0.72035,-0.527429,-1.42643,-0.591658,-0.53496,-0.795736,-0.360788,-0.609653,-0.853556,-0.757677,0.938704,0 +1.31744,0.497636,1.27293,1.2421,-0.369755,0.678984,0.215764,0.308762,0.515722,-0.278684,0.854732,0.567656,0.743348,1.05324,0.168865,0.753391,0.240054,1.03137,0.13763,0.245684,1.71123,1.41432,1.60222,1.74305,0.763449,1.45189,0.916535,1.37214,1.25792,0.816896,1 +-1.15699,-0.409122,-1.13416,-0.977764,0.308567,-0.588513,-0.798915,-0.80327,0.285914,0.0725728,-0.516644,1.44684,-0.538149,-0.516302,0.253794,-0.613582,-0.49671,-0.60826,0.0553691,-0.384307,-1.05709,0.189185,-1.04996,-0.872182,0.342995,-0.724975,-0.798989,-0.754822,-0.0109197,-0.404502,0 +2.66248,1.15794,2.59809,3.10334,0.749404,0.45366,1.78125,2.37304,-0.0533249,-1.09592,2.17743,-0.529963,1.77854,2.7206,-0.24945,-0.322095,0.130069,0.196727,-0.695867,-0.255815,2.97953,0.82209,2.8313,3.55738,0.837905,0.0860255,1.00521,1.43451,-0.497444,-0.36353,1 +0.0830602,-0.639299,0.0897555,-0.038899,0.0817483,0.180998,-0.1095,-0.172388,0.366165,0.187298,-0.202198,-0.808945,-0.0935078,-0.180191,-0.820638,0.282098,0.215539,0.102728,-0.219238,-0.159445,0.0829278,-0.67801,0.123169,-0.0324632,-0.130017,0.526483,0.495204,0.407619,0.246081,0.204536,0 +-1.28298,-0.569549,-1.24816,-1.06386,-0.821258,-0.228373,-0.0574426,-0.670032,0.818484,1.19716,-0.796112,-0.496609,-0.710763,-0.621377,-0.362022,0.515511,0.609098,-0.532575,-0.368033,0.0892252,-1.14192,-0.424197,-1.07168,-0.925576,-0.39718,0.555084,0.776091,-0.508216,0.13132,0.791981,0 +-0.870389,-1.00665,-0.842794,-0.798459,0.493434,-0.253177,-0.436897,-0.399691,-0.129927,0.888395,-0.883739,-0.714864,-0.747363,-0.649295,0.124902,-0.374585,-0.142904,-0.274888,0.35538,-0.331776,-0.899849,-0.939958,-0.818427,-0.773826,0.413071,-0.211426,-0.202702,-0.108108,0.646938,0.379496,0 +1.57566,0.555762,1.56101,1.53194,0.114456,0.559695,1.22304,1.58186,0.986279,-0.799904,0.784053,1.93447,1.141,0.600622,-0.761021,0.457995,0.382835,1.01517,2.05867,-0.191569,1.34088,1.4615,1.49806,1.15818,-0.462876,0.581778,0.964468,1.68705,1.84951,-0.263869,1 +-0.685942,-0.892726,-0.697109,-0.666609,1.32534,-0.597033,-0.611383,-0.423143,0.719995,0.320435,-0.218425,-0.865322,-0.252768,-0.347477,0.830976,-0.81014,-0.50963,-0.0949935,-0.12246,-0.262617,-0.663983,-1.22306,-0.687484,-0.639639,0.59702,-0.907387,-0.78365,-0.547162,-0.21943,-0.325881,0 +-1.0974,-1.06478,-1.0605,-0.947075,0.174893,-0.241438,-0.664694,-0.735749,-0.651553,1.0272,-0.242225,2.34234,-0.233478,-0.461785,3.43679,1.1856,-0.191602,0.188624,1.96068,1.11981,-1.11503,-1.00829,-1.08239,-0.919429,0.159046,-0.576249,-0.961386,-1.12374,-0.754445,0.051723,0 +-0.586624,-0.0905941,-0.630028,-0.595569,-0.888806,-0.878594,-1.01969,-1.04196,-0.936076,-0.328256,-0.584798,-0.117563,-0.646466,-0.490582,0.0463015,-0.810699,-0.863369,-1.02121,-0.087378,-0.393377,-0.543981,0.224979,-0.616656,-0.558495,-0.151915,-0.756754,-1.0887,-0.96872,-0.0335487,-0.172514,0 +0.17954,-1.0578,0.119386,0.0392451,-0.541113,-0.502549,-0.535868,-0.351499,-1.0601,-0.520881,-0.224916,-1.48419,-0.162751,-0.247897,-0.769014,-0.581753,-0.442049,-0.18251,0.131581,-0.382418,0.207068,-1.26048,0.206496,0.000380906,-0.454117,-0.339178,-0.273643,0.159644,0.336597,-0.114932,0 +-0.754045,-0.757875,-0.779828,-0.716621,-0.398196,-0.861174,-0.789381,-0.662301,-0.647905,0.130643,-0.845515,-0.825441,-0.878431,-0.61742,0.716073,-0.945386,-0.745169,-0.888312,-0.361985,-0.297008,-0.777778,-0.795154,-0.821105,-0.710948,0.907981,-0.904209,-0.833836,-0.747368,-0.0804231,0.203983,0 +-0.617838,-1.00665,-0.60657,-0.648423,1.38222,0.307862,-0.967003,-0.800177,2.36147,0.426662,-0.159286,-0.302463,-0.203308,-0.300874,-0.413313,-0.073047,-0.797644,-0.20682,0.822332,-0.257326,-0.715708,-1.29465,-0.719327,-0.675118,-0.134396,-0.41799,-1.15504,-1.01847,0.360843,-0.445474,0 +-0.70013,-0.516073,-0.751844,-0.66462,-1.4754,-1.28834,-1.0097,-0.961248,-0.512939,-0.777242,-0.186692,-0.986957,-0.317065,-0.314503,-0.152532,-1.03233,-0.859493,-0.891391,0.195697,-0.425878,-0.618465,-0.96599,-0.703852,-0.593798,-1.43605,-1.20446,-1.15868,-1.09514,-0.274386,-0.869032,0 +0.460467,-0.0161934,0.6227,0.294705,1.98659,2.50051,2.54141,1.94009,2.05507,1.87418,0.415516,0.19423,0.302169,0.239232,0.762034,2.23986,2.24065,1.78823,4.22044,1.33598,0.225689,-0.245226,0.361246,0.0609756,0.991196,1.59108,1.98928,1.50449,2.17278,1.16571,1 +3.29244,-0.425397,3.38413,3.85069,1.31823,2.49862,3.1109,3.66934,0.526665,-0.224862,2.12622,-0.663382,2.15443,2.4788,-0.223805,0.946599,0.356664,0.532206,0.339653,-0.15491,3.48851,-0.34122,3.63183,4.13346,0.903601,2.15738,1.78748,2.44923,1.2757,0.232773,1 +0.270345,1.49972,0.248198,0.175358,0.429441,-0.125935,0.435283,0.428083,-0.600485,0.260948,0.895119,0.52415,0.646902,0.506318,1.1587,-0.0652293,0.57067,0.917926,0.0795635,0.405165,0.463625,1.22721,0.414813,0.297558,1.47297,-0.118631,0.62654,0.578007,-0.398846,0.57771,1 +-0.847687,-1.21358,-0.853082,-0.768054,-1.67947,-0.82747,-0.548789,-0.881614,-0.443632,-0.278684,0.0614034,-0.738973,0.229463,-0.252733,-0.499574,0.468605,0.43584,0.472241,1.26751,0.39156,-0.858469,-1.60378,-0.822593,-0.750115,-1.9152,-0.81777,-0.729007,-1.14687,-0.524922,-0.762173,0 +-0.444742,-0.0510687,-0.413558,-0.480484,-0.622881,-0.0102434,0.178132,-0.129092,-1.01633,-0.135632,-0.162171,0.473393,0.171101,-0.282409,0.936554,0.942132,1.02088,1.27447,0.707408,0.154983,-0.599844,-0.528325,-0.542852,-0.585192,-0.997204,-0.343627,-0.160041,-0.334025,-1.26036,-0.668049,0 +-0.305697,-0.16267,-0.2831,-0.406034,0.841838,0.493423,0.0907012,0.183256,0.814836,0.313354,-0.34103,0.531401,-0.136538,-0.412545,0.255126,0.772935,0.636926,1.12861,0.974757,0.72564,-0.430185,-0.13459,-0.388102,-0.508263,0.0845905,0.0733139,-0.0713651,0.170293,0.343063,-0.0429547,0 +-0.0730103,-0.716025,-0.141941,-0.173875,-0.634969,-0.935777,-0.925483,-0.722605,-1.41393,-0.561956,-0.54405,0.264927,-0.558428,-0.43079,-0.467267,-0.979393,-0.882517,-0.932556,-0.617236,-0.645449,-0.239837,-0.0158183,-0.313108,-0.327006,-0.747559,-0.975394,-1.05136,-0.898283,-0.870822,-0.709575,0 +-1.48956,-0.883426,-1.44982,-1.17611,-0.954932,-0.518075,-0.521694,-0.647095,0.431824,0.483317,0.479343,-0.030551,0.697845,-0.223277,1.29525,0.196104,0.00815885,0.528965,0.946933,0.143268,-1.30103,-1.2979,-1.24964,-1.0162,-1.35196,-0.822855,-0.852147,-1.01908,-0.754445,-0.533507,0 +-1.33122,-0.225445,-1.32306,-1.06926,0.322787,-0.84792,-0.773952,-0.898366,-1.11482,0.962045,0.370441,0.0546482,0.198303,-0.216682,-0.068269,-0.921151,-0.278729,-0.847795,-0.135767,-0.408872,-0.879159,-0.106931,-0.936572,-0.774528,0.0407931,-0.949335,-0.756328,-0.974957,-0.722117,-0.143169,0 +-0.450417,-0.283571,-0.516443,-0.46315,-1.56428,-1.4739,-1.09892,-1.12028,-1.03457,-1.55057,-0.194986,-0.478844,-0.265627,-0.264603,-0.418975,-1.16065,-1.0303,-1.32557,-0.013585,-1.03433,-0.527429,-0.764241,-0.608323,-0.517923,-1.72731,-1.34104,-1.28752,-1.49479,-1.07933,-1.59102,0 +-0.234756,0.530187,-0.276927,-0.309135,-0.749444,-0.768962,-0.694424,-0.636014,0.0123343,-0.826814,-0.515923,0.583971,-0.4145,-0.425514,-0.513895,-0.280773,-0.461926,-0.874698,-0.272465,-0.694956,-0.428116,0.573158,-0.426194,-0.455572,-0.804496,-0.556546,-0.723734,-0.889459,-0.426324,-0.961495,0 +-0.387989,-0.104544,-0.415616,-0.449795,0.0284212,-0.469981,-0.776712,-0.801723,-0.191939,-0.137048,-0.663049,0.123533,-0.658336,-0.507289,-0.477259,-0.503577,-0.550046,-0.291581,-0.175688,-0.628065,-0.521222,0.050889,-0.578564,-0.528461,-0.112498,-0.447226,-0.703123,-0.479007,-0.253373,-0.640366,0 +0.67329,-0.23242,0.602123,0.520613,0.0355314,-0.372277,-0.378567,-0.0146676,-1.15494,-0.972699,-0.238979,0.402696,-0.258208,-0.148537,0.0719466,-0.41479,-0.449668,-0.237613,-0.435778,-0.67795,0.385003,-0.0369694,0.295775,0.225547,0.0626918,-0.548919,-0.507556,-0.355627,-0.819099,-1.06614,0 +-0.20638,-0.543973,-0.26705,-0.291233,-1.20806,-0.89715,-0.84031,-0.881099,-0.589542,-0.819733,-0.889869,-1.09572,-0.905139,-0.596098,-0.881586,-0.724705,-0.575886,-1.02299,-0.923295,-0.650362,-0.318459,-0.647097,-0.401791,-0.381278,-0.484775,-0.550826,-0.650876,-0.680582,-0.258222,-0.449903,0 +1.79132,0.579012,1.72151,1.81326,-0.34558,0.16585,0.115287,0.745586,-0.706269,-1.02369,0.623585,-0.543922,0.668664,0.705698,-0.277427,-0.358391,-0.269784,0.456035,-0.736998,-0.713852,1.66365,0.112715,1.6052,1.57971,0.0145147,-0.10592,-0.00953141,0.941603,-0.471582,-0.918862,1 +1.72322,1.75315,1.7174,1.6456,0.191247,1.18454,0.944567,1.99936,0.231198,-0.367914,2.05879,1.22387,2.10794,1.39067,0.465616,1.18727,0.899299,2.19826,2.00302,0.185594,1.63882,1.32321,1.56949,1.38826,-0.200092,0.555084,0.470279,1.53035,0.598447,-0.422219,1 +-0.544059,-0.295196,-0.562124,-0.558344,-0.287987,-0.617104,-0.562963,-0.738326,-0.425394,-0.515216,-0.54982,-0.794443,-0.490668,-0.478492,-0.402322,-0.647645,-0.394014,-0.763196,-0.140606,-0.693445,-0.409495,-0.266377,-0.399113,-0.4496,0.194084,-0.236849,-0.148058,-0.400354,0.51278,-0.511914,0 +2.1517,-0.474223,2.0137,2.53218,-0.179199,-0.354478,0.351239,0.920831,-0.345144,-1.73612,2.89142,-0.300651,2.40717,4.03954,-0.490581,-0.801764,-0.362211,0.0281775,-0.957167,-0.752778,2.99609,0.124104,2.74499,3.97363,0.172185,-0.581334,0.0666822,1.02528,-0.631601,-1.0523,1 +2.23683,0.606912,2.27297,2.35032,0.706743,1.72419,1.95686,2.60756,0.0451639,-0.197952,2.17382,-0.937107,2.3221,1.9754,-1.02014,0.152548,0.128082,0.472241,-0.648688,0.000414249,2.35676,0.0199759,2.61108,2.3648,-0.130017,0.853171,0.975014,1.95632,-0.258222,0.0993387,1 +0.630726,0.93009,0.700892,0.527148,0.0753491,0.858865,1.15781,1.00021,1.32552,-0.0874757,0.0938577,-0.35322,0.0523978,0.113493,-0.468267,0.764559,0.954953,0.772065,1.38243,0.109633,0.643628,0.8709,0.655867,0.49954,0.399931,1.34892,2.09233,1.6764,3.10865,0.675157,1 +0.301559,-1.41353,0.233794,0.161718,-1.18957,-0.662737,-0.688277,-0.575967,-0.330553,-1.0421,-0.818109,-1.45809,-0.755771,-0.497177,-0.675759,-0.59348,-0.542758,-0.428041,-0.492634,-0.766383,-0.0143154,-1.61842,-0.0821727,-0.107987,-0.865812,-0.512056,-0.651834,-0.499392,-0.668778,-0.901698,0 +2.05522,-0.974102,2.03017,2.07753,0.265905,0.892947,1.3096,1.97359,0.588676,-0.137048,-0.229964,0.167039,-0.227049,-0.0280732,-0.870929,0.0710212,0.082034,0.264795,-0.458762,0.216206,1.32847,-0.624319,1.33439,1.1494,-0.57675,0.18899,0.624144,1.24739,-0.276002,0.150276,1 +1.84808,-0.450972,1.76267,1.9326,-0.135115,0.0617089,0.801566,1.0435,-0.877713,-1.13558,0.751959,-1.01397,0.619699,0.806377,-0.276428,-0.364534,-0.168413,0.0849009,-0.941441,-0.787546,1.88296,-0.407927,1.77185,1.87126,1.04375,0.325639,0.688853,1.4695,-0.342273,-0.741688,1 +-0.124088,-0.748575,-0.169926,-0.215362,-0.948532,-0.768772,-0.79327,-0.737295,0.220255,-0.865056,-0.846236,-1.28751,-0.738955,-0.578951,-0.936207,-0.536522,-0.669306,-0.88507,-0.134557,-0.611436,-0.2957,-0.889521,-0.241089,-0.368807,-0.957787,-0.283882,-0.659504,-0.680582,0.682498,-0.384016,0 +0.579648,-0.748575,0.589776,0.379669,0.173471,0.747149,-0.279596,0.130167,0.650688,0.413915,-0.831812,-1.31942,-0.750331,-0.558947,-0.842952,-0.410881,-0.410246,0.0265568,-0.145445,-0.0373776,0.144998,-1.06361,0.17376,-0.033517,-0.388421,0.00467124,-0.291378,0.159644,0.407717,0.313056,0 +-1.00943,0.216309,-0.89794,-0.89962,-0.400329,1.1675,1.74612,0.270363,1.37294,3.07383,-1.05899,0.0256442,-0.248811,-0.727816,0.485599,2.84517,4.02856,2.81897,-0.528926,3.17644,-1.12123,-0.464872,-0.915145,-0.928562,-0.791357,0.684107,1.58568,0.485207,-0.490978,1.99622,0 +-0.189354,2.074,-0.250176,-0.26367,-1.50669,-1.08082,-0.954459,-0.972845,-1.42487,-0.731918,-0.852006,-0.121188,-0.725106,-0.558947,-0.699073,-0.75095,-0.807847,-1.07242,-0.740627,-0.79775,-0.326735,1.61932,-0.302097,-0.351244,-0.944647,-0.690018,-0.924382,-0.864053,-0.334191,-0.738366,0 +-0.132601,-0.962477,-0.15223,-0.2111,-0.972707,-0.546478,-0.580901,-0.623901,-0.0715635,-0.542127,-0.955499,-1.22388,-0.87299,-0.637205,-0.609148,0.243568,-0.247257,-0.557533,-0.285772,0.405543,-0.35777,-0.98226,-0.276801,-0.392694,-0.213232,0.356783,-0.0732824,-0.140056,0.785945,0.688445,0 +-0.864713,-0.106869,-0.768305,-0.833411,1.79462,2.10288,1.00478,0.380149,1.40212,2.36566,-0.698749,-0.344157,-0.56733,-0.579171,0.121239,1.11747,0.463336,0.258313,-0.38255,0.241904,-0.626741,1.16213,-0.461311,-0.654217,3.76795,4.34505,2.72265,2.09629,2.02569,3.12017,1 +-0.810798,-1.47166,-0.774067,-0.763223,1.94393,0.127981,-0.122922,0.169597,0.752824,0.898309,-0.537199,-0.418842,-0.522817,-0.534107,-0.135213,-0.430426,-0.360554,-0.0253047,0.0650468,-0.0279297,-0.709501,-0.837456,-0.664569,-0.710421,1.25398,-0.072234,-0.227627,0.261573,0.714825,0.454242,0 +-0.876064,-1.01363,-0.87654,-0.801869,-1.17251,-0.635282,-0.669085,-0.726213,0.698108,-0.0478176,-0.868954,-0.336906,-0.783963,-0.62995,-0.581172,-0.360067,-0.485778,-0.783779,-0.210769,-0.700625,-0.864676,-0.788646,-0.819319,-0.761356,-1.00158,-0.356338,-0.560282,-0.716028,0.486919,-0.613236,0 +-0.589462,0.797564,-0.544016,-0.588465,-1.92051,0.0560284,-0.117528,-0.493241,-2.22008,0.537138,-1.0305,0.393632,-0.538149,-0.676795,-0.665768,1.12361,0.369584,0.789893,0.502966,1.34656,-0.765364,0.493435,-0.592253,-0.688818,-1.94367,0.426697,0.091128,-0.082246,-1.14722,0.528434,0 +-0.492982,-0.420747,-0.466235,-0.545557,0.557427,0.480168,-0.374804,-0.518497,-0.118984,0.436577,-0.520611,-0.62332,-0.370481,-0.464643,-0.108569,0.646177,0.519322,-0.20844,-0.261578,1.16743,-0.432254,-0.414435,-0.358045,-0.491929,0.452488,0.667582,0.232051,-0.252025,-0.132147,1.54221,0 +-0.240431,-1.29496,-0.254292,-0.321354,-0.90516,-0.352017,-0.477037,-0.52262,-0.709917,-0.971283,-0.800079,-1.24364,-0.630144,-0.551254,-0.922552,-0.265138,-0.119715,-0.539381,-0.717642,-0.446664,-0.41984,-1.35159,-0.317572,-0.451181,-0.690623,0.0904746,0.0690788,-0.348021,-0.266304,-0.594965,0 +0.134138,0.93009,0.0823478,0.0278787,-0.678341,-0.719163,-0.0614567,0.0976953,-0.67344,-1.22339,0.0379642,0.743493,0.0237113,-0.161067,0.423318,-0.44997,0.0661326,0.642412,-0.38013,-0.349161,-0.0991446,0.981537,-0.15062,-0.21495,-0.0511813,-0.611206,-0.0224733,0.323947,-0.684941,-0.862942,1 +-0.544059,-1.20893,-0.542781,-0.548114,-1.08647,-0.494407,-0.256013,-0.607665,-0.604133,-0.178123,-0.499696,-0.699637,-0.380373,-0.447936,-0.877923,0.267021,0.382504,-0.150096,-0.161171,0.312575,-0.6495,-1.03921,-0.583623,-0.615928,-1.30379,-0.0709628,0.169738,-0.353041,-0.361669,0.237756,0 +-0.0701726,-0.72765,-0.148115,-0.165634,-1.85581,-1.06094,-0.857369,-1.04147,-0.746394,-1.14125,-0.544771,-1.07868,-0.572276,-0.378472,-1.1034,-0.632568,-0.397989,-0.774703,-0.492634,-0.689666,-0.157077,-0.928569,-0.226209,-0.237607,-2.08163,-0.832388,-0.781733,-1.05331,-0.579878,-0.980873,0 +-0.810798,-0.881101,-0.765013,-0.747026,-0.903738,0.133661,0.149281,-0.550195,-0.00590433,1.37704,-0.26927,-0.271647,-0.146924,-0.38177,1.11207,2.30129,2.0813,1.40575,-1.01039,3.22557,-0.875021,-1.09778,-0.819319,-0.756262,-0.970926,0.169287,0.143375,-0.485092,-1.20218,1.12695,0 +1.53877,0.91149,1.51986,1.47511,0.329897,0.519931,1.21426,1.37054,0.64704,-0.560539,0.741141,2.93511,1.24487,0.654259,1.3985,0.865072,1.41775,3.66496,0.863462,0.924048,0.941565,0.774907,1.03381,0.759483,-0.318345,-0.0817677,0.530674,1.03288,-0.524922,-0.43883,1 +-1.0974,-1.64371,-1.07902,-0.947075,0.25595,-0.547614,-0.872673,-0.753531,-0.0423817,0.409666,-0.771952,-1.21301,-0.750825,-0.625554,-0.452613,-0.660488,-0.775117,-0.788803,-0.140606,-0.53812,-1.01158,-1.63144,-1.01276,-0.853741,0.0845905,-0.567351,-0.891739,-0.724852,0.0585838,-0.372389,0 +-1.53042,-0.569549,-1.51031,-1.19515,0.536096,-0.569199,-1.11389,-1.26071,0.632449,1.15892,0.402895,1.56286,0.148844,-0.252513,2.92389,-0.324887,-1.05657,-1.91177,-0.228915,1.1115,-1.26193,-0.468126,-1.28714,-0.989859,0.59702,-0.783449,-1.30468,-1.74353,-0.736665,0.260457,0 +0.386688,0.158183,0.429276,0.255207,1.39644,0.981941,1.25817,1.08783,0.428176,0.657529,0.872041,0.206919,0.894694,0.584136,0.0759433,0.212297,0.590547,0.744514,-0.244642,0.165187,1.02019,0.607325,1.03679,0.840276,1.56494,0.870967,1.35704,1.48319,0.462673,0.994071,1 +2.12333,0.695263,2.15774,2.1372,1.44621,1.97602,2.41095,2.76477,1.2781,0.462071,0.789823,-0.536489,0.638988,0.893647,-0.608149,0.657904,0.506402,0.175658,-0.0111656,0.0880914,2.0609,0.498316,1.9266,2.10837,0.780968,2.01755,2.07604,1.94111,1.49876,0.927631,1 +-0.575273,-0.364947,-0.572001,-0.593011,0.464993,-0.128018,-0.513916,-0.403557,0.457358,-0.168208,-0.43659,0.788811,-0.493141,-0.398256,0.368031,-0.511953,-0.446024,-0.694155,-0.0474572,-0.754668,-0.560533,0.0199759,-0.563386,-0.56394,0.474387,-0.489175,-0.536316,-0.790269,0.239616,-0.727292,0 +-0.019095,-0.490498,-0.0913221,-0.130114,-1.13127,-0.960582,-0.77759,-0.422885,-0.622371,-0.730502,-0.918717,0.848632,-0.805725,-0.608188,-0.556193,-0.711861,-0.681563,-0.428041,-0.405534,-0.888451,-0.279148,-0.0548664,-0.322631,-0.344394,-1.1286,-0.833659,-0.899169,-0.540012,-0.610589,-0.988625,0 +-0.175165,-0.0929191,-0.159226,-0.275036,0.678301,0.196146,-0.0376232,0.126044,-0.0204953,-0.284349,-0.690816,0.208732,-0.669217,-0.462665,-0.532546,-0.329913,0.0379739,0.303691,-0.894262,-0.502974,-0.303976,0.247757,-0.295549,-0.360728,0.456868,0.0173828,0.343256,0.466951,-0.379449,-0.392321,0 +-0.376638,-0.425397,-0.367054,-0.416548,-1.13198,-0.291425,-0.186896,-0.208468,-0.866769,-0.750331,-0.148829,0.0872776,-0.0979592,-0.214704,-0.53954,0.518861,0.449091,0.331243,-0.224076,0.10283,-0.523291,-0.751225,-0.492261,-0.508614,-1.62175,-0.464387,-0.393475,-0.481441,-1.47534,-0.742795,0 +-0.870389,-1.03688,-0.891356,-0.78624,-1.34742,-1.07287,-0.773701,-1.07397,-1.00903,-0.0931411,-0.792146,-0.958497,-0.792866,-0.601373,-0.926549,-0.602414,-0.41389,-1.23627,-1.04427,-0.0974667,-0.742605,-0.866743,-0.787774,-0.67424,-0.892091,-0.421803,-0.308154,-0.898283,-0.502293,0.422683,0 +-0.660403,-0.471898,-0.687643,-0.633646,-0.390375,-0.79566,-0.756014,-0.838576,0.129062,-0.369331,-0.22131,-0.139316,-0.317065,-0.335826,-0.525552,-0.326004,-0.367843,-1.03693,-0.698287,-0.273577,-0.583292,-0.193162,-0.632726,-0.559549,-0.349003,-0.519047,-0.610133,-0.928709,-0.196801,-0.151474,0 +1.0734,0.40231,1.33466,0.963618,1.89416,2.90193,2.88637,1.82669,1.09936,1.183,-0.00783252,-0.801513,0.127082,0.0257836,0.0393074,0.653437,0.985762,-0.20844,-0.560379,0.492842,0.937427,0.342123,1.25999,0.743676,2.40585,2.14467,3.02559,1.24435,0.556422,1.98514,1 +-0.623513,-1.94829,-0.651428,-0.602957,-0.543246,-0.983114,-0.786998,-0.797858,-0.768281,-1.04635,-0.551623,-0.311527,-0.601952,-0.470139,-0.288418,-0.750391,-0.600731,-0.96659,-1.15919,-0.73237,-0.510877,-0.90091,-0.58392,-0.511249,0.220362,-0.61502,-0.578976,-0.697468,-0.712419,-0.627078,0 +-0.331236,-0.23242,-0.32055,-0.368525,-1.62472,-0.480016,-0.604985,-0.775437,0.227551,-0.539294,-0.611123,0.148911,-0.231995,-0.442441,-1.13637,0.650645,0.0870032,-0.185751,0.69894,-0.0339764,-0.442599,-0.173638,-0.325904,-0.454343,-1.71154,-0.142783,-0.535836,-0.73824,0.495001,-0.635383,0 +-0.336911,-0.725325,-0.361704,-0.418537,0.17276,-0.302597,-0.700445,-0.644776,-0.279484,-0.11297,-0.935305,-0.565312,-0.924181,-0.636985,-1.3835,-0.70516,-0.522218,-0.727379,-0.222867,-0.68891,-0.498463,-0.432332,-0.522913,-0.526354,-0.664344,-0.371592,-0.437094,-0.467445,0.640473,-0.310378,0 +-0.50717,-1.00898,-0.562947,-0.527939,-0.678341,-1.11017,-0.849341,-0.731368,-0.877713,-0.809818,-0.0788714,-0.560236,-0.130602,-0.223936,0.220156,-0.948569,-0.62359,-0.242475,1.10783,-0.892986,-0.639155,-1.43619,-0.688972,-0.610308,-1.20743,-1.18742,-1.0688,-1.01436,-0.974269,-1.34021,0 +-0.90444,-0.16267,-0.888063,-0.809542,0.287236,-0.56314,-0.493721,-0.505096,-1.18777,0.474818,-0.0922138,0.953772,0.0751492,-0.319999,0.825314,-0.231075,-0.397326,-0.0398907,0.0299649,-0.413407,-0.800537,-0.0158183,-0.729148,-0.716919,0.172185,-0.571165,-0.627868,-0.543663,-1.05024,-0.366852,0 +0.571135,-1.0299,0.507468,0.412347,-0.100275,-0.366029,-0.423976,-0.0937855,-0.279484,-0.573286,-0.600304,-1.05077,-0.562384,-0.406829,-1.0268,-0.726938,-0.45,-0.494165,-0.670463,-0.821559,0.298104,-0.992022,0.257087,0.118233,-0.515433,-0.521589,-0.197429,-0.0259571,-0.198417,-0.765495,0 +-0.36245,0.483686,-0.384338,-0.39893,-1.48252,-0.401058,-0.345451,-0.77956,-0.844883,-0.234777,0.339429,1.05347,-0.155332,0.0198483,-0.343038,1.07894,0.657796,0.261554,0.7437,1.48752,-0.386736,0.216844,-0.465179,-0.412365,-1.67957,-0.385575,-0.423673,-0.891437,-0.667161,-0.134864,0 +1.0961,0.31861,1.06305,0.957083,0.514765,0.493423,0.392634,1.01335,0.657983,-0.298513,0.174994,-0.622776,0.0964168,0.208237,0.0632872,0.125186,-0.225393,0.486827,-0.774499,-0.173428,0.995359,-0.0434774,0.917752,0.822712,0.693374,0.757834,0.277588,1.25956,0.257396,0.0600281,1 +-0.527033,-0.318446,-0.558008,-0.536464,-0.676208,-0.739991,-0.711107,-0.576998,0.563142,-0.967034,-0.255928,1.02266,-0.389276,-0.319779,-0.384004,-0.132796,-0.374468,-0.169544,0.633616,-0.577424,-0.448806,0.521094,-0.543447,-0.474892,-0.366522,-0.475192,-0.644644,-0.293405,0.895857,-0.829721,0 +-0.785259,-0.399822,-0.80164,-0.724862,-0.5532,-0.969671,-0.764795,-0.719513,-0.768281,-0.519465,-0.770149,0.612975,-0.745385,-0.586425,-0.549532,-0.867265,-0.671294,-0.960108,-0.862809,-0.807198,-0.666052,1.73159,-0.660403,-0.631033,0.566361,-0.585147,-0.436615,-0.420284,0.116773,-0.359655,0 +-0.876064,-0.571874,-0.866252,-0.800448,0.806287,-0.498004,-0.731805,-0.621582,-0.356087,0.08532,-0.751758,0.308433,-0.753793,-0.589063,-0.627133,-0.900323,-0.706741,-0.699017,-0.406744,-0.6035,-0.798468,0.124104,-0.813367,-0.718676,0.198464,-0.674129,-0.793237,-0.613035,0.157182,-0.284355,0 +-1.34229,0.555762,-1.32594,-1.09711,-1.1853,-0.829553,-0.645377,-1.12856,-1.96109,0.629201,-1.03339,-0.0631805,-0.836885,-0.73718,-0.508233,0.0704628,0.180755,-1.08069,-0.124879,0.297836,-1.30434,0.37629,-1.20977,-1.01796,-1.041,-0.416719,-0.409293,-1.35346,-0.848193,0.449259,0 +0.244806,0.655738,0.228856,0.110285,-0.797083,-0.0348587,-0.253504,-0.261814,0.482892,-0.519465,-0.312182,0.215983,-0.275024,-0.259987,-0.863268,0.145289,0.0406242,0.0265568,-0.179317,0.0831785,0.101549,0.955504,0.0874573,-0.0236813,-1.08042,0.509958,0.187953,0.246359,0.423881,0.474174,0 +0.284533,2.446,0.19511,0.183598,-0.935734,-1.10373,-0.526084,-0.554834,0.1473,-1.39619,0.22692,0.743493,0.0875141,0.110855,-0.0699343,-0.625867,-0.232018,-0.439062,1.32679,-0.772808,0.204999,1.82758,0.0844813,0.0892531,-0.769458,-0.988995,-0.563158,-0.74326,0.537026,-1.23445,1 +-0.634864,0.437186,-0.641139,-0.628247,0.097391,-0.43817,-0.793395,-0.699154,0.756472,0.0145021,-0.470487,-0.0251128,-0.462971,-0.457389,0.950543,0.282098,-0.516587,-0.408431,0.246505,-0.575534,-0.666052,0.249384,-0.659808,-0.628223,0.448109,-0.226044,-0.746742,-0.486461,0.281641,-0.577801,0 +-1.34002,0.560412,-1.33211,-1.09029,0.571647,-0.809482,-0.857118,-0.936765,0.778358,0.454989,0.0902517,3.01124,-0.052951,-0.333408,2.56419,-0.487941,-0.603713,-0.505996,1.19735,0.300482,-1.12123,0.905067,-1.14668,-0.915389,0.886082,-0.857811,-1.01033,-1.16999,-0.0464795,-0.0501525,0 +0.389526,0.416261,0.449853,0.421156,1.11203,0.998982,0.795294,0.924954,0.997222,0.827491,3.47921,-0.0069853,3.24353,2.99318,0.38535,0.748924,0.431864,1.55485,-0.043828,0.763432,1.42778,0.320972,1.48319,1.5235,0.846664,0.927534,0.713778,1.50297,0.165263,1.15464,1 +-0.405015,-1.65533,-0.456358,-0.454341,-0.605105,-0.878594,-0.817856,-0.641684,-0.83394,-0.00674326,-0.648625,-1.03536,-0.662293,-0.504871,-0.303072,-0.717445,-0.755936,-0.577791,-0.412793,0.233968,-0.541912,-1.42481,-0.569636,-0.550943,-0.0424219,-0.594681,-0.854831,-0.492394,-0.203266,0.592106,0 +-0.842012,0.492986,-0.865017,-0.780273,0.38678,-0.843754,-1.00156,-0.983411,-0.717212,-0.192286,-0.427936,0.835943,-0.444176,-0.469259,-0.0442891,-0.895464,-0.825603,-0.913594,0.773943,-0.655653,-0.808813,0.527602,-0.833306,-0.742211,-0.182573,-0.911836,-1.13299,-1.08845,0.121622,-0.704038,0 +-0.725669,-0.0580438,-0.731267,-0.69673,-0.775041,-0.513531,-0.425858,-0.892696,0.800245,-0.0180741,-0.428296,0.404509,-0.326462,-0.440462,0.0789408,-0.279657,0.416626,-0.485737,-0.225286,-0.172295,-0.661914,0.211963,-0.61993,-0.632438,-0.327105,-0.38494,-0.0775964,-0.72972,0.216987,-0.0612259,0 +0.159677,-1.2345,0.257252,0.00344089,0.479213,1.50076,0.704978,0.362882,1.00087,1.59516,0.508552,0.533214,0.954045,0.200324,0.97752,1.50556,0.691918,0.648894,0.724345,0.623224,0.0394787,-1.19377,0.20352,-0.125375,-0.0511813,0.694276,0.238283,-0.0579049,-0.119216,0.450366,0 +-0.714318,-0.7602,-0.679413,-0.700992,0.8845,0.235909,-0.22365,-0.101775,0.271323,0.0569928,-0.575423,-0.875473,-0.593049,-0.537405,-0.385336,-0.303109,-0.184977,0.201589,-0.249481,-0.68513,-0.750881,-0.977379,-0.753848,-0.711123,0.399931,-0.236849,-0.201264,-0.0624688,-0.18387,-0.535722,0 +-0.132601,-0.0371186,-0.103257,-0.226161,-0.411706,0.196146,0.0974749,-0.020595,0.13271,-0.139881,-0.651871,-0.583439,-0.52529,-0.461126,-1.01947,0.145847,0.158891,0.152969,-0.572476,0.0608813,-0.23363,-0.0288343,-0.174428,-0.301714,-0.773838,0.396824,0.449667,0.39697,-0.253373,0.246062,0 +-1.24439,-0.0394436,-1.23623,-1.03772,0.792066,-0.397839,-1.00183,-0.753789,2.64965,1.06119,1.05054,0.961023,0.861061,0.0699681,2.00799,-0.370118,-0.857108,-0.20682,1.26509,0.162541,-1.04675,-0.407927,-1.05561,-0.877627,0.325476,-0.756754,-1.20474,-1.04539,0.477221,-0.213485,0 +-1.16267,0.462761,-1.18437,-0.98771,-1.08007,-1.23495,-1.08291,-1.12776,-0.662496,0.225539,-0.793588,0.225047,-0.831939,-0.631709,-0.438625,-1.10459,-0.987864,-1.34015,-0.736998,-0.523003,-1.06744,0.530856,-1.11126,-0.885706,-0.865812,-1.16518,-1.24549,-1.35118,-0.891835,-0.184695,0 +-1.03497,-1.002,-1.00741,-0.912976,0.127965,-0.0575805,-0.319235,-0.689103,0.413585,0.899726,-0.279728,-0.162882,-0.149397,-0.430131,0.107583,0.736639,0.686949,0.136762,0.129162,0.391182,-0.8564,-0.668248,-0.769323,-0.773123,0.0145147,0.28814,0.10407,-0.327179,0.192742,0.692874,0 +-0.944167,0.625512,-0.95391,-0.838242,-0.593729,-0.888251,-0.660555,-0.898881,0.745529,-0.428818,-0.351488,0.732616,-0.309646,-0.442661,-0.165854,-0.223258,-0.0657163,-0.218164,-0.254319,-0.417564,-0.726053,1.03523,-0.701471,-0.686886,-0.0905989,-0.538114,-0.381013,-0.60482,0.103842,-0.405609,0 +-0.850525,-0.620699,-0.884771,-0.778,-1.0559,-1.24972,-0.942166,-0.907643,-1.09658,-0.186621,-0.950811,-0.45274,-0.938771,-0.673388,-0.385669,-1.07298,-0.745235,-0.908732,-0.0547155,-0.535853,-0.949506,-0.876505,-0.979426,-0.807021,-1.28627,-1.22079,-1.08515,-1.12831,-0.836879,-0.726185,0 +-0.399339,-0.376572,-0.452243,-0.436439,-1.23721,-1.11945,-0.938027,-0.787807,-1.28626,-1.0421,-0.395842,-0.604105,-0.374438,-0.375834,0.0985909,-0.767143,-0.878244,-1.00046,-0.138186,-0.988221,-0.506739,-0.767495,-0.547316,-0.515991,-1.11984,-1.00558,-1.1384,-1.19403,-1.18924,-1.31197,0 +0.219267,0.753389,0.41693,0.0855632,0.22111,2.23732,2.31436,1.24194,0.836722,0.875648,-0.548738,-0.619876,0.296728,-0.354951,-0.0253051,2.04665,1.56914,1.70881,-0.671673,0.751717,0.0167197,0.307956,0.539804,-0.0841004,0.41745,2.89021,3.0184,2.02174,-0.0561777,1.74706,1 +-0.490144,-0.374247,-0.432077,-0.531633,0.64275,0.516145,-0.142867,-0.539371,-0.00225659,1.16458,-0.823879,0.440764,-0.327451,-0.547517,0.985513,0.417232,0.553775,-0.0204427,0.160615,0.835237,-0.701225,-0.450229,-0.525294,-0.640693,0.553222,0.0548821,-0.152851,-0.622315,-0.557249,0.53397,0 +1.71754,0.0582073,1.72151,1.69107,1.20446,0.843717,1.56173,1.9839,-0.319609,-0.321175,0.100709,-0.391288,0.0702033,0.26715,0.681435,0.0933574,0.780701,1.18372,0.479981,0.0793993,1.19191,-0.0987956,1.15285,1.05104,1.49487,0.253819,1.2396,1.5623,0.212138,-0.176943,1 +1.33162,0.623187,1.30586,1.29324,0.38678,0.654369,0.88561,0.992733,0.479244,-0.209282,1.49264,1.29457,0.804677,1.39726,0.344052,0.860046,0.706163,1.06054,0.39772,0.272138,1.32226,0.85463,1.13202,1.26883,0.290438,0.584956,0.570459,0.854888,0.171729,-0.0446158,1 +0.207917,-0.546298,0.120209,0.0534531,-0.506272,-0.636229,-0.694173,-0.51927,-0.870417,-0.8169,-0.369157,-0.99439,-0.620252,-0.360886,-0.427967,-0.492967,-0.572573,-0.569688,-0.608768,-0.614838,0.00844365,-0.835829,-0.147644,-0.181052,-0.462876,-0.630909,-0.719899,-0.530884,-0.607356,-0.867925,0 +-0.0417962,0.0768074,-0.0349411,-0.157394,0.685412,0.169637,0.298554,0.404889,-0.520235,0.374257,-0.664852,-0.477756,-0.625198,-0.472337,-0.575177,-0.422608,-0.332727,-0.36127,-1.00556,-0.358609,0.159481,0.833479,0.197568,-0.0198173,1.26712,0.651692,0.645714,1.03593,0.449742,1.19339,1 +-0.356775,0.0582073,-0.382692,-0.41399,-0.355534,-0.483046,-0.888478,-0.72209,0.18013,0.0952345,-0.139453,-0.811302,-0.133075,-0.304172,-0.376677,-0.662163,-0.822489,-0.858005,0.204165,-0.535475,-0.376391,-0.211059,-0.360723,-0.445561,-0.480395,-0.56608,-0.963064,-0.772317,0.666335,-0.365191,0 +-0.0247703,-0.7695,-0.0900875,-0.124147,-0.837612,-0.85947,-0.67059,-0.502003,-0.356087,-0.54071,-0.0575958,-0.309714,-0.109829,-0.167002,0.311412,-0.699576,-0.523875,-0.445707,-0.0595544,-0.364655,-0.126042,-0.666621,-0.18038,-0.229352,-0.56361,-0.820312,-0.76927,-0.609688,-0.284084,-0.64258,0 +-0.0786856,0.0721574,-0.135357,-0.177001,-0.676919,-0.777104,-0.945553,-0.669774,-0.936076,-0.859391,-0.228161,0.835943,-0.264638,-0.235367,-0.401323,-0.811257,-0.864032,-0.770975,-0.0486669,-0.555126,-0.132249,0.379544,-0.189307,-0.230933,-0.90085,-0.890862,-1.07686,-0.847471,-0.626752,-0.821416,0 +-0.0304456,-0.843901,-0.0979067,-0.137503,-1.18744,-0.918925,-0.852101,-0.577255,-0.812053,-0.982614,-0.688652,-1.01868,-0.62322,-0.463544,-0.734044,-0.906856,-0.751364,-0.167924,-1.06846,-0.639024,-0.281217,-1.03595,-0.319357,-0.336666,-1.26875,-0.969674,-1.00462,-0.493611,-1.23612,-0.932704,0 +-0.895927,-0.485848,-0.832917,-0.805279,-0.512672,0.131768,0.0723871,-0.329593,-1.17683,0.510227,-0.532872,0.288493,-0.029705,-0.487725,0.507581,1.16717,1.07355,0.95358,-0.651108,0.446358,-0.808813,0.194066,-0.509521,-0.709894,0.294818,0.978381,0.986038,0.622126,-0.583111,0.629756,0 +0.891789,1.42532,0.840816,0.778346,-0.927913,0.124194,0.396397,0.217532,-1.25708,-1.23614,0.378013,0.837756,0.206217,0.396626,0.355708,0.982895,0.580609,0.911443,-0.55675,-0.0211271,0.850529,1.59166,0.760025,0.708548,0.491906,1.0038,1.10923,0.902049,-0.647765,-0.249474,1 +-0.0985491,-0.813676,-0.148115,-0.19604,-0.582353,-0.703637,-0.981554,-1.00462,-1.48324,-0.611528,-0.176234,-1.32975,-0.312119,-0.241742,-0.202823,-0.777195,-0.800128,-0.994952,-1.00072,-0.465182,-0.206733,-1.33044,-0.278586,-0.305578,-1.10232,-0.935352,-1.1361,-1.23967,-1.68385,-0.877337,0 +-1.00943,-0.225445,-1.03498,-0.892232,-1.0623,-1.13081,-0.863892,-0.974391,2.04412,-0.724837,-0.805488,2.40216,-0.785941,-0.598296,1.22531,-0.679474,-0.396332,-0.1112,-0.407954,0.263446,-1.10261,-0.385149,-1.12822,-0.90327,-1.50788,-1.20026,-1.11362,-1.40549,-0.32611,-0.918309,0 +1.10745,-0.567223,1.0507,0.952252,-0.489919,0.357092,0.253396,0.351027,-0.3342,-0.70784,-0.384303,-1.13524,-0.467422,-0.100395,-0.973842,-0.551599,-0.0710168,-0.331125,-0.918456,-0.513555,0.850529,-0.595033,0.774905,0.722599,-0.265788,0.0783986,0.751646,0.591699,-0.0949703,-0.0938925,1 +-0.606488,1.30209,-0.590932,-0.606935,0.472103,-0.230266,-0.431377,-0.159245,0.030573,0.807662,-0.515202,-0.0233,-0.495119,-0.460466,0.425983,-0.291941,-0.283366,0.786651,0.0481107,-0.0456918,-0.680535,0.761891,-0.677961,-0.64403,-0.0555611,-0.458031,-0.53344,0.0850993,-0.487745,-0.079497,0 +1.028,2.03215,1.04247,0.928382,0.256661,0.512358,1.01607,0.876504,-0.359735,-0.515216,-0.0557928,-0.253519,0.00343287,0.0794206,-0.775009,-0.297525,0.168166,-0.112821,-0.98862,-0.468205,1.08846,2.09278,1.135,0.977272,0.338615,0.774995,1.76255,1.25347,0.115156,0.376728,1 +0.190891,-0.378897,0.160952,0.0565788,-0.32496,-0.292372,-0.60348,-0.678279,0.296858,-0.557706,-0.666295,-1.07814,-0.684549,-0.452553,-0.747699,-0.768818,-0.474183,-0.793989,0.241666,-0.689288,0.0332717,-0.477888,-0.0405092,-0.0897207,-0.427839,-0.420532,-0.317262,-0.479615,1.13023,-0.614343,0 +0.114274,0.0117068,0.0938709,0.0136707,-0.887384,-0.498762,-0.0078941,-0.5069,-1.23519,-0.755997,-0.546935,0.248612,-0.431316,-0.380231,-0.963851,-0.279098,0.0628198,-0.477796,-0.798694,-0.554748,0.00637464,0.441371,0.024962,-0.0879644,-1.02786,0.0675937,0.506708,-0.283973,-0.694639,-0.51579,0 +1.97861,0.286059,1.89847,2.07184,0.0341094,0.249164,0.858014,1.71588,-0.939724,-0.876387,0.934425,0.261302,0.828913,0.913432,-0.52422,-0.264021,-0.00144823,0.464138,-1.24024,-0.600855,1.9471,1.04011,1.81352,2.00475,0.194084,0.354876,0.803893,1.72508,-1.02276,-0.536829,1 +-0.640539,0.523212,-0.623032,-0.633362,-2.14946,0.0389871,-0.0129117,-0.645807,-1.68751,0.470569,-0.53792,0.611162,-0.450606,-0.441781,-0.062274,1.96289,1.15074,0.605136,0.362638,1.93876,-0.719846,0.407203,-0.706828,-0.655798,-1.65548,0.544279,0.237803,-0.412373,-0.962955,0.862297,0 +1.55012,1.32767,1.47047,1.52341,0.486324,-0.106622,0.962128,1.07494,-0.542121,-1.2588,0.224396,0.28668,0.0247005,0.348265,1.61832,-0.345548,0.569014,0.51762,-0.499893,-0.751266,1.06984,0.859511,0.968343,0.949171,0.894842,-0.443413,0.601615,0.486728,-0.982351,-1.27543,1 +-0.60365,2.07865,-0.625501,-0.603525,-0.852544,-0.754382,-0.605236,-0.759458,-0.717212,-0.24894,-0.771591,0.884887,-0.667733,-0.582029,0.0975918,0.0229985,-0.0822802,-0.426259,-0.374082,0.191641,-0.657776,1.9854,-0.660403,-0.626818,-0.506674,-0.436422,-0.436615,-0.660957,-0.733432,-0.111056,0 +0.114274,-1.2345,0.0778208,-0.0303742,0.962713,-0.225722,-0.248989,0.413136,-0.589542,-0.224862,-0.357618,-0.898314,-0.357622,-0.321758,-0.302406,-0.724146,-0.521556,-0.0706835,0.184809,-0.0876408,-0.0970756,-1.42318,-0.123836,-0.229528,0.102109,-0.676671,-0.646562,-0.117236,-0.476431,-0.323666,0 +-0.427716,-0.497473,-0.467058,-0.460309,-0.748733,-0.947517,-0.74184,-0.675186,-0.0460294,-0.642688,-0.850924,-0.996021,-0.865571,-0.593899,-1.05011,-0.945888,-0.640485,-0.795447,-0.539813,-0.815135,-0.39915,-0.573881,-0.465477,-0.433969,-0.432218,-0.651883,-0.400186,-0.244875,0.596831,-0.589428,0 +-0.212055,2.65758,-0.231657,-0.277594,-0.278032,-0.569578,-0.760279,-0.419535,-1.59267,-0.37358,-0.232128,1.28188,-0.2864,-0.250755,-0.399658,-0.726938,-0.793668,-0.432417,-0.593041,-0.306078,-0.252251,2.59227,-0.314596,-0.307335,-0.664344,-0.712899,-0.969007,-0.562527,-1.13914,-0.398412,0 +-0.708643,2.3251,-0.703693,-0.681385,-0.198397,-0.352206,-0.215747,-0.740903,-0.0460294,-0.161126,-0.330573,2.19188,-0.35416,-0.378252,0.939219,-0.0724886,0.359646,-0.418317,0.509014,-0.629954,-0.651569,2.13671,-0.631536,-0.619617,0.360514,-0.325195,0.0964007,-0.703706,-0.0270832,-0.650332,0 +-0.260295,1.38579,-0.323842,-0.332437,-0.600839,-0.99012,-0.766175,-0.72776,-0.702621,-0.985447,-0.709567,0.241361,-0.767641,-0.500254,-0.42397,-0.971407,-0.55634,-0.866271,-0.855551,-0.74333,-0.397081,1.39154,-0.475298,-0.435023,-0.151915,-0.940437,-0.638413,-0.829975,-0.738281,-0.889518,0 +-0.319885,1.35789,-0.385162,-0.382733,-0.900893,-1.01511,-0.962613,-0.80662,-0.52753,-1.17665,-0.515923,0.0274569,-0.597995,-0.420898,-0.328717,-0.921598,-0.868372,-0.884908,-1.01523,-0.861996,-0.39915,1.0092,-0.482142,-0.442751,-0.462876,-0.92137,-1.09081,-0.842754,-0.961338,-1.16469,0 +-1.2407,2.07168,-1.24651,-1.03431,-1.17464,-1.09975,-0.920591,-0.991916,-0.695326,-0.464227,-0.81883,0.852258,-0.802758,-0.638743,-0.150866,-0.713536,-0.576217,-0.922508,-0.580944,-0.577046,-1.15848,1.82921,-1.16751,-0.932074,-0.935888,-0.9112,-0.960044,-1.00325,-0.937093,-0.655315,0 +0.837874,1.82755,0.791431,0.784313,0.18627,0.126087,0.149281,0.396642,-0.0679158,0.00175489,1.8893,-0.117563,1.57526,1.64566,0.565865,-0.183611,-0.155162,0.451172,-0.0111656,0.235102,1.38433,1.43384,1.33439,1.34787,1.21018,-0.0627003,-0.0397292,0.622126,0.176578,0.368423,1 +3.772,1.62295,3.90679,5.24591,0.856059,1.78856,3.44583,3.09206,0.909677,-0.930209,7.72351,0.1616,7.80666,11.0321,0.202837,1.57815,1.61188,2.29874,-0.432148,0.288388,4.09059,0.926218,4.28357,5.92496,0.145907,1.08897,1.97058,2.24994,-0.419858,-0.535722,1 +0.0773849,1.79035,0.0115629,-0.0249751,-1.87785,-0.986712,-0.677866,-0.813063,-0.381621,-1.19932,-0.626268,-0.554073,-0.563373,-0.435626,-0.561189,-0.485149,-0.403621,-0.879398,-0.774499,-0.719143,-0.179836,1.02547,-0.204187,-0.2564,-1.3432,-0.688111,-0.599108,-0.897218,-0.8983,-1.06891,0 +-0.717156,-0.216145,-0.744436,-0.688205,-0.80206,-0.867044,-0.691538,-0.802754,-1.07834,-0.595948,-0.806209,-0.818009,-0.773082,-0.603352,-0.110567,-0.472864,-0.367511,-0.696749,0.0844024,-0.388086,-0.723984,-0.269631,-0.731528,-0.67705,0.0802107,-0.466929,-0.413128,-0.482658,0.49985,-0.294321,0 +-0.271645,-0.248696,-0.316434,-0.334141,-1.54295,-0.840725,-0.504383,-0.521074,-1.3045,-1.03502,-0.731564,-0.964117,-0.80622,-0.515422,-0.357027,-0.589012,-0.538451,-0.540192,-1.16282,-0.802285,-0.283286,-0.290782,-0.361913,-0.338949,-0.182573,-0.367143,-0.405458,-0.153748,-1.0761,-0.813665,0 +-0.251782,0.195384,-0.209846,-0.318228,-0.961331,0.340051,0.153045,-0.530609,-0.768281,0.215625,-0.447769,-0.731178,0.248752,-0.363304,-0.703403,2.29459,1.48864,0.305312,-0.639011,1.63945,-0.17156,-0.0288343,0.230304,-0.258332,-0.537332,1.97243,1.83781,0.320904,-0.0901212,2.26751,0 +-0.280158,0.33721,-0.246473,-0.335278,-0.683319,0.0863241,0.247124,-0.356137,-0.910542,-0.367914,-0.324443,-0.776678,-0.274035,-0.284388,0.0846027,0.352457,0.47228,0.120556,-0.59667,-0.213488,-0.303976,-0.0353424,-0.189307,-0.336315,0.119628,0.639616,0.854222,0.0531516,-0.545934,-0.12213,0 +-1.26539,-0.276596,-1.27203,-1.04738,-0.942133,-0.947896,-0.928368,-1.11204,-0.48011,0.187298,-0.229243,0.172477,-0.292335,-0.425514,1.31191,-0.720796,-0.715023,-1.27419,0.772733,-0.308345,-1.05916,-0.172011,-1.07585,-0.878857,0.281679,-0.818405,-0.99748,-1.3632,0.252547,-0.287677,0 +0.985431,0.93939,1.11243,0.925257,-0.246747,1.81886,1.56549,1.32157,-0.421746,1.54275,1.88858,0.449827,1.45161,1.41925,-0.0915828,2.50008,1.12689,1.8336,-0.461182,2.83632,1.09674,0.519467,1.08143,0.977272,-0.511054,1.42519,1.17106,1.29303,-0.96942,2.1291,1 +-0.71148,-0.257996,-0.641551,-0.699287,1.50309,0.832356,0.165589,0.173205,0.530313,1.38129,0.0177703,0.948333,0.0796006,-0.274496,2.51423,0.367534,0.586903,1.07189,-0.299079,0.537437,-0.601913,-0.0451044,-0.569041,-0.61909,1.99853,0.213142,0.222465,0.410662,-0.389148,0.484694,0 +-1.26567,-0.18592,-1.25433,-1.03943,-0.49063,-0.790737,-0.744098,-0.870533,1.55533,0.188714,-0.0994259,0.241361,-0.146924,-0.387045,0.153212,-0.312044,-0.157481,-0.310057,-0.113992,0.0446308,-1.06123,-0.00931025,-1.08269,-0.870075,-0.392801,-0.635994,-0.692578,-0.745542,0.441661,0.0716551,0 +-0.592299,2.05773,-0.622209,-0.582498,-0.628569,-0.839588,-0.816978,-0.648126,0.154596,-0.823982,0.724554,2.58525,0.609807,0.101623,0.158541,-0.554391,-0.571248,0.00548806,-0.00874613,0.0332932,-0.552257,1.24511,-0.595824,-0.549713,-1.23809,-0.997893,-1.0399,-0.899652,-0.802935,-0.972015,0 +0.224942,-1.01363,0.18441,0.0909622,-1.09358,-0.35694,-0.419084,-0.430617,-0.454576,-0.865056,-0.579029,-1.4202,-0.514409,-0.374296,-1.25561,-0.434334,-0.291317,-0.550564,-1.09628,-0.535097,0.188447,-1.21329,0.141025,0.0456952,-1.13298,0.157846,0.205688,0.00142665,-0.343889,-0.0673163,0 +-0.527033,2.4832,-0.598751,-0.538453,-1.37728,-1.33227,-1.11389,-1.26071,-0.403507,-0.452896,0.145424,4.40525,0.00887342,-0.114464,0.0992571,-0.962417,-1.05657,-1.91177,1.31469,-0.249012,-0.583292,2.01306,-0.660105,-0.564994,-1.67081,-1.28473,-1.30468,-1.74353,-0.794853,-0.914433,0 +-0.921466,-0.853201,-0.88724,-0.841083,0.308567,0.0484545,-0.472271,-0.855843,0.18013,0.78925,-0.926651,-1.23059,-0.774071,-0.67574,-0.854942,0.304434,-0.143236,-0.827375,-1.01886,0.331471,-0.895711,-1.02944,-0.788072,-0.785945,0.0364134,0.861434,0.308265,-0.531644,-0.51684,1.33181,0 +-0.368125,-0.827626,-0.373638,-0.420526,-0.423793,-0.409957,-0.381954,-0.467469,-0.388916,-0.519465,-0.920521,-1.32213,-0.826498,-0.63083,-0.722054,-0.419816,0.0426118,-0.556885,-0.548282,-0.569109,-0.450875,-1.02944,-0.417862,-0.48262,0.010135,0.0428061,0.36147,-0.25522,0.170112,-0.328095,0 +0.020632,0.288384,0.0181475,-0.103688,-0.501295,0.1223,-0.478793,-0.472624,-1.11482,-0.383494,-0.206886,-0.360471,-0.057897,-0.205031,-0.977173,0.413323,-0.122034,0.27614,-0.537394,-0.397156,0.0374097,0.257519,0.144001,-0.0914771,-0.747559,0.563346,-0.100604,0.29352,-0.592809,-0.29709,0 +-0.0644973,-0.620699,-0.123422,-0.157678,-1.99659,-0.968535,-0.834916,-0.915633,0.00503887,-1.05343,-0.900327,-1.16134,-0.729063,-0.578292,-1.24328,-0.688408,-0.728473,-1.12866,-0.893052,-0.642426,-0.23363,-0.630827,-0.18038,-0.283975,-1.68745,-0.341085,-0.641289,-0.796963,-0.358437,-0.385677,0 +-0.74837,-1.09268,-0.739909,-0.71037,0.585868,-0.417721,-0.448061,-0.753273,-0.118984,0.416748,-0.727598,-0.0921845,-0.642509,-0.571477,-0.694077,-0.242243,0.320223,-0.60907,-0.255529,-0.068367,-0.800537,-0.614557,-0.750575,-0.72535,0.124008,-0.338542,-0.0603405,-0.613035,0.0650492,0.434863,0 +0.602349,0.0512322,0.733815,0.457245,0.443662,1.60868,1.69093,1.1087,1.23797,0.422413,-0.326246,-0.419023,0.100868,-0.158648,0.718071,1.63176,1.61983,1.67802,0.869511,0.967508,0.231896,-0.427451,0.441597,0.103831,0.233501,1.2199,1.52193,0.956816,0.674416,0.410502,1 +-0.558248,-0.292871,-0.562947,-0.567153,-0.390375,-0.491567,-0.748112,-0.867182,-1.26802,0.00600396,-0.669901,-0.0486785,-0.587609,-0.529271,-0.709398,-0.492408,-0.593775,-1.07534,-0.72611,-0.731992,-0.606051,0.356766,-0.548506,-0.585192,-0.506674,-0.167571,-0.528167,-0.877897,-0.799703,-0.368513,0 +-0.0644973,-0.0115434,-0.133299,-0.147732,-1.16966,-0.967209,-0.738202,-0.727244,-0.848531,-0.971283,-0.265304,-0.526519,-0.400652,-0.262185,-1.11139,-0.818516,-0.549715,-0.894794,-1.20032,-0.59632,0.0291337,0.12085,-0.0851487,-0.0879644,-1.13736,-0.716713,-0.502763,-0.503652,-0.88052,-0.438276,0 +-0.186516,-1.2159,-0.191326,-0.308567,0.763625,0.211294,-0.388101,0.0964067,-0.118984,0.508811,-0.888427,-1.1666,-0.872496,-0.604451,-0.862935,-0.611907,-0.614645,-0.487034,-0.430939,-0.380906,-0.297769,-1.19702,-0.366675,-0.387074,0.303577,-0.0277434,-0.41888,0.287435,0.527328,0.515699,0 +-0.12125,-0.383547,-0.173219,-0.238095,0.223243,-0.469034,-0.543395,-0.446337,-0.290428,-0.271602,-0.584438,-0.490627,-0.643993,-0.432988,-1.26427,-0.9656,-0.49406,-0.4154,-0.930553,-0.858217,-0.270872,-0.349355,-0.341677,-0.340881,-0.546091,-0.760568,-0.469689,-0.362626,-0.61867,-0.794286,0 +0.454792,-1.86226,0.445737,0.262311,0.564537,0.483955,0.38009,0.339946,-0.100745,-0.029405,-0.873281,-1.50413,-0.852217,-0.581809,-0.335378,-0.406414,0.0485749,-0.18251,-1.06362,-0.581581,0.153274,-1.86735,0.155904,-0.0461628,0.951778,0.277335,0.614557,0.46543,-0.555632,-0.118254,0 +-0.475956,-0.669524,-0.375285,-0.506343,-0.0867655,0.885373,0.822891,-0.0118328,0.986279,1.48043,-0.0471383,-0.0178618,1.05742,-0.223057,0.0642864,2.74913,2.63387,2.49808,1.42477,2.20406,-0.515015,-0.756106,-0.280967,-0.526881,-0.651205,0.965033,1.04212,0.298084,0.533793,1.07712,0 +0.145488,-0.567223,0.0922247,0.0315727,-0.707494,-0.707423,-0.462612,-0.541433,-1.46865,-1.30979,-0.666295,-0.382224,-0.68999,-0.447497,-1.16768,-0.644853,-0.460269,-0.916025,-0.968055,-0.973483,0.0394787,-0.0385964,-0.0375333,-0.0870862,-0.795736,-0.300407,-0.136554,-0.552639,-0.720501,-0.995823,0 +1.50756,-0.109194,1.48693,1.45522,0.89161,0.766084,1.71602,1.81638,0.0415162,-0.233361,0.579591,0.346501,0.378336,0.602381,-0.583836,0.159249,0.353351,-0.00585663,-0.407954,-0.220668,1.59123,0.766772,1.38795,1.50945,0.833525,0.751478,1.54062,1.39039,0.590366,0.340186,1 +-0.694455,-0.725325,-0.678178,-0.666041,1.16891,-0.221745,-0.577138,-0.453553,0.150948,0.171718,-0.122144,-0.113937,-0.154343,-0.280651,0.651793,-0.701252,-0.443374,-0.0204427,0.118275,-0.219912,-0.610189,-0.664994,-0.615763,-0.580977,0.886082,-0.677307,-0.59048,-0.250352,-0.156392,-0.20518,0 +0.727206,0.211659,0.6227,0.576024,-1.52091,-0.629033,-0.656165,-0.666166,0.125414,-1.35228,-0.569292,-1.17639,-0.539633,-0.382209,-1.45677,-0.615257,-0.585161,-1.0533,-0.112782,-0.791704,0.602248,0.143628,0.596347,0.357275,-1.37824,0.239836,-0.117381,-0.41435,2.87105,-0.427202,1 +-0.532709,0.732463,-0.567474,-0.535327,-1.02675,-0.991067,-0.89889,-0.935734,-0.976202,-0.430234,-0.653674,-0.141129,-0.637563,-0.490143,-0.647783,-0.749833,-0.744838,-1.1742,-0.539813,-0.527538,-0.434323,1.02709,-0.432146,-0.452586,-0.296447,-0.469472,-0.715106,-0.779772,0.32205,-0.106073,0 +1.05637,-1.40888,0.931355,0.958219,-1.27845,-0.7985,-0.556315,-0.183985,-2.15807,-1.46842,0.282093,-0.309714,0.146866,0.233297,-0.889913,-0.960686,-0.674607,-0.706473,-0.909988,-0.93947,0.734664,-1.18075,0.590395,0.578577,-1.4781,-0.982004,-0.802344,-0.474595,-1.80669,-1.39723,0 +1.10177,0.295359,1.08774,1.00056,0.265905,0.465021,0.353748,0.739659,1.1103,-0.287182,1.26077,0.128971,1.23003,1.08599,0.318406,0.0849813,0.181418,0.7591,1.01952,0.075998,1.08846,0.062278,1.07548,0.957952,-0.0643205,-0.137063,-0.0852656,0.521718,0.56612,-0.426095,1 +-0.473118,-1.50188,-0.540724,-0.504638,-1.60979,-1.21014,-1.02392,-0.964598,-0.724508,-0.377829,-0.279728,0.487895,-0.374933,-0.345938,1.1154,-0.86263,-0.844023,-0.632246,0.985644,0.387781,-0.637086,-1.51592,-0.714863,-0.608727,-1.66336,-1.20439,-1.22444,-1.33581,-1.00336,-0.756637,0 +-0.274483,0.290709,-0.325488,-0.330163,-1.6361,-0.976866,-0.888102,-0.937023,-0.359735,-0.554874,-0.293791,0.464329,-0.267111,-0.313624,0.253461,-0.276864,-0.612326,-1.01002,0.038433,-0.413407,-0.366046,0.45276,-0.356259,-0.407974,-0.90085,-0.569894,-0.935694,-1.10533,-0.345506,-0.534615,0 +0.210754,0.213984,0.170829,0.0739126,-0.0348604,-0.395567,-0.257895,0.0152271,-1.18412,-0.753164,-0.623383,0.759807,-0.628165,-0.40661,-0.541538,-0.657138,-0.343328,0.00548806,-0.115202,-0.749377,-0.0536265,0.456014,-0.100029,-0.170338,-0.471636,-0.733873,-0.489821,-0.196345,-0.859508,-0.994162,0 +-0.419203,-0.260321,-0.381869,-0.481052,0.799176,0.550227,-0.108246,0.0469258,-0.622371,0.813328,-0.623022,-1.05802,-0.578706,-0.482229,-0.445286,-0.0255827,-0.18332,-0.239233,-0.357146,-0.0876408,-0.390874,-0.573881,-0.356259,-0.433617,0.91674,0.825841,0.41228,0.39697,0.532177,1.07158,0 +-0.470281,-0.460273,-0.474054,-0.496681,-0.503428,-0.530951,-0.661182,-0.650188,-1.04186,-0.331089,-0.908621,-0.790093,-0.797812,-0.624894,-1.08075,-0.657138,-0.61067,-0.761737,-0.626913,-0.851793,-0.457082,-0.217567,-0.429765,-0.479986,-0.208852,-0.0232943,-0.3326,-0.141578,0.216987,-0.406163,0 +1.23798,-0.411447,1.20709,1.1739,0.344118,0.518038,0.756408,1.10587,0.0743458,0.59096,1.396,-0.311527,0.981743,1.21855,0.310746,0.372001,0.41265,0.63755,-0.528926,0.551798,1.34088,-0.45511,1.16476,1.26356,0.386792,0.347249,0.388792,0.786428,-0.631601,0.581586,1 +1.83389,0.453461,1.88613,1.88998,0.863169,1.13721,1.63072,1.62825,0.13271,-0.0818102,0.667939,-0.00154705,0.662729,0.763951,-0.124888,0.135796,0.289083,0.485207,-1.13379,-0.0256621,1.57054,0.826971,1.66472,1.54458,0.614538,0.670124,1.17777,1.47102,-0.680092,0.334649,1 +0.258994,-0.592799,0.278241,0.0980662,0.175604,0.607032,-0.145376,0.322163,-0.523883,0.834573,-0.11962,-0.678971,-0.277992,-0.120839,-0.971844,-0.406973,-0.395339,-0.284612,-1.20879,-0.210842,0.101549,-0.853727,0.0725775,-0.0415963,-0.826394,-0.233036,-0.415045,-0.194824,-1.16985,0.0854969,0 +-0.0871985,1.20909,0.0148552,-0.167624,1.41066,1.20727,0.588319,0.481172,1.69029,1.35579,0.252163,0.564031,0.053387,-0.028293,0.878936,0.730496,0.0949539,0.707238,0.459416,1.20938,-0.0536265,1.18166,-0.0375333,-0.16261,2.05985,0.904653,0.315934,0.570401,1.21266,1.90209,1 +-0.450417,-0.69045,-0.441131,-0.507479,1.38222,0.0787502,-0.370288,-0.415669,0.479244,0.470569,-0.53179,-0.22089,-0.643003,-0.480251,0.886263,-0.54769,-0.203528,-0.0301667,0.903383,-0.496927,-0.558464,-0.695907,-0.612787,-0.577113,1.12259,-0.503158,-0.399227,-0.463945,0.41095,-0.474264,0 +2.5433,0.125633,2.47463,2.91864,-0.209062,0.438512,0.988471,1.32415,-1.11846,-1.12708,3.19433,-0.854989,3.34789,3.07452,-0.428966,0.451294,0.260593,1.5824,0.177551,-0.339335,3.00436,-0.294036,3.10211,3.33959,-0.546091,0.68792,0.513898,1.70074,0.0117094,-0.618773,1 +-1.37889,-1.49258,-1.25433,-1.15423,4.76672,2.26383,0.106632,0.0927987,2.06601,4.56384,0.00875526,-0.224515,0.0731708,-0.446178,0.913241,1.11356,0.0972728,1.63426,0.590066,2.51509,-1.23917,-1.51266,-1.13715,-1.01937,2.53286,0.570973,-0.298568,-0.184175,0.221836,2.28412,0 +-1.26312,-1.42981,-1.1461,-1.0866,2.07192,2.19756,0.376327,0.553074,0.895086,4.66724,-0.471569,0.313871,-0.533698,-0.498276,4.90556,1.30677,0.662434,0.438207,0.69894,2.90434,-1.17296,-1.24258,-1.12465,-0.970363,2.98836,0.712072,0.0916073,-0.108108,-0.0852721,2.90424,0 +-0.541222,0.174458,-0.514385,-0.573404,0.941382,0.205613,-0.0884262,-0.702504,1.13948,0.869982,-0.808012,-0.763083,-0.930017,-0.610166,-0.256111,-0.195337,0.25728,-0.308274,-0.888213,0.00683887,-0.643293,-0.245226,-0.658617,-0.641571,0.342995,-0.14469,0.389751,-0.513084,-0.309946,0.246062,0 +-0.870389,-0.504448,-0.852671,-0.819487,1.63819,0.0522415,-0.604233,-0.160791,0.519369,2.40248,-0.819551,-0.338718,-0.765663,-0.616321,1.85811,-0.111577,-0.460269,0.170796,0.200536,1.70747,-0.947437,-0.803289,-0.927942,-0.824585,1.48173,-0.325195,-0.702643,-0.296144,-0.195185,1.81904,0 +0.616538,-0.834601,0.52393,0.468611,-0.148625,-0.704773,-0.420715,-0.0847656,-0.36703,-0.882052,-0.715698,-1.35277,-0.850733,-0.432329,0.117575,-0.75095,-0.238313,0.407414,-0.85918,-0.463292,0.217413,-1.28814,0.0755534,0.0836327,0.132768,-0.751034,-0.371426,0.320904,-0.971037,-0.644795,0 +0.378175,1.08354,0.486891,0.217129,1.55998,1.56513,1.43253,0.935005,-0.0168475,1.13767,-0.259895,1.34895,0.035087,-0.171838,0.831642,1.33581,0.937396,1.39602,0.0614177,0.833347,0.173964,1.73321,0.310655,0.050613,1.78831,1.54087,1.52864,1.54709,0.181427,1.25983,1 +-0.677429,-1.06943,-0.644432,-0.650412,-1.09287,-0.146385,-0.270188,-0.580606,-1.14035,0.677358,-0.767264,-1.04261,-0.752309,-0.600054,-0.0196432,0.764001,0.274176,0.564619,0.248924,1.144,-0.790192,-1.31417,-0.774085,-0.714461,-1.09794,0.159117,-0.0152834,-0.137014,-0.479664,0.821879,0 +0.193728,-1.0671,0.110744,0.0733443,-0.827658,-1.02591,-0.685392,-0.605861,-0.556712,-1.31971,-0.674228,-1.07614,-0.588103,-0.43123,-0.1109,-0.7543,-0.565616,-0.200337,-0.573686,-0.761848,-0.136387,-1.31742,-0.1655,-0.211437,-0.808876,-0.973487,-0.77694,-0.533318,-0.91608,-1.24719,0 +-0.20638,0.286059,-0.137003,-0.279014,1.01249,0.805847,0.698706,0.845321,1.1103,1.48043,-0.0525474,-0.518906,0.112244,-0.146558,-0.541872,-0.157924,0.0870032,0.250209,-0.422471,0.0793993,0.0291337,0.648,0.179712,-0.0635509,1.09631,0.834739,1.14278,1.3767,1.10598,1.49237,1 +0.128463,-1.30891,0.095517,0.0111132,0.139342,-0.28707,-0.0825305,-0.139916,-0.264893,-0.90613,0.040849,-1.07524,-0.150881,-0.0709388,-0.695409,-0.410881,-0.05114,-0.510209,-0.623284,-0.572133,0.101549,-1.37274,0.0368659,-0.0326388,-0.440978,-0.39066,-0.110191,-0.346043,-0.444104,-0.745563,0 +0.261832,-0.0510687,0.217744,0.133586,-0.299363,-0.347851,-0.174854,-0.143524,-0.91419,-0.516632,-0.0691351,-0.0341765,-0.116754,-0.0406032,-0.695742,-0.512511,-0.073667,-0.384607,-1.09145,-0.784901,0.271207,0.387679,0.194592,0.15178,-0.340244,-0.280704,0.0690788,-0.039649,-1.00013,-0.797608,1 +-0.790934,-0.15802,-0.790528,-0.7493,0.607199,-0.366407,-0.574253,-0.592203,0.420881,-0.0973902,-0.584798,-0.374973,-0.680098,-0.486845,0.511578,-0.506369,-0.361217,-0.117683,0.459416,-0.974238,-0.786054,-0.430705,-0.83658,-0.70603,0.697753,-0.615655,-0.52625,-0.444016,0.257396,-0.892286,0 +1.1869,0.300009,1.18651,1.12843,0.742294,0.387388,0.85425,1.17494,0.176482,-0.479807,0.503864,-0.533589,0.174068,0.594028,-0.288085,-0.374585,-0.091556,-0.216544,-0.59909,-0.404337,1.15674,0.0850561,1.03977,1.07563,0.737171,-0.00422689,0.497121,0.553666,0.280025,-0.294321,1 +1.63525,0.225609,1.5857,1.58877,0.521875,0.504784,0.656056,1.16978,-0.0350862,-0.129966,0.370441,-0.622051,0.389712,0.425643,-0.650114,-0.136705,-0.0455083,-0.00261529,-1.20637,-0.152643,1.54365,-0.0727635,1.58437,1.34435,0.408691,0.487077,0.701316,0.710362,-0.568563,0.410502,1 +-0.353937,-0.248696,-0.309438,-0.45974,1.80884,1.1694,-0.508648,0.105942,-0.374325,1.37845,0.134967,-0.0867462,0.153295,-0.131171,-0.588832,-0.122187,-0.591124,0.104349,-0.288192,-0.187411,-0.252251,-0.212686,-0.236625,-0.361606,0.579501,0.265895,-0.707437,-0.0761607,-0.515223,0.27596,0 +-0.390827,-0.602099,-0.389277,-0.457751,1.14758,0.139342,-0.627188,-0.48886,1.12489,0.486149,-0.0785108,-0.387663,-0.183524,-0.257569,0.155876,-0.551041,-0.401633,-0.42091,-0.301499,-0.0626982,-0.376391,-0.640589,-0.40566,-0.450479,0.662716,-0.358245,-0.622595,-0.519626,0.275176,0.0899263,0 +-1.37123,-1.2531,-1.3173,-1.12837,2.89671,0.343838,-0.695929,-0.636787,1.40577,2.0059,-0.18525,-0.157443,-0.236446,-0.455191,2.80399,-0.0043633,-0.328752,0.648894,2.35021,0.0400957,-1.17917,-1.27512,-1.17316,-0.972998,2.30512,-0.283247,-0.825544,-0.638745,1.26115,0.325236,0 +2.9803,0.537162,3.02609,3.37046,0.472103,2.012,1.78376,2.53025,0.654335,0.650447,2.11432,-0.573651,2.06936,2.18863,-0.683419,0.370884,0.126425,0.676446,-0.211979,0.364728,2.82436,0.203828,2.9295,3.09369,0.0802107,1.04575,0.928039,2.02174,0.414183,0.706716,1 +-0.813636,0.125633,-0.850613,-0.758109,-0.799927,-1.14008,-1.05033,-1.11474,-0.636962,0.0895691,-0.976414,-0.242643,-0.932243,-0.681565,-0.946199,-1.09325,-0.929161,-1.25296,-0.68619,-0.566842,-0.89778,0.122477,-0.919014,-0.781027,-0.944647,-1.1252,-1.18327,-1.31269,-0.555632,-0.432739,0 +-0.118413,-0.141745,-0.133299,-0.238379,0.199068,0.050348,-0.438402,-0.285782,-0.356087,0.797748,-0.310379,0.0582737,-0.287884,-0.305271,-0.100575,-0.165742,-0.365524,0.279381,-0.222867,-0.0181038,-0.239837,-0.00768324,-0.233054,-0.313833,0.443729,0.0148405,-0.377178,0.209848,-0.0836558,0.352366,0 +-1.21459,-0.839251,-1.19219,-1.02778,-0.102408,-0.381555,-0.821619,-0.638076,-1.5489,0.865733,-0.560277,-0.00154705,-0.440219,-0.551693,0.563201,-0.282449,-0.704753,-0.809547,-0.278514,-0.113717,-1.04054,-0.437213,-0.980319,-0.885355,0.41745,-0.190452,-0.900415,-0.75041,-0.644532,0.45092,0 +-1.57668,-1.43911,-1.54077,-1.23209,0.514765,-0.530572,-0.792141,-0.871564,-0.487405,1.19858,-1.00418,-0.974449,-0.888817,-0.727244,0.285101,-0.438802,-0.459938,-0.725434,-0.559169,0.0491658,-1.40613,-1.17587,-1.30827,-1.06257,1.38975,-0.195537,-0.463937,-0.44858,0.132936,1.16017,0 +-0.189354,-0.125469,-0.186388,-0.294927,0.792066,0.179105,-0.586922,-0.448399,-0.323257,0.0527438,-0.740579,-1.10587,-0.703839,-0.533448,-0.875258,-0.616933,-0.556671,-0.717493,-0.847083,-0.758825,-0.190181,-0.0841525,-0.159548,-0.282394,1.3153,0.369494,-0.0325393,0.427397,0.997688,0.149723,0 +-0.50717,-1.63208,-0.536197,-0.529644,-0.450101,-0.781459,-0.742843,-0.578544,-0.44728,-0.668182,-1.0406,-1.30727,-1.03601,-0.689852,-1.11905,-0.910709,-0.767298,-0.9815,-1.11927,-0.917928,-0.550188,-1.04246,-0.59642,-0.554456,-0.138776,-0.297865,-0.446202,-0.115715,0.338214,-0.444366,0 +-0.0531467,-1.42283,-0.0682758,-0.172454,2.02215,-0.128586,0.153045,0.444062,0.599619,0.251034,0.508191,2.57074,0.60585,0.0967866,0.998835,0.390428,0.52131,2.71201,-0.410373,0.65497,-0.341218,-1.67536,-0.379174,-0.399193,0.307957,-0.749127,-0.557406,-0.199388,-1.19733,-0.632061,0 +-0.583786,-1.36006,-0.581878,-0.595853,0.969823,-0.26984,-0.639607,-0.539629,-0.564008,0.464904,-0.554868,-1.29222,-0.569803,-0.479151,0.0952604,-0.77887,-0.460932,-0.617498,-0.111572,-0.589895,-0.583292,-1.61191,-0.605347,-0.580801,0.864183,-0.578792,-0.527208,-0.618816,-0.193568,-0.189678,0 +-0.674591,-0.402147,-0.661716,-0.659221,0.777846,-0.136539,-0.451322,-0.116464,-0.779224,0.562633,0.119821,1.25106,0.139941,-0.212725,-0.151199,-0.409206,-0.48114,0.221037,-0.265207,-0.55815,-0.572947,0.374663,-0.557732,-0.576586,0.110869,-0.437693,-0.649917,-0.206994,-0.683325,-0.353011,0 +-0.697292,0.169808,-0.689701,-0.67826,0.372559,-0.185769,-0.587048,-0.704823,0.172835,0.256699,-0.715698,-0.620601,-0.728568,-0.549495,-0.596159,-0.458346,-0.447018,-1.05313,-0.732159,-0.424744,-0.603982,0.509705,-0.602967,-0.579572,0.991196,0.267802,0.0173111,-0.508216,0.493384,0.307519,0 +-0.126926,-0.688125,-0.173219,-0.225592,-0.255279,-0.601957,-0.894123,-0.77621,-0.658849,-0.176706,-0.72291,-1.33555,-0.73846,-0.507509,-1.07009,-1.0191,-0.822092,-1.08895,-1.21,-0.792837,-0.0867306,-0.891148,-0.168476,-0.188253,-0.261409,-0.622011,-0.72661,-0.419371,-0.153159,-0.339169,0 +1.79984,0.320935,1.75855,1.83031,-0.341314,0.510464,0.796548,1.35508,1.29269,-1.21915,1.54493,0.941082,1.13853,1.32033,-0.700405,0.302201,0.299353,0.841754,0.921529,-0.406604,1.44019,0.239622,1.33141,1.3426,-0.992824,-0.00549805,0.177408,0.710362,0.516013,-1.11209,1 +-0.898765,-0.388197,-0.871602,-0.822045,0.0362425,-0.129154,-0.453706,-0.542206,-0.702621,0.181632,-0.917636,0.663732,-0.841336,-0.664902,0.819319,0.463579,0.401387,0.269657,-0.885794,-0.0986005,-0.96192,0.135493,-0.917526,-0.830908,0.456868,-0.020752,-0.287064,-0.243354,-0.988816,-0.0645479,0 +1.82254,0.36511,1.88613,1.85588,0.585868,1.31709,1.50152,2.14626,1.15043,-0.0407358,1.05811,-0.411047,0.910026,1.04291,-0.820304,0.0380754,0.2702,0.391208,-0.128508,-0.417942,1.66158,-0.0320883,1.57544,1.63064,-0.24389,0.376486,0.82019,1.52427,0.284874,-0.457101,1 +0.0404955,0.758039,0.074117,-0.0712933,0.528985,0.2094,0.721285,0.32139,0.417233,-0.421736,-0.730122,1.14955,-0.480281,-0.479151,-0.309067,0.0196481,0.482219,0.15621,-0.72974,-0.0147025,-0.202595,1.39805,-0.0881247,-0.267465,0.246641,0.120982,0.724803,0.328511,-0.327726,-0.0241299,1 +-0.691617,1.19747,-0.641962,-0.706107,1.93682,0.963006,-0.547534,-0.0930124,1.16502,1.59374,-0.39476,1.37977,-0.350203,-0.426174,1.94471,0.528913,-0.438736,0.950339,-0.59788,0.766834,-0.680535,1.05963,-0.629155,-0.690047,1.94598,0.450213,-0.636016,0.246359,-0.158008,0.872263,0 +-1.81561,1.44159,-1.81032,-1.35286,-1.09358,-1.05204,-1.11389,-1.26071,0.21296,1.42378,-0.0990653,0.444389,-0.185008,-0.465962,1.87144,-0.881504,-1.05657,-1.91177,1.00137,1.16289,-1.48807,0.853003,-1.4907,-1.11105,-0.296447,-1.08598,-1.30468,-1.74353,0.254163,0.854546,0 +-1.82639,1.42997,-1.79551,-1.37673,-0.688296,0.294607,0.046672,-0.90919,0.822131,2.0838,-0.66918,0.475206,-0.702849,-0.628851,2.80732,2.18291,2.00842,0.298829,0.0614177,1.4195,-1.57062,1.01082,-1.57045,-1.1539,1.19266,0.33136,0.321686,-0.982868,-0.179021,1.2543,0 +-0.734182,-1.12755,-0.712747,-0.716053,0.247418,0.145022,-0.268808,-0.592203,0.0232775,0.71135,-0.457145,0.99909,-0.612338,-0.428152,1.70158,0.873448,0.78302,0.509517,-0.259158,0.648923,-0.829503,-0.975752,-0.847591,-0.742562,0.0933499,-0.2699,-0.443326,-0.691079,-0.924162,-0.144277,0 +0.0972484,1.32534,0.158071,0.00429337,-0.568132,0.353305,0.15179,-0.258206,0.220255,0.0867364,-0.544411,-0.249894,-0.124173,-0.378692,0.0323132,1.17554,0.211895,-0.028546,0.016658,0.875296,-0.0101774,0.984791,0.185664,-0.125902,0.0714513,1.05465,0.631813,0.0896633,0.462673,1.01622,0 +0.173865,1.42532,0.11239,0.0389609,-0.96773,-0.60972,-0.598964,-0.480613,0.103528,-0.849476,-0.368076,0.304808,-0.340806,-0.284168,-0.754693,-0.76826,-0.411571,0.144866,-0.222867,-0.441751,0.0498237,1.0759,0.00413026,-0.0951655,-1.15487,-0.7415,-0.532481,-0.0776821,-0.288933,-0.796501,0 +-0.260295,2.03913,-0.291742,-0.331016,-0.686163,-0.67353,-0.739205,-0.4167,-0.669792,-0.706424,-0.613286,0.68911,-0.656357,-0.494319,-0.688748,-0.656579,-0.560315,-0.4342,-0.399486,-0.926621,-0.392943,1.86988,-0.439884,-0.440819,-1.10232,-0.738322,-0.795634,-0.532861,-0.691407,-1.08053,0 +-0.0730103,0.32791,-0.090499,-0.199165,-0.0412597,-0.0481131,-0.651272,-0.650188,-0.698974,0.578213,-0.480223,-0.307902,-0.39076,-0.378472,-0.247452,-0.209856,-0.190277,-0.443276,-0.682561,-0.0740358,-0.252251,-0.15086,-0.240792,-0.337193,-0.261409,-0.321382,-0.644644,-0.702184,-1.05347,0.0539377,0 +-0.143951,0.91614,-0.196676,-0.232128,-0.277321,-0.698145,-0.740836,-0.631117,-0.538473,-0.678097,-0.213377,0.215983,-0.395706,-0.199975,-0.390665,-0.250619,-0.387057,-0.442789,0.0396427,-0.458001,-0.190181,0.555261,-0.28811,-0.264831,-0.471636,-0.651883,-0.801865,-0.652133,-0.418242,-0.798162,0 +-1.08037,-0.683475,-1.09713,-0.937698,-0.143648,-1.03007,-0.986948,-1.1191,0.267676,-0.111554,-0.702355,-0.452922,-0.746868,-0.601593,0.0149944,-1.01803,-0.721317,-1.02121,-0.59788,-0.449309,-1.03847,-0.635708,-1.07555,-0.870602,-0.169434,-1.05408,-1.09454,-1.3813,-0.355204,-0.551225,0 +-1.0974,-0.629999,-1.0749,-0.949348,-0.539691,-0.448395,-0.567228,-0.632406,-0.520235,0.615038,-1.04853,-0.351408,-0.928533,-0.725662,1.07544,0.299409,-0.19094,-0.13389,0.26949,0.791776,-1.12537,-0.591779,-1.07674,-0.918902,0.601399,-0.188545,-0.450036,-0.475812,-0.33904,0.600411,0 +-1.26113,0.0117068,-1.27244,-1.04909,-0.814148,-1.02326,-0.820741,-1.01292,-0.844883,-0.0633976,-0.39476,0.264927,-0.401641,-0.485746,0.132895,-0.795622,-0.282373,-0.35349,0.17997,0.135709,-1.10468,-0.0141913,-1.13566,-0.906958,-0.546091,-1.00933,-0.856509,-1.15843,-0.563714,-0.262762,0 +-0.938492,1.14399,-0.949794,-0.833411,-1.02675,-0.725601,-0.919713,-1.05042,0.599619,0.0683237,0.412631,1.271,0.345198,-0.161286,0.406999,-0.378494,-0.633528,-0.952814,0.498127,-0.309101,-0.67019,0.939234,-0.695222,-0.658608,-0.524193,-0.578156,-1.00779,-1.24697,0.255779,-0.425541,0 +-0.927141,0.509261,-0.965433,-0.836537,-1.56784,-1.1753,-1.11389,-1.26071,-0.549417,-0.469892,-0.320476,0.157975,-0.37147,-0.432329,0.845298,-0.806232,-1.05657,-1.91177,1.14896,-0.592162,-0.953644,-0.147606,-0.987461,-0.822477,-1.41328,-1.14903,-1.30468,-1.74353,-0.715652,-0.998037,0 +-0.850525,0.732463,-0.842794,-0.785672,-0.049792,-0.424159,-0.508773,-0.679052,0.796597,0.385588,-0.451375,0.453453,-0.431316,-0.494319,-1.181,0.280981,0.0846842,-0.252199,1.03766,0.350745,-0.879159,0.420219,-0.876755,-0.779797,-1.03662,-0.483455,-0.55501,-0.767905,0.433579,-0.200751,0 +-0.385151,2.35765,-0.437016,-0.417685,-0.967019,-1.17398,-0.86339,-0.874398,-0.99444,-0.91038,-0.592371,0.272178,-0.687022,-0.474315,0.597506,-0.734197,-0.616633,-0.403731,-0.190204,-0.781878,-0.496394,1.67952,-0.570231,-0.502116,-0.392801,-0.939801,-0.889918,-0.754974,-0.798086,-1.05783,0 +-1.36045,0.616212,-1.3564,-1.11075,-0.281587,-0.914381,-0.612637,-0.930322,-0.436337,0.41958,-0.374566,1.20031,-0.368503,-0.494099,1.29858,-0.398597,0.267219,0.165934,2.0623,0.312953,-1.32917,-0.10205,-1.32136,-1.02709,-0.966546,-1.08865,-0.921554,-1.35346,-0.752828,-0.554547,0 +-0.353937,2.23908,-0.389688,-0.399498,-1.07581,-0.872914,-0.336796,-0.656889,-0.895951,-0.809818,-0.698028,0.259489,-0.674657,-0.516741,0.456624,-0.220466,0.234754,-0.676814,-0.434568,-0.375615,-0.492256,1.63722,-0.548209,-0.500359,-0.423459,-0.586419,-0.135595,-0.755735,-0.854659,-0.638151,0 +-1.08889,1.9345,-1.08231,-0.947643,-0.430903,-0.525649,-0.361382,-0.555092,-0.797463,-0.216364,-0.668098,1.8529,-0.706806,-0.568839,1.66827,0.105084,0.534892,0.877409,-0.255529,0.431998,-1.1233,1.50218,-1.12168,-0.91855,0.26416,-0.529216,-0.346021,-0.355019,-1.09065,-0.0617796,0 +-1.12578,0.0698324,-1.12099,-0.975207,0.280125,-0.554809,-1.05086,-0.973103,-0.0752113,0.0725728,-0.580832,1.5828,-0.602447,-0.517401,1.9547,-0.181936,-0.918295,-0.764006,0.626357,-0.573267,-1.16261,-0.45511,-1.17197,-0.936641,-0.257029,-0.853362,-1.25651,-1.40397,-1.03246,-0.914987,0 +-1.33491,1.99728,-1.34611,-1.09001,-1.07581,-1.03443,-1.11389,-1.26071,-0.25395,-0.312677,0.477179,3.10007,0.371906,-0.246798,1.51507,-0.795063,-1.05657,-1.91177,1.14896,-0.177963,-1.19572,1.39317,-1.21304,-0.965972,-1.09794,-1.16111,-1.30468,-1.74353,-0.688174,-0.789303,0 +0.1313,0.788264,0.18194,0.00628249,-0.826946,0.542653,0.176878,-0.297894,-1.3045,-0.188037,-0.648265,-0.197324,-0.31756,-0.457169,-0.932211,1.16773,1.12258,0.691032,-0.503522,0.230945,-0.163284,0.259146,-0.0405092,-0.258332,-1.30379,0.399367,0.450626,-0.0624688,-1.03892,-0.216254,0 +-0.742695,1.07889,-0.718097,-0.714348,-0.266656,-0.0424326,0.280993,-0.202798,-1.54525,0.411082,-0.599944,3.05837,-0.460003,-0.513664,0.386016,0.242451,0.844306,0.141624,-0.68498,0.356414,-0.783985,1.86826,-0.743432,-0.713758,-0.112498,-0.0163029,0.435287,-0.274997,-1.27491,0.186819,0 +-0.0219327,1.82755,-0.0242411,-0.154836,0.208311,0.156383,-0.554182,-0.151513,-1.00174,-0.154044,-0.146665,0.498772,0.0108518,-0.230751,0.0716136,0.0726965,-0.370493,0.723445,0.0311746,0.570316,-0.200526,1.21908,-0.210139,-0.305403,-0.362143,-0.177105,-0.66909,-0.149184,-1.05185,-0.0407401,0 +-0.830662,2.3437,-0.87654,-0.764076,-1.55504,-1.30198,-1.11389,-1.26071,-2.7417,-1.10159,-0.328409,4.85662,-0.408071,-0.385287,0.184186,-0.926958,-1.05657,-1.91177,-0.0789099,-0.764116,-0.899849,2.05373,-0.954428,-0.774528,-1.73869,-1.26687,-1.30468,-1.74353,-2.15744,-1.37841,0 +0.310072,2.63433,0.47043,0.17621,0.600088,1.97602,2.08481,1.16927,1.15408,1.2354,-0.522775,-0.0214873,-0.249305,-0.388804,-0.804651,1.2822,1.38131,0.694273,0.100129,0.887012,0.258793,2.78426,0.638011,0.0604487,0.408691,3.41583,4.30349,1.8407,1.92063,3.15339,1 +1.92753,1.34859,2.10013,1.9667,0.962713,2.25815,2.86755,2.53798,1.23068,0.848737,2.00866,-0.345969,2.91413,1.7248,-0.213814,0.984012,1.54231,2.34087,0.00335107,0.913844,1.65951,0.607325,2.1379,1.6482,0.364894,1.04448,1.85842,2.12367,0.0456529,0.818557,1 +2.10914,0.720838,2.05897,2.3418,1.04093,0.218868,1.94557,2.31892,-0.312314,-0.930209,2.77963,0.0709629,2.37749,2.6019,1.08543,0.191637,0.665416,2.06536,-1.13742,0.167832,1.89951,0.117596,1.75102,2.01353,0.378033,-0.273077,0.663928,1.62772,-1.35896,-0.708467,1 +1.70336,2.0833,1.61451,1.72233,0.102368,-0.0178174,0.692434,1.26256,-0.217473,-1.05768,1.29936,2.25895,1.15584,1.29043,-0.423637,-0.0696966,0.25198,0.80772,-0.188995,-0.490124,1.53537,2.0456,1.42069,1.49364,-0.690623,-0.394473,0.236365,0.733182,-0.531387,-0.973122,1 +0.701667,2.04378,0.672084,0.577445,-0.839745,-0.0386457,0.0465466,0.105684,-0.808406,-0.8948,0.18473,-0.257145,0.27645,0.180539,-0.379008,0.660696,0.510377,0.611619,-0.890632,0.0366945,0.560868,1.37365,0.578492,0.427529,-0.808876,0.350427,0.326479,0.413705,-1.10358,-0.318129,1 +1.83672,2.3344,1.98078,1.73369,1.52443,3.26927,3.29405,2.65653,2.13532,1.04278,1.15692,0.685485,1.43726,1.00862,-0.172848,2.01594,1.30114,0.785031,0.326346,0.903262,1.95952,2.23596,2.30158,1.65172,1.42917,3.90142,3.19479,2.28797,1.9174,2.21768,1 +-1.80681,1.22072,-1.81279,-1.3466,-3.10935,-1.14974,-1.11389,-1.26071,-0.819349,-0.560539,-0.070217,0.382756,-0.157311,-0.465742,0.049299,-1.16249,-1.05657,-1.91177,0.752168,-0.382418,-1.40965,0.763518,-1.43148,-1.07487,-1.85738,-1.20649,-1.30468,-1.74353,-0.0480959,-0.750546,0 diff --git a/data/breast-cancer-wisc-prog.arff b/data/breast-cancer-wisc-prog.arff new file mode 100755 index 0000000..080202f --- /dev/null +++ b/data/breast-cancer-wisc-prog.arff @@ -0,0 +1,234 @@ +@relation breast-cancer-wisc-prog +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'clase' {0,1} +@data +-0.456501,0.192201,1.23863,0.123621,0.121991,-0.622197,-0.782558,-0.675092,-0.478962,-0.227943,0.0862618,0.0695024,1.1882,-0.12916,0.0275365,-0.783004,-0.964592,-0.403465,-0.952943,-0.377403,-0.253841,0.143338,1.1534,-0.0224204,0.0529711,-1.10983,-1.05206,-0.706613,-1.36735,-0.741131,-0.458065,1.11071,0.340583,0 +0.414001,0.182712,-2.76761,0.371477,0.0879147,1.25523,2.70458,2.03844,1.78071,1.79124,2.21071,1.58541,-0.682189,1.97509,1.73338,-0.122001,1.01293,0.621993,0.140027,0.989236,1.13843,1.02715,-2.12854,1.53163,1.04784,0.830725,1.8327,1.58511,1.91725,1.81871,1.3259,0.0787039,-0.21066,0 +2.00992,1.25177,-1.1251,1.05893,1.14429,-1.14366,-0.47593,-0.435621,-0.146874,1.47779,-0.3599,-0.0578709,-1.24215,-0.149214,0.248451,-0.200003,0.186835,-0.37136,0.536084,1.08424,0.542921,0.914019,-1.52201,0.649039,0.928387,-1.14165,-0.123208,-0.548801,0.540553,1.46347,-0.0074689,-0.179299,-0.578156,0 +2.21304,-1.8953,-0.441108,-1.74325,-1.65822,3.17978,2.83084,1.20667,0.543867,2.44,4.79789,-0.347443,-0.205996,-0.369347,-0.896138,0.789483,2.463,0.759999,0.648723,4.07957,2.69428,-1.44045,-0.604723,-1.4356,-1.42875,2.99397,3.05674,1.44113,1.7424,4.5289,3.88116,-0.437302,-0.578156,0 +-0.572568,0.910175,-1.84632,0.946689,0.928467,-0.190172,-0.19736,0.591695,0.5173,-0.432048,-0.535326,0.496122,-0.917722,0.538987,0.504588,1.58968,-0.374117,0.772937,0.681425,-0.312673,0.582139,0.357809,-2.23822,0.410221,0.29017,-0.296345,-0.976439,-0.211291,-0.360278,-1.15757,-0.663525,0.336707,-0.578156,1 +0.878269,-1.47464,-1.6253,-1.41496,-1.32711,1.29516,0.285629,0.143927,-0.298601,0.245872,1.23413,-0.695382,-0.995789,-0.572617,-0.820694,0.340634,-0.0754726,0.232894,-0.27783,-0.29388,0.581623,-1.29904,-1.62337,-1.14383,-1.14633,1.21247,0.332377,0.940044,-0.174357,0.333897,1.27867,-0.179299,-0.578156,1 +0.384985,0.495837,-0.620249,0.446301,0.403122,-0.94322,-0.379733,-0.495135,0.0686135,-0.730915,-0.695557,-0.241353,-0.799765,-0.30235,-0.18796,-1.02844,-0.434868,-0.887922,-0.32325,-0.707318,-0.0314287,0.558139,-0.779206,0.424066,0.320886,-1.34161,-0.170779,-0.793006,0.297085,-0.675937,0.235305,-0.695304,-0.578156,0 +0.878269,-1.171,-0.336415,-1.15307,-1.11356,1.29516,0.437941,-0.88679,-0.794814,0.978462,1.63056,-0.0639977,0.213784,-0.182029,-0.40158,0.686937,-0.0516264,-0.760459,-0.112504,-0.594562,0.735402,-0.933731,-0.332198,-1.02961,-0.866813,0.976153,0.0188954,-0.972704,-0.512998,-0.050612,1.14642,0.594709,1.25932,1 +2.09697,-1.39556,-0.106091,-1.27934,-1.27855,1.96596,1.01312,0.420239,0.199382,1.53975,1.54492,-0.957868,-0.498512,-0.842884,-0.956786,-0.346594,0.216926,-0.250126,-0.515828,0.0913676,-0.122767,-1.30375,0.0981939,-1.1819,-1.13592,1.19884,1.06729,0.589287,0.602527,1.52201,0.77328,-0.437302,-0.394408,0 +0.849252,-1.56636,0.410393,-1.44442,-1.40321,1.27121,1.94302,1.00687,-0.0397208,0.373437,2.72455,-0.985922,0.635463,-1.01015,-0.964705,0.130162,2.32617,1.75766,-0.141572,-0.27822,3.14426,-1.39803,1.75163,-1.47783,-1.18353,1.88054,4.22589,3.84919,0.934528,1.50605,5.51068,1.62672,3.0968,0 +2.21304,-0.440375,0.224273,-0.568505,-0.489113,-1.64676,-1.52227,-1.74648,-1.58061,-1.45622,-0.792248,-0.721824,-0.147113,-0.815538,-0.619369,-0.918835,-1.24512,-1.42509,-1.36408,-0.621707,-0.487606,-0.431727,0.621643,-0.57274,-0.435078,-1.17346,-1.28077,-1.67479,-1.74915,-0.380571,-0.297947,-0.437302,-0.578156,0 +2.27107,-0.516284,-1.02041,-0.526416,-0.53682,-0.445713,-0.269507,-0.803471,-0.611501,-0.311772,-0.260446,-0.314552,-0.530993,-0.315111,-0.334889,-0.333145,0.534307,-0.615265,-0.414088,-0.0495768,0.0810673,-0.141838,-0.475107,-0.133177,-0.180815,-0.196363,1.19415,-0.231449,0.049191,0.742354,0.659923,-0.746905,-0.578156,0 +2.03894,-0.494144,0.389455,-0.52174,-0.531993,-1.49104,-0.850698,-0.805738,-0.978126,-0.293548,-1.28814,-0.645078,-0.354153,-0.61637,-0.701275,1.01105,0.00344673,0.467695,0.87582,0.966267,-0.508247,-0.985581,-0.411961,-0.981154,-0.901796,-1.40069,-1.05328,-1.17774,-1.48023,-0.565507,-1.32053,-0.953307,-0.578156,0 +-0.311417,-0.908481,1.22467,-0.847693,-0.883832,0.895879,0.337736,0.108502,-0.387748,1.36845,1.11395,-0.752458,-0.439629,-0.627308,-0.785264,-0.388285,0.635937,0.319148,-0.762909,-0.207226,0.763268,-0.839458,1.16171,-0.562357,-0.787975,1.08522,1.78452,1.53155,-0.167717,1.30914,2.04383,1.62672,0.524331,1 +2.21304,-0.864201,-0.499271,-0.940756,-0.810852,-0.320338,-1.41586,-1.16608,-1.00912,-1.24482,-0.481455,-0.421288,-0.0464417,-0.483287,-0.517457,-0.350965,-1.11164,-0.99526,-0.72839,-0.673908,-0.981453,-0.460009,0.12312,-0.586585,-0.455555,0.112673,-1.08561,-0.836779,-0.395691,-0.272802,-0.409415,-0.901707,-0.578156,0 +-1.06585,-0.405583,-0.371313,-0.315972,-0.486274,1.14343,1.19349,0.226112,0.473022,0.861831,1.49934,-0.11011,-0.363651,-0.18294,-0.334472,0.0888071,-0.351406,-0.425028,-0.386837,-0.382623,0.0800353,-0.0145695,0.222825,-0.122793,-0.153511,1.58968,0.354943,0.240258,0.6313,0.627932,1.10391,0.0787039,-0.394408,1 +-0.775685,-0.655451,-1.86493,-0.577858,-0.754342,0.368825,1.41995,0.729142,0.318343,2.163,1.05179,-0.530603,-1.05391,-0.397148,-0.527669,0.00912371,1.25366,1.13616,1.34818,1.68769,0.210077,-0.695692,-1.83774,-0.527746,-0.723641,-0.223631,1.40456,1.11629,1.33957,1.90652,0.407703,-0.798505,-0.578156,0 +-1.06585,1.18535,0.177743,1.0449,1.23232,-0.670909,-0.810616,-0.659505,-0.013449,-0.577837,-1.37102,0.284908,-0.26108,0.021697,0.495209,-0.68382,-1.05657,-1.13087,-0.857381,-1.01531,-1.03202,1.92038,0.905801,1.64931,2.06489,-0.17364,-0.641001,-0.697973,0.489646,-0.548211,-0.735318,0.594709,-0.394408,1 +1.42959,-0.241114,-0.208457,-0.227118,-0.185833,0.752137,0.0611697,-0.0530347,0.145363,0.245872,0.0821179,0.656064,-0.689027,0.546735,0.674651,-0.240013,-0.702853,-0.639225,-0.690238,-0.613355,-0.61197,1.28168,0.236119,1.26858,1.38231,1.66239,-0.0445328,0.188998,0.679994,0.504198,0.227275,0.0787039,-0.578156,0 +2.00992,-0.0861326,-1.36706,0.053473,-0.162831,1.27121,1.70253,0.944524,1.57408,4.05461,1.57807,1.4274,-0.547898,1.37668,0.858052,0.426033,0.385552,-0.164351,1.61161,0.263633,1.78399,0.289461,-1.45221,0.417143,0.0956327,0.480788,0.181735,-0.295956,1.68707,1.1069,0.711878,0.801112,-0.394408,0 +1.6327,-0.89583,-0.17356,-0.815893,-0.923588,0.217097,0.884857,-0.194733,0.0311245,1.18257,0.902613,-1.1249,-0.534222,-0.977789,-1.02494,-0.776615,-0.0368646,-0.667976,-0.286914,-0.627971,-0.142377,-0.801749,0.510306,-0.621196,-0.866984,0.389895,1.82477,0.675104,2.02128,1.37034,1.7321,-0.179299,-0.578156,0 +-0.891752,0.378811,-0.471353,0.338741,0.352007,-0.661326,-0.722435,-0.102629,-0.279414,-0.840257,-0.789486,0.80472,1.11033,0.627405,0.485831,1.34088,-0.22593,0.482071,0.728661,0.247973,0.118738,0.0679194,-0.478431,-0.0154982,-0.00334226,-0.459952,-0.935577,-0.53037,-0.659079,-1.18817,-0.784912,0.285106,1.81056,0 +0.152851,-0.668102,0.696554,-0.582534,-0.67483,0.440696,0.542155,0.170849,0.0216785,-0.00561435,0.372192,-0.529958,-0.479517,-0.345191,-0.557055,-0.51403,-0.035729,-0.239104,-0.775626,-0.300145,-0.526308,-0.17719,1.09192,0.309848,-0.232008,0.917073,1.4997,1.13356,0.522847,1.05502,0.37464,-0.437302,-0.578156,0 +1.37155,0.0498713,-1.68114,0.00670774,-0.0424278,-0.33631,-0.540062,-0.814665,-0.213882,-0.687178,-0.167898,-0.00982375,-0.839464,0.182125,-0.190252,-0.38156,-0.0493554,-0.320087,-0.283281,-0.136232,-0.12638,-0.238468,-1.76462,-0.188555,-0.30368,-0.837156,-0.511706,-1.08156,-0.734333,-0.636023,-0.549695,0.594709,-0.578156,0 +2.00992,-1.76246,-0.831961,-1.72688,-1.50346,0.656309,0.179412,-0.48805,-1.03185,1.36116,2.11126,-0.389686,-0.445327,-0.355674,-0.609157,-0.407113,0.166963,0.0623039,-0.84648,0.227092,0.866992,-0.990295,-0.335521,-0.72503,-0.880977,0.898895,1.29539,1.49123,-0.535132,2.03159,2.33195,0.0787039,-0.21066,0 +1.16844,-0.124087,0.396434,-0.0961758,-0.200883,1.35905,0.13933,1.21092,0.989602,1.16799,0.153946,-0.00788897,0.253672,-0.116855,-0.0510342,0.506389,-0.0215349,0.463383,-0.72294,0.0485623,-0.0685834,-0.0334241,0.324191,-0.147021,-0.104024,0.885261,-0.0561206,0.703326,0.131085,0.393768,-0.283778,-0.798505,-0.394408,0 +0.181868,0.587561,0.975735,0.609979,0.545107,-0.69247,0.586245,0.134008,-0.32015,-0.271679,-0.0131922,-0.15332,-1.25032,-0.331519,-0.0429062,-0.587325,0.112458,-0.27696,-0.991277,-0.535052,-0.0469099,0.737258,0.126444,0.728645,0.696308,0.317181,1.79244,0.993032,-0.00614259,0.582696,1.01416,0.336707,-0.578156,0 +1.8068,-0.405583,-1.02273,-0.367414,-0.46242,0.105298,0.265588,-0.29534,-0.273215,0.256806,0.337659,-0.868545,-1.09931,-0.944518,-0.733578,-0.866385,-0.143037,-0.676122,-1.09592,-0.368007,-0.0876768,-0.191331,-0.478431,-0.2647,-0.24566,0.0308691,1.31307,0.522476,0.168712,1.37832,1.53372,-0.179299,-0.578156,0 +-1.00782,-0.212648,-0.159601,-0.222442,-0.285507,-0.52557,-0.181327,-0.303841,-0.785072,-0.114956,-0.848882,-0.457404,-0.654837,-0.568515,-0.521833,-0.331464,-0.352542,-0.182081,-0.572147,0.765813,-0.682151,-0.238468,-0.185964,-0.237011,-0.300267,0.562591,0.112208,0.60023,0.055831,2.1673,-0.212457,-0.695304,-0.578156,0 +-0.456501,-1.0002,-0.129356,-0.992666,-0.957097,-0.355475,-0.658304,-0.344934,-0.909052,-0.155048,-0.20105,-1.02333,-0.466221,-0.728487,-0.94449,-0.29717,-0.0709304,0.354607,-0.633918,-0.0286961,0.0181108,-1.20948,0.0367094,-0.835787,-1.03302,0.0308691,0.357992,0.471792,-0.754253,0.474927,0.499333,0.0787039,1.81056,0 +0.733186,-0.766152,0.680268,-0.903344,-0.770244,-0.70365,-1.8305,-1.87415,-1.70577,-1.32136,-1.05884,1.96914,1.75424,1.74174,0.74551,0.0407281,-1.15025,-1.08151,0.739562,-1.32309,-1.15226,-1.42159,-0.82075,-1.55086,-1.20503,-2.27462,-1.91377,-2.377,-3.31531,-2.22062,-1.69035,0.336707,1.25932,0 +0.849252,-1.24375,-0.338742,-1.23725,-1.16667,-0.0863582,-0.343659,-0.707683,-0.955987,-0.756428,0.205054,-1.25873,-1.27843,-1.23529,-1.07766,-0.468977,-0.500161,-0.491635,-0.450424,-0.708362,-0.41278,-1.29433,-0.684487,-1.14383,-1.13405,0.776189,0.350064,0.381943,1.04077,-0.568168,0.768557,-0.179299,-0.578156,0 +-0.36945,-1.2564,-0.161927,-1.34107,-1.15588,-1.68189,-1.65013,-1.77326,-1.96199,-0.523166,-0.944192,-1.1765,-0.831866,-1.22299,-1.03577,-1.17066,-1.14571,-1.28661,-1.49307,-0.705229,-1.39377,-1.20005,0.0184302,-1.30996,-1.05299,-1.56884,-0.980708,-1.31425,-1.49572,-0.319369,-0.914801,-0.695304,-0.578156,0 +1.51664,-2.04396,-0.215437,-2.00887,-1.70082,1.59862,-0.417811,-0.734606,-0.888093,-0.118601,0.828023,-1.18262,0.310656,-1.10905,-1.10997,0.4378,-0.769849,-0.709186,-0.859197,-0.729242,-0.488638,-1.92831,0.864257,-1.83882,-1.52039,2.13504,-0.581233,-0.198044,-0.80516,-0.359283,0.247113,-0.0760978,-0.578156,0 +-1.09487,0.524303,0.589534,0.628685,0.380404,-0.948012,1.53018,0.771652,0.378857,1.39396,0.100075,1.21812,0.762726,2.08493,0.722585,-0.0719046,3.94033,2.70645,2.04945,3.42183,1.88823,0.723117,0.503659,1.28243,0.419861,-0.873513,2.31329,1.65596,1.5609,1.91051,0.612691,-0.2825,-0.578156,1 +1.95189,-1.307,-0.464373,-1.28775,-1.20642,0.113284,0.0190835,-0.818633,-0.743746,0.169333,0.706468,-0.751168,-0.834905,-0.833313,-0.81069,-0.568161,-0.552395,-0.905652,-1.00636,-0.351302,-0.345695,-0.858313,-0.355462,-0.943082,-0.849407,0.412619,0.0445106,-0.404812,-0.654652,0.671838,0.560735,-0.127698,-0.394408,0 +0.849252,-1.3418,-0.108418,-1.37661,-1.24533,-0.442519,-0.760513,-1.04365,-1.01119,-0.661665,-0.129222,-1.32064,-1.23873,-1.33146,-1.16165,-1.14713,-0.985599,-1.2569,-1.49816,-0.983986,-1.16981,-1.12935,-0.0413925,-1.20613,-1.13353,0.289913,0.15429,-0.367951,-0.400118,0.610636,0.252781,-0.592103,-0.394408,0 +-1.12389,0.391462,-1.08788,0.413565,0.300893,0.576452,0.52011,0.583193,0.416936,-0.0748642,-0.306029,0.0824009,-1.14186,0.0171394,0.0277449,-0.157304,0.496266,0.708726,0.336239,0.388917,-0.233199,0.4238,-1.46551,0.354843,0.276518,1.08977,0.877615,1.71528,1.30637,0.751667,0.0482652,-0.540503,-0.578156,1 +1.86484,-1.3418,-0.841267,-1.35042,-1.23652,1.04761,-0.391758,-0.476714,-0.394833,0.730621,0.699561,-1.01978,-0.704223,-1.07487,-0.958245,-0.0772841,-0.445087,-0.560638,-0.535812,-0.326246,-0.177467,-1.26133,-0.363771,-1.29958,-1.10162,1.57605,0.31408,0.36812,0.6645,0.886045,1.27867,-0.953307,-0.394408,0 +0.0367838,-0.73136,-0.0595609,-0.822908,-0.730488,-0.967976,-1.4397,-1.4696,-1.57736,-1.13548,-0.810205,-0.944324,-0.81781,-0.983714,-0.840284,-0.701639,-1.18659,-1.18454,-1.06776,-1.00278,-1.21677,-0.688621,0.257721,-0.78387,-0.639853,-0.228175,-0.97217,-0.953122,-0.570545,-0.743792,-0.571422,-0.179299,-0.578156,1 +-1.03684,0.568584,-0.862206,0.497743,0.51671,0.209112,-0.31961,-0.339266,0.0934093,-0.0384169,-0.427584,0.40035,-0.135716,0.265074,0.672567,-0.102164,-0.46212,-0.541471,0.0510054,-0.212446,-0.711566,1.20627,-0.332198,1.02976,1.26285,0.839814,-0.0853952,-0.280982,0.671141,0.403081,-0.372574,0.181905,1.81056,1 +0.443018,-0.854712,-0.159601,-0.902876,-0.889228,0.879908,-0.123208,-0.381776,-0.1637,0.362503,0.673317,-0.582842,-0.217393,-0.692938,-0.628123,-1.04324,-0.150417,-0.720207,-0.432256,-0.248987,0.06249,-0.742828,0.0932087,-0.853092,-0.715791,-0.323613,0.389706,-0.449161,0.102311,0.617289,0.877191,1.88472,0.524331,0 +-0.36945,-1.0002,-0.0293163,-0.86219,-0.921033,0.177169,1.16543,0.811328,-0.00725001,0.0782144,1.41093,0.323281,0.00674306,0.509362,-0.196921,0.88934,2.23476,1.35323,0.614205,-0.371139,1.09714,-0.789965,-0.104539,-0.735414,-0.760159,0.912528,1.58325,1.47165,-0.00614259,-0.518941,1.05667,-0.695304,-0.578156,1 +-0.804702,-1.49678,0.363863,-1.50428,-1.33762,0.760123,-0.329631,-0.615579,-0.532686,-0.0821536,0.441257,-0.573491,-0.164208,-0.605432,-0.703776,0.342651,-0.267945,-0.528053,-0.399554,-0.439001,-0.199141,-0.926661,0.553512,-0.988076,-0.881659,1.87145,0.250042,-0.197468,-0.158863,0.198188,0.579628,-0.850106,-0.394408,1 +1.71975,-0.832572,0.387128,-0.816361,-0.856855,1.15941,0.10526,-0.418617,0.103741,0.0927933,0.529661,-0.792121,0.031436,-0.82283,-0.729202,-0.019791,-0.459849,-0.843358,-0.592132,-0.162332,-0.393687,-0.87481,0.540218,-0.891165,-0.818862,0.948886,-0.143334,-0.773423,-0.384624,0.115698,-0.0811512,-0.850106,-0.578156,0 +0.675152,-0.0671553,0.522066,-0.0307045,-0.115408,0.352854,0.808701,0.183602,-0.216539,-0.00196963,0.298983,-0.0407803,-0.424433,-0.250849,-0.0158129,-0.316671,1.41718,0.0848256,-0.695688,-0.551757,1.19313,0.541641,0.611673,0.389454,0.471055,0.662573,2.28279,1.26661,0.246179,0.105054,2.03438,1.11071,0.156835,0 +-0.601584,-1.14253,-1.50897,-1.14231,-1.09596,-0.158229,-0.293557,-1.11025,-1.06521,-0.967823,0.408106,-1.04687,-1.22315,-1.04752,-0.977002,-0.687518,-0.598952,-1.10979,-1.07067,-0.872275,-0.442194,-1.04922,-1.54195,-1.03999,-1.01118,-0.128193,-0.0664887,-0.914533,-0.895907,-0.858213,0.574905,0.0787039,-0.21066,1 +1.4586,0.676121,-1.57877,0.614656,0.528069,0.416739,0.64236,1.11881,0.968939,2.50925,0.665029,1.99816,-1.5491,1.6474,2.05433,1.4283,0.654105,2.17983,2.22932,4.16101,1.81444,0.638271,-2.14848,0.451755,0.389145,0.430797,-0.158581,0.836372,0.912395,1.96906,0.30143,0.0787039,-0.578156,0 +-0.19535,0.533792,0.933857,0.666098,0.459916,1.50279,0.730541,0.530764,1.7748,-1.06987,1.317,-0.271987,3.12565,0.704429,-0.0652061,0.263304,1.66359,-0.930091,0.605121,1.04457,3.30423,-0.163049,0.428881,0.0329577,-0.182521,-0.214541,-0.508656,-1.11439,0.117805,-1.22809,0.056767,0.0787039,-0.394408,1 +1.2845,-0.744012,-0.569066,-0.680741,-0.750934,0.0973122,0.253564,0.194938,0.0405706,-0.26439,0.0185779,-0.408067,-0.569931,-0.250393,-0.481193,0.836554,0.33786,0.379525,0.619655,-0.582034,-0.24094,-0.657983,-0.981939,-0.583124,-0.648386,0.508056,0.336646,0.481583,0.724261,-0.532245,-0.400914,-0.695304,-0.578156,0 +-1.06585,1.06199,0.128886,1.05425,1.03922,0.0493982,0.177408,0.105668,0.434648,-0.46485,-0.869601,0.495155,0.367639,0.382661,0.474368,0.0303054,0.826138,-0.18256,0.160012,0.942254,0.0423646,0.753755,-0.117833,0.676728,0.701428,-0.246354,0.278097,-0.351248,0.206338,0.182222,-0.676278,0.594709,-0.21066,1 +1.69074,-0.946436,-0.583025,-0.952915,-0.93012,-0.412173,-0.572127,-0.883673,-0.837911,-0.176917,0.164996,-1.01204,1.11413,-0.856556,-0.904058,0.417964,-0.127707,-0.361297,-0.156107,-0.619619,0.240007,-1.10578,0.119797,-1.06768,-0.98729,-0.0373004,-0.38119,-0.675511,-0.493078,-0.686581,0.127615,-1.26291,-0.394408,0 +0.617119,-1.01918,0.871042,-0.86827,-0.958801,0.185155,0.820725,0.638455,-0.259636,-0.122246,0.489603,-0.451277,0.287862,0.50207,-0.553928,0.246157,2.03037,1.30052,0.370757,-0.760563,0.880409,-0.936088,0.869243,-0.468907,-0.852479,0.371717,1.71377,1.19346,0.00492413,-0.770401,0.721325,-0.746905,-0.578156,0 +1.57467,-1.36077,-1.56248,-1.2929,-1.24902,2.96417,0.678434,0.72064,0.272589,-0.00925908,1.96346,-0.685386,-0.647049,-0.84106,-0.741289,0.134533,-0.118055,0.669912,-0.22151,-0.530876,1.60544,-1.11049,-1.28604,-1.17498,-0.985924,1.92144,0.273218,1.15718,0.438739,-0.115805,2.34611,-0.695304,-0.578156,0 +-0.0792831,-0.804106,-1.30424,-0.758372,-0.816531,1.07955,0.445958,0.180768,0.0724509,0.836318,0.68713,-0.569944,-0.599373,-0.577174,-0.605406,0.0750222,-0.316205,-0.509844,-0.434073,-0.473454,-0.0531023,-0.521287,-0.460152,-0.458523,-0.528933,1.99415,0.505585,0.194182,0.529487,0.466944,0.740218,-0.695304,0.156835,0 +1.66172,-0.516284,0.147498,-0.428209,-0.532277,1.02365,0.65238,0.808494,0.236576,0.613989,1.4648,-0.165574,-0.36555,-0.299615,-0.24173,0.651298,0.486047,0.898484,-0.217877,-0.585166,1.03058,-0.196045,0.0599738,-0.347767,-0.226889,1.88963,0.776984,1.72162,0.54498,0.0531654,1.62346,0.336707,-0.21066,0 +-0.340434,0.170061,-0.527189,-0.0307045,0.0339603,-1.49024,-1.51165,-1.18053,-0.909642,0.734265,-1.72049,-0.170088,-0.0958275,-0.409454,-0.33739,-0.920516,-1.29321,-0.854858,-0.951308,3.08879,-1.07589,-0.104129,-0.383712,-0.385839,-0.24566,-1.66882,-1.49362,-1.21979,-1.33415,2.19258,-1.40365,0.0787039,-0.394408,1 +1.77779,0.394625,-1.19955,0.306005,0.303732,0.217097,-0.654296,-0.14939,-0.00370775,0.140175,-0.0794948,0.352948,0.601272,0.291508,0.421849,0.450577,-0.578512,-0.351234,0.165462,-0.0109476,0.300899,0.289461,-0.870602,0.174864,0.245802,0.289913,-0.829456,-0.630587,-0.251824,-0.452417,-0.296058,2.14273,2.54556,0 +-0.949785,2.16268,-0.482985,2.40109,2.24609,3.35547,2.88696,3.83376,3.37768,2.65139,0.837692,2.92041,3.52453,2.53021,3.39232,5.57049,3.79611,4.17133,0.566969,2.60122,3.03848,1.17798,-1.02182,1.40357,1.13999,1.16703,0.361651,0.827157,1.01864,-0.0160195,-0.507186,0.336707,-0.578156,0 +0.762202,0.502163,-0.783105,0.399536,0.476954,-1.63797,-1.24992,-0.900251,-0.900491,0.0672802,-1.69424,0.278137,0.147303,0.437808,0.229278,-0.784685,-0.22082,-0.0167618,-0.270563,-0.0266081,-0.671315,0.305959,-0.732678,0.271776,0.22703,-1.9006,-0.845923,-0.668024,-1.26111,-0.522932,-1.20056,0.336707,2.17806,1 +1.19745,0.752031,0.661656,0.726893,0.630298,-0.0943438,0.325711,1.39229,0.8302,1.00033,-0.217625,-0.348411,-0.124319,-0.679265,-0.143777,-0.581273,0.0335383,0.325856,-0.848297,-0.498511,-0.393687,0.37902,0.571791,0.289081,0.31406,-0.746264,0.128065,0.752282,-0.12345,0.0944103,-0.291807,0.0787039,1.44307,0 +1.66172,-0.396095,-0.171233,-0.404826,-0.455037,-0.150244,-0.28554,-0.736023,-0.904624,0.847252,-0.524275,-0.548661,0.0010447,-0.64326,-0.553303,-0.633723,-0.663109,-0.88936,-1.06613,-0.543404,-0.832834,-0.365736,0.25606,-0.368534,-0.392416,-0.200907,-0.363503,-0.791854,-1.05305,0.327244,-0.691392,-0.850106,-0.578156,0 +-1.1529,0.910175,-0.182866,0.839129,0.911429,-0.806666,-0.443865,-0.0558687,-0.0122682,1.56162,-0.877889,0.733778,-0.236387,0.548558,0.9435,-0.614559,-0.162908,0.10016,0.140027,1.18134,-0.368401,1.29347,-0.34383,1.08168,1.34988,-0.973495,-0.123208,0.0818703,0.343566,1.57257,-0.576145,-0.179299,1.07557,1 +-1.06585,-1.46831,0.0451319,-1.54964,-1.31689,-0.968775,-1.70425,-1.5464,-1.76333,-1.24847,-0.283928,-1.1823,0.219482,-1.2754,-1.04953,0.247838,-1.08893,-0.835212,-1.12263,-0.426473,-0.700729,-1.53943,0.536894,-1.672,-1.28217,-0.0918361,-1.29785,-1.26126,-1.89169,-0.538898,-0.479792,-0.953307,-0.578156,0 +-0.311417,-0.778803,-1.09486,-0.842081,-0.829026,1.11948,-0.243454,-0.0331969,-0.0158105,0.107372,-0.0753509,2.23356,0.356243,1.89761,0.660062,1.08872,0.204435,1.19893,2.34559,3.24957,-0.567591,-0.582564,-1.44723,-0.655808,-0.739852,-0.128193,-0.906912,-0.582782,-0.267317,0.239432,-0.914328,-0.850106,0.891826,0 +1.54565,-0.411909,-0.983184,-0.456268,-0.44595,-0.436929,-0.580144,-0.875312,-0.807211,-0.242522,-0.0311491,0.327473,0.128308,0.126522,0.0802643,0.00273558,-0.671058,-0.48301,-0.623017,-0.188433,-0.285319,-0.259679,-0.809118,-0.392762,-0.293441,-0.569023,-0.863,-0.901286,-1.26554,-0.588126,-0.43681,-0.695304,-0.394408,0 +-0.1083,-1.77511,-1.32518,-1.67731,-1.52788,0.512567,0.548167,0.136842,-0.372694,2.73522,1.52006,-0.914657,0.306857,-0.899854,-0.948449,-0.448804,0.291303,0.275063,0.605121,3.72982,0.334442,-1.7162,-0.624664,-1.6758,-1.3878,-0.246354,0.268949,0.0789905,0.170925,3.37936,0.574905,-0.488902,-0.578156,0 +-0.0792831,0.0846629,-0.357354,0.118944,-0.0180063,0.704223,0.478023,0.414571,0.549771,0.158398,-0.144416,0.670575,0.257471,0.585475,0.493542,0.76494,1.04132,0.541969,0.601487,-0.289704,0.506282,-0.130054,-0.835706,-0.257777,-0.175695,-0.0963807,-0.0933237,-0.451464,-0.603745,-1.02585,-0.635186,3.17474,0.708078,1 +1.08139,0.783659,-1.25306,0.717539,0.735368,-0.174201,-0.586156,-0.0912933,0.747548,-0.719981,-0.170661,1.44352,-0.625965,1.42499,1.07688,0.493949,-0.0215349,0.0407405,2.31652,1.7827,-0.10419,0.289461,-1.83774,0.247548,0.175836,-1.10075,-1.08439,-1.08271,-0.240757,-0.786367,-0.961088,1.62672,-0.21066,0 +-1.12389,0.688773,-0.959919,0.740922,0.692772,0.744151,0.480028,1.33986,1.23461,0.362503,-0.260446,0.42905,-0.411137,0.244565,0.5594,-0.909421,-0.478585,-0.0220329,-0.375936,-0.385755,-0.345179,1.34532,-0.623003,1.1959,1.41132,-0.00548799,0.118917,1.40714,1.01642,0.544112,0.0662134,0.336707,-0.578156,1 +0.443018,1.85271,-0.0549079,1.7417,2.03311,-1.46069,-0.564111,-0.337849,0.302403,-0.461205,-0.991156,0.196231,-0.775642,0.158426,0.575656,-0.622628,-0.326992,-0.600411,0.205431,-0.103867,-0.127412,1.64699,-0.318904,1.51778,1.70312,-0.959862,-0.0414833,-0.241241,1.23554,0.472266,0.0492098,-0.953307,-0.0269125,0 +-1.21094,-0.199996,-0.808696,-0.259854,-0.2378,-1.1205,-1.01864,-1.02055,-0.620357,-0.12589,-1.0174,-0.0140158,0.240376,-0.0576056,-0.0602043,-0.214797,-0.369007,-0.694331,0.170912,0.0370779,-0.254873,-0.22904,-0.637958,-0.333922,-0.247367,-1.23254,-0.934357,-1.18005,-0.694492,-0.564177,-0.87607,0.0787039,-0.394408,0 +0.530068,0.495837,0.429005,0.334064,0.170266,1.36703,0.371806,0.788656,0.847912,1.63087,0.374955,0.80859,0.0352349,0.326602,0.13716,0.745103,-0.381498,0.148557,0.0673564,1.41833,0.261164,0.176333,-0.44852,0.0191131,-0.131327,0.189931,-0.764808,-0.470471,-0.331504,0.220806,-0.51002,-0.437302,-0.21066,0 +1.08139,-1.25956,-0.615596,-1.35697,-1.14906,-0.974365,-1.59863,-1.38387,-1.54666,-1.20109,-0.828162,-0.430962,-0.223091,-0.507443,-0.559139,-0.255143,-1.16785,-0.921945,-1.02761,-0.559065,-1.09343,-0.716903,-0.044716,-0.821942,-0.701969,-0.17364,-1.28382,-0.992287,-1.38948,-0.465721,-0.808528,-0.437302,-0.394408,0 +1.48762,-0.617496,-2.41631,-0.577858,-0.662051,1.83819,0.257572,0.665378,0.676702,0.140175,1.1029,-0.588324,-1.15135,-0.661034,-0.533296,-0.460235,-0.453604,0.109264,-0.345051,-0.275088,0.0934522,-0.526,-2.17673,-0.531207,-0.516988,0.417163,-0.0414833,0.842707,0.0868178,-0.0240024,0.48044,-0.540503,-0.394408,0 +-0.862735,3.10205,-0.0944585,3.14466,3.63471,0.536524,0.977045,1.85423,2.98213,-0.46485,-0.691413,0.750546,0.411327,0.713088,1.2186,-0.716433,-0.330967,-0.462884,-0.488576,-0.501643,-0.639836,2.85133,0.450483,2.78456,3.09048,0.14903,0.233575,0.560489,1.99251,-0.502975,-0.472707,0.594709,0.156835,1 +0.181868,1.1632,0.999,1.30211,0.968223,0.911851,2.81681,1.31011,1.85451,1.70376,1.55735,0.0853031,-0.952671,0.0722866,0.234071,-0.843523,0.930606,-0.0972651,0.103692,-0.268824,0.675026,1.33353,0.555173,1.25128,1.16729,0.235378,2.39867,1.38987,2.46838,1.14948,1.7746,0.594709,0.708078,0 +0.530068,-0.541587,-0.457394,-0.638653,-0.577712,-0.535951,-1.0954,-1.27972,-1.02978,-1.12819,-0.996681,-0.752781,-0.217393,-0.842884,-0.609574,-0.718114,-0.486534,-1.01634,-0.968749,-0.530876,-0.80342,-0.2149,0.445498,-0.382378,-0.232008,-0.114559,-0.0634393,-0.84369,-0.546198,0.270034,-0.213402,-0.437302,-0.394408,0 +0.994336,-0.674428,0.0311728,-0.745277,-0.736736,-0.967178,-0.750493,-1.45231,-1.59832,-0.730915,0.0641609,-1.28323,-1.4604,-1.3269,-1.05661,-1.1673,-0.979354,-1.1026,-1.65149,-0.922388,-0.728595,-0.759326,-0.350477,-0.918854,-0.736951,-0.628103,-0.214691,-0.424395,-1.2434,-0.078552,0.325519,-0.643704,-0.578156,0 +1.2845,0.283924,-0.859879,0.175063,0.201503,-1.34171,-1.16173,-1.0564,-0.845291,-1.11726,-1.16796,-1.11459,-1.49819,-1.11133,-0.860917,-1.30986,-1.25012,-1.27606,-1.5225,-1.02992,-1.49646,0.0679194,-0.627988,-0.0397261,0.00860299,-0.932594,-0.735534,-0.477382,-0.479798,-0.0373072,-1.01304,1.62672,-0.0269125,0 +1.13942,-1.00969,0.196355,-0.958059,-1.02269,0.384796,1.97709,0.593112,-0.607959,1.66367,1.75626,-1.02333,1.60608,-0.976878,-0.802562,0.406196,5.91615,3.63464,0.283552,3.19215,3.99056,-1.24483,1.17002,-1.17498,-1.0965,0.426252,3.4617,2.3736,-0.0349161,2.57043,2.53977,-0.850106,-0.578156,0 +0.791219,-1.60431,1.06647,-1.5763,-1.39896,0.0573839,-0.147257,-0.676509,-1.21487,0.056346,0.92057,-0.638628,1.03435,-0.735324,-0.745874,0.785449,0.41167,-0.149496,-0.343234,-0.185301,0.869572,-1.26604,1.52895,-1.33765,-1.08541,1.5715,0.643419,0.0334901,-0.727693,-0.0253329,1.40147,-0.850106,0.156835,1 +0.820236,-0.807269,0.217293,-0.676065,-0.848052,0.137241,1.10932,0.190687,0.0591675,-0.694468,0.554524,-1.04397,-0.57411,-0.302806,-0.938446,0.443516,1.13671,0.707288,0.677792,0.511069,0.167762,-1.1647,-0.39202,-0.752719,-1.05845,-0.559934,0.608045,0.127947,-0.134517,-0.311386,-0.180339,2.65873,1.07557,0 +1.2845,-1.15202,0.00325476,-1.13296,-1.08233,1.38301,-0.31961,-0.251413,-0.635116,-0.340929,0.837692,0.0507995,1.60988,0.296522,-0.42784,2.36634,0.12949,0.28273,0.999361,0.66141,0.164665,-1.09164,0.643246,-0.994999,-1.02057,1.35336,-0.322641,-0.321298,-0.254037,-0.204948,0.118169,-0.850106,-0.578156,0 +-1.21094,0.559095,0.0497849,0.591273,0.505351,-1.39361,0.00305069,-0.635416,-0.5625,-0.585126,-1.02431,-0.540599,-0.363651,-0.192511,-0.333639,-0.416191,0.328208,-0.655996,-0.524911,-0.668688,-0.304412,0.551068,0.319206,0.901702,0.483,-0.532666,1.18927,-0.289045,-0.17657,-0.0546034,0.0652688,0.0787039,-0.394408,0 +0.733186,-0.936947,-0.478332,-0.952447,-0.929552,-0.316345,-0.44186,-0.541895,-0.79629,0.0818591,0.269975,-1.27098,-1.16541,-1.28042,-1.05891,-0.913792,-0.864665,-0.994302,-1.4164,-0.556977,-1.0377,-0.634414,-0.00317242,-0.776947,-0.615963,0.5126,0.246993,0.345658,0.111165,2.02094,0.49461,-0.695304,-0.578156,0 +-1.21094,1.85904,1.02226,2.0597,2.03027,0.911851,1.31774,2.77811,2.22054,0.993041,-0.0573939,-0.159447,0.561384,0.187594,0.269501,0.862442,1.13614,2.33988,1.73515,0.124777,0.623422,0.96587,0.422234,1.26858,0.991526,0.439886,0.31469,2.03033,2.09211,-0.047951,-0.151527,3.17474,1.99431,0 +-0.253384,-1.13937,0.342925,-1.08947,-1.05705,2.36524,0.684446,-0.00627411,0.147134,1.17892,1.58912,-0.124298,1.26418,-0.157873,-0.3649,0.693325,-0.00677303,-0.461447,-0.397737,-0.0600171,0.267873,-0.429371,1.94605,-0.410067,-0.429958,3.57569,0.950192,0.160776,0.4985,1.59386,0.839406,-0.695304,-0.578156,0 +-0.862735,-0.725034,-1.30192,-0.751825,-0.719697,-1.11172,-0.937275,-1.14411,-1.35744,-1.21566,-0.393051,-1.07137,-1.71397,-1.03977,-0.912603,-0.433674,-0.681845,-0.975613,-1.24254,-0.555933,-0.570687,-0.766396,-1.64497,-0.78387,-0.708965,0.235378,-0.195175,-0.598909,-1.18585,0.240763,0.310404,-0.695304,-0.578156,1 +-0.340434,0.61919,0.408067,0.70351,0.579184,-0.321137,0.405876,0.564772,0.549771,0.701463,-0.0339117,0.0891727,-0.614569,0.245476,0.11882,-0.525461,-0.179373,-0.463363,-0.346868,-0.162332,-0.143925,0.671266,-0.284007,0.870552,0.546139,-0.773531,-0.0707579,-0.437641,0.0978846,0.325914,-0.136885,0.181905,-0.578156,0 +0.791219,0.00242807,0.764022,-0.0166749,-0.0625897,-0.166215,-0.562107,0.169432,-0.614158,-2.25806,-0.558808,-0.237806,0.764625,-0.222591,-0.243814,8.19298,3.08584,4.93802,4.39127,0.124777,4.42404,-0.695692,-0.34383,-0.690419,-0.655212,-0.891692,-1.13318,-0.90071,-1.5245,-2.17007,-1.06972,-0.695304,-0.394408,0 +0.762202,-1.01918,0.356884,-1.02821,-1.02042,-0.642959,-0.24145,-0.633999,-0.654009,1.12061,0.224392,-0.588969,1.10273,-0.328784,-0.817568,1.38459,0.335021,-0.185435,0.212698,2.55111,0.403074,-0.980867,0.782832,-0.87732,-1.01306,0.544413,0.248822,-0.358736,-0.0349161,1.98236,0.556012,0.0787039,-0.578156,0 +0.762202,-1.12356,-1.24375,-1.11753,-1.11072,-0.00650146,0.181416,-0.810981,-0.907871,0.650437,0.891563,-1.1191,-0.133817,-1.05846,-0.990757,-0.2696,0.180589,-0.0795352,-0.136122,-0.121615,0.295739,-1.24247,-0.533268,-1.2442,-1.11749,0.094494,0.438497,0.155017,-0.296091,0.526816,0.711878,0.594709,-0.21066,0 +0.0367838,0.755193,-0.16658,0.694157,0.738207,-0.706845,-0.24145,-0.411532,0.00396716,0.6067,-0.95248,1.13492,-0.149012,1.01708,1.12899,0.014167,0.0278606,-0.301398,0.367124,-0.165464,0.0299797,1.10964,-0.24911,1.03669,1.03078,-0.391782,-0.253724,-0.431882,0.0713244,-0.218252,-0.390995,-0.127698,-0.578156,0 +0.791219,0.669796,2.37164,0.614656,0.718329,-1.47586,-0.594172,-0.59149,-0.602351,-1.82069,-1.32267,0.438079,0.107414,0.212661,0.82679,-0.411148,-0.270216,-0.676122,-0.78471,-0.755343,-0.893211,1.62107,2.53763,1.37934,1.8294,-0.141827,0.271998,-0.214171,-0.360278,-0.693233,-0.715481,-0.0244972,-0.578156,0 +0.617119,-0.339163,-0.341068,-0.255178,-0.398243,0.0334269,0.325711,0.29271,-0.0668781,0.194846,0.473027,-0.991726,-0.010352,-0.901221,-0.858624,-0.0819911,-0.351974,0.00575991,-0.301448,-0.269868,-0.18624,-0.504789,0.300927,-0.396223,-0.545998,0.471699,-0.118939,0.927949,0.122231,0.465614,0.4214,-0.953307,-0.394408,0 +0.878269,-1.44933,0.0125608,-1.38409,-1.32569,0.48861,0.746573,0.187853,-0.536228,0.712397,1.35844,-0.958513,-0.371248,-0.910792,-0.939905,0.0743498,0.41905,0.291355,-0.0198487,-0.39202,0.84119,-1.3721,0.00181281,-1.21305,-1.19275,1.53514,1.03192,1.10304,0.418819,0.230119,1.58095,0.0787039,4.38303,0 +0.472035,-0.114598,-0.743554,-0.0681166,-0.213094,0.911851,0.291642,0.492505,0.656039,0.741555,0.0752114,-0.991404,-1.11204,-0.958191,-0.797143,-0.413501,-0.631314,-0.48876,-0.228778,-0.917168,-0.851928,-0.337454,-0.872264,-0.237011,-0.368526,1.19884,0.172587,0.375032,1.67157,-0.166364,-0.0103028,-0.695304,0.340583,0 +0.588102,0.979758,1.28749,0.913953,0.990941,-0.885724,-0.706402,-0.0119421,-0.0996441,-1.74779,-0.937285,-0.255864,-0.143314,-0.222591,-0.00455871,-0.585644,-0.600655,-0.296127,-0.761092,-0.79084,-0.567591,0.812676,1.20325,0.77364,0.79699,-0.982585,-0.54281,-0.127202,-0.497505,-1.06045,-0.356515,3.17474,3.83179,0 +1.05237,1.83374,1.09206,1.80717,1.98768,-0.606225,0.512093,0.549185,1.08997,-0.0675747,0.0531105,1.46609,-0.571641,1.36346,1.78339,-0.112251,-0.145875,0.202226,0.374391,-0.485983,-0.481929,2.35404,0.726333,2.27231,2.62632,0.189931,0.289685,0.836948,1.78224,-0.174347,-0.191675,-0.695304,-0.394408,0 +-0.456501,0.0150796,3.95599,-0.0681166,-0.140398,-0.364259,-0.257483,-0.206069,0.0393898,-0.432048,-0.420677,-0.215233,-0.775642,-0.571249,-0.442429,-0.639439,-0.190161,-0.705832,-0.246945,-0.86601,-0.633644,0.350738,2.4479,0.0294965,0.00519006,-0.337246,0.0512194,-0.648441,0.615807,-0.506966,-0.277165,-0.437302,-0.578156,0 +0.443018,0.628678,0.284762,0.666098,0.525229,0.00148421,0.263584,0.689467,0.061529,0.183912,-0.373713,-0.254896,1.02105,-0.0995357,-0.204633,1.29381,0.0749851,-0.0766601,0.0891576,0.136261,-0.0195599,0.148051,0.064959,0.157558,0.0205482,0.108128,-0.416563,-0.523459,-0.495291,-0.417824,-0.693754,-0.540503,-0.394408,0 +0.849252,-0.0355265,-1.20886,-0.0868227,-0.118816,-0.150244,-0.772538,-0.420034,-0.0958066,-0.417469,-0.908278,-0.948194,-0.774313,-0.939961,-0.762756,-0.674069,-0.918035,-0.835212,-0.450424,-0.690613,-0.838511,-0.276177,-0.839029,-0.327,-0.312212,-0.10547,-0.759929,-0.569535,0.153218,-0.12778,-0.458065,-0.850106,-0.578156,0 +0.268918,0.644493,-0.685391,0.544508,0.564985,0.0653696,-0.477934,-0.259915,-0.0255517,-0.552324,-0.861314,-0.0240122,-1.19713,-0.208919,0.0160739,-0.710381,-0.749409,-0.635391,-0.44134,-0.72089,-0.741496,1.10257,-0.92544,0.787485,0.967636,0.262646,-0.298855,-0.0287131,0.467513,0.192866,-0.0627306,3.17474,0.708078,0 +0.326951,-1.09193,-1.21583,-1.09555,-1.04399,0.552495,-0.295561,-0.826851,-1.01296,-0.0712195,-0.194143,-0.575103,-0.863587,-0.771329,-0.718781,-0.138139,-0.250344,-0.458092,-0.305082,0.00680098,-0.66667,-1.09164,-1.34088,-1.11614,-0.987972,0.330815,-0.237257,-0.666872,-0.915827,-0.220913,-0.531747,-0.953307,-0.578156,0 +-0.804702,0.676121,1.51083,0.876541,0.672894,-0.805068,1.27566,0.313965,0.815441,-0.12589,-0.05325,0.771506,-0.124319,1.3229,0.753847,-0.136458,0.934013,-0.101578,0.0164867,-0.124747,0.652836,0.949372,1.0188,1.32396,0.889139,-0.718996,1.02338,-0.0667262,0.339139,-0.553533,0.456824,1.62672,2.17806,1 +0.268918,-0.661777,-1.16465,-0.545122,-0.729069,2.46107,1.71856,1.25484,1.10473,1.7147,1.83085,0.180107,-0.390243,-0.0885974,-0.224432,1.13915,0.833519,0.435111,1.12108,-0.179037,2.41149,-0.775824,-1.24283,-0.711186,-0.812548,1.48061,0.519612,0.0357939,0.976582,0.0318777,1.33534,-1.05651,-0.578156,0 +0.501052,-0.554239,0.214967,-0.217765,-0.558118,0.656309,3.38197,2.28641,1.50323,2.06824,2.53255,2.22066,2.2595,2.67286,1.42284,1.88219,1.63236,1.99199,2.75073,0.29391,1.06051,-0.276177,0.249413,0.116025,-0.305386,0.294458,0.927626,1.04487,1.49229,0.0571568,0.522949,-1.15971,-0.578156,0 +-0.572568,-0.595356,2.62523,-0.52174,-0.639334,0.288968,0.425917,0.267204,-0.082228,0.595766,0.524136,-1.16553,0.0257376,-1.07213,-0.983879,-0.476374,-0.320179,-0.568305,-0.886449,-1.1075,-0.324022,-0.596705,3.22393,-0.486212,-0.631321,2.01687,1.1667,0.769561,0.500713,0.369819,1.39675,-0.179299,-0.0269125,0 +-0.224367,0.9165,1.113,0.843806,0.90291,-0.214129,-0.678345,-0.0615366,0.193478,-0.413824,-0.964911,-0.663136,-0.439629,-0.760391,-0.37282,-0.577911,-0.875453,-0.938237,-1.25616,-0.807545,-1.08105,0.77968,1.49904,0.759795,0.749209,0.376261,-0.430591,-0.333394,-0.200917,-0.110484,-0.511909,-0.540503,-0.394408,1 +-1.00782,-0.0386894,-0.0339693,-0.0213514,-0.0631576,-1.01349,-0.307585,-0.839888,-0.345536,0.657726,-1.11409,0.746354,0.700044,0.861666,0.431644,-0.0150839,1.62441,0.269791,1.16105,0.721963,0.955234,-0.148908,-0.481754,-0.0847208,-0.18764,-1.38706,-0.478162,-1.19157,-0.574972,-0.222244,-0.755156,0.594709,-0.394408,1 +0.443018,-0.570053,-0.673759,-0.694771,-0.60043,-1.93903,-1.73331,-1.61753,-1.72112,-1.38697,-1.1431,-1.20455,-0.50459,-1.24031,-1.00139,-1.3233,-1.25444,-1.32446,-1.80319,-1.08839,-1.36332,-0.733401,0.254398,-0.84617,-0.710501,-1.61429,-1.12464,-1.21345,-2.06057,-0.733148,-1.06453,-0.437302,-0.578156,0 +-0.2824,-0.0703182,-0.0479284,-0.152294,-0.118532,-0.432936,-1.05612,-0.930008,-0.634821,-0.220653,-0.953861,-0.590259,-0.999398,-0.654654,-0.51704,-0.762831,-1.08666,-0.971301,-0.949128,-0.951621,-1.24463,0.131554,-0.13445,0.00526861,0.0529711,0.539868,-0.661128,-0.275222,0.434313,-0.0240024,-0.714536,2.91673,0.524331,1 +0.472035,1.04934,2.05756,0.974748,1.27491,-0.638168,-0.568119,-0.276919,-0.00931634,-0.577837,-0.824018,1.8337,0.669653,1.59225,2.69832,-0.74333,-0.932229,-0.925778,-1.05723,-0.718802,-0.871021,2.70285,2.82844,2.5492,3.45907,-0.17364,-0.614166,-0.532674,-0.285024,-0.487009,-0.408471,0.0787039,-0.21066,0 +-1.21094,1.37196,-0.299191,1.51723,1.47937,-0.69247,1.07124,0.896347,0.650135,-0.752784,-0.10574,1.81758,0.166297,2.10179,1.80423,-0.361387,1.04473,1.0801,0.0927912,-0.137276,0.323605,1.68941,-0.325551,1.92274,1.6707,-0.759898,0.655007,0.82946,0.117805,-0.533576,-0.106184,-0.179299,1.44307,1 +0.355968,0.163735,0.51276,0.0160608,0.0819513,-1.12849,-1.45053,-1.4064,-1.16114,-1.41977,-1.05055,-0.587357,0.320153,-0.679265,-0.508912,-0.443088,-1.10767,-1.17543,-1.19494,-0.664512,-0.637772,-0.0239968,0.756244,-0.181633,-0.144979,-0.564478,-1.12525,-1.31713,-1.4426,-0.971304,-0.535998,-0.695304,-0.578156,0 +0.239901,0.552769,1.00598,0.530478,0.476954,-0.0544155,0.0531533,0.508092,0.291186,-0.0930878,-0.0698257,0.105618,-0.500411,0.0299008,-0.0120615,0.211863,-0.38093,-0.0416795,-0.394104,-0.647808,-0.279127,0.635914,0.957315,0.673267,0.544433,1.55787,0.115867,0.798935,0.186418,0.0318777,0.300958,-0.695304,-0.578156,0 +-0.862735,0.726728,-0.748207,0.684804,0.630298,-0.0703868,-0.149261,0.18927,0.5173,-0.118601,-0.562952,-0.542212,-0.409238,-0.500606,-0.367401,-0.593713,-0.411589,-0.578847,-0.713856,0.219784,-0.680603,0.543998,-0.044716,0.597122,0.433513,-0.128193,0.20857,0.1602,0.303725,1.09094,-0.218125,0.594709,2.17806,0 +-1.12389,-0.370792,-0.815676,-0.283237,-0.468384,0.312925,0.752586,0.546351,0.11053,-0.187851,0.5711,-1.01914,-0.659396,-0.816449,-0.878215,-0.739295,0.205003,-0.0972651,-0.546713,-0.696877,0.048557,-0.582564,-0.839029,-0.465445,-0.638147,-0.337246,0.643419,0.379639,-0.12345,-0.617396,0.730771,-0.953307,-0.578156,0 +-1.327,-1.78776,-0.962246,-1.8639,-1.53043,-0.239683,-1.67358,-1.83348,-1.52393,-1.12455,0.0227218,0.134318,1.59659,-0.0535037,-0.440136,-0.391983,-1.20078,-1.34315,-0.141572,-0.501643,-0.63416,-1.80576,-1.12153,-1.9122,-1.45281,-1.37342,-1.74038,-2.16263,-2.37221,-1.67114,-1.02391,3.69074,2.7293,0 +0.326951,0.669796,-0.785431,0.684804,0.701291,0.983722,0.431929,0.899181,0.573386,-0.494008,0.388768,1.637,-0.196499,1.3589,1.30822,-0.237323,0.0471646,0.748978,0.405276,-0.179037,0.412879,1.15677,-0.647929,1.06438,1.10586,0.253556,0.283586,1.01031,0.425459,-0.353961,0.399673,-0.437302,-0.578156,1 +-0.36945,0.846917,0.368516,0.927983,0.786482,0.424725,0.824733,1.02104,1.2169,1.17163,1.65542,1.51124,0.908984,1.61732,1.26237,0.404179,0.915277,1.71262,0.774081,0.710479,1.00168,0.626487,-0.117833,0.638656,0.496652,-0.41905,-0.158581,0.325499,0.299299,0.079775,0.182405,1.11071,1.44307,0 +0.675152,0.255458,-0.792411,0.179739,0.161747,-0.416965,-0.620226,-0.612745,-0.214768,-0.439337,-0.837831,-0.642498,-1.3565,-0.778621,-0.444513,-0.652551,-0.829464,-0.798794,-0.66662,-0.814853,-0.792583,0.192831,-0.853985,0.0191131,0.136588,-0.0236665,-0.54159,-0.295956,-0.0260627,-0.561516,-0.417917,-0.437302,-0.578156,0 +0.559085,0.869057,-0.608617,0.759628,0.863154,-1.79529,-1.1425,-0.57732,-0.28089,0.0016751,-1.62241,-0.0349759,-1.09817,-0.176559,0.0963119,-0.748373,-0.990141,-0.685227,-0.477675,0.143569,-1.23741,0.480364,-1.18135,0.340998,0.4301,-1.75063,-1.28931,-1.01417,-0.802946,-0.23821,-1.48773,-0.179299,-0.394408,0 +0.559085,0.925989,-0.178213,0.984101,0.834757,1.14343,0.898885,1.42063,1.87812,2.33795,0.551762,-0.106885,-0.458623,-0.11093,-0.0243577,-0.429303,-0.39115,-0.42407,-0.256029,0.743888,-0.331246,1.00829,0.285971,1.06438,0.909616,0.694386,0.512903,0.562793,1.98587,3.09198,0.546566,-1.26291,-0.21066,0 +0.907286,-0.361303,-0.364333,-0.372091,-0.443962,1.13545,-0.215397,-0.119633,-0.0559562,0.0745697,0.00890872,-0.534795,-0.0616373,-0.449105,-0.538089,-0.0218083,-0.588732,-0.396277,-0.214243,-0.54236,-0.618163,-0.410516,0.0400329,-0.365073,-0.484565,0.685297,-0.429371,-0.443401,-0.453238,-0.174347,-0.416973,-0.179299,-0.21066,1 +-0.36945,-0.111436,-0.296865,-0.142941,-0.146077,0.736166,-0.742476,-0.0771235,0.370887,-0.730915,-0.27564,0.686053,1.64217,0.829763,0.353074,-0.103173,-0.751113,0.204622,0.425261,-0.236459,-0.131024,-0.00749899,0.500336,0.0987192,-0.0733073,0.044503,-0.974609,-0.257367,0.0868178,-0.812977,-0.700839,-0.695304,-0.578156,0 +-1.06585,0.429417,-0.196825,0.376153,0.346328,-0.920062,-0.049056,-0.711934,-0.763819,0.0927933,-0.259064,0.125289,0.5044,0.0517773,0.375582,0.264312,0.441193,-0.0771393,0.556068,0.117468,0.236394,0.829174,0.703068,0.718262,0.798696,0.26719,0.717215,0.153865,0.575967,0.592009,0.371806,-0.437302,-0.578156,0 +-0.659618,1.92862,0.463903,1.88199,2.20633,0.336882,-0.287544,1.05647,1.60064,-0.475784,-1.05608,1.30809,-0.64572,1.00569,1.95637,-0.157976,-0.652321,-0.236229,-0.37957,-0.60187,-0.448387,2.27391,0.0981939,2.14771,2.56147,0.344449,-0.59343,0.260417,0.666714,-0.852891,-0.635186,0.336707,0.156835,1 +-0.398467,0.717239,-0.138662,0.70351,0.635978,-0.376238,-0.175315,0.425907,0.694414,0.562963,-0.767385,0.0620857,1.93659,0.41821,-0.0535352,-0.674405,0.140846,0.12939,0.5379,1.77539,-0.36066,0.407302,0.751259,0.597122,0.230443,-1.00531,-0.117719,0.21146,1.03413,1.07896,-0.550168,-0.695304,1.81056,1 +0.326951,-0.525773,-0.710983,-0.362738,-0.60043,1.72639,1.87889,1.91516,1.10473,1.63087,1.84052,-0.267472,0.113113,-0.354762,-0.396162,0.863115,1.95258,2.81667,1.4045,3.64108,1.72516,-0.863026,-0.99191,-0.72503,-0.835585,0.503511,0.85078,1.44285,0.768528,1.34506,0.669369,-0.540503,-0.578156,0 +-1.23995,2.63078,-1.12045,2.77521,2.95318,0.975736,1.87689,2.55847,3.08544,0.103727,-0.206575,1.2623,-0.785519,1.35207,1.72712,-0.132087,0.63764,0.0915342,-0.00349775,0.291822,-0.310605,2.85369,-1.08995,3.07875,3.12119,0.412619,1.39419,1.20038,2.14301,0.606645,-0.126494,0.852712,-0.578156,1 +-1.21094,-0.737686,0.8059,-0.788301,-0.719697,-0.0224728,-0.901001,-0.463961,-0.627146,-1.02249,0.267213,0.161405,0.458813,-0.0370963,-0.142943,1.26355,-0.39115,0.401089,0.428894,0.0673549,0.454162,-0.591991,0.511968,-0.66273,-0.605724,1.00342,-0.789814,-0.194588,-0.579399,-0.771732,0.167763,-0.127698,-0.578156,1 +0.414001,0.957618,-0.115397,0.885894,0.917109,-0.892911,-0.592168,-0.825434,-0.263474,-1.12819,-0.985631,-0.0814107,-0.660345,-0.0170427,0.046085,-0.186218,-0.689226,-0.814607,-0.088886,-0.637367,-1.07382,0.774967,-0.626326,0.721723,0.639995,-0.509943,-0.777616,-0.958881,-0.0504095,-0.831603,-1.10893,-0.953307,-0.578156,0 +0.123834,0.881709,1.05949,0.881218,0.749566,-0.289993,0.48604,0.111336,1.17262,-0.191495,-0.346087,1.202,1.192,1.30922,0.695492,0.563882,0.882346,0.876441,1.86414,1.72737,0.154345,0.746685,0.610011,0.680189,0.45399,-0.73263,-0.143334,-0.38235,0.806154,0.049174,-0.685252,-0.179299,-0.21066,0 +-1.29799,1.45419,-0.087479,1.51255,1.45381,0.288968,1.05721,1.25484,1.86926,-0.377377,-0.18033,1.30486,-1.07234,1.50657,1.24986,-0.935982,-0.169721,-0.239104,-0.0707183,-0.561153,-0.0985136,1.5645,-0.721045,1.89159,1.40278,-0.659916,0.142702,0.224131,1.42589,-0.65598,-0.240324,0.0787039,-0.394408,1 +0.210884,1.02088,-1.14604,0.93266,1.03638,-0.656535,-0.702394,-0.0502007,0.0777643,-1.29949,-1.09475,0.0333864,-1.15287,-0.0621632,0.141537,-0.18521,-0.695472,-0.667976,-0.504927,-0.813809,-1.17445,1.02479,-1.15808,0.915546,0.923268,0.558047,-0.363503,-0.119714,0.717621,-0.725165,-0.957782,0.594709,-0.578156,0 +-1.1529,-2.00284,-0.801717,-1.9434,-1.72779,1.51078,1.45803,0.179351,-0.682051,0.978462,2.31983,-1.26389,-0.451026,-1.15599,-1.17207,0.216233,0.811376,0.245832,-0.310532,-0.331466,0.231234,-1.83404,0.445498,-1.68169,-1.53046,3.38481,3.49342,2.32406,1.62952,1.22399,2.33667,-0.437302,-0.578156,0 +0.297934,-0.889504,0.235905,-0.976765,-0.867078,-1.26664,-1.52889,-1.02509,-1.00558,-1.09539,-1.1804,-0.605092,0.688647,-0.611356,-0.775677,0.521182,-0.78234,-0.328712,0.120043,-0.329378,-0.575848,-1.23305,0.261045,-1.32035,-1.10367,-0.578112,-1.26248,-0.974432,-0.949027,-1.00723,-1.06122,0.0787039,-0.578156,0 +-0.978802,0.676121,0.217293,0.656745,0.579184,-0.134272,-0.217401,0.415988,0.452359,0.224004,-0.533944,0.0237125,2.98509,0.51392,-0.00268302,1.50563,0.554746,1.62637,3.50832,0.743888,1.16268,-0.047565,0.0500034,0.0571856,-0.156924,-0.855335,-0.75444,-0.309779,0.0823912,-0.875509,-0.699422,0.594709,1.81056,0 +0.326951,1.32767,0.000928253,1.38161,1.24084,1.11948,1.32376,1.76779,2.04933,0.854541,0.463358,0.0672451,-0.652558,-0.0443885,0.224276,-0.520082,0.344106,0.308126,-0.403188,-0.0109476,0.021207,1.22748,-0.232493,1.09553,1.15364,0.285369,1.26001,1.5471,1.40376,0.790251,0.466271,0.233506,2.36181,0 +0.297934,0.182712,-0.375966,0.13765,0.0615054,0.0733552,-0.245458,-0.512139,0.0432273,0.234938,-0.278403,-0.482556,-0.742972,-0.544359,-0.425548,0.157732,-0.197542,-0.750396,-0.0543674,-0.669732,-0.335891,0.0137124,-0.785853,-0.0777986,-0.0954913,0.194476,0.0512194,-0.613884,0.412179,-0.231557,-0.273859,0.0787039,-0.0269125,0 +0.123834,-0.721871,1.75279,-0.848629,-0.711462,-1.55572,-1.93592,-1.54994,-1.753,-0.275324,-1.34891,-0.436121,0.688647,-0.552563,-0.517873,0.0232448,-0.961185,-0.75998,-1.09229,1.14375,-1.15433,-0.886595,1.12515,-1.04692,-0.808111,-1.32343,-1.62499,-1.62411,-2.50169,-0.00138424,-1.37815,0.594709,1.81056,0 +0.0658006,-0.604845,-0.278253,-0.559152,-0.474063,0.744151,0.289638,-0.0572856,-0.0580225,0.573897,0.819735,2.47218,-0.0977269,2.35565,2.2148,0.482853,0.436651,0.20031,1.14289,-0.0391365,0.943365,0.506289,-0.413623,0.579817,0.585388,0.353538,0.214059,-0.0897644,0.766314,-0.307394,0.659923,-1.26291,-0.578156,1 +0.239901,-0.0386894,-0.196825,-0.100852,-0.0892829,-0.182186,-0.606197,-0.631166,-0.0887221,-0.650731,-0.619585,0.971756,0.0770229,0.967403,0.728837,-0.387612,-0.567157,-0.32967,-0.0289326,-0.541316,-0.487606,0.350738,-0.571489,0.313309,0.26116,-0.591746,-0.792253,-0.631738,-0.528492,-0.831603,-0.726344,-0.695304,-0.394408,0 +-1.327,0.875383,-0.636535,0.885894,0.795001,0.847965,0.125301,0.808494,1.15491,-0.741849,-0.300504,-0.548983,-0.500411,-0.568515,-0.369694,0.78175,-0.229905,0.704893,0.726845,0.41293,0.00933819,0.237611,-0.842353,0.195631,0.126349,1.02614,-0.43242,0.542059,0.852635,-0.268811,-0.476013,0.852712,4.38303,1 +0.00776711,0.445231,-0.0711935,0.413565,0.397443,-0.0703868,-0.0751094,0.0447374,0.0196122,0.056346,-0.191381,0.695727,1.26608,0.108292,0.701744,0.441163,0.549636,0.597076,0.58877,0.341936,0.272517,0.386091,0.131429,0.171403,0.337951,-0.223631,-0.11467,-0.261975,-0.17657,-0.302073,-0.363128,-0.953307,-0.578156,0 +-1.09487,-1.0856,-0.617923,-1.11005,-1.05223,0.265011,-0.58816,-0.618413,-0.653713,-0.942309,0.377717,-1.23357,-0.591015,-1.20932,-1.07079,-0.486796,-0.754519,-0.905652,-1.00508,-0.869143,-0.588749,-0.938445,0.109826,-0.915393,-0.914082,0.789823,-0.0506316,-0.17155,0.0868178,-0.0732301,0.692986,0.336707,0.156835,1 +-0.978802,-0.0450151,0.731451,-0.114882,-0.117112,-1.54694,-0.636259,-0.507888,-0.868316,-1.67854,-1.19283,-0.301009,0.787419,-0.44318,-0.24694,0.45293,0.674545,0.415464,0.421627,-0.481806,-0.127928,-0.151265,0.884198,-0.261239,-0.206412,-0.0145773,0.287245,0.385399,-0.107956,-0.976625,-0.537887,3.17474,-0.578156,0 +-0.688635,0.195364,-1.26236,0.123621,0.0566779,-1.05502,-0.389754,-0.669424,-0.715408,-0.756428,-0.6776,-0.982697,-1.27995,-1.06393,-0.718156,-0.889248,-0.885673,-0.527095,-0.971292,-0.793972,-0.800324,-0.151265,-1.34918,-0.243933,-0.19276,-0.800799,-0.600749,-0.0442639,-0.559478,-0.521602,-0.405165,-0.0760978,-0.578156,0 +-0.891752,0.106803,1.33867,0.114268,0.0328244,-0.216525,-0.225417,0.192104,-0.113518,-0.781941,-0.489742,-0.688933,-0.356053,-0.630043,-0.547676,-0.688527,-0.62734,-0.181123,-0.726573,-0.854526,-0.7384,0.11977,1.39602,0.174864,0.0546775,-0.17364,0.0676863,1.17043,0.403326,-0.348639,-0.00369032,-0.695304,0.708078,1 +-0.36945,1.16637,-0.408537,1.08698,1.17552,-0.466476,-0.503988,0.0135637,0.847912,-1.36145,-0.843357,0.196553,0.183392,0.130624,0.243033,-0.435355,-0.593274,-0.426466,-0.0798022,-1.07168,-0.919529,1.09785,0.320867,0.964002,1.05296,-0.323613,-0.335448,0.0185152,1.08946,-1.2853,-0.783023,-0.0244972,-0.578156,0 +-1.09487,0.688773,0.633738,0.600626,0.627459,0.0414126,-0.880559,0.131174,0.113777,-0.964178,-1.21493,-0.438378,0.209985,-0.610445,-0.29279,1.72753,-0.676168,0.398693,-0.0198487,-0.432737,-1.12491,0.0985581,0.136414,-0.0189593,0.0273741,0.403529,-1.10147,-0.224538,-0.712199,-1.25203,-1.4131,-0.437302,0.708078,1 +-0.427484,0.0593599,0.245211,0.193769,0.0297007,-0.78191,1.15741,0.812745,0.396273,-0.843902,1.51729,1.04979,0.380936,0.704429,0.722585,0.00139072,2.21716,1.20564,1.45537,-0.399328,3.77383,0.129197,-0.21089,0.112564,0.0546775,-1.0553,0.6916,0.459697,0.460873,-1.24139,1.49121,-0.953307,-0.578156,0 +-1.12389,-0.367629,-0.643514,-0.236472,-0.437999,-0.00650146,0.934959,0.954443,0.152447,0.814449,0.424682,-0.930781,-0.529473,-0.540258,-0.773385,0.818734,1.33429,1.91867,1.28096,0.749108,1.22203,-0.855956,-1.17802,-0.63158,-0.793947,-0.282711,0.494607,0.881296,-0.028276,0.111706,0.0251214,-0.953307,-0.578156,0 +-0.949785,0.64133,-0.804043,0.619332,0.559306,0.496596,0.0431328,0.982783,0.963035,-0.381021,-0.214863,-0.120751,0.272667,-0.284575,-0.0518679,-0.495538,-0.162908,0.0867424,-0.606666,-0.35339,-0.400395,0.692478,0.0416946,0.46906,0.571736,0.339904,0.0451205,0.903759,0.602527,0.0425216,-0.0348636,2.14273,1.07557,1 +-0.311417,-0.228462,-0.482985,-0.362738,-0.319299,-2.21294,-1.43349,-1.69688,-1.88052,-0.297193,-1.30609,-1.14812,-1.32307,-1.13047,-0.985338,-1.37676,-0.950398,-1.27079,-1.78085,-0.0986463,-1.18013,-0.434084,-0.594753,-0.451601,-0.547704,-1.95514,-0.445838,-1.08847,-2.02316,1.91983,-0.689503,-0.179299,-0.578156,0 +-1.00782,0.189038,-0.399231,0.16571,0.104953,-0.206143,-0.27552,-0.556065,-0.270263,0.686884,-0.267352,0.488383,0.0447322,0.500247,0.406635,0.415274,-0.238421,-0.161955,0.25085,0.878568,0.00469385,0.11977,-0.67784,0.105641,0.0359064,-0.591746,-0.8075,-1.04988,-0.661292,0.0225644,-0.688558,0.336707,-0.21066,1 +-0.253384,0.340856,-1.10649,0.301329,0.278175,-0.118301,-0.219405,-0.101212,0.1492,-0.348219,0.589057,0.609307,-0.416835,0.271455,0.532306,0.407541,0.05341,0.172517,0.114592,-0.457794,0.654385,0.407302,-1.20627,0.209475,0.332831,-0.123649,-0.342767,-0.480262,-0.27617,-0.963321,0.171069,0.0787039,-0.578156,0 +-1.03684,1.00506,-0.241028,1.07296,0.993781,0.464653,0.435937,0.886428,0.747548,-0.289903,-0.0670631,-0.0417477,-0.0920286,-0.0225119,0.101314,-0.032231,-0.186754,-0.00621974,-0.0561841,-0.97981,-0.13412,0.66891,0.103179,0.790946,0.605866,0.112673,-0.0329449,0.46776,0.719834,-1.00324,-0.0395868,1.36872,3.0968,1 +-0.36945,-1.13621,0.515086,-1.05346,-1.06245,1.07955,0.510089,-0.291089,-0.566337,1.2664,1.33496,-0.413549,0.500601,-0.584011,-0.649797,0.981127,0.417915,-0.287023,0.192714,0.395181,1.55229,-1.1812,0.465439,-1.18882,-1.05282,1.6124,0.192103,-0.567807,-0.590465,0.554756,1.29756,-0.953307,-0.578156,0 +-1.1529,2.15951,-0.822655,2.09244,2.7686,-1.06221,-0.582148,0.233197,0.599953,-1.2266,-1.51329,3.63305,-0.780581,3.32916,5.12213,-0.546307,-1.04521,-0.825149,-0.00349775,-0.459882,-0.895275,3.32505,-1.12651,3.17913,4.26282,-1.29616,-1.14599,-0.835051,0.0159908,-1.19482,-1.33375,0.0787039,0.156835,1 +-0.166333,-0.617496,0.389455,-0.517063,-0.677954,1.24725,0.888865,0.662544,-0.0465101,-0.439337,1.12224,-0.871447,1.32307,-0.600874,-0.785889,0.933384,1.03337,0.931548,0.964842,0.0516944,1.03883,-0.921947,1.02877,-0.78387,-0.845653,1.33063,0.802599,0.88936,0.830501,-0.29409,0.749664,-0.179299,-0.394408,0 +-0.253384,-0.747174,-0.74588,-0.822908,-0.761441,-0.841004,-1.13588,-1.15318,-1.28187,-1.33594,-0.491124,-0.700864,-0.126219,-0.740793,-0.661468,-0.608507,-0.845929,-0.530929,-1.03125,-0.943269,-1.17084,-0.811176,-0.345491,-0.918854,-0.747361,-0.878058,-0.945335,-0.864424,-1.47802,-1.26667,-1.00549,-0.179299,0.891826,0 +-0.19535,0.283924,-0.394578,0.277946,0.23274,0.328897,-0.357688,0.00931276,0.228311,-0.246166,-0.45521,-0.188469,-0.649519,-0.472805,-0.0597875,-0.196977,-0.705691,-0.556805,-0.842847,-0.518348,-0.651189,0.197545,-0.654576,0.0641079,0.15024,0.239922,-0.680034,-0.350096,-0.614812,-0.21293,-0.576145,-0.850106,-0.394408,0 +-0.166333,0.783659,-0.469026,0.731569,0.692772,0.0813409,-0.233434,-0.214571,0.222407,-0.457561,-0.114027,-0.30778,-0.742212,-0.274093,-0.21943,-0.562445,-0.463824,-0.490198,-0.603033,-1.04245,-0.307509,0.638271,-0.815765,0.697495,0.411329,-0.100925,-0.208592,-0.104739,-0.386838,-0.911432,0.0251214,2.65873,0.156835,0 +-0.224367,2.28286,-0.157274,2.36835,2.47327,0.0254412,1.36183,1.0593,1.78071,0.231293,0.647072,1.25165,-0.691496,1.27368,1.45202,-0.596067,0.0522745,-0.2415,0.158195,-0.184257,0.398946,2.09715,-0.533268,2.26193,2.11097,-0.441773,0.327498,0.167688,1.52106,-0.102501,0.277814,-0.953307,-0.394408,0 +-1.327,0.328205,2.12038,0.277946,0.2299,-0.30277,-0.638263,-0.407282,-0.349669,-0.26439,-0.935904,-0.743107,1.74474,-0.60771,-0.558097,-0.270609,-0.366736,-0.004303,-0.0198487,-0.368007,-0.27087,-0.155979,2.37977,-0.133177,-0.202999,-0.682639,-0.708089,-0.418059,-0.515212,-0.514949,-0.660691,-0.437302,-0.394408,0 +-0.485517,-0.693405,1.94123,-0.535769,-0.718846,0.169183,1.32376,1.39938,0.221816,0.730621,1.21755,-1.10652,-0.112923,-0.862937,-0.99159,-0.71845,0.978866,1.57366,0.178179,0.0851034,1.11211,-0.825317,2.10226,-0.403145,-0.836097,-0.100925,2.60176,4.22357,1.25768,1.13751,2.36501,-0.179299,-0.578156,0 +-0.862735,1.10944,0.654677,1.31613,1.07045,0.576452,1.62237,2.28358,1.78956,0.80716,0.840454,1.15717,-0.452925,2.05212,1.01228,-0.122001,0.67568,1.80654,2.02402,0.00158081,1.14875,0.770253,-0.121156,1.34127,0.706547,-0.146372,0.326278,1.28562,1.66936,-0.40585,0.373223,-0.695304,-0.578156,0 +-0.543551,1.31186,0.0265198,1.26937,1.44529,0.664295,-0.536053,1.24209,1.53865,-0.73456,-0.894465,1.8466,-0.0160504,1.55762,1.84383,1.18958,-0.129978,0.538136,1.71517,-0.982942,0.130091,1.04364,-0.621341,0.891318,1.06149,-0.132738,-0.938016,-0.149664,0.947808,-1.56204,-0.929443,-0.850106,-0.578156,0 +-0.775685,0.859569,1.38985,0.764305,0.826238,-0.389814,-0.786566,-0.173479,0.328675,-0.639797,-1.01878,0.522887,2.27659,0.431883,0.600457,-0.333818,-0.395692,-0.0598886,0.305354,-0.16442,-0.76833,0.628844,1.34782,0.507133,0.556378,-1.24163,-1.0545,-0.663416,-0.353638,-0.880831,-1.15521,-0.953307,-0.578156,0 +-0.891752,-0.256928,1.3503,-0.306619,-0.317879,-1.44791,-0.808612,-0.903085,-0.996427,-1.23024,-0.859932,-0.473849,-0.359852,-0.378462,-0.451807,-0.288765,0.346944,0.313877,0.0855241,-0.769959,-0.048974,-0.481221,0.661525,-0.472368,-0.479446,-1.36433,-0.339718,-0.555136,-0.81844,-1.35182,-0.596455,0.336707,-0.394408,0 +-0.601584,-1.12356,0.361537,-1.18113,-1.06273,0.320911,-1.1918,-1.12697,-0.900491,-1.80247,-1.08647,0.0349987,1.87201,0.0358257,-0.397829,2.50083,-0.724428,-0.393402,0.888537,0.692731,-1.06402,-1.29904,-0.0231133,-1.35496,-1.15077,0.126306,-1.44666,-1.54924,-1.4913,-1.40238,-1.42916,-0.695304,-0.394408,0 +-0.572568,0.220667,0.905939,0.179739,0.000451771,-0.320338,0.580233,0.870841,0.307126,0.493713,-0.10574,-0.0578709,0.230879,-0.0863186,-0.458477,0.349039,0.935716,2.91107,1.52441,0.734492,0.0666183,0.202258,0.874228,0.164481,-0.262725,0.112673,0.900181,2.53832,1.80437,0.940595,0.111084,-0.230899,-0.21066,0 +-0.514534,1.42889,1.94589,1.48917,1.46801,-1.26904,0.594261,0.695135,0.419888,-0.479429,-0.767385,0.905651,-0.213594,1.21443,0.949752,0.302305,1.58524,0.904234,1.86959,0.880656,0.334958,0.994151,0.653216,1.07822,0.9318,-1.23254,0.256751,0.073231,0.217405,-0.598769,-0.81703,0.336707,-0.578156,0 +-0.949785,0.0372197,0.69888,-0.0400575,-0.00977117,-0.790694,-1.02004,-0.648169,-0.571651,-1.83527,-0.977343,-0.466433,0.101716,-0.557577,-0.374279,-0.747028,-1.02648,-1.12847,-1.41713,-1.12462,-1.26992,0.17162,1.66189,0.0779524,0.133175,-0.691728,-0.719067,-0.929507,-0.920253,-1.10435,-0.910077,3.69074,1.07557,1 +-1.327,0.220667,2.02732,0.0441199,0.0407756,-1.31216,-1.00702,-1.33342,-0.909052,-1.18286,-1.10857,-0.579617,-0.168007,-0.941784,-0.713154,-0.682138,-0.851039,-0.973217,-0.668436,-0.672864,-0.974745,0.00664196,1.46082,-0.427373,-0.325864,-1.11438,-0.953263,-1.14146,-1.00657,-0.774393,-0.980926,-0.0760978,0.156835,1 +-0.659618,2.17533,0.74541,2.19532,2.11546,-0.714032,1.71856,1.61476,1.47962,1.38303,0.0517292,-0.172023,-1.06227,-0.183396,0.121946,-0.918499,-0.344593,0.250624,-0.592132,0.303306,-0.817353,1.53386,0.0500034,1.53855,1.37889,-0.873513,0.173197,1.00858,0.609167,0.996475,-0.521828,-0.850106,-0.578156,0 +-0.978802,-0.573216,1.05018,-0.701786,-0.596454,-1.9031,-1.80866,-1.6786,-1.71256,-1.26669,-1.2094,-0.884023,-0.64534,-0.913071,-0.768174,-0.757787,-1.35425,-1.42844,-1.3401,-0.399328,-1.38138,-0.67448,0.581761,-0.801175,-0.644973,-1.55521,-1.63237,-1.78768,-2.13715,-0.570829,-1.27754,-0.437302,-0.21066,0 +-0.978802,-0.516284,-1.2042,-0.591887,-0.570897,-0.479253,-1.0491,-1.18407,-1.24055,-0.136825,-0.801917,-1.28162,-1.25222,-1.41395,-1.04599,-0.676423,-0.904409,-1.04557,-1.23509,-0.603958,-1.01138,-0.860669,-1.2661,-0.991537,-0.825175,-0.241809,-0.616606,-0.844266,-1.22569,0.0358692,-0.628573,-1.05651,-0.578156,0 +-1.00782,0.590724,-0.324783,0.469684,0.445718,-0.986343,-0.459897,-1.30211,0.0568059,0.158398,-1.17901,2.39801,1.15781,2.22713,2.03557,-1.30212,-1.22713,-0.593702,3.9062,0.344024,-0.0675513,-0.233754,-1.28105,-0.35815,-0.325864,-2.32643,-1.45886,-2.04277,-1.48687,-1.44628,-1.62423,-0.179299,-0.578156,0 +-0.920768,-0.554239,0.519739,-0.60124,-0.564934,-1.10373,-1.10903,-0.870211,-1.29634,0.245872,-0.890321,-0.328096,1.06284,-0.110474,-0.367401,-0.537229,-0.459849,-0.0977443,-0.399554,-0.13832,-1.07847,-0.601419,0.822714,-0.565818,-0.578421,-1.16891,-0.710529,-0.494661,-1.13937,-0.359283,-1.17694,-0.437302,0.156835,0 +-1.03684,1.59019,1.19675,1.67155,1.51629,1.47085,1.31373,2.85746,2.87586,2.17393,-0.583671,1.54671,4.25202,1.32563,1.11856,0.675506,0.0687397,1.6187,1.56619,1.16568,-0.361176,0.699548,0.393984,0.721723,0.484707,-0.496309,-0.653199,0.215492,0.768528,-0.565507,-1.30588,-0.953307,-0.578156,0 +-0.862735,0.179549,0.391781,0.240534,0.0708765,1.03962,0.626327,0.554853,1.03683,0.194846,0.0489666,0.613821,2.52732,0.630595,0.413721,0.176224,0.0250218,-0.0344917,0.981193,0.577887,0.711665,-0.22904,0.347455,-0.178171,-0.307093,-0.450862,-0.637342,-0.715828,-0.0769696,-0.649328,-0.591732,-0.179299,-0.578156,0 +-0.862735,-1.1963,0.563943,-1.17879,-1.13827,0.225083,-0.229425,-0.568818,-0.671425,-0.497653,1.08771,-0.906273,-0.221191,-0.664681,-0.926149,0.165465,-0.0198316,-0.407299,0.136394,-0.284484,0.192015,-1.34146,0.302588,-1.12998,-1.18217,0.52169,-0.0829556,-0.551681,-0.218624,-0.658641,0.40723,-0.437302,-0.578156,0 +-1.09487,1.77048,2.69735,1.96149,2.08707,1.03962,1.04518,2.00726,1.93125,-0.468495,0.0959309,3.92004,2.74196,4.11307,3.82582,0.571279,0.157311,0.915734,1.31185,1.21057,-0.0458778,1.73655,1.91448,1.9885,1.83623,-0.0327558,-0.461085,0.328379,0.713194,-0.612074,-0.727761,0.594709,-0.578156,0 +-1.06585,1.58071,1.78536,1.43305,1.58444,0.736166,0.546163,2.14471,2.14379,0.624924,0.735475,2.77207,0.859598,2.59037,3.40691,-1.03752,0.60471,1.25212,0.47613,-0.540272,0.864928,1.94395,1.37275,1.87428,2.19288,-0.855335,0.110378,0.849619,1.40376,-0.671946,0.145564,-0.953307,-0.394408,0 +-0.920768,-1.54422,2.02499,-1.6109,-1.36062,-0.811457,-1.60204,-1.34235,-1.39906,0.238582,0.39153,-0.749878,0.390433,-0.779077,-0.82903,0.753508,-1.17012,-0.816044,-0.406821,-0.228106,-0.0665193,-1.43102,1.81311,-1.50898,-1.2122,0.548958,-1.39848,-1.11209,-1.17036,0.077114,0.152648,0.0787039,0.708078,0 +-1.18192,0.755193,-0.422496,0.717539,0.752406,-0.49203,-0.70039,0.0518224,0.0080998,-1.1209,-0.745284,0.703466,-0.00845257,0.993837,0.968509,0.863787,-0.166315,0.941131,1.30094,-0.341906,-0.60939,0.374307,-0.724369,0.510594,0.37208,-0.300889,-0.782495,-0.251032,0.115591,-1.13362,-1.06358,-0.385701,-0.21066,0 +-1.12389,0.8058,1.19443,0.745599,0.760925,-0.952803,-0.520021,-0.293923,-0.0828183,-1.1938,-1.11824,-0.236838,0.565183,-0.394414,-0.0854219,-0.345585,-0.585325,0.0977637,-0.214243,-1.04872,-0.148053,0.407302,1.12017,0.34446,0.337951,-0.66446,-0.694062,-0.15024,-0.331504,-1.3159,-0.586064,0.594709,-0.578156,0 +-1.26897,0.571746,1.14092,0.652068,0.465596,0.504581,0.702483,0.815579,0.732788,-0.0129038,0.163615,-0.342929,2.16262,0.108292,-0.188585,-0.211435,0.561559,0.882671,0.447062,0.129997,0.164149,0.364879,2.40303,0.714801,0.273105,0.280824,0.902011,1.425,0.688847,0.332566,0.326463,-1.05651,-0.394408,0 +-1.26897,-0.851549,0.694227,-0.728442,-0.887524,1.17538,1.37386,0.236031,0.232443,0.552029,1.69272,-0.847585,-0.202197,-0.94224,-0.919272,-0.606826,0.813647,0.522802,0.158195,0.504805,0.805583,-1.02565,0.30425,-0.994999,-1.00708,0.112673,1.03741,0.741915,0.412179,0.723727,1.05667,-0.592103,3.28055,0 +-1.06585,1.6155,-0.082826,1.49852,1.78038,-2.13708,-1.02265,-1.2416,-0.682051,-0.727271,-1.39312,2.48508,1.98977,2.58992,2.54618,-0.786702,-0.250344,-0.786814,0.955758,0.449471,-0.0334929,0.859812,-0.885558,0.752873,0.848183,-2.81816,-1.42227,-1.9069,-1.88129,-1.56071,-1.55621,1.62672,-0.21066,0 +-1.12389,-0.623822,2.07152,-0.648006,-0.652113,-0.694068,-0.730451,-0.265583,-0.642791,-0.701757,-0.228676,-0.902404,1.09133,-1.04114,-0.784014,-0.196305,-0.585893,-0.59466,-0.782893,0.0694429,-0.422585,-0.86774,1.88457,-0.960387,-0.812206,-0.759898,-0.786154,-0.801645,-1.1106,-0.425807,-0.500101,-0.695304,-0.578156,0 +-1.00782,-0.0766439,1.60854,-0.227118,-0.155448,-1.05103,-1.52508,-1.28114,-1.0655,-0.490363,-1.21355,0.0217777,0.304957,-0.195246,-0.150238,0.0430816,-0.887944,-0.440842,-0.978378,0.708391,-1.34681,-0.0617059,1.08361,-0.271622,-0.18764,-0.809889,-1.26796,-1.28199,-1.84986,0.170248,-1.4405,0.439908,-0.578156,0 +-1.26897,1.26758,0.131213,1.40967,1.33455,0.344868,1.02715,1.15849,1.32907,-0.158693,0.278263,1.55316,-0.793117,1.84702,1.50621,0.0232448,0.239069,0.418339,0.472497,-0.599782,-0.00407878,1.72477,-0.358785,2.0058,1.65534,0.26719,0.443986,0.601382,0.945595,-0.534906,-0.0480886,0.0787039,-0.578156,1 +-1.18192,-0.225299,1.36193,-0.213089,-0.240355,-1.09575,-0.592168,-0.779949,-1.08882,-0.136825,-0.325367,0.00597698,-0.0559389,-0.00564869,-0.131689,0.337944,-0.277597,-0.0565343,-0.179725,-0.102822,-0.196561,-0.302102,0.794464,-0.399684,-0.32757,-0.496309,-0.514145,-0.525187,-1.04199,-0.264819,-0.494434,0.336707,-0.578156,0 diff --git a/data/breast-cancer-wisc.arff b/data/breast-cancer-wisc.arff new file mode 100755 index 0000000..0862f87 --- /dev/null +++ b/data/breast-cancer-wisc.arff @@ -0,0 +1,711 @@ +@relation breast-cancer-wisc +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'clase' {0,1} +@data +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,0.283642,0.266684,0.768071,1.70888,1.79539,-0.179534,-0.283909,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.401988,-0.179534,-0.611387,-0.343666,0 +0.561934,1.59449,1.61262,-0.632794,-0.0975581,0.147356,-0.179534,1.35348,-0.343666,0 +-0.148359,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,2.24991,2.28559,1.81872,1.70888,1.79539,2.28113,1.35348,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,1.79539,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,1.98859,0 +-0.148359,-0.371782,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.04407,-0.0697999,0.0676383,-0.549168,-0.127316,0.230577,0.371049,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.127316,-0.179534,-0.611387,-0.343666,0 +1.27223,1.26678,0.603167,2.51915,1.70888,1.52072,0.640688,0.698527,1.40553,1 +0.91708,0.283642,0.939651,0.417854,1.25727,-0.676659,0.230577,0.0435701,-0.343666,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.98252,1.26678,1.27613,1.11829,0.354052,1.79539,0.230577,-0.611387,0.239398,1 +0.561934,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.91708,-0.04407,-0.406284,2.51915,0.805662,1.79539,0.640688,0.371049,1.40553,1 +1.98252,0.611354,0.603167,0.0676383,1.25727,0.971372,1.46091,2.33592,-0.343666,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.27223,0.283642,0.603167,-0.632794,-0.549168,-0.951331,1.46091,0.0435701,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.371782,-0.0697999,0.417854,-0.549168,0.971372,-0.179534,1.02601,-0.343666,1 +-0.503505,-0.371782,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.98252,1.26678,1.27613,0.0676383,2.16049,0.422028,1.46091,0.371049,0.822462,1 +-0.858651,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,1.81872,1.25727,-0.676659,1.87102,2.00844,-0.343666,1 +0.561934,-0.371782,-0.742767,-0.632794,-1.00078,-0.676659,1.46091,-0.611387,-0.343666,0 +0.206788,0.283642,0.266684,2.16894,-0.549168,1.79539,0.640688,1.02601,-0.343666,1 +-0.858651,0.611354,-0.0697999,0.0676383,1.25727,0.971372,1.46091,0.698527,-0.343666,1 +0.561934,0.939066,0.939651,2.16894,1.25727,-0.951331,1.46091,1.68096,-0.343666,0 +1.98252,0.283642,-0.0697999,-0.632794,-0.0975581,-0.127316,1.0508,0.698527,0.239398,1 +0.561934,2.24991,2.28559,-0.282578,2.16049,1.79539,1.46091,0.0435701,0.822462,1 +0.206788,0.939066,0.603167,1.11829,3.06371,-0.676659,-0.179534,-0.611387,-0.343666,1 +1.98252,2.24991,2.28559,0.417854,2.16049,-0.676659,1.87102,2.33592,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,0.239398,0 +-0.503505,1.26678,1.27613,0.417854,0.354052,1.52072,0.230577,1.68096,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.91708,1.59449,1.27613,-0.282578,0.354052,1.24604,-0.179534,1.68096,0.239398,1 +1.62737,0.611354,1.61262,-0.632794,-0.549168,-0.127316,-0.589645,-0.611387,1.98859,1 +0.206788,-0.04407,-0.0697999,0.417854,-0.549168,0.147356,-0.179534,0.371049,-0.343666,1 +1.98252,-0.04407,0.939651,-0.282578,-0.0975581,0.422028,0.230577,2.33592,0.239398,1 +0.206788,0.611354,0.603167,1.81872,3.06371,1.24604,1.46091,0.0435701,3.15472,1 +1.98252,0.611354,0.603167,1.11829,2.16049,1.24604,1.46091,-0.611387,-0.343666,1 +1.98252,0.939066,0.939651,0.0676383,0.354052,0.422028,-0.179534,1.02601,-0.343666,1 +1.27223,2.24991,2.28559,-0.632794,-0.0975581,0.6967,-0.179534,2.00844,-0.343666,1 +1.27223,-0.371782,0.266684,-0.632794,0.805662,-0.676659,0.640688,0.371049,1.40553,1 +0.206788,-0.371782,-0.0697999,-0.632794,1.25727,1.79539,0.640688,-0.611387,-0.343666,1 +1.62737,0.611354,0.603167,-0.282578,-0.549168,-0.401988,0.640688,-0.611387,-0.343666,1 +0.206788,-0.04407,0.603167,0.768071,-0.0975581,-0.127316,0.230577,2.33592,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.401988,-0.589645,-0.611387,-0.343666,0 +1.62737,2.24991,2.28559,-0.632794,3.06371,1.24604,-0.179534,0.0435701,-0.343666,1 +0.561934,-0.04407,0.266684,-0.632794,0.805662,-0.401988,-0.179534,2.00844,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.98252,0.283642,-0.406284,-0.632794,-0.0975581,-0.401988,0.230577,0.0435701,4.90391,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.04407,0.266684,-0.632794,2.16049,1.79539,0.230577,2.00844,-0.343666,1 +1.27223,-0.04407,1.61262,0.0676383,0.354052,1.52072,1.87102,2.00844,3.73778,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.283909,-0.343666,0 +0.206788,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,2.24991,-0.406284,1.81872,3.06371,-0.401988,1.46091,1.68096,4.90391,1 +-1.2138,-0.04407,-0.0697999,-0.282578,-0.549168,-0.676659,1.46091,-0.283909,-0.343666,0 +1.62737,0.283642,0.603167,2.51915,1.25727,1.79539,0.230577,1.68096,-0.343666,1 +1.98252,0.939066,0.266684,-0.632794,-0.0975581,0.147356,-0.179534,-0.283909,0.822462,1 +-1.2138,-0.699494,-0.406284,-0.632794,-0.549168,-0.401988,0.230577,-0.283909,-0.343666,0 +-1.2138,-0.699494,0.266684,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.04407,-0.742767,-0.282578,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.127316,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.0975581,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.371782,-0.406284,-0.632794,-1.00078,-0.676659,1.46091,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.371782,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.401988,1.46091,-0.611387,-0.343666,0 +-0.503505,0.611354,1.27613,1.81872,2.16049,1.52072,1.46091,2.33592,3.15472,1 +0.206788,2.24991,0.939651,-0.632794,3.06371,0.147356,0.230577,2.33592,4.90391,1 +-0.503505,-0.04407,0.939651,0.417854,0.805662,1.24604,0.230577,0.371049,-0.343666,1 +-0.503505,0.939066,0.939651,1.11829,0.805662,1.79539,1.0508,1.68096,0.822462,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.282578,-0.0975581,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.62737,0.939066,1.9491,-0.282578,3.06371,0.6967,-0.589645,2.00844,4.90391,1 +0.91708,0.611354,0.939651,2.51915,0.805662,1.79539,1.46091,2.00844,1.40553,1 +1.98252,-0.04407,0.603167,-0.632794,3.06371,0.422028,-0.179534,2.33592,0.239398,1 +-0.858651,-0.04407,0.266684,0.417854,-0.549168,0.422028,-0.589645,0.698527,-0.343666,1 +-0.148359,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,-0.371782,-0.0697999,-0.632794,1.25727,-0.127316,1.46091,-0.611387,-0.343666,1 +1.98252,2.24991,2.28559,2.51915,3.06371,-0.676659,1.87102,1.68096,3.73778,1 +0.91708,-0.04407,0.266684,0.417854,-0.0975581,-0.127316,-0.179534,-0.283909,3.15472,1 +1.98252,2.24991,2.28559,1.81872,-0.549168,1.79539,0.230577,-0.611387,-0.343666,1 +-1.2138,0.939066,1.61262,2.51915,2.16049,1.79539,0.640688,1.35348,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,0.0435701,-0.343666,0 +0.561934,0.611354,0.266684,0.417854,-0.0975581,1.52072,1.46091,1.68096,0.822462,1 +-1.2138,-0.04407,-0.742767,-0.282578,-0.549168,-0.401988,0.640688,0.0435701,0.239398,0 +1.27223,0.939066,0.266684,0.0676383,0.805662,1.52072,-0.179534,-0.611387,-0.343666,1 +1.98252,-0.04407,-0.0697999,2.51915,-0.549168,1.79539,1.46091,0.0435701,0.822462,1 +1.98252,2.24991,2.28559,0.0676383,3.06371,1.24604,1.87102,-0.611387,-0.343666,1 +-0.503505,-0.04407,-0.406284,-0.632794,-0.549168,-0.127316,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,0.422028,-0.999756,-0.611387,-0.343666,0 +1.27223,-0.04407,-0.0697999,-0.632794,-0.549168,-0.401988,-0.179534,-0.283909,-0.343666,0 +-0.148359,0.611354,0.603167,2.51915,0.354052,1.79539,1.46091,0.698527,3.73778,1 +-1.2138,-0.699494,-0.742767,-0.632794,0.354052,-0.127316,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.371782,-0.742767,-0.632794,-0.549168,-0.401988,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.406284,-0.282578,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.148359,-0.371782,-0.742767,-0.632794,-0.549168,-0.401988,-0.179534,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,-0.282578,3.06371,1.79539,0.640688,0.0435701,0.822462,1 +0.206788,-0.04407,0.603167,-0.632794,2.16049,1.79539,0.640688,0.0435701,-0.343666,1 +0.206788,0.283642,0.939651,1.4685,2.6121,0.971372,1.87102,2.33592,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.91708,0.611354,-0.0697999,1.4685,0.354052,1.79539,1.46091,0.698527,1.98859,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,-0.04407,0.603167,0.417854,0.805662,1.79539,-0.999756,1.02601,0.239398,1 +-1.2138,-0.699494,-0.742767,-0.632794,3.06371,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,2.24991,1.61262,2.51915,2.16049,1.79539,-0.179534,1.02601,0.822462,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.283909,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.0975581,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.401988,-0.179534,0.0435701,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.951331,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.62737,0.611354,0.603167,0.417854,0.354052,0.422028,0.230577,0.0435701,0.822462,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,0.422028,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.0697999,-0.632794,-0.549168,-0.951331,-0.589645,-0.611387,-0.343666,0 +-0.503505,0.283642,0.603167,-0.282578,1.25727,1.24604,0.230577,-0.611387,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.0975581,-0.401988,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,0.0676383,2.16049,-0.676659,0.640688,1.68096,-0.343666,0 +1.27223,1.59449,1.27613,0.417854,3.06371,1.79539,1.46091,1.68096,3.15472,1 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.91708,-0.371782,0.266684,-0.632794,1.25727,1.79539,0.640688,0.371049,0.822462,1 +1.98252,2.24991,1.61262,1.11829,0.354052,0.422028,1.87102,2.33592,-0.343666,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.127316,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,0.611354,0.603167,1.11829,-0.0975581,1.79539,-0.179534,-0.611387,-0.343666,1 +-1.2138,-0.371782,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.406284,-0.632794,-0.0975581,-0.951331,-0.999756,-0.611387,-0.343666,0 +1.62737,1.9222,2.28559,0.0676383,1.25727,1.79539,1.46091,2.33592,2.57165,1 +1.98252,1.26678,1.27613,0.417854,0.805662,1.79539,0.640688,1.35348,0.239398,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.283909,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.282578,-1.00078,-0.127316,-0.999756,-0.611387,3.15472,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.951331,-0.179534,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.401988,-0.179534,-0.283909,-0.343666,0 +0.206788,0.939066,1.27613,1.81872,2.16049,1.79539,-0.179534,2.33592,0.822462,1 +1.98252,1.59449,2.28559,2.51915,1.25727,-0.676659,-0.179534,-0.611387,4.90391,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.282578,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,2.24991,2.28559,2.51915,2.16049,1.79539,2.69124,2.33592,3.15472,1 +1.27223,0.939066,0.603167,0.417854,-0.0975581,1.79539,1.0508,-0.611387,-0.343666,1 +0.206788,1.59449,1.27613,1.4685,3.06371,1.79539,0.640688,1.35348,-0.343666,1 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,2.24991,2.28559,0.0676383,2.16049,-0.676659,0.640688,2.33592,0.822462,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.04407,-0.0697999,0.0676383,1.25727,1.79539,-0.179534,-0.611387,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.561934,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,1.59449,1.61262,1.81872,0.805662,1.79539,1.46091,1.68096,-0.343666,1 +1.27223,1.26678,0.939651,0.417854,0.354052,1.79539,0.640688,-0.611387,-0.343666,1 +-0.858651,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,0.611354,1.61262,1.11829,0.805662,1.24604,1.46091,2.33592,-0.343666,1 +1.98252,0.611354,0.939651,2.51915,1.25727,1.79539,1.46091,1.35348,4.90391,1 +0.206788,1.59449,0.266684,2.51915,0.805662,1.24604,2.28113,2.33592,-0.343666,1 +-1.2138,-0.371782,-0.0697999,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,1.81872,1.25727,1.24604,1.46091,2.33592,-0.343666,1 +0.91708,0.611354,2.28559,2.51915,3.06371,1.79539,0.230577,2.33592,0.822462,1 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,0.283642,0.266684,0.768071,0.354052,0.971372,1.46091,1.68096,0.239398,0 +0.206788,-0.699494,-0.742767,0.417854,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.62737,1.26678,1.27613,0.768071,0.805662,1.79539,1.46091,1.68096,0.822462,1 +1.98252,1.59449,1.61262,0.417854,3.06371,1.79539,1.87102,-0.611387,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,2.24991,2.28559,2.16894,1.25727,1.79539,1.46091,2.33592,1.98859,1 +1.98252,2.24991,1.9491,0.0676383,1.70888,0.422028,-0.179534,0.698527,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,2.24991,2.28559,2.51915,0.805662,1.79539,1.87102,2.33592,2.57165,1 +1.27223,2.24991,1.61262,1.81872,0.354052,1.24604,1.46091,1.35348,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,2.51915,1.70888,1.79539,1.46091,2.33592,1.40553,1 +1.98252,2.24991,2.28559,2.51915,-0.0975581,1.79539,2.69124,1.02601,-0.343666,1 +1.27223,1.26678,1.61262,1.4685,0.805662,0.422028,0.640688,2.33592,0.239398,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.561934,2.24991,1.27613,1.4685,1.25727,0.147356,1.87102,2.33592,0.239398,1 +0.561934,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.98252,0.939066,0.266684,0.0676383,3.06371,1.79539,2.28113,2.33592,-0.343666,1 +-0.148359,-0.699494,-0.742767,0.0676383,-1.00078,0.422028,-0.589645,-0.611387,-0.343666,1 +0.91708,0.611354,0.939651,0.0676383,-0.0975581,1.24604,1.46091,0.371049,-0.343666,1 +1.98252,0.611354,0.603167,1.11829,-0.0975581,1.79539,1.46091,2.00844,0.239398,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.98252,0.611354,1.27613,0.417854,0.354052,1.79539,1.87102,2.00844,-0.343666,1 +1.27223,1.9222,1.9491,0.768071,-0.0975581,0.422028,1.46091,1.35348,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,0.0676383,3.06371,1.79539,2.28113,2.33592,-0.343666,1 +0.91708,0.283642,1.27613,0.417854,-0.0975581,0.971372,1.46091,1.02601,-0.343666,1 +0.561934,1.59449,1.27613,0.768071,1.25727,1.24604,1.87102,2.00844,0.239398,1 +1.27223,0.283642,0.939651,0.0676383,-0.0975581,-0.676659,0.230577,0.0435701,-0.343666,0 +1.98252,0.283642,0.603167,0.768071,0.805662,1.79539,0.230577,-0.611387,-0.343666,1 +-0.503505,-0.04407,-0.406284,-0.632794,-0.0975581,-0.676659,-0.179534,1.02601,-0.343666,0 +-0.503505,-0.699494,0.266684,-0.632794,-0.549168,-0.951331,-0.179534,-0.611387,-0.343666,0 +1.98252,1.59449,1.61262,-0.282578,2.16049,1.79539,0.230577,1.68096,4.90391,1 +1.62737,1.59449,1.61262,0.768071,1.25727,-0.401988,0.230577,2.33592,1.40553,1 +1.27223,2.24991,2.28559,1.81872,1.25727,1.52072,-0.179534,2.33592,4.90391,1 +1.98252,0.283642,-0.0697999,-0.282578,-0.0975581,1.79539,0.640688,0.0435701,0.239398,1 +0.206788,-0.699494,-0.0697999,0.0676383,-0.549168,-0.401988,-0.589645,0.0435701,-0.343666,0 +-0.503505,-0.699494,-0.742767,0.0676383,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,0.422028,0.640688,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.282578,-0.549168,-0.401988,-0.179534,-0.611387,-0.343666,0 +1.27223,2.24991,2.28559,1.81872,0.805662,1.79539,1.46091,1.68096,-0.343666,1 +1.27223,0.283642,0.266684,-0.632794,-0.549168,1.52072,-0.179534,0.0435701,-0.343666,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,1.02601,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.951331,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.371782,-0.406284,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,0.283642,0.266684,2.51915,-0.549168,1.79539,0.640688,0.0435701,0.822462,1 +0.561934,-0.04407,-0.0697999,0.768071,-0.0975581,1.79539,-0.179534,0.698527,0.822462,0 +0.561934,2.24991,2.28559,-0.282578,2.16049,1.79539,1.46091,0.0435701,0.822462,1 +1.62737,2.24991,2.28559,-0.632794,3.06371,1.24604,-0.179534,0.0435701,-0.343666,1 +0.206788,0.939066,0.939651,-0.282578,0.354052,1.79539,-0.179534,1.02601,-0.343666,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,1.26678,1.27613,-0.632794,0.805662,1.24604,-0.179534,0.371049,-0.343666,0 +1.98252,0.611354,1.61262,2.51915,-0.0975581,1.79539,0.640688,-0.611387,0.822462,1 +0.206788,2.24991,2.28559,1.11829,3.06371,1.79539,2.69124,1.02601,1.98859,1 +1.27223,1.59449,1.9491,0.417854,0.805662,1.79539,1.46091,1.68096,-0.343666,1 +1.98252,0.283642,0.266684,2.51915,1.25727,1.79539,0.640688,0.698527,-0.343666,1 +0.91708,1.9222,0.266684,2.51915,3.06371,-0.127316,0.640688,0.0435701,0.822462,1 +0.206788,-0.699494,0.266684,-0.632794,-0.549168,-0.676659,-0.179534,-0.283909,-0.343666,0 +1.98252,2.24991,0.939651,0.0676383,-0.0975581,1.79539,0.230577,0.0435701,0.239398,1 +-0.503505,-0.04407,0.603167,-0.282578,-0.0975581,1.79539,1.46091,-0.611387,-0.343666,1 +1.98252,1.59449,1.61262,-0.282578,-0.0975581,0.147356,1.87102,1.35348,3.73778,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,0.283642,1.27613,-0.632794,-0.0975581,1.79539,-0.179534,2.00844,0.239398,1 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.04407,0.603167,-0.282578,-0.0975581,1.79539,1.46091,-0.611387,-0.343666,1 +0.91708,-0.371782,0.266684,-0.632794,-0.0975581,0.147356,-0.179534,0.0435701,-0.343666,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.283909,-0.343666,0 +-0.503505,-0.699494,-0.0697999,-0.632794,-0.549168,-0.951331,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.98252,0.611354,1.27613,0.0676383,-0.0975581,0.971372,-0.179534,0.0435701,3.73778,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,0.283642,-0.0697999,2.51915,0.354052,1.79539,0.640688,1.02601,-0.343666,1 +1.98252,0.283642,0.939651,-0.632794,-0.549168,1.79539,0.640688,0.0435701,-0.343666,1 +0.91708,0.283642,0.603167,2.51915,-0.549168,1.79539,-0.179534,1.68096,0.239398,1 +1.27223,2.24991,2.28559,2.51915,2.16049,1.79539,2.69124,1.35348,0.822462,1 +1.98252,2.24991,2.28559,2.51915,3.06371,1.79539,0.230577,2.33592,4.90391,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.0975581,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,-0.699494,-0.0697999,-0.632794,0.354052,0.422028,0.640688,2.33592,-0.343666,1 +0.206788,0.939066,0.939651,1.81872,1.25727,1.79539,0.230577,2.33592,1.40553,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,1.59449,1.61262,-0.632794,-0.549168,-0.951331,1.0508,2.33592,-0.343666,1 +1.98252,0.283642,0.266684,1.11829,-0.549168,1.79539,-0.589645,0.0435701,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.951331,-0.589645,-0.611387,-0.343666,0 +0.206788,0.611354,1.27613,1.81872,1.25727,1.79539,1.46091,0.371049,-0.343666,1 +0.206788,-0.04407,0.266684,0.0676383,0.354052,0.422028,0.230577,1.35348,-0.343666,0 +0.206788,0.283642,-0.0697999,-0.632794,-0.549168,-0.951331,-0.589645,0.0435701,-0.343666,0 +1.27223,-0.371782,-0.742767,-0.632794,0.805662,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.62737,-0.699494,-0.406284,1.11829,0.354052,1.79539,1.46091,1.35348,0.239398,1 +1.27223,0.283642,2.28559,0.768071,0.354052,0.147356,1.46091,2.33592,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,1.4685,2.6121,1.79539,1.46091,2.33592,4.90391,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,-0.04407,0.266684,2.16894,-0.0975581,1.79539,-0.179534,0.0435701,-0.343666,1 +1.98252,1.59449,0.266684,0.417854,0.354052,1.79539,-0.179534,2.33592,1.40553,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.91708,1.59449,1.27613,1.11829,0.354052,-0.127316,1.87102,1.68096,1.40553,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,0.422028,0.640688,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.0975581,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.27223,0.939066,0.266684,2.51915,3.06371,-0.676659,-0.179534,0.698527,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,0.939066,0.603167,1.11829,1.70888,-0.951331,0.230577,2.00844,-0.343666,0 +0.206788,0.611354,0.603167,-0.282578,0.805662,1.79539,0.230577,0.0435701,-0.343666,1 +0.561934,1.59449,1.27613,1.81872,1.25727,1.24604,1.87102,2.00844,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,0.805662,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.148359,0.283642,0.266684,0.417854,1.25727,0.422028,1.46091,0.0435701,-0.343666,0 +0.91708,0.939066,-0.0697999,-0.282578,0.805662,1.79539,1.46091,0.371049,2.57165,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.951331,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,0.283642,0.939651,2.51915,-0.549168,1.79539,0.230577,-0.611387,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.371782,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,0.0435701,-0.343666,0 +1.98252,-0.699494,-0.742767,-0.632794,-0.549168,1.79539,0.640688,0.371049,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.27223,2.24991,-0.0697999,-0.282578,1.25727,0.147356,-0.179534,2.33592,-0.343666,1 +1.98252,0.283642,0.939651,0.417854,0.805662,1.79539,1.46091,-0.611387,-0.343666,1 +1.98252,0.283642,1.27613,-0.282578,-0.549168,1.24604,1.0508,-0.611387,-0.343666,1 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,0.239398,0 +0.206788,-0.371782,-0.406284,-0.282578,-0.549168,-0.676659,-0.589645,-0.283909,-0.343666,0 +0.206788,0.283642,0.939651,1.11829,0.354052,1.79539,0.230577,0.0435701,-0.343666,1 +1.27223,0.939066,1.27613,0.0676383,-0.0975581,1.79539,-0.179534,0.371049,0.239398,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.561934,0.611354,0.603167,1.81872,0.354052,1.79539,-0.179534,0.371049,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.27223,0.611354,0.603167,0.768071,-0.549168,1.79539,0.230577,0.0435701,-0.343666,1 +1.98252,-0.04407,-0.0697999,-0.632794,-0.549168,1.79539,1.46091,1.02601,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.91708,0.939066,0.266684,1.81872,3.06371,1.79539,2.28113,0.698527,0.822462,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.371782,-0.406284,-0.282578,-0.0975581,-0.676659,-0.999756,0.0435701,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,0.0435701,-0.343666,0 +-0.503505,0.283642,0.266684,2.51915,0.805662,-0.676659,-0.179534,0.0435701,-0.343666,1 +-0.148359,-0.371782,-0.0697999,0.768071,-0.0975581,1.24604,1.46091,1.02601,-0.343666,1 +0.206788,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,0.283642,0.603167,0.0676383,1.70888,-0.127316,0.230577,1.02601,-0.343666,0 +-0.858651,1.26678,2.28559,2.51915,1.70888,1.79539,0.230577,2.00844,1.40553,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.0975581,-0.676659,-0.589645,-0.283909,-0.343666,0 +0.206788,-0.04407,-0.0697999,-0.632794,-0.0975581,-0.127316,-0.179534,0.0435701,0.822462,1 +1.27223,2.24991,2.28559,1.4685,3.06371,1.79539,1.46091,0.0435701,3.73778,1 +1.27223,2.24991,0.603167,0.0676383,2.16049,0.147356,0.230577,2.33592,0.822462,1 +1.98252,-0.04407,0.603167,0.417854,-0.0975581,0.971372,-0.179534,0.698527,0.822462,1 +0.561934,2.24991,2.28559,2.51915,3.06371,1.79539,1.87102,2.33592,4.90391,1 +-0.503505,2.24991,-0.0697999,2.51915,1.25727,1.79539,0.640688,-0.611387,1.40553,1 +-0.503505,-0.371782,-0.406284,-0.632794,0.354052,-0.127316,-0.589645,-0.611387,-0.343666,0 +-0.148359,0.283642,0.266684,-0.282578,-0.549168,-0.127316,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,2.24991,2.28559,2.51915,2.16049,1.79539,1.46091,2.33592,3.15472,1 +0.206788,1.59449,1.61262,2.51915,0.805662,1.79539,1.87102,2.33592,0.822462,1 +-1.2138,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.0697999,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.04407,-0.406284,-0.632794,-0.0975581,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,0.417854,-0.0975581,-0.676659,-0.589645,-0.283909,-0.343666,0 +0.206788,-0.04407,0.266684,-0.632794,0.354052,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,0.939066,-0.0697999,1.11829,0.354052,1.79539,1.46091,1.68096,1.40553,1 +-0.503505,-0.371782,-0.406284,-0.282578,-0.549168,-0.676659,-0.179534,-0.283909,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.04407,-0.406284,-0.282578,-0.0975581,-0.676659,-0.999756,-0.283909,0.822462,0 +0.91708,0.939066,0.939651,0.0676383,-0.549168,1.79539,1.46091,-0.611387,-0.343666,1 +0.206788,-0.04407,-0.0697999,-0.282578,-0.0975581,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.283909,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.0975581,-0.401988,-0.589645,-0.283909,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.98252,1.59449,1.27613,0.417854,-0.0975581,1.79539,1.46091,2.00844,-0.343666,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.371782,-0.0697999,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.371782,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.283909,-0.343666,0 +-1.2138,-0.371782,-0.0697999,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,2.24991,1.61262,1.4685,1.25727,1.52072,2.28113,0.0435701,3.73778,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.04407,-0.0697999,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,0.147356,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.371782,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.283909,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.371782,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.04407,-0.406284,-0.282578,-0.549168,-0.401988,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.951331,-0.589645,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,1.11829,2.16049,0.147356,1.87102,0.698527,-0.343666,1 +0.206788,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +1.27223,0.611354,0.939651,-0.282578,-0.0975581,1.79539,1.0508,1.02601,-0.343666,1 +-0.503505,-0.04407,-0.406284,1.11829,-0.0975581,-0.127316,-0.179534,0.698527,-0.343666,0 +1.27223,1.26678,1.61262,0.768071,3.06371,1.79539,1.46091,-0.283909,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.371782,-0.406284,-0.282578,-0.549168,-0.401988,-0.179534,-0.283909,0.239398,0 +-0.858651,-0.04407,-0.742767,-0.632794,0.805662,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.371782,-0.406284,0.0676383,-0.549168,-0.127316,-0.179534,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,1.4685,3.06371,1.79539,1.87102,-0.283909,-0.343666,1 +-0.148359,-0.04407,-0.0697999,-0.632794,-0.549168,-0.676659,-0.179534,0.0435701,-0.343666,0 +0.206788,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.62737,2.24991,2.28559,2.51915,3.06371,1.79539,2.69124,2.33592,-0.343666,1 +0.206788,-0.04407,0.939651,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.27223,1.26678,1.61262,-0.282578,0.354052,-0.401988,0.640688,2.33592,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.04407,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.283909,-0.343666,0 +0.206788,-0.699494,-0.742767,0.0676383,0.354052,-0.676659,-0.179534,-0.283909,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.283909,-0.343666,0 +-0.503505,-0.371782,-0.406284,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.561934,1.9222,1.27613,0.768071,0.805662,1.24604,0.230577,-0.283909,-0.343666,0 +1.98252,1.59449,2.28559,-0.632794,-0.0975581,1.79539,0.640688,-0.611387,-0.343666,1 +1.98252,2.24991,2.28559,-0.632794,1.25727,-0.676659,-0.589645,1.68096,-0.343666,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.0697999,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,0.283642,-0.0697999,2.51915,0.354052,1.79539,2.69124,-0.611387,-0.343666,1 +0.206788,-0.371782,-0.406284,0.417854,-0.549168,0.147356,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,0.0676383,-0.549168,-0.127316,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.401988,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,1.11829,-0.0975581,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,1.26678,1.9491,1.81872,1.25727,1.79539,1.87102,2.33592,-0.343666,1 +-0.148359,-0.699494,-0.742767,0.0676383,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,0.611354,0.603167,1.81872,1.25727,1.79539,2.69124,1.35348,-0.343666,1 +-0.858651,-0.04407,-0.742767,-0.632794,-0.0975581,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,-0.371782,-0.406284,-0.632794,-0.549168,0.6967,-0.999756,-0.611387,0.239398,1 +1.98252,0.939066,0.603167,1.81872,0.805662,1.79539,1.87102,1.02601,-0.343666,1 +1.27223,1.59449,1.9491,1.11829,1.25727,-0.127316,2.69124,2.33592,-0.343666,1 +0.206788,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,0.422028,-0.999756,-0.611387,-0.343666,0 +0.561934,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.283909,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,1.9222,1.61262,1.4685,1.25727,0.147356,1.46091,2.33592,0.822462,1 +1.98252,0.939066,0.939651,-0.282578,0.354052,1.79539,2.28113,1.35348,-0.343666,1 +0.561934,0.939066,0.939651,0.768071,0.354052,1.79539,1.46091,1.02601,0.239398,1 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.561934,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.371782,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,1.59449,1.27613,2.51915,0.354052,1.79539,1.46091,0.698527,-0.343666,1 +0.206788,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.04407,-0.406284,0.417854,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.62737,2.24991,2.28559,2.51915,3.06371,0.422028,2.69124,2.33592,4.90391,1 +1.27223,1.26678,1.61262,0.768071,0.805662,1.79539,2.28113,2.33592,-0.343666,1 +0.206788,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,0.0676383,-1.00078,-0.127316,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,2.51915,1.25727,1.79539,1.87102,-0.611387,1.98859,1 +-0.503505,0.939066,0.266684,2.51915,-0.0975581,-0.127316,-0.179534,0.371049,-0.343666,1 +0.561934,-0.04407,-0.406284,-0.632794,-0.0975581,0.147356,0.230577,-0.611387,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,1.59449,1.9491,0.417854,-0.0975581,1.79539,1.46091,-0.611387,-0.343666,1 +-0.148359,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,2.24991,2.28559,2.51915,1.25727,1.79539,1.0508,0.698527,0.239398,1 +0.206788,-0.699494,-0.406284,2.51915,0.354052,0.422028,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.371782,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.04407,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.27223,2.24991,2.28559,2.51915,1.70888,0.422028,0.230577,1.68096,3.15472,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,0.147356,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,0.939066,1.27613,2.51915,-0.0975581,1.79539,1.87102,2.33592,0.239398,1 +-0.148359,2.24991,0.266684,1.4685,-0.0975581,1.79539,2.28113,2.33592,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.406284,-0.282578,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,1.26678,1.61262,0.0676383,0.354052,1.79539,2.28113,-0.611387,-0.343666,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.0975581,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.0975581,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,0.283642,0.603167,0.417854,-0.0975581,0.422028,1.46091,0.0435701,-0.343666,1 +0.91708,0.611354,0.939651,2.51915,0.354052,1.79539,0.640688,0.0435701,-0.343666,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.561934,-0.699494,-0.0697999,-0.282578,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.91708,0.283642,0.266684,0.0676383,0.354052,1.79539,1.0508,2.00844,-0.343666,1 +-0.148359,-0.371782,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.0697999,-0.282578,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.401988,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.04407,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.0697999,-0.282578,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,2.24991,2.28559,2.51915,0.354052,1.79539,1.46091,2.33592,-0.343666,1 +-0.858651,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.91708,1.59449,-0.0697999,1.4685,0.354052,0.422028,1.46091,1.68096,0.239398,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.371782,-0.406284,-0.282578,-0.549168,-0.676659,0.230577,-0.283909,-0.343666,0 +-0.148359,0.283642,-0.406284,-0.632794,-0.549168,0.422028,-0.589645,-0.611387,0.239398,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.04407,-0.742767,-0.632794,-0.549168,-0.676659,0.230577,1.68096,-0.343666,0 +0.206788,-0.371782,-0.406284,-0.282578,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.283909,-0.343666,0 +0.206788,1.26678,2.28559,2.51915,0.805662,1.79539,2.69124,2.33592,-0.343666,1 +-0.503505,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.127316,-0.589645,-0.611387,-0.343666,0 +1.27223,0.283642,0.266684,-0.632794,1.25727,1.79539,-0.589645,0.698527,0.239398,1 +1.98252,2.24991,1.61262,2.51915,1.25727,0.422028,2.69124,0.0435701,-0.343666,1 +1.27223,2.24991,0.266684,0.417854,2.16049,1.79539,1.87102,-0.283909,-0.343666,1 +0.91708,0.939066,2.28559,0.768071,-0.0975581,1.79539,2.28113,2.33592,0.239398,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +1.98252,1.9222,1.27613,0.0676383,0.354052,-0.401988,1.46091,1.35348,-0.343666,1 +0.206788,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,1.26678,2.28559,1.11829,0.805662,1.79539,1.46091,0.698527,-0.343666,1 +0.561934,2.24991,0.603167,0.768071,0.354052,1.79539,1.0508,2.33592,-0.343666,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,1.11829,-0.0975581,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.27223,2.24991,2.28559,2.51915,1.25727,1.79539,2.69124,2.33592,-0.343666,1 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.283909,-0.343666,0 +1.62737,1.59449,1.61262,2.16894,1.25727,-0.127316,0.230577,-0.611387,-0.343666,1 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,2.24991,1.61262,0.768071,0.354052,-0.676659,2.69124,-0.611387,-0.343666,1 +-0.858651,0.611354,1.27613,1.11829,0.354052,1.79539,1.46091,1.02601,-0.343666,1 +1.98252,-0.04407,0.266684,0.768071,-0.0975581,1.79539,0.230577,-0.611387,-0.343666,1 +0.206788,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,1.59449,0.939651,0.0676383,0.354052,1.79539,1.46091,-0.611387,-0.343666,1 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.371782,0.266684,-0.632794,-1.00078,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,0.283642,0.939651,1.81872,0.354052,-0.676659,1.87102,2.33592,-0.343666,1 +0.206788,-0.04407,-0.406284,1.81872,0.805662,1.79539,1.87102,-0.611387,0.239398,1 +1.98252,0.611354,2.28559,0.0676383,0.805662,1.24604,1.46091,1.68096,0.822462,1 +-0.148359,-0.699494,-0.742767,-0.282578,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,2.24991,2.28559,2.51915,3.06371,1.79539,2.69124,-0.611387,-0.343666,1 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,0.283642,-0.0697999,2.51915,-0.0975581,1.79539,1.46091,-0.611387,0.239398,1 +0.206788,2.24991,2.28559,2.51915,0.805662,-0.401988,1.87102,0.698527,-0.343666,1 +1.27223,2.24991,2.28559,2.51915,1.25727,1.79539,2.69124,2.33592,4.90391,1 +-0.858651,-0.04407,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-1.00078,-0.951331,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.561934,-0.04407,-0.0697999,0.0676383,-0.0975581,-0.401988,1.0508,-0.611387,-0.343666,0 +0.91708,-0.699494,-0.406284,0.0676383,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.282578,-1.00078,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.0697999,-0.632794,-0.0975581,0.147356,-0.999756,-0.611387,-0.343666,0 +-0.148359,0.939066,0.939651,0.768071,1.70888,0.6967,1.46091,1.35348,0.822462,1 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,0.422028,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.561934,-0.371782,-0.0697999,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.27223,1.26678,0.266684,0.417854,0.805662,-0.127316,0.640688,2.33592,-0.343666,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,0.266684,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,2.24991,1.27613,1.81872,1.70888,-0.676659,2.69124,2.33592,0.822462,1 +-0.148359,-0.371782,0.266684,0.0676383,-0.549168,-0.401988,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.371782,-0.406284,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,2.24991,2.28559,2.51915,3.06371,-0.401988,2.69124,2.33592,4.90391,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.282578,-0.0975581,0.147356,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.371782,-0.742767,0.0676383,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.283909,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,0.283642,0.603167,-0.632794,2.16049,-0.676659,-0.179534,1.02601,-0.343666,0 +0.91708,1.59449,1.61262,1.4685,-0.0975581,1.79539,1.46091,-0.283909,0.822462,1 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.0697999,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,-0.371782,-0.406284,-0.282578,-0.549168,-0.676659,-0.999756,-0.611387,0.239398,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,1.26678,0.266684,-0.632794,1.25727,-0.676659,1.46091,2.33592,0.822462,1 +0.206788,2.24991,2.28559,1.81872,0.805662,0.422028,1.46091,2.33592,-0.343666,1 +-0.503505,2.24991,1.27613,1.81872,0.805662,1.24604,1.46091,0.371049,-0.343666,1 +-0.503505,-0.371782,-0.742767,-0.282578,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.611387,-0.343666,0 +0.206788,-0.04407,-0.406284,-0.632794,-0.0975581,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +-0.148359,-0.699494,0.266684,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.406284,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,-0.343666,0 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +1.98252,2.24991,2.28559,2.51915,0.805662,1.79539,2.69124,2.33592,3.15472,1 +0.206788,2.24991,2.28559,2.51915,0.354052,1.79539,0.640688,1.02601,0.822462,1 +0.206788,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.179534,-0.283909,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,0.0435701,-0.343666,0 +-0.148359,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-1.2138,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,3.73778,0 +-1.2138,-0.699494,-0.742767,0.0676383,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,2.24991,2.28559,0.768071,0.354052,0.422028,0.230577,0.371049,-0.343666,1 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.589645,-0.611387,0.239398,0 +-0.503505,-0.699494,-0.742767,-0.632794,-0.0975581,-0.401988,-0.999756,-0.611387,-0.343666,0 +-0.858651,-0.699494,-0.742767,-0.632794,-0.549168,-0.676659,-0.999756,-0.611387,-0.343666,0 +0.206788,2.24991,2.28559,0.0676383,1.70888,-0.127316,1.87102,2.33592,0.239398,1 +-0.148359,1.59449,0.939651,0.417854,-0.0975581,0.147356,2.69124,1.02601,-0.343666,1 +-0.148359,1.59449,1.61262,0.768071,0.354052,0.422028,2.69124,0.371049,-0.343666,1 diff --git a/data/breast-cancer.arff b/data/breast-cancer.arff new file mode 100755 index 0000000..b6644ab --- /dev/null +++ b/data/breast-cancer.arff @@ -0,0 +1,298 @@ +@relation breast-cancer +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'clase' {0,1} +@data +-1.6449,0.912871,0.5313,-0.455814,0.508429,1.28831,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,1.06318,0.700918,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-2.3178,-0.455814,0.508429,-0.0663099,1.06318,1.53271,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +0.331744,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,-0.418399,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,2.4307,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-2.3178,-0.455814,0.508429,1.28831,-0.937281,2.36451,0.557527,0 +0.331744,-0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +1.32006,-2.73861,-1.3681,-0.455814,0.508429,-1.42093,-0.937281,0.700918,0.557527,0 +0.331744,-0.912871,0.0564507,-0.455814,0.508429,1.28831,-0.937281,0.700918,0.557527,0 +-0.656576,0.912871,0.5313,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,0 +1.32006,-2.73861,0.5313,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,-0.893249,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +0.331744,0.912871,0.5313,-0.455814,0.508429,1.28831,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,0.5313,-0.455814,0.508429,1.28831,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,0.5313,-0.455814,0.508429,-1.42093,1.06318,0.700918,0.557527,0 +0.331744,-0.912871,1.481,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +-1.6449,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +0.331744,0.912871,1.481,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +0.331744,0.912871,1.00615,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +0.331744,0.912871,-0.418399,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,0.0564507,-0.455814,0.508429,1.28831,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,1.481,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +1.32006,-0.912871,0.5313,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,1.481,-0.455814,0.508429,1.28831,1.06318,-0.962672,0.557527,0 +0.331744,0.912871,-0.893249,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +0.331744,0.912871,-1.3681,-0.455814,0.508429,1.28831,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,-1.3681,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +0.331744,-0.912871,-1.3681,-0.455814,0.508429,-1.42093,-0.937281,-0.962672,0.557527,0 +-1.6449,0.912871,0.5313,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +0.331744,-0.912871,-2.3178,-0.455814,0.508429,-0.0663099,-0.937281,2.36451,0.557527,0 +0.331744,-0.912871,-0.893249,-0.455814,0.508429,-1.42093,1.06318,2.36451,0.557527,0 +-0.656576,0.912871,-1.3681,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,0.5313,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,-0.418399,-0.455814,0.508429,-1.42093,1.06318,-0.130877,0.557527,0 +1.32006,-0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,-1.84295,-0.455814,0.508429,-1.42093,-0.937281,2.36451,0.557527,0 +-0.656576,0.912871,-1.3681,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +0.331744,-0.912871,2.4307,-0.455814,0.508429,-1.42093,1.06318,0.700918,0.557527,0 +0.331744,-0.912871,0.5313,-0.455814,0.508429,-1.42093,-0.937281,-0.962672,0.557527,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +0.331744,0.912871,0.0564507,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-1.42093,1.06318,0.700918,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-1.42093,1.06318,-0.130877,0.557527,0 +0.331744,-2.73861,-0.893249,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +-1.6449,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,-0.937281,1.53271,0.557527,0 +0.331744,0.912871,-0.893249,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +2.30838,-0.912871,-0.418399,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,0 +2.30838,-0.912871,1.481,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +2.30838,-0.912871,1.481,-0.455814,0.508429,-1.42093,1.06318,0.700918,0.557527,0 +0.331744,-0.912871,-2.3178,-0.455814,0.508429,-1.42093,1.06318,2.36451,0.557527,0 +0.331744,-0.912871,-1.84295,-0.455814,0.508429,-0.0663099,1.06318,0.700918,0.557527,0 +1.32006,-0.912871,0.5313,-0.455814,0.508429,-1.42093,-0.937281,-0.962672,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,-0.937281,2.36451,0.557527,0 +-0.656576,0.912871,-1.3681,-0.455814,0.508429,-1.42093,1.06318,1.53271,0.557527,0 +0.331744,-0.912871,-2.3178,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +-2.63322,0.912871,1.00615,-0.455814,0.508429,-0.0663099,1.06318,0.700918,0.557527,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-1.42093,-0.937281,1.53271,0.557527,0 +-0.656576,0.912871,-1.3681,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-1.42093,1.06318,1.53271,0.557527,0 +0.331744,-0.912871,-0.418399,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,0 +0.331744,-0.912871,1.00615,-0.455814,0.508429,1.28831,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,2.4307,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,-1.3681,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +1.32006,-0.912871,-0.418399,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +0.331744,0.912871,-0.893249,-0.455814,0.508429,-0.0663099,1.06318,1.53271,0.557527,0 +-1.6449,0.912871,-1.84295,-0.455814,0.508429,-0.0663099,-0.937281,1.53271,0.557527,0 +0.331744,-0.912871,-1.3681,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,-1.3681,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +-1.6449,0.912871,0.0564507,-0.455814,0.508429,-1.42093,-0.937281,2.36451,0.557527,0 +0.331744,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,2.36451,0.557527,0 +0.331744,-0.912871,-1.3681,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +1.32006,-0.912871,-1.3681,-0.455814,0.508429,-1.42093,-0.937281,-0.962672,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +0.331744,-0.912871,-0.893249,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-1.42093,-0.937281,1.53271,0.557527,0 +0.331744,-0.912871,1.00615,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,0 +1.32006,-0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +2.30838,-0.912871,-2.3178,-0.455814,0.508429,-1.42093,-0.937281,1.53271,0.557527,0 +0.331744,-0.912871,-0.418399,-0.455814,0.508429,1.28831,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,1.481,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +-1.6449,0.912871,-2.3178,-0.455814,0.508429,-0.0663099,1.06318,2.36451,0.557527,0 +0.331744,-0.912871,-0.418399,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,0 +0.331744,-0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +1.32006,-0.912871,-0.418399,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +0.331744,0.912871,-1.3681,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,0.5313,-0.455814,0.508429,-0.0663099,1.06318,1.53271,0.557527,0 +1.32006,-0.912871,0.5313,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,0.5313,-0.455814,0.508429,-1.42093,-0.937281,0.700918,0.557527,0 +-1.6449,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +-0.656576,-0.912871,-0.418399,-0.455814,0.508429,1.28831,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,0.5313,-0.455814,0.508429,1.28831,1.06318,-0.130877,0.557527,0 +0.331744,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,1.53271,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,-0.937281,1.53271,0.557527,0 +-0.656576,0.912871,-1.3681,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +-0.656576,0.912871,0.5313,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +-1.6449,0.912871,1.481,-0.455814,0.508429,-0.0663099,1.06318,0.700918,0.557527,0 +-0.656576,0.912871,0.5313,-0.455814,0.508429,1.28831,1.06318,0.700918,0.557527,0 +1.32006,-0.912871,0.5313,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +0.331744,-0.912871,0.0564507,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,-0.893249,-0.455814,0.508429,-1.42093,1.06318,2.36451,0.557527,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-1.3681,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,1.00615,-0.455814,0.508429,-0.0663099,1.06318,0.700918,0.557527,0 +0.331744,-0.912871,-0.418399,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +-1.6449,0.912871,-0.893249,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +-0.656576,-0.912871,-0.418399,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,0 +-1.6449,0.912871,-1.3681,-0.455814,0.508429,-1.42093,1.06318,-0.130877,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,-1.42093,-0.937281,1.53271,0.557527,0 +1.32006,-0.912871,-0.418399,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,-0.893249,-0.455814,0.508429,-0.0663099,1.06318,0.700918,0.557527,0 +0.331744,-0.912871,1.481,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,0 +0.331744,-0.912871,0.5313,-0.455814,0.508429,-1.42093,1.06318,-0.130877,0.557527,0 +1.32006,-0.912871,-1.3681,-0.455814,0.508429,-1.42093,1.06318,-0.130877,0.557527,0 +2.30838,-0.912871,-1.3681,-0.455814,0.508429,-0.0663099,-0.937281,2.36451,0.557527,0 +-1.6449,0.912871,0.5313,1.28236,-1.51117,-0.0663099,1.06318,0.700918,0.557527,0 +-1.6449,0.912871,0.0564507,1.28236,-1.51117,-0.0663099,1.06318,-0.962672,-1.78736,0 +0.331744,0.912871,0.0564507,-0.455814,-1.51117,-0.0663099,-0.937281,-0.962672,0.557527,0 +-0.656576,0.912871,1.00615,2.15144,-1.51117,-0.0663099,1.06318,-0.962672,-1.78736,0 +-0.656576,0.912871,1.00615,2.15144,-1.51117,-0.0663099,1.06318,0.700918,-1.78736,0 +-0.656576,0.912871,1.481,0.413271,-1.51117,1.28831,1.06318,-0.962672,-1.78736,0 +-0.656576,0.912871,0.5313,1.28236,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +0.331744,-0.912871,1.481,-0.455814,0.508429,1.28831,-0.937281,0.700918,0.557527,0 +1.32006,-0.912871,0.5313,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,-1.78736,0 +-1.6449,0.912871,-0.418399,0.413271,0.508429,-0.0663099,1.06318,2.36451,0.557527,0 +-1.6449,0.912871,1.481,0.413271,0.508429,1.28831,1.06318,0.700918,-1.78736,0 +-0.656576,0.912871,-1.84295,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,-1.78736,0 +-1.6449,0.912871,1.481,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,-1.78736,0 +-0.656576,0.912871,0.5313,-0.455814,0.508429,-0.0663099,-0.937281,1.53271,0.557527,0 +0.331744,-0.912871,1.481,0.413271,-1.51117,-0.0663099,-0.937281,-0.130877,0.557527,0 +0.331744,0.912871,-0.418399,0.413271,-1.51117,-0.0663099,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,-1.3681,-0.455814,0.508429,-1.42093,-0.937281,-0.962672,0.557527,0 +-0.656576,0.912871,1.95585,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,-1.78736,0 +1.32006,-0.912871,1.95585,1.28236,-1.51117,1.28831,-0.937281,2.36451,0.557527,0 +-0.656576,0.912871,0.0564507,-0.455814,-3.53076,-0.0663099,-0.937281,1.53271,-1.78736,0 +1.32006,-0.912871,2.4307,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,-1.78736,0 +0.331744,0.912871,0.5313,0.413271,-1.51117,-0.0663099,-0.937281,-0.130877,-1.78736,0 +-1.6449,0.912871,-0.418399,-0.455814,0.508429,1.28831,-0.937281,2.36451,0.557527,0 +0.331744,-2.73861,0.5313,-0.455814,0.508429,1.28831,1.06318,-0.962672,0.557527,0 +0.331744,-0.912871,0.0564507,3.88961,-1.51117,1.28831,1.06318,-0.962672,0.557527,0 +1.32006,-0.912871,0.5313,0.413271,-1.51117,1.28831,-0.937281,-0.130877,0.557527,0 +0.331744,-0.912871,1.00615,3.88961,0.508429,1.28831,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,1.28831,1.06318,-0.962672,-1.78736,0 +-1.6449,-2.73861,-0.893249,-0.455814,0.508429,1.28831,1.06318,-0.962672,0.557527,0 +1.32006,-0.912871,1.481,0.413271,0.508429,-0.0663099,1.06318,-0.962672,-1.78736,0 +0.331744,-0.912871,0.0564507,0.413271,-1.51117,1.28831,1.06318,-0.962672,0.557527,0 +0.331744,0.912871,0.5313,-0.455814,0.508429,-1.42093,-0.937281,2.36451,0.557527,0 +0.331744,-0.912871,0.5313,-0.455814,0.508429,-1.42093,1.06318,2.36451,0.557527,0 +-0.656576,0.912871,1.00615,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,1.28831,1.06318,-0.962672,-1.78736,0 +-0.656576,0.912871,0.5313,0.413271,-1.51117,-0.0663099,1.06318,-0.130877,0.557527,0 +1.32006,-0.912871,-1.3681,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,-1.78736,0 +1.32006,-0.912871,0.0564507,0.413271,-3.53076,-1.42093,1.06318,-0.962672,-1.78736,0 +1.32006,-0.912871,0.0564507,0.413271,-3.53076,-1.42093,1.06318,-0.130877,-1.78736,0 +-0.656576,0.912871,-0.418399,0.413271,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-0.418399,0.413271,0.508429,-0.0663099,1.06318,-0.130877,0.557527,0 +-0.656576,-0.912871,1.481,3.88961,-1.51117,-0.0663099,1.06318,-0.962672,-1.78736,0 +0.331744,0.912871,-1.3681,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +-0.656576,-0.912871,0.5313,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,-1.78736,0 +-1.6449,0.912871,-0.418399,0.413271,-1.51117,-0.0663099,1.06318,-0.962672,-1.78736,0 +-1.6449,0.912871,-0.893249,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,0.5313,1.28236,-1.51117,-0.0663099,1.06318,0.700918,0.557527,0 +0.331744,-0.912871,-0.418399,0.413271,-1.51117,-0.0663099,1.06318,-0.962672,0.557527,0 +0.331744,0.912871,0.0564507,0.413271,-1.51117,-0.0663099,-0.937281,-0.130877,-1.78736,0 +-0.656576,0.912871,0.5313,-0.455814,0.508429,-0.0663099,1.06318,0.700918,-1.78736,0 +-0.656576,-0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,-1.3681,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,0 +0.331744,0.912871,0.0564507,0.413271,0.508429,-0.0663099,1.06318,-0.962672,-1.78736,0 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,1.28831,1.06318,-0.130877,-1.78736,0 +-0.656576,0.912871,1.00615,-0.455814,-1.51117,1.28831,1.06318,-0.962672,-1.78736,0 +-0.656576,0.912871,1.00615,-0.455814,-1.51117,1.28831,1.06318,-0.130877,-1.78736,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-1.42093,1.06318,-0.130877,-1.78736,0 +0.331744,-0.912871,0.5313,2.15144,-3.53076,1.28831,-0.937281,-0.962672,-1.78736,0 +0.331744,-0.912871,0.5313,2.15144,-3.53076,1.28831,-0.937281,-0.130877,-1.78736,0 +-0.656576,0.912871,-0.418399,1.28236,0.508429,-0.0663099,1.06318,-0.130877,-1.78736,0 +0.331744,-0.912871,0.0564507,-0.455814,0.508429,-1.42093,-0.937281,1.53271,0.557527,0 +1.32006,-0.912871,-0.893249,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,-1.78736,0 +-0.656576,0.912871,-1.3681,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,0 +0.331744,-0.912871,-0.418399,-0.455814,-1.51117,-0.0663099,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-0.893249,3.02053,0.508429,1.28831,1.06318,1.53271,-1.78736,0 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,-1.78736,0 +0.331744,-0.912871,0.5313,1.28236,-1.51117,-0.0663099,-0.937281,-0.130877,0.557527,0 +-1.6449,0.912871,-1.3681,-0.455814,0.508429,-0.0663099,-0.937281,1.53271,0.557527,0 +0.331744,0.912871,2.4307,-0.455814,-1.51117,-0.0663099,1.06318,-0.962672,-1.78736,0 +0.331744,-0.912871,1.00615,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,0 +0.331744,0.912871,-1.3681,0.413271,0.508429,-1.42093,1.06318,-0.962672,0.557527,0 +-0.656576,0.912871,-1.3681,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,-1.78736,0 +0.331744,-0.912871,-0.893249,-0.455814,-1.51117,-0.0663099,-0.937281,2.36451,-1.78736,0 +0.331744,0.912871,0.0564507,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,0 +1.32006,-0.912871,0.0564507,-0.455814,0.508429,1.28831,1.06318,-0.130877,0.557527,0 +0.331744,0.912871,-0.893249,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,1 +-0.656576,0.912871,1.481,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,0.557527,1 +0.331744,-0.912871,1.00615,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,1 +0.331744,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,0.700918,0.557527,1 +-1.6449,0.912871,-2.3178,-0.455814,0.508429,-0.0663099,1.06318,2.36451,0.557527,1 +0.331744,-0.912871,0.5313,-0.455814,0.508429,1.28831,-0.937281,-1.79447,0.557527,1 +0.331744,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,0.700918,0.557527,1 +0.331744,0.912871,0.5313,-0.455814,0.508429,1.28831,-0.937281,0.700918,0.557527,1 +-0.656576,0.912871,1.00615,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,1 +-0.656576,0.912871,-0.418399,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,0.557527,1 +0.331744,-0.912871,-0.418399,-0.455814,0.508429,-0.0663099,1.06318,2.36451,0.557527,1 +-0.656576,0.912871,0.5313,-0.455814,0.508429,1.28831,1.06318,0.700918,0.557527,1 +0.331744,0.912871,0.0564507,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,1 +1.32006,-0.912871,1.481,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,1 +-0.656576,-0.912871,-0.418399,-0.455814,0.508429,-0.0663099,1.06318,-0.962672,0.557527,1 +0.331744,-0.912871,-0.418399,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,1 +-0.656576,0.912871,-0.893249,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,1 +1.32006,-0.912871,0.5313,-0.455814,0.508429,1.28831,1.06318,2.36451,0.557527,1 +-1.6449,0.912871,-0.893249,-0.455814,0.508429,-1.42093,1.06318,-0.130877,0.557527,1 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,1.28831,-0.937281,0.700918,0.557527,1 +-1.6449,0.912871,0.5313,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,1 +1.32006,-0.912871,0.0564507,-0.455814,0.508429,1.28831,-0.937281,1.53271,-1.78736,1 +1.32006,-0.912871,-0.418399,-0.455814,0.508429,1.28831,1.06318,-0.130877,0.557527,1 +-1.6449,0.912871,0.0564507,0.413271,-1.51117,1.28831,-0.937281,-0.130877,-1.78736,1 +-0.656576,-0.912871,-0.418399,0.413271,0.508429,1.28831,1.06318,-0.130877,-1.78736,1 +-0.656576,0.912871,0.5313,3.88961,-1.51117,1.28831,-0.937281,-0.130877,0.557527,1 +0.331744,0.912871,0.5313,-0.455814,0.508429,1.28831,1.06318,-0.962672,-1.78736,1 +1.32006,-0.912871,1.481,0.413271,-1.51117,1.28831,1.06318,-0.130877,0.557527,1 +1.32006,-0.912871,1.95585,-0.455814,0.508429,-1.42093,1.06318,0.700918,-1.78736,1 +0.331744,0.912871,2.4307,2.15144,-1.51117,-0.0663099,1.06318,-0.962672,0.557527,1 +-0.656576,0.912871,0.5313,0.413271,0.508429,-0.0663099,1.06318,-0.962672,0.557527,1 +-1.6449,0.912871,0.5313,0.413271,0.508429,1.28831,1.06318,-0.962672,-1.78736,1 +2.30838,-0.912871,-0.893249,2.15144,-3.53076,-1.42093,-0.937281,-0.130877,-1.78736,1 +1.32006,-0.912871,0.5313,-0.455814,0.508429,1.28831,1.06318,-0.962672,-1.78736,1 +0.331744,0.912871,0.0564507,0.413271,-1.51117,1.28831,-0.937281,-0.130877,-1.78736,1 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,1 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,0.557527,1 +-1.6449,0.912871,1.00615,-0.455814,0.508429,1.28831,-0.937281,-0.130877,0.557527,1 +-0.656576,0.912871,-0.418399,0.413271,-1.51117,-0.0663099,1.06318,0.700918,-1.78736,1 +1.32006,-0.912871,-0.418399,0.413271,0.508429,-0.0663099,-0.937281,-0.130877,-1.78736,1 +-0.656576,0.912871,-0.893249,3.88961,-1.51117,1.28831,-0.937281,-0.130877,0.557527,1 +0.331744,-0.912871,0.0564507,1.28236,0.508429,1.28831,-0.937281,-0.130877,-1.78736,1 +0.331744,-0.912871,-0.418399,0.413271,-1.51117,1.28831,1.06318,0.700918,0.557527,1 +-0.656576,0.912871,0.5313,3.02053,-1.51117,1.28831,-0.937281,-0.962672,-1.78736,1 +-1.6449,0.912871,0.5313,2.15144,0.508429,-0.0663099,1.06318,-0.962672,-1.78736,1 +-1.6449,0.912871,-0.893249,1.28236,-1.51117,1.28831,-0.937281,-0.130877,-1.78736,1 +0.331744,-0.912871,0.5313,2.15144,-1.51117,1.28831,-0.937281,1.53271,-1.78736,1 +1.32006,-0.912871,1.00615,1.28236,-1.51117,1.28831,-0.937281,-0.130877,0.557527,1 +-1.6449,0.912871,-0.418399,0.413271,-1.51117,-0.0663099,-0.937281,-0.130877,0.557527,1 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,1 +-0.656576,0.912871,2.4307,-0.455814,0.508429,-0.0663099,1.06318,-0.130877,-1.78736,1 +-1.6449,0.912871,1.481,-0.455814,0.508429,-1.42093,-0.937281,-0.962672,0.557527,1 +1.32006,-0.912871,2.4307,-0.455814,0.508429,1.28831,1.06318,-0.962672,0.557527,1 +-0.656576,0.912871,0.5313,-0.455814,-1.51117,1.28831,1.06318,0.700918,0.557527,1 +-0.656576,0.912871,0.5313,1.28236,-1.51117,1.28831,1.06318,-0.962672,0.557527,1 +-0.656576,0.912871,0.5313,-0.455814,0.508429,-1.42093,-0.937281,-0.130877,-1.78736,1 +-0.656576,0.912871,-0.418399,0.413271,-1.51117,-0.0663099,-0.937281,-0.130877,-1.78736,1 +0.331744,-0.912871,0.5313,1.28236,-1.51117,-0.0663099,-0.937281,1.53271,-1.78736,1 +0.331744,-0.912871,0.5313,0.413271,0.508429,1.28831,1.06318,-0.962672,0.557527,1 +1.32006,-0.912871,0.0564507,0.413271,0.508429,-0.0663099,1.06318,0.700918,0.557527,1 +-0.656576,-0.912871,0.0564507,3.02053,-1.51117,1.28831,-0.937281,1.53271,-1.78736,1 +1.32006,-0.912871,0.0564507,-0.455814,0.508429,1.28831,-0.937281,-0.962672,0.557527,1 +0.331744,-2.73861,-0.418399,-0.455814,-3.53076,-1.42093,-0.937281,-0.962672,0.557527,1 +0.331744,-2.73861,-0.418399,-0.455814,-3.53076,-1.42093,-0.937281,-0.130877,0.557527,1 +-1.6449,0.912871,1.00615,2.15144,-1.51117,1.28831,-0.937281,-0.130877,0.557527,1 +-0.656576,0.912871,0.5313,0.413271,-1.51117,-0.0663099,-0.937281,0.700918,0.557527,1 +1.32006,-0.912871,-0.418399,6.49687,-1.51117,1.28831,-0.937281,-0.130877,-1.78736,1 +-1.6449,0.912871,1.00615,-0.455814,0.508429,1.28831,-0.937281,-0.130877,0.557527,1 +-0.656576,0.912871,0.0564507,-0.455814,0.508429,-0.0663099,-0.937281,-0.130877,-1.78736,1 +0.331744,-0.912871,0.5313,1.28236,-1.51117,1.28831,-0.937281,1.53271,0.557527,1 +0.331744,0.912871,0.0564507,-0.455814,0.508429,1.28831,1.06318,-0.130877,-1.78736,1 +-0.656576,0.912871,-0.893249,-0.455814,-1.51117,1.28831,1.06318,-0.962672,0.557527,1 +1.32006,-0.912871,0.5313,-0.455814,-1.51117,-0.0663099,1.06318,0.700918,-1.78736,1 +1.32006,-0.912871,0.5313,0.413271,-1.51117,-0.0663099,-0.937281,2.36451,-1.78736,1 +-0.656576,0.912871,0.0564507,2.15144,-1.51117,1.28831,1.06318,-0.962672,0.557527,1 +-1.6449,0.912871,0.0564507,1.28236,-1.51117,1.28831,-0.937281,1.53271,-1.78736,1 +1.32006,-0.912871,-1.3681,1.28236,-1.51117,1.28831,-0.937281,-0.962672,-1.78736,1 +0.331744,0.912871,1.00615,3.88961,-1.51117,1.28831,1.06318,0.700918,0.557527,1 +0.331744,-0.912871,1.481,1.28236,-1.51117,1.28831,-0.937281,-0.130877,-1.78736,1 +0.331744,-0.912871,1.481,1.28236,-1.51117,1.28831,-0.937281,-0.130877,-1.78736,1 +-1.6449,0.912871,0.5313,-0.455814,0.508429,-0.0663099,-0.937281,-0.962672,0.557527,1 +-1.6449,0.912871,-0.418399,-0.455814,0.508429,1.28831,-0.937281,-0.962672,-1.78736,1 +1.32006,-0.912871,-0.418399,-0.455814,0.508429,-1.42093,1.06318,-0.962672,0.557527,1 +-0.656576,-0.912871,0.5313,0.413271,0.508429,1.28831,-0.937281,-0.130877,0.557527,1 +0.331744,-0.912871,0.5313,0.413271,0.508429,1.28831,-0.937281,-0.130877,0.557527,1 diff --git a/data/cardiotocography-10clases.arff b/data/cardiotocography-10clases.arff new file mode 100755 index 0000000..d9d1e37 --- /dev/null +++ b/data/cardiotocography-10clases.arff @@ -0,0 +1,2150 @@ +@relation cardiotocography-10clases +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'clase' {0,1,2,3,4,5,6,7,8,9} +@data +-1.3519,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-0.942873,1.80212,-1.02832,-0.165468,-1.06831,-2.11909,-0.701232,-0.458336,-1.06536,0.153234,-1.18136,1.87013,1.11272,8 +-0.132494,0.729961,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-1.74434,0.868636,-0.535235,0.393083,1.52876,-0.865335,1.89335,0.654983,0.957976,0.216587,0.0891048,0.132007,-0.234943,-0.524402,5 +-0.0308771,-0.0461169,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-1.8025,0.868636,-0.535235,0.926109,1.52876,-0.865335,1.89335,0.315929,0.957976,0.216587,0.0249759,-0.00624269,-0.200434,-0.524402,5 +0.0707402,-0.0461169,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-1.8025,1.20829,-0.535235,2.63179,1.19505,-1.37277,0.332955,2.35025,-0.458336,-0.0275938,-0.039153,-0.0753675,-0.200434,1.11272,5 +-0.132494,0.988654,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.8025,1.20829,-0.535235,2.081,1.19505,-1.37277,0.332955,1.67214,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.269452,1.11272,1 +0.0707402,-0.563502,-0.203162,1.91224,2.40204,-0.0574621,3.12144,-1.22087,5.17097,-0.535235,-1.45474,2.04217,-1.47426,2.00481,0.315929,3.7906,-3.75135,-1.77063,-2.14911,5.21754,-0.524402,7 +0.0707402,-0.563502,-0.203162,2.93054,2.06422,-0.0574621,4.81651,-1.04637,5.62385,-0.535235,-1.45474,2.04217,-1.47426,2.00481,0.654983,3.7906,-4.05658,-1.77063,-2.21824,6.77046,-0.524402,7 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.09447,-0.942873,-0.209093,1.31699,-0.0627869,-1.06831,-1.89618,-1.37934,-0.458336,-0.943273,-0.8087,-1.04311,-0.545527,1.11272,8 +-1.14867,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,2.15264,-0.942873,-0.26345,0.961644,-0.0627869,-1.06831,-1.89618,-1.37934,-0.458336,-0.943273,-0.8087,-1.04311,-0.545527,1.11272,8 +-1.14867,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,2.26896,-1.16931,-0.209093,0.428619,-0.0627869,-1.06831,-1.89618,-1.04029,-0.458336,-0.943273,-0.8087,-1.04311,-0.614546,1.11272,8 +1.79823,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,0.98936,0.642198,-0.046022,3.4491,1.52876,-1.27129,1.22461,-0.701232,-0.458336,0.765994,0.858651,0.89238,-0.338471,1.11272,9 +1.69662,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,0.98936,0.755417,-0.100379,3.78668,1.52876,-1.27129,1.22461,0.315929,-0.458336,0.765994,0.858651,0.89238,-0.303962,1.11272,9 +-0.234112,0.471268,1.33972,1.23337,0.375155,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.837272,-0.114127,-0.18875,-0.558699,0.315929,-0.458336,-0.149684,-0.039153,-0.0753675,-0.40749,1.11272,5 +-0.234112,1.50604,4.55406,0.554496,0.0373407,-0.0574621,-0.268691,-1.10454,0.18932,-0.535235,-0.495293,0.424947,-0.763847,-0.335786,-0.701232,-0.458336,0.216587,0.153234,0.201132,-0.303962,1.11272,1 +-0.335729,0.729961,8.53985,-0.124374,1.05078,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-0.0511046,0.93835,-0.899164,0.555868,0.994036,-0.458336,0.338678,-0.616313,-0.213617,1.97366,-0.524402,5 +-0.335729,0.729961,7.93984,-0.124374,0.712969,-0.0574621,1.42637,-1.62801,1.09507,-0.535235,0.0910356,0.93835,-0.899164,0.555868,-0.362178,-0.458336,-0.21073,-0.488055,-0.351867,0.834848,-0.524402,5 +-0.335729,0.729961,9.247,0.215061,1.05078,-0.0574621,-0.268691,-1.33719,0.868636,-0.535235,0.481921,1.40041,-1.37277,0.778782,0.315929,-0.458336,0.338678,-0.423926,-0.00624269,1.7666,1.11272,5 +-0.234112,-0.30481,8.00413,-0.46381,1.05078,-0.0574621,3.12144,-1.68618,1.20829,-0.535235,1.01495,0.93835,-0.899164,0.555868,0.315929,-0.458336,-0.21073,-0.616313,-0.420991,0.903866,-0.524402,6 +-0.335729,-0.0461169,9.46129,0.554496,0.712969,-0.0574621,1.42637,-1.39536,0.642198,-0.535235,0.108803,0.732989,-1.1698,-0.335786,0.654983,-0.458336,-0.271775,-0.680442,-0.628366,0.593282,1.11272,5 +-0.335729,0.471268,9.84702,0.215061,0.712969,-0.0574621,1.42637,-1.04637,0.415759,-0.535235,-0.0688721,1.0667,-0.966823,0.723053,0.654983,0.957976,-0.271775,-0.359797,-0.351867,0.282698,-0.524402,5 +-0.437346,-0.822195,7.08268,-0.124374,0.0373407,-0.0574621,4.81651,-0.988211,0.868636,-0.535235,0.0555005,1.47742,-1.33894,1.0017,3.02836,-0.458336,-0.515956,-1.96302,-1.25049,4.11324,-0.524402,7 +-0.538964,0.471268,8.90414,-0.46381,0.375155,-0.0574621,3.12144,-1.22087,0.415759,-0.535235,-0.264315,1.81114,-1.23746,1.89335,1.67214,-0.458336,-0.515956,-0.616313,-0.420991,0.524263,-0.524402,5 +-0.538964,-0.822195,6.95411,-0.46381,0.375155,-0.0574621,4.81651,-0.755555,1.32151,-0.535235,-0.744038,1.91382,-1.33894,1.94908,2.35025,0.957976,-3.8124,-2.28366,-2.49474,4.45833,-2.16152,7 +-0.538964,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.91998,-0.942873,-0.535235,-0.246547,-1.39764,0.690811,-1.89618,-1.37934,-0.458336,-0.699092,-0.680442,-0.904865,-0.614546,1.11272,8 +-0.538964,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,2.26896,-1.16931,3.75897,-0.939481,-1.39764,0.690811,-1.89618,-1.37934,-0.458336,-0.577001,-0.552184,-0.628366,-0.649055,1.11272,8 +-0.945433,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.26896,-1.16931,3.37847,-0.744038,-1.50032,0.826128,-1.89618,-1.04029,-0.458336,-0.821182,-0.680442,-0.904865,-0.649055,-0.524402,8 +-0.945433,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.26896,-1.05609,0.225763,-0.601898,-1.19228,0.961445,-1.00453,-1.04029,-0.458336,-0.699092,-0.552184,-0.766615,-0.649055,-2.16152,8 +-0.945433,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.32713,-1.28253,3.32411,-0.850643,-1.55166,0.826128,-2.00764,-1.37934,-0.458336,-0.821182,-0.744571,-0.904865,-0.649055,-0.524402,8 +-0.132494,-0.822195,2.68975,-1.14268,2.06422,-0.0574621,1.42637,-1.04637,3.47268,-0.535235,0.410851,1.81114,-1.47426,1.50325,0.994036,0.957976,-0.271775,-1.00109,-0.628366,1.87013,-0.524402,6 +-0.132494,-0.822195,1.9183,-1.48212,3.41548,-0.0574621,-0.268691,-1.22087,5.28419,-0.535235,-0.566363,1.86248,-1.47426,1.61471,2.0112,-0.458336,-0.271775,-1.38586,-1.45786,2.42228,-0.524402,6 +-0.132494,-0.822195,2.11116,-0.803245,2.73985,-0.0574621,-0.268691,-1.22087,3.5859,-0.535235,0.766201,2.0165,-1.47426,1.94908,1.67214,-0.458336,-0.271775,-0.936957,-0.83574,1.28347,-0.524402,6 +-0.132494,-0.822195,2.19688,-0.124374,4.09111,-0.0574621,-0.268691,-1.45352,6.30316,-0.535235,-0.335385,2.0165,-1.47426,1.94908,2.0112,-0.458336,-0.882227,-1.44999,-1.59611,1.62856,-0.524402,6 +-0.132494,-0.822195,1.70401,-1.14268,2.73985,-0.0574621,-0.268691,-1.04637,1.77439,-0.535235,1.22816,1.88815,-1.47426,1.67044,2.35025,0.957976,-0.271775,-0.680442,-0.559241,0.558773,-0.524402,6 +-1.3519,1.24735,2.00402,-1.14268,-0.300473,-0.0574621,-0.268691,-1.10454,2.34049,-0.535235,2.40081,1.42608,-1.30512,0.945967,3.02836,-0.458336,-1.00432,-0.680442,-0.83574,0.213679,-0.524402,1 +-1.3519,1.50604,1.6183,-0.803245,0.0373407,-0.0574621,-0.268691,-1.10454,2.11405,-0.535235,0.748434,1.47742,-1.37277,0.945967,1.67214,0.957976,-0.515956,-0.616313,-0.766615,0.213679,-0.524402,1 +-1.3519,0.729961,2.13259,0.893932,-0.638287,-0.0574621,-0.268691,-1.1627,2.68015,-0.535235,2.845,1.88815,-1.44043,1.72616,2.35025,-0.458336,-0.760137,-0.680442,-0.83574,0.17917,-0.524402,1 +-1.85999,0.471268,1.48973,0.215061,0.375155,-0.0574621,-0.268691,-1.39536,2.34049,-0.535235,1.88556,1.52876,-1.4066,1.0017,1.67214,-0.458336,-1.12641,-1.19347,-1.38874,0.0756414,-0.524402,5 +-1.96161,0.471268,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.33719,2.11405,-0.535235,1.4236,1.63145,-1.4066,1.22461,1.33309,-0.458336,-1.2485,-1.2576,-1.45786,0.00662268,-0.524402,5 +-1.85999,0.729961,1.18972,-0.124374,-0.300473,-0.0574621,-0.268691,-1.45352,2.56693,-0.535235,2.0277,1.73413,-1.47426,1.33607,1.33309,-0.458336,-1.2485,-1.12934,-1.31961,0.0756414,-0.524402,1 +-1.85999,1.50604,0.97543,0.215061,-0.638287,-0.0574621,-0.268691,-1.1627,1.09507,-0.535235,0.748434,1.50309,-1.37277,1.0017,0.994036,-0.458336,-1.12641,-0.936957,-1.25049,-0.165924,-0.524402,1 +-1.96161,1.24735,1.03972,0.893932,-0.300473,-0.0574621,-0.268691,-1.10454,0.981856,-0.535235,0.712899,0.707319,-1.30512,-0.614428,0.994036,0.957976,-1.12641,-1.00109,-1.25049,-0.200434,-0.524402,1 +-1.96161,0.729961,0.803999,1.5728,-0.638287,-0.0574621,-0.268691,-1.1627,1.20829,-0.535235,0.943877,1.47742,-1.33894,1.0017,0.654983,-0.458336,-1.12641,-1.06522,-1.31961,-0.200434,-0.524402,1 +-1.75837,-0.30481,0.611138,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,0.30254,-0.480878,0.908342,0.578968,-1.30512,-0.893069,0.654983,-0.458336,-0.638046,-0.680442,-0.766615,-0.338471,1.11272,0 +-1.75837,0.212576,0.0539856,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,0.528978,-0.480878,0.570759,1.83681,-1.4066,1.67044,3.02836,0.957976,-0.760137,-0.8087,-0.904865,-0.338471,-0.524402,1 +-1.14867,-0.822195,0.182559,-0.46381,1.05078,-0.0574621,-0.268691,-1.45352,3.47268,-0.535235,1.24592,2.04217,-1.47426,2.00481,0.994036,-0.458336,-1.12641,-1.38586,-1.45786,0.17917,-0.524402,6 +-1.14867,-0.822195,0.225417,-0.46381,1.3886,-0.0574621,-0.268691,-1.51169,3.81234,-0.535235,1.33476,2.04217,-1.47426,2.00481,1.33309,-0.458336,-1.30954,-1.44999,-1.45786,0.14466,-0.524402,6 +-1.14867,-0.822195,-0.096017,1.23337,0.375155,-0.0574621,-0.268691,-1.74434,4.03878,-0.535235,2.47188,1.91382,-1.37277,1.89335,3.02836,-0.458336,-0.638046,-0.8087,-0.83574,0.213679,-0.524402,1 +-1.14867,-0.30481,-0.138875,0.554496,0.0373407,-0.0574621,-0.268691,-1.56985,4.152,-0.535235,2.29421,1.99083,-1.47426,1.89335,2.35025,-0.458336,-0.638046,-0.680442,-0.766615,0.317207,-0.524402,5 +-1.14867,-0.0461169,-0.0745881,0.554496,1.3886,-0.0574621,-0.268691,-1.45352,6.41638,-0.535235,1.49467,2.0165,-1.47426,1.94908,0.994036,-0.458336,-0.515956,-1.06522,-0.97399,1.93915,-0.524402,5 +2.50956,0.471268,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-1.1627,0.415759,-0.535235,1.19262,1.27206,-0.560872,1.83762,0.994036,-0.458336,1.9869,2.14123,2.20575,-0.165924,1.11272,1 +2.50956,0.471268,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,0.819504,-0.396499,1.63803,1.83762,-0.0231245,-0.458336,1.9869,2.33362,2.344,-0.338471,-0.524402,1 +2.30632,-0.822195,-0.203162,2.59111,2.06422,-0.0574621,-0.268691,-0.232081,3.13302,-0.535235,2.48965,2.04217,-1.47426,2.00481,0.994036,0.957976,0.82704,0.473878,0.961504,1.83562,1.11272,6 +2.30632,-0.822195,-0.203162,2.25167,2.06422,-0.0574621,1.42637,-0.755555,4.60487,-0.535235,-0.868411,2.04217,-1.47426,2.00481,1.33309,-0.458336,-1.2485,-0.23154,-0.144492,3.07796,-0.524402,6 +1.69662,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,0.814868,-0.942873,1.63905,-0.353152,-1.01258,1.23208,-0.168601,-0.701232,-0.458336,1.01018,1.11517,1.09975,-0.614546,1.11272,9 +1.49338,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.2154,-0.548595,-1.3463,1.43505,-0.558699,-0.362178,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,8 +1.595,-0.822195,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,0.582213,-0.150338,2.40005,0.819504,1.42608,-1.20363,1.11315,2.6893,0.957976,0.765994,0.858651,0.89238,-0.37298,1.11272,6 +1.595,-0.822195,-0.203162,-1.48212,-0.300473,-0.0574621,-0.268691,0.640377,-0.0371185,2.34569,0.890574,1.42608,-1.20363,1.11315,2.6893,0.957976,0.765994,0.858651,0.89238,-0.37298,1.11272,9 +1.29015,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,1.53033,-0.477525,-1.3463,1.84101,0.110041,-1.04029,-0.458336,1.01018,1.30755,1.238,-0.614546,-0.524402,0 +1.49338,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,1.04112,-0.317617,-1.29496,1.67186,-0.0571439,-1.04029,-0.458336,1.01018,1.1793,1.09975,-0.649055,-0.524402,0 +1.08691,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,-0.353152,0.758659,-0.527043,0.778782,0.315929,-0.458336,0.704949,1.11517,0.961504,-0.37298,1.11272,1 +1.29015,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,0.443191,-0.530828,-0.678871,1.3674,0.778782,0.315929,-0.458336,1.01018,1.24342,1.16888,-0.511018,-0.524402,1 +1.29015,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.606263,-0.530828,-1.08959,1.67186,0.388683,-0.701232,-0.458336,1.01018,1.1793,1.09975,-0.614546,-0.524402,1 +0.883679,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.606294,-1.14093,1.23208,-0.447242,-1.37934,-0.458336,0.582859,0.666265,0.61588,-0.580037,-0.524402,2 +0.273975,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.535224,1.04103,-0.66236,1.16888,2.35025,-0.458336,0.155542,0.34562,0.201132,-0.580037,-0.524402,2 +0.782061,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.926109,0.83567,-0.66236,0.723053,2.0112,-0.458336,0.277632,0.538007,0.408506,-0.511018,1.11272,2 +1.69662,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,1.47598,-0.44199,-1.3463,1.67186,-0.168601,-1.04029,-0.458336,0.94913,1.1793,1.09975,-0.649055,-0.524402,0 +0.477209,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.376776,0.551906,0.659596,0.732989,-0.425555,0.890238,1.67214,2.37429,1.49854,1.37168,1.44538,-0.37298,1.11272,4 +0.680444,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.150338,-0.535235,0.375316,-0.268148,0.859957,0.83451,-0.701232,-0.458336,1.13227,1.1793,1.16888,-0.476509,-0.524402,1 +0.680444,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.150338,-0.535235,0.375316,-0.268148,0.859957,0.83451,-0.701232,-0.458336,1.13227,1.1793,1.16888,-0.476509,-0.524402,1 +1.08691,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.480878,0.855039,-0.858563,1.29974,0.277226,-0.0231245,-0.458336,1.49854,1.49994,1.5145,-0.476509,1.11272,4 +1.08691,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.426521,0.588526,-1.03825,1.50271,0.221498,-0.362178,-0.458336,1.49854,1.43581,1.5145,-0.476509,1.11272,4 +0.680444,1.76473,-0.0745881,-0.46381,-0.638287,-0.0574621,-0.268691,0.291394,0.30254,-0.535235,1.4236,0.86134,-0.865335,0.444411,-1.37934,-0.458336,0.399723,0.794523,0.61588,-0.165924,1.11272,1 +0.680444,1.24735,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,0.18932,-0.535235,0.837272,0.86134,-0.865335,0.444411,-0.701232,-0.458336,0.521813,0.794523,0.61588,-0.234943,1.11272,1 +0.680444,1.24735,-0.117446,-0.124374,-0.638287,-0.0574621,-0.268691,0.291394,0.642198,-0.535235,1.69011,0.964021,-0.865335,0.667325,-0.701232,-0.458336,0.399723,0.794523,0.61588,-0.0278867,1.11272,1 +0.680444,0.729961,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,0.524049,0.18932,-0.480878,1.22816,0.964021,-0.865335,0.667325,-0.362178,-0.458336,1.13227,0.986909,1.03063,-0.131415,1.11272,1 +2.10309,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.04752,-0.489996,-0.535235,0.926109,0.553298,-0.66236,0.110041,-0.701232,-0.458336,1.13227,1.49994,1.44538,-0.580037,1.11272,9 +1.69662,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-0.489996,-0.372164,0.0910356,-1.08959,1.50271,0.110041,-1.37934,-0.458336,0.888085,1.1793,1.16888,-0.545527,-0.524402,9 +1.18853,0.988654,-0.0103012,-0.803245,-0.638287,-0.0574621,-0.268691,-0.639228,0.0761009,-0.535235,0.961644,1.24639,-1.23746,0.667325,-0.362178,0.957976,0.643904,0.986909,0.823255,-0.234943,1.11272,1 +1.18853,-0.0461169,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,-0.755555,0.415759,-0.535235,2.50742,1.19505,-1.23746,0.555868,0.654983,0.957976,0.765994,0.794523,0.823255,-0.269452,1.11272,1 +1.18853,0.471268,0.0111277,0.215061,-0.638287,-0.0574621,-0.268691,-0.697392,0.642198,-0.535235,2.32974,1.78547,-1.27129,1.78189,0.315929,-0.458336,0.643904,0.986909,0.89238,-0.234943,1.11272,1 +1.18853,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,-0.755555,0.415759,-0.535235,3.14705,0.989691,-1.23746,0.110041,0.315929,0.957976,0.765994,0.794523,0.823255,-0.303962,1.11272,0 +1.18853,-0.30481,-0.0317302,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,0.0761009,-0.535235,1.81449,1.78547,-1.27129,1.78189,1.67214,0.957976,0.643904,0.858651,0.75413,-0.40749,-0.524402,0 +1.18853,-0.822195,-0.0531591,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,-0.150338,-0.535235,1.35253,1.68279,-1.13597,1.78189,1.33309,0.957976,0.460768,0.858651,0.75413,-0.441999,-0.524402,0 +1.18853,3.0582,-0.0317302,-0.803245,-0.638287,-0.0574621,-0.268691,-0.232081,0.18932,-0.535235,-1.45474,0.989691,-1.03448,0.444411,0.315929,-0.458336,1.13227,1.37168,1.37625,-0.269452,1.11272,3 +1.18853,2.54081,0.396849,-1.14268,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.535235,0.570759,1.40041,-1.06831,1.28034,-0.0231245,-0.458336,1.80376,1.88471,1.92925,-0.269452,1.11272,3 +1.18853,2.7995,0.353991,-1.14268,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.535235,-1.24153,1.09237,-0.696189,1.22461,-0.0231245,-0.458336,1.68167,1.82058,1.86013,-0.269452,1.11272,3 +1.18853,1.24735,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,0.528978,-0.535235,2.70286,1.19505,-1.47426,0.16577,-0.0231245,-0.458336,1.01018,1.05104,1.09975,-0.0969054,1.11272,1 +0.578827,-0.822195,2.08974,-1.48212,0.0373407,-0.0574621,-0.268691,-0.5229,0.18932,-0.535235,0.908342,1.63145,-1.37277,1.28034,0.315929,-0.458336,-0.271775,0.0891048,-0.00624269,-0.441999,-0.524402,2 +0.578827,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,0.873032,-0.716435,0.932405,0.588526,1.04103,-0.696189,1.11315,-0.0231245,-0.458336,0.643904,0.794523,0.685005,-0.580037,1.11272,0 +0.578827,-0.30481,-0.138875,-1.48212,0.375155,-0.0574621,-0.268691,0.23323,0.981856,-0.535235,-0.193245,1.99083,-1.4066,2.00481,2.6893,5.20691,0.582859,0.153234,0.477631,1.24896,-0.524402,6 +0.578827,-0.30481,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,1.04112,-0.29985,-1.08959,1.40122,-0.0571439,-1.04029,-0.458336,1.43749,1.11517,1.30713,-0.200434,1.11272,4 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,3.10669,-0.58413,-1.42331,1.53654,-0.558699,-0.0231245,-0.458336,0.765994,0.92278,0.89238,-0.649055,1.11272,9 +1.49338,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.16104,-0.51306,-1.37197,1.43505,-0.614428,-0.701232,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,9 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,3.54154,-0.6552,-1.16661,1.16442,-0.614428,-0.362178,-0.458336,0.765994,0.92278,0.89238,-0.649055,1.11272,8 +1.49338,-0.822195,-0.096017,-0.803245,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,3.48719,-0.637433,-1.39764,1.43505,-0.670156,-1.37934,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,8 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.154736,0.233176,-1.26929,1.40122,-0.447242,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.614546,1.11272,0 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,1.09548,0.108803,-0.909903,0.927615,-0.447242,-0.362178,0.957976,0.765994,0.92278,0.89238,-0.614546,1.11272,9 +1.49338,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,0.756704,-0.942873,2.12826,-0.601898,0.322266,-0.527043,-0.168601,-0.362178,-0.458336,1.01018,1.11517,1.09975,-0.614546,1.11272,9 +1.49338,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,0.814868,-0.942873,1.58469,-0.335385,-1.01258,1.23208,-0.168601,-0.701232,-0.458336,1.01018,1.11517,1.09975,-0.614546,1.11272,9 +-0.843816,1.76473,-0.0531591,-0.803245,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,-0.246547,0.655978,0.25103,1.83762,1.33309,0.957976,-0.271775,-0.23154,-0.351867,-0.476509,-2.16152,1 +-0.843816,0.471268,-0.203162,-0.803245,0.375155,-0.0574621,-0.268691,-1.27903,0.415759,-0.209093,0.606294,0.578968,-0.730018,0.0543129,-0.362178,-0.458336,-0.271775,-0.423926,-0.420991,-0.303962,-0.524402,5 +-0.843816,0.471268,-0.0317302,-0.803245,-0.300473,-0.0574621,-0.268691,-1.33719,0.30254,-0.535235,1.13932,-0.396499,0.115713,-0.670156,0.654983,2.37429,-0.393865,-0.295669,-0.420991,-0.441999,-0.524402,1 +-0.843816,1.24735,0.0754146,-0.803245,-0.638287,-0.0574621,-0.268691,-1.33719,0.30254,-0.535235,1.61904,0.347936,-0.865335,-0.670156,-0.0231245,-0.458336,-0.33282,-0.167411,-0.351867,-0.476509,1.11272,1 +-0.843816,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-1.04637,-0.263557,-0.535235,0.499689,-1.06392,0.792298,-1.00453,-1.37934,-0.458336,-0.393865,-0.295669,-0.420991,-0.614546,-0.524402,2 +-0.843816,-0.0461169,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,-1.45352,0.642198,-0.535235,1.35253,0.296596,-0.865335,-0.781613,0.315929,0.957976,-0.33282,-0.295669,-0.351867,-0.441999,1.11272,2 +-0.843816,0.212576,0.418278,-0.46381,0.712969,-0.0574621,-0.268691,-1.45352,1.66117,-0.535235,1.60128,1.47742,-1.27129,1.11315,0.315929,0.957976,-0.760137,-0.744571,-0.83574,-0.0969054,-0.524402,5 +-0.843816,-0.822195,0.868286,-1.48212,2.06422,-0.0574621,-0.268691,-1.45352,2.90658,-0.535235,0.872807,1.91382,-1.4066,1.83762,0.994036,0.957976,-1.00432,-1.12934,-1.18136,0.14466,-0.524402,6 +-0.843816,0.988654,-0.117446,0.554496,0.0373407,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,0.695131,0.88701,-0.696189,0.778782,1.33309,-0.458336,-0.699092,-0.552184,-0.697491,-0.269452,-0.524402,1 +-0.843816,0.729961,0.932573,0.554496,1.05078,-0.0574621,-0.268691,-1.56985,1.32151,-0.535235,-0.193245,1.63145,-1.03448,1.83762,1.33309,0.957976,-0.760137,-0.616313,-0.766615,-0.0969054,-0.524402,5 +-0.843816,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,1.97439,-0.216808,-0.459384,-1.22744,-0.0231245,0.957976,-0.638046,-0.616313,-0.766615,-0.441999,1.11272,2 +-0.843816,0.988654,1.03972,-0.803245,1.72641,-0.0574621,-0.268691,-1.39536,0.981856,-0.535235,-0.672968,1.3234,-0.527043,2.00481,2.0112,-0.458336,-0.393865,-0.616313,-0.697491,0.0411321,-0.524402,5 +-0.437346,0.471268,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,-0.755555,0.415759,-0.535235,0.837272,1.22072,-0.527043,1.78189,2.0112,-0.458336,-0.0275938,0.0891048,-0.0753675,-0.441999,-0.524402,1 +-0.437346,0.471268,-0.138875,0.215061,-0.638287,-0.0574621,-0.268691,-0.697392,-0.0371185,-0.535235,0.339781,0.553298,0.25103,1.61471,0.654983,-0.458336,-0.0886391,-0.039153,-0.213617,-0.511018,-0.524402,1 +-0.437346,-0.822195,-0.138875,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.150338,-0.535235,0.766201,-0.42217,0.589323,0.0543129,-0.0231245,0.957976,-0.271775,-0.167411,-0.282742,-0.580037,-0.524402,2 +-0.437346,0.988654,-0.0103012,1.5728,3.41548,-0.0574621,-0.268691,-1.45352,4.37844,-0.535235,-1.45474,1.91382,-1.47426,1.72616,3.02836,0.957976,0.0944967,-0.8087,-0.628366,2.31875,-0.524402,5 +-0.437346,-0.822195,0.0325567,0.893932,4.42892,-0.0574621,-0.268691,-1.45352,3.92556,-0.535235,-1.45474,1.73413,-1.47426,1.33607,0.994036,2.37429,-0.515956,-1.32173,-1.25049,1.42151,-0.524402,6 +-1.04705,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,3.12144,-1.22087,3.35946,-0.535235,1.99216,1.93949,-1.47426,1.78189,1.33309,0.957976,-0.699092,-1.89889,-1.73436,3.38854,-0.524402,7 +-1.04705,-0.0461169,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-0.988211,-0.263557,-0.480878,-0.424223,-0.44784,0.0480547,-0.893069,-0.362178,-0.458336,-0.760137,-0.680442,-0.83574,-0.441999,-0.524402,5 +-1.04705,-0.563502,-0.203162,-0.124374,1.3886,-0.0574621,-0.268691,-1.04637,-0.263557,-0.535235,-0.761806,-0.370829,-0.053433,-0.893069,-0.362178,-0.458336,-0.882227,-0.8087,-0.97399,-0.441999,-0.524402,6 +-1.04705,0.212576,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.535235,-1.08162,-0.370829,-0.053433,-0.893069,-0.362178,-0.458336,-1.00432,-0.744571,-0.904865,-0.40749,-0.524402,5 +-1.04705,-0.822195,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,0.000574525,-0.263557,1.14983,-0.139942,1.52876,-1.1698,1.39179,3.36741,2.37429,-0.515956,-0.8087,-0.766615,-0.131415,-0.524402,6 +-1.04705,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,0.175066,-0.603215,1.20419,-0.903946,0.604638,-0.62853,0.277226,0.994036,-0.458336,-0.760137,-0.8087,-0.83574,-0.37298,-0.524402,6 +-1.04705,-0.822195,-0.203162,0.215061,1.3886,-0.0574621,-0.268691,-0.115753,-0.376776,0.497548,-0.779573,0.373606,-1.1698,-1.11598,1.33309,0.957976,-0.821182,-1.00109,-0.904865,-0.165924,1.11272,6 +-1.04705,0.729961,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,-0.813719,-0.0371185,-0.535235,-0.619665,1.73413,-1.10214,1.94908,1.67214,0.957976,-0.149684,-0.8087,-0.766615,0.69681,-0.524402,5 +-1.04705,-0.822195,-0.203162,0.893932,1.05078,-0.0574621,3.12144,-1.10454,0.0761009,-0.535235,-0.6552,0.168245,-1.10214,-1.45035,-0.362178,0.957976,-1.43163,-1.44999,-1.59611,-0.131415,1.11272,6 +2.61117,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.334477,0.464154,0.527627,-0.425555,0.444411,-1.37934,-0.458336,1.55958,1.82058,1.86013,-0.580037,1.11272,9 +2.61117,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,0.606263,-0.317617,-1.42331,2.01015,0.221498,-1.37934,-0.458336,1.55958,1.82058,1.791,-0.649055,1.11272,9 +2.61117,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,-0.209093,0.890574,0.527627,-0.425555,0.444411,-1.37934,-0.458336,1.55958,1.82058,1.791,-0.580037,1.11272,9 +2.61117,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.0626921,-0.246547,-1.42331,2.01015,0.221498,-1.37934,-0.458336,1.55958,1.75646,1.791,-0.649055,1.11272,9 +2.50956,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,1.3129,-0.0333371,0.578968,-0.560872,0.332955,-0.362178,-0.458336,1.68167,1.82058,1.86013,-0.580037,1.11272,0 +2.50956,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,1.53033,-0.424223,-1.42331,2.11164,0.388683,-1.37934,-0.458336,1.68167,1.88471,1.92925,-0.649055,-0.524402,0 +2.50956,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,1.14983,0.073268,0.553298,-0.560872,0.277226,-1.04029,-0.458336,1.68167,1.75646,1.791,-0.580037,1.11272,0 +2.50956,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,2.61747,-0.690735,-1.52599,2.21313,0.332955,-1.37934,-0.458336,1.68167,1.94884,1.92925,-0.649055,-0.524402,0 +2.61117,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.100379,0.073268,-0.678871,1.33357,0.723053,-0.0231245,-0.458336,1.68167,1.88471,1.92925,-0.614546,1.11272,0 +2.61117,-0.30481,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,-0.0511046,-0.678871,1.33357,0.723053,-0.0231245,-0.458336,1.55958,1.88471,1.92925,-0.580037,1.11272,0 +2.61117,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,0.171406,0.0555005,-1.19228,1.87483,0.50014,-1.37934,-0.458336,1.68167,1.88471,1.92925,-0.649055,1.11272,9 +2.61117,-0.30481,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,-0.0688721,-0.678871,1.33357,0.723053,-0.0231245,-0.458336,1.55958,1.88471,1.86013,-0.580037,1.11272,0 +2.61117,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,0.334477,-0.175477,-1.21795,1.80718,0.332955,-1.37934,-0.458336,1.68167,1.88471,1.92925,-0.649055,1.11272,9 +2.61117,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,-0.100379,0.162106,-0.781552,1.84101,1.33607,-1.37934,-0.458336,1.80376,2.20536,2.20575,-0.476509,-0.524402,4 +2.61117,-0.30481,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,0.171406,-0.0333371,-0.730212,1.77335,1.33607,-0.701232,-0.458336,1.80376,2.39774,2.48225,-0.37298,-0.524402,4 +2.61117,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,-0.535235,-0.0155696,-1.24362,2.07781,0.723053,-1.04029,-0.458336,1.9869,2.0771,2.0675,-0.580037,-0.524402,0 +2.10309,-0.0461169,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,-0.173917,0.755417,-0.535235,3.21812,1.96516,-1.47426,1.83762,2.0112,13.7048,0.94913,1.49994,1.65275,0.282698,1.11272,1 +2.10309,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.0587384,-0.489996,-0.535235,0.801736,0.501957,-0.0196038,1.05742,-0.0231245,-0.458336,1.80376,1.69233,1.72188,-0.37298,1.11272,4 +2.10309,-0.0461169,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.173917,0.755417,-0.535235,4.88827,1.96516,-1.47426,1.83762,1.33309,6.62322,0.94913,1.30755,1.30713,0.14466,1.11272,1 +0.985296,0.471268,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.150338,-0.154736,1.54797,1.29773,-1.23746,0.778782,2.0112,-0.458336,0.521813,0.794523,0.685005,-0.303962,1.11272,1 +0.985296,1.24735,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.535235,-0.672968,0.91268,-0.730018,0.778782,0.315929,-0.458336,0.582859,0.986909,0.75413,-0.441999,1.11272,1 +0.985296,-0.563502,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.23323,-0.263557,0.00833509,1.74342,0.758659,-0.730018,0.444411,1.33309,0.957976,0.582859,0.730394,0.61588,-0.511018,1.11272,0 +1.595,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.23323,-0.376776,-0.100379,1.88556,0.732989,-0.763847,0.332955,-0.0231245,-0.458336,0.82704,1.1793,1.09975,-0.40749,1.11272,1 +1.595,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.046022,0.428619,0.604638,-0.560872,0.388683,-0.0231245,0.957976,0.94913,1.24342,1.09975,-0.476509,1.11272,1 +1.49338,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.407721,-0.716435,0.28012,0.144338,-0.47351,0.72464,0.16577,0.994036,0.957976,0.94913,1.11517,1.09975,-0.545527,1.11272,1 +1.49338,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,0.551906,0.250943,-0.576191,0.72464,-0.0571439,0.315929,-0.458336,0.94913,1.11517,1.03063,-0.614546,1.11272,0 +1.49338,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,0.171406,0.393083,-0.627531,0.72464,-0.168601,0.315929,-0.458336,0.82704,1.11517,1.03063,-0.614546,1.11272,0 +0.680444,0.729961,-0.181733,-0.124374,-0.300473,-0.0574621,-0.268691,-0.348408,0.415759,-0.535235,0.0199655,1.29773,-1.4066,0.50014,2.6893,0.957976,1.3154,0.92278,1.09975,0.386226,1.11272,3 +-0.843816,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.930047,-0.0371185,-0.535235,0.552991,0.373606,0.690811,1.94908,-0.362178,-0.458336,-0.699092,-0.23154,-0.420991,-0.338471,-2.16152,1 +-0.843816,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,1.13932,0.373606,0.690811,1.94908,-0.0231245,-0.458336,-0.699092,-0.488055,-0.697491,-0.545527,-2.16152,0 +-1.04705,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,0.225763,0.108803,-0.807222,0.656981,-0.670156,-0.701232,-0.458336,-0.699092,-0.423926,-0.697491,-0.511018,-0.524402,1 +-1.04705,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.117049,0.126571,-1.08959,0.656981,-1.28317,-0.701232,-0.458336,-0.699092,-0.552184,-0.766615,-0.614546,-0.524402,0 +-1.04705,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,0.171406,-0.0333371,-1.19228,0.792298,-1.28317,-1.04029,-0.458336,-0.699092,-0.488055,-0.697491,-0.614546,-0.524402,0 +-1.04705,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.489996,0.0626921,-0.868411,-1.01258,0.758469,-0.948798,-1.04029,-0.458336,-0.699092,-0.423926,-0.697491,-0.545527,-2.16152,1 +-1.04705,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.813719,-0.489996,-0.209093,-0.850643,-0.961244,0.758469,-0.837341,-0.701232,-0.458336,-0.699092,-0.423926,-0.697491,-0.545527,-0.524402,1 +-1.04705,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.639228,-0.489996,0.334477,-0.797341,-0.935573,0.72464,-0.837341,-1.04029,-0.458336,-0.699092,-0.488055,-0.766615,-0.545527,-2.16152,1 +-1.04705,0.471268,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.697392,-0.489996,0.171406,-0.886178,-0.961244,0.758469,-0.837341,-1.04029,-0.458336,-0.699092,-0.423926,-0.766615,-0.545527,-2.16152,1 +-1.14867,0.212576,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-0.871883,-0.150338,0.00833509,0.126571,0.270926,-0.899164,-0.893069,-0.701232,-0.458336,-0.760137,-0.680442,-0.83574,-0.37298,1.11272,1 +-1.14867,0.471268,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,0.117049,0.037733,-0.139797,-0.357896,-0.893069,-0.701232,0.957976,-0.760137,-0.616313,-0.83574,-0.511018,-0.524402,1 +-1.14867,0.212576,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.930047,-0.150338,0.00833509,0.00219796,-0.345159,-0.256409,-1.17171,-0.0231245,-0.458336,-0.760137,-0.616313,-0.83574,-0.545527,1.11272,1 +0.0707402,-0.0461169,-0.0317302,-1.14268,-0.300473,-0.0574621,-0.268691,0.524049,2.11405,-0.535235,5.97209,1.52876,-1.33894,1.11315,-1.04029,-0.458336,0.0334514,0.0249759,0.0628821,0.213679,-0.524402,1 +0.0707402,-0.0461169,-0.0531591,-1.14268,-0.638287,-0.0574621,-0.268691,0.349558,2.68015,-0.535235,7.5534,1.52876,-1.33894,1.11315,-1.04029,-0.458336,-0.0886391,0.0249759,0.0628821,0.213679,-0.524402,1 +0.0707402,-0.30481,-0.117446,-0.803245,-0.638287,-0.0574621,-0.268691,1.16385,0.18932,-0.372164,3.12928,1.73413,-1.33894,1.55898,-0.701232,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.40749,-0.524402,1 +0.0707402,-0.0461169,-0.0531591,-1.14268,-0.638287,-0.0574621,-0.268691,1.16385,-0.150338,-0.535235,1.3703,1.37474,-0.865335,1.55898,0.654983,-0.458336,0.0334514,0.0891048,-0.0753675,-0.441999,-0.524402,1 +-1.75837,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,1.58469,-0.477525,-0.678871,-0.0872623,-1.61754,-0.0231245,-0.458336,-1.06536,-0.936957,-1.11224,-0.614546,1.11272,0 +-1.75837,-0.822195,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-0.232081,-0.603215,0.823691,-0.459758,0.0398938,-1.27129,-2.00764,0.654983,-0.458336,-1.06536,-1.06522,-1.18136,-0.545527,1.11272,0 +-1.75837,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,0.878048,-0.477525,-1.50032,0.690811,-2.11909,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.649055,-0.524402,0 +-1.45352,-0.563502,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.426521,0.428619,0.476287,-0.560872,0.110041,-0.362178,0.957976,-1.00432,-0.872829,-1.04311,-0.511018,-0.524402,0 +-1.45352,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.988211,-0.0371185,-0.426521,0.606294,0.476287,-0.560872,0.110041,-0.362178,2.37429,-1.00432,-0.8087,-1.04311,-0.545527,-0.524402,0 +-1.45352,-0.30481,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.930047,-0.0371185,-0.372164,0.552991,0.476287,-0.560872,0.110041,0.654983,-0.458336,-1.00432,-0.8087,-1.04311,-0.580037,-0.524402,0 +-1.45352,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.930047,0.0761009,-0.535235,0.446386,1.63145,-1.20363,1.55898,0.994036,-0.458336,-0.638046,-0.488055,-0.766615,-0.40749,-0.524402,1 +-1.45352,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,1.03271,0.553298,-1.20363,-0.781613,-0.0231245,-0.458336,-0.638046,-0.616313,-0.697491,-0.545527,1.11272,0 +-1.45352,1.24735,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.988211,0.528978,-0.535235,0.322013,1.50309,-0.831506,1.89335,1.67214,-0.458336,-0.33282,-0.167411,-0.213617,0.0411321,-0.524402,1 +-1.45352,-0.0461169,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,1.05048,-0.370829,-0.18875,-1.11598,-0.362178,-0.458336,-0.638046,-0.8087,-0.904865,-0.37298,-0.524402,0 +-1.25028,2.02342,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.813719,0.642198,-0.535235,-0.29985,1.7598,-1.1698,1.89335,2.35025,-0.458336,0.277632,0.153234,0.132007,-0.0278867,-0.524402,1 +-1.3519,1.50604,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.1627,0.755417,-0.535235,1.08602,1.45175,-0.763847,1.89335,2.0112,0.957976,-0.638046,-0.295669,-0.420991,-0.234943,-0.524402,1 +0.477209,3.57558,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.697392,4.49166,-0.535235,-0.6552,1.99083,-1.4066,2.00481,2.35025,2.37429,0.521813,1.43581,1.58363,1.83562,1.11272,3 +-0.234112,-0.822195,-0.203162,-1.48212,2.06422,-0.0574621,-0.268691,-0.581064,0.642198,-0.535235,-0.886178,0.501957,-1.20363,-0.893069,-0.0231245,0.957976,-0.638046,-0.872829,-0.83574,0.0756414,1.11272,6 +-0.132494,-0.822195,-0.203162,0.554496,2.06422,-0.0574621,-0.268691,-0.5229,1.43473,-0.535235,0.428619,1.47742,-1.44043,0.83451,0.994036,0.957976,-0.271775,-0.616313,-0.559241,0.213679,-0.524402,6 +-0.132494,2.54081,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.930047,3.92556,-0.535235,-0.495293,1.96516,-1.4066,1.94908,1.67214,0.957976,-0.271775,1.24342,1.72188,4.07873,1.11272,3 +-0.132494,0.212576,-0.203162,1.23337,1.3886,-0.0574621,-0.268691,-0.639228,2.34049,-0.535235,1.26369,1.91382,-1.37277,1.89335,0.654983,2.37429,-0.271775,0.0891048,-0.282742,1.59405,-0.524402,5 +-0.132494,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.116902,0.755417,-0.535235,2.68509,0.476287,-1.06831,-0.725884,0.315929,-0.458336,-0.271775,-0.103282,-0.213617,-0.37298,1.11272,2 +0.477209,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.263557,0.551906,0.552991,-0.678871,1.19825,0.50014,1.33309,2.37429,1.49854,1.30755,1.44538,-0.37298,1.11272,4 +0.477209,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.376776,0.497548,0.606294,-0.678871,1.19825,0.50014,1.33309,2.37429,1.49854,1.30755,1.44538,-0.338471,-0.524402,4 +0.477209,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,0.144338,-0.268148,0.859957,0.83451,-0.701232,-0.458336,1.25436,1.11517,1.16888,-0.37298,-0.524402,1 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.115753,-0.376776,0.551906,0.730666,0.732989,-0.425555,0.890238,1.33309,2.37429,1.49854,1.37168,1.44538,-0.37298,1.11272,4 +1.08691,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,-0.426521,0.659596,-0.961244,1.40122,0.221498,-0.0231245,-0.458336,1.49854,1.43581,1.5145,-0.476509,1.11272,4 +1.08691,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.116902,-0.716435,-0.372164,0.286478,-0.678871,1.57037,1.11315,-0.362178,-0.458336,1.49854,1.49994,1.65275,-0.511018,-0.524402,4 +1.08691,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.426521,0.588526,-1.01258,1.50271,0.277226,-0.362178,-0.458336,1.49854,1.49994,1.58363,-0.476509,1.11272,4 +1.69662,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,0.497548,-0.0511046,-1.32063,1.84101,0.16577,-0.701232,-0.458336,0.94913,1.43581,1.37625,-0.545527,-0.524402,4 +1.69662,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.407721,-0.942873,0.171406,-0.0866397,-1.39764,1.80718,-0.0571439,-0.701232,-0.458336,0.94913,1.30755,1.30713,-0.580037,-0.524402,0 +1.69662,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,0.497548,-0.0866397,-1.29496,1.80718,0.16577,-0.362178,-0.458336,1.68167,1.43581,1.44538,-0.40749,-0.524402,4 +1.18853,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,-0.372164,0.606294,-1.11526,1.57037,0.16577,-1.37934,-0.458336,1.3154,1.37168,1.37625,-0.545527,1.11272,4 +1.18853,-0.0461169,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,-0.535235,-0.211012,-1.14093,1.73952,0.388683,-1.04029,-0.458336,1.01018,1.43581,1.37625,-0.511018,-0.524402,1 +-1.3519,-0.822195,0.0754146,-1.48212,-0.300473,-0.0574621,-0.268691,0.349558,-0.716435,-0.154736,0.712899,0.168245,-1.27129,-1.72899,0.654983,-0.458336,-0.882227,-0.872829,-1.04311,-0.545527,1.11272,0 +-1.3519,-0.822195,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.535235,1.17485,0.168245,-1.27129,-1.72899,0.315929,-0.458336,-0.882227,-0.8087,-0.97399,-0.580037,1.11272,2 +-1.3519,-0.822195,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,0.117049,0.0555005,-1.03825,0.318689,-1.72899,-0.701232,-0.458336,-1.06536,-0.872829,-1.11224,-0.614546,-0.524402,0 +-1.3519,-0.822195,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,0.117049,0.073268,-1.19228,0.521664,-1.72899,-1.37934,0.957976,-0.882227,-0.8087,-0.97399,-0.614546,-0.524402,0 +-1.3519,-0.822195,0.118272,-1.48212,-0.638287,-0.0574621,-0.268691,0.582213,-0.829654,-0.535235,0.233176,-1.26929,0.623152,-1.72899,-1.37934,-0.458336,-0.760137,-0.744571,-0.97399,-0.614546,-0.524402,0 +-1.3519,-0.822195,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,0.28012,-0.139942,-1.26929,0.521664,-1.89618,-1.04029,0.957976,-0.882227,-0.872829,-1.04311,-0.649055,-0.524402,0 +-1.3519,-0.822195,0.0111277,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,0.117049,-0.104407,-1.3463,0.72464,-1.72899,-1.37934,-0.458336,-0.882227,-0.8087,-1.04311,-0.614546,-0.524402,0 +-1.3519,-0.822195,0.268275,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.489996,-0.535235,1.22816,0.168245,-1.20363,-1.61754,0.315929,-0.458336,-0.882227,-0.744571,-0.97399,-0.476509,1.11272,2 +-1.3519,-0.822195,0.353991,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.603215,-0.535235,1.26369,-0.0371167,-1.06831,-1.84045,-0.362178,-0.458336,-0.760137,-0.872829,-0.97399,-0.476509,1.11272,2 +-0.945433,0.471268,0.118272,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.535235,-0.122175,-0.47351,-0.121092,-1.22744,-0.0231245,-0.458336,-0.515956,-0.295669,-0.490116,-0.580037,1.11272,1 +-0.945433,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.829654,-0.535235,-0.104407,-1.16661,0.589323,-1.56181,-1.37934,-0.458336,-0.515956,-0.359797,-0.559241,-0.649055,1.11272,0 +-0.843816,1.24735,0.118272,-1.14268,-0.638287,-0.0574621,-0.268691,0.0587384,-0.603215,-0.535235,-0.58413,-0.191138,-0.391726,-1.06025,1.67214,-0.458336,-0.271775,-0.167411,-0.351867,-0.545527,1.11272,1 +-0.843816,-0.0461169,0.0111277,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,-0.535235,-0.58413,-1.39764,1.06293,-1.28317,-1.04029,-0.458336,-0.271775,-0.167411,-0.282742,-0.649055,-0.524402,0 +-0.843816,1.76473,0.0111277,-0.803245,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.535235,-1.01055,1.22072,-1.23746,0.611597,1.33309,-0.458336,-0.271775,-0.167411,-0.351867,-0.511018,-0.524402,1 +-0.843816,0.471268,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.603215,-0.535235,-0.37092,0.116904,-0.865335,-1.17171,-0.362178,-0.458336,-0.271775,-0.167411,-0.351867,-0.580037,1.11272,1 +-0.640581,-0.30481,-0.0745881,-1.14268,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,-0.372164,0.428619,0.322266,-1.06831,-1.06025,-0.0231245,-0.458336,-0.515956,-0.23154,-0.420991,-0.511018,1.11272,1 +-0.640581,-0.0461169,-0.096017,-0.803245,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,0.0199655,-0.832893,0.656981,-0.725884,-0.362178,-0.458336,-0.515956,-0.039153,-0.144492,-0.441999,-0.524402,1 +-0.640581,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,-0.317807,0.552991,0.476287,-1.06831,-0.725884,-0.0231245,-0.458336,-0.515956,-0.423926,-0.559241,-0.614546,1.11272,9 +-0.640581,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-0.829654,-0.317807,0.588526,0.476287,-1.06831,-0.725884,-0.0231245,-0.458336,-0.393865,-0.359797,-0.490116,-0.580037,1.11272,9 +-0.640581,0.471268,-0.0317302,-1.14268,-0.300473,-0.0574621,-0.268691,0.407721,-0.376776,-0.26345,1.31699,0.322266,-1.03448,-1.00453,1.67214,0.957976,0.155542,0.0249759,-0.00624269,-0.165924,1.11272,1 +-0.640581,0.729961,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.603215,-0.535235,1.72565,0.86134,-1.00065,0.221498,-0.362178,-0.458336,-0.0886391,-0.039153,-0.144492,-0.476509,1.11272,1 +-0.437346,-0.0461169,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.716435,-0.535235,0.588526,0.245255,-0.865335,-0.893069,2.0112,-0.458336,-0.271775,-0.039153,-0.282742,-0.545527,1.11272,1 +-0.437346,-0.822195,0.182559,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,-0.480878,-0.122175,-1.21795,0.893786,-1.17171,-0.362178,-0.458336,-0.271775,-0.103282,-0.282742,-0.614546,-0.524402,0 +-0.437346,-0.30481,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.489996,-0.535235,1.61904,0.86134,-1.4066,-0.447242,0.654983,-0.458336,-0.271775,-0.103282,-0.282742,-0.511018,1.11272,2 +-0.437346,0.729961,0.16113,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.376776,-0.535235,-0.601898,-0.884233,0.893786,-0.447242,-0.701232,-0.458336,-0.271775,-0.103282,-0.351867,-0.545527,-0.524402,0 +-0.437346,-0.30481,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,-0.480878,-0.51306,-0.935573,0.961445,-0.447242,-0.362178,-0.458336,-0.271775,-0.039153,-0.213617,-0.614546,-0.524402,0 +-0.437346,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,-0.480878,-0.139942,-1.21795,0.893786,-1.17171,-0.362178,-0.458336,-0.271775,-0.103282,-0.282742,-0.614546,-0.524402,0 +-0.640581,0.988654,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.263557,-0.426521,1.03271,0.347936,-1.00065,-0.893069,-0.701232,-0.458336,-0.271775,-0.167411,-0.282742,-0.40749,1.11272,1 +-0.640581,0.729961,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.263557,-0.535235,1.19262,0.347936,-1.00065,-0.893069,-0.701232,-0.458336,-0.638046,-0.167411,-0.282742,-0.269452,1.11272,1 +-0.640581,0.729961,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.263557,-0.535235,0.783969,0.322266,-1.00065,-0.948798,-0.701232,-0.458336,-0.515956,-0.23154,-0.420991,-0.40749,1.11272,1 +-1.04705,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,-0.426521,1.28146,0.501957,-1.47426,-1.3389,0.994036,-0.458336,-0.515956,-0.423926,-0.559241,-0.511018,1.11272,1 +-1.04705,-0.0461169,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.716435,-0.535235,0.126571,0.0142237,-0.425555,-0.670156,-0.0231245,-0.458336,-0.515956,-0.359797,-0.559241,-0.545527,1.11272,1 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.175066,-0.603215,-0.154736,0.997179,0.0912342,-1.03448,-1.50608,-0.701232,-0.458336,-0.515956,-0.488055,-0.628366,-0.580037,1.11272,0 +-1.04705,0.212576,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.716435,-0.535235,0.073268,0.0142237,-0.425555,-0.670156,-0.0231245,-0.458336,-0.515956,-0.359797,-0.559241,-0.545527,1.11272,1 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.116902,-0.603215,-0.154736,0.997179,0.0912342,-1.03448,-1.50608,-0.701232,-0.458336,-0.515956,-0.488055,-0.628366,-0.580037,1.11272,0 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.116902,-0.603215,-0.154736,0.997179,0.0912342,-1.03448,-1.50608,-0.701232,-0.458336,-0.515956,-0.488055,-0.628366,-0.580037,1.11272,0 +-1.25028,-0.0461169,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,-0.426521,0.410851,0.168245,-1.06831,-1.39462,-0.362178,-0.458336,-0.638046,-0.423926,-0.628366,-0.545527,1.11272,1 +-1.25028,-0.0461169,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,-0.426521,-0.0333371,-1.26929,0.792298,-1.45035,-1.37934,-0.458336,-0.760137,-0.488055,-0.697491,-0.580037,-0.524402,0 +-1.25028,0.471268,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.317807,-0.139942,-1.24362,0.792298,-1.39462,-1.37934,-0.458336,-0.760137,-0.423926,-0.628366,-0.545527,-0.524402,1 +-0.843816,-0.822195,-0.096017,-1.14268,-0.638287,-0.0574621,-0.268691,1.10569,-1.16931,1.96519,-0.424223,-1.26929,0.623152,-1.72899,-1.37934,-0.458336,-0.760137,-0.680442,-0.83574,-0.649055,-0.524402,9 +-0.843816,-0.822195,-0.096017,-1.14268,-0.638287,-0.0574621,-0.268691,1.16385,-1.16931,2.56312,-0.58413,-1.44898,0.72464,-1.95191,-1.04029,-0.458336,-0.760137,-0.680442,-0.83574,-0.649055,1.11272,9 +-0.843816,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,3.54154,-0.832876,-1.603,0.893786,-2.00764,-1.37934,-0.458336,-0.760137,-0.616313,-0.83574,-0.649055,-0.524402,8 +-0.843816,-0.822195,-0.096017,-1.14268,-0.300473,-0.0574621,-0.268691,1.33834,-1.05609,1.04112,-0.193245,0.270926,-1.4066,-1.72899,0.315929,-0.458336,-0.760137,-0.744571,-0.904865,-0.580037,1.11272,9 +-0.843816,-0.822195,-0.117446,-0.803245,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,0.551906,-0.264315,-1.24362,0.521664,-1.84045,-1.04029,-0.458336,-1.06536,-0.872829,-1.11224,-0.614546,-0.524402,9 +-1.04705,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.16385,-0.829654,0.932405,0.783969,1.01536,-1.47426,-0.224329,0.994036,-0.458336,-0.760137,-0.744571,-0.904865,-0.580037,1.11272,9 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-0.942873,1.25855,0.0199655,0.0142237,-0.154921,-0.224329,0.315929,-0.458336,-0.882227,-0.680442,-0.83574,-0.614546,-0.524402,9 +-0.538964,1.24735,-0.0745881,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,0.642198,-0.535235,1.86779,1.37474,-1.13597,1.11315,2.0112,-0.458336,-0.271775,0.153234,-0.00624269,-0.0969054,-0.524402,1 +-0.538964,0.988654,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.376776,-0.535235,0.624061,0.732989,-1.13597,-0.280057,-0.362178,-0.458336,0.0334514,0.153234,0.0628821,-0.441999,1.11272,1 +1.79823,0.729961,-0.0531591,-0.803245,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,0.714977,-0.779573,-0.858563,1.6042,0.778782,-0.362178,-0.458336,1.19331,1.6282,1.5145,-0.511018,-0.524402,1 +1.79823,1.76473,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,-0.535235,-1.29483,-0.858563,1.6042,0.778782,-0.701232,-0.458336,1.43749,1.75646,1.72188,-0.511018,-0.524402,1 +1.79823,-0.30481,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,1.63905,-0.637433,-1.11526,1.6042,0.221498,-0.701232,-0.458336,1.19331,1.37168,1.37625,-0.614546,-0.524402,9 +1.49338,-0.0461169,0.0111277,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,0.878048,-0.139942,-1.14093,1.53654,0.0543129,-0.701232,-0.458336,0.94913,1.11517,1.09975,-0.580037,-0.524402,9 +-0.335729,-0.822195,-0.0103012,0.554496,-0.638287,-0.0574621,-0.268691,1.16385,-0.942873,0.66062,1.08602,0.347936,-0.730018,-0.447242,2.6893,-0.458336,0.338678,0.34562,0.339381,-0.511018,1.11272,4 +-0.335729,-0.30481,-0.0317302,-0.46381,-0.638287,-0.0574621,-0.268691,0.582213,-0.829654,0.878048,1.08602,0.527627,-0.966823,-0.447242,0.994036,-0.458336,-0.515956,-0.23154,-0.351867,-0.303962,1.11272,1 +-0.335729,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,2.23697,-0.566363,-1.32063,0.690811,-1.72899,-0.701232,-0.458336,-1.06536,-0.8087,-1.11224,-0.545527,-2.16152,0 +-0.335729,-0.822195,-0.0103012,-0.803245,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,1.47598,0.162106,-1.03825,0.690811,-1.11598,-0.362178,-0.458336,-1.06536,-0.616313,-0.83574,-0.37298,-2.16152,0 +-0.640581,0.988654,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-1.91883,2.22727,-0.535235,-0.335385,1.37474,-0.899164,1.50325,1.33309,-0.458336,-0.515956,-0.616313,-0.559241,0.903866,-0.524402,5 +-0.640581,0.729961,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-2.03516,2.34049,-0.535235,-0.44199,1.52876,-1.20363,1.33607,1.33309,-0.458336,-0.515956,-0.8087,-0.628366,0.765829,-0.524402,5 +-0.640581,0.988654,-0.203162,0.215061,1.72641,-0.0574621,-0.268691,-1.8025,2.34049,-0.535235,-1.45474,1.73413,-1.37277,1.50325,2.35025,-0.458336,0.94913,-0.680442,-0.559241,4.04422,-0.524402,5 +-0.640581,2.28212,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,-1.977,2.79336,-0.535235,-1.22376,1.73413,-1.37277,1.50325,2.6893,0.957976,-0.271775,-0.552184,-0.490116,0.765829,-0.524402,5 +-0.640581,0.212576,-0.203162,2.93054,0.712969,-0.0574621,-0.268691,-1.977,2.11405,-0.535235,0.339781,0.707319,-1.10214,-0.280057,-0.362178,2.37429,-0.515956,-0.680442,-0.628366,0.558773,1.11272,5 +-0.640581,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.18932,-0.535235,0.730666,0.527627,0.454006,1.89335,0.315929,0.957976,-0.149684,-0.167411,-0.282742,-0.545527,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.890574,0.527627,0.454006,1.89335,0.654983,-0.458336,-0.149684,-0.039153,-0.213617,-0.511018,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.33719,0.415759,-0.535235,1.35253,0.527627,0.454006,1.89335,1.67214,-0.458336,-0.149684,0.0891048,-0.00624269,-0.40749,-2.16152,2 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,1.29923,0.527627,0.454006,1.89335,0.654983,-0.458336,-0.149684,-0.039153,-0.0753675,-0.441999,-2.16152,2 +-0.640581,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,0.748434,-0.858563,0.690811,-0.725884,-0.0231245,-0.458336,-0.577001,-0.295669,-0.490116,-0.580037,-0.524402,0 +-0.538964,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,1.06825,0.168245,0.859957,1.78189,-0.362178,-0.458336,0.643904,1.24342,1.16888,-0.200434,-0.524402,4 +-0.945433,1.24735,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.376776,-0.535235,0.197641,0.553298,-1.03448,-0.502971,0.654983,-0.458336,-0.271775,-0.103282,-0.282742,-0.40749,1.11272,1 +-0.945433,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.115753,-0.489996,-0.535235,0.179873,0.527627,-1.13597,-0.725884,0.315929,-0.458336,-0.271775,-0.167411,-0.282742,-0.476509,1.11272,1 +-0.742198,0.988654,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,-0.317617,-0.858563,0.826128,-0.502971,-0.701232,-0.458336,-0.271775,0.0249759,-0.213617,-0.441999,-0.524402,1 +-0.742198,0.471268,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.116902,-0.716435,-0.535235,0.268711,0.501957,-1.03448,-0.614428,-0.701232,-0.458336,-0.271775,-0.103282,-0.282742,-0.511018,1.11272,1 +-0.945433,1.76473,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,-0.903946,-0.730212,0.420177,-0.893069,-1.04029,-0.458336,-0.699092,-0.295669,-0.559241,-0.40749,-0.524402,1 +-0.945433,2.54081,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,-1.29483,-0.807222,0.555494,-0.837341,-0.362178,-0.458336,-0.515956,-0.295669,-0.490116,-0.476509,-0.524402,1 +-1.04705,-0.30481,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,0.225763,0.926109,0.424947,-1.20363,-1.06025,2.35025,0.957976,-0.638046,-0.552184,-0.766615,-0.511018,1.11272,1 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,-0.535235,1.54797,0.142575,-0.932994,-1.22744,-0.362178,-0.458336,-0.760137,-0.616313,-0.904865,-0.511018,1.11272,2 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,1.3129,-0.335385,0.296596,-1.1698,-1.28317,-0.0231245,-0.458336,-0.638046,-0.552184,-0.697491,-0.649055,1.11272,0 +-1.04705,-0.0461169,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,0.819504,0.219585,-0.932994,-1.06025,-0.701232,-0.458336,-0.760137,-0.488055,-0.766615,-0.511018,1.11272,1 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.348408,-0.489996,0.714977,0.428619,0.322266,-1.1698,-1.22744,-0.0231245,-0.458336,-0.638046,-0.616313,-0.766615,-0.580037,1.11272,0 +-1.04705,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.407721,-0.942873,-0.046022,0.037733,-1.06392,0.758469,-1.06025,-0.0231245,-0.458336,-0.699092,-0.423926,-0.628366,-0.545527,-0.524402,0 +-1.04705,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.942873,-0.100379,-0.104407,-1.26929,0.758469,-1.50608,-1.04029,-0.458336,-0.699092,-0.552184,-0.766615,-0.614546,-0.524402,0 +-1.3519,0.212576,-0.203162,1.5728,0.0373407,-0.0574621,-0.268691,0.175066,0.30254,-0.154736,-0.0155696,1.22072,-1.37277,0.388683,0.994036,2.37429,-0.760137,-0.552184,-0.766615,-0.165924,-0.524402,1 +-1.3519,0.471268,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.524049,-0.489996,0.171406,0.0910356,1.52876,-1.30512,1.16888,2.0112,-0.458336,-0.760137,-0.423926,-0.559241,-0.37298,-0.524402,1 +-1.55514,0.471268,-0.203162,1.91224,0.375155,-0.0574621,-0.268691,-0.348408,1.32151,-0.535235,-0.424223,1.24639,-1.4066,0.388683,0.654983,-0.458336,-0.882227,-0.8087,-0.97399,0.00662268,-0.524402,1 +-0.0308771,-0.30481,0.0111277,-0.46381,0.0373407,-0.0574621,-0.268691,-0.0575893,-0.263557,-0.535235,1.28146,-0.0371167,0.0480547,-0.00141549,0.315929,-0.458336,0.0944967,0.0249759,-0.00624269,-0.338471,-0.524402,5 +-0.0308771,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-0.115753,-0.489996,-0.535235,1.72565,-0.832893,0.927615,-0.280057,-0.362178,-0.458336,-0.271775,0.0249759,-0.144492,-0.476509,-0.524402,2 +-0.538964,0.988654,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,-0.173917,-0.263557,-0.535235,-0.104407,-0.319489,0.623152,0.332955,0.654983,-0.458336,-0.0275938,0.0891048,-0.0753675,-0.476509,-0.524402,1 +0.985296,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,1.3129,-0.122175,-1.11526,1.19825,-0.447242,-0.362178,-0.458336,0.82704,0.730394,0.75413,-0.545527,1.11272,9 +0.985296,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,2.40005,-0.58413,-1.21795,1.26591,-0.558699,-0.362178,-0.458336,0.82704,0.986909,0.89238,-0.649055,1.11272,9 +1.08691,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,-0.154736,0.233176,-0.807222,1.06293,-0.00141549,-0.362178,-0.458336,0.399723,0.538007,0.408506,-0.614546,-0.524402,9 +1.08691,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.480878,0.108803,-0.807222,1.06293,-0.00141549,-0.362178,-0.458336,0.338678,0.473878,0.408506,-0.614546,-0.524402,0 +1.08691,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.16931,2.61747,-0.744038,-1.55166,1.70569,-0.558699,-0.701232,-0.458336,0.82704,0.986909,0.961504,-0.649055,1.11272,9 +1.08691,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.606263,0.073268,-1.11526,1.19825,-0.447242,-0.701232,-0.458336,0.765994,0.730394,0.685005,-0.545527,1.11272,9 +0.883679,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-0.716435,2.29133,0.712899,0.219585,-0.763847,-0.781613,2.6893,-0.458336,0.338678,0.473878,0.408506,-0.545527,1.11272,9 +0.883679,-0.822195,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.150338,-0.26345,2.04546,1.24639,-1.27129,0.611597,2.6893,-0.458336,0.216587,0.409749,0.339381,-0.476509,1.11272,0 +0.883679,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.582213,-0.603215,1.20419,1.12155,0.758659,-1.27129,-0.447242,2.0112,-0.458336,0.399723,0.473878,0.408506,-0.545527,1.11272,0 +1.29015,-0.822195,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,1.10569,-0.942873,1.53033,0.819504,1.11804,-0.66236,1.33607,0.654983,-0.458336,0.582859,0.730394,0.685005,-0.580037,-0.524402,9 +1.29015,-0.822195,0.182559,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-0.942873,2.67183,0.926109,1.04103,-0.66236,1.16888,-0.0231245,-0.458336,0.582859,0.794523,0.685005,-0.580037,-0.524402,9 +1.49338,-0.822195,0.118272,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.28253,3.70461,-0.815108,-1.44898,1.53654,-0.614428,-1.37934,-0.458336,0.643904,0.858651,0.75413,-0.649055,-0.524402,8 +1.49338,-0.822195,0.0539856,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,4.03076,-0.939481,-1.62867,1.73952,-0.670156,-1.04029,-0.458336,0.643904,0.858651,0.75413,-0.649055,-0.524402,8 +1.49338,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.32411,-0.779573,-1.44898,1.53654,-0.614428,-1.04029,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,8 +1.49338,-0.822195,0.332562,-1.48212,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,2.67183,-0.690735,-1.44898,1.53654,-0.614428,-1.04029,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,9 +1.08691,-0.822195,0.0539856,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,2.29133,-0.459758,-1.39764,1.43505,-0.670156,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.649055,-0.524402,9 +1.08691,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,2.8349,-0.779573,-1.50032,1.50271,-0.781613,-0.701232,-0.458336,0.399723,0.602136,0.546756,-0.649055,-0.524402,9 +1.08691,-0.822195,0.225417,-1.48212,-0.638287,-0.0574621,-0.268691,1.39651,-1.16931,0.769334,-0.246547,-1.32063,1.33357,-0.670156,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.649055,-0.524402,9 +1.18853,-0.822195,0.182559,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.16931,1.58469,-0.0688721,-0.42217,1.26591,1.16888,-0.362178,-0.458336,0.460768,0.602136,0.546756,-0.649055,-2.16152,9 +1.18853,-0.822195,0.225417,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.91083,-0.424223,-1.26929,1.19825,-0.781613,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.649055,1.11272,9 +1.18853,-0.822195,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,1.09548,0.0555005,-0.42217,1.26591,1.16888,-0.701232,-0.458336,0.460768,0.602136,0.546756,-0.614546,-2.16152,9 +1.18853,-0.822195,0.225417,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.91083,-0.424223,-1.26929,1.19825,-0.781613,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.649055,1.11272,9 +-0.132494,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.36726,-0.44199,-1.3463,1.09676,-1.11598,-1.04029,-0.458336,-0.21073,0.0249759,-0.144492,-0.649055,-0.524402,9 +0.782061,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,1.39651,-1.05609,3.10669,0.464154,0.193915,-0.831506,-0.948798,-0.701232,-0.458336,0.399723,0.473878,0.408506,-0.580037,1.11272,9 +0.782061,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.16931,3.37847,-0.886178,-1.57733,1.50271,-0.948798,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,1.11272,8 +1.29015,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-0.942873,1.91083,0.499689,-0.730212,0.792298,-0.280057,0.654983,-0.458336,0.94913,0.986909,0.961504,-0.545527,1.11272,9 +1.29015,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.16931,2.61747,-0.672968,-1.3463,1.40122,-0.614428,-0.701232,-0.458336,0.765994,0.92278,0.89238,-0.649055,1.11272,9 +1.29015,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,1.20419,0.233176,-0.961244,1.33357,0.110041,-0.0231245,-0.458336,0.94913,1.05104,1.09975,-0.614546,-0.524402,9 +1.29015,-0.822195,0.0968435,-1.48212,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,1.6934,-0.22878,-0.909903,0.893786,-0.502971,-0.0231245,-0.458336,0.582859,0.730394,0.685005,-0.649055,1.11272,9 +1.29015,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.16931,2.78054,-0.44199,-1.06392,0.893786,-0.837341,-0.0231245,-0.458336,0.582859,0.730394,0.61588,-0.649055,1.11272,9 +1.29015,-0.822195,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,0.714977,-0.175477,-1.29496,1.43505,-0.447242,-1.04029,-0.458336,0.582859,0.794523,0.685005,-0.614546,-0.524402,9 +1.69662,-0.822195,0.268275,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,2.50876,-0.317617,-1.16661,1.26591,-0.447242,-0.0231245,-0.458336,0.765994,0.986909,0.89238,-0.649055,1.11272,9 +1.69662,-0.822195,0.332562,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,4.03076,-0.957248,-1.68001,1.80718,-0.670156,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.649055,-0.524402,8 +1.08691,-0.822195,0.268275,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,2.50876,-0.317617,-1.16661,1.26591,-0.447242,-0.0231245,-0.458336,0.765994,0.986909,0.89238,-0.649055,1.11272,9 +1.69662,-0.822195,0.311133,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,4.03076,-0.957248,-1.68001,1.80718,-0.670156,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.649055,-0.524402,8 +1.69662,-0.822195,0.396849,-1.48212,-0.638287,-0.0574621,-0.268691,1.39651,-1.05609,0.443191,-0.0511046,-1.37197,1.53654,-0.447242,-1.37934,-0.458336,0.82704,1.05104,0.961504,-0.649055,1.11272,8 +1.69662,-0.822195,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,1.85647,-0.15771,-1.14093,1.16442,-0.558699,-0.362178,-0.458336,0.765994,0.92278,0.89238,-0.649055,1.11272,9 +0.172357,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.376776,1.58469,1.45913,0.476287,-0.899164,-0.447242,1.33309,-0.458336,0.338678,0.34562,0.270256,-0.441999,1.11272,4 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,3.32411,-0.22878,0.681649,-0.763847,0.221498,-0.362178,-0.458336,0.338678,0.473878,0.408506,-0.614546,1.11272,8 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,3.32411,-0.22878,0.681649,-0.763847,0.221498,-0.362178,-0.458336,0.338678,0.473878,0.408506,-0.614546,1.11272,8 +0.172357,-0.30481,0.118272,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.376776,0.00833509,1.51244,1.58011,-0.932994,1.89335,2.0112,-0.458336,0.765994,0.538007,0.546756,-0.234943,-0.524402,4 +1.08691,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.05609,2.78054,0.428619,0.270926,-0.763847,-0.670156,-0.362178,-0.458336,0.460768,0.602136,0.546756,-0.580037,1.11272,9 +1.08691,-0.822195,0.311133,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.16931,3.10669,-0.708503,-1.39764,1.43505,-0.670156,-0.701232,-0.458336,0.460768,0.730394,0.61588,-0.649055,-0.524402,9 +1.29015,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.15264,-1.28253,3.86769,-0.939481,-1.55166,1.57037,-0.781613,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.649055,-0.524402,8 +1.29015,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.74776,-0.637433,-1.50032,1.46888,-0.837341,-1.04029,-0.458336,0.277632,0.473878,0.339381,-0.649055,-0.524402,9 +1.29015,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.56312,-0.690735,-1.50032,1.46888,-0.837341,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,9 +1.29015,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,2.50876,-0.690735,-1.50032,1.46888,-0.837341,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,9 +1.29015,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.16931,0.551906,-0.601898,-1.50032,1.46888,-0.837341,-1.37934,-0.458336,0.277632,0.538007,0.477631,-0.649055,-0.524402,9 +1.08691,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.05609,2.78054,0.428619,0.270926,-0.763847,-0.670156,-0.362178,-0.458336,0.460768,0.602136,0.546756,-0.580037,1.11272,9 +1.08691,-0.822195,0.0325567,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.16931,3.65026,-0.0511046,0.245255,-0.763847,-0.725884,-0.701232,-0.458336,0.460768,0.602136,0.546756,-0.614546,1.11272,8 +1.29015,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.28253,3.10669,-0.761806,-1.47465,1.46888,-0.781613,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.614546,-0.524402,8 +0.375592,-0.822195,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-0.942873,0.117049,0.481921,0.373606,-0.865335,-0.614428,-0.701232,-0.458336,0.338678,0.473878,0.339381,-0.545527,1.11272,9 +0.375592,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,0.117049,0.073268,-1.24362,1.26591,-0.614428,-1.04029,-0.458336,0.460768,0.538007,0.477631,-0.614546,-0.524402,9 +0.375592,-0.822195,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.0626921,-0.0155696,-1.29496,1.33357,-0.614428,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,9 +-0.0308771,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.28253,4.24818,-0.868411,-1.603,1.26591,-1.39462,-1.04029,-0.458336,-0.271775,-0.039153,-0.213617,-0.649055,-0.524402,8 +-0.0308771,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,4.41126,-0.939481,-1.62867,1.26591,-1.45035,-1.04029,-0.458336,-0.271775,-0.039153,-0.213617,-0.649055,-0.524402,8 +-0.0308771,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,3.70461,-0.815108,-1.603,1.26591,-1.39462,-1.04029,-0.458336,-0.21073,-0.039153,-0.213617,-0.649055,-0.524402,8 +-0.0308771,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,4.03076,-0.832876,-1.603,1.26591,-1.39462,-1.04029,-0.458336,-0.21073,-0.039153,-0.213617,-0.649055,-0.524402,8 +0.578827,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.05609,2.01955,0.179873,0.219585,-0.932994,-1.06025,0.654983,-0.458336,0.155542,0.281491,0.201132,-0.580037,1.11272,9 +0.578827,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.6934,-0.51306,-1.37197,1.16442,-1.06025,-1.04029,0.957976,0.277632,0.409749,0.339381,-0.649055,1.11272,9 +0.578827,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.67183,-0.708503,-1.52599,1.33357,-1.11598,-1.04029,-0.458336,0.155542,0.281491,0.201132,-0.649055,-0.524402,9 +0.578827,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,2.4544,-0.690735,-1.52599,1.33357,-1.11598,-1.04029,-0.458336,0.155542,0.281491,0.201132,-0.649055,-0.524402,9 +0.578827,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.16931,0.117049,-0.37092,-1.37197,1.16442,-1.06025,-1.04029,0.957976,0.155542,0.34562,0.201132,-0.649055,1.11272,9 +0.782061,-0.822195,0.0111277,-1.14268,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.78054,-0.619665,-1.47465,1.33357,-1.00453,-1.04029,-0.458336,0.338678,0.409749,0.339381,-0.649055,1.11272,9 +0.782061,-0.822195,0.203988,-0.803245,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.12826,-0.601898,-1.55166,1.43505,-1.00453,-1.04029,-0.458336,0.277632,0.409749,0.339381,-0.649055,-0.524402,9 +0.782061,-0.822195,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.16931,2.12826,-0.637433,-1.57733,1.43505,-1.06025,-1.04029,-0.458336,0.338678,0.409749,0.339381,-0.649055,1.11272,9 +0.680444,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,3.92204,-0.797341,-1.603,1.43505,-1.11598,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,8 +0.680444,-0.822195,0.268275,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,4.13947,-0.850643,-1.603,1.43505,-1.11598,-1.04029,-0.458336,0.216587,0.34562,0.201132,-0.649055,-0.524402,8 +0.680444,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,0.606263,0.0199655,-1.24362,1.19825,-0.725884,-0.701232,-0.458336,0.216587,0.409749,0.270256,-0.614546,-0.524402,9 +0.680444,-0.822195,-0.0745881,-1.48212,0.375155,-0.0574621,-0.268691,1.16385,-1.05609,0.823691,-0.193245,-1.16661,0.961445,-0.948798,-1.04029,-0.458336,0.277632,0.217363,0.201132,-0.511018,1.11272,9 +0.680444,-0.822195,-0.0531591,-1.48212,1.05078,-0.0574621,-0.268691,0.814868,-0.489996,0.334477,0.748434,1.50309,-1.00065,1.61471,1.67214,0.957976,0.277632,0.217363,0.201132,-0.269452,-0.524402,6 +-0.335729,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.28012,0.286478,-0.44784,0.0480547,-0.893069,-0.0231245,-0.458336,0.277632,0.217363,0.270256,-0.511018,1.11272,4 +-0.335729,-0.30481,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.150338,-0.535235,1.4236,0.630308,-1.13597,-0.502971,1.33309,-0.458336,-0.0886391,-0.103282,-0.213617,-0.37298,1.11272,0 +-0.0308771,-0.822195,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,0.756704,-0.942873,0.225763,0.570759,0.245255,-0.865335,-0.893069,-0.0231245,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,1.11272,9 +-0.0308771,-0.822195,-0.0103012,-0.803245,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.535235,0.961644,0.245255,-0.865335,-0.893069,-0.701232,-0.458336,-0.0275938,0.217363,0.0628821,-0.580037,1.11272,0 +-0.0308771,-0.822195,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,0.823691,-0.317617,-1.42331,1.19825,-1.11598,-0.701232,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,-0.524402,9 +-0.0308771,-0.822195,0.0325567,-0.124374,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,1.04112,-0.459758,-1.50032,1.19825,-1.28317,-1.04029,-0.458336,-0.0275938,0.0249759,-0.0753675,-0.649055,-0.524402,9 +0.172357,-0.822195,0.0754146,-0.803245,-0.638287,-0.0574621,-0.268691,1.16385,-1.16931,3.10669,-0.477525,-1.08959,0.758469,-1.11598,-0.0231245,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,1.11272,9 +0.172357,-0.822195,0.0754146,-1.14268,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,3.70461,-0.761806,-1.57733,1.29974,-1.28317,-1.04029,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.649055,-0.524402,8 +0.172357,-0.822195,0.139701,-0.803245,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,4.03076,-0.832876,-1.57733,1.29974,-1.28317,-1.04029,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.649055,-0.524402,8 +0.172357,-0.822195,-0.0745881,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,0.606263,0.233176,-0.884233,0.487835,-1.11598,0.315929,-0.458336,0.0334514,0.0249759,-0.0753675,-0.545527,1.11272,9 +0.172357,-0.822195,0.203988,-0.803245,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,2.72619,-0.744038,-1.603,1.33357,-1.28317,-1.04029,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.649055,-0.524402,9 +0.172357,-0.822195,0.0754146,-0.803245,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,3.16104,-0.566363,-1.16661,0.758469,-1.28317,-0.362178,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,1.11272,9 +-0.0308771,-0.822195,-0.0317302,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,-0.317807,-0.0688721,-1.39764,1.16442,-1.11598,-1.04029,-0.458336,-0.149684,0.0249759,-0.144492,-0.649055,-0.524402,9 +0.477209,-0.822195,-0.0317302,-1.14268,0.0373407,-0.0574621,-0.268691,0.98936,-1.05609,1.09548,-0.211012,-0.755882,0.826128,-0.280057,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.476509,-0.524402,9 +0.477209,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,0.606263,-0.175477,-1.24362,1.16442,-0.781613,-1.04029,-0.458336,0.399723,0.473878,0.408506,-0.614546,1.11272,9 +0.477209,-0.822195,-0.0103012,-0.803245,0.0373407,-0.0574621,-0.268691,0.465885,-0.716435,-0.535235,0.197641,-0.576191,0.318689,-0.725884,-0.0231245,-0.458336,0.399723,0.34562,0.339381,-0.476509,1.11272,0 +0.477209,-0.822195,0.0539856,-0.803245,0.0373407,-0.0574621,-0.268691,0.756704,-0.942873,1.20419,-0.246547,-0.370829,0.318689,-0.280057,-0.0231245,-0.458336,0.82704,0.602136,0.477631,-0.338471,1.11272,9 +0.477209,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,1.10569,-1.05609,0.551906,-0.246547,-0.961244,0.792298,-0.781613,-0.701232,-0.458336,0.399723,0.409749,0.408506,-0.580037,1.11272,9 +0.477209,-0.822195,-0.0103012,-0.803245,0.0373407,-0.0574621,-0.268691,0.756704,-0.942873,-0.046022,0.0910356,-0.601861,0.318689,-0.781613,-0.362178,-0.458336,0.399723,0.34562,0.408506,-0.511018,1.11272,9 +0.782061,-0.822195,0.16113,-0.803245,0.0373407,-0.0574621,-0.268691,0.756704,-1.05609,1.6934,-0.459758,-0.832893,0.927615,-0.280057,-0.362178,-0.458336,1.01018,0.92278,1.09975,-0.37298,1.11272,4 +0.782061,0.471268,0.289704,-0.803245,-0.300473,-0.0574621,-0.268691,0.349558,-0.376776,0.986762,-0.530828,1.34907,-1.23746,0.890238,3.02836,-0.458336,1.01018,0.92278,1.09975,-0.303962,1.11272,4 +0.782061,1.50604,0.289704,-1.48212,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.263557,-0.426521,-0.939481,1.11804,-1.20363,0.444411,0.994036,-0.458336,1.01018,0.92278,0.961504,-0.37298,1.11272,1 +0.782061,-0.563502,0.225417,-1.14268,-0.300473,-0.0574621,-0.268691,0.698541,-0.942873,1.53033,-0.37092,-0.832893,0.927615,-0.280057,-0.362178,-0.458336,1.01018,0.92278,1.09975,-0.37298,1.11272,4 +0.782061,-0.563502,0.225417,-1.14268,-0.300473,-0.0574621,-0.268691,0.524049,-0.942873,0.388834,-0.139942,-0.49918,0.927615,0.444411,-0.0231245,-0.458336,1.01018,0.858651,0.961504,-0.40749,-0.524402,4 +0.782061,1.24735,0.311133,-0.803245,0.0373407,-0.0574621,-0.268691,0.175066,-0.489996,-0.480878,-0.690735,1.11804,-1.20363,0.444411,0.994036,-0.458336,0.643904,0.794523,0.89238,-0.40749,1.11272,1 +-0.437346,1.50604,0.546851,-0.46381,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.535235,-0.939481,1.65712,-0.966823,2.00481,-0.0231245,0.957976,-0.271775,0.794523,0.270256,1.42151,-0.524402,3 +-0.234112,2.28212,0.954001,-0.46381,-0.638287,-0.0574621,-0.268691,-0.581064,0.0761009,-0.535235,-0.797341,1.65712,-0.966823,2.00481,0.315929,0.957976,0.0944967,1.24342,0.685005,1.7666,-0.524402,3 +-0.234112,0.729961,0.439707,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,-0.535235,-0.637433,-0.139797,1.06293,1.44752,-1.04029,-0.458336,-0.0275938,0.730394,0.132007,0.662301,-2.16152,1 +-0.0308771,0.471268,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,-0.335385,-1.08959,1.06293,-0.614428,-1.04029,-0.458336,-0.149684,0.153234,-0.0753675,-0.580037,-0.524402,0 +-0.437346,1.50604,0.825428,-0.46381,-0.300473,-0.0574621,-0.268691,-0.639228,0.18932,-0.535235,1.72565,1.63145,-1.10214,1.72616,2.35025,2.37429,2.96362,1.24342,0.61588,4.76892,-0.524402,3 +-0.437346,2.02342,1.68259,0.215061,-0.638287,-0.0574621,-0.268691,-0.639228,0.18932,-0.535235,-1.45474,0.732989,0.183372,1.89335,-0.362178,0.957976,2.96362,1.82058,2.13663,3.00894,1.11272,3 +-0.437346,2.02342,0.439707,-0.46381,-0.638287,-0.0574621,-0.268691,-0.581064,-0.150338,-0.535235,0.073268,0.81,-0.0196038,1.72616,1.33309,-0.458336,3.02467,1.43581,1.03063,4.07873,-0.524402,3 +-0.437346,0.729961,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,-0.464736,-0.263557,-0.535235,0.624061,0.88701,-1.30512,-0.224329,-0.362178,2.37429,-0.638046,0.0891048,-0.0753675,0.0756414,1.11272,1 +-0.437346,1.24735,0.954001,-0.803245,-0.638287,-0.0574621,-0.268691,-0.581064,-0.0371185,-0.535235,0.695131,1.78547,-1.30512,1.72616,0.994036,5.20691,2.96362,1.05104,0.408506,5.4591,-0.524402,1 +-0.437346,1.76473,0.718283,-0.46381,-0.638287,-0.0574621,-0.268691,-0.639228,0.0761009,-0.535235,0.215408,1.78547,-1.30512,1.72616,0.315929,3.7906,0.338678,0.858651,0.339381,1.14543,-0.524402,1 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,1.04112,0.286478,-0.858563,0.893786,-0.391514,0.315929,0.957976,0.521813,0.730394,0.61588,-0.580037,1.11272,0 +0.985296,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,2.12826,-0.51306,-1.47465,1.46888,-0.781613,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.649055,-0.524402,9 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.489996,-0.535235,0.641829,1.16938,-0.865335,1.11315,0.315929,0.957976,0.765994,0.794523,0.75413,-0.511018,1.11272,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,0.117049,0.712899,1.16938,-0.865335,1.11315,0.315929,0.957976,0.460768,0.666265,0.61588,-0.545527,1.11272,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,1.36726,0.304246,-0.858563,0.893786,-0.391514,0.315929,0.957976,0.521813,0.666265,0.546756,-0.580037,1.11272,9 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.046022,0.872807,1.16938,-0.865335,1.11315,0.654983,0.957976,0.460768,0.794523,0.685005,-0.545527,1.11272,0 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.551906,-0.264315,-1.26929,1.6042,-0.112872,-1.04029,-0.458336,1.19331,1.30755,1.30713,-0.614546,1.11272,9 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.606263,-0.29985,-1.37197,1.73952,-0.112872,-1.37934,-0.458336,1.13227,1.30755,1.30713,-0.649055,-0.524402,9 +1.69662,-0.30481,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,0.000574525,0.0761009,0.00833509,0.695131,1.91382,-1.4066,1.83762,1.33309,-0.458336,1.3154,1.24342,1.30713,-0.200434,1.11272,6 +1.69662,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,2.8349,-0.6552,-1.44898,1.94249,0.0543129,-1.37934,-0.458336,1.43749,1.56407,1.58363,-0.614546,-0.524402,9 +1.69662,-0.822195,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,0.000574525,-0.263557,0.28012,-0.193245,1.68279,-1.10214,1.83762,0.315929,-0.458336,1.3154,1.24342,1.30713,-0.37298,1.11272,0 +1.79823,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,3.16104,-0.744038,-1.603,2.04398,-0.112872,-1.37934,-0.458336,1.3154,1.49994,1.5145,-0.649055,-0.524402,9 +1.79823,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.716435,3.26976,-0.761806,-1.603,2.04398,-0.112872,-1.37934,-0.458336,1.3154,1.49994,1.5145,-0.649055,-0.524402,8 +1.69662,-0.822195,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,1.51283,-0.489996,2.01955,-0.601898,1.99083,-1.44043,1.94908,1.33309,-0.458336,1.01018,0.986909,1.16888,0.351716,1.11272,6 +1.69662,-0.822195,-0.203162,-1.48212,1.05078,-0.0574621,-0.268691,1.33834,0.0761009,2.0739,-0.672968,2.0165,-1.44043,2.00481,2.0112,-0.458336,1.01018,0.794523,1.16888,1.21445,1.11272,6 +1.69662,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.23697,-0.601898,-1.52599,1.77335,-0.391514,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,1.11272,9 +1.69662,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.16931,1.14983,-0.495293,-1.52599,1.77335,-0.391514,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,1.11272,9 +1.69662,-0.822195,-0.203162,-1.48212,-0.300473,-0.0574621,-0.268691,1.68733,-1.28253,1.80212,-0.530828,-0.909903,0.995274,-0.335786,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.614546,1.11272,9 +1.69662,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.18262,-0.601898,-1.50032,1.77335,-0.335786,-1.37934,-0.458336,1.01018,1.24342,1.16888,-0.649055,1.11272,9 +1.39177,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,0.334477,-0.139942,0.245255,-0.66236,-0.558699,-1.04029,-0.458336,0.643904,0.730394,0.685005,-0.614546,1.11272,9 +1.39177,-0.822195,-0.203162,-0.803245,0.0373407,-0.0574621,-0.268691,1.39651,-1.16931,0.388834,-0.424223,-1.42331,1.53654,-0.558699,-1.37934,-0.458336,0.338678,0.666265,0.546756,-0.614546,-0.524402,9 +1.39177,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,0.117049,-0.477525,-1.55166,1.70569,-0.558699,-1.37934,-0.458336,0.765994,0.92278,0.823255,-0.649055,-0.524402,9 +1.39177,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,0.117049,-0.0155696,0.245255,-0.66236,-0.558699,-1.04029,-0.458336,0.643904,0.794523,0.75413,-0.614546,1.11272,0 +0.172357,-0.30481,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.698541,-0.829654,-0.317807,0.197641,1.22072,-0.797677,1.33607,-0.362178,-0.458336,0.155542,0.34562,0.201132,-0.545527,-0.524402,0 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.535235,-0.139942,-1.26929,1.26591,-0.670156,-0.701232,-0.458336,-0.149684,0.281491,0.201132,-0.511018,-0.524402,0 +0.172357,-0.30481,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,-0.100379,-0.495293,-0.961244,1.33357,0.110041,-1.04029,-0.458336,0.216587,0.473878,0.339381,-0.614546,-2.16152,9 +0.375592,-0.563502,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.22202,-1.05609,2.01955,-0.424223,-0.139797,1.40122,2.00481,-0.362178,-0.458336,0.338678,0.538007,0.408506,-0.614546,-2.16152,9 +0.375592,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,3.32411,-0.744038,-1.47465,1.40122,-0.893069,-1.04029,-0.458336,0.155542,0.409749,0.270256,-0.614546,-0.524402,8 +0.375592,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,-0.046022,-0.0688721,0.116904,1.06293,2.00481,-0.0231245,-0.458336,0.521813,0.602136,0.546756,-0.580037,-2.16152,9 +0.375592,-0.563502,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.05609,2.0739,-0.619665,-0.114127,1.3674,2.00481,-0.362178,-0.458336,0.155542,0.473878,0.339381,-0.545527,-2.16152,9 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-0.829654,0.225763,0.908342,-0.832893,0.893786,-0.335786,0.315929,-0.458336,0.460768,0.666265,0.546756,-0.580037,-0.524402,9 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.98936,-0.829654,0.878048,0.606294,0.373606,-0.696189,-0.335786,0.994036,0.957976,0.521813,0.666265,0.61588,-0.580037,1.11272,9 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,-0.535235,0.179873,-1.21795,1.19825,-0.670156,-0.701232,0.957976,0.338678,0.538007,0.477631,-0.614546,-0.524402,9 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.04752,-0.829654,-0.154736,0.837272,-1.06392,1.19825,-0.335786,-0.0231245,0.957976,0.765994,0.666265,0.546756,-0.476509,-0.524402,9 +2.30632,-0.822195,-0.160304,0.215061,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,-0.209093,0.464154,-1.11526,1.6042,0.221498,-0.701232,0.957976,1.55958,1.56407,1.58363,-0.580037,1.11272,0 +2.30632,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,0.349558,-0.603215,-0.372164,2.04546,0.527627,0.28486,1.61471,-0.362178,-0.458336,1.43749,1.56407,1.58363,-0.545527,-0.524402,0 +-1.3519,2.54081,-0.0745881,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.0371185,-0.535235,-0.193245,0.476287,-0.865335,-0.391514,0.315929,0.957976,-0.271775,-0.039153,-0.144492,-0.338471,1.11272,1 +-1.25028,2.28212,-0.0103012,-1.14268,-0.638287,-0.0574621,-0.268691,-0.464736,-0.0371185,-0.535235,-0.282082,0.707319,0.28486,2.00481,0.994036,0.957976,-0.271775,-0.23154,-0.420991,-0.37298,-2.16152,1 +-1.25028,2.02342,-0.0531591,-1.14268,-0.638287,-0.0574621,-0.268691,-0.464736,-0.0371185,-0.535235,-0.22878,1.58011,-0.865335,2.00481,1.33309,0.957976,-0.271775,-0.167411,-0.282742,-0.37298,-0.524402,1 +-1.25028,2.02342,-0.096017,-0.803245,-0.638287,-0.0574621,-0.268691,-0.464736,-0.150338,-0.535235,-0.122175,0.399276,-0.865335,-0.558699,0.994036,0.957976,-0.271775,-0.103282,-0.213617,-0.37298,1.11272,1 +-0.843816,1.24735,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.348408,-0.150338,-0.535235,0.570759,-0.191138,0.149542,-0.168601,-0.0231245,-0.458336,0.0334514,0.0249759,-0.0753675,-0.441999,-0.524402,1 +-0.843816,2.02342,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.581064,0.30254,-0.535235,0.712899,1.42608,-0.865335,1.67044,-0.362178,0.957976,-0.638046,-0.103282,-0.282742,-0.234943,-0.524402,1 +-0.843816,0.988654,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.489996,-0.535235,-0.0866397,-0.832893,0.826128,-0.447242,-0.362178,-0.458336,0.0334514,0.153234,0.0628821,-0.545527,-0.524402,1 +1.79823,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,0.931196,-0.0371185,0.606263,0.00219796,2.04217,-1.47426,2.00481,1.33309,3.7906,1.13227,0.92278,1.238,0.869357,1.11272,6 +1.79823,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,0.756704,-0.489996,0.388834,-0.850643,1.37474,-1.47426,0.555868,1.33309,-0.458336,1.13227,0.858651,1.16888,0.627791,1.11272,6 +1.79823,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,0.98936,-0.263557,0.878048,-0.921713,2.04217,-1.47426,2.00481,2.35025,2.37429,1.13227,0.986909,1.238,0.662301,1.11272,6 +1.79823,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,0.814868,-0.0371185,0.28012,0.410851,2.04217,-1.47426,2.00481,1.33309,0.957976,1.13227,0.858651,1.16888,0.800338,1.11272,6 +1.79823,-0.822195,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.582213,1.43473,0.334477,3.59124,2.0165,-1.44043,2.00481,2.6893,10.8722,1.13227,0.986909,1.30713,1.28347,1.11272,6 +1.79823,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,0.349558,1.77439,-0.372164,2.34751,2.0165,-1.44043,2.00481,2.35025,9.45584,1.13227,0.794523,1.16888,1.93915,1.11272,6 +0.883679,-0.563502,-0.138875,-1.14268,0.0373407,-0.0574621,-0.268691,0.465885,-0.0371185,0.00833509,1.29923,1.14371,-1.4066,0.16577,2.6893,3.7906,0.643904,0.538007,0.61588,-0.0623961,1.11272,6 +0.883679,-0.563502,-0.138875,-1.14268,0.0373407,-0.0574621,-0.268691,0.465885,-0.0371185,0.00833509,0.322013,1.14371,-1.4066,0.16577,3.70647,3.7906,0.643904,0.473878,0.61588,0.0411321,1.11272,6 +1.08691,-0.822195,-0.138875,-1.48212,-0.300473,-0.0574621,-0.268691,0.756704,-0.829654,-0.154736,0.0555005,1.01536,-1.23746,0.16577,-0.362178,-0.458336,0.399723,0.92278,0.75413,-0.303962,1.11272,4 +1.08691,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.100379,-0.264315,-1.39764,1.57037,-0.447242,-1.37934,-0.458336,0.643904,0.794523,0.75413,-0.649055,-0.524402,9 +1.08691,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.26345,-0.0688721,-1.14093,1.6042,0.16577,-1.04029,-0.458336,0.582859,1.05104,0.89238,-0.441999,-2.16152,4 +0.883679,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,1.58469,-0.264315,-1.42331,1.43505,-0.725884,-1.04029,-0.458336,0.277632,0.473878,0.339381,-0.649055,-0.524402,9 +0.883679,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,1.58469,-0.29985,-1.44898,1.46888,-0.725884,-1.04029,-0.458336,0.277632,0.473878,0.339381,-0.649055,-0.524402,9 +0.883679,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,1.53033,-0.264315,-1.42331,1.43505,-0.725884,-1.04029,-0.458336,0.277632,0.473878,0.339381,-0.649055,-0.524402,9 +0.172357,0.212576,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.171406,-0.282082,0.630308,-0.797677,0.0543129,0.315929,-0.458336,0.277632,0.409749,0.339381,-0.580037,1.11272,1 +0.172357,-0.563502,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,0.28012,-0.0333371,0.630308,-0.797677,0.0543129,0.315929,-0.458336,0.0944967,0.34562,0.201132,-0.580037,1.11272,0 +0.172357,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.334477,0.0555005,-0.781552,0.656981,-0.614428,-0.0231245,-0.458336,0.0944967,0.281491,0.132007,-0.614546,-0.524402,0 +0.172357,0.988654,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.372164,-0.761806,0.630308,-0.797677,0.0543129,0.315929,-0.458336,0.277632,0.538007,0.408506,-0.580037,1.11272,1 +-0.640581,1.76473,-0.0745881,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,0.642198,-0.535235,1.83225,1.37474,-1.13597,1.11315,2.0112,-0.458336,-0.271775,0.153234,-0.00624269,-0.0969054,-0.524402,1 +-0.0308771,-0.822195,-0.138875,-0.803245,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,0.334477,0.179873,-1.24362,1.06293,-0.948798,-1.04029,-0.458336,-0.0275938,0.0891048,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,0.388834,0.126571,-1.24362,1.06293,-0.948798,-0.701232,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.117446,-1.14268,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,0.171406,0.304246,-1.24362,1.06293,-0.948798,-0.701232,-0.458336,-0.0275938,0.0891048,-0.0753675,-0.614546,-0.524402,0 +-0.234112,0.988654,0.954001,0.215061,-0.300473,-0.0574621,-0.268691,-0.755555,0.981856,-0.535235,1.92109,0.93835,-1.4066,-0.280057,-0.701232,-0.458336,-0.271775,0.0249759,-0.0753675,0.110151,1.11272,1 +0.782061,0.729961,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.290245,0.528978,-0.535235,1.29923,1.16938,-0.797677,1.22461,1.33309,0.957976,0.94913,1.05104,0.961504,-0.165924,1.11272,1 +0.782061,0.212576,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.115753,-0.263557,-0.535235,1.40583,0.758659,-0.797677,0.332955,-1.04029,-0.458336,0.94913,1.05104,0.961504,-0.40749,1.11272,1 +0.782061,1.24735,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.317807,0.357548,0.707319,-0.831506,0.16577,-0.362178,-0.458336,0.338678,0.730394,0.546756,-0.441999,1.11272,1 +-1.3519,-0.0461169,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,0.171406,-0.0511046,-0.909903,0.420177,-1.28317,-0.701232,-0.458336,-1.06536,-0.8087,-1.11224,-0.545527,-0.524402,1 +-1.3519,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,0.606263,-0.211012,-1.32063,0.690811,-1.72899,-0.701232,-0.458336,-1.06536,-0.936957,-1.18136,-0.649055,-2.16152,9 +-1.3519,0.212576,-0.181733,-0.46381,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,-0.535235,0.108803,-0.909903,0.420177,-1.28317,-1.04029,-0.458336,-0.760137,-0.616313,-0.83574,-0.545527,-0.524402,1 +-1.3519,0.729961,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,0.23323,-0.0371185,-0.372164,0.517456,1.09237,-1.1698,0.444411,4.04552,0.957976,-1.2485,-0.488055,-0.628366,0.14466,-0.524402,1 +-1.3519,-0.0461169,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.349558,-0.603215,-0.372164,0.339781,0.578968,-0.763847,-0.00141549,0.994036,-0.458336,-1.2485,-0.488055,-0.697491,0.0756414,-0.524402,1 +1.08691,-0.822195,-0.160304,-1.14268,-0.300473,-0.0574621,-0.268691,1.80365,-0.829654,0.714977,0.499689,1.42608,-0.66236,2.00481,0.315929,-0.458336,0.521813,0.666265,0.61588,-0.545527,-0.524402,9 +1.08691,-0.822195,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,2.09447,-1.16931,1.14983,-0.424223,-0.832893,1.29974,0.332955,-0.701232,-0.458336,0.399723,0.602136,0.477631,-0.649055,-2.16152,8 +1.08691,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,2.15264,-1.16931,1.14983,-0.44199,-0.832893,1.29974,0.332955,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.649055,-2.16152,8 +1.08691,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,2.15264,-1.16931,1.3129,-0.477525,-0.832893,1.29974,0.332955,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.649055,-2.16152,8 +1.79823,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.05609,0.986762,-0.282082,-0.935573,1.23208,-0.00141549,-0.701232,-0.458336,0.888085,1.11517,1.03063,-0.614546,-0.524402,8 +1.79823,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.05609,1.04112,-0.317617,-1.03825,1.23208,-0.224329,-0.701232,-0.458336,0.888085,1.05104,1.03063,-0.614546,1.11272,8 +1.69662,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,2.03631,-1.05609,1.53033,-0.530828,-1.50032,1.84101,-0.224329,-1.37934,-0.458336,0.888085,1.24342,1.16888,-0.614546,-0.524402,8 +1.69662,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.97814,-1.05609,0.388834,-0.193245,-0.678871,1.23208,0.555868,-0.701232,-0.458336,0.888085,0.986909,0.89238,-0.614546,-0.524402,8 +1.69662,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.91998,-1.05609,0.769334,0.0555005,-0.47351,1.0291,0.667325,-1.04029,-0.458336,0.765994,1.11517,1.03063,-0.580037,-0.524402,8 +1.69662,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,2.15264,-1.16931,1.20419,-0.353152,-1.29496,1.43505,-0.447242,-1.37934,-0.458336,0.765994,0.986909,0.89238,-0.614546,1.11272,8 +1.69662,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,2.15264,-1.16931,1.47598,-0.530828,-1.39764,1.57037,-0.447242,-1.37934,-0.458336,0.765994,0.986909,0.89238,-0.649055,-0.524402,8 +1.18853,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,0.873032,-0.942873,-0.100379,0.339781,0.424947,-0.797677,-0.391514,-1.04029,0.957976,0.643904,0.666265,0.685005,-0.511018,1.11272,9 +1.18853,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.046022,-0.0866397,-1.24362,1.40122,-0.391514,-1.04029,-0.458336,0.643904,0.858651,0.75413,-0.649055,-0.524402,9 +1.18853,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,0.756704,-0.942873,-0.26345,-0.122175,-0.627531,0.589323,-0.391514,-1.04029,0.957976,0.643904,0.730394,0.685005,-0.511018,1.11272,9 +1.18853,-0.822195,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,0.582213,-0.942873,-0.535235,-0.15771,-0.627531,0.589323,-0.391514,-1.04029,0.957976,0.765994,0.730394,0.75413,-0.441999,1.11272,0 +0.680444,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.756704,-0.603215,1.20419,0.535224,1.27206,-0.493213,1.94908,1.67214,-0.458336,0.216587,0.409749,0.270256,-0.545527,-0.524402,9 +0.680444,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-0.942873,1.47598,-0.104407,0.142575,-0.324067,-0.224329,0.315929,-0.458336,0.216587,0.34562,0.270256,-0.614546,1.11272,9 +0.578827,-0.30481,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.603215,-0.100379,0.126571,-0.191138,1.13059,1.44752,0.994036,0.957976,0.399723,0.730394,0.61588,-0.511018,-2.16152,4 +0.578827,-0.563502,0.0325567,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.489996,-0.372164,0.215408,1.29773,-1.30512,0.667325,0.654983,0.957976,1.01018,0.794523,0.685005,-0.338471,1.11272,4 +0.985296,-0.822195,-0.160304,-1.14268,-0.638287,-0.0574621,-0.268691,0.814868,-0.829654,0.388834,1.10378,0.347936,-0.66236,-0.335786,2.0112,0.957976,0.460768,0.602136,0.546756,-0.545527,1.11272,9 +0.985296,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,0.497548,-0.29985,-1.37197,1.46888,-0.558699,-0.701232,-0.458336,0.399723,0.602136,0.477631,-0.649055,-0.524402,9 +-0.640581,1.24735,-0.138875,-1.48212,-0.300473,-0.0574621,-0.268691,-0.697392,-0.150338,-0.535235,-0.548595,1.24639,-1.06831,0.945967,0.654983,-0.458336,-0.271775,0.217363,-0.282742,0.282698,-0.524402,1 +-0.640581,1.50604,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,-0.697392,-0.150338,-0.535235,-0.903946,1.27206,-1.06831,1.0017,0.654983,-0.458336,-0.271775,0.281491,-0.213617,0.248188,-0.524402,1 +-0.640581,0.729961,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-0.813719,-0.0371185,-0.535235,-0.22878,0.655978,-0.493213,0.611597,-0.0231245,-0.458336,-0.515956,0.0249759,-0.351867,0.282698,-0.524402,1 +-0.640581,1.76473,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-0.755555,-0.150338,-0.535235,-0.815108,1.24639,-1.06831,0.945967,0.654983,-0.458336,-0.271775,0.281491,-0.213617,0.248188,-0.524402,1 +-1.3519,2.02342,1.03972,-1.14268,-0.638287,-0.0574621,-0.268691,-0.697392,1.20829,-0.535235,0.570759,1.29773,-1.30512,0.667325,2.0112,-0.458336,1.80376,0.92278,1.30713,1.83562,1.11272,3 +-1.3519,2.02342,0.911144,-1.48212,-0.638287,-0.0574621,-0.268691,-0.813719,1.54795,-0.535235,0.393083,1.83681,-1.44043,1.61471,1.67214,-0.458336,1.80376,0.858651,1.238,1.97366,1.11272,3 +-1.3519,2.28212,1.6183,-1.14268,-0.638287,-0.0574621,-0.268691,-0.639228,0.868636,-0.535235,-1.29483,1.78547,-1.37277,1.61471,3.02836,-0.458336,1.80376,1.05104,1.37625,1.28347,1.11272,3 +-1.3519,1.50604,1.74687,-0.803245,-0.638287,-0.0574621,-0.268691,-0.639228,0.528978,-0.535235,0.481921,1.37474,-1.37277,0.723053,0.654983,-0.458336,1.55958,1.11517,1.5145,0.800338,1.11272,3 +-0.640581,2.7995,0.353991,-0.803245,-0.638287,-0.0574621,-0.268691,-0.697392,0.981856,-0.535235,-0.44199,1.09237,-1.10214,0.555868,3.02836,0.957976,-0.271775,0.538007,0.339381,0.69681,1.11272,3 +-0.640581,2.02342,0.503994,-0.803245,-0.638287,-0.0574621,-0.268691,-0.5229,0.0761009,-0.535235,-0.175477,1.09237,-1.10214,0.555868,0.654983,0.957976,-0.515956,0.602136,0.201132,0.903866,1.11272,3 +-0.335729,2.7995,1.7683,-1.14268,-0.638287,-0.0574621,-0.268691,-0.871883,1.20829,-0.535235,0.233176,1.27206,-1.47426,0.332955,2.0112,-0.458336,1.3154,0.986909,1.16888,0.282698,1.11272,3 +-0.335729,3.31689,1.59687,-0.803245,-0.638287,-0.0574621,-0.268691,-0.755555,0.868636,-0.535235,-0.921713,1.58011,-1.47426,1.0017,1.33309,-0.458336,1.3154,1.05104,1.16888,0.213679,1.11272,3 +-0.335729,3.0582,2.26117,-1.48212,-0.638287,-0.0574621,-0.268691,-0.930047,1.43473,-0.535235,1.03271,1.27206,-1.47426,0.332955,2.6893,-0.458336,1.19331,1.05104,1.238,0.17917,1.11272,3 +-0.335729,2.7995,1.59687,-1.14268,-0.638287,-0.0574621,-0.268691,-0.755555,0.868636,-0.535235,-0.459758,1.58011,-1.47426,1.0017,2.0112,-0.458336,1.3154,0.986909,1.16888,0.248188,1.11272,3 +-0.234112,2.7995,0.118272,-1.14268,-0.638287,-0.0574621,-0.268691,-1.04637,2.68015,-0.535235,-0.601898,1.27206,-1.44043,0.388683,2.35025,0.957976,0.765994,0.602136,0.89238,0.489754,1.11272,3 +-0.234112,3.0582,0.16113,-1.14268,-0.638287,-0.0574621,-0.268691,-0.930047,2.11405,-0.535235,-0.193245,1.60578,-1.37277,1.22461,2.0112,0.957976,0.765994,0.602136,0.75413,0.213679,1.11272,3 +-0.335729,1.24735,0.0754146,-0.124374,-0.638287,-0.0574621,-0.268691,-0.639228,0.642198,-0.535235,2.1876,1.22072,-1.33894,0.444411,0.654983,-0.458336,1.01018,0.858651,1.09975,0.248188,1.11272,3 +-0.335729,1.24735,0.0968435,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,0.868636,-0.535235,1.60128,1.22072,-1.4066,0.332955,0.315929,-0.458336,1.3154,0.730394,0.89238,0.69681,1.11272,3 +-0.538964,1.24735,0.0968435,-0.124374,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.535235,0.801736,1.34907,-1.1698,1.0017,0.994036,-0.458336,-0.515956,0.281491,-0.144492,0.213679,-0.524402,1 +-0.538964,0.729961,0.118272,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.150338,-0.535235,0.819504,1.34907,-1.1698,1.0017,1.33309,-0.458336,-0.515956,0.217363,-0.213617,0.213679,-0.524402,1 +2.40794,1.24735,-0.138875,-0.803245,-0.638287,-0.0574621,-0.268691,0.116902,-0.716435,-0.535235,-0.58413,-0.807222,2.01015,1.55898,-1.37934,-0.458336,1.55958,2.01297,1.92925,-0.441999,-2.16152,1 +2.40794,0.729961,-0.117446,-0.803245,-0.638287,-0.0574621,-0.268691,0.175066,-0.829654,-0.535235,-0.459758,-0.807222,2.01015,1.55898,-1.04029,-0.458336,1.68167,2.01297,1.92925,-0.511018,-2.16152,1 +2.40794,1.50604,-0.117446,-1.14268,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,-0.51306,-0.807222,2.01015,1.55898,-1.04029,-0.458336,1.55958,2.0771,1.92925,-0.441999,-2.16152,1 +2.40794,1.24735,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.116902,-0.716435,-0.535235,-0.868411,-0.832893,2.04398,1.55898,-0.701232,-0.458336,1.43749,2.0771,1.92925,-0.338471,-2.16152,1 +2.10309,0.729961,-0.160304,-0.46381,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,-0.139942,-0.114127,0.995274,1.39179,-0.362178,2.37429,1.43749,1.88471,1.791,-0.37298,-0.524402,1 +2.10309,0.988654,-0.181733,-0.803245,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.535235,-0.832876,-0.601861,1.63803,1.39179,-0.701232,0.957976,1.43749,2.01297,1.86013,-0.303962,-0.524402,1 +2.10309,-0.0461169,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,-0.480878,0.179873,-1.01258,1.57037,0.388683,-1.04029,-0.458336,1.43749,1.6282,1.65275,-0.580037,1.11272,0 +2.10309,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,-0.535235,-0.495293,-1.14093,2.01015,0.83451,-1.04029,0.957976,1.43749,1.69233,1.65275,-0.614546,-2.16152,9 +-0.335729,1.24735,0.546851,0.215061,-0.638287,-0.0574621,-0.268691,-0.232081,-0.376776,-0.535235,-0.548595,0.450617,-0.763847,-0.280057,0.315929,0.957976,-0.271775,0.473878,0.270256,-0.0623961,1.11272,1 +-0.335729,0.729961,0.503994,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.535235,-0.22878,0.450617,-0.763847,-0.280057,-0.362178,-0.458336,-0.271775,0.409749,0.0628821,-0.131415,1.11272,1 +-0.335729,1.50604,0.418278,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,-0.797341,0.88701,-0.594701,0.945967,-0.362178,-0.458336,-0.271775,0.409749,0.132007,-0.131415,-0.524402,1 +-0.335729,1.50604,0.675425,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.376776,-0.535235,-0.72627,1.01536,-0.763847,0.945967,-0.362178,-0.458336,0.94913,0.538007,0.546756,-0.0623961,1.11272,3 +-0.742198,0.471268,0.311133,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.0371185,-0.426521,0.446386,1.45175,-0.932994,1.61471,1.67214,-0.458336,-0.515956,-0.103282,-0.351867,-0.269452,-0.524402,1 +-0.742198,1.24735,0.653996,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,0.18932,-0.535235,-0.0688721,1.96516,-1.44043,1.89335,1.67214,-0.458336,-0.271775,0.0891048,-0.282742,-0.200434,-0.524402,1 +-0.742198,-0.30481,-0.096017,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.317807,0.766201,0.399276,-0.932994,-0.670156,-0.362178,-0.458336,-0.515956,-0.359797,-0.490116,-0.545527,1.11272,0 +-0.742198,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.26345,0.339781,-1.11526,0.893786,-0.948798,-1.04029,0.957976,-0.515956,-0.359797,-0.559241,-0.614546,-0.524402,0 +2.50956,1.24735,0.37542,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,-0.489996,-0.535235,0.890574,-0.601861,1.94249,1.89335,-0.0231245,-0.458336,2.96362,2.78252,2.897,-0.131415,-0.524402,3 +2.50956,1.76473,0.418278,-0.46381,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.535235,-1.45474,-0.653201,2.01015,1.89335,-0.701232,-0.458336,2.96362,2.91078,3.10437,-0.269452,1.11272,3 +2.50956,1.76473,0.461136,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.535235,-1.45474,-0.781552,2.1793,1.89335,-1.04029,-0.458336,2.96362,3.03903,3.31175,-0.338471,1.11272,3 +2.50956,2.28212,0.353991,-1.48212,-0.638287,-0.0574621,-0.268691,-0.290245,-0.489996,-0.535235,-0.957248,-0.704542,1.94249,1.67044,-0.701232,-0.458336,2.59735,2.59013,2.75875,-0.303962,-0.524402,3 +0.883679,3.0582,1.14686,-0.803245,-0.300473,-0.0574621,-0.268691,-0.639228,0.642198,-0.535235,-1.01055,1.99083,-1.44043,1.94908,2.6893,-0.458336,2.59735,1.88471,2.27488,1.17994,1.11272,3 +0.883679,2.7995,1.08258,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,-1.45474,-0.216808,1.13059,1.39179,1.33309,-0.458336,2.59735,2.33362,2.6205,0.110151,1.11272,3 +0.883679,2.54081,0.868286,-0.803245,-0.638287,-0.0574621,-0.268691,-0.5229,-0.263557,-0.535235,-1.45474,0.142575,0.623152,1.33607,-0.701232,-0.458336,2.35317,2.46187,2.6205,-0.269452,1.11272,3 +0.883679,4.09297,1.6183,-1.48212,-0.638287,-0.0574621,-0.268691,-0.871883,1.09507,-0.535235,-1.45474,1.88815,-1.27129,2.00481,2.0112,-0.458336,1.9869,1.49994,1.65275,0.627791,1.11272,3 +0.883679,3.31689,1.31829,-1.48212,0.0373407,-0.0574621,-0.268691,-0.871883,2.00083,-0.535235,-1.17046,2.0165,-1.44043,2.00481,2.0112,-0.458336,1.80376,1.24342,1.5145,1.24896,1.11272,3 +0.883679,3.31689,1.08258,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,-1.45474,1.52876,-0.865335,1.89335,0.315929,-0.458336,2.59735,2.46187,2.68962,-0.165924,1.11272,3 +0.375592,-0.0461169,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.603215,0.769334,0.926109,0.681649,-0.797677,0.16577,1.33309,-0.458336,0.338678,0.602136,0.477631,-0.476509,1.11272,1 +0.375592,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.756704,-0.829654,0.66062,0.872807,0.655978,-0.763847,0.16577,-0.362178,-0.458336,0.338678,0.602136,0.408506,-0.545527,1.11272,4 +0.375592,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,1.42162,-0.122175,0.655978,-0.763847,0.16577,-0.362178,-0.458336,0.338678,0.409749,0.339381,-0.614546,1.11272,9 +0.477209,-0.563502,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.376776,0.443191,1.17485,0.81,-0.66236,0.667325,1.33309,0.957976,0.277632,0.409749,0.339381,-0.545527,1.11272,0 +0.477209,-0.563502,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.716435,0.66062,-0.264315,0.81,-0.66236,0.667325,-0.0231245,-0.458336,0.277632,0.409749,0.270256,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-0.829654,0.986762,1.19262,0.578968,-0.730018,0.0543129,-0.0231245,-0.458336,0.399723,0.602136,0.546756,-0.545527,1.11272,9 +0.985296,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.10569,-0.942873,0.986762,0.943877,0.578968,-0.730018,0.0543129,-0.0231245,-0.458336,0.399723,0.602136,0.546756,-0.580037,1.11272,9 +0.985296,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,0.769334,0.393083,1.04103,-1.27129,0.16577,-0.0231245,-0.458336,0.338678,0.602136,0.477631,-0.614546,1.11272,9 +1.18853,0.988654,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.535235,0.0910356,0.553298,-0.66236,0.110041,-0.0231245,-0.458336,1.3154,1.30755,1.30713,-0.476509,1.11272,1 +1.18853,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.535235,-0.282082,-1.26929,1.73952,0.110041,-1.37934,-0.458336,1.19331,1.37168,1.37625,-0.614546,-0.524402,4 +0.680444,-0.563502,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,-0.535235,1.4236,0.964021,-1.23746,0.0543129,0.994036,-0.458336,0.521813,0.666265,0.61588,-0.511018,1.11272,0 +0.680444,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.349558,-0.716435,-0.535235,1.17485,0.347936,-0.730018,-0.447242,-0.0231245,-0.458336,0.338678,0.666265,0.546756,-0.545527,1.11272,0 +1.18853,-0.822195,-0.203162,-1.48212,-0.300473,-0.0574621,-0.268691,1.10569,-1.05609,1.14983,-0.139942,-1.03825,1.0291,-0.558699,-0.0231245,-0.458336,0.521813,0.666265,0.61588,-0.614546,1.11272,9 +1.18853,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,1.63905,-0.51306,-1.44898,1.53654,-0.614428,-1.04029,-0.458336,0.521813,0.730394,0.61588,-0.649055,-0.524402,9 +1.18853,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,0.714977,0.393083,-1.01258,0.995274,-0.558699,-0.0231245,-0.458336,0.521813,0.602136,0.61588,-0.614546,1.11272,9 +0.477209,-0.822195,0.418278,0.215061,0.0373407,-0.0574621,-0.268691,0.698541,-0.942873,0.878048,-0.58413,-0.42217,0.217201,-0.558699,0.315929,-0.458336,0.582859,0.666265,0.685005,-0.545527,1.11272,4 +0.782061,-0.822195,-0.160304,-0.46381,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,0.28012,-0.0155696,-1.21795,1.23208,-0.614428,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.782061,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,0.66062,-0.22878,-1.32063,1.33357,-0.670156,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,9 +0.782061,-0.822195,-0.138875,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.942873,0.66062,-0.0688721,-1.16661,1.16442,-0.614428,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.614546,1.11272,9 +0.273975,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.697392,4.94453,-0.535235,3.80445,1.99083,-1.4066,2.00481,0.315929,3.7906,0.521813,0.986909,0.89238,1.49053,1.11272,1 +0.273975,3.31689,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.697392,4.03878,-0.535235,-0.530828,1.99083,-1.4066,2.00481,2.35025,2.37429,0.521813,1.56407,1.65275,1.90464,1.11272,3 +0.680444,-0.0461169,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-0.697392,4.152,-0.535235,3.75115,1.42608,-1.47426,0.667325,2.0112,0.957976,0.643904,0.538007,0.685005,0.834848,1.11272,5 +0.680444,-0.822195,-0.203162,1.23337,1.3886,-0.0574621,-0.268691,-0.697392,3.0198,-0.535235,2.64956,1.45175,-1.47426,0.723053,1.67214,0.957976,0.338678,0.153234,0.339381,0.282698,1.11272,6 +0.680444,0.729961,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.5229,4.60487,-0.535235,4.71059,2.0165,-1.47426,1.94908,1.33309,0.957976,0.643904,0.858651,0.89238,0.834848,1.11272,1 +0.680444,-0.0461169,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,-0.5229,2.45371,-0.535235,2.40081,1.45175,-1.47426,0.723053,0.315929,-0.458336,0.338678,0.409749,0.477631,0.213679,1.11272,5 +-0.335729,-0.0461169,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,-0.406572,1.77439,-0.535235,3.39579,1.88815,-1.44043,1.72616,0.654983,2.37429,-0.271775,-0.039153,-0.00624269,0.282698,-0.524402,5 +-0.335729,0.471268,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-0.639228,1.32151,-0.535235,0.0910356,1.88815,-1.44043,1.72616,0.994036,2.37429,-0.271775,-0.039153,-0.282742,0.662301,-0.524402,5 +-0.335729,0.212576,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-0.697392,1.66117,-0.535235,0.606294,1.88815,-1.44043,1.72616,1.33309,0.957976,-0.638046,-0.103282,-0.490116,1.17994,-0.524402,5 +-0.335729,-0.822195,-0.203162,-1.48212,1.72641,-0.0574621,-0.268691,-0.581064,0.528978,-0.535235,-0.921713,0.501957,-1.20363,-0.893069,-0.0231245,0.957976,-0.638046,-0.872829,-0.83574,0.0756414,1.11272,6 +-0.538964,-0.563502,-0.203162,1.91224,0.375155,-0.0574621,-0.268691,-0.581064,1.66117,-0.535235,1.38806,1.68279,-1.30512,1.50325,1.67214,0.957976,-0.515956,-0.295669,-0.628366,0.627791,-0.524402,5 +-0.538964,-0.822195,-0.203162,1.91224,1.05078,-0.0574621,-0.268691,-0.0575893,0.868636,-0.535235,0.606294,1.11804,-1.47426,-0.00141549,1.33309,0.957976,-0.515956,-0.744571,-0.697491,-0.0623961,1.11272,5 +-0.538964,-0.30481,-0.203162,2.59111,0.375155,-0.0574621,-0.268691,-0.988211,2.00083,-0.535235,1.19262,1.81114,-1.47426,1.50325,2.0112,-0.458336,-0.760137,-0.103282,-0.697491,1.73209,-0.524402,5 +-0.538964,-0.30481,-0.203162,2.25167,0.0373407,-0.0574621,-0.268691,-1.10454,2.34049,-0.535235,2.09877,1.70846,-1.33894,1.50325,1.67214,0.957976,-0.760137,0.153234,-0.559241,2.07718,-0.524402,1 +-0.538964,0.988654,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-0.115753,1.66117,-0.426521,0.393083,1.47742,-1.44043,0.83451,1.67214,0.957976,-0.271775,-0.167411,-0.213617,0.17917,-0.524402,5 +-0.538964,0.988654,-0.203162,-0.124374,1.05078,-0.0574621,-0.268691,-0.232081,1.32151,-0.535235,-0.761806,2.0165,-1.47426,1.94908,2.35025,0.957976,-0.271775,-0.295669,-0.351867,0.0756414,-0.524402,5 +-0.538964,0.988654,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,0.175066,0.642198,-0.317807,-0.406455,1.81114,-1.44043,1.55898,1.33309,-0.458336,-0.271775,-0.103282,-0.144492,-0.131415,-0.524402,5 +-0.538964,1.24735,-0.203162,1.23337,1.3886,-0.0574621,-0.268691,-0.290245,1.20829,-0.535235,-0.6552,2.0165,-1.47426,1.94908,2.6893,2.37429,-0.271775,-0.295669,-0.351867,0.17917,-0.524402,5 +-0.538964,0.988654,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-0.639228,2.34049,-0.535235,1.24592,1.91382,-1.37277,1.89335,0.654983,2.37429,-0.271775,0.0891048,-0.282742,1.59405,-0.524402,5 +-0.538964,-0.563502,-0.203162,0.893932,1.3886,-0.0574621,-0.268691,-0.464736,1.54795,-0.535235,1.90332,1.47742,-1.44043,0.83451,0.654983,-0.458336,-0.271775,-0.616313,-0.559241,0.17917,-0.524402,6 +-0.538964,0.988654,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,-0.639228,2.79336,-0.535235,2.1876,1.99083,-1.44043,1.94908,0.994036,0.957976,-0.271775,0.409749,-0.144492,2.21522,-0.524402,5 +-0.538964,0.988654,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-0.639228,2.79336,-0.535235,1.83225,1.91382,-1.37277,1.89335,0.994036,2.37429,-0.271775,0.281491,-0.213617,2.07718,-0.524402,5 +-0.538964,1.50604,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.581064,3.13302,-0.535235,3.21812,1.96516,-1.4066,1.94908,0.994036,0.957976,-0.271775,0.794523,0.132007,2.80188,-0.524402,1 +-0.538964,2.54081,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.755555,4.03878,-0.535235,1.38806,1.96516,-1.4066,1.94908,0.994036,2.37429,-0.271775,1.30755,1.72188,4.07873,1.11272,3 +-0.538964,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,-0.268691,-0.5229,1.43473,-0.535235,1.17485,1.47742,-1.44043,0.83451,0.315929,0.957976,-0.271775,-0.680442,-0.628366,0.213679,-0.524402,6 +-0.538964,-0.0461169,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.464736,1.43473,-0.535235,1.58351,1.47742,-1.44043,0.83451,0.994036,-0.458336,-0.271775,-0.552184,-0.420991,0.110151,-0.524402,5 +0.273975,0.212576,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,1.28018,-0.603215,-0.535235,1.60128,1.42608,-1.33894,0.890238,0.315929,-0.458336,0.155542,0.281491,0.201132,-0.40749,1.11272,5 +-1.3519,-0.0461169,-0.0317302,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.535235,0.179873,0.0142237,0.386347,0.667325,0.654983,-0.458336,-0.882227,-0.23154,-0.766615,0.386226,-2.16152,1 +-1.3519,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.535235,0.535224,-1.11526,0.521664,-1.56181,-0.701232,-0.458336,-0.882227,-0.680442,-0.83574,-0.580037,-0.524402,0 +-1.3519,-0.0461169,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.581064,-0.263557,-0.535235,0.250943,-1.16661,0.623152,-1.50608,-1.04029,-0.458336,-0.638046,-0.488055,-0.628366,-0.580037,-0.524402,0 +-1.3519,-0.0461169,-0.0317302,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.535235,0.304246,-0.0884571,0.386347,0.444411,-0.0231245,-0.458336,-0.882227,-0.488055,-0.83574,-0.0969054,-2.16152,1 +-1.3519,-0.0461169,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.376776,-0.535235,0.0910356,-0.165468,0.623152,0.667325,-0.0231245,-0.458336,-0.882227,-0.167411,-0.697491,0.420735,-2.16152,1 +-1.3519,-0.0461169,-0.0745881,-0.124374,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.215408,-0.0884571,0.521664,0.667325,0.994036,-0.458336,-0.882227,-0.23154,-0.766615,0.420735,-2.16152,1 +-1.3519,-0.563502,-0.0317302,-0.46381,-0.300473,-0.0574621,-0.268691,-0.290245,-0.263557,-0.535235,0.837272,1.16938,-1.33894,0.332955,2.0112,-0.458336,-1.37059,-1.06522,-1.45786,-0.165924,-0.524402,1 +-1.3519,-0.822195,-0.0745881,-0.46381,0.0373407,-0.0574621,-0.268691,-0.115753,-0.489996,-0.535235,0.304246,-0.807222,0.28486,-1.28317,-0.362178,-0.458336,-1.37059,-1.32173,-1.52699,-0.614546,-0.524402,0 +-1.3519,-0.822195,-0.0745881,0.554496,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.535235,1.03271,-1.06392,0.420177,-1.61754,-1.04029,-0.458336,-1.00432,-1.00109,-1.18136,-0.545527,-0.524402,0 +-1.3519,-0.0461169,0.225417,-0.124374,-0.638287,-0.0574621,-0.268691,-0.639228,0.18932,-0.535235,0.943877,1.0667,-1.06831,0.555868,0.654983,-0.458336,-1.12641,-0.359797,-0.904865,0.800338,-0.524402,1 +-1.3519,-0.822195,0.0111277,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,1.35253,-0.293819,0.318689,-0.112872,0.654983,-0.458336,-1.12641,-1.06522,-1.25049,-0.511018,-2.16152,2 +-1.3519,-0.822195,-0.096017,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,1.38806,-0.293819,0.318689,-0.112872,-0.0231245,-0.458336,-1.12641,-0.936957,-1.18136,-0.511018,-2.16152,2 +-1.3519,0.729961,0.37542,0.554496,-0.638287,-0.0574621,-0.268691,-0.697392,0.415759,-0.535235,0.250943,1.45175,-1.06831,1.39179,0.994036,-0.458336,-0.760137,0.0891048,-0.420991,1.0419,-0.524402,1 +-1.3519,0.729961,0.16113,1.5728,-0.638287,-0.0574621,-0.268691,-0.697392,0.18932,-0.535235,1.19262,0.193915,0.081884,0.555868,0.315929,0.957976,1.43749,0.473878,0.0628821,1.7666,-0.524402,3 +-1.3519,1.24735,0.182559,1.23337,-0.638287,-0.0574621,-0.268691,-0.697392,0.30254,-0.535235,-1.08162,0.655978,-0.527043,0.555868,0.994036,-0.458336,1.43749,0.409749,-0.00624269,1.93915,-0.524402,3 +-1.3519,0.212576,0.0111277,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,0.18932,-0.535235,0.552991,0.655978,-0.527043,0.555868,-0.0231245,-0.458336,-1.12641,-0.167411,-0.697491,1.11092,-0.524402,1 +1.49338,-0.30481,-0.117446,-0.46381,-0.638287,-0.0574621,-0.268691,1.74549,-0.942873,-0.372164,0.250943,-0.986914,1.57037,0.444411,-0.701232,-0.458336,0.765994,1.11517,1.03063,-0.580037,-0.524402,1 +1.49338,-0.822195,-0.138875,-0.124374,-0.638287,-0.0574621,-0.268691,1.86182,-1.05609,-0.317807,0.322013,-1.29496,1.57037,-0.224329,-1.04029,-0.458336,0.765994,1.05104,1.03063,-0.614546,-0.524402,9 +1.49338,-0.822195,-0.160304,0.215061,-0.638287,-0.0574621,-0.268691,2.03631,-1.05609,-0.26345,0.037733,-1.3463,1.63803,-0.224329,-1.37934,-0.458336,0.765994,1.05104,0.89238,-0.649055,-0.524402,8 +1.49338,-0.822195,-0.138875,0.215061,-0.638287,-0.0574621,-0.268691,1.74549,-0.942873,-0.317807,0.357548,-0.986914,1.57037,0.444411,-1.04029,-0.458336,0.765994,0.986909,0.89238,-0.614546,-2.16152,8 +1.49338,-0.822195,-0.117446,0.215061,-0.638287,-0.0574621,-0.268691,1.80365,-0.942873,-0.317807,0.322013,-0.986914,1.57037,0.444411,-1.04029,-0.458336,0.765994,0.986909,0.89238,-0.614546,-2.16152,9 +1.49338,-0.822195,-0.117446,-0.124374,-0.638287,-0.0574621,-0.268691,1.62916,-0.829654,-0.535235,0.446386,-0.986914,1.57037,0.444411,-1.04029,-0.458336,0.765994,0.986909,0.89238,-0.649055,-2.16152,9 +1.08691,0.729961,-0.0317302,-0.803245,-0.300473,-0.0574621,-0.268691,1.51283,-0.829654,-0.535235,0.197641,0.604638,-0.391726,0.667325,-0.0231245,-0.458336,1.13227,1.24342,1.16888,-0.476509,1.11272,1 +1.08691,-0.30481,0.0111277,-0.803245,-0.638287,-0.0574621,-0.268691,1.68733,-0.829654,-0.535235,0.641829,-0.42217,1.09676,0.890238,-0.701232,-0.458336,1.13227,1.1793,1.16888,-0.476509,-0.524402,4 +1.08691,1.76473,-0.0531591,-1.14268,-0.300473,-0.0574621,-0.268691,1.39651,-0.603215,-0.535235,-0.975016,0.604638,-0.391726,0.667325,-0.362178,-0.458336,1.13227,1.24342,1.16888,-0.441999,1.11272,1 +1.08691,1.24735,-0.0531591,-1.14268,-0.300473,-0.0574621,-0.268691,1.51283,-0.716435,-0.535235,-0.530828,0.707319,-0.391726,0.890238,-0.362178,-0.458336,1.13227,1.24342,1.30713,-0.476509,1.11272,1 +1.08691,0.471268,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-0.489996,-0.535235,0.268711,0.707319,-0.730018,0.332955,-0.0231245,-0.458336,0.521813,0.794523,0.75413,-0.511018,1.11272,1 +1.39177,1.24735,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,1.39651,-0.716435,-0.535235,0.233176,0.296596,0.758469,1.89335,-0.701232,-0.458336,1.13227,1.49994,1.44538,-0.303962,-0.524402,1 +1.39177,0.471268,0.0968435,-0.46381,-0.638287,-0.0574621,-0.268691,1.16385,-0.603215,-0.535235,0.481921,0.0398938,0.893786,1.55898,-1.04029,-0.458336,1.13227,1.43581,1.30713,-0.269452,-0.524402,1 +1.49338,1.24735,-0.096017,-0.124374,-0.638287,-0.0574621,-0.268691,1.51283,-0.716435,-0.535235,0.304246,0.296596,0.758469,1.89335,-0.701232,-0.458336,1.25436,1.56407,1.44538,-0.269452,-0.524402,1 +1.08691,0.729961,-0.0745881,-0.46381,-0.638287,-0.0574621,-0.268691,-0.755555,0.30254,-0.535235,2.06323,0.86134,-0.763847,0.611597,-0.0231245,0.957976,0.643904,0.92278,0.89238,-0.269452,1.11272,1 +1.08691,1.76473,0.0111277,-0.803245,-0.638287,-0.0574621,-0.268691,-0.639228,0.0761009,-0.535235,0.588526,1.24639,-1.23746,0.667325,-0.701232,0.957976,0.643904,0.986909,0.823255,-0.234943,1.11272,1 +1.08691,-0.30481,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,-0.697392,0.528978,-0.535235,2.93384,1.22072,-1.27129,0.555868,0.654983,0.957976,0.82704,0.858651,0.89238,-0.234943,1.11272,1 +1.08691,0.729961,-0.096017,-0.803245,-0.638287,-0.0574621,-0.268691,-0.813719,0.415759,-0.535235,2.36528,0.83567,-0.763847,0.555868,0.315929,0.957976,0.765994,0.92278,0.89238,-0.303962,1.11272,1 +0.985296,0.471268,0.0754146,-0.46381,-0.638287,-0.0574621,-0.268691,-0.464736,0.30254,-0.535235,0.322013,1.68279,-1.13597,1.78189,1.67214,0.957976,0.643904,0.92278,0.823255,-0.37298,-0.524402,1 +1.29015,1.50604,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,-0.348408,0.642198,-0.535235,3.39579,1.52876,-1.47426,0.890238,0.994036,-0.458336,1.01018,1.11517,1.16888,-0.0278867,1.11272,1 +1.29015,2.02342,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,-0.406572,0.642198,-0.535235,3.09375,1.3234,-1.47426,0.444411,-0.0231245,-0.458336,1.01018,1.05104,1.16888,-0.0969054,1.11272,1 +1.29015,1.50604,-0.0745881,-0.803245,-0.638287,-0.0574621,-0.268691,-0.406572,0.755417,-0.535235,3.18258,1.60578,-1.47426,1.05742,1.33309,-0.458336,1.13227,1.24342,1.30713,0.0411321,1.11272,1 +1.29015,3.0582,0.332562,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.535235,-1.20599,1.09237,-0.696189,1.22461,-0.362178,-0.458336,1.19331,1.75646,1.791,-0.200434,1.11272,3 +0.883679,-0.822195,-0.181733,-0.803245,-0.638287,-0.0574621,-0.268691,-0.988211,1.77439,-0.26345,5.10148,0.964021,-1.47426,-0.335786,-1.04029,-0.458336,0.216587,0.34562,0.408506,-0.338471,1.11272,0 +0.883679,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,0.117049,0.464154,0.681649,-1.23746,-0.558699,-0.701232,-0.458336,0.643904,0.602136,0.61588,-0.511018,1.11272,0 +0.883679,1.24735,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,-0.115753,-0.263557,-0.426521,0.0910356,1.55443,-1.44043,1.0017,0.315929,-0.458336,0.521813,1.1793,0.961504,0.00662268,1.11272,1 +0.883679,2.54081,0.0754146,-0.124374,-0.638287,-0.0574621,-0.268691,-0.115753,-0.150338,-0.535235,-0.6552,1.63145,-1.44043,1.16888,0.315929,-0.458336,1.13227,1.49994,1.37625,-0.165924,1.11272,3 +0.883679,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,-0.372164,0.215408,-1.11526,1.46888,-0.00141549,-0.701232,-0.458336,0.521813,0.666265,0.546756,-0.614546,-2.16152,0 +-0.0308771,1.24735,0.16113,-0.124374,-0.638287,-0.0574621,-0.268691,-0.639228,2.00083,-0.535235,3.4491,0.88701,-1.33894,-0.280057,-0.0231245,-0.458336,0.338678,0.153234,0.270256,0.317207,1.11272,1 +-0.0308771,1.24735,0.16113,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,1.32151,-0.535235,1.99216,1.09237,-1.33894,0.16577,-0.362178,-0.458336,0.338678,0.153234,0.201132,0.110151,1.11272,1 +-0.335729,0.988654,0.246846,-0.46381,-0.638287,-0.0574621,-0.268691,-0.115753,1.66117,-0.535235,3.69784,1.11804,-1.4066,0.110041,-0.701232,-0.458336,-0.21073,0.0249759,-0.0753675,0.17917,1.11272,1 +-0.335729,1.50604,0.332562,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,1.32151,-0.535235,3.52017,1.11804,-1.4066,0.110041,-0.701232,-0.458336,-0.21073,0.217363,0.0628821,0.14466,1.11272,1 +-0.132494,2.02342,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-0.581064,1.20829,-0.535235,1.56574,1.14371,-1.4066,0.16577,2.0112,-0.458336,0.216587,0.34562,0.339381,0.489754,1.11272,1 +-1.3519,-0.0461169,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,-0.0575893,0.18932,0.0626921,1.92109,1.58011,-1.23746,1.39179,1.67214,-0.458336,-0.760137,-0.744571,-0.83574,-0.131415,-0.524402,1 +-1.3519,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,0.878048,-0.388688,-1.29496,0.758469,-1.56181,-1.37934,-0.458336,-0.760137,-0.744571,-0.904865,-0.614546,-0.524402,0 +0.0707402,2.54081,-0.0745881,-0.46381,0.375155,-0.0574621,-0.268691,0.000574525,1.54795,-0.535235,-1.45474,1.01536,-1.13597,0.332955,0.315929,-0.458336,0.765994,0.794523,1.03063,0.420735,1.11272,3 +0.0707402,3.57558,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.0587384,0.981856,-0.535235,-1.45474,1.27206,-1.47426,0.332955,0.315929,-0.458336,1.37645,0.986909,1.16888,0.317207,1.11272,3 +1.08691,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.263557,0.00833509,2.40081,1.14371,-0.763847,1.22461,1.67214,-0.458336,0.94913,1.05104,1.03063,-0.441999,1.11272,4 +1.08691,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.603215,0.0626921,0.961644,0.501957,-0.66236,-0.00141549,0.315929,0.957976,0.94913,1.05104,0.961504,-0.545527,1.11272,4 +1.08691,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,-0.26345,-0.37092,-1.52599,1.84101,-0.280057,-1.04029,-0.458336,0.94913,1.24342,1.16888,-0.649055,-0.524402,9 +0.985296,-0.0461169,-0.0531591,-1.48212,-0.300473,-0.0574621,-0.268691,0.175066,-0.263557,-0.372164,0.712899,1.42608,-0.66236,2.00481,1.33309,-0.458336,0.643904,0.794523,0.75413,-0.511018,-0.524402,1 +0.985296,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.582213,-0.829654,-0.26345,0.393083,0.707319,-0.66236,0.444411,-0.701232,-0.458336,0.765994,0.858651,0.823255,-0.614546,1.11272,0 +0.985296,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,-0.535235,0.126571,-0.293819,0.420177,0.0543129,-0.362178,-0.458336,0.643904,0.92278,0.823255,-0.614546,1.11272,0 +0.985296,0.988654,0.182559,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.0371185,-0.535235,0.570759,0.784329,-0.459384,0.945967,0.654983,-0.458336,0.521813,0.794523,0.685005,-0.476509,-0.524402,1 +0.477209,0.212576,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,-0.115753,-0.376776,-0.535235,0.819504,1.14371,-0.763847,1.22461,0.994036,-0.458336,0.399723,0.602136,0.477631,-0.441999,-0.524402,1 +0.477209,0.212576,0.16113,-1.48212,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.961644,1.14371,-0.763847,1.22461,0.315929,-0.458336,0.399723,0.538007,0.408506,-0.441999,-0.524402,1 +0.477209,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,-0.5229,-0.150338,-0.535235,1.4769,0.347936,-0.763847,-0.502971,-0.0231245,-0.458336,0.399723,0.34562,0.270256,-0.476509,1.11272,2 +0.477209,-0.822195,0.0111277,-1.48212,-0.638287,-0.0574621,-0.268691,-0.5229,-0.150338,-0.535235,2.04546,0.501957,-0.763847,-0.168601,-0.362178,-0.458336,0.399723,0.409749,0.270256,-0.476509,1.11272,2 +0.273975,1.24735,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,-0.406572,1.09507,-0.535235,1.99216,1.7598,-1.44043,1.44752,0.315929,6.62322,0.399723,0.473878,0.477631,-0.0623961,1.11272,1 +0.273975,1.50604,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.0371185,-0.535235,-0.22878,2.0165,-1.44043,2.00481,2.6893,-0.458336,0.399723,0.666265,0.61588,-0.37298,-0.524402,1 +-1.04705,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,3.37847,-0.530828,-1.08959,0.487835,-1.56181,-0.362178,-0.458336,-0.882227,-0.680442,-0.904865,-0.614546,-0.524402,8 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.28253,4.08511,-0.868411,-1.52599,0.826128,-1.95191,-1.04029,-0.458336,-0.882227,-0.8087,-0.97399,-0.649055,-0.524402,8 +-1.04705,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.829654,-0.535235,0.393083,-0.47351,-0.324067,-1.56181,-0.0231245,-0.458336,-0.760137,-0.680442,-0.83574,-0.580037,1.11272,9 +-1.04705,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,2.94362,-0.406455,-0.47351,-0.324067,-1.56181,-0.362178,-0.458336,-0.882227,-0.680442,-0.83574,-0.614546,1.11272,9 +-1.04705,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,2.61747,-0.29985,-0.47351,-0.324067,-1.56181,-0.362178,-0.458336,-0.882227,-0.744571,-0.97399,-0.614546,1.11272,9 +-1.04705,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.05233,-0.406455,-1.03825,0.25103,-1.84045,-1.04029,-0.458336,-0.882227,-0.744571,-0.97399,-0.614546,1.11272,9 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,4.41126,-0.939481,-1.57733,0.893786,-1.95191,-0.701232,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-0.524402,8 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,4.3569,-0.957248,-1.57733,0.893786,-1.95191,-0.701232,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-0.524402,8 +-1.04705,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,2.40005,-0.246547,-1.01258,0.217201,-1.84045,-1.37934,-0.458336,-0.882227,-0.872829,-1.04311,-0.614546,1.11272,8 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.26976,-0.672968,-1.32063,0.555494,-1.95191,-0.701232,-0.458336,-0.882227,-0.680442,-0.904865,-0.614546,1.11272,8 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.39651,-1.16931,3.65026,-0.72627,-1.32063,0.555494,-1.95191,-1.04029,-0.458336,-0.882227,-0.744571,-0.97399,-0.649055,1.11272,8 +-0.335729,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.30254,0.0626921,0.108803,0.630308,-1.06831,-0.391514,0.994036,-0.458336,-0.21073,-0.103282,-0.282742,-0.511018,1.11272,1 +-0.335729,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,0.30254,-0.100379,0.250943,1.14371,-1.06831,0.723053,1.67214,-0.458336,-0.21073,-0.039153,-0.213617,-0.476509,-0.524402,1 +-0.335729,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.0761009,0.0626921,-0.175477,-0.986914,0.893786,-0.670156,-0.701232,-0.458336,-0.271775,-0.167411,-0.282742,-0.614546,-0.524402,0 +-0.335729,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.33719,-0.150338,0.117049,-0.104407,-0.909903,0.893786,-0.502971,-1.04029,-0.458336,-0.21073,-0.103282,-0.213617,-0.614546,-0.524402,0 +-0.335729,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.51169,0.0761009,0.0626921,-0.15771,-0.961244,0.859957,-0.670156,-1.04029,-0.458336,-0.271775,-0.23154,-0.351867,-0.580037,-0.524402,0 +-0.335729,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,-0.0371185,0.00833509,-0.44199,-0.986914,0.893786,-0.670156,-0.701232,-0.458336,-0.271775,-0.103282,-0.282742,-0.614546,-0.524402,0 +-0.538964,-0.822195,-0.203162,0.554496,4.09111,-0.0574621,4.81651,-1.39536,5.62385,-0.535235,-1.45474,1.88815,-1.4066,1.78189,2.0112,2.37429,-2.89672,-2.34779,-3.25511,2.62933,-2.16152,6 +0.477209,-0.822195,-0.181733,0.215061,-0.300473,-0.0574621,3.12144,0.582213,0.0761009,0.00833509,0.126571,1.58011,-1.13597,1.55898,1.67214,0.957976,0.277632,-0.488055,-0.00624269,1.93915,-0.524402,6 +0.477209,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,4.81651,0.582213,-0.0371185,0.0626921,0.357548,1.58011,-1.13597,1.55898,2.35025,0.957976,0.155542,-0.552184,-0.0753675,1.93915,-0.524402,6 +0.477209,-0.822195,-0.138875,-0.46381,-0.638287,-0.0574621,3.12144,0.756704,-0.376776,-0.100379,-0.122175,1.22072,-0.831506,1.28034,2.0112,0.957976,0.277632,-0.295669,0.132007,1.45602,-0.524402,6 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,3.12144,0.814868,-0.376776,0.117049,0.322013,1.22072,-0.831506,1.28034,2.6893,0.957976,0.155542,-0.295669,0.132007,1.24896,-0.524402,6 +0.477209,-0.822195,-0.096017,-0.46381,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,-0.046022,-0.0155696,-1.11526,0.927615,-0.893069,-1.04029,-0.458336,0.277632,0.34562,0.270256,-0.614546,1.11272,0 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.225763,-0.211012,-1.29496,1.19825,-0.837341,-0.362178,-0.458336,0.216587,0.34562,0.270256,-0.614546,-0.524402,9 +0.477209,-0.822195,-0.203162,0.554496,0.0373407,-0.0574621,3.12144,0.640377,-0.263557,0.28012,-0.22878,1.58011,-1.13597,1.55898,1.33309,2.37429,0.216587,-0.167411,0.201132,0.972885,-0.524402,6 +0.782061,-0.563502,-0.203162,-1.14268,0.375155,-0.0574621,-0.268691,0.407721,-0.489996,-0.154736,0.233176,1.37474,-1.13597,1.11315,2.6893,2.37429,0.765994,0.281491,0.61588,1.0419,1.11272,6 +0.782061,-0.563502,-0.203162,-1.14268,0.712969,-0.0574621,-0.268691,0.524049,-0.489996,0.117049,0.0555005,1.68279,-1.13597,1.78189,1.33309,2.37429,0.765994,0.153234,0.61588,1.69758,-0.524402,6 +0.782061,-0.822195,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,0.000574525,-0.603215,-0.535235,0.268711,-0.42217,0.318689,-0.391514,0.654983,0.957976,1.01018,0.602136,0.61588,-0.131415,1.11272,0 +0.782061,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,0.225763,-0.0688721,-0.935573,1.06293,-0.280057,-1.04029,-0.458336,0.765994,0.730394,0.75413,-0.580037,1.11272,9 +0.680444,2.28212,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,0.582213,-0.0371185,-0.535235,-0.850643,1.73413,-1.47426,1.33607,0.315929,-0.458336,2.35317,1.82058,1.99838,0.558773,1.11272,3 +0.680444,1.76473,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.582213,-0.0371185,-0.535235,0.304246,1.73413,-1.47426,1.33607,-0.0231245,-0.458336,2.35317,1.88471,2.13663,0.420735,1.11272,3 +0.680444,2.7995,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,0.0761009,-0.535235,-1.45474,1.73413,-1.47426,1.33607,-0.362178,-0.458336,0.765994,1.88471,1.99838,0.731319,1.11272,3 +0.680444,1.76473,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.263557,-0.535235,-1.45474,-0.216808,0.893786,1.0017,-1.04029,-0.458336,2.35317,1.82058,2.13663,0.386226,1.11272,3 +0.680444,2.54081,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,0.0761009,-0.535235,-1.45474,1.73413,-1.47426,1.33607,-0.362178,-0.458336,2.35317,1.82058,1.99838,0.558773,1.11272,3 +0.680444,1.76473,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.150338,-0.535235,-0.708503,1.42608,-1.06831,1.33607,-0.0231245,-0.458336,2.35317,1.88471,2.13663,0.282698,1.11272,3 +0.883679,-0.563502,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,0.175066,-0.150338,-0.535235,2.77393,0.86134,-1.20363,-0.112872,1.33309,-0.458336,0.643904,0.602136,0.61588,-0.37298,1.11272,0 +0.883679,-0.563502,-0.181733,-0.46381,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.535235,0.499689,-0.47351,0.893786,0.444411,-0.362178,-0.458336,0.643904,0.666265,0.61588,-0.580037,-0.524402,0 +0.680444,-0.0461169,-0.138875,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,1.77439,-0.535235,5.79441,1.11804,-0.932994,0.890238,1.67214,2.37429,0.582859,0.666265,0.685005,0.110151,1.11272,1 +-0.132494,-0.822195,6.3541,-0.124374,0.712969,-0.0574621,6.51157,-0.697392,1.54795,-0.535235,-1.45474,1.91382,-1.33894,1.94908,1.67214,2.37429,-3.8124,-2.86082,-4.15373,2.93992,-2.16152,7 +-0.132494,-0.822195,6.18267,-0.803245,0.0373407,-0.0574621,6.51157,-0.581064,1.09507,-0.535235,-1.45474,1.04103,-1.33894,0.0543129,0.315929,0.957976,-3.8124,-3.05321,-4.22286,2.31875,-2.16152,7 +-0.0308771,-0.0461169,2.77546,0.893932,0.0373407,-0.0574621,-0.268691,-1.1627,0.18932,-0.535235,1.17485,-0.0114465,-0.18875,-0.335786,-1.04029,-0.458336,0.155542,0.0249759,-0.00624269,-0.303962,1.11272,5 +-0.0308771,0.471268,3.84691,0.893932,0.0373407,-0.0574621,-0.268691,-1.22087,0.30254,-0.535235,0.837272,0.424947,-0.763847,-0.335786,-0.701232,-0.458336,0.216587,0.0249759,0.0628821,-0.200434,1.11272,5 +-0.0308771,-0.822195,0.0968435,0.215061,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,1.31699,-0.935573,0.656981,-0.948798,-1.04029,-0.458336,-0.21073,-0.039153,-0.144492,-0.545527,-0.524402,2 +-0.0308771,0.471268,3.16118,1.23337,0.375155,-0.0574621,-0.268691,-1.22087,0.30254,-0.535235,1.06825,-0.0114465,-0.18875,-0.335786,-0.701232,-0.458336,0.155542,0.0249759,0.0628821,-0.234943,1.11272,5 +-0.0308771,0.988654,4.83264,0.893932,0.0373407,-0.0574621,-0.268691,-1.10454,0.30254,-0.535235,0.268711,0.424947,-0.763847,-0.335786,-0.701232,-0.458336,0.216587,0.153234,0.201132,-0.269452,1.11272,1 +-0.0308771,0.212576,8.53985,-0.124374,0.375155,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,1.33476,0.93835,-0.899164,0.555868,0.994036,-0.458336,0.338678,-0.616313,-0.213617,1.97366,-0.524402,6 +-0.0308771,-0.822195,7.51126,-0.124374,0.0373407,-0.0574621,3.12144,-1.68618,1.54795,-0.535235,2.36528,0.93835,-0.899164,0.555868,-0.0231245,-0.458336,-1.37059,-0.936957,-1.18136,1.00739,-0.524402,7 +-0.0308771,0.988654,9.54701,-0.46381,0.375155,-0.0574621,-0.268691,-1.27903,0.415759,-0.535235,0.908342,0.91268,-0.865335,0.555868,0.994036,0.957976,0.338678,-0.167411,-0.00624269,0.765829,-0.524402,5 +-0.0308771,1.24735,9.28986,0.215061,1.05078,-0.0574621,-0.268691,-1.33719,0.868636,-0.535235,0.926109,1.40041,-1.37277,0.778782,0.654983,-0.458336,0.338678,-0.423926,-0.00624269,1.73209,1.11272,5 +-0.0308771,0.212576,9.86844,0.215061,0.375155,-0.0574621,1.42637,-1.04637,0.415759,-0.535235,0.233176,1.22072,-1.1698,0.723053,0.994036,0.957976,-0.271775,-0.359797,-0.351867,0.282698,-0.524402,5 +-0.0308771,0.729961,10.0184,0.215061,0.375155,-0.0574621,-0.268691,-0.697392,-0.0371185,-0.535235,-0.495293,0.450617,-0.865335,-0.447242,0.994036,-0.458336,-0.271775,-0.103282,-0.144492,-0.0278867,1.11272,5 +-0.0308771,-0.0461169,9.35415,0.554496,0.712969,-0.0574621,1.42637,-1.33719,0.642198,-0.535235,-0.44199,0.732989,-1.1698,-0.335786,0.315929,-0.458336,-0.271775,-0.680442,-0.559241,0.558773,1.11272,5 +-0.0308771,0.988654,10.1042,0.215061,0.0373407,-0.0574621,-0.268691,-0.871883,0.30254,-0.535235,0.037733,0.501957,-0.865335,-0.335786,-0.0231245,-0.458336,-0.271775,-0.103282,-0.213617,-0.0278867,1.11272,5 +-0.234112,-0.563502,7.70412,-0.46381,0.375155,-0.0574621,3.12144,-1.04637,0.755417,-0.535235,-0.0155696,1.04103,-1.33894,0.0543129,3.36741,-0.458336,-0.515956,-1.44999,-0.697491,2.90541,1.11272,7 +-0.234112,-0.822195,6.97554,-0.46381,0.375155,-0.0574621,3.12144,-0.755555,0.981856,-0.535235,-0.779573,1.47742,-1.33894,1.0017,2.0112,0.957976,-3.8124,-2.28366,-2.49474,4.45833,-2.16152,7 +-0.335729,-0.563502,9.01129,-0.124374,1.05078,-0.0574621,1.42637,-1.27903,0.642198,-0.535235,0.0199655,1.81114,-1.23746,1.89335,4.04552,-0.458336,-0.515956,-0.616313,-0.490116,0.558773,-0.524402,6 +-0.335729,-0.822195,7.21125,-0.46381,0.375155,-0.0574621,4.81651,-1.04637,0.981856,-0.535235,-0.0688721,1.68279,-1.33894,1.44752,3.02836,-0.458336,-0.515956,-1.83476,-1.11224,3.80265,-0.524402,7 +-0.234112,-0.822195,6.71839,-0.803245,0.0373407,-0.0574621,3.12144,0.814868,0.642198,-0.535235,0.730666,1.47742,-1.27129,1.11315,2.35025,-0.458336,-0.21073,-0.936957,-0.490116,1.31798,-0.524402,7 +-0.234112,-0.822195,7.83269,-1.48212,-0.638287,-0.0574621,6.51157,1.91998,-1.16931,-0.535235,-0.104407,-0.550521,0.081884,-1.06025,-0.362178,-0.458336,-1.79791,-0.616313,-0.697491,0.903866,1.11272,8 +-0.335729,-0.822195,7.21125,-1.48212,-0.638287,-0.0574621,4.81651,1.91998,-1.16931,-0.535235,-0.139942,-0.550521,0.081884,-1.06025,-0.362178,-0.458336,-1.79791,-0.744571,-1.11224,0.69681,1.11272,8 +-0.335729,-0.822195,7.36126,-1.48212,-0.638287,-0.0574621,8.20664,1.91998,-1.16931,-0.535235,-1.45474,-1.06392,0.454006,-1.56181,-1.04029,-0.458336,-1.79791,-0.936957,-1.25049,0.14466,-2.16152,8 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.756704,-0.716435,2.61747,0.304246,1.47742,-0.730018,2.00481,1.33309,0.957976,-0.271775,-0.167411,-0.282742,-0.580037,-0.524402,9 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,3.86769,-0.797341,-1.50032,1.09676,-1.45035,-1.04029,-0.458336,-0.271775,-0.167411,-0.282742,-0.649055,-0.524402,8 +-0.335729,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.209093,0.0910356,-1.03825,0.758469,-1.00453,-0.701232,-0.458336,-0.271775,-0.103282,-0.282742,-0.614546,-0.524402,0 +-0.335729,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,0.0626921,-0.104407,-1.29496,1.0291,-1.11598,-1.04029,-0.458336,-0.271775,-0.167411,-0.282742,-0.649055,-0.524402,0 +-0.742198,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,1.04112,-0.122175,-1.14093,0.758469,-1.22744,-0.701232,-0.458336,-0.515956,-0.423926,-0.559241,-0.614546,-0.524402,0 +-0.742198,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,1.63905,-0.264315,-1.11526,0.758469,-1.17171,-0.701232,-0.458336,-0.515956,-0.488055,-0.628366,-0.614546,-0.524402,0 +-0.742198,-0.0461169,-0.096017,-0.124374,0.0373407,-0.0574621,-0.268691,-0.348408,0.868636,-0.535235,3.12928,1.27206,-1.47426,0.332955,1.33309,0.957976,-0.515956,-0.359797,-0.420991,0.00662268,1.11272,1 +-0.742198,0.471268,-0.138875,0.215061,-0.638287,-0.0574621,-0.268691,-0.348408,0.415759,-0.535235,2.34751,0.758659,-1.47426,-0.781613,-0.0231245,-0.458336,-0.271775,-0.295669,-0.420991,-0.303962,1.11272,1 +-1.3519,1.24735,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.232081,0.0761009,-0.26345,1.81449,0.91268,-1.47426,-0.447242,1.33309,-0.458336,-0.515956,-0.359797,-0.559241,-0.269452,1.11272,1 +-0.132494,0.729961,-0.0745881,0.554496,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,0.334477,0.0199655,-0.730212,0.72464,-0.391514,-0.701232,-0.458336,-0.271775,0.217363,0.0628821,-0.40749,-0.524402,1 +-0.132494,1.24735,-0.096017,0.554496,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,-0.535235,0.00219796,-0.730212,0.72464,-0.391514,-0.701232,-0.458336,0.277632,0.409749,0.270256,-0.545527,-0.524402,1 +-0.132494,-0.0461169,-0.096017,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,0.714977,-0.0688721,-0.884233,0.893786,-0.447242,-0.701232,-0.458336,-0.271775,0.0249759,-0.282742,-0.545527,-0.524402,1 +-0.132494,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,1.53033,-0.335385,-1.24362,0.927615,-1.17171,-0.701232,-0.458336,-0.271775,-0.167411,-0.351867,-0.649055,-0.524402,9 +-0.132494,-0.30481,-0.0531591,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,-0.535235,0.730666,-0.755882,0.72464,-0.447242,-0.701232,0.957976,-0.0886391,0.153234,0.0628821,-0.580037,-0.524402,0 +-0.437346,-0.822195,0.0111277,0.215061,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,2.40005,-0.51306,-1.21795,0.826128,-1.28317,-1.04029,-0.458336,-0.393865,-0.295669,-0.420991,-0.649055,-0.524402,9 +-0.437346,-0.822195,-0.0531591,-0.124374,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,3.43283,-0.761806,-1.62867,1.13059,-1.67327,-1.04029,-0.458336,-0.393865,-0.295669,-0.420991,-0.649055,-0.524402,8 +0.985296,-0.822195,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.16931,1.80212,-0.29985,-1.19228,1.26591,-0.502971,-0.701232,-0.458336,0.582859,0.666265,0.61588,-0.614546,-0.524402,9 +0.985296,-0.822195,0.16113,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,2.18262,-0.548595,-1.47465,1.63803,-0.502971,-1.04029,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,9 +0.883679,-0.822195,0.761141,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.26345,0.712899,-0.678871,0.758469,-0.224329,-0.0231245,-0.458336,0.460768,0.666265,0.61588,-0.580037,1.11272,0 +-0.538964,0.729961,0.139701,-0.46381,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,-0.535235,-0.264315,-0.884233,0.927615,-0.391514,-0.0231245,-0.458336,0.155542,0.217363,0.0628821,-0.476509,-0.524402,1 +-0.538964,0.212576,0.0325567,-0.46381,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.535235,-0.29985,-0.884233,0.927615,-0.391514,-0.362178,-0.458336,0.155542,0.217363,0.0628821,-0.476509,-0.524402,1 +-0.437346,-0.822195,-0.0317302,-0.803245,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.535235,0.375316,-0.319489,0.25103,-0.280057,-0.362178,-0.458336,0.155542,0.217363,0.132007,-0.580037,-0.524402,4 +-0.437346,0.729961,0.16113,-0.124374,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,-0.535235,-0.779573,-0.884233,0.927615,-0.391514,-1.37934,-0.458336,-0.271775,0.217363,-0.00624269,-0.269452,-0.524402,1 +-1.3519,-0.0461169,0.16113,-0.124374,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,-0.209093,-0.175477,0.604638,-1.13597,-0.558699,-0.701232,-0.458336,-0.882227,-0.552184,-0.904865,-0.40749,1.11272,1 +-1.3519,0.471268,0.225417,0.215061,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,-0.154736,-0.37092,0.604638,-1.13597,-0.558699,-0.701232,-0.458336,-0.882227,-0.552184,-0.904865,-0.303962,1.11272,1 +-1.3519,-0.822195,-0.117446,-0.124374,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,-0.372164,-0.0155696,-1.32063,0.758469,-1.61754,-1.04029,-0.458336,-0.760137,-0.744571,-0.904865,-0.614546,-0.524402,0 +-1.3519,1.24735,0.439707,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.535235,0.0910356,-0.678871,0.758469,-0.224329,-0.701232,-0.458336,0.94913,0.473878,0.61588,0.282698,1.11272,3 +-1.3519,-0.30481,0.0539856,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,-0.372164,-0.122175,-0.832893,0.758469,-0.558699,-0.362178,-0.458336,-0.882227,-0.616313,-0.904865,-0.476509,-2.16152,0 +-0.945433,1.24735,0.718283,1.23337,-0.638287,-0.0574621,-0.268691,-0.348408,-0.0371185,-0.535235,0.197641,0.065564,0.72464,1.33607,1.67214,0.957976,0.765994,0.666265,0.89238,-0.234943,-0.524402,3 +-0.437346,1.50604,0.546851,-0.46381,-0.638287,-0.0574621,-0.268691,-0.173917,-0.376776,-0.535235,-0.530828,1.09237,-0.62853,1.33607,0.654983,-0.458336,0.765994,0.409749,0.546756,-0.0278867,-0.524402,3 +-0.437346,1.76473,0.653996,-0.124374,-0.638287,-0.0574621,-0.268691,-0.406572,0.0761009,-0.535235,-0.122175,0.065564,0.72464,1.33607,2.0112,0.957976,0.765994,0.666265,0.823255,-0.234943,-0.524402,3 +-0.437346,1.24735,0.825428,0.893932,-0.638287,-0.0574621,-0.268691,-0.406572,0.0761009,-0.535235,0.0555005,0.065564,0.72464,1.33607,1.67214,0.957976,0.765994,0.794523,0.89238,-0.338471,-0.524402,3 +-1.04705,1.24735,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,0.868636,-0.535235,2.32974,0.450617,-1.20363,-1.00453,0.994036,-0.458336,-0.638046,-0.488055,-0.628366,-0.165924,1.11272,1 +-1.04705,1.24735,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.464736,0.18932,-0.535235,1.38806,0.630308,-1.44043,-1.00453,0.654983,0.957976,-0.515956,-0.423926,-0.559241,-0.338471,1.11272,1 +-1.3519,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,0.981856,-0.317807,3.02268,0.93835,-1.20363,0.0543129,-0.0231245,0.957976,-1.00432,-0.680442,-0.83574,-0.0969054,-0.524402,1 +-1.3519,1.50604,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.464736,0.642198,-0.535235,1.69011,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-0.515956,-0.488055,-0.628366,-0.234943,-0.524402,1 +0.578827,0.212576,-0.096017,-0.46381,-0.638287,-0.0574621,-0.268691,0.407721,-0.716435,-0.26345,-0.15771,0.784329,-0.966823,0.110041,-0.701232,-0.458336,0.582859,0.666265,0.61588,-0.476509,1.11272,1 +0.578827,-0.30481,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.100379,-0.317617,-1.37197,1.50271,-0.502971,-1.04029,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,9 +0.883679,-0.563502,-0.203162,0.215061,3.07767,-0.0574621,-0.268691,-1.10454,2.00083,-0.535235,-0.708503,1.65712,-1.37277,1.33607,1.33309,2.37429,0.338678,-0.295669,0.0628821,1.31798,-0.524402,6 +0.883679,-0.822195,-0.203162,-0.46381,4.09111,-0.0574621,-0.268691,-1.91883,3.5859,-0.535235,-1.45474,1.40041,-1.37277,0.778782,3.36741,3.7906,-2.4694,-1.2576,-1.59611,2.28424,-0.524402,6 +0.883679,-0.563502,-0.203162,0.215061,3.41548,-0.0574621,-0.268691,-1.39536,2.56693,-0.535235,-1.11716,1.88815,-1.47426,1.67044,2.6893,0.957976,0.338678,-0.488055,-0.213617,1.83562,-0.524402,6 +0.883679,-0.563502,-0.203162,0.215061,2.40204,-0.0574621,-0.268691,-1.04637,1.54795,-0.535235,-0.957248,1.88815,-1.47426,1.67044,1.33309,-0.458336,0.338678,-0.167411,0.0628821,0.800338,-0.524402,6 +0.883679,-0.563502,-0.203162,0.893932,3.07767,-0.0574621,-0.268691,-1.27903,2.00083,-0.535235,-1.01055,1.88815,-1.47426,1.67044,0.994036,-0.458336,0.338678,-0.359797,-0.0753675,1.28347,-0.524402,6 +0.0707402,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,1.74776,-0.477525,-1.37197,1.16442,-1.06025,-0.701232,-0.458336,-0.149684,0.0249759,-0.144492,-0.614546,-0.524402,9 +0.0707402,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.28253,2.34569,-0.58413,-1.39764,1.19825,-1.06025,-0.701232,-0.458336,-0.149684,0.0249759,-0.144492,-0.614546,-0.524402,8 +0.0707402,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.09447,-1.28253,2.94362,-0.832876,-1.52599,1.23208,-1.28317,-1.04029,-0.458336,-0.149684,-0.039153,-0.144492,-0.649055,-0.524402,8 +0.0707402,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,1.6934,-0.477525,-1.37197,1.16442,-1.06025,-0.701232,-0.458336,-0.149684,0.0249759,-0.144492,-0.614546,-0.524402,8 +-0.335729,-0.563502,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,1.3129,-0.175477,-0.396499,1.06293,0.890238,-0.0231245,-0.458336,-0.515956,-0.167411,-0.420991,-0.545527,-2.16152,0 +-0.335729,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,1.25855,-0.122175,-1.32063,1.06293,-1.11598,-0.701232,-0.458336,-0.515956,-0.23154,-0.420991,-0.580037,-2.16152,0 +-0.335729,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-1.05609,1.3129,-0.246547,-1.26929,1.06293,-1.00453,-1.04029,-0.458336,-0.515956,-0.167411,-0.351867,-0.545527,-2.16152,0 +-0.335729,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-1.05609,1.47598,-0.282082,-1.26929,1.06293,-1.00453,-0.701232,-0.458336,-0.515956,-0.167411,-0.420991,-0.580037,-2.16152,0 +-0.437346,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.263557,-0.209093,2.43635,0.527627,-1.4066,-1.17171,-0.362178,-0.458336,-0.393865,-0.295669,-0.420991,-0.40749,1.11272,0 +-0.437346,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.489996,0.171406,0.535224,0.0142237,-0.932994,-1.50608,-1.04029,-0.458336,-0.393865,-0.295669,-0.420991,-0.580037,1.11272,0 +-0.437346,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-0.829654,-0.426521,0.464154,1.3234,-0.966823,1.28034,0.994036,0.957976,-0.515956,-0.167411,-0.351867,-0.476509,-0.524402,1 +-0.437346,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.426521,0.162106,-1.29496,0.961445,-1.22744,-1.37934,-0.458336,-0.33282,-0.167411,-0.351867,-0.614546,-0.524402,9 +-0.437346,-0.0461169,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.154736,-0.264315,-0.0884571,0.589323,0.778782,-0.0231245,-0.458336,0.338678,0.217363,0.132007,-0.40749,-0.524402,1 +-0.437346,0.212576,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.26345,-0.424223,-1.06392,0.927615,-0.781613,-0.701232,-0.458336,0.338678,0.153234,0.0628821,-0.40749,-0.524402,1 +-0.437346,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,0.225763,-0.104407,-1.16661,1.13059,-0.670156,-1.37934,-0.458336,0.0944967,0.0249759,-0.144492,-0.511018,-2.16152,4 +-0.437346,-0.0461169,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.489996,0.606263,1.99216,1.22072,-0.932994,1.11315,4.72363,-0.458336,-0.271775,0.0249759,-0.0753675,-0.40749,-0.524402,1 +0.782061,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,1.85647,0.179873,0.193915,-0.797677,-0.893069,-0.701232,-0.458336,0.338678,0.409749,0.339381,-0.614546,1.11272,9 +0.782061,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.28253,2.8349,-0.690735,-1.50032,1.3674,-1.00453,-1.04029,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,9 +0.782061,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.04112,-0.51306,-1.47465,1.40122,-0.893069,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,1.11272,9 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,3.2154,-0.637433,0.142575,-0.899164,-1.17171,-0.701232,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.649055,1.11272,9 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,3.37847,-0.761806,-1.55166,1.33357,-1.17171,-1.04029,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.649055,-0.524402,8 +0.0707402,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.28253,4.41126,-1.22376,-1.73135,1.33357,-1.56181,-1.04029,-0.458336,-0.149684,-0.039153,-0.144492,-0.649055,1.11272,8 +0.0707402,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.91998,-1.28253,4.3569,-1.22376,-1.73135,1.33357,-1.56181,-1.04029,-0.458336,-0.149684,-0.039153,-0.144492,-0.649055,1.11272,8 +-0.335729,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,1.80365,-1.28253,4.03076,-1.09939,-1.08959,0.386347,-1.72899,0.654983,-0.458336,-0.393865,-0.295669,-0.420991,-0.614546,1.11272,8 +-0.335729,-0.822195,-0.138875,-1.48212,0.375155,-0.0574621,-0.268691,1.571,-1.05609,1.74776,-1.01055,-0.268148,0.386347,0.0543129,0.654983,-0.458336,-0.393865,-0.423926,-0.490116,-0.545527,-0.524402,9 +-0.335729,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,4.41126,-1.15269,-1.65434,1.13059,-1.72899,-1.04029,-0.458336,-0.454911,-0.295669,-0.490116,-0.649055,1.11272,8 +-0.335729,-0.822195,-0.160304,-1.48212,0.0373407,-0.0574621,-0.268691,1.62916,-1.16931,3.05233,-1.08162,-0.268148,0.386347,0.0543129,0.654983,-0.458336,-0.454911,-0.359797,-0.490116,-0.614546,-0.524402,9 +0.375592,-0.822195,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.63905,-0.282082,-1.06392,1.13059,-0.447242,-0.701232,-0.458336,0.0334514,0.409749,0.201132,-0.545527,-0.524402,4 +0.375592,-0.822195,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,1.3129,-0.22878,-1.19228,1.13059,-0.725884,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.614546,-0.524402,4 +0.375592,-0.822195,-0.117446,-1.14268,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,1.20419,-0.211012,-1.19228,1.13059,-0.725884,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.614546,-0.524402,9 +0.375592,-0.822195,-0.117446,-1.14268,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,1.09548,-0.193245,-1.19228,1.13059,-0.725884,-0.701232,-0.458336,0.0334514,0.281491,0.0628821,-0.614546,-0.524402,9 +-0.538964,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.28253,1.20419,-0.15771,-1.24362,0.961445,-1.11598,-1.04029,-0.458336,-0.515956,-0.167411,-0.351867,-0.545527,-0.524402,4 +-0.538964,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,1.53033,-0.193245,-1.24362,0.961445,-1.11598,-1.04029,-0.458336,-0.515956,-0.295669,-0.490116,-0.614546,-0.524402,9 +-0.538964,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,1.20419,-0.246547,-1.37197,1.13059,-1.11598,-0.701232,-0.458336,-0.271775,0.0249759,-0.213617,-0.580037,-0.524402,4 +-0.538964,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.28253,1.91083,-0.22878,-1.24362,0.961445,-1.11598,-1.04029,-0.458336,-0.271775,-0.295669,-0.420991,-0.614546,-0.524402,9 +-0.0308771,-0.822195,0.0539856,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.05609,0.823691,0.322013,-0.319489,1.13059,1.16888,0.315929,-0.458336,-0.271775,0.0891048,-0.0753675,-0.511018,-2.16152,9 +-0.0308771,-0.822195,0.0968435,-1.48212,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,0.551906,0.108803,-0.986914,0.72464,-0.948798,-0.701232,-0.458336,-0.271775,0.0891048,-0.144492,-0.545527,-0.524402,9 +-1.65675,-0.563502,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.716435,-0.100379,0.677364,0.168245,-1.27129,-1.72899,0.654983,-0.458336,-0.882227,-0.872829,-1.04311,-0.545527,1.11272,0 +-1.65675,-0.822195,0.0325567,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.046022,0.908342,0.168245,-1.27129,-1.72899,0.315929,-0.458336,-0.882227,-0.8087,-0.97399,-0.580037,1.11272,0 +-1.04705,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,-0.426521,1.28146,0.501957,-1.47426,-1.3389,0.994036,-0.458336,-0.515956,-0.423926,-0.559241,-0.511018,1.11272,1 +-1.04705,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,-0.372164,1.08602,0.168245,-1.03448,-1.3389,0.994036,-0.458336,-0.638046,-0.423926,-0.559241,-0.476509,1.11272,1 +-1.04705,0.212576,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.716435,-0.535235,-0.139942,0.0142237,-0.425555,-0.670156,-0.0231245,-0.458336,-0.638046,-0.359797,-0.490116,-0.511018,1.11272,1 +-1.04705,-0.0461169,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.317807,1.17485,0.296596,-1.20363,-1.3389,0.994036,-0.458336,-0.515956,-0.423926,-0.559241,-0.476509,1.11272,1 +-1.04705,-0.0461169,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.317807,1.17485,0.296596,-1.20363,-1.3389,0.994036,-0.458336,-0.515956,-0.423926,-0.559241,-0.476509,1.11272,1 +1.29015,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,0.465885,-0.716435,1.20419,0.00219796,0.0398938,-0.0196038,0.0543129,-0.0231245,-0.458336,0.765994,0.794523,0.823255,-0.441999,1.11272,0 +1.29015,-0.822195,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,0.291394,-0.603215,1.20419,0.073268,0.0398938,-0.0196038,0.0543129,-0.362178,-0.458336,0.888085,0.794523,0.89238,-0.338471,1.11272,0 +1.29015,-0.822195,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,0.116902,-0.489996,1.20419,0.0910356,0.245255,-0.256409,0.110041,-0.362178,-0.458336,0.888085,0.794523,0.89238,-0.269452,1.11272,0 +1.29015,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,1.14983,-0.175477,-1.32063,1.46888,-0.447242,-0.701232,-0.458336,0.765994,0.794523,0.823255,-0.614546,-0.524402,9 +1.29015,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,1.25855,-0.211012,-1.32063,1.50271,-0.391514,-1.04029,-0.458336,0.765994,0.794523,0.823255,-0.614546,-0.524402,9 +1.29015,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,1.58469,-0.211012,-1.32063,1.46888,-0.447242,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.614546,1.11272,9 +1.29015,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,1.58469,-0.211012,-1.32063,1.46888,-0.447242,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.614546,1.11272,9 +1.29015,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,1.85647,-0.282082,-1.24362,1.3674,-0.447242,-0.362178,-0.458336,0.888085,0.986909,0.961504,-0.614546,1.11272,9 +1.29015,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,2.4544,-0.637433,-1.52599,1.73952,-0.447242,-1.37934,-0.458336,0.888085,0.986909,0.961504,-0.649055,-0.524402,9 +1.29015,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,1.04752,-1.05609,1.6934,-0.211012,-1.08959,1.3674,-0.112872,-0.0231245,-0.458336,0.888085,0.986909,0.961504,-0.614546,-0.524402,9 +1.29015,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,1.25855,-0.139942,-1.03825,1.3674,-0.00141549,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.614546,-0.524402,9 +1.29015,-0.822195,-0.203162,0.215061,2.06422,-0.0574621,-0.268691,-1.1627,0.642198,0.28012,-0.317617,0.270926,-0.256409,0.16577,0.315929,-0.458336,0.82704,0.34562,0.477631,0.420735,1.11272,6 +1.29015,-0.563502,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.10454,0.415759,-0.046022,0.730666,0.245255,-0.256409,0.110041,-0.362178,-0.458336,0.82704,0.473878,0.546756,0.110151,1.11272,6 +1.29015,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.175066,-0.829654,1.14983,0.162106,-0.704542,0.893786,-0.0571439,-0.362178,-0.458336,1.37645,1.30755,1.30713,-0.476509,1.11272,0 +1.29015,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,1.20419,0.00219796,-1.11526,1.43505,-0.0571439,-0.701232,0.957976,1.37645,1.37168,1.37625,-0.580037,1.11272,0 +1.29015,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,1.20419,0.00219796,-1.11526,1.43505,-0.0571439,-0.701232,0.957976,1.37645,1.37168,1.37625,-0.580037,1.11272,4 +1.29015,-0.563502,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,-0.290245,-0.376776,1.36726,-0.122175,0.450617,-0.324067,0.444411,-0.701232,0.957976,1.19331,1.05104,1.238,-0.0623961,1.11272,0 +1.29015,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,2.34569,-0.246547,-0.653201,0.826128,-0.0571439,0.315929,-0.458336,1.19331,1.24342,1.30713,-0.580037,1.11272,4 +1.29015,-0.822195,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,0.349558,-0.716435,1.85647,-0.0155696,-0.0114465,-0.0196038,-0.0571439,-0.0231245,0.957976,1.19331,1.11517,1.238,-0.37298,1.11272,4 +1.29015,-0.0461169,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.581064,-0.0371185,1.14983,-0.175477,0.219585,-0.0196038,0.444411,-0.701232,2.37429,1.49854,1.11517,1.238,0.14466,1.11272,5 +1.29015,-0.0461169,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.5229,-0.150338,1.25855,-0.22878,0.193915,0.0142255,0.444411,-0.701232,3.7906,1.49854,1.24342,1.37625,0.00662268,1.11272,5 +1.29015,0.212576,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-0.930047,0.18932,0.66062,-0.29985,0.450617,-0.324067,0.444411,-1.04029,0.957976,1.49854,0.986909,1.238,0.593282,1.11272,5 +1.29015,-0.0461169,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-1.10454,0.30254,-0.535235,-0.317617,0.578968,-0.459384,0.50014,-0.0231245,-0.458336,0.643904,0.858651,0.89238,0.317207,1.11272,5 +1.29015,-0.822195,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.10454,0.0761009,0.28012,-0.264315,0.322266,-0.459384,-0.0571439,-0.0231245,-0.458336,0.643904,0.666265,0.89238,0.17917,1.11272,6 +1.29015,-0.30481,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.10454,0.0761009,0.334477,-0.264315,0.373606,-0.459384,0.0543129,0.315929,-0.458336,0.643904,0.730394,0.89238,0.213679,1.11272,6 +1.89985,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,2.56312,-0.0333371,-0.884233,1.16442,-0.00141549,-0.701232,-0.458336,1.37645,1.43581,1.5145,-0.580037,1.11272,9 +1.89985,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,2.18262,0.162106,-0.884233,1.16442,-0.00141549,-0.701232,-0.458336,1.37645,1.43581,1.5145,-0.580037,1.11272,0 +1.89985,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,2.94362,-0.37092,-0.935573,1.19825,-0.0571439,-0.362178,0.957976,1.37645,1.43581,1.5145,-0.614546,1.11272,9 +1.89985,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,2.67183,-0.193245,-0.935573,1.19825,-0.0571439,-0.362178,0.957976,1.37645,1.43581,1.5145,-0.614546,1.11272,9 +1.89985,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,3.10669,-0.761806,-1.55166,1.97632,-0.112872,-1.04029,-0.458336,1.37645,1.49994,1.5145,-0.649055,1.11272,9 +1.89985,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,2.8349,-0.744038,-1.47465,1.90866,-0.0571439,-1.04029,-0.458336,1.37645,1.49994,1.5145,-0.649055,1.11272,9 +1.89985,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,3.32411,-0.424223,-1.03825,1.3674,-0.00141549,-0.0231245,-0.458336,1.37645,1.49994,1.5145,-0.614546,1.11272,8 +1.89985,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,3.48719,-0.264315,-0.755882,0.995274,-0.00141549,-0.0231245,-0.458336,1.37645,1.49994,1.5145,-0.614546,1.11272,8 +1.89985,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,2.67183,-0.459758,-1.16661,1.43505,-0.168601,-1.37934,-0.458336,1.3154,1.37168,1.37625,-0.614546,1.11272,9 +1.89985,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,0.640377,-0.942873,2.0739,-0.193245,-0.44784,0.555494,-0.0571439,-0.0231245,3.7906,1.3154,1.24342,1.30713,-0.511018,1.11272,0 +1.89985,-0.822195,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,0.465885,-0.829654,1.91083,-0.264315,-0.165468,0.183372,-0.0571439,-0.0231245,3.7906,1.3154,1.24342,1.37625,-0.476509,1.11272,0 +1.89985,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,2.8349,0.233176,-0.832893,1.09676,-0.00141549,-0.362178,0.957976,1.37645,1.43581,1.44538,-0.580037,1.11272,9 +1.89985,-0.822195,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,0.640377,-0.942873,2.67183,-0.122175,-0.42217,0.555494,-0.00141549,-0.362178,2.37429,1.3154,1.30755,1.37625,-0.511018,1.11272,0 +1.89985,-0.822195,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,0.582213,-0.829654,2.18262,-0.246547,-0.44784,0.555494,-0.0571439,-0.0231245,3.7906,1.3154,1.24342,1.37625,-0.476509,1.11272,0 +1.89985,-0.822195,-0.203162,-0.803245,0.0373407,-0.0574621,-0.268691,0.814868,-0.942873,2.78054,-0.850643,-0.242478,0.183372,-0.224329,-0.0231245,3.7906,1.3154,1.30755,1.37625,-0.511018,1.11272,9 +1.89985,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,0.524049,-0.829654,1.58469,-0.246547,-0.242478,0.183372,-0.224329,-0.362178,2.37429,1.19331,1.1793,1.238,-0.476509,1.11272,0 +1.89985,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,1.80212,0.0910356,-0.755882,0.995274,-0.00141549,-0.0231245,-0.458336,1.37645,1.49994,1.58363,-0.614546,1.11272,0 +-0.538964,0.988654,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,-1.39536,1.20829,-0.535235,-0.637433,0.784329,-0.797677,0.388683,0.994036,0.957976,1.07122,0.34562,0.408506,0.938376,1.11272,5 +-0.538964,0.729961,-0.203162,-0.803245,2.73985,-0.0574621,-0.268691,-1.8025,2.22727,-0.535235,-0.797341,1.11804,-1.23746,0.388683,0.654983,0.957976,-0.0886391,-0.295669,-0.144492,0.248188,1.11272,5 +-0.538964,0.212576,-0.203162,-0.803245,1.72641,-0.0574621,-0.268691,-1.56985,1.43473,-0.535235,0.890574,0.553298,-0.493213,0.388683,-0.701232,0.957976,0.82704,0.153234,0.270256,0.69681,1.11272,5 +-0.538964,1.24735,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,-1.22087,0.981856,-0.535235,-0.44199,0.630308,-0.493213,0.555868,-0.701232,0.957976,1.19331,0.473878,0.546756,0.834848,1.11272,5 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,2.50876,-0.29985,-0.807222,0.656981,-0.670156,-0.362178,-0.458336,0.216587,0.281491,0.201132,-0.614546,1.11272,0 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,2.8349,-0.264315,-0.807222,0.656981,-0.670156,-0.362178,-0.458336,0.216587,0.281491,0.201132,-0.614546,1.11272,9 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,2.34569,-0.0688721,-0.807222,0.656981,-0.670156,-0.0231245,-0.458336,0.216587,0.217363,0.201132,-0.580037,1.11272,0 +0.477209,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.290245,-0.603215,1.85647,-0.0688721,-0.807222,0.656981,-0.670156,-0.362178,-0.458336,0.216587,0.281491,0.270256,-0.614546,1.11272,0 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,2.0739,-0.175477,-0.807222,0.656981,-0.670156,-0.701232,-0.458336,0.216587,0.281491,0.270256,-0.614546,1.11272,0 +0.477209,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.173917,-0.829654,2.78054,-0.548595,-1.32063,1.23208,-0.837341,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,9 +0.477209,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.232081,-0.829654,2.40005,-0.495293,-1.32063,1.23208,-0.837341,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,0 +0.477209,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.117049,0.410851,-0.550521,0.386347,-0.558699,0.315929,-0.458336,0.216587,0.409749,0.270256,-0.614546,1.11272,0 +0.477209,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,-0.046022,0.481921,-0.550521,0.386347,-0.558699,0.315929,-0.458336,0.277632,0.409749,0.339381,-0.614546,1.11272,0 +0.477209,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,-0.154736,0.464154,-0.550521,0.386347,-0.558699,0.315929,-0.458336,0.277632,0.409749,0.339381,-0.614546,1.11272,0 +0.477209,-0.30481,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.100379,0.375316,-0.49918,0.386347,-0.447242,-0.0231245,-0.458336,0.277632,0.473878,0.339381,-0.580037,1.11272,0 +0.477209,-0.30481,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.100379,0.375316,-0.49918,0.386347,-0.447242,-0.0231245,-0.458336,0.277632,0.473878,0.339381,-0.580037,1.11272,1 +0.477209,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,-0.046022,0.0199655,-1.16661,1.26591,-0.447242,-1.37934,-0.458336,0.277632,0.473878,0.408506,-0.614546,-0.524402,0 +0.477209,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,0.171406,-0.29985,-1.16661,1.26591,-0.447242,-1.37934,-0.458336,0.582859,0.666265,0.546756,-0.580037,-0.524402,1 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.00833509,0.162106,-1.21795,1.26591,-0.558699,-0.701232,-0.458336,0.277632,0.409749,0.339381,-0.614546,-0.524402,0 +0.477209,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.348408,-0.716435,1.47598,-0.0688721,-1.16661,1.19825,-0.558699,-0.701232,-0.458336,0.155542,0.34562,0.201132,-0.614546,-0.524402,0 +0.477209,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,2.61747,-0.566363,-1.39764,1.19825,-1.06025,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,1.11272,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,0.606263,0.126571,-1.16661,1.29974,-0.391514,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,-0.372164,0.250943,-1.16661,1.29974,-0.391514,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,-0.480878,0.517456,-0.986914,1.09676,-0.335786,-1.04029,-0.458336,0.460768,0.730394,0.61588,-0.580037,-0.524402,0 +0.883679,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.535235,0.783969,-0.986914,1.09676,-0.335786,-1.37934,-0.458336,0.82704,0.730394,0.685005,-0.476509,1.11272,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.489996,-0.535235,0.624061,-0.909903,0.995274,-0.335786,-1.37934,-0.458336,0.82704,0.730394,0.75413,-0.40749,1.11272,0 +0.883679,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.535235,0.677364,-0.986914,1.13059,-0.280057,-1.04029,-0.458336,0.82704,0.794523,0.75413,-0.511018,1.11272,0 +0.883679,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,0.932405,-0.406455,-1.14093,1.33357,-0.280057,-1.04029,-0.458336,0.765994,0.858651,0.823255,-0.614546,-0.524402,1 +0.883679,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.639228,-0.376776,0.171406,0.677364,0.630308,-0.763847,0.110041,0.315929,-0.458336,0.460768,0.666265,0.546756,-0.580037,1.11272,1 +0.883679,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,1.63905,-0.193245,-1.08959,1.23208,-0.335786,-0.362178,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,0 +0.883679,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,0.334477,0.037733,-1.19228,1.40122,-0.280057,-1.37934,-0.458336,0.765994,0.92278,0.823255,-0.614546,-0.524402,0 +0.883679,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.535235,0.570759,-0.986914,1.13059,-0.280057,-1.04029,-0.458336,0.82704,0.730394,0.75413,-0.476509,-0.524402,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,1.09548,-0.193245,-1.37197,1.57037,-0.391514,-1.04029,-0.458336,0.765994,0.858651,0.823255,-0.649055,-0.524402,0 +0.883679,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,1.47598,-0.175477,-1.08959,1.23208,-0.335786,-0.362178,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,0 +0.883679,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,1.74776,-0.15771,-0.807222,0.859957,-0.335786,-0.0231245,-0.458336,0.582859,0.730394,0.685005,-0.614546,1.11272,0 +0.273975,0.988654,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.551906,-0.744038,-0.832893,0.893786,-0.335786,-0.701232,-0.458336,0.216587,0.538007,0.408506,-0.545527,-0.524402,1 +0.273975,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.551906,-0.690735,-0.832893,0.893786,-0.335786,-0.701232,0.957976,0.216587,0.538007,0.408506,-0.545527,-0.524402,1 +0.273975,0.471268,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.443191,-0.6552,-0.832893,0.893786,-0.335786,-0.701232,-0.458336,0.216587,0.473878,0.339381,-0.580037,-0.524402,1 +0.273975,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.66062,-0.6552,-0.858563,0.893786,-0.391514,-0.362178,-0.458336,0.216587,0.409749,0.270256,-0.614546,-0.524402,1 +0.273975,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,0.443191,-0.72627,-1.19228,1.33357,-0.391514,-1.04029,-0.458336,0.155542,0.409749,0.270256,-0.614546,-0.524402,1 +0.273975,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,0.225763,-0.193245,-1.11526,1.09676,-0.614428,-0.701232,-0.458336,0.277632,0.34562,0.270256,-0.614546,-0.524402,0 +0.172357,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.603215,-0.154736,0.0555005,-0.935573,0.859957,-0.614428,-0.362178,-0.458336,0.277632,0.34562,0.270256,-0.614546,-0.524402,1 +0.172357,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.209093,0.233176,-0.935573,0.859957,-0.614428,-0.362178,-0.458336,0.277632,0.34562,0.270256,-0.580037,-0.524402,0 +0.273975,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,-0.154736,0.375316,-0.909903,0.859957,-0.558699,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.580037,-0.524402,1 +0.273975,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.100379,0.535224,-0.601861,0.454006,-0.558699,-1.04029,-0.458336,0.0334514,0.281491,0.0628821,-0.580037,-0.524402,0 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,0.695131,-0.884233,0.826128,-0.558699,-0.701232,-0.458336,0.0334514,0.281491,0.201132,-0.580037,-0.524402,0 +0.273975,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,0.624061,-0.601861,0.454006,-0.558699,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.580037,1.11272,0 +0.273975,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.535235,0.783969,-0.755882,0.555494,-0.725884,-0.362178,-0.458336,0.0944967,0.281491,0.132007,-0.614546,1.11272,0 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.639228,-0.489996,-0.426521,0.393083,-1.06392,1.0291,-0.614428,-0.701232,-0.458336,0.0944967,0.281491,0.132007,-0.614546,-0.524402,0 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,0.117049,0.108803,-0.961244,1.0291,-0.391514,-0.362178,-0.458336,0.0944967,0.281491,0.132007,-0.614546,-0.524402,0 +0.273975,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.986762,-0.282082,-0.961244,1.0291,-0.391514,-0.0231245,-0.458336,0.216587,0.281491,0.201132,-0.614546,-0.524402,0 +0.273975,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,2.01955,-0.51306,-1.50032,1.40122,-0.948798,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,0 +0.273975,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.115753,-0.829654,2.0739,-0.690735,-1.32063,1.40122,-0.558699,-0.701232,-0.458336,0.216587,0.409749,0.270256,-0.649055,-2.16152,0 +0.273975,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.942873,0.823691,-0.353152,-1.42331,1.40122,-0.781613,-1.04029,-0.458336,0.399723,0.538007,0.408506,-0.649055,-0.524402,0 +0.273975,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.291394,-0.942873,0.986762,-0.37092,-1.44898,1.43505,-0.781613,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,0 +0.273975,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.829654,1.80212,-0.619665,-1.3463,1.43505,-0.558699,-1.04029,-0.458336,0.216587,0.409749,0.270256,-0.649055,-2.16152,0 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.000574525,-0.829654,1.53033,-0.51306,-1.3463,1.43505,-0.558699,-1.04029,-0.458336,0.216587,0.409749,0.270256,-0.649055,-2.16152,0 +0.273975,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,0.986762,-0.353152,-1.50032,1.43505,-0.893069,-1.04029,-0.458336,0.399723,0.473878,0.408506,-0.649055,-0.524402,0 +0.273975,-0.30481,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,1.58469,-0.530828,-1.21795,1.26591,-0.558699,-0.362178,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,0 +1.08691,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,-0.209093,0.0910356,-1.11526,1.3674,-0.168601,-1.04029,-0.458336,0.643904,0.794523,0.75413,-0.614546,-0.524402,0 +1.08691,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.639228,-0.603215,-0.426521,0.393083,-1.11526,1.3674,-0.168601,-1.37934,-0.458336,0.582859,0.794523,0.685005,-0.614546,-0.524402,0 +1.08691,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.372164,0.588526,-1.11526,1.3674,-0.168601,-1.37934,-0.458336,0.643904,0.858651,0.75413,-0.614546,-0.524402,0 +1.08691,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.697392,-0.489996,-0.426521,0.464154,-0.884233,1.06293,-0.168601,-1.37934,-0.458336,0.765994,0.858651,0.823255,-0.580037,1.11272,0 +1.08691,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.535235,0.890574,-0.832893,0.961445,-0.224329,-1.04029,-0.458336,0.765994,0.794523,0.75413,-0.580037,1.11272,0 +1.08691,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.988211,-0.263557,-0.535235,0.943877,-0.704542,0.961445,0.0543129,-1.37934,-0.458336,0.643904,0.794523,0.75413,-0.545527,-0.524402,0 +1.08691,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,0.783969,-0.319489,0.792298,0.611597,-0.0231245,-0.458336,0.643904,0.986909,0.823255,-0.37298,-0.524402,1 +1.08691,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.04637,0.0761009,-0.535235,1.76118,-0.319489,0.792298,0.611597,-0.362178,-0.458336,0.765994,0.92278,0.823255,-0.338471,-0.524402,1 +1.08691,-0.30481,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-1.22087,0.30254,-0.535235,2.24091,0.142575,0.183372,0.611597,-0.362178,0.957976,0.765994,0.858651,0.823255,-0.234943,-0.524402,5 +1.08691,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,2.32974,0.142575,0.081884,0.444411,-0.362178,2.37429,0.643904,0.602136,0.61588,-0.269452,1.11272,6 +1.29015,-0.822195,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-1.10454,0.18932,0.0626921,2.50742,0.296596,-0.053433,0.555868,0.654983,0.957976,0.765994,0.794523,0.823255,-0.37298,1.11272,2 +1.29015,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.988211,-0.0371185,-0.317807,1.67235,0.116904,-0.0196038,0.221498,0.315929,-0.458336,0.582859,0.666265,0.685005,-0.441999,1.11272,2 +1.29015,-0.822195,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.988211,-0.263557,-0.535235,-0.619665,-0.293819,0.183372,-0.335786,-0.362178,-0.458336,0.582859,0.538007,0.61588,-0.476509,1.11272,6 +1.29015,0.212576,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.04637,-0.150338,-0.480878,-0.211012,-0.216808,0.454006,0.277226,-0.701232,2.37429,0.765994,0.794523,0.75413,-0.40749,-0.524402,5 +1.29015,0.471268,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.426521,-0.122175,-0.0114465,0.183372,0.277226,-0.701232,0.957976,0.765994,0.858651,0.823255,-0.40749,1.11272,5 +1.29015,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.480878,-0.22878,-0.139797,0.893786,1.16888,0.994036,0.957976,0.94913,1.24342,1.16888,-0.441999,-0.524402,1 +1.29015,0.729961,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,0.215408,-0.216808,1.09676,1.33607,-0.0231245,-0.458336,1.19331,1.37168,1.30713,-0.476509,-0.524402,1 +1.29015,-0.30481,-0.203162,-1.48212,2.06422,-0.0574621,-0.268691,-1.62801,2.34049,-0.535235,1.21039,2.04217,-1.47426,2.00481,1.33309,0.957976,0.643904,0.281491,0.546756,0.593282,-0.524402,6 +1.29015,-0.0461169,-0.203162,-0.803245,1.05078,-0.0574621,-0.268691,-1.27903,1.32151,-0.535235,0.535224,0.553298,-0.459384,0.444411,1.33309,0.957976,1.07122,0.666265,0.961504,0.455245,1.11272,5 +1.29015,0.471268,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-1.1627,0.18932,-0.535235,1.10378,-0.396499,0.859957,0.555868,0.315929,-0.458336,1.07122,1.11517,1.16888,-0.37298,-0.524402,1 +-1.14867,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.406572,-0.716435,0.117049,-0.0333371,-1.21795,0.420177,-1.95191,-1.04029,-0.458336,-0.760137,-0.872829,-0.97399,-0.545527,1.11272,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,-0.426521,0.215408,-0.961244,0.183372,-1.78472,-0.701232,-0.458336,-0.882227,-0.8087,-0.97399,-0.614546,1.11272,0 +-1.14867,-0.0461169,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,0.0910356,-0.47351,0.0480547,-0.948798,-0.362178,0.957976,-0.882227,-0.8087,-0.97399,-0.511018,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.803245,-0.638287,-0.0574621,3.12144,-1.1627,0.30254,-0.535235,-0.886178,-0.268148,-0.222579,-0.948798,-1.04029,0.957976,-0.882227,-1.06522,-1.04311,-0.0278867,-0.524402,5 +-1.14867,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,3.12144,-0.813719,-0.263557,-0.100379,-0.175477,-0.268148,-0.222579,-0.948798,-0.0231245,2.37429,-1.06536,-1.2576,-1.25049,-0.269452,-0.524402,6 +-1.14867,-0.822195,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,-0.639228,-0.376776,0.117049,-0.0866397,-0.730212,-0.222579,-1.95191,-0.701232,-0.458336,-0.882227,-1.12934,-1.18136,-0.303962,1.11272,6 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.00833509,0.037733,-1.21795,0.420177,-1.95191,-1.04029,-0.458336,-0.882227,-1.00109,-1.18136,-0.580037,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,0.0626921,0.322013,-1.14093,0.521664,-1.61754,-0.701232,-0.458336,-0.882227,-0.616313,-0.83574,-0.580037,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.930047,-0.376776,-0.154736,0.233176,-0.986914,0.25103,-1.72899,-0.701232,-0.458336,-0.882227,-0.8087,-0.97399,-0.545527,1.11272,0 +-1.14867,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,1.42637,-0.930047,-0.150338,-0.480878,0.0199655,-0.268148,-0.222579,-0.948798,-0.701232,0.957976,-1.06536,-1.00109,-1.04311,-0.338471,-0.524402,5 +-1.14867,0.212576,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.930047,-0.0371185,-0.535235,0.108803,-0.47351,0.0480547,-0.948798,-0.701232,0.957976,-1.06536,-0.744571,-0.97399,-0.476509,-0.524402,1 +-1.14867,0.471268,-0.203162,-0.124374,0.375155,-0.0574621,-0.268691,-0.930047,-0.150338,-0.535235,-0.264315,-0.345159,-0.0196038,-0.781613,-0.701232,-0.458336,-0.271775,-0.295669,-0.282742,-0.234943,1.11272,5 +-1.14867,-0.30481,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.39536,0.415759,-0.372164,0.197641,0.065564,-0.324067,-0.391514,-0.362178,-0.458336,-0.699092,-0.872829,-1.11224,-0.165924,-0.524402,5 +-1.14867,-0.822195,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,-1.1627,0.0761009,-0.317807,0.730666,-0.44784,-0.0872623,-1.11598,-0.0231245,-0.458336,-0.699092,-0.936957,-1.11224,-0.441999,-0.524402,0 +-1.14867,-0.30481,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,-0.0866397,-0.0627869,-0.154921,-0.391514,-0.701232,-0.458336,-0.760137,-0.8087,-0.97399,-0.269452,-0.524402,5 +-1.14867,-0.563502,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.0555005,-0.47351,-0.154921,-1.28317,-0.362178,-0.458336,-0.760137,-0.936957,-1.04311,-0.338471,-0.524402,6 +-1.14867,0.471268,-0.203162,-0.124374,0.375155,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,-0.29985,-0.345159,-0.0196038,-0.781613,-0.701232,-0.458336,-0.271775,-0.295669,-0.282742,-0.234943,1.11272,5 +-1.14867,0.471268,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,0.0199655,-0.44784,0.115713,-0.781613,-0.362178,0.957976,-0.271775,-0.167411,-0.282742,-0.545527,1.11272,1 +-1.14867,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.988211,-0.0371185,-0.535235,0.606294,-0.49918,-0.154921,-1.3389,-1.04029,-0.458336,-0.638046,-0.872829,-0.904865,-0.37298,1.11272,6 +-1.14867,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.755555,-0.489996,-0.535235,0.695131,-1.03825,0.487835,-1.45035,-1.04029,-0.458336,-0.638046,-0.616313,-0.697491,-0.580037,-0.524402,0 +-1.14867,-0.30481,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.22087,0.18932,-0.317807,0.322013,-0.114127,-0.0872623,-0.391514,-0.362178,-0.458336,-0.699092,-0.872829,-1.04311,-0.269452,-0.524402,5 +-0.742198,-0.0461169,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-1.27903,0.528978,-0.535235,1.13932,0.81,-1.4066,-0.558699,-0.362178,-0.458336,-0.0886391,-0.295669,-0.282742,-0.234943,1.11272,5 +-0.742198,-0.0461169,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,0.464154,-0.47351,0.0480547,-0.948798,-0.362178,0.957976,-0.0886391,-0.23154,-0.282742,-0.40749,1.11272,1 +-0.742198,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,0.979412,-0.986914,0.521664,-1.28317,-1.04029,-0.458336,-0.393865,-0.23154,-0.351867,-0.580037,1.11272,0 +-0.742198,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.755555,-0.489996,-0.535235,1.17485,-1.01258,0.589323,-1.22744,-1.04029,-0.458336,-0.271775,-0.167411,-0.282742,-0.580037,1.11272,0 +-0.742198,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,1.24592,-0.961244,0.521664,-1.22744,-1.04029,-0.458336,-0.21073,-0.23154,-0.282742,-0.545527,1.11272,0 +0.273975,-0.822195,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,0.524049,-0.263557,1.20419,-0.139942,0.630308,-0.66236,0.277226,-0.0231245,3.7906,0.155542,0.153234,0.132007,-0.234943,1.11272,6 +0.273975,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,2.78054,-0.459758,-1.19228,1.13059,-0.725884,-1.04029,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,9 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,2.0739,-0.0333371,-1.01258,1.0291,-0.502971,1.67214,-0.458336,0.277632,0.34562,0.201132,-0.580037,-0.524402,9 +0.273975,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.407721,-0.716435,0.28012,0.410851,-0.704542,0.826128,-0.168601,0.994036,-0.458336,-0.0886391,0.409749,0.201132,-0.37298,-0.524402,1 +0.273975,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.407721,-0.942873,-0.100379,0.233176,-0.550521,0.826128,0.16577,-1.04029,-0.458336,0.82704,0.92278,0.89238,-0.40749,1.11272,1 +0.273975,-0.563502,-0.203162,-0.803245,1.05078,-0.0574621,3.12144,-1.33719,1.09507,-0.535235,-1.45474,1.16938,-1.44043,0.16577,0.654983,2.37429,-0.699092,-1.2576,-1.11224,1.31798,-0.524402,7 +0.477209,0.212576,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,-0.0575893,-0.376776,0.334477,-0.761806,1.16938,-1.44043,0.16577,0.654983,3.7906,0.82704,0.602136,0.89238,0.386226,1.11272,5 +0.883679,-0.822195,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.317807,1.13932,0.296596,-0.594701,-0.335786,-0.0231245,-0.458336,0.582859,0.409749,0.408506,-0.234943,1.11272,6 +0.883679,-0.0461169,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.988211,0.0761009,-0.535235,1.60128,0.322266,-0.594701,-0.280057,-0.0231245,0.957976,0.399723,0.473878,0.477631,-0.303962,1.11272,5 +0.883679,0.729961,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.480878,0.517456,-0.601861,0.656981,-0.224329,-0.0231245,2.37429,0.765994,0.858651,0.89238,-0.511018,1.11272,1 +0.883679,0.471268,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,-0.535235,0.357548,-0.44784,0.420177,-0.280057,0.994036,-0.458336,0.765994,0.92278,0.89238,-0.580037,1.11272,1 +0.883679,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,2.0277,-0.0884571,0.0142255,-0.168601,0.315929,0.957976,0.82704,0.730394,0.75413,-0.37298,1.11272,1 +0.883679,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.930047,-0.150338,-0.535235,2.82723,-0.0884571,0.0142255,-0.168601,-0.701232,-0.458336,0.82704,0.666265,0.685005,-0.303962,1.11272,0 +0.273975,1.76473,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-0.697392,-0.150338,-0.535235,-0.104407,0.604638,-0.966823,-0.280057,0.315929,-0.458336,0.399723,0.34562,0.408506,0.00662268,1.11272,5 +0.273975,0.471268,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-0.581064,-0.150338,-0.535235,0.073268,0.604638,-1.00065,-0.335786,-0.701232,-0.458336,0.0944967,0.153234,0.201132,0.0756414,1.11272,5 +0.273975,-0.822195,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-0.697392,-0.263557,-0.535235,0.588526,0.399276,-0.831506,-0.502971,-0.362178,-0.458336,-0.0886391,-0.103282,-0.0753675,-0.165924,1.11272,6 +0.273975,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,1.65458,0.81,-1.10214,-0.0571439,0.994036,-0.458336,-0.0886391,-0.103282,-0.0753675,-0.0623961,1.11272,6 +0.273975,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,0.837272,0.553298,-0.763847,-0.0571439,-0.0231245,-0.458336,-0.271775,-0.103282,-0.0753675,0.00662268,1.11272,6 +0.273975,-0.822195,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-0.813719,-0.0371185,-0.535235,-0.0333371,0.270926,-0.696189,-0.558699,-0.0231245,0.957976,-0.271775,-0.167411,-0.213617,-0.0623961,1.11272,6 +0.273975,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-0.813719,-0.150338,-0.535235,1.10378,0.527627,-1.10214,-0.670156,0.315929,-0.458336,-0.0886391,-0.167411,-0.0753675,-0.0623961,1.11272,6 +-0.0308771,-0.822195,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-1.56985,1.43473,-0.535235,2.54295,0.707319,-1.03448,-0.168601,0.994036,-0.458336,-0.0886391,-0.552184,-0.213617,1.21445,1.11272,6 +-0.0308771,-0.822195,-0.203162,0.554496,2.40204,-0.0574621,-0.268691,-1.56985,1.54795,-0.535235,1.83225,0.707319,-1.03448,-0.168601,0.994036,-0.458336,-0.0886391,-0.680442,-0.282742,1.45602,1.11272,6 +-0.0308771,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.697392,-0.0371185,-0.317807,3.34249,0.501957,-0.899164,-0.391514,0.994036,-0.458336,0.0944967,0.0249759,0.0628821,-0.0969054,1.11272,6 +-0.0308771,-0.563502,-0.203162,-0.803245,2.06422,-0.0574621,-0.268691,-0.813719,0.0761009,-0.372164,0.819504,0.424947,-0.966823,-0.670156,0.654983,-0.458336,-0.0886391,-0.295669,-0.0753675,0.248188,1.11272,6 +-0.0308771,-0.822195,-0.203162,-1.14268,2.06422,-0.0574621,-0.268691,-0.581064,-0.0371185,-0.317807,1.13932,0.270926,-0.763847,-0.670156,-0.0231245,-0.458336,-0.0886391,-0.295669,-0.144492,0.17917,1.11272,6 +-0.0308771,0.471268,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-1.1627,0.528978,-0.535235,1.70788,0.553298,-1.10214,-0.614428,0.315929,0.957976,0.277632,-0.039153,0.132007,0.351716,1.11272,5 +-0.0308771,-0.0461169,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.10454,0.30254,-0.535235,1.24592,0.655978,-1.23746,-0.614428,0.315929,2.37429,0.216587,0.0249759,0.132007,0.248188,1.11272,5 +-0.0308771,0.471268,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.04637,0.415759,-0.535235,2.70286,0.476287,-1.00065,-0.614428,1.67214,2.37429,0.277632,0.0249759,0.201132,0.110151,1.11272,1 +-0.0308771,0.471268,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,-1.1627,0.415759,-0.535235,2.16984,0.476287,-1.00065,-0.614428,1.67214,2.37429,0.277632,0.0249759,0.132007,0.0756414,1.11272,1 +-0.0308771,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.581064,-0.263557,-0.535235,3.71561,0.501957,-0.899164,-0.391514,1.67214,0.957976,0.155542,0.0891048,0.132007,-0.234943,1.11272,2 +-0.0308771,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.26345,3.68008,0.065564,-0.324067,-0.391514,1.33309,2.37429,0.155542,0.0891048,0.132007,-0.37298,1.11272,2 +-0.0308771,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,-0.173917,-0.603215,0.171406,1.70788,-0.139797,-0.391726,-0.948798,-0.701232,-0.458336,0.155542,0.0891048,0.0628821,-0.37298,1.11272,2 +-0.234112,-0.822195,-0.203162,0.554496,2.40204,-0.0574621,-0.268691,-1.04637,0.868636,-0.317807,-0.815108,0.964021,-1.1698,0.16577,0.994036,0.957976,-0.149684,-0.936957,-0.420991,1.83562,1.11272,6 +-0.234112,-0.822195,-0.203162,1.23337,2.40204,-0.0574621,-0.268691,-1.27903,1.20829,-0.372164,-0.761806,0.964021,-1.1698,0.16577,0.994036,0.957976,-0.0886391,-0.936957,-0.282742,2.18071,1.11272,6 +-0.234112,-0.822195,-0.203162,0.215061,2.06422,-0.0574621,-0.268691,-0.871883,0.528978,-0.209093,-1.04609,0.681649,-1.1698,-0.447242,-0.362178,0.957976,-0.149684,-0.936957,-0.351867,1.7666,1.11272,6 +-0.234112,-0.822195,-0.203162,-0.124374,2.06422,-0.0574621,-0.268691,-0.464736,-0.376776,-0.209093,-1.01055,-0.0627869,-0.696189,-1.28317,0.315929,-0.458336,-0.149684,-0.680442,-0.282742,0.69681,1.11272,6 +-0.234112,-0.822195,-0.203162,0.215061,1.72641,-0.0574621,-0.268691,-0.871883,0.981856,0.117049,-0.37092,0.964021,-1.1698,0.16577,0.654983,0.957976,0.338678,-0.616313,-0.0753675,2.4913,1.11272,6 +-0.234112,-0.30481,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-0.290245,-0.376776,0.0626921,-0.637433,0.81,-1.44043,-0.614428,0.654983,-0.458336,0.338678,-0.039153,0.201132,0.524263,1.11272,5 +-0.234112,-0.822195,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.406572,-0.263557,0.171406,-0.58413,0.758659,-1.44043,-0.725884,0.994036,-0.458336,0.338678,-0.167411,0.0628821,0.834848,1.11272,6 +-0.234112,0.212576,-0.203162,0.215061,1.72641,-0.0574621,1.42637,-0.813719,0.642198,-0.535235,-1.02832,1.45175,-1.44043,0.778782,0.994036,-0.458336,0.277632,-0.552184,0.0628821,2.45679,1.11272,5 +-0.234112,0.729961,-0.203162,-0.46381,1.05078,-0.0574621,3.12144,-0.697392,0.415759,-0.535235,-1.45474,1.42608,-1.4066,0.778782,0.654983,0.957976,0.338678,-0.423926,0.270256,2.52581,1.11272,5 +-0.234112,0.729961,-0.203162,0.215061,1.3886,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,-0.939481,0.630308,-1.20363,-0.614428,0.315929,-0.458336,0.338678,-0.23154,0.270256,1.55954,1.11272,5 +-0.234112,0.988654,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.290245,-0.489996,-0.535235,-0.886178,0.219585,-0.66236,-0.614428,-0.701232,-0.458336,0.277632,0.0891048,0.270256,0.17917,1.11272,5 +-0.234112,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.04637,-0.376776,-0.535235,0.855039,-1.01258,0.792298,-0.893069,-1.37934,-0.458336,-0.515956,-0.103282,-0.282742,-0.476509,-0.524402,0 +-0.234112,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.04637,-0.376776,-0.535235,0.837272,-1.01258,0.72464,-1.00453,-1.37934,-0.458336,-0.515956,-0.23154,-0.420991,-0.545527,-0.524402,0 +-0.234112,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.04637,-0.376776,-0.535235,0.748434,-1.11526,0.961445,-0.837341,-1.37934,-0.458336,-0.0886391,0.0891048,-0.00624269,-0.580037,-0.524402,0 +-0.234112,1.24735,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,-0.246547,-0.730212,0.792298,-0.280057,-1.04029,-0.458336,-0.0886391,0.217363,0.0628821,-0.476509,-0.524402,1 +-0.234112,1.24735,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.535235,-0.15771,-0.730212,0.792298,-0.280057,-0.701232,-0.458336,-0.0886391,0.217363,0.0628821,-0.476509,-0.524402,1 +-0.234112,2.28212,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,-0.690735,-0.47351,0.826128,0.332955,1.33309,-0.458336,0.338678,0.666265,0.477631,-0.37298,-0.524402,1 +-0.234112,2.02342,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,-0.6552,0.476287,-0.391726,0.388683,1.33309,-0.458336,0.338678,0.666265,0.477631,-0.338471,1.11272,1 +-0.234112,2.02342,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,-0.282082,-0.47351,1.0291,0.667325,-0.362178,-0.458336,0.643904,0.858651,0.75413,-0.40749,-0.524402,1 +-0.234112,1.50604,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.27903,0.0761009,-0.535235,-0.29985,0.527627,-0.222579,0.778782,0.654983,-0.458336,-0.0886391,0.602136,0.408506,-0.0623961,-0.524402,1 +-0.234112,1.76473,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,-0.246547,0.296596,-0.222579,0.277226,0.315929,-0.458336,-0.0886391,0.409749,0.201132,-0.338471,-0.524402,1 +-0.234112,2.02342,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.1627,0.0761009,-0.535235,0.0910356,-0.47351,0.826128,0.332955,0.994036,-0.458336,0.643904,0.730394,0.61588,-0.40749,-0.524402,1 +-0.234112,2.54081,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.535235,-0.744038,0.476287,-0.391726,0.388683,0.994036,-0.458336,0.338678,0.730394,0.546756,-0.37298,1.11272,1 +-0.437346,0.212576,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-1.1627,-0.150338,-0.480878,-0.0511046,-0.268148,0.149542,-0.335786,-0.362178,-0.458336,-0.271775,-0.103282,-0.282742,-0.511018,-0.524402,1 +-0.437346,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.10454,-0.263557,-0.480878,-0.193245,-1.03825,0.961445,-0.670156,-1.04029,-0.458336,-0.271775,-0.103282,-0.282742,-0.580037,-0.524402,1 +-0.437346,0.729961,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.552991,-0.293819,0.318689,-0.112872,-0.0231245,-0.458336,-0.515956,-0.167411,-0.490116,-0.165924,-0.524402,1 +-0.437346,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.783969,-0.678871,0.72464,-0.280057,-1.04029,-0.458336,-0.271775,0.281491,0.201132,-0.269452,-0.524402,1 +-0.437346,1.50604,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.926109,-0.653201,0.690811,-0.280057,-1.04029,-0.458336,-0.271775,0.217363,-0.00624269,-0.338471,-0.524402,1 +-0.437346,2.7995,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,-1.3659,-0.44784,0.521664,-0.112872,0.315929,-0.458336,0.399723,0.538007,0.477631,-0.37298,-0.524402,3 +-0.437346,3.0582,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.45352,0.30254,-0.535235,-1.3659,-0.319489,0.487835,0.110041,-0.0231245,-0.458336,0.216587,0.538007,0.408506,-0.338471,-0.524402,3 +-0.437346,1.24735,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.45352,0.18932,-0.535235,0.428619,-0.44784,0.521664,-0.112872,-0.0231245,-0.458336,0.582859,0.538007,0.546756,-0.40749,1.11272,3 +-0.437346,2.02342,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.51169,0.18932,-0.535235,-0.6552,-0.42217,0.487835,-0.112872,-0.0231245,-0.458336,0.399723,0.473878,0.408506,-0.37298,1.11272,3 +-0.437346,2.28212,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.45352,0.30254,-0.535235,-1.45474,-0.319489,0.487835,0.110041,-0.0231245,-0.458336,0.216587,0.473878,0.408506,-0.269452,-0.524402,3 +-0.437346,2.28212,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.39536,0.30254,-0.535235,-1.45474,-0.42217,0.623152,0.110041,-0.0231245,-0.458336,0.0334514,0.538007,0.408506,-0.200434,-0.524402,3 +-1.14867,-0.0461169,-0.203162,-1.14268,0.712969,-0.0574621,-0.268691,-1.86067,1.54795,-0.535235,2.0277,1.50309,-1.44043,0.890238,0.654983,0.957976,-0.943273,-0.8087,-1.04311,0.834848,-0.524402,5 +-1.14867,0.212576,-0.203162,-1.14268,1.3886,-0.0574621,-0.268691,-1.977,1.88761,-0.535235,2.29421,1.50309,-1.44043,0.890238,0.654983,0.957976,-0.943273,-0.8087,-1.04311,1.21445,-0.524402,5 +-1.14867,-0.30481,-0.203162,-1.48212,1.72641,-0.0574621,-0.268691,-1.977,2.11405,-0.535235,2.24091,1.50309,-1.44043,0.890238,0.315929,0.957976,-1.12641,-1.00109,-1.18136,1.49053,-0.524402,6 +-1.14867,0.212576,-0.203162,-0.803245,0.0373407,-0.0574621,-0.268691,-1.74434,0.868636,-0.535235,1.28146,0.0142237,0.0480547,0.110041,-0.701232,-0.458336,-0.943273,-0.680442,-1.04311,-0.0278867,-0.524402,1 +-1.14867,-0.30481,-0.203162,-1.48212,1.72641,-0.0574621,-0.268691,-2.03516,2.56693,-0.535235,3.04044,1.50309,-1.44043,0.890238,0.994036,0.957976,-0.943273,-1.00109,-1.11224,2.07718,-0.524402,6 +0.578827,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,0.819504,-0.781552,1.26591,0.388683,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.545527,-2.16152,1 +0.578827,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,1.05048,-0.884233,1.19825,0.0543129,-0.701232,-0.458336,0.399723,0.538007,0.408506,-0.580037,-0.524402,1 +0.578827,0.988654,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.535235,0.00219796,-0.730212,1.26591,0.50014,-0.701232,-0.458336,0.399723,0.602136,0.477631,-0.545527,-2.16152,1 +0.578827,1.24735,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,-0.0155696,-0.730212,1.26591,0.50014,-0.0231245,-0.458336,0.399723,0.666265,0.546756,-0.545527,-2.16152,1 +0.578827,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,-0.535235,-0.104407,-0.935573,1.43505,0.332955,-1.04029,-0.458336,0.399723,0.730394,0.546756,-0.545527,-2.16152,1 +0.578827,0.988654,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.535235,-0.193245,-0.935573,1.43505,0.332955,-1.04029,-0.458336,0.399723,0.730394,0.546756,-0.511018,-2.16152,1 +0.578827,0.471268,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-0.581064,-0.0371185,-0.535235,-0.0688721,0.91268,-0.865335,0.555868,0.994036,0.957976,0.216587,0.538007,0.477631,-0.200434,1.11272,1 +0.578827,-0.0461169,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.376776,-0.535235,0.624061,-0.601861,0.690811,-0.168601,-0.701232,-0.458336,0.277632,0.409749,0.270256,-0.545527,-0.524402,0 +0.578827,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.697392,-0.376776,-0.535235,0.606294,-1.08959,1.26591,-0.280057,-1.37934,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.172357,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,0.393083,-0.858563,0.995274,-0.224329,-0.362178,-0.458336,0.0334514,0.281491,0.132007,-0.545527,-0.524402,1 +0.172357,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.268711,-0.781552,0.893786,-0.224329,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.580037,-0.524402,1 +0.172357,1.24735,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-1.1627,0.0761009,-0.535235,0.0555005,0.91268,-1.00065,0.332955,-0.0231245,2.37429,0.0334514,0.34562,0.201132,-0.37298,1.11272,1 +0.172357,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,0.339781,-0.858563,0.995274,-0.224329,-1.04029,0.957976,-0.0275938,0.217363,0.0628821,-0.580037,-0.524402,0 +0.172357,1.24735,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-1.22087,0.30254,-0.535235,-0.388688,0.91268,-1.00065,0.332955,-0.0231245,2.37429,0.216587,0.217363,0.201132,-0.0969054,1.11272,5 +0.172357,0.988654,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-1.39536,0.528978,-0.535235,0.108803,1.0667,-1.13597,0.444411,0.654983,2.37429,0.0944967,0.153234,0.132007,0.0411321,1.11272,5 +0.172357,0.729961,-0.203162,0.554496,1.05078,-0.0574621,-0.268691,-1.1627,0.18932,-0.535235,-0.424223,0.655978,-0.831506,0.0543129,0.315929,2.37429,0.338678,0.281491,0.270256,-0.0623961,1.11272,5 +0.172357,-0.30481,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.39536,0.415759,-0.535235,0.037733,0.450617,-0.831506,-0.391514,0.654983,2.37429,0.0944967,-0.039153,0.0628821,-0.0623961,1.11272,6 +0.172357,1.50604,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.33719,1.32151,-0.535235,-0.761806,0.707319,-0.459384,0.778782,-0.0231245,2.37429,0.338678,0.538007,0.546756,-0.131415,-0.524402,5 +0.172357,2.02342,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.27903,1.32151,-0.535235,-0.637433,0.476287,-0.154921,0.778782,0.315929,2.37429,0.338678,0.666265,0.61588,-0.303962,-0.524402,1 +0.172357,-0.0461169,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.872807,-0.396499,0.28486,-0.391514,-0.0231245,-0.458336,-0.0886391,-0.039153,-0.144492,-0.338471,-0.524402,5 +0.172357,-0.0461169,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,-1.39536,0.30254,-0.535235,0.162106,-0.0884571,-0.121092,-0.391514,-0.362178,-0.458336,-0.271775,-0.103282,-0.213617,-0.303962,1.11272,5 +0.273975,2.7995,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,1.20829,-0.535235,-0.406455,-0.47351,0.792298,0.277226,-0.701232,-0.458336,0.338678,0.666265,0.546756,-0.40749,-0.524402,1 +0.273975,2.54081,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,1.09507,-0.535235,-0.175477,-0.165468,0.690811,0.778782,-0.362178,0.957976,0.460768,0.602136,0.477631,-0.441999,-0.524402,1 +0.172357,0.212576,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.126571,-0.0627869,-0.121092,-0.335786,-0.362178,-0.458336,-0.0886391,-0.039153,-0.144492,-0.303962,-0.524402,5 +0.172357,0.988654,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,-0.850643,-0.0627869,-0.121092,-0.335786,-0.0231245,-0.458336,0.0944967,0.153234,0.0628821,-0.303962,1.11272,1 +-0.843816,-0.822195,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.871883,-0.376776,0.28012,-0.388688,-0.961244,0.115713,-1.89618,-1.04029,-0.458336,-0.882227,-0.872829,-0.97399,-0.580037,1.11272,6 +-0.843816,-0.563502,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-0.697392,-0.489996,0.551906,-0.22878,-0.704542,0.25103,-1.11598,-0.0231245,-0.458336,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,0.551906,-0.193245,-1.24362,0.758469,-1.45035,-0.701232,-0.458336,-0.699092,-0.616313,-0.766615,-0.614546,-0.524402,0 +-0.843816,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.823691,-0.353152,-1.08959,0.758469,-1.11598,-1.04029,-0.458336,-0.393865,-0.359797,-0.490116,-0.614546,-0.524402,0 +-0.843816,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.443191,-0.264315,-1.16661,0.826128,-1.17171,-1.04029,-0.458336,-0.393865,-0.359797,-0.490116,-0.649055,-0.524402,0 +-0.843816,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,0.117049,0.0910356,-0.730212,0.318689,-1.06025,-0.701232,-0.458336,-0.393865,-0.359797,-0.420991,-0.614546,1.11272,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.0626921,0.144338,-0.909903,0.318689,-1.45035,-0.701232,-0.458336,-0.393865,-0.359797,-0.490116,-0.614546,1.11272,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,0.28012,-0.0333371,-0.935573,0.318689,-1.50608,-1.04029,-0.458336,-0.393865,-0.359797,-0.490116,-0.614546,1.11272,0 +-0.843816,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.117049,0.108803,-0.730212,0.318689,-1.06025,-0.701232,-0.458336,-0.393865,-0.359797,-0.420991,-0.614546,1.11272,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.0626921,0.233176,-0.909903,0.318689,-1.45035,-0.701232,-0.458336,-0.393865,-0.359797,-0.490116,-0.614546,1.11272,0 +-0.843816,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.639228,-0.489996,-0.317807,-0.29985,-0.653201,0.72464,-0.224329,-0.701232,-0.458336,-0.393865,-0.23154,-0.490116,-0.545527,-0.524402,1 +-0.843816,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,-0.26345,-0.264315,-1.03825,0.72464,-1.06025,-0.701232,-0.458336,-0.393865,-0.295669,-0.420991,-0.614546,-0.524402,1 +-0.843816,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.813719,-0.489996,-0.426521,-0.282082,-0.576191,0.758469,-0.00141549,-0.701232,-0.458336,-0.638046,-0.23154,-0.490116,-0.441999,-2.16152,1 +-0.843816,0.212576,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.535235,-0.335385,-0.52485,0.690811,-0.00141549,-0.701232,-0.458336,-0.638046,-0.23154,-0.559241,-0.338471,-2.16152,1 +-0.843816,0.471268,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.10454,-0.150338,-0.535235,-0.0511046,0.424947,-0.493213,0.110041,-0.0231245,-0.458336,-0.393865,-0.167411,-0.420991,-0.37298,-0.524402,1 +-0.843816,0.988654,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,-0.0333371,0.424947,-0.493213,0.110041,-0.0231245,-0.458336,-0.393865,-0.103282,-0.420991,-0.269452,-0.524402,1 +-0.640581,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,-0.264315,-0.42217,0.690811,0.221498,-0.362178,-0.458336,-0.393865,0.0249759,-0.351867,-0.234943,-2.16152,1 +-0.640581,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,-0.37092,-0.42217,0.690811,0.221498,-1.04029,-0.458336,-0.393865,0.0891048,-0.282742,-0.131415,-2.16152,1 +-0.640581,1.76473,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.988211,0.0761009,-0.535235,-0.264315,1.24639,-1.03448,1.0017,1.67214,-0.458336,-0.21073,0.217363,-0.0753675,-0.0278867,-0.524402,1 +-0.640581,0.471268,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,-0.535235,-0.211012,-0.345159,0.690811,0.388683,-0.701232,-0.458336,-0.638046,0.153234,-0.213617,0.14466,-2.16152,1 +-0.640581,1.24735,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,2.57849,1.24639,-1.03448,1.0017,0.654983,-0.458336,-0.393865,-0.103282,-0.213617,0.455245,-0.524402,5 +-0.640581,0.988654,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-1.51169,0.981856,-0.535235,2.96937,0.784329,-0.425555,1.0017,0.315929,-0.458336,-0.393865,-0.23154,-0.351867,0.248188,-0.524402,5 +-0.640581,-0.822195,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-1.68618,1.32151,-0.535235,1.93886,0.322266,-0.594701,-0.280057,0.315929,-0.458336,-1.06536,-1.06522,-1.18136,0.0411321,-0.524402,6 +-0.640581,-0.822195,-0.203162,0.893932,1.3886,-0.0574621,-0.268691,-1.56985,0.981856,-0.535235,1.97439,0.193915,-0.425555,-0.280057,-0.0231245,-0.458336,-0.393865,-0.8087,-0.97399,0.14466,-0.524402,6 +-0.640581,-0.822195,-0.203162,1.5728,3.07767,-0.0574621,-0.268691,-1.74434,1.66117,-0.535235,-0.797341,0.270926,-0.594701,-0.391514,-0.362178,-0.458336,-1.43163,-1.44999,-1.59611,-0.0969054,-0.524402,6 +-0.640581,-0.822195,-0.203162,0.893932,3.41548,-0.0574621,-0.268691,-1.74434,1.66117,-0.535235,-0.797341,0.270926,-0.594701,-0.391514,0.315929,-0.458336,-1.43163,-1.38586,-1.52699,-0.0969054,-0.524402,6 +-0.640581,0.212576,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.535235,-0.122175,-0.345159,0.690811,0.388683,-1.04029,-0.458336,-0.393865,0.0249759,-0.282742,-0.165924,-2.16152,1 +-0.640581,-0.0461169,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,-0.104407,-0.986914,0.690811,-1.00453,-1.37934,-0.458336,-0.515956,-0.295669,-0.420991,-0.545527,-0.524402,1 +-0.640581,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.62801,1.09507,-0.535235,3.00491,0.193915,-0.425555,-0.280057,-0.701232,-0.458336,-0.393865,-0.744571,-0.904865,0.14466,-0.524402,6 +-0.640581,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.62801,1.09507,-0.535235,3.05821,0.193915,-0.425555,-0.280057,-0.0231245,-0.458336,-0.393865,-0.616313,-0.697491,0.00662268,-0.524402,6 +-0.0308771,1.76473,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.871883,0.0761009,-0.535235,-0.335385,0.322266,0.081884,0.83451,0.315929,-0.458336,1.55958,0.92278,0.75413,0.627791,-0.524402,3 +-0.0308771,2.7995,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.930047,0.0761009,-0.535235,-1.22376,0.322266,0.081884,0.83451,0.994036,0.957976,1.55958,1.05104,1.09975,0.420735,1.11272,3 +-0.0308771,2.7995,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.10454,0.30254,-0.535235,-1.45474,0.476287,-0.0872623,0.890238,0.994036,0.957976,1.55958,1.11517,1.37625,0.524263,1.11272,3 +-0.0308771,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.813719,-0.150338,-0.535235,-0.672968,0.296596,0.115713,0.83451,0.994036,-0.458336,1.55958,1.37168,1.58363,0.00662268,1.11272,3 +-0.0308771,0.988654,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.74434,1.20829,-0.535235,-1.08162,0.707319,-0.391726,0.890238,-0.0231245,-0.458336,-0.699092,0.153234,-0.00624269,1.45602,-0.524402,5 +-0.0308771,1.24735,-0.203162,-0.124374,1.3886,-0.0574621,-0.268691,-1.8025,1.43473,-0.535235,-1.45474,0.707319,-0.391726,0.890238,0.315929,-0.458336,-0.393865,0.217363,-0.144492,1.21445,-0.524402,5 +-0.0308771,-0.563502,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-1.1627,0.415759,0.171406,0.570759,0.630308,-0.391726,0.723053,-0.0231245,-0.458336,0.582859,-0.103282,-0.00624269,0.834848,-0.524402,5 +-0.0308771,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.930047,0.0761009,0.334477,0.855039,0.296596,-0.391726,-0.00141549,0.315929,-0.458336,0.582859,0.0249759,0.132007,0.420735,1.11272,6 +0.273975,0.729961,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-0.639228,-0.150338,0.117049,-0.424223,0.219585,-0.18875,0.16577,-0.701232,-0.458336,0.582859,0.34562,0.477631,-0.0969054,1.11272,5 +0.273975,0.988654,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.930047,0.0761009,-0.535235,-0.0333371,0.219585,-0.18875,0.16577,-0.701232,-0.458336,0.399723,0.34562,0.408506,-0.165924,1.11272,5 +0.375592,-0.30481,-0.203162,0.893932,1.3886,-0.0574621,-0.268691,-1.1627,0.30254,-0.535235,0.339781,0.270926,-0.256409,0.16577,-0.701232,-0.458336,0.399723,0.0891048,0.201132,0.14466,1.11272,5 +0.375592,-0.30481,-0.203162,-1.48212,3.07767,-0.0574621,-0.268691,-1.56985,0.755417,-0.535235,-1.45474,0.0912342,-0.256409,-0.224329,-1.04029,-0.458336,-0.699092,-0.423926,-0.559241,0.14466,-0.524402,5 +0.0707402,-0.30481,-0.203162,1.91224,1.05078,-0.0574621,-0.268691,-1.22087,0.528978,0.00833509,1.22816,0.296596,-0.391726,-0.00141549,0.315929,-0.458336,0.582859,-0.103282,-0.0753675,0.731319,1.11272,5 +0.0707402,-0.822195,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-0.930047,0.0761009,0.388834,1.13932,0.296596,-0.391726,-0.00141549,-0.0231245,-0.458336,0.582859,0.0249759,0.0628821,0.386226,1.11272,6 +0.0707402,-0.0461169,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-1.27903,0.642198,0.0626921,0.286478,0.655978,-0.391726,0.778782,0.315929,-0.458336,0.582859,0.0249759,-0.00624269,0.834848,-0.524402,5 +0.0707402,-0.0461169,-0.203162,0.554496,2.06422,-0.0574621,-0.268691,-1.91883,1.88761,-0.535235,-1.45474,0.707319,-0.391726,0.890238,-0.362178,-0.458336,-0.699092,-0.359797,-0.628366,0.938376,-0.524402,6 +0.782061,-0.30481,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-0.639228,-0.0371185,-0.046022,0.286478,0.219585,-0.053433,0.388683,0.654983,-0.458336,0.460768,0.538007,0.546756,-0.303962,1.11272,5 +0.782061,-0.563502,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-1.10454,0.415759,-0.426521,0.624061,0.399276,-0.290238,0.388683,1.67214,-0.458336,0.399723,0.409749,0.408506,-0.131415,1.11272,6 +0.782061,-0.30481,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-1.27903,0.528978,-0.480878,0.783969,0.399276,-0.290238,0.388683,1.67214,-0.458336,0.460768,0.409749,0.477631,-0.0623961,1.11272,6 +-1.14867,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.528978,-0.535235,1.44137,-0.678871,0.487835,-0.670156,-1.04029,-0.458336,-0.760137,-0.488055,-0.766615,-0.476509,-0.524402,1 +-1.14867,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,1.40583,-0.576191,0.352518,-0.670156,-0.701232,-0.458336,-0.760137,-0.552184,-0.83574,-0.511018,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,0.30254,-0.480878,1.54797,-0.755882,0.589323,-0.670156,-0.701232,-0.458336,-0.760137,-0.488055,-0.766615,-0.511018,-0.524402,0 +-1.14867,0.729961,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.56985,0.755417,-0.535235,0.304246,-0.704542,0.487835,-0.725884,-1.37934,-0.458336,-0.393865,-0.359797,-0.559241,-0.511018,-0.524402,1 +-1.14867,0.212576,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.56985,0.755417,-0.535235,0.357548,-0.730212,0.352518,-1.00453,-1.37934,-0.458336,-0.393865,-0.423926,-0.559241,-0.511018,-0.524402,1 +-1.14867,-0.563502,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,0.197641,-1.11526,0.656981,-1.3389,-1.04029,-0.458336,-0.760137,-0.616313,-0.83574,-0.614546,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,0.357548,-1.11526,0.555494,-1.50608,-1.37934,0.957976,-0.638046,-0.552184,-0.766615,-0.614546,-0.524402,0 +-1.14867,-0.30481,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.22087,0.0761009,-0.480878,0.00219796,-0.884233,0.690811,-0.781613,-0.701232,-0.458336,-0.943273,-0.552184,-0.83574,-0.441999,-2.16152,1 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.480878,0.179873,-1.08959,0.656981,-1.28317,-1.04029,-0.458336,-0.943273,-0.680442,-0.97399,-0.580037,-0.524402,1 +-1.14867,3.31689,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-1.45352,0.981856,-0.535235,-1.11716,-0.47351,0.217201,-0.670156,-1.04029,-0.458336,-0.393865,-0.103282,-0.282742,-0.476509,-0.524402,1 +-1.14867,3.83427,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.45352,1.32151,-0.535235,-1.06385,-0.47351,0.217201,-0.670156,-1.04029,-0.458336,-0.0886391,-0.167411,-0.282742,-0.441999,-0.524402,1 +-1.04705,2.28212,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.45352,0.981856,-0.535235,-0.264315,-0.47351,0.217201,-0.670156,-0.701232,-0.458336,-0.393865,-0.167411,-0.351867,-0.511018,-0.524402,1 +-1.04705,3.57558,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.33719,0.981856,-0.535235,-1.15269,-0.47351,0.217201,-0.670156,-1.04029,-0.458336,-0.0886391,-0.103282,-0.213617,-0.476509,-0.524402,1 +-1.14867,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.528978,-0.426521,1.19262,-0.42217,0.217201,-0.558699,-0.362178,-0.458336,-0.699092,-0.616313,-0.766615,-0.511018,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.45352,0.528978,-0.426521,1.33476,-0.884233,0.352518,-1.3389,-0.701232,-0.458336,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-1.14867,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,1.15709,-0.52485,0.318689,-0.614428,-0.0231245,-0.458336,-0.699092,-0.488055,-0.697491,-0.511018,-0.524402,1 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,1.33476,-0.935573,0.420177,-1.3389,-0.701232,0.957976,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,1.19262,-0.396499,0.352518,-0.280057,-1.04029,0.957976,-0.699092,-0.488055,-0.697491,-0.441999,-0.524402,1 +-1.14867,-0.30481,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.39536,0.30254,-0.535235,1.4236,-0.961244,0.521664,-1.22744,-0.701232,0.957976,-0.699092,-0.488055,-0.697491,-0.545527,-0.524402,2 +-1.14867,0.988654,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.62801,1.09507,-0.535235,0.695131,-0.44784,0.352518,-0.391514,-0.701232,0.957976,-0.760137,-0.488055,-0.697491,-0.37298,-0.524402,1 +-1.14867,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.981856,-0.535235,1.63681,-0.807222,0.352518,-1.17171,-0.0231245,2.37429,-0.515956,-0.552184,-0.697491,-0.511018,-0.524402,2 +-1.14867,-0.0461169,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,-1.62801,0.755417,-0.535235,1.69011,-0.627531,0.28486,-0.893069,-0.362178,-0.458336,-0.760137,-0.680442,-0.83574,-0.441999,-0.524402,1 +-1.14867,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.981856,-0.535235,1.58351,-0.935573,0.352518,-1.45035,-0.362178,2.37429,-0.515956,-0.552184,-0.697491,-0.545527,1.11272,2 +-1.14867,-0.30481,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-1.74434,0.755417,-0.535235,1.88556,-0.627531,0.28486,-0.893069,-0.701232,-0.458336,-1.12641,-0.744571,-1.04311,-0.37298,-0.524402,2 +-1.14867,-0.30481,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.68618,0.642198,-0.535235,1.99216,-0.781552,0.487835,-0.893069,-0.362178,-0.458336,-1.12641,-0.616313,-0.904865,-0.338471,-0.524402,2 +-1.14867,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.51169,0.755417,-0.535235,0.783969,-0.550521,0.454006,-0.447242,-0.362178,-0.458336,-0.699092,-0.616313,-0.83574,-0.476509,-0.524402,1 +-1.14867,0.471268,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.56985,0.868636,-0.535235,0.286478,-0.396499,0.25103,-0.447242,-0.0231245,0.957976,-0.638046,-0.552184,-0.766615,-0.40749,-0.524402,1 +-1.14867,-0.822195,-0.203162,-1.48212,-0.300473,-0.0574621,-0.268691,-1.56985,0.528978,-0.535235,0.997179,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-1.00109,-1.18136,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,1.22816,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,1.22816,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.545527,-0.524402,2 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,1.22816,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.545527,-0.524402,2 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,1.22816,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.545527,-0.524402,2 +-1.14867,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,-1.27903,0.0761009,-0.372164,0.197641,-1.01258,0.386347,-1.56181,-1.04029,-0.458336,-0.699092,-0.8087,-0.97399,-0.476509,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.317807,0.286478,-1.03825,0.420177,-1.56181,-1.04029,-0.458336,-0.699092,-0.8087,-0.904865,-0.545527,-0.524402,0 +-1.14867,-0.563502,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,1.08602,-0.858563,0.386347,-1.22744,-1.04029,-0.458336,-0.760137,-0.744571,-0.904865,-0.545527,-0.524402,0 +-1.14867,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,1.01495,-0.858563,0.386347,-1.22744,-1.37934,-0.458336,-0.760137,-0.680442,-0.83574,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,-1.39536,0.18932,-0.372164,0.233176,-0.961244,0.318689,-1.56181,-1.37934,-0.458336,-0.760137,-0.936957,-1.11224,-0.476509,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.317807,0.233176,-1.03825,0.420177,-1.56181,-1.04029,-0.458336,-0.760137,-0.8087,-0.97399,-0.545527,-0.524402,0 +-1.14867,-0.563502,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,1.03271,-0.858563,0.386347,-1.22744,-1.04029,-0.458336,-0.760137,-0.744571,-0.904865,-0.545527,-0.524402,0 +-1.14867,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.56985,0.528978,-0.535235,1.21039,-0.858563,0.386347,-1.22744,-1.37934,-0.458336,-0.760137,-0.744571,-0.904865,-0.511018,-0.524402,2 +-1.14867,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.27903,0.0761009,-0.535235,-0.0333371,-0.678871,0.352518,-0.893069,-0.0231245,-0.458336,-0.699092,-0.616313,-0.766615,-0.545527,-0.524402,1 +-1.14867,0.212576,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.0199655,-0.678871,0.352518,-0.893069,0.315929,-0.458336,-0.699092,-0.616313,-0.83574,-0.511018,-0.524402,1 +-1.14867,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,-0.0155696,-0.807222,0.352518,-1.17171,-0.362178,-0.458336,-0.699092,-0.680442,-0.83574,-0.580037,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.04637,-0.150338,-0.535235,0.0555005,-1.14093,0.454006,-1.72899,-1.04029,-0.458336,-0.699092,-0.680442,-0.83574,-0.614546,1.11272,0 +-1.14867,0.729961,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,0.588526,-0.47351,0.081884,-0.893069,-1.04029,-0.458336,-0.393865,-0.423926,-0.559241,-0.40749,-0.524402,1 +-1.14867,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,0.943877,-0.653201,0.318689,-0.893069,-1.04029,-0.458336,-0.393865,-0.359797,-0.490116,-0.511018,-0.524402,1 +-1.14867,0.471268,-0.203162,-0.124374,1.05078,-0.0574621,-0.268691,-1.56985,1.43473,-0.535235,1.69011,0.707319,-1.13597,-0.335786,0.654983,-0.458336,-0.393865,-0.872829,-0.83574,0.420735,-0.524402,5 +-1.14867,-0.0461169,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-1.68618,1.88761,-0.535235,1.4236,0.707319,-1.13597,-0.335786,0.994036,-0.458336,-0.638046,-0.936957,-0.97399,0.317207,-0.524402,5 +-1.14867,-0.30481,-0.203162,1.5728,2.40204,-0.0574621,-0.268691,-1.8025,2.45371,-0.535235,2.64956,0.707319,-1.13597,-0.335786,0.315929,-0.458336,-1.85895,-1.2576,-1.59611,0.524263,-0.524402,6 +-1.14867,-0.822195,-0.203162,2.25167,3.07767,-0.0574621,-0.268691,-1.977,2.79336,-0.535235,2.7384,0.707319,-1.13597,-0.335786,0.654983,0.957976,-0.638046,-1.38586,-1.59611,0.765829,-0.524402,6 +-1.14867,-0.30481,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.8025,2.34049,-0.535235,2.06323,0.655978,-1.06831,-0.335786,0.654983,-0.458336,-0.760137,-0.936957,-0.97399,0.213679,-0.524402,5 +-1.14867,-0.0461169,-0.203162,2.25167,2.06422,-0.0574621,-0.268691,-1.74434,2.34049,-0.535235,1.81449,0.655978,-1.06831,-0.335786,1.67214,-0.458336,-0.760137,-0.8087,-0.83574,0.248188,-0.524402,5 +-1.14867,-0.822195,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,-1.1627,-0.263557,-0.535235,0.446386,-0.909903,0.25103,-1.56181,-1.04029,-0.458336,-0.760137,-0.8087,-0.97399,-0.545527,-0.524402,6 +-1.14867,-0.822195,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,-0.988211,-0.263557,-0.535235,-0.104407,-0.807222,-0.0196038,-1.78472,-0.701232,-0.458336,-0.699092,-0.8087,-0.904865,-0.511018,1.11272,6 +-1.14867,-0.822195,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,0.339781,-0.704542,-0.0196038,-1.56181,-0.701232,-0.458336,-0.760137,-0.8087,-0.97399,-0.545527,1.11272,0 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.27903,-0.150338,-0.535235,0.499689,-1.01258,0.386347,-1.56181,-1.37934,-0.458336,-0.760137,-0.8087,-0.97399,-0.580037,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,0.375316,-0.781552,-0.053433,-1.78472,-0.362178,2.37429,-1.06536,-0.936957,-1.04311,-0.511018,1.11272,6 +-1.14867,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,0.286478,-0.601861,-0.290238,-1.78472,-0.362178,2.37429,-0.699092,-1.00109,-1.04311,-0.303962,1.11272,6 +-1.14867,0.212576,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,-0.139942,-0.0371167,-0.66236,-1.17171,-0.362178,-0.458336,-0.271775,-0.8087,-0.766615,0.248188,1.11272,5 +-1.14867,0.212576,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,-0.264315,-0.0371167,-0.66236,-1.17171,-0.0231245,-0.458336,-0.271775,-0.872829,-0.83574,0.455245,1.11272,5 +-1.14867,-0.822195,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.428619,0.065564,-0.560872,-0.781613,-1.04029,2.37429,-0.821182,-1.00109,-1.04311,-0.234943,-0.524402,6 +-1.14867,-0.822195,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.51169,0.642198,-0.535235,-0.459758,0.065564,-0.560872,-0.781613,-0.362178,2.37429,-0.638046,-1.2576,-1.45786,0.386226,-0.524402,6 +-1.14867,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,-0.0333371,-0.396499,-0.425555,-1.56181,-0.701232,0.957976,-0.699092,-1.2576,-1.38874,0.110151,1.11272,6 +-1.14867,-0.822195,-0.203162,0.554496,2.40204,-0.0574621,-0.268691,-1.68618,0.642198,-0.535235,0.108803,-0.678871,-0.0872623,-1.61754,-0.0231245,-0.458336,-0.699092,-1.12934,-1.18136,0.00662268,1.11272,6 +-1.14867,-0.822195,-0.203162,-1.48212,1.3886,-0.0574621,-0.268691,-1.51169,0.642198,-0.535235,0.233176,-0.345159,-0.391726,-1.39462,-0.0231245,-0.458336,-0.271775,-1.00109,-0.97399,0.662301,1.11272,6 +-1.14867,0.988654,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-1.22087,0.0761009,-0.535235,-0.459758,-0.242478,-0.290238,-1.00453,0.315929,-0.458336,0.155542,-0.359797,-0.282742,0.317207,1.11272,5 +-1.14867,1.24735,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-1.33719,0.30254,-0.535235,0.037733,0.193915,-0.493213,-0.391514,-0.362178,-0.458336,-0.0886391,-0.488055,-0.490116,0.0756414,1.11272,5 +-1.14867,1.50604,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.481921,0.0398938,-0.290238,-0.391514,0.654983,2.37429,-0.0886391,-0.359797,-0.351867,-0.165924,1.11272,1 +-1.14867,-0.0461169,-0.203162,-1.48212,2.40204,-0.0574621,-0.268691,-1.68618,1.20829,-0.535235,-0.58413,0.0912342,-0.831506,-1.17171,-1.04029,0.957976,-0.393865,-1.12934,-1.25049,0.731319,1.11272,5 +-1.14867,-0.563502,-0.203162,-0.46381,3.41548,-0.0574621,-0.268691,-1.8025,1.54795,-0.535235,-0.477525,0.655978,-1.27129,-0.670156,-1.04029,2.37429,-1.55373,-1.38586,-1.52699,0.0756414,-0.524402,6 +-1.14867,-0.822195,-0.203162,-0.46381,4.09111,-0.0574621,-0.268691,-1.977,1.88761,-0.535235,-1.38367,0.655978,-1.27129,-0.670156,-0.362178,2.37429,-1.73686,-1.57825,-1.80349,0.0411321,-0.524402,6 +-1.14867,-0.822195,-0.203162,-0.803245,4.42892,-0.0574621,-0.268691,-1.977,1.88761,-0.535235,-1.33037,0.322266,-0.831506,-0.670156,-0.362178,-0.458336,-1.67582,-1.57825,-1.73436,-0.0969054,-0.524402,6 +-1.14867,0.988654,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,-1.39536,0.415759,-0.535235,0.268711,0.193915,-0.493213,-0.391514,0.654983,-0.458336,-0.393865,-0.616313,-0.559241,-0.0278867,-0.524402,5 +-1.14867,1.76473,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-1.27903,0.30254,-0.535235,0.162106,0.0398938,-0.290238,-0.391514,0.654983,2.37429,-0.0886391,-0.359797,-0.351867,-0.131415,1.11272,1 +-0.640581,1.50604,-0.203162,0.893932,0.0373407,-0.0574621,1.42637,-1.45352,0.415759,-0.535235,-1.45474,1.50309,-1.4066,0.945967,1.33309,-0.458336,0.155542,0.0891048,0.270256,1.52504,1.11272,5 +-0.640581,1.76473,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-1.45352,0.30254,-0.535235,-1.45474,0.501957,-0.0872623,0.945967,-0.0231245,0.957976,0.155542,0.602136,0.546756,0.213679,-0.524402,3 +-0.640581,2.02342,-0.203162,1.91224,-0.300473,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,-1.15269,-0.0884571,0.521664,0.667325,-0.362178,-0.458336,1.07122,0.858651,0.961504,0.00662268,-0.524402,3 +-0.640581,1.76473,-0.203162,1.5728,-0.300473,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,-1.45474,0.0398938,0.521664,0.945967,-0.0231245,-0.458336,0.94913,0.986909,1.09975,-0.0969054,-0.524402,3 +-0.234112,0.729961,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.1627,0.0761009,-0.535235,1.95663,-0.0114465,0.555494,0.890238,-0.701232,-0.458336,1.07122,1.30755,1.238,-0.165924,-0.524402,3 +-0.234112,2.02342,-0.203162,2.25167,-0.638287,-0.0574621,-0.268691,-1.39536,0.415759,-0.535235,-0.22878,0.347936,0.555494,1.67044,0.654983,-0.458336,1.37645,1.49994,1.58363,0.14466,-0.524402,3 +-0.234112,2.02342,-0.203162,3.60941,-0.638287,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,-0.921713,-0.242478,0.521664,0.332955,-0.701232,0.957976,1.07122,1.05104,1.09975,-0.269452,1.11272,3 +-0.742198,1.50604,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.215408,-0.961244,0.961445,-0.502971,-1.04029,0.957976,-0.0886391,0.153234,-0.00624269,-0.545527,-0.524402,1 +-0.742198,1.50604,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.375316,-0.961244,0.961445,-0.502971,-0.701232,-0.458336,-0.0886391,0.153234,0.0628821,-0.545527,-0.524402,1 +-0.742198,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.697392,-0.376776,-0.26345,-0.0688721,-1.26929,0.927615,-1.22744,-1.04029,-0.458336,-0.0886391,-0.103282,-0.213617,-0.580037,-0.524402,0 +-0.742198,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.639228,-0.489996,-0.317807,-0.15771,-1.26929,0.927615,-1.22744,-1.04029,-0.458336,-0.0886391,-0.103282,-0.213617,-0.614546,1.11272,0 +-0.742198,-0.30481,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,0.144338,-0.49918,0.690811,0.0543129,-1.04029,-0.458336,-0.515956,-0.167411,-0.490116,-0.303962,-2.16152,1 +-0.742198,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.51169,0.18932,-0.535235,0.393083,-1.21795,0.690811,-1.50608,-1.04029,-0.458336,-0.515956,-0.423926,-0.559241,-0.614546,-0.524402,0 +-0.742198,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.317807,0.0199655,-1.19228,0.826128,-1.22744,-0.701232,-0.458336,-0.0886391,-0.167411,-0.282742,-0.580037,-0.524402,0 +-0.742198,0.212576,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.10454,-0.150338,-0.535235,0.375316,-0.704542,0.826128,-0.168601,-0.362178,0.957976,-0.393865,-0.039153,-0.351867,-0.338471,-2.16152,1 +-0.742198,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,0.0761009,-0.535235,0.712899,-0.730212,0.25103,-1.17171,-0.362178,-0.458336,-0.699092,-0.423926,-0.628366,-0.580037,-0.524402,0 +-0.742198,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.659596,-0.370829,0.25103,-0.391514,-0.701232,-0.458336,-0.699092,-0.23154,-0.559241,-0.338471,-0.524402,1 +-0.742198,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,0.179873,-0.139797,0.318689,0.221498,-0.701232,-0.458336,-0.638046,-0.039153,-0.351867,-0.0278867,-0.524402,1 +-0.742198,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.535235,0.464154,-0.935573,0.454006,-1.28317,-1.04029,-0.458336,-0.638046,-0.423926,-0.697491,-0.545527,-0.524402,0 +-0.742198,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,-0.459758,-0.319489,0.318689,-0.168601,-0.701232,-0.458336,-0.271775,0.0249759,-0.213617,-0.303962,-0.524402,1 +-0.742198,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,0.0761009,-0.535235,-0.335385,-0.576191,0.454006,-0.502971,-0.701232,-0.458336,-0.271775,0.0249759,-0.213617,-0.338471,-0.524402,1 +-0.742198,0.729961,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,-0.335385,-0.704542,0.656981,-0.447242,-0.362178,-0.458336,-0.515956,-0.039153,-0.282742,-0.303962,-0.524402,1 +-0.742198,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,-0.690735,-0.550521,0.454006,-0.447242,-0.362178,-0.458336,-0.638046,-0.039153,-0.282742,-0.269452,-0.524402,1 +-0.742198,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,-0.708503,-0.550521,0.454006,-0.447242,-0.362178,-0.458336,-0.638046,-0.039153,-0.282742,-0.269452,-0.524402,1 +-0.742198,0.471268,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.04637,-0.150338,-0.535235,-0.601898,-0.884233,0.487835,-1.11598,-0.362178,-0.458336,-0.638046,-0.23154,-0.490116,-0.511018,-0.524402,1 +-1.3519,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.116902,-0.489996,-0.317807,1.24592,-0.807222,0.0480547,-1.67327,0.315929,-0.458336,-0.943273,-0.936957,-1.11224,-0.545527,1.11272,2 +-1.3519,-0.822195,-0.203162,2.59111,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,-0.317807,0.570759,-1.14093,0.318689,-1.95191,-1.04029,-0.458336,-0.943273,-1.00109,-1.18136,-0.580037,1.11272,0 +-1.3519,-0.822195,-0.203162,2.59111,-0.638287,-0.0574621,-0.268691,0.349558,-0.716435,-0.426521,0.393083,-1.29496,0.454006,-2.06337,-0.701232,-0.458336,-0.943273,-1.00109,-1.18136,-0.580037,1.11272,0 +-1.3519,-0.563502,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.000574525,-0.376776,-0.426521,0.286478,-0.0884571,-0.696189,-1.3389,1.67214,-0.458336,-1.30954,-0.872829,-1.18136,-0.338471,1.11272,1 +-1.3519,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.116902,-0.603215,-0.426521,0.410851,-0.986914,0.352518,-1.56181,-0.0231245,-0.458336,-1.30954,-0.936957,-1.18136,-0.511018,-0.524402,0 +-1.3519,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.175066,-0.603215,-0.426521,0.357548,-1.06392,0.352518,-1.72899,-0.701232,-0.458336,-1.30954,-1.00109,-1.25049,-0.545527,-0.524402,0 +-0.0308771,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.480878,0.464154,-0.627531,0.72464,-0.168601,-0.701232,0.957976,-0.149684,0.0891048,-0.0753675,-0.545527,-0.524402,1 +-0.0308771,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.116902,-0.376776,-0.480878,0.570759,-0.268148,0.25103,-0.168601,-0.0231245,0.957976,-0.149684,0.0891048,-0.0753675,-0.511018,-0.524402,0 +-0.0308771,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.291394,-0.716435,-0.480878,0.179873,-0.0884571,0.0142255,-0.168601,-0.0231245,-0.458336,-0.0886391,0.153234,-0.00624269,-0.580037,-0.524402,1 +-0.0308771,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.291394,-0.716435,-0.426521,0.073268,-0.832893,0.656981,-0.725884,-1.04029,0.957976,-0.0886391,0.0891048,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.046022,0.855039,0.296596,-0.256409,0.221498,-0.0231245,0.957976,0.0944967,0.538007,0.408506,-0.338471,1.11272,1 +-0.0308771,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.5229,-0.263557,-0.535235,0.766201,-0.319489,0.656981,0.388683,0.315929,0.957976,0.765994,0.794523,0.75413,-0.476509,-0.524402,1 +0.477209,2.28212,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.150338,-0.535235,-0.72627,-0.576191,0.893786,0.221498,-1.37934,0.957976,0.521813,0.794523,0.685005,-0.511018,-0.524402,1 +0.477209,1.24735,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.150338,-0.535235,-0.530828,-0.47351,0.758469,0.221498,-0.701232,-0.458336,0.521813,0.730394,0.61588,-0.511018,-0.524402,1 +-0.0308771,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.175066,-0.603215,-0.26345,0.552991,-0.345159,0.0142255,-0.725884,-0.362178,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.614546,1.11272,0 +-0.0308771,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.349558,-0.716435,-0.426521,0.286478,-0.935573,0.656981,-0.948798,-0.0231245,0.957976,-0.0886391,0.0891048,-0.00624269,-0.614546,1.11272,0 +0.985296,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.263557,-0.26345,0.712899,-0.653201,1.16442,0.50014,-0.0231245,-0.458336,0.582859,0.858651,0.75413,-0.511018,-0.524402,1 +0.985296,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.376776,-0.535235,0.233176,-0.678871,1.23208,0.555868,-0.0231245,-0.458336,0.582859,0.858651,0.75413,-0.476509,-0.524402,1 +0.985296,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.489996,-0.209093,0.215408,-0.704542,1.23208,0.50014,0.994036,-0.458336,0.582859,0.858651,0.685005,-0.511018,-0.524402,1 +0.985296,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.489996,0.117049,-0.406455,-0.935573,1.29974,0.110041,-0.701232,-0.458336,0.582859,0.858651,0.75413,-0.580037,-0.524402,1 +0.985296,-0.0461169,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.000574525,-0.716435,-0.535235,0.481921,-0.961244,1.46888,0.332955,-0.701232,0.957976,1.07122,1.24342,1.238,-0.545527,-0.524402,1 +0.985296,0.212576,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,0.428619,-0.832893,1.43505,0.555868,-0.701232,0.957976,1.07122,1.30755,1.30713,-0.580037,-0.524402,1 +0.985296,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,1.36726,-0.29985,-0.961244,1.16442,-0.168601,-0.0231245,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,9 +0.273975,0.471268,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.480878,-0.139942,-0.807222,0.859957,-0.335786,-1.04029,0.957976,0.399723,0.538007,0.477631,-0.614546,-0.524402,1 +0.273975,0.729961,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.426521,-0.317617,-1.06392,1.19825,-0.335786,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,1 +0.273975,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.426521,0.215408,-0.730212,0.927615,-0.0571439,-1.04029,0.957976,0.399723,0.602136,0.477631,-0.580037,-0.524402,1 +0.273975,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.000574525,-0.489996,-0.426521,0.428619,-0.807222,0.859957,-0.335786,-0.701232,0.957976,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.375592,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.823691,-0.193245,-1.01258,1.29974,-0.0571439,-0.701232,0.957976,0.277632,0.409749,0.270256,-0.580037,-2.16152,0 +0.375592,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.3129,-0.406455,-1.42331,1.29974,-0.948798,-1.04029,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,9 +0.375592,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.91083,-0.548595,-1.24362,1.33357,-0.502971,-0.701232,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,9 +0.375592,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,2.12826,-0.601898,-1.24362,1.33357,-0.502971,-0.701232,-0.458336,0.277632,0.409749,0.270256,-0.649055,-0.524402,9 +0.375592,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,1.74776,-0.495293,-1.24362,1.33357,-0.502971,-0.701232,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,9 +0.375592,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,1.25855,-0.424223,-1.24362,1.33357,-0.502971,-0.701232,-0.458336,0.277632,0.34562,0.270256,-0.614546,-0.524402,9 +0.172357,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.640377,-0.942873,1.20419,-0.37092,-1.01258,0.792298,-0.893069,-0.0231245,-0.458336,0.155542,0.281491,0.201132,-0.614546,1.11272,0 +0.172357,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,1.20419,-0.37092,-1.39764,1.29974,-0.893069,-1.04029,-0.458336,0.155542,0.34562,0.270256,-0.649055,-0.524402,0 +0.172357,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.407721,-0.942873,0.117049,0.144338,-0.986914,0.792298,-0.837341,-0.701232,-0.458336,0.155542,0.153234,0.132007,-0.580037,1.11272,0 +0.172357,-0.822195,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,0.23323,-0.829654,-0.426521,0.126571,-1.03825,0.758469,-1.00453,-1.04029,-0.458336,0.0334514,-0.039153,-0.0753675,-0.545527,1.11272,6 +0.172357,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.291394,-0.829654,-0.154736,0.286478,-0.986914,0.792298,-0.837341,-1.04029,-0.458336,0.155542,0.153234,0.0628821,-0.580037,-0.524402,0 +0.172357,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.175066,-0.829654,-0.535235,0.712899,-0.935573,0.826128,-0.670156,-1.37934,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.614546,-0.524402,0 +0.172357,0.729961,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.480878,-0.0155696,-0.730212,0.893786,-0.112872,0.315929,-0.458336,0.0944967,0.409749,0.270256,-0.511018,-0.524402,1 +0.172357,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,-0.426521,-1.13492,-0.627531,0.961445,0.221498,-0.362178,-0.458336,0.0944967,0.473878,0.339381,-0.511018,-0.524402,1 +0.172357,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.000574525,-0.603215,-0.426521,0.322013,-0.807222,0.893786,-0.280057,-1.04029,-0.458336,0.0944967,0.281491,0.201132,-0.545527,-0.524402,1 +0.172357,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.000574525,-0.603215,-0.426521,0.908342,-0.884233,0.893786,-0.447242,-1.04029,-0.458336,0.0944967,0.217363,0.0628821,-0.580037,-0.524402,0 +-0.843816,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,1.14983,-0.0688721,-1.26929,0.893786,-1.28317,-1.37934,-0.458336,-0.393865,-0.295669,-0.420991,-0.614546,-0.524402,0 +-0.843816,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,1.25855,-0.0866397,-1.32063,0.961445,-1.28317,-1.37934,-0.458336,-0.393865,-0.295669,-0.490116,-0.614546,-0.524402,0 +-0.843816,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,-0.716435,-0.046022,-0.0155696,-1.06392,0.961445,-0.725884,-1.04029,-0.458336,-0.393865,-0.167411,-0.420991,-0.580037,-2.16152,1 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,0.28012,0.0910356,-1.26929,0.893786,-1.28317,-1.37934,-0.458336,-0.393865,-0.295669,-0.490116,-0.614546,-0.524402,0 +-0.742198,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.755555,-0.489996,-0.372164,0.357548,-0.755882,0.555494,-0.725884,-0.701232,-0.458336,-0.699092,-0.423926,-0.628366,-0.511018,-0.524402,1 +-0.742198,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.871883,-0.489996,-0.317807,0.535224,-1.01258,0.555494,-1.28317,-1.04029,-0.458336,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-0.843816,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.930047,-0.263557,-0.480878,0.766201,-0.832893,0.521664,-0.948798,-0.0231245,-0.458336,-0.760137,-0.616313,-0.766615,-0.545527,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,-0.372164,0.855039,-0.49918,0.081884,-0.948798,-0.0231245,-0.458336,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-0.843816,-0.30481,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-0.988211,-0.263557,-0.372164,0.499689,-0.653201,0.28486,-0.948798,-1.04029,-0.458336,-0.699092,-0.488055,-0.697491,-0.545527,-0.524402,1 +-0.843816,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.26345,0.446386,-0.601861,0.217201,-0.948798,-1.04029,-0.458336,-0.699092,-0.488055,-0.697491,-0.545527,-0.524402,1 +-0.843816,-0.0461169,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-0.871883,-0.376776,-0.154736,0.037733,-0.42217,-0.0196038,-0.948798,-0.701232,-0.458336,-0.699092,-0.552184,-0.697491,-0.545527,-0.524402,1 +-0.843816,-0.30481,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.639228,-0.376776,0.00833509,0.250943,-0.42217,-0.0196038,-0.948798,-1.04029,-0.458336,-0.699092,-0.488055,-0.697491,-0.545527,-0.524402,0 +-1.85999,-0.30481,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,-1.62801,0.415759,-0.535235,1.06825,-0.293819,-0.154921,-0.893069,-1.04029,0.957976,-1.06536,-1.06522,-1.18136,-0.476509,-0.524402,0 +-1.85999,0.212576,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,0.304246,0.193915,-0.493213,-0.391514,-0.0231245,2.37429,-1.06536,-0.872829,-1.04311,-0.40749,-0.524402,1 +-1.85999,0.988654,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,-0.832876,0.193915,-0.493213,-0.391514,0.654983,3.7906,-0.882227,-0.680442,-0.904865,-0.40749,-0.524402,1 +-1.85999,0.471268,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.464154,-0.345159,0.0142255,-0.725884,-0.701232,-0.458336,-1.06536,-0.872829,-1.11224,-0.441999,-0.524402,1 +-1.85999,-0.822195,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,1.03271,-0.293819,-0.154921,-0.893069,-1.04029,0.957976,-1.06536,-1.06522,-1.18136,-0.511018,-0.524402,0 +-1.85999,0.729961,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.33719,0.0761009,-0.535235,0.855039,-0.49918,0.28486,-0.614428,-1.37934,-0.458336,-1.55373,-0.936957,-1.18136,-0.0969054,-0.524402,1 +-1.85999,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.18932,-0.535235,0.890574,-0.49918,0.28486,-0.614428,-0.701232,-0.458336,-1.55373,-1.06522,-1.45786,-0.269452,-2.16152,1 +-2.16484,0.471268,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.26345,0.410851,-0.781552,0.318689,-1.17171,-1.04029,-0.458336,-1.43163,-1.32173,-1.59611,-0.511018,-2.16152,1 +-2.16484,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,-0.0371185,0.00833509,0.766201,-0.781552,0.352518,-1.11598,-1.37934,-0.458336,-1.55373,-1.38586,-1.73436,-0.580037,-2.16152,0 +-2.16484,1.76473,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.26345,-0.388688,-0.807222,0.386347,-1.11598,-1.37934,-0.458336,-1.43163,-1.19347,-1.52699,-0.476509,-2.16152,1 +-2.16484,3.83427,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.27903,0.0761009,-0.535235,-1.34813,-0.909903,0.521664,-1.11598,-1.37934,-0.458336,-1.30954,-0.936957,-1.31961,-0.441999,-2.16152,1 +-2.16484,1.50604,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.209093,-0.317617,-0.858563,0.386347,-1.22744,-1.04029,-0.458336,-1.43163,-1.19347,-1.59611,-0.511018,-2.16152,1 +-2.16484,1.24735,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,-0.15771,-0.858563,0.386347,-1.22744,-1.04029,-0.458336,-1.43163,-1.2576,-1.59611,-0.511018,-2.16152,1 +-2.16484,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.100379,0.393083,-0.781552,0.352518,-1.11598,-1.37934,0.957976,-1.43163,-1.32173,-1.66524,-0.545527,-2.16152,1 +-2.16484,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,-0.0371185,0.0626921,0.855039,-0.781552,0.352518,-1.11598,-1.04029,-0.458336,-1.55373,-1.38586,-1.66524,-0.580037,-2.16152,0 +-1.3519,1.24735,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,-0.424223,-0.730212,0.521664,-0.725884,-0.701232,-0.458336,-0.943273,-0.552184,-0.904865,-0.37298,-0.524402,1 +-1.55514,-0.563502,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,-1.22087,0.0761009,-0.535235,0.499689,-0.370829,0.0142255,-0.781613,-0.362178,-0.458336,-1.06536,-1.06522,-1.31961,-0.441999,-0.524402,5 +-1.55514,-0.0461169,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,-1.33719,0.415759,-0.535235,-0.193245,-0.216808,-0.18875,-0.781613,-0.0231245,0.957976,-1.43163,-1.19347,-1.52699,-0.234943,-0.524402,5 +-1.55514,-0.563502,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.481921,-0.242478,-0.154921,-0.781613,0.315929,-0.458336,-1.06536,-1.00109,-1.25049,-0.441999,-0.524402,5 +-1.55514,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.22087,-0.150338,-0.535235,0.517456,-0.678871,0.217201,-1.11598,-0.362178,-0.458336,-1.06536,-1.00109,-1.25049,-0.580037,-0.524402,0 +-1.55514,-0.30481,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.27903,0.0761009,0.66062,-0.0511046,0.450617,-0.730018,-0.224329,-0.701232,2.37429,-0.699092,-0.936957,-1.04311,-0.269452,-0.524402,5 +-1.55514,-0.30481,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-1.27903,0.18932,1.36726,-0.29985,0.501957,-0.797677,-0.224329,-0.701232,2.37429,-0.699092,-0.936957,-0.97399,-0.200434,-0.524402,5 +-1.55514,-0.822195,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-1.51169,0.18932,-0.535235,0.375316,-0.396499,-0.154921,-1.11598,-1.04029,0.957976,-0.882227,-1.06522,-1.18136,-0.441999,-0.524402,6 +-1.55514,-0.822195,-0.203162,-0.803245,0.0373407,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.268711,-0.396499,-0.154921,-1.11598,-1.04029,0.957976,-0.760137,-1.06522,-1.18136,-0.303962,-0.524402,6 +-1.45352,-0.0461169,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.22087,0.0761009,0.714977,-0.335385,0.450617,-0.730018,-0.224329,-1.04029,0.957976,-0.699092,-0.744571,-0.83574,-0.40749,-0.524402,5 +-1.45352,0.212576,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.39536,0.18932,-0.26345,-0.0511046,0.116904,-0.797677,-1.06025,-1.04029,0.957976,-0.699092,-0.8087,-0.904865,-0.338471,1.11272,5 +-1.45352,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.33719,0.0761009,-0.426521,0.517456,-0.730212,0.318689,-1.06025,-1.04029,-0.458336,-0.760137,-0.680442,-0.83574,-0.511018,-0.524402,1 +-1.45352,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.046022,0.197641,-0.781552,0.318689,-1.17171,-0.362178,-0.458336,-0.699092,-0.8087,-0.97399,-0.511018,-0.524402,0 +-1.45352,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.997179,-0.807222,0.420177,-1.06025,-1.37934,-0.458336,-1.06536,-0.744571,-1.04311,-0.476509,-0.524402,1 +-1.45352,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,1.40583,-0.807222,0.420177,-1.06025,-0.362178,0.957976,-0.760137,-0.680442,-0.83574,-0.545527,-0.524402,2 +-1.45352,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.22087,-0.150338,-0.535235,0.997179,-0.807222,0.420177,-1.06025,-1.04029,-0.458336,-1.06536,-0.8087,-1.11224,-0.545527,-0.524402,0 +-1.45352,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.33719,0.0761009,-0.535235,1.29923,-0.807222,0.420177,-1.06025,-0.362178,-0.458336,-0.760137,-0.680442,-0.83574,-0.545527,-0.524402,2 +-1.45352,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,0.855039,-0.858563,0.521664,-1.00453,-1.04029,-0.458336,-1.06536,-0.936957,-1.18136,-0.614546,-2.16152,0 +-1.45352,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,0.926109,-0.884233,0.555494,-1.00453,-1.04029,-0.458336,-1.06536,-0.936957,-1.18136,-0.614546,-2.16152,0 +-1.85999,0.471268,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.56985,0.30254,-0.535235,0.446386,0.399276,-0.763847,-0.391514,0.315929,-0.458336,-1.30954,-1.00109,-1.38874,-0.269452,-0.524402,1 +-1.85999,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.56985,0.30254,-0.535235,0.215408,0.296596,-0.62853,-0.391514,-0.362178,-0.458336,-1.06536,-0.872829,-1.18136,-0.37298,-0.524402,1 +-1.85999,0.729961,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,0.464154,0.450617,-0.831506,-0.391514,0.315929,-0.458336,-1.43163,-1.06522,-1.38874,-0.200434,-0.524402,1 +-1.85999,0.471268,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,0.428619,0.347936,-0.831506,-0.614428,0.315929,-0.458336,-1.43163,-1.12934,-1.52699,-0.200434,-0.524402,1 +-1.85999,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,0.250943,-0.370829,0.25103,-0.391514,-0.701232,-0.458336,-1.43163,-1.06522,-1.38874,-0.303962,-2.16152,1 +-1.85999,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.51169,0.30254,-0.535235,0.872807,-0.755882,0.217201,-1.28317,-1.04029,-0.458336,-1.43163,-1.38586,-1.66524,-0.580037,-2.16152,0 +-1.85999,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,1.42637,-1.74434,0.755417,-0.535235,1.01495,0.065564,-0.324067,-0.391514,-1.37934,0.957976,-1.06536,-1.12934,-1.31961,-0.200434,-0.524402,5 +-1.85999,2.54081,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.62801,0.528978,-0.535235,-0.264315,-0.370829,0.25103,-0.391514,-1.04029,0.957976,-1.06536,-0.872829,-1.18136,-0.338471,-0.524402,1 +-2.16484,0.471268,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-1.74434,0.755417,-0.480878,0.144338,-0.114127,-0.527043,-1.11598,-1.37934,0.957976,-1.55373,-1.44999,-1.73436,-0.338471,-0.524402,5 +-2.16484,-0.30481,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-1.74434,0.755417,-0.535235,0.606294,-0.114127,-0.527043,-1.11598,-0.362178,0.957976,-1.55373,-1.64238,-1.87261,-0.338471,-0.524402,6 +-2.16484,-0.0461169,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-1.51169,0.415759,-0.426521,0.304246,-0.268148,-0.324067,-1.11598,-1.04029,0.957976,-1.43163,-1.38586,-1.59611,-0.40749,-0.524402,5 +-2.16484,-0.822195,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-1.8025,0.981856,-0.372164,0.393083,-0.216808,-0.527043,-1.3389,-0.362178,0.957976,-1.55373,-1.7065,-1.94174,-0.303962,-0.524402,6 +-2.16484,-0.30481,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.39536,0.18932,-0.480878,0.179873,-0.396499,-0.154921,-1.11598,0.315929,-0.458336,-1.43163,-1.32173,-1.52699,-0.511018,-0.524402,5 +-2.16484,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,0.339781,-0.858563,-0.121092,-2.06337,-0.701232,0.957976,-1.43163,-1.32173,-1.52699,-0.580037,1.11272,0 +-2.16484,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.22087,-0.150338,-0.480878,0.037733,-0.42217,-0.121092,-1.11598,-0.0231245,2.37429,-1.06536,-1.19347,-1.45786,-0.511018,-0.524402,1 +-2.16484,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.197641,-0.935573,0.352518,-1.45035,-0.0231245,0.957976,-1.12641,-1.19347,-1.38874,-0.580037,-0.524402,0 +-1.85999,0.471268,-0.203162,1.5728,0.0373407,-0.0574621,1.42637,-1.74434,0.755417,-0.535235,-0.246547,0.476287,-0.459384,0.277226,-0.362178,0.957976,-1.00432,-1.2576,-1.31961,0.213679,-0.524402,5 +-1.85999,-0.30481,-0.203162,1.5728,0.712969,-0.0574621,3.12144,-1.86067,1.09507,-0.535235,-0.459758,0.553298,-0.560872,0.277226,-0.0231245,0.957976,-1.43163,-1.64238,-1.94174,0.489754,-2.16152,6 +-1.85999,-0.0461169,-0.203162,1.5728,-0.300473,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,0.446386,0.322266,-0.290238,0.221498,-0.701232,-0.458336,-0.515956,-0.8087,-0.904865,0.00662268,-0.524402,5 +-1.85999,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-1.86067,0.981856,-0.535235,-0.246547,-0.396499,-0.324067,-1.39462,-0.0231245,-0.458336,-1.12641,-1.51412,-1.59611,0.00662268,-0.524402,6 +-1.85999,0.212576,-0.203162,1.91224,-0.300473,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,0.357548,0.81,-0.594701,0.778782,-0.362178,2.37429,-0.515956,-0.680442,-0.697491,-0.0623961,-0.524402,5 +-1.85999,0.729961,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.62801,0.415759,-0.535235,-0.0511046,-0.396499,-0.154921,-1.11598,-0.701232,0.957976,-0.699092,-0.872829,-1.04311,-0.338471,-0.524402,1 +-1.85999,-0.0461169,-0.203162,1.23337,0.0373407,-0.0574621,1.42637,-1.33719,0.30254,-0.535235,0.339781,0.964021,-0.763847,0.83451,-0.362178,2.37429,-0.271775,-0.8087,-0.628366,0.903866,-0.524402,5 +-1.85999,-0.563502,-0.203162,1.5728,-0.300473,-0.0574621,1.42637,-1.27903,0.415759,-0.535235,0.375316,0.964021,-0.763847,0.83451,-0.362178,2.37429,-0.515956,-0.8087,-0.559241,0.800338,-0.524402,6 +-1.85999,0.212576,-0.203162,1.23337,0.0373407,-0.0574621,1.42637,-1.39536,0.642198,-0.535235,0.0555005,1.34907,-0.763847,1.67044,-0.0231245,-0.458336,-0.393865,-0.359797,-0.420991,1.387,-0.524402,5 +-1.85999,0.729961,-0.203162,0.893932,0.375155,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-1.15269,1.40041,-0.763847,1.78189,-0.362178,-0.458336,0.460768,-0.488055,-0.559241,3.73363,-0.524402,5 +-1.96161,0.988654,-0.203162,1.91224,0.0373407,-0.0574621,1.42637,-1.62801,1.66117,-0.535235,0.712899,1.45175,-0.763847,1.89335,0.315929,-0.458336,0.460768,-0.103282,-0.144492,3.28501,-0.524402,5 +-1.96161,2.02342,-0.203162,2.25167,-0.638287,-0.0574621,-0.268691,-1.68618,1.88761,-0.535235,1.19262,1.3234,-0.594701,1.89335,-0.0231245,0.957976,0.460768,0.730394,0.61588,1.59405,-0.524402,3 +0.273975,-0.30481,-0.203162,0.215061,1.3886,-0.0574621,1.42637,-1.33719,0.30254,-0.535235,-0.761806,1.14371,-1.13597,0.611597,1.33309,-0.458336,-0.0886391,-0.423926,-0.213617,0.558773,-0.524402,5 +0.273975,-0.822195,-0.203162,0.215061,1.72641,-0.0574621,1.42637,-1.27903,0.30254,-0.535235,-0.744038,0.707319,-1.13597,-0.335786,0.654983,-0.458336,-0.0886391,-0.552184,-0.282742,0.524263,1.11272,6 +0.273975,0.729961,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.464736,-0.603215,-0.535235,-0.6552,-0.191138,0.72464,0.778782,0.315929,-0.458336,0.643904,1.11517,0.961504,-0.234943,-0.524402,1 +0.375592,0.471268,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-0.639228,-0.489996,-0.535235,-0.566363,-0.191138,0.72464,0.778782,-0.0231245,-0.458336,0.643904,0.858651,0.75413,-0.338471,-0.524402,1 +0.477209,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.755555,-0.376776,-0.209093,0.410851,-0.370829,0.183372,-0.502971,0.315929,-0.458336,0.643904,0.473878,0.546756,-0.338471,1.11272,6 +0.477209,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.755555,-0.376776,-0.154736,0.250943,-0.216808,-0.0196038,-0.502971,0.315929,-0.458336,0.643904,0.473878,0.546756,-0.303962,1.11272,6 +0.477209,-0.30481,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.871883,-0.263557,0.334477,-0.282082,0.193915,0.115713,0.611597,0.315929,-0.458336,0.460768,0.281491,0.408506,-0.0969054,-0.524402,5 +0.477209,-0.822195,-0.203162,0.554496,1.05078,-0.0574621,-0.268691,-0.813719,-0.376776,0.443191,-0.264315,-0.0884571,0.115713,-0.00141549,-0.701232,-0.458336,0.460768,0.281491,0.408506,-0.234943,1.11272,6 +0.477209,-0.0461169,-0.203162,1.23337,1.3886,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.046022,-0.832876,0.501957,-0.290238,0.611597,0.654983,-0.458336,0.399723,-0.039153,-0.00624269,0.420735,-0.524402,5 +0.477209,0.988654,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.10454,0.0761009,0.334477,-1.17046,0.501957,-0.290238,0.611597,1.33309,-0.458336,0.338678,0.0891048,0.201132,0.455245,-0.524402,5 +-0.742198,0.988654,-0.0317302,0.215061,1.72641,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-0.708503,0.93835,-0.899164,0.555868,0.654983,-0.458336,0.338678,-0.616313,-0.351867,2.04268,-0.524402,5 +-0.843816,2.7995,0.0111277,0.215061,1.05078,-0.0574621,-0.268691,-1.45352,0.981856,-0.535235,-1.45474,0.93835,-0.899164,0.555868,0.994036,0.957976,-0.21073,-0.039153,-0.00624269,0.0756414,-0.524402,5 +-0.843816,3.0582,0.0111277,0.215061,0.375155,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,-1.45474,0.93835,-0.899164,0.555868,-0.0231245,-0.458336,-0.21073,0.0891048,-0.00624269,-0.0969054,-0.524402,1 +-0.843816,0.988654,-0.0531591,0.215061,1.72641,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-0.690735,0.93835,-0.899164,0.555868,0.994036,-0.458336,0.338678,-0.616313,-0.282742,2.07718,-0.524402,5 +-0.843816,1.24735,-0.0531591,0.893932,1.05078,-0.0574621,-0.268691,-1.39536,0.868636,-0.535235,-0.477525,1.40041,-1.37277,0.778782,1.33309,-0.458336,0.338678,-0.423926,-0.0753675,1.59405,1.11272,5 +-0.843816,0.212576,0.0539856,0.215061,1.3886,-0.0574621,-0.268691,-1.39536,0.981856,-0.535235,-0.139942,1.40041,-1.37277,0.778782,1.33309,-0.458336,0.338678,-0.8087,-0.490116,2.52581,-0.524402,5 +-0.843816,-0.0461169,0.0539856,-0.124374,1.3886,-0.0574621,-0.268691,-1.45352,0.981856,-0.535235,0.0555005,1.40041,-1.37277,0.778782,1.67214,-0.458336,0.338678,-0.744571,-0.490116,2.24973,-0.524402,5 +-0.843816,-0.822195,0.0539856,0.215061,1.72641,-0.0574621,-0.268691,-1.45352,1.09507,-0.535235,0.0555005,1.40041,-1.37277,0.778782,1.33309,-0.458336,0.338678,-0.8087,-0.559241,2.59483,-0.524402,6 +-0.843816,-0.30481,0.0968435,0.554496,2.06422,-0.0574621,-0.268691,-1.68618,1.54795,-0.535235,-0.335385,1.40041,-1.37277,0.778782,2.0112,-0.458336,-0.393865,-1.2576,-1.18136,1.83562,-0.524402,6 +-0.538964,1.24735,-0.0531591,-0.124374,0.712969,-0.0574621,1.42637,-1.56985,0.981856,-0.535235,-1.11716,0.93835,-0.899164,0.555868,-0.0231245,-0.458336,-0.21073,-0.552184,-0.351867,0.972885,-0.524402,5 +-0.538964,0.988654,-0.0317302,0.215061,1.05078,-0.0574621,1.42637,-1.62801,1.20829,-0.535235,-1.11716,0.93835,-0.899164,0.555868,0.994036,-0.458336,-0.21073,-0.744571,-0.628366,1.31798,-0.524402,5 +-0.538964,0.729961,0.0111277,-0.124374,1.05078,-0.0574621,1.42637,-1.45352,0.981856,-0.535235,-0.335385,0.989691,-0.966823,0.555868,0.994036,-0.458336,0.338678,-0.552184,-0.282742,1.7666,-0.524402,5 +-0.538964,-0.822195,0.0539856,0.215061,1.72641,-0.0574621,3.12144,-1.45352,1.09507,-0.535235,0.037733,1.40041,-1.37277,0.778782,1.67214,-0.458336,0.338678,-0.872829,-0.559241,2.69835,-0.524402,6 +-0.538964,-0.0461169,-0.0103012,0.893932,1.05078,-0.0574621,1.42637,-1.33719,0.755417,-0.535235,0.144338,0.527627,-0.966823,-0.447242,0.654983,-0.458336,-0.271775,-0.616313,-0.490116,0.800338,1.11272,5 +-0.538964,-0.563502,0.0325567,0.215061,0.712969,-0.0574621,1.42637,-1.45352,0.981856,-0.535235,0.215408,1.40041,-1.37277,0.778782,0.994036,-0.458336,0.338678,-0.744571,-0.559241,2.11169,-0.524402,6 +-0.538964,0.212576,0.0111277,0.215061,1.05078,-0.0574621,1.42637,-1.27903,0.755417,-0.535235,-0.15771,0.527627,-0.966823,-0.447242,1.33309,-0.458336,-0.271775,-0.616313,-0.490116,0.765829,1.11272,5 +-0.538964,-0.822195,0.0968435,1.23337,1.3886,-0.0574621,3.12144,-1.74434,1.54795,-0.535235,0.0910356,1.40041,-1.37277,0.778782,1.67214,-0.458336,-0.271775,-1.32173,-1.11224,1.87013,-0.524402,6 +-0.538964,0.471268,0.0325567,-0.124374,1.05078,-0.0574621,-0.268691,-0.988211,0.415759,-0.535235,-0.211012,1.22072,-1.1698,0.723053,0.994036,0.957976,-0.271775,-0.423926,-0.351867,0.386226,-0.524402,5 +-0.538964,0.729961,-0.0745881,0.215061,0.712969,-0.0574621,-0.268691,-0.871883,0.18932,-0.535235,-0.495293,0.501957,-0.865335,-0.335786,0.654983,-0.458336,-0.271775,-0.103282,-0.213617,-0.0969054,1.11272,5 +-0.538964,0.988654,0.0111277,-0.124374,1.3886,-0.0574621,-0.268691,-0.930047,0.415759,-0.535235,-0.797341,0.989691,-0.865335,0.723053,2.35025,-0.458336,-0.0275938,-0.423926,-0.213617,0.731319,-0.524402,5 +-0.538964,1.24735,0.0111277,-0.124374,1.05078,-0.0574621,-0.268691,-0.930047,0.415759,-0.535235,-0.939481,1.81114,-1.23746,1.89335,2.35025,-0.458336,-0.0275938,-0.295669,-0.0753675,0.765829,-0.524402,5 +-0.538964,1.24735,0.0111277,-0.46381,1.05078,-0.0574621,-0.268691,-0.988211,0.642198,-0.535235,-0.779573,1.81114,-1.23746,1.89335,2.6893,-0.458336,-0.0275938,-0.488055,-0.144492,1.0419,-0.524402,5 +-0.538964,1.24735,0.0111277,-0.46381,1.05078,-0.0574621,-0.268691,-1.1627,0.642198,-0.535235,-1.2593,1.81114,-1.23746,1.89335,2.6893,-0.458336,-0.149684,-0.616313,-0.213617,1.387,-0.524402,5 +-0.538964,0.988654,-0.0531591,-0.124374,1.3886,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-0.530828,0.93835,-0.899164,0.555868,0.994036,-0.458336,0.338678,-0.552184,-0.213617,1.97366,-0.524402,5 +-0.538964,-0.0461169,-0.0745881,-0.46381,1.3886,-0.0574621,4.81651,-1.91883,1.54795,-0.535235,-1.45474,0.476287,-0.899164,-0.447242,-0.0231245,-0.458336,-1.37059,-1.2576,-1.52699,0.869357,-0.524402,6 +-0.538964,0.729961,0.0111277,0.215061,1.05078,-0.0574621,1.42637,-1.45352,0.981856,-0.535235,-0.282082,0.989691,-0.966823,0.555868,0.654983,-0.458336,0.338678,-0.488055,-0.213617,1.80111,-0.524402,5 +-0.538964,-0.822195,0.0325567,-0.124374,1.3886,-0.0574621,3.12144,-1.45352,1.20829,-0.535235,0.179873,1.40041,-1.37277,0.778782,2.35025,-0.458336,0.338678,-0.872829,-0.490116,2.83639,-0.524402,6 +-0.538964,0.471268,0.0111277,0.215061,1.05078,-0.0574621,1.42637,-1.22087,0.755417,-0.535235,0.00219796,0.527627,-0.966823,-0.447242,1.33309,-0.458336,-0.271775,-0.552184,-0.420991,0.765829,1.11272,5 +-0.538964,-0.822195,0.139701,1.91224,2.06422,-0.0574621,3.12144,-1.8025,1.77439,-0.535235,-0.0688721,1.40041,-1.37277,0.778782,1.67214,-0.458336,-0.271775,-1.32173,-1.18136,1.90464,-0.524402,6 +-0.538964,0.212576,0.0111277,0.215061,0.712969,-0.0574621,1.42637,-1.04637,0.30254,-0.535235,-0.317617,0.527627,-0.966823,-0.447242,1.33309,-0.458336,-0.271775,-0.359797,-0.351867,0.282698,1.11272,5 +-0.538964,0.471268,-0.0317302,-0.124374,1.05078,-0.0574621,-0.268691,-1.04637,0.30254,-0.535235,-0.193245,0.501957,-0.865335,-0.335786,0.654983,-0.458336,-0.271775,-0.23154,-0.351867,0.00662268,1.11272,5 +-0.538964,0.988654,-0.0103012,-0.46381,1.05078,-0.0574621,-0.268691,-0.871883,0.30254,-0.535235,-0.832876,0.989691,-0.865335,0.723053,2.35025,-0.458336,-0.0275938,-0.359797,-0.213617,0.558773,-0.524402,5 +-0.538964,1.24735,-0.0317302,-0.124374,1.05078,-0.0574621,-0.268691,-0.813719,0.18932,-0.535235,-0.761806,1.81114,-1.23746,1.89335,1.33309,-0.458336,-0.0275938,-0.167411,-0.144492,0.0756414,-0.524402,5 +-0.538964,0.729961,0.0325567,-0.124374,0.712969,-0.0574621,1.42637,-1.04637,0.415759,-0.535235,-0.424223,1.14371,-1.06831,0.723053,2.35025,-0.458336,-0.0275938,-0.423926,-0.351867,0.627791,-0.524402,5 +-0.538964,2.02342,0.0325567,0.215061,0.375155,-0.0574621,-0.268691,-0.639228,0.30254,-0.535235,-0.58413,1.37474,-1.1698,1.05742,0.315929,-0.458336,-0.0275938,0.0249759,0.0628821,-0.0278867,-0.524402,1 +-0.538964,-0.0461169,0.16113,-0.46381,0.375155,-0.0574621,4.81651,-0.988211,0.755417,-0.535235,-0.388688,1.04103,-1.33894,0.0543129,3.36741,-0.458336,-0.515956,-1.44999,-0.628366,2.90541,1.11272,5 +-0.538964,-0.822195,0.203988,-0.46381,0.375155,-0.0574621,4.81651,-1.04637,0.981856,-0.535235,-0.175477,1.91382,-1.33894,1.94908,3.36741,-0.458336,-0.515956,-1.77063,-0.97399,3.69913,-0.524402,7 +-0.538964,-0.822195,0.203988,-0.46381,0.0373407,-0.0574621,4.81651,-0.988211,0.868636,-0.535235,0.073268,1.47742,-1.33894,1.0017,2.6893,-0.458336,-0.515956,-1.96302,-1.25049,3.9752,-0.524402,7 +-0.538964,-0.822195,0.332562,-0.46381,0.375155,-0.0574621,4.81651,-0.755555,1.20829,-0.535235,-0.815108,1.91382,-1.33894,1.94908,2.35025,0.957976,-3.8124,-2.34779,-3.60073,4.32029,-2.16152,7 +-0.538964,-0.822195,0.396849,-0.124374,0.712969,-0.0574621,6.51157,-0.639228,1.43473,-0.535235,-1.45474,1.27206,-1.33894,0.555868,1.33309,2.37429,-3.8124,-2.7967,-4.08461,3.07796,-2.16152,7 +-0.234112,-0.563502,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.1627,0.0761009,-0.535235,0.712899,0.347936,-0.763847,-0.502971,-0.701232,-0.458336,-0.0886391,-0.167411,-0.0753675,-0.131415,1.11272,6 +-0.234112,-0.822195,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,0.730666,0.270926,-0.797677,-0.725884,-0.362178,0.957976,-0.638046,-0.552184,-0.559241,0.0756414,1.11272,6 +-0.132494,-0.563502,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.535235,0.908342,0.219585,-0.594701,-0.502971,-0.362178,2.37429,0.155542,0.0249759,-0.00624269,-0.269452,1.11272,6 +-0.132494,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,0.908342,-0.909903,0.893786,-0.502971,-1.04029,-0.458336,0.0334514,0.217363,0.0628821,-0.580037,-0.524402,0 +-0.132494,0.471268,-0.203162,-0.803245,0.375155,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.499689,0.553298,-0.594701,0.221498,-0.0231245,2.37429,0.216587,0.217363,0.132007,-0.0969054,1.11272,5 +-0.132494,-0.563502,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.677364,0.168245,-0.594701,-0.614428,0.315929,2.37429,0.155542,-0.103282,-0.0753675,-0.0623961,1.11272,6 +-0.132494,1.76473,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,-1.56985,0.868636,-0.535235,-0.939481,0.732989,-0.594701,0.611597,0.315929,-0.458336,0.216587,0.217363,0.270256,0.351716,1.11272,5 +-0.132494,1.50604,-0.203162,-0.46381,1.3886,-0.0574621,-0.268691,-1.62801,1.09507,-0.535235,-0.744038,0.758659,-0.594701,0.667325,0.654983,0.957976,0.460768,0.217363,0.339381,0.593282,1.11272,5 +-0.132494,1.76473,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-1.51169,0.755417,-0.535235,-0.335385,0.630308,-0.459384,0.611597,0.654983,2.37429,0.338678,0.281491,0.270256,0.14466,-0.524402,5 +-0.132494,1.76473,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.22087,0.0761009,-0.535235,-0.744038,-0.319489,0.555494,0.221498,-0.701232,0.957976,0.460768,0.730394,0.61588,-0.269452,-0.524402,1 +-0.132494,1.24735,-0.203162,-0.803245,0.712969,-0.0574621,-0.268691,-1.45352,0.642198,-0.535235,-0.0688721,0.630308,-0.459384,0.611597,0.994036,2.37429,0.338678,0.34562,0.339381,0.110151,-0.524402,5 +-0.132494,1.24735,-0.203162,-0.803245,1.05078,-0.0574621,-0.268691,-1.56985,0.868636,-0.535235,-0.0333371,0.81,-0.66236,0.667325,1.67214,2.37429,0.216587,0.0891048,0.132007,0.17917,-0.524402,5 +-0.132494,0.471268,-0.203162,-0.803245,0.375155,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,-0.122175,0.604638,-0.865335,-0.112872,1.67214,0.957976,0.338678,0.153234,0.270256,0.248188,1.11272,5 +-0.132494,-0.30481,-0.203162,-0.803245,0.375155,-0.0574621,-0.268691,-1.04637,0.18932,-0.535235,0.073268,0.81,-0.899164,0.277226,2.35025,0.957976,0.338678,0.0891048,0.201132,0.489754,1.11272,5 +-0.132494,-0.30481,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.037733,0.604638,-0.865335,-0.112872,2.35025,0.957976,0.338678,0.153234,0.270256,0.248188,1.11272,5 +-0.132494,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.872807,-0.730212,0.420177,-0.893069,0.315929,-0.458336,0.0334514,0.0891048,-0.00624269,-0.545527,1.11272,0 +-0.0308771,-0.0461169,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-0.988211,0.18932,-0.535235,-0.51306,0.81,-0.899164,0.277226,1.67214,0.957976,0.582859,0.153234,0.408506,0.731319,1.11272,6 +0.0707402,-0.563502,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-1.04637,0.30254,-0.535235,-0.530828,0.81,-0.899164,0.277226,2.0112,0.957976,0.582859,0.0891048,0.339381,0.903866,1.11272,5 +0.0707402,-0.822195,-0.203162,-0.124374,1.3886,-0.0574621,-0.268691,-1.10454,0.642198,-0.535235,-0.477525,0.81,-0.899164,0.277226,2.35025,2.37429,0.643904,-0.103282,0.132007,1.62856,1.11272,6 +0.0707402,-0.822195,-0.203162,-0.803245,1.05078,-0.0574621,-0.268691,-0.988211,0.30254,-0.535235,-0.601898,0.81,-0.899164,0.277226,2.0112,2.37429,0.643904,0.0249759,0.270256,1.07641,1.11272,6 +1.08691,-0.822195,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.756704,-1.05609,-0.100379,-0.175477,-0.961244,0.995274,-0.447242,-1.37934,-0.458336,0.582859,0.666265,0.685005,-0.580037,1.11272,9 +1.08691,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,0.00833509,-0.104407,-1.29496,1.43505,-0.447242,-0.701232,-0.458336,0.643904,0.730394,0.685005,-0.614546,-0.524402,9 +-1.25028,1.24735,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.535235,-0.992783,-0.601861,0.555494,-0.391514,-1.04029,-0.458336,-0.393865,-0.23154,-0.490116,-0.37298,-0.524402,1 +-1.25028,1.24735,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,-0.868411,-0.0884571,-0.121092,-0.391514,-0.0231245,-0.458336,-0.515956,-0.359797,-0.628366,-0.234943,-0.524402,1 +-1.25028,0.212576,-0.203162,1.5728,0.0373407,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,-0.58413,-0.0884571,-0.121092,-0.391514,-0.701232,-0.458336,-1.06536,-0.616313,-1.04311,-0.0969054,-0.524402,1 +-1.25028,0.988654,-0.203162,1.91224,0.712969,-0.0574621,-0.268691,-1.51169,0.642198,-0.535235,-0.939481,0.322266,-0.66236,-0.391514,-0.701232,-0.458336,-0.760137,-0.744571,-0.83574,0.00662268,-0.524402,5 +-1.25028,0.729961,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,-1.33719,0.415759,-0.535235,-0.72627,0.0398938,-0.66236,-1.00453,-0.0231245,-0.458336,-0.515956,-0.872829,-0.83574,0.213679,1.11272,5 +-1.25028,-0.0461169,-0.203162,0.893932,1.3886,-0.0574621,-0.268691,-1.27903,0.30254,-0.535235,-0.779573,0.065564,-0.763847,-1.11598,-0.701232,-0.458336,-1.06536,-1.32173,-1.31961,0.351716,1.11272,5 +-1.25028,-0.0461169,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,-0.672968,0.065564,-0.763847,-1.11598,-0.0231245,-0.458336,-0.943273,-1.44999,-1.45786,0.524263,-0.524402,5 +-1.25028,-0.0461169,-0.203162,0.893932,1.05078,-0.0574621,1.42637,-1.22087,0.0761009,-0.535235,-1.2593,0.065564,-0.763847,-1.11598,0.654983,-0.458336,-0.882227,-1.44999,-1.45786,0.593282,-0.524402,5 +-1.25028,-0.822195,-0.203162,-0.46381,1.05078,-0.0574621,3.12144,-1.33719,0.18932,-0.535235,-1.45474,-0.0627869,-0.763847,-1.39462,-0.701232,-0.458336,-0.882227,-1.83476,-2.07999,1.17994,-0.524402,6 +-1.25028,-0.822195,-0.203162,-0.46381,1.05078,-0.0574621,3.12144,-1.33719,0.18932,-0.535235,-1.45474,-0.0627869,-0.763847,-1.39462,-0.701232,-0.458336,-0.882227,-1.83476,-2.07999,1.17994,-0.524402,6 +-1.25028,-0.563502,-0.203162,1.23337,1.3886,-0.0574621,1.42637,-1.1627,0.0761009,-0.535235,-0.672968,-0.0371167,-0.797677,-1.39462,-0.0231245,-0.458336,-1.43163,-1.57825,-1.66524,0.17917,-0.524402,6 +-1.25028,-0.822195,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,-0.44199,-0.0884571,-0.797677,-1.50608,-0.701232,0.957976,-1.43163,-1.44999,-1.52699,0.0756414,1.11272,6 +-1.25028,0.212576,-0.203162,1.5728,0.712969,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,-0.335385,0.322266,-0.797677,-0.614428,0.315929,0.957976,-0.638046,-0.744571,-0.83574,0.351716,1.11272,5 +-1.25028,-0.822195,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.535235,-0.459758,-0.0884571,-0.797677,-1.50608,-0.362178,0.957976,-1.43163,-1.38586,-1.45786,0.0411321,1.11272,6 +-1.25028,0.212576,-0.203162,1.5728,0.375155,-0.0574621,-0.268691,-0.581064,-0.376776,-0.535235,-0.282082,0.0142237,-0.391726,-0.614428,0.654983,-0.458336,-0.0886391,-0.552184,-0.628366,0.558773,1.11272,5 +-1.25028,0.729961,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.535235,0.073268,-0.319489,0.0480547,-0.614428,-0.0231245,-0.458336,0.765994,-0.23154,-0.420991,0.972885,-0.524402,1 +-1.25028,0.471268,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,-0.122175,0.0142237,-0.391726,-0.614428,0.315929,-0.458336,0.765994,-0.423926,-0.559241,1.69758,1.11272,5 +-1.25028,0.988654,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.535235,-0.282082,-0.576191,0.386347,-0.614428,-0.362178,-0.458336,0.765994,0.0249759,-0.0753675,0.455245,1.11272,3 +0.883679,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,-0.100379,-0.0866397,-1.29496,1.43505,-0.447242,-1.37934,-0.458336,0.582859,0.730394,0.685005,-0.614546,-0.524402,9 +0.883679,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.640377,-1.05609,-0.046022,-0.0511046,-1.29496,1.43505,-0.447242,-1.37934,-0.458336,0.643904,0.794523,0.75413,-0.614546,-0.524402,0 +0.883679,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,0.388834,-0.246547,-1.26929,1.63803,-0.0571439,-1.37934,-0.458336,0.94913,1.11517,1.03063,-0.614546,-0.524402,9 +0.883679,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-1.05609,0.66062,-0.335385,-1.47465,1.73952,-0.335786,-1.37934,-0.458336,0.94913,1.05104,1.03063,-0.649055,-0.524402,0 +0.883679,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.698541,-1.05609,1.20419,-0.335385,-1.24362,1.6042,-0.0571439,-1.04029,-0.458336,1.07122,1.1793,1.16888,-0.614546,-0.524402,4 +0.883679,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-1.05609,1.14983,-0.37092,-1.24362,1.6042,-0.0571439,-0.701232,-0.458336,1.07122,1.1793,1.16888,-0.614546,-0.524402,4 +0.883679,-0.563502,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,0.116902,-0.489996,0.986762,-0.424223,1.11804,-0.865335,1.0017,-0.701232,-0.458336,0.94913,0.730394,1.09975,0.627791,1.11272,6 +0.883679,-0.563502,-0.203162,1.23337,1.72641,-0.0574621,-0.268691,-0.348408,-0.150338,0.66062,-0.51306,1.14371,-0.899164,1.0017,-1.04029,-0.458336,1.19331,0.34562,0.75413,1.87013,1.11272,6 +0.883679,-0.30481,-0.203162,1.23337,1.72641,-0.0574621,-0.268691,-0.348408,0.0761009,0.932405,-0.637433,1.14371,-0.899164,1.0017,-0.0231245,-0.458336,1.19331,0.34562,0.823255,2.11169,1.11272,6 +0.883679,-0.822195,-0.203162,1.5728,1.72641,-0.0574621,-0.268691,-0.173917,0.18932,1.25855,-0.44199,1.14371,-0.899164,1.0017,-0.701232,0.957976,1.19331,0.409749,1.03063,2.35326,1.11272,6 +0.883679,0.212576,-0.203162,0.554496,3.07767,-0.0574621,-0.268691,-0.871883,0.528978,-0.535235,-1.45474,1.14371,-0.899164,1.0017,-0.701232,-0.458336,1.19331,-0.103282,0.270256,3.31952,1.11272,5 +0.883679,-0.0461169,-0.203162,0.215061,3.7533,-0.0574621,-0.268691,-1.27903,0.868636,-0.535235,-1.45474,1.14371,-0.899164,1.0017,-0.701232,-0.458336,0.338678,-0.423926,-0.351867,2.21522,-0.524402,6 +1.18853,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,0.388834,-0.15771,-0.730212,1.06293,0.16577,1.33309,-0.458336,0.94913,1.24342,1.16888,-0.580037,1.11272,4 +1.18853,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,0.117049,-0.29985,-0.139797,0.318689,0.221498,1.33309,-0.458336,0.94913,1.30755,1.238,-0.545527,1.11272,4 +1.18853,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,0.171406,0.0199655,-1.19228,1.6042,0.0543129,-1.04029,-0.458336,0.94913,1.11517,1.03063,-0.614546,-0.524402,4 +1.18853,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,-0.154736,0.037733,-1.19228,1.6042,0.0543129,-1.04029,-0.458336,0.94913,1.11517,1.03063,-0.614546,-0.524402,4 +1.18853,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.535235,0.073268,-0.0884571,0.352518,0.388683,-0.0231245,-0.458336,1.07122,1.1793,1.09975,-0.511018,1.11272,1 +1.18853,0.471268,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.535235,0.037733,-1.01258,1.57037,0.388683,-0.701232,-0.458336,0.94913,1.11517,0.961504,-0.545527,-0.524402,1 +1.18853,0.471268,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,-0.26345,-0.0866397,-0.0884571,0.352518,0.388683,0.315929,-0.458336,0.704949,1.1793,1.09975,-0.476509,1.11272,1 +1.18853,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.100379,-0.406455,-1.11526,1.50271,0.0543129,0.315929,-0.458336,0.704949,0.986909,0.89238,-0.580037,-0.524402,1 +1.18853,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.100379,-0.282082,0.065564,-0.0196038,0.110041,0.315929,-0.458336,0.704949,0.986909,0.89238,-0.614546,1.11272,1 +1.18853,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.582213,-0.829654,0.00833509,0.00219796,-0.114127,-0.0196038,-0.280057,-0.0231245,-0.458336,0.704949,0.92278,0.823255,-0.614546,1.11272,0 +0.883679,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.046022,0.233176,-0.52485,0.623152,-0.112872,1.33309,-0.458336,0.94913,0.92278,0.89238,-0.511018,1.11272,4 +0.883679,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,0.00833509,0.499689,0.0142237,-0.154921,-0.224329,0.654983,-0.458336,0.94913,0.92278,1.03063,-0.476509,1.11272,4 +0.883679,1.50604,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.232081,-0.489996,-0.535235,-0.37092,-0.627531,1.13059,0.50014,-0.362178,-0.458336,0.704949,0.92278,0.823255,-0.511018,-0.524402,1 +0.883679,2.54081,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.535235,-1.33037,-0.678871,1.3674,0.778782,-0.0231245,-0.458336,0.704949,1.11517,0.961504,-0.476509,-0.524402,1 +0.883679,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.173917,-0.489996,-0.535235,-0.211012,-0.627531,1.13059,0.50014,-0.701232,-0.458336,0.704949,0.92278,0.823255,-0.511018,-0.524402,1 +0.883679,-0.30481,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,0.108803,-0.807222,0.995274,-0.112872,-0.362178,-0.458336,0.704949,0.794523,0.75413,-0.580037,-0.524402,0 +0.883679,1.50604,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.535235,-0.175477,-0.755882,1.29974,0.50014,-0.362178,-0.458336,0.765994,0.986909,0.89238,-0.545527,-0.524402,1 +0.883679,1.24735,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.0555005,-0.242478,0.420177,0.16577,-0.701232,-0.458336,0.765994,0.92278,0.89238,-0.545527,1.11272,1 +0.883679,0.729961,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.570759,0.681649,-0.66236,0.388683,0.654983,-0.458336,0.643904,0.858651,0.75413,-0.476509,1.11272,1 +0.883679,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.712899,-0.242478,1.23208,1.50325,-0.0231245,-0.458336,0.643904,0.794523,0.75413,-0.580037,-2.16152,0 +0.883679,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.535235,0.357548,-0.345159,0.589323,0.221498,0.315929,-0.458336,0.582859,0.794523,0.75413,-0.511018,-0.524402,1 +0.883679,1.76473,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.406572,-0.376776,-0.535235,-1.08162,-0.345159,0.589323,0.221498,0.654983,-0.458336,0.582859,0.858651,0.75413,-0.441999,-0.524402,1 +1.08691,0.471268,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.348408,-0.489996,-0.209093,-0.58413,-0.191138,0.758469,0.83451,0.654983,0.957976,1.07122,1.1793,1.09975,-0.476509,-0.524402,1 +1.08691,0.212576,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,-0.406572,-0.489996,-0.26345,0.0199655,0.681649,-0.391726,0.83451,0.994036,0.957976,0.888085,1.1793,1.09975,-0.40749,1.11272,1 +1.08691,0.212576,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.5229,-0.376776,-0.372164,-0.211012,-0.191138,0.758469,0.83451,-0.362178,-0.458336,1.07122,1.1793,1.16888,-0.441999,-0.524402,1 +1.08691,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.376776,-0.26345,-0.957248,-0.704542,1.43505,0.83451,-1.04029,-0.458336,1.19331,1.43581,1.30713,-0.511018,-0.524402,1 +1.08691,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,-0.480878,0.357548,-0.653201,1.19825,0.555868,-1.37934,-0.458336,1.07122,1.24342,1.238,-0.580037,-0.524402,1 +1.08691,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,-0.480878,0.357548,-0.781552,1.19825,0.277226,-1.04029,-0.458336,1.19331,1.24342,1.238,-0.545527,-0.524402,4 +1.08691,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,-0.535235,0.322013,-0.858563,1.43505,0.50014,-1.04029,-0.458336,1.07122,1.24342,1.238,-0.580037,-0.524402,1 +1.08691,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,-0.535235,0.286478,-1.03825,1.53654,0.277226,-0.701232,-0.458336,1.19331,1.30755,1.30713,-0.580037,-0.524402,4 +1.08691,1.50604,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,0.0910356,-0.576191,1.09676,0.555868,-1.04029,-0.458336,0.94913,1.1793,1.09975,-0.476509,-0.524402,1 +1.08691,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,-0.51306,-0.42217,0.893786,0.555868,-1.04029,-0.458336,1.07122,1.24342,1.16888,-0.476509,-0.524402,1 +1.08691,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.535235,-0.388688,-0.576191,1.09676,0.555868,-1.04029,-0.458336,1.07122,1.24342,1.16888,-0.511018,-0.524402,1 +1.08691,2.02342,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,-0.535235,-0.637433,-0.781552,1.3674,0.555868,-0.701232,-0.458336,1.07122,1.24342,1.238,-0.545527,-0.524402,1 +1.29015,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.535235,0.037733,-0.550521,1.09676,0.611597,-0.701232,-0.458336,1.19331,1.11517,1.09975,-0.441999,-0.524402,1 +1.29015,1.24735,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.535235,-0.672968,-0.550521,1.09676,0.611597,-0.0231245,-0.458336,1.19331,1.24342,1.238,-0.476509,-0.524402,1 +1.29015,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,-0.0511046,-0.550521,1.09676,0.611597,-0.701232,-0.458336,1.07122,1.11517,1.09975,-0.511018,-0.524402,1 +1.29015,0.729961,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.376776,-0.535235,0.108803,-0.550521,1.09676,0.611597,-0.362178,-0.458336,0.765994,1.11517,1.03063,-0.476509,-0.524402,1 +1.29015,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,-0.22878,-0.47351,1.09676,0.778782,-1.37934,-0.458336,1.07122,1.1793,1.16888,-0.511018,-0.524402,1 +1.29015,1.76473,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.697392,-0.376776,-0.535235,-0.850643,-0.47351,1.09676,0.778782,-0.701232,-0.458336,1.07122,1.24342,1.16888,-0.511018,-0.524402,1 +1.39177,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,1.42162,-0.815108,-0.909903,1.67186,0.778782,-1.37934,-0.458336,1.19331,1.49994,1.44538,-0.614546,-0.524402,1 +1.39177,1.24735,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,0.28012,-1.13492,-0.909903,1.57037,0.611597,-1.37934,-0.458336,1.19331,1.43581,1.37625,-0.614546,-0.524402,1 +1.39177,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.829654,2.12826,-0.601898,-1.19228,1.67186,0.16577,-1.04029,-0.458336,1.37645,1.43581,1.44538,-0.614546,-0.524402,1 +1.39177,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,2.29133,-0.530828,-1.3463,1.87483,0.16577,-0.701232,-0.458336,1.37645,1.49994,1.44538,-0.649055,-0.524402,4 +1.39177,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,1.96519,-0.530828,-1.06392,1.70569,0.50014,-0.701232,-0.458336,1.19331,1.43581,1.44538,-0.614546,-0.524402,1 +1.39177,-0.563502,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,1.6934,-0.51306,-1.21795,1.70569,0.16577,-1.04029,-0.458336,1.19331,1.43581,1.44538,-0.649055,-0.524402,1 +1.39177,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.290245,-0.489996,1.47598,-0.58413,-0.730212,1.29974,0.555868,-1.04029,-0.458336,1.19331,1.43581,1.44538,-0.614546,-0.524402,1 +1.39177,2.54081,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.639228,-0.150338,-0.535235,-0.601898,-0.730212,1.29974,0.555868,-0.701232,-0.458336,1.19331,1.43581,1.37625,-0.580037,-0.524402,1 +1.49338,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,-0.209093,0.00219796,-1.08959,1.63803,0.332955,-1.04029,-0.458336,1.07122,1.30755,1.238,-0.614546,-0.524402,1 +1.49338,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,-0.480878,0.250943,-1.26929,1.67186,-0.00141549,-1.37934,-0.458336,1.07122,1.24342,1.238,-0.649055,-0.524402,0 +1.49338,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,-0.100379,0.215408,-1.01258,1.63803,0.50014,-0.0231245,-0.458336,1.19331,1.37168,1.37625,-0.614546,-0.524402,1 +1.49338,-0.30481,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.173917,-0.489996,0.28012,0.250943,-0.268148,1.40122,1.72616,0.315929,-0.458336,1.19331,1.49994,1.37625,-0.614546,-0.524402,4 +1.49338,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.100379,0.641829,-0.601861,1.09676,0.50014,0.315929,-0.458336,1.19331,1.37168,1.37625,-0.545527,-0.524402,1 +1.49338,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.26345,0.926109,-0.268148,1.40122,1.72616,-0.0231245,0.957976,1.19331,1.30755,1.37625,-0.580037,-0.524402,4 +1.49338,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.290245,-0.603215,0.551906,0.197641,-0.653201,1.09676,0.388683,-0.701232,-0.458336,1.19331,1.30755,1.37625,-0.545527,1.11272,1 +1.49338,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.535235,0.428619,-0.909903,1.43505,0.388683,-1.04029,-0.458336,0.94913,1.30755,1.238,-0.511018,-0.524402,1 +1.49338,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.535235,0.428619,-0.909903,1.43505,0.388683,-1.04029,-0.458336,0.94913,1.30755,1.238,-0.511018,-0.524402,1 +1.49338,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,2.40005,-0.193245,-0.653201,1.09676,0.388683,-0.362178,-0.458336,1.37645,1.49994,1.5145,-0.580037,1.11272,1 +1.49338,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.581064,-0.263557,-0.372164,0.855039,-0.730212,1.09676,0.221498,-0.701232,-0.458336,1.19331,1.1793,1.238,-0.476509,1.11272,0 +1.49338,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.175066,-0.942873,2.72619,-0.58413,-1.50032,1.94249,-0.0571439,-1.04029,-0.458336,1.37645,1.56407,1.5145,-0.649055,1.11272,0 +1.49338,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.175066,-0.942873,2.8349,-0.619665,-1.55166,2.01015,-0.0571439,-1.04029,-0.458336,1.37645,1.56407,1.58363,-0.649055,1.11272,9 +1.49338,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.23323,-0.942873,2.67183,-0.601898,-1.52599,1.97632,-0.0571439,-1.04029,-0.458336,1.37645,1.56407,1.58363,-0.649055,1.11272,0 +1.49338,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.23323,-0.942873,2.8349,-0.6552,-1.603,2.07781,-0.0571439,-1.04029,-0.458336,1.37645,1.56407,1.58363,-0.649055,-0.524402,9 +1.49338,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,2.50876,-0.672968,-1.47465,1.97632,0.0543129,-0.701232,-0.458336,1.37645,1.56407,1.58363,-0.649055,-0.524402,0 +1.49338,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,2.12826,-0.690735,-1.47465,1.97632,0.0543129,-1.04029,-0.458336,1.37645,1.56407,1.5145,-0.649055,-0.524402,0 +1.49338,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.1627,0.18932,-0.100379,0.855039,-0.52485,1.19825,0.83451,-0.362178,-0.458336,1.19331,1.24342,1.30713,-0.441999,-0.524402,1 +1.49338,0.729961,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.51169,0.528978,-0.535235,1.29923,-0.370829,1.19825,1.16888,-0.701232,-0.458336,1.19331,1.30755,1.238,-0.40749,-0.524402,1 +1.49338,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.639228,-0.603215,-0.100379,0.215408,-0.653201,1.40122,0.890238,-0.362178,-0.458336,1.19331,1.43581,1.37625,-0.545527,-0.524402,1 +1.49338,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,0.388834,0.712899,-0.935573,1.40122,0.277226,-0.362178,-0.458336,1.19331,1.30755,1.37625,-0.545527,-0.524402,4 +1.49338,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.117049,-0.193245,-0.884233,1.70569,0.890238,-1.04029,-0.458336,1.55958,1.56407,1.58363,-0.545527,-0.524402,1 +1.49338,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,-0.535235,-0.193245,-0.807222,1.63803,0.945967,-1.04029,-0.458336,1.19331,1.43581,1.44538,-0.545527,-0.524402,1 +1.49338,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.173917,-0.829654,0.334477,-0.15771,-1.29496,1.90866,0.332955,-0.701232,-0.458336,1.55958,1.69233,1.72188,-0.649055,-0.524402,4 +1.49338,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.173917,-0.829654,0.497548,-0.22878,-1.32063,1.90866,0.277226,-1.04029,-0.458336,1.55958,1.69233,1.72188,-0.649055,-0.524402,4 +1.595,-0.30481,-0.203162,1.5728,-0.300473,-0.0574621,-0.268691,-0.581064,-0.263557,0.00833509,-0.282082,0.0142237,0.352518,0.611597,0.654983,-0.458336,1.55958,1.56407,1.72188,-0.40749,1.11272,4 +1.595,-0.563502,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.639228,0.0761009,0.00833509,-0.264315,1.29773,-1.20363,0.83451,0.654983,-0.458336,1.55958,1.49994,1.72188,-0.269452,1.11272,4 +1.595,0.729961,-0.203162,1.5728,-0.300473,-0.0574621,-0.268691,-0.755555,-0.0371185,-0.480878,-0.51306,0.116904,0.352518,0.83451,1.33309,-0.458336,1.55958,1.69233,1.791,-0.303962,1.11272,1 +1.595,1.76473,-0.203162,1.91224,0.0373407,-0.0574621,-0.268691,-1.04637,0.415759,-0.535235,-1.13492,1.29773,-1.20363,0.83451,0.994036,-0.458336,1.92585,1.69233,1.92925,0.110151,1.11272,1 +1.595,1.50604,-0.203162,2.25167,0.0373407,-0.0574621,-0.268691,-0.988211,0.18932,-0.535235,-1.13492,-0.345159,0.961445,0.83451,-0.362178,-0.458336,1.92585,1.69233,1.99838,0.00662268,1.11272,1 +1.595,1.76473,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.697392,-0.376776,-0.535235,-1.3659,-0.935573,1.73952,0.83451,-0.362178,-0.458336,1.92585,2.01297,2.13663,-0.476509,1.11272,3 +-0.132494,-0.30481,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-0.232081,-0.603215,-0.535235,0.695131,-0.396499,0.521664,-0.00141549,-0.362178,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.511018,-0.524402,1 +-0.132494,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.000574525,-0.716435,-0.480878,0.535224,-1.01258,0.690811,-1.06025,-1.04029,-0.458336,-0.0886391,-0.039153,-0.144492,-0.580037,1.11272,0 +-0.132494,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,-0.426521,0.250943,-1.16661,0.758469,-1.28317,-1.04029,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.614546,1.11272,0 +-0.132494,1.50604,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.697392,-0.150338,-0.535235,0.783969,-0.396499,0.521664,-0.00141549,-0.362178,-0.458336,-0.0886391,0.281491,0.132007,-0.338471,-0.524402,1 +-0.132494,2.54081,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.988211,-0.0371185,-0.535235,0.535224,-0.0371167,0.115713,0.110041,-0.701232,-0.458336,0.460768,0.473878,0.408506,-0.37298,1.11272,1 +-0.132494,0.729961,-0.203162,1.23337,-0.300473,-0.0574621,1.42637,-0.988211,0.18932,-0.535235,-0.0511046,0.81,-1.10214,-0.0571439,-0.0231245,-0.458336,0.460768,-0.680442,-0.490116,2.66384,1.11272,5 +-0.132494,2.54081,-0.203162,2.25167,-0.638287,-0.0574621,3.12144,-1.10454,0.415759,-0.535235,-1.45474,0.86134,-1.06831,0.110041,0.994036,0.957976,0.460768,-0.039153,0.477631,1.97366,1.11272,5 +-0.132494,-0.30481,-0.203162,1.23337,-0.638287,17.3946,1.42637,-0.930047,0.0761009,-0.535235,0.588526,0.81,-1.10214,-0.0571439,0.315929,-0.458336,-2.34731,-0.872829,-0.628366,2.59483,1.11272,5 +-0.132494,-0.822195,-0.203162,0.554496,-0.638287,17.3946,1.42637,-0.871883,-0.0371185,-0.535235,0.961644,0.527627,-1.13597,-0.725884,-1.04029,0.957976,-2.34731,-1.19347,-0.904865,1.83562,1.11272,7 +-0.132494,-0.30481,-0.203162,1.5728,-0.300473,-0.0574621,1.42637,-0.755555,-0.150338,-0.535235,0.748434,0.91268,-1.10214,0.16577,-0.362178,0.957976,-2.34731,-0.680442,-0.490116,3.35403,1.11272,5 +-0.132494,-0.822195,-0.203162,1.23337,0.0373407,-0.0574621,3.12144,-0.988211,0.415759,-0.535235,-1.45474,0.501957,-1.13597,-0.781613,-0.362178,-0.458336,-2.34731,-1.96302,-2.49474,0.489754,-0.524402,7 +-0.132494,-0.822195,-0.203162,2.25167,-0.300473,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,1.06825,0.501957,-1.13597,-0.781613,-0.701232,3.7906,-2.34731,-1.12934,-0.904865,1.45602,1.11272,7 +-0.132494,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,-0.535235,1.29923,-0.807222,0.589323,-0.781613,-1.04029,-0.458336,-0.271775,-0.23154,-0.420991,-0.545527,-0.524402,2 +-0.132494,0.988654,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.813719,-0.150338,-0.535235,1.03271,-0.165468,0.318689,0.16577,0.315929,-0.458336,0.765994,0.409749,0.201132,-0.0278867,-0.524402,1 +-0.132494,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,1.12155,-0.807222,0.589323,-0.781613,-0.701232,0.957976,-0.271775,-0.167411,-0.282742,-0.545527,-0.524402,0 +-0.132494,0.729961,-0.203162,1.91224,-0.300473,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,0.943877,0.0398938,0.0480547,0.16577,-0.0231245,0.957976,1.07122,0.473878,0.408506,0.282698,1.11272,1 +-0.132494,1.50604,-0.203162,2.25167,-0.638287,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,0.730666,0.424947,0.0480547,1.0017,0.315929,-0.458336,1.07122,0.730394,0.75413,-0.131415,-0.524402,1 +-0.132494,-0.30481,-0.203162,1.5728,-0.638287,-0.0574621,3.12144,-0.988211,-0.150338,-0.535235,1.15709,-0.319489,0.0480547,-0.614428,-0.362178,-0.458336,-0.271775,-0.423926,-0.420991,-0.0969054,-0.524402,5 +-0.132494,-0.822195,-0.203162,1.5728,0.0373407,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,1.13932,-0.396499,0.0480547,-0.781613,-1.04029,0.957976,-0.271775,-0.423926,-0.420991,-0.234943,-0.524402,6 +-0.132494,1.76473,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.1627,0.415759,-0.535235,0.552991,1.3234,-1.33894,0.667325,1.33309,-0.458336,0.765994,0.730394,0.75413,-0.0278867,1.11272,1 +-0.132494,1.24735,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.04637,0.30254,-0.535235,-0.139942,0.553298,-0.324067,0.667325,-0.362178,-0.458336,1.07122,0.794523,0.823255,-0.0623961,1.11272,1 +-0.335729,0.212576,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-0.406572,-0.489996,0.388834,-0.29985,-0.653201,0.555494,-0.502971,0.654983,-0.458336,-0.0886391,-0.103282,-0.213617,-0.511018,-0.524402,0 +-0.335729,-0.30481,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,1.53033,-0.601898,-1.21795,1.06293,-0.893069,-1.04029,-0.458336,-0.21073,0.0249759,-0.144492,-0.614546,-0.524402,0 +-0.335729,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.376776,-0.535235,-0.0155696,-0.44784,0.28486,-0.502971,0.654983,0.957976,-0.0886391,0.0249759,-0.0753675,-0.511018,-0.524402,1 +-0.335729,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.639228,-0.263557,-0.535235,0.126571,-0.114127,-0.121092,-0.447242,0.654983,0.957976,-0.0886391,0.0249759,-0.0753675,-0.476509,1.11272,1 +-0.335729,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,1.20419,-0.264315,-0.44784,0.28486,-0.502971,0.315929,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,-0.524402,1 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,1.91083,-0.406455,-1.29496,0.995274,-1.17171,-0.701232,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.649055,1.11272,0 +-0.335729,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.480878,0.162106,-0.44784,0.28486,-0.502971,0.654983,0.957976,-0.0886391,0.0249759,-0.0753675,-0.545527,-0.524402,0 +-0.335729,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.000574525,-0.716435,1.09548,-0.246547,-0.807222,0.690811,-0.614428,-0.0231245,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,-0.524402,1 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,1.85647,-0.406455,-1.03825,0.995274,-0.614428,-0.701232,0.957976,-0.0275938,0.0891048,-0.00624269,-0.649055,-0.524402,0 +-0.335729,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,0.926109,-0.704542,0.623152,-0.502971,-0.362178,-0.458336,-0.0886391,-0.039153,-0.213617,-0.545527,-0.524402,1 +-0.335729,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,1.45913,-0.44784,0.318689,-0.447242,-0.362178,-0.458336,-0.271775,-0.103282,-0.282742,-0.511018,-0.524402,1 +-0.335729,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.100379,0.730666,-0.704542,0.623152,-0.502971,-0.362178,-0.458336,-0.0886391,-0.039153,-0.144492,-0.545527,-0.524402,1 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.930047,-0.263557,-0.535235,1.67235,-0.601861,0.318689,-0.781613,-0.362178,0.957976,-0.393865,-0.167411,-0.351867,-0.580037,-0.524402,2 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.930047,-0.263557,-0.535235,1.08602,-0.884233,0.690811,-0.781613,-1.04029,2.37429,-0.393865,-0.167411,-0.351867,-0.614546,-0.524402,0 +-0.335729,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.10454,-0.150338,-0.535235,1.21039,-0.884233,0.690811,-0.781613,-0.701232,2.37429,-0.393865,-0.167411,-0.351867,-0.580037,-0.524402,2 +-0.335729,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,0.171406,0.304246,-0.730212,0.690811,-0.447242,-0.701232,0.957976,-0.0886391,0.0249759,-0.0753675,-0.580037,-0.524402,0 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,0.823691,-0.495293,-1.44898,1.19825,-1.17171,-1.04029,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.649055,-0.524402,0 +-0.0308771,-0.0461169,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,1.3703,-0.42217,0.521664,-0.0571439,-0.362178,-0.458336,0.155542,0.217363,0.0628821,-0.338471,-0.524402,1 +-0.0308771,0.471268,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-0.930047,-0.0371185,-0.535235,0.819504,-0.268148,0.318689,-0.0571439,-0.701232,-0.458336,0.155542,0.281491,0.132007,-0.303962,-0.524402,5 +-0.0308771,1.24735,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,-0.755555,-0.150338,-0.535235,-0.193245,-0.268148,0.318689,-0.0571439,-0.701232,-0.458336,-0.0886391,0.34562,0.201132,-0.165924,-0.524402,5 +-0.0308771,-0.822195,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-0.871883,0.0761009,-0.535235,0.286478,-0.704542,0.318689,-1.00453,-1.04029,-0.458336,-0.0886391,-0.167411,-0.144492,-0.40749,1.11272,6 +-0.0308771,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.1627,0.0761009,-0.480878,1.88556,-0.370829,0.081884,-0.670156,0.315929,-0.458336,-0.0886391,-0.039153,-0.0753675,-0.511018,1.11272,2 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.45352,0.30254,-0.535235,2.32974,-0.601861,0.386347,-0.670156,-1.04029,-0.458336,0.0334514,0.0249759,-0.00624269,-0.476509,1.11272,2 +-0.0308771,-0.30481,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.755555,-0.263557,-0.154736,1.08602,-0.0371167,-0.0872623,-0.224329,-0.0231245,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.476509,-0.524402,5 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.639228,-0.376776,-0.100379,1.45913,-0.293819,-0.0872623,-0.781613,-0.362178,-0.458336,-0.0886391,-0.039153,-0.0753675,-0.545527,1.11272,2 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,1.09548,0.535224,-0.576191,0.420177,-0.558699,-0.0231245,-0.458336,0.460768,0.34562,0.339381,-0.511018,1.11272,4 +-0.0308771,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,1.96519,-0.246547,-1.16661,1.06293,-0.781613,-0.701232,-0.458336,0.460768,0.473878,0.408506,-0.614546,1.11272,4 +-0.0308771,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,0.606263,0.535224,-0.52485,0.420177,-0.447242,-0.362178,-0.458336,0.277632,0.34562,0.270256,-0.545527,1.11272,1 +-0.0308771,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.209093,1.12155,-0.319489,0.25103,-0.280057,-0.0231245,-0.458336,0.277632,0.281491,0.270256,-0.511018,1.11272,1 +-0.0308771,-0.0461169,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.813719,-0.150338,-0.26345,0.979412,-0.319489,0.25103,-0.280057,-0.0231245,-0.458336,0.277632,0.217363,0.201132,-0.476509,1.11272,1 +-0.0308771,0.212576,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,-0.697392,-0.263557,-0.100379,-0.139942,-0.576191,0.521664,-0.391514,-0.701232,0.957976,0.277632,0.217363,0.201132,-0.511018,-0.524402,1 +0.273975,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.603215,-0.046022,0.801736,-0.653201,0.792298,-0.112872,-0.701232,-0.458336,0.0944967,0.217363,0.132007,-0.580037,-0.524402,0 +0.273975,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.639228,-0.376776,-0.535235,1.40583,-0.858563,0.792298,-0.558699,-0.701232,-0.458336,0.0944967,0.153234,-0.00624269,-0.545527,-0.524402,2 +0.273975,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.000574525,-0.716435,0.66062,0.322013,-0.884233,0.792298,-0.614428,-0.701232,0.957976,0.399723,0.409749,0.339381,-0.580037,1.11272,0 +0.273975,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.581064,-0.376776,-0.535235,1.33476,-0.858563,0.792298,-0.558699,-0.701232,0.957976,0.0334514,0.153234,0.0628821,-0.580037,-0.524402,2 +0.273975,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,1.47598,-0.406455,-1.37197,1.3674,-0.725884,-0.701232,-0.458336,0.399723,0.473878,0.408506,-0.649055,-0.524402,0 +0.273975,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.407721,-0.942873,1.63905,-0.459758,-1.37197,1.3674,-0.725884,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,0 +0.273975,0.988654,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.290245,-0.716435,-0.372164,-0.708503,-0.601861,0.623152,-0.280057,-1.37934,-0.458336,0.460768,0.538007,0.477631,-0.545527,1.11272,1 +0.273975,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,-0.480878,-0.637433,-0.807222,0.893786,-0.280057,-1.37934,0.957976,0.460768,0.602136,0.546756,-0.580037,-0.524402,1 +0.273975,0.729961,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.232081,-0.716435,-0.317807,-0.548595,-0.627531,0.623152,-0.335786,-1.04029,-0.458336,0.399723,0.473878,0.408506,-0.545527,1.11272,1 +1.08691,-0.0461169,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.209093,0.357548,-0.601861,0.893786,0.16577,-0.362178,-0.458336,0.643904,0.92278,0.823255,-0.545527,-0.524402,1 +1.08691,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,-0.209093,0.570759,-1.01258,1.19825,-0.224329,-1.04029,-0.458336,0.643904,0.794523,0.75413,-0.614546,-0.524402,0 +1.595,-0.822195,-0.203162,1.5728,2.06422,-0.0574621,-0.268691,-0.290245,1.32151,0.714977,0.00219796,2.35021,-1.44043,2.72927,-0.0231245,-0.458336,1.13227,0.473878,1.09975,2.35326,-0.524402,6 +1.595,-0.822195,-0.203162,1.5728,2.40204,-0.0574621,-0.268691,-0.464736,1.32151,0.823691,-0.459758,1.70846,-1.44043,1.33607,-0.0231245,0.957976,1.07122,0.281491,1.03063,2.69835,1.11272,6 +1.595,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,2.40005,-0.530828,-1.47465,1.77335,-0.280057,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,-0.524402,9 +1.595,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,2.99797,-0.637433,-1.50032,1.77335,-0.335786,-1.04029,-0.458336,0.94913,1.1793,1.16888,-0.649055,1.11272,9 +1.595,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,1.96519,-0.477525,-1.44898,1.77335,-0.224329,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,-0.524402,9 +1.595,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.3129,-0.459758,-1.50032,1.84101,-0.224329,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,-0.524402,9 +1.595,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,0.497548,-0.317617,-1.21795,1.80718,0.332955,-0.701232,-0.458336,1.07122,1.30755,1.238,-0.649055,-0.524402,0 +1.595,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.932405,-0.477525,-1.42331,1.84101,-0.0571439,-1.04029,-0.458336,1.07122,1.24342,1.238,-0.649055,-0.524402,0 +1.08691,-0.30481,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,0.23323,-0.829654,0.334477,-0.388688,-0.678871,1.06293,0.277226,-0.362178,-0.458336,1.19331,1.37168,1.37625,-0.545527,1.11272,1 +1.08691,-0.30481,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.115753,-0.716435,0.171406,0.108803,-0.42217,0.961445,0.667325,-0.701232,-0.458336,1.19331,1.30755,1.238,-0.476509,-0.524402,1 +1.08691,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.175066,-0.829654,0.606263,-0.51306,-1.11526,1.63803,0.277226,-0.701232,-0.458336,1.19331,1.43581,1.37625,-0.580037,-0.524402,1 +1.08691,0.471268,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,0.108803,-0.139797,0.72464,0.890238,-0.362178,-0.458336,0.94913,1.11517,1.09975,-0.234943,-0.524402,1 +1.08691,0.471268,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,-0.0866397,-0.0627869,0.656981,0.945967,-0.362178,-0.458336,0.94913,1.24342,1.16888,-0.234943,-0.524402,1 +0.985296,0.729961,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.0199655,0.245255,0.28486,1.0017,-0.362178,-0.458336,1.07122,1.11517,1.09975,0.14466,-0.524402,5 +0.985296,0.212576,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,0.588526,0.373606,0.183372,1.11315,0.315929,-0.458336,0.82704,0.92278,0.961504,0.351716,-0.524402,5 +1.08691,-0.30481,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.755555,-0.150338,-0.26345,0.357548,0.245255,0.28486,1.0017,-0.0231245,-0.458336,1.19331,1.11517,1.16888,-0.0623961,-0.524402,5 +1.08691,-0.822195,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.813719,-0.150338,-0.426521,0.393083,-0.242478,0.183372,-0.224329,-0.701232,-0.458336,0.94913,0.794523,0.961504,0.00662268,1.11272,6 +1.08691,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,-0.26345,0.517456,-0.370829,0.623152,0.221498,-0.701232,-0.458336,1.19331,1.1793,1.16888,-0.476509,1.11272,1 +1.08691,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.26345,0.926109,-0.370829,0.623152,0.221498,-0.362178,-0.458336,1.19331,1.1793,1.238,-0.441999,1.11272,1 +1.08691,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,-0.535235,0.304246,-0.293819,0.623152,0.388683,-0.362178,-0.458336,1.37645,1.24342,1.30713,-0.37298,1.11272,1 +1.08691,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,1.56574,-0.47351,0.623152,-0.00141549,-0.701232,-0.458336,0.765994,0.730394,0.685005,-0.441999,1.11272,2 +1.18853,0.212576,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,-0.480878,-0.139942,-0.832893,1.33357,0.388683,-0.701232,-0.458336,1.37645,1.49994,1.44538,-0.580037,-0.524402,1 +1.18853,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.426521,-0.335385,-0.832893,1.33357,0.388683,-0.701232,-0.458336,1.37645,1.56407,1.5145,-0.580037,1.11272,1 +-0.335729,1.50604,-0.203162,2.25167,0.712969,-0.0574621,-0.268691,-1.33719,0.30254,-0.535235,-1.45474,0.91268,-0.594701,1.0017,-0.362178,0.957976,1.07122,0.34562,0.685005,2.24973,1.11272,5 +-0.335729,2.28212,-0.203162,2.59111,-0.638287,-0.0574621,-0.268691,-1.33719,0.0761009,-0.535235,-1.45474,0.0912342,0.792298,1.50325,-0.362178,0.957976,1.07122,1.24342,1.30713,-0.165924,-0.524402,3 +-0.335729,0.212576,-0.203162,1.5728,2.40204,-0.0574621,-0.268691,-1.27903,0.415759,-0.535235,-1.45474,0.604638,-0.594701,0.332955,0.654983,-0.458336,-0.271775,-1.00109,-1.18136,1.87013,-0.524402,5 +-0.0308771,-0.30481,-0.203162,1.5728,2.40204,-0.0574621,-0.268691,-1.27903,0.415759,-0.535235,-1.45474,0.604638,-0.594701,0.332955,0.654983,-0.458336,-0.271775,-1.12934,-1.45786,2.00817,-0.524402,6 +-0.132494,1.24735,-0.203162,2.59111,1.05078,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,-1.45474,1.14371,-0.594701,1.50325,-0.362178,0.957976,1.37645,0.217363,0.75413,3.45756,1.11272,5 +-0.132494,-0.822195,-0.203162,-0.124374,2.40204,-0.0574621,-0.268691,-1.22087,0.868636,-0.535235,-1.45474,0.270926,-0.594701,-0.391514,-0.0231245,-0.458336,-3.1409,-1.64238,-2.21824,3.14698,-2.16152,6 +-0.132494,-0.563502,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-1.10454,0.30254,-0.317807,0.943877,0.553298,-0.865335,-0.224329,0.654983,3.7906,-0.0886391,-0.167411,-0.144492,-0.200434,1.11272,6 +-0.132494,-0.30481,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,1.83225,0.88701,-1.30512,-0.224329,-0.0231245,0.957976,-0.393865,-0.23154,-0.282742,-0.131415,1.11272,6 +-0.132494,-0.822195,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.755555,-0.376776,-0.154736,0.215408,-0.114127,-0.357896,-0.837341,0.994036,0.957976,-0.0886391,-0.103282,-0.0753675,-0.40749,1.11272,6 +-0.132494,-0.822195,-0.203162,-0.124374,1.72641,-0.0574621,-0.268691,-0.697392,-0.150338,0.00833509,-0.601898,0.0398938,-0.763847,-1.17171,0.994036,0.957976,-0.0886391,-0.23154,-0.144492,-0.269452,1.11272,6 +-0.132494,-0.563502,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.10454,0.30254,-0.317807,1.72565,0.681649,-1.27129,-0.614428,1.67214,3.7906,-0.0886391,-0.295669,-0.213617,0.213679,1.11272,6 +-0.132494,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.988211,-0.263557,-0.535235,0.979412,-0.47351,0.115713,-0.837341,-0.0231245,0.957976,-0.271775,-0.103282,-0.213617,-0.545527,1.11272,0 +-0.132494,-0.563502,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-1.27903,0.642198,-0.535235,2.04546,0.732989,-1.33894,-0.614428,0.654983,-0.458336,-0.271775,-0.488055,-0.351867,0.524263,1.11272,6 +-0.132494,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.8025,1.32151,-0.535235,4.49738,0.88701,-1.33894,-0.280057,1.67214,0.957976,-0.0886391,-0.23154,-0.282742,-0.131415,1.11272,2 +-0.132494,-0.563502,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-1.04637,0.18932,-0.480878,1.38806,0.553298,-1.10214,-0.614428,-0.0231245,0.957976,-0.271775,-0.359797,-0.282742,0.14466,1.11272,6 +-0.132494,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.22087,0.528978,-0.535235,1.21039,0.681649,-1.37277,-0.781613,-0.362178,3.7906,-0.271775,-0.552184,-0.420991,0.558773,1.11272,6 +-0.132494,-0.563502,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-0.988211,0.528978,-0.26345,2.081,0.732989,-1.4066,-0.725884,0.994036,-0.458336,0.0944967,-0.295669,-0.0753675,0.420735,1.11272,6 +-0.132494,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.697392,-0.0371185,-0.535235,3.41356,0.0142237,-0.493213,-0.781613,-0.0231245,-0.458336,-0.271775,0.0249759,-0.0753675,-0.338471,1.11272,2 +-0.132494,-0.563502,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.10454,0.868636,-0.209093,1.4236,0.784329,-1.47426,-0.725884,2.35025,0.957976,0.338678,-0.359797,-0.144492,0.800338,1.11272,6 +-0.132494,-0.822195,-0.203162,0.554496,2.06422,-0.0574621,-0.268691,-1.86067,2.11405,-0.535235,1.54797,0.758659,-1.47426,-0.781613,2.0112,2.37429,-0.271775,-0.8087,-0.559241,0.765829,1.11272,6 +0.0707402,-0.822195,-0.203162,0.215061,1.3886,-0.0574621,-0.268691,-0.871883,-0.150338,0.551906,-0.317617,0.81,-1.37277,-0.502971,0.315929,0.957976,-0.0886391,-0.423926,-0.213617,0.386226,1.11272,6 +0.0707402,-0.822195,-0.203162,-0.124374,1.05078,-0.0574621,-0.268691,-1.1627,0.0761009,0.443191,0.162106,0.476287,-0.932994,-0.502971,0.654983,0.957976,-0.0886391,-0.423926,-0.213617,0.420735,1.11272,6 +0.0707402,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-0.813719,0.0761009,0.551906,0.304246,1.01536,-1.37277,-0.0571439,-0.362178,0.957976,-0.0886391,-0.359797,-0.144492,0.282698,1.11272,6 +0.0707402,-0.822195,-0.203162,-0.124374,1.72641,-0.0574621,-0.268691,-0.581064,-0.263557,0.66062,-0.939481,0.578968,-1.47426,-1.17171,0.315929,-0.458336,0.0334514,-0.359797,-0.144492,0.420735,1.11272,6 +0.0707402,-0.822195,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.56985,0.981856,-0.372164,1.22816,1.09237,-1.47426,-0.0571439,0.994036,0.957976,-0.699092,-0.936957,-0.766615,1.11092,1.11272,6 +0.0707402,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.1627,1.66117,-0.100379,3.18258,0.0912342,-0.154921,-0.0571439,0.994036,0.957976,0.0334514,-0.039153,-0.00624269,-0.200434,-0.524402,2 +0.0707402,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,-1.56985,0.868636,-0.535235,0.00219796,1.14371,-1.47426,0.0543129,0.994036,2.37429,-0.699092,-1.12934,-0.83574,1.52504,-0.524402,6 +0.0707402,-0.822195,-0.203162,0.215061,1.72641,-0.0574621,-0.268691,-1.51169,0.642198,-0.535235,0.073268,0.86134,-1.47426,-0.558699,1.67214,2.37429,-0.699092,-1.12934,-0.766615,1.55954,1.11272,6 +0.0707402,-0.822195,-0.203162,0.215061,2.06422,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,-0.0333371,1.04103,-1.33894,0.0543129,0.315929,2.37429,-0.699092,-1.06522,-0.766615,1.387,-0.524402,6 +0.477209,0.471268,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-0.813719,2.00083,-0.535235,-0.0511046,-0.293819,0.555494,0.277226,-0.362178,-0.458336,-0.0886391,0.666265,0.546756,0.110151,-0.524402,5 +0.477209,-0.822195,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.930047,2.79336,-0.535235,-0.282082,-0.653201,0.454006,-0.670156,0.315929,0.957976,0.0334514,0.153234,0.0628821,-0.545527,1.11272,0 +0.477209,1.50604,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.581064,0.18932,-0.535235,0.730666,-0.396499,0.690811,0.277226,-0.362178,-0.458336,0.765994,0.986909,0.961504,-0.37298,1.11272,3 +0.477209,1.76473,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.290245,0.0761009,-0.535235,-1.45474,-0.49918,0.893786,0.388683,-1.37934,0.957976,1.19331,1.1793,1.16888,-0.37298,1.11272,3 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.639228,1.20829,-0.535235,1.38806,0.193915,0.690811,1.55898,0.654983,0.957976,1.37645,1.43581,1.5145,-0.165924,-0.524402,4 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.62801,0.981856,-0.535235,1.70788,-0.653201,0.555494,-0.502971,-0.362178,-0.458336,0.399723,0.409749,0.339381,-0.441999,1.11272,2 +0.477209,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.871883,2.11405,-0.535235,1.24592,-0.0627869,1.0291,1.55898,-0.0231245,0.957976,1.37645,1.49994,1.44538,-0.269452,-0.524402,4 +0.477209,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.68618,3.24624,-0.535235,1.60128,-0.216808,0.690811,0.667325,-0.0231245,-0.458336,1.19331,0.92278,0.89238,-0.200434,-0.524402,1 +0.680444,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.290245,0.0761009,0.334477,0.517456,-0.576191,1.0291,0.444411,-1.04029,-0.458336,0.82704,0.986909,0.89238,-0.511018,-0.524402,4 +0.680444,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.0587384,-0.489996,0.606263,0.233176,-0.858563,1.40122,0.444411,-0.701232,0.957976,0.82704,1.11517,0.961504,-0.545527,-0.524402,4 +0.375592,-0.30481,0.825428,-0.124374,0.712969,-0.0574621,-0.268691,0.873032,1.43473,-0.535235,-0.886178,0.527627,-0.425555,0.444411,0.994036,-0.458336,0.155542,-0.8087,0.270256,-0.37298,-0.524402,1 +-0.0308771,0.729961,0.718283,-0.46381,-0.300473,-0.0574621,-0.268691,0.98936,0.755417,-0.535235,-0.6552,-0.165468,0.081884,-0.224329,-0.362178,-0.458336,0.277632,-0.295669,0.270256,-0.545527,1.11272,1 +0.0707402,0.212576,0.482565,-0.124374,-0.300473,-0.0574621,-0.268691,1.04752,1.09507,-0.535235,-1.22376,-0.935573,1.13059,-0.168601,-1.04029,-0.458336,0.0334514,-0.359797,0.132007,-0.545527,-2.16152,1 +1.08691,-0.822195,0.653996,-1.14268,1.72641,-0.0574621,-0.268691,1.04752,2.22727,-0.535235,-0.975016,0.476287,-0.66236,-0.0571439,-0.362178,-0.458336,0.582859,-1.64238,0.75413,-0.0623961,1.11272,0 +0.273975,0.212576,0.889715,-0.124374,0.0373407,-0.0574621,-0.268691,0.931196,0.528978,-0.535235,-0.317617,0.142575,0.081884,0.444411,1.33309,-0.458336,0.277632,-0.167411,0.339381,-0.476509,-0.524402,1 +-0.0308771,0.471268,0.56828,-0.124374,-0.300473,-0.0574621,-0.268691,1.04752,1.32151,-0.535235,-1.17046,-0.935573,1.13059,-0.168601,-1.04029,-0.458336,0.0334514,-0.488055,0.132007,-0.545527,-2.16152,1 +0.172357,-0.30481,0.589709,-0.46381,-0.300473,-0.0574621,-0.268691,1.04752,0.755417,-0.535235,-0.530828,-0.139797,0.081884,-0.168601,-0.362178,-0.458336,0.0334514,-0.295669,0.201132,-0.545527,1.11272,1 +0.375592,-0.30481,0.868286,-1.14268,0.0373407,-0.0574621,-0.268691,0.98936,0.642198,-0.535235,-0.22878,0.142575,0.081884,0.444411,-0.0231245,-0.458336,0.277632,-0.295669,0.339381,-0.476509,-0.524402,0 +-0.0308771,0.729961,0.546851,-0.46381,-0.300473,-0.0574621,-0.268691,1.04752,1.54795,-0.535235,-1.2593,-0.909903,1.09676,-0.168601,-0.701232,-0.458336,0.0334514,-0.552184,0.132007,-0.545527,-0.524402,1 +1.08691,-0.563502,0.846857,-1.14268,2.40204,-0.0574621,-0.268691,1.04752,2.56693,-0.535235,-1.15269,1.86248,-0.899164,2.56209,0.994036,0.957976,0.460768,-1.7065,0.75413,0.662301,-0.524402,1 +1.08691,-0.0461169,0.846857,-0.803245,1.3886,-0.0574621,1.42637,1.10569,2.34049,-0.535235,-1.40144,1.09237,-0.899164,0.890238,0.994036,-0.458336,0.216587,-1.57825,0.61588,2.42228,1.11272,5 +0.883679,0.212576,0.675425,-0.46381,0.712969,-0.0574621,1.42637,1.10569,2.11405,-0.535235,-1.3659,0.91268,-0.831506,0.611597,2.0112,-0.458336,0.0334514,-1.44999,0.546756,2.73286,1.11272,5 +0.883679,-0.0461169,0.868286,-0.803245,1.3886,-0.0574621,1.42637,1.10569,2.22727,-0.535235,-1.40144,1.09237,-0.899164,0.890238,0.994036,-0.458336,0.216587,-1.51412,0.61588,2.45679,1.11272,5 +0.883679,-0.0461169,0.825428,-0.46381,1.3886,-0.0574621,1.42637,1.10569,2.45371,-0.535235,-1.40144,1.86248,-0.899164,2.56209,0.994036,-0.458336,0.277632,-1.7065,0.61588,2.28424,-0.524402,5 +0.883679,-0.30481,0.954001,-1.14268,1.72641,-0.0574621,-0.268691,0.98936,3.0198,-0.535235,-1.38367,1.86248,-0.899164,2.56209,1.67214,2.37429,0.277632,-1.64238,0.823255,1.21445,-0.524402,5 +0.985296,-0.30481,0.911144,-1.14268,2.06422,-0.0574621,-0.268691,0.98936,2.79336,-0.535235,-1.22376,1.86248,-0.899164,2.56209,2.0112,2.37429,0.460768,-1.51412,0.75413,1.0419,-0.524402,5 +0.0707402,-0.563502,-0.160304,0.554496,1.3886,-0.0574621,-0.268691,1.04752,0.18932,-0.26345,-0.22878,0.630308,-0.966823,-0.224329,0.315929,-0.458336,-0.149684,-0.423926,-0.0753675,0.489754,1.11272,5 +-0.742198,2.54081,-0.160304,0.893932,-0.300473,-0.0574621,-0.268691,0.349558,1.32151,-0.535235,-1.40144,0.373606,-0.324067,0.277226,-0.362178,-0.458336,-0.149684,-0.103282,0.132007,-0.200434,-0.524402,1 +-0.742198,2.28212,-0.160304,0.893932,-0.300473,-0.0574621,-0.268691,0.349558,1.43473,-0.535235,-1.4192,0.399276,-0.324067,0.332955,0.315929,-0.458336,-0.149684,-0.039153,0.132007,-0.234943,-0.524402,1 +-0.640581,1.50604,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.349558,1.54795,-0.535235,-0.690735,1.04103,-0.763847,1.0017,0.654983,0.957976,0.0944967,-0.680442,0.0628821,-0.131415,-0.524402,1 +-1.04705,2.28212,-0.138875,0.554496,-0.638287,-0.0574621,-0.268691,0.465885,0.981856,-0.535235,-1.02832,0.116904,-0.290238,-0.224329,1.33309,-0.458336,-0.149684,-0.167411,-0.144492,-0.37298,1.11272,1 +-1.04705,2.02342,-0.160304,-0.46381,-0.638287,-0.0574621,-0.268691,0.465885,0.868636,-0.535235,-1.2593,0.116904,-0.290238,-0.224329,0.654983,-0.458336,-0.271775,-0.103282,-0.144492,-0.37298,1.11272,1 +-1.04705,1.76473,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,0.465885,0.868636,-0.535235,-1.45474,0.168245,-0.290238,-0.112872,-0.0231245,-0.458336,0.155542,-0.039153,0.0628821,-0.303962,1.11272,1 +-1.04705,1.76473,-0.160304,0.893932,-0.638287,-0.0574621,-0.268691,0.349558,2.34049,-0.535235,-1.45474,0.989691,-0.324067,1.61471,0.654983,0.957976,0.521813,-0.359797,0.546756,-0.131415,-0.524402,3 +-1.04705,1.76473,-0.181733,-0.46381,-0.638287,-0.0574621,-0.268691,0.465885,0.755417,-0.535235,-1.2593,0.116904,-0.290238,-0.224329,0.654983,-0.458336,0.155542,-0.039153,-0.00624269,-0.303962,1.11272,1 +-0.335729,0.212576,-0.203162,2.25167,0.0373407,-0.0574621,-0.268691,0.291394,1.54795,-0.535235,-1.06385,0.476287,-0.594701,0.0543129,0.315929,-0.458336,0.0944967,-0.359797,-0.213617,0.0411321,-0.524402,5 +-0.335729,-0.30481,-0.181733,1.5728,-0.300473,-0.0574621,-0.268691,0.291394,1.54795,-0.535235,-0.637433,0.450617,-0.560872,0.0543129,0.654983,-0.458336,0.0944967,-0.295669,-0.144492,-0.131415,-0.524402,5 +-0.335729,-0.563502,-0.160304,1.23337,0.0373407,-0.0574621,-0.268691,0.349558,1.66117,-0.535235,-0.193245,-0.216808,0.0480547,-0.391514,0.315929,-0.458336,0.0334514,-0.23154,-0.144492,-0.338471,-0.524402,5 +-0.335729,-0.30481,-0.117446,0.893932,0.375155,-0.0574621,-0.268691,0.291394,1.88761,-0.535235,-0.459758,-0.0371167,-0.222579,-0.447242,-0.0231245,-0.458336,0.0944967,-0.359797,-0.213617,-0.131415,1.11272,5 +-0.335729,-0.0461169,-0.096017,0.554496,0.375155,-0.0574621,-0.268691,0.291394,1.88761,-0.535235,-0.868411,0.142575,-0.222579,-0.0571439,0.654983,-0.458336,0.0944967,-0.295669,-0.144492,-0.131415,-0.524402,5 +-0.335729,0.212576,-0.0745881,0.215061,0.0373407,-0.0574621,-0.268691,0.23323,1.66117,-0.535235,-0.708503,0.142575,-0.222579,-0.0571439,0.315929,-0.458336,-0.149684,-0.23154,-0.144492,-0.269452,-0.524402,5 +-0.335729,2.28212,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.175066,0.0761009,-0.535235,-0.957248,-0.0627869,0.352518,0.444411,-0.0231245,0.957976,0.399723,0.473878,0.408506,-0.303962,-0.524402,1 +-0.335729,1.50604,-0.181733,-0.124374,-0.300473,-0.0574621,-0.268691,0.291394,-0.0371185,-0.535235,-1.02832,0.732989,-0.696189,0.444411,0.654983,-0.458336,0.399723,0.409749,0.408506,-0.0969054,1.11272,1 +-0.335729,0.988654,-0.181733,-0.803245,0.712969,-0.0574621,-0.268691,0.291394,0.30254,-0.535235,-0.708503,0.91268,-0.696189,0.83451,0.994036,-0.458336,0.399723,0.217363,0.339381,0.351716,-0.524402,5 +-0.335729,0.729961,-0.160304,-0.803245,0.712969,-0.0574621,-0.268691,0.349558,0.415759,-0.535235,-1.09939,0.91268,-0.696189,0.83451,0.994036,-0.458336,0.399723,0.153234,0.201132,0.420735,-0.524402,5 +-0.335729,0.988654,-0.160304,-0.803245,1.05078,-0.0574621,-0.268691,0.23323,0.642198,-0.535235,-0.424223,1.40041,-0.696189,1.89335,0.315929,-0.458336,-0.393865,0.153234,0.132007,1.11092,-0.524402,5 +-0.335729,0.471268,-0.181733,-0.46381,1.3886,-0.0574621,-0.268691,0.23323,0.642198,-0.535235,-0.58413,1.40041,-0.696189,1.89335,0.654983,-0.458336,-0.393865,0.153234,0.132007,1.28347,-0.524402,5 +-0.335729,1.24735,-0.181733,-0.803245,0.712969,-0.0574621,-0.268691,0.23323,0.528978,-0.535235,-0.29985,1.22072,-0.560872,1.72616,0.994036,-0.458336,-0.393865,0.153234,0.201132,0.972885,-0.524402,5 +-0.335729,1.76473,-0.203162,1.5728,0.712969,-0.0574621,-0.268691,0.116902,0.18932,-0.535235,0.375316,1.11804,-0.324067,1.89335,0.994036,-0.458336,0.765994,0.409749,0.477631,1.07641,-0.524402,5 +-0.335729,1.50604,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,0.23323,0.18932,-0.535235,-0.566363,0.784329,-0.560872,0.778782,0.994036,-0.458336,-0.454911,0.0249759,-0.0753675,0.69681,-0.524402,5 +-0.335729,1.24735,-0.181733,0.554496,1.05078,-0.0574621,-0.268691,0.291394,0.415759,-0.535235,-1.40144,0.784329,-0.560872,0.778782,-0.362178,-0.458336,-0.149684,-0.039153,-0.0753675,1.00739,-0.524402,5 +-0.335729,1.24735,-0.181733,-0.124374,0.712969,-0.0574621,-0.268691,0.23323,0.30254,-0.535235,-0.708503,0.989691,-0.560872,1.22461,-0.0231245,-0.458336,0.399723,0.217363,0.339381,0.662301,-0.524402,5 +-0.132494,1.24735,-0.203162,1.5728,3.41548,-0.0574621,-0.268691,0.465885,1.54795,-0.535235,-1.45474,1.34907,-1.13597,1.05742,0.315929,-0.458336,0.399723,-1.06522,0.270256,2.80188,1.11272,5 +-0.132494,0.988654,-0.203162,1.91224,3.41548,-0.0574621,-0.268691,0.524049,1.77439,-0.535235,-1.45474,1.42608,-1.13597,1.22461,0.994036,-0.458336,0.399723,-1.32173,0.0628821,2.90541,-0.524402,5 +-0.132494,1.24735,-0.203162,1.23337,3.7533,-0.0574621,-0.268691,0.465885,1.54795,-0.535235,-1.45474,1.16938,-0.797677,1.22461,-0.362178,-0.458336,0.399723,-1.19347,-0.0753675,2.90541,-0.524402,5 +-0.132494,0.988654,-0.203162,1.91224,3.07767,-0.0574621,-0.268691,0.524049,1.66117,-0.535235,-1.45474,1.16938,-0.797677,1.22461,0.315929,-0.458336,-1.92,-1.2576,-0.351867,3.2505,-2.16152,5 +-0.132494,0.471268,-0.203162,2.25167,4.09111,-0.0574621,-0.268691,0.640377,1.77439,-0.535235,-1.45474,1.14371,-1.03448,0.778782,-0.0231245,-0.458336,-1.55373,-1.57825,-1.18136,1.55954,-0.524402,5 +-1.96161,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,-0.535235,0.588526,-1.24362,0.352518,-2.11909,-1.04029,-0.458336,-1.37059,-1.2576,-1.52699,-0.649055,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,-0.535235,0.677364,-1.19228,0.28486,-2.11909,-1.04029,-0.458336,-1.37059,-1.2576,-1.52699,-0.614546,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.98936,-0.942873,-0.535235,0.712899,-1.16661,0.217201,-2.17482,-1.04029,-0.458336,-1.37059,-1.32173,-1.52699,-0.614546,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.98936,-0.942873,-0.535235,0.748434,-1.14093,0.217201,-2.11909,-1.04029,-0.458336,-1.37059,-1.32173,-1.52699,-0.614546,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,-0.535235,0.606294,-1.21795,0.28486,-2.17482,-1.04029,-0.458336,-1.37059,-1.2576,-1.52699,-0.649055,-0.524402,0 +-1.96161,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.814868,-0.0371185,-0.535235,1.4236,-0.345159,-0.0872623,-0.893069,-0.701232,-0.458336,-1.49268,-1.38586,-1.66524,-0.303962,-0.524402,1 +-2.77454,2.02342,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.873032,0.0761009,-0.535235,0.801736,-0.42217,0.0142255,-0.893069,0.315929,-0.458336,-1.85895,-1.12934,-1.52699,0.455245,-2.16152,1 +-2.77454,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.931196,-0.829654,-0.535235,1.05048,-1.08959,0.0480547,-2.28628,-1.04029,-0.458336,-1.67582,-1.64238,-1.87261,-0.580037,-0.524402,0 +-2.77454,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.931196,-0.829654,-0.535235,0.943877,-1.08959,0.0480547,-2.28628,-1.04029,-0.458336,-1.55373,-1.64238,-1.87261,-0.580037,-0.524402,0 +-2.77454,-0.563502,-0.203162,2.25167,-0.638287,-0.0574621,-0.268691,0.931196,-0.829654,-0.535235,0.588526,-1.03825,0.0480547,-2.17482,-1.04029,-0.458336,-1.55373,-1.57825,-1.80349,-0.614546,-0.524402,0 +-2.77454,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.931196,-0.829654,-0.535235,0.748434,-1.11526,0.0480547,-2.34201,-1.04029,-0.458336,-1.55373,-1.57825,-1.80349,-0.614546,-0.524402,0 +-2.77454,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.98936,-0.829654,-0.535235,0.393083,-1.29496,0.28486,-2.34201,-1.04029,-0.458336,-1.61477,-1.51412,-1.80349,-0.649055,-0.524402,0 +-2.77454,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.98936,-0.716435,-0.535235,0.783969,-0.42217,0.217201,-0.558699,-0.362178,-0.458336,-1.55373,-1.19347,-1.66524,-0.165924,-2.16152,1 +-2.36807,-0.30481,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.873032,-0.489996,-0.535235,0.641829,-0.165468,-0.053433,-0.447242,0.315929,-0.458336,-1.55373,-1.38586,-1.73436,-0.234943,-2.16152,1 +-2.36807,-0.0461169,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,0.814868,-0.489996,-0.535235,0.464154,-0.165468,-0.053433,-0.447242,-0.362178,-0.458336,-1.55373,-1.44999,-1.87261,-0.0969054,-2.16152,1 +-2.36807,-0.30481,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.931196,-0.603215,-0.535235,0.481921,-0.165468,-0.053433,-0.447242,-0.362178,-0.458336,-1.55373,-1.38586,-1.73436,-0.165924,-2.16152,1 +-2.36807,-0.0461169,-0.181733,0.215061,-0.300473,-0.0574621,-0.268691,0.98936,-0.489996,-0.535235,0.428619,-0.139797,-0.053433,-0.391514,0.654983,-0.458336,-1.67582,-1.32173,-1.73436,0.0756414,-2.16152,1 +-2.36807,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.98936,-0.829654,-0.535235,0.677364,-1.03825,0.149542,-2.00764,-1.04029,-0.458336,-1.67582,-1.51412,-1.80349,-0.614546,-0.524402,0 +-2.36807,0.212576,-0.181733,-0.803245,-0.300473,-0.0574621,-0.268691,1.04752,-0.263557,-0.535235,0.197641,0.450617,-0.121092,0.778782,0.315929,-0.458336,-1.73686,-1.38586,-1.80349,0.17917,-2.16152,1 +-2.36807,0.471268,-0.181733,1.23337,-0.300473,-0.0574621,-0.268691,0.931196,0.30254,-0.535235,0.0555005,0.450617,-0.121092,0.778782,-0.362178,-0.458336,-1.73686,-1.32173,-1.80349,0.524263,-2.16152,1 +-2.36807,0.988654,-0.181733,1.5728,-0.300473,-0.0574621,-0.268691,0.931196,0.642198,-0.535235,-0.175477,0.450617,-0.121092,0.778782,-0.0231245,-0.458336,-1.85895,-1.2576,-1.66524,1.00739,-2.16152,1 +-2.36807,-0.0461169,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.98936,0.415759,-0.535235,-0.335385,2.70959,-1.06831,4.12248,3.02836,0.957976,-1.85895,-2.02715,-2.14911,0.558773,-2.16152,5 +-2.36807,-0.0461169,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.98936,0.30254,-0.535235,-0.246547,1.16938,-1.06831,0.778782,2.6893,0.957976,-1.85895,-1.89889,-2.07999,0.627791,-0.524402,5 +-2.36807,-0.0461169,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,0.931196,1.20829,-0.535235,-1.13492,2.70959,-1.06831,4.12248,2.0112,0.957976,-2.40836,-2.15541,-2.28736,1.387,-2.16152,5 +-2.36807,0.212576,-0.203162,1.5728,1.05078,-0.0574621,-0.268691,0.931196,1.54795,-0.535235,-1.13492,2.70959,-1.06831,4.12248,1.67214,-0.458336,-2.59149,-2.34779,-2.21824,1.45602,-2.16152,5 +-2.36807,-0.0461169,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,0.98936,0.868636,-0.535235,-0.459758,2.70959,-1.06831,4.12248,2.0112,-0.458336,-1.85895,-2.15541,-2.07999,0.489754,-2.16152,5 +-2.36807,0.212576,-0.181733,1.5728,0.712969,-0.0574621,-0.268691,0.98936,0.981856,-0.535235,-0.51306,2.70959,-1.06831,4.12248,0.994036,-0.458336,-1.85895,-2.02715,-2.01086,0.800338,-2.16152,5 +-2.36807,0.212576,-0.181733,1.5728,0.375155,-0.0574621,-0.268691,0.98936,0.528978,-0.535235,-0.246547,2.70959,-1.06831,4.12248,0.994036,-0.458336,-1.67582,-1.83476,-1.94174,0.593282,-2.16152,5 +-2.36807,-0.0461169,-0.160304,0.554496,1.72641,-0.0574621,3.12144,1.22202,2.00083,-0.535235,-1.45474,1.60578,-1.13597,1.61471,1.33309,-0.458336,-2.83568,-3.30973,-2.97861,0.800338,-2.16152,7 +-2.36807,0.212576,-0.203162,1.5728,1.72641,-0.0574621,3.12144,1.22202,1.88761,-0.535235,-1.45474,1.60578,-1.13597,1.61471,0.994036,-0.458336,-2.83568,-3.05321,-2.97861,0.765829,-2.16152,7 +-2.36807,-0.0461169,-0.160304,0.893932,1.72641,-0.0574621,3.12144,1.22202,1.88761,-0.535235,-1.45474,1.60578,-1.13597,1.61471,0.654983,-0.458336,-2.83568,-3.2456,-3.04773,0.903866,-2.16152,7 +-2.36807,-0.30481,-0.138875,-0.803245,2.40204,-0.0574621,3.12144,1.22202,2.11405,-0.535235,-1.45474,1.37474,-1.03448,1.28034,0.654983,0.957976,-2.83568,-3.63037,-3.04773,0.69681,-2.16152,7 +-2.36807,0.212576,-0.160304,0.215061,2.06422,-0.0574621,1.42637,1.16385,2.22727,-0.535235,-1.45474,1.52876,-1.03448,1.61471,0.315929,-0.458336,-3.01881,-3.18147,-2.84036,1.387,-2.16152,7 +-2.36807,-0.0461169,-0.160304,0.554496,1.3886,-0.0574621,3.12144,1.22202,2.00083,-0.535235,-1.45474,1.60578,-1.13597,1.61471,1.33309,-0.458336,-2.83568,-3.37386,-2.97861,0.800338,-2.16152,7 +0.375592,2.7995,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,0.349558,1.54795,-0.535235,-1.40144,1.68279,-1.4066,1.33607,1.67214,2.37429,1.37645,0.473878,1.72188,0.800338,1.11272,5 +0.375592,2.54081,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,0.407721,1.66117,-0.535235,-0.601898,1.68279,-1.4066,1.33607,1.67214,2.37429,1.62063,0.409749,1.86013,1.00739,1.11272,5 +0.375592,2.54081,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.524049,1.20829,-0.535235,-1.38367,1.68279,-1.4066,1.33607,0.315929,-0.458336,1.37645,0.409749,1.58363,1.11092,1.11272,5 +0.375592,2.28212,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.524049,0.868636,-0.535235,-1.4192,1.68279,-1.4066,1.33607,-0.362178,-0.458336,1.37645,0.602136,1.58363,0.69681,1.11272,5 +0.375592,2.7995,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.582213,0.528978,-0.535235,-1.4192,1.68279,-1.4066,1.33607,0.994036,-0.458336,0.521813,0.666265,1.58363,0.938376,1.11272,5 +0.375592,2.7995,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,0.582213,0.528978,-0.535235,-1.38367,1.68279,-1.4066,1.33607,0.994036,0.957976,0.521813,0.473878,1.30713,1.17994,1.11272,5 +0.375592,2.28212,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.524049,0.981856,-0.535235,-1.38367,1.68279,-1.4066,1.33607,-0.0231245,-0.458336,1.37645,0.409749,1.44538,1.387,1.11272,5 +0.375592,2.28212,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.640377,0.415759,-0.535235,-1.15269,1.68279,-1.4066,1.33607,0.994036,0.957976,0.704949,0.666265,1.37625,0.869357,1.11272,5 +0.375592,2.02342,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.582213,0.30254,-0.535235,-0.104407,1.68279,-1.4066,1.33607,0.315929,0.957976,0.643904,0.730394,1.37625,0.800338,1.11272,5 +0.375592,1.76473,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.524049,0.30254,-0.535235,-0.193245,1.68279,-1.4066,1.33607,0.315929,-0.458336,0.643904,0.538007,1.30713,1.387,1.11272,5 +0.375592,1.50604,-0.181733,0.215061,0.375155,-0.0574621,-0.268691,0.640377,0.18932,-0.535235,-0.495293,0.989691,-0.831506,0.778782,-0.701232,-0.458336,0.521813,0.538007,0.823255,1.14543,1.11272,5 +0.375592,1.24735,-0.181733,0.215061,0.375155,-0.0574621,-0.268691,0.640377,0.30254,-0.535235,-0.459758,0.989691,-0.831506,0.778782,0.315929,-0.458336,0.643904,0.538007,0.89238,1.24896,1.11272,5 +0.375592,0.729961,-0.160304,0.215061,0.375155,-0.0574621,-0.268691,0.640377,0.18932,-0.535235,-0.530828,0.989691,-0.831506,0.778782,0.315929,0.957976,0.643904,0.538007,0.823255,1.0419,1.11272,5 +0.375592,1.24735,-0.181733,0.215061,0.375155,-0.0574621,-0.268691,0.640377,0.0761009,-0.535235,-0.619665,0.989691,-0.831506,0.778782,-0.701232,-0.458336,0.521813,0.538007,0.823255,0.972885,1.11272,5 +0.375592,0.988654,-0.181733,-0.124374,0.375155,-0.0574621,-0.268691,0.582213,0.0761009,-0.535235,-0.353152,0.989691,-0.831506,0.778782,-0.0231245,-0.458336,0.521813,0.538007,0.75413,0.834848,1.11272,5 +0.375592,0.729961,-0.160304,0.215061,0.0373407,-0.0574621,-0.268691,0.582213,0.0761009,-0.535235,-0.246547,0.989691,-0.831506,0.778782,-0.362178,0.957976,0.643904,0.538007,0.75413,0.834848,1.11272,5 +0.375592,0.729961,-0.096017,0.215061,-0.300473,-0.0574621,-0.268691,0.698541,0.0761009,-0.535235,-0.211012,-0.576191,0.961445,0.332955,-0.701232,-0.458336,0.521813,0.409749,0.339381,-0.37298,-0.524402,1 +0.375592,1.50604,-0.138875,-0.124374,-0.300473,-0.0574621,-0.268691,0.640377,-0.150338,-0.535235,-0.317617,-0.576191,0.961445,0.332955,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.37298,-0.524402,1 +0.375592,2.02342,-0.117446,-0.124374,-0.300473,-0.0574621,-0.268691,0.524049,-0.263557,-0.535235,-0.530828,-0.576191,0.961445,0.332955,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.37298,-0.524402,1 +0.375592,1.50604,-0.138875,-0.124374,-0.300473,-0.0574621,-0.268691,0.582213,-0.150338,-0.535235,-0.406455,-0.576191,0.961445,0.332955,-1.04029,-0.458336,0.521813,0.602136,0.477631,-0.37298,-0.524402,1 +0.375592,2.28212,-0.160304,0.215061,-0.638287,-0.0574621,-0.268691,0.524049,-0.489996,-0.535235,-0.72627,-0.576191,0.961445,0.332955,-0.362178,-0.458336,0.582859,0.730394,0.61588,-0.40749,-0.524402,1 +-0.234112,-0.822195,-0.138875,-0.46381,2.06422,-0.0574621,4.81651,1.16385,0.415759,-0.535235,-1.45474,-0.0627869,-0.527043,-1.00453,0.994036,-0.458336,-1.00432,-1.19347,-1.25049,-0.131415,-0.524402,7 +-0.234112,0.212576,-0.138875,-0.124374,1.05078,-0.0574621,1.42637,0.756704,0.868636,-0.535235,-1.29483,0.501957,-0.527043,0.221498,1.33309,-0.458336,-0.271775,-0.488055,-0.420991,0.0756414,-0.524402,5 +-0.234112,0.729961,-0.138875,-0.124374,0.712969,-0.0574621,-0.268691,0.582213,0.755417,-0.535235,-1.24153,-0.0371167,0.217201,0.277226,0.654983,0.957976,-0.271775,-0.103282,-0.282742,-0.131415,-0.524402,5 +-0.234112,1.24735,-0.138875,-0.803245,-0.638287,-0.0574621,-0.268691,0.349558,0.528978,-0.535235,-0.886178,-0.268148,0.521664,0.277226,0.994036,-0.458336,0.765994,0.538007,0.61588,-0.165924,-0.524402,1 +-0.234112,0.988654,-0.117446,-0.46381,-0.638287,-0.0574621,-0.268691,0.349558,1.20829,-0.535235,-1.45474,-0.370829,0.521664,0.0543129,-0.0231245,-0.458336,-0.393865,0.34562,0.339381,0.213679,-0.524402,1 +-0.234112,1.24735,-0.117446,-0.124374,-0.300473,-0.0574621,-0.268691,0.465885,1.09507,-0.535235,-1.45474,-0.370829,0.521664,0.0543129,-0.362178,-0.458336,-0.454911,0.217363,0.201132,0.213679,-0.524402,1 +-0.234112,1.24735,-0.160304,-0.124374,0.0373407,-0.0574621,-0.268691,0.465885,0.642198,-0.535235,-1.02832,0.373606,-0.324067,0.277226,0.654983,-0.458336,0.765994,0.281491,0.408506,0.213679,1.11272,5 +-0.234112,1.24735,-0.138875,-0.124374,-0.300473,-0.0574621,-0.268691,0.465885,0.642198,-0.535235,-0.957248,0.373606,-0.324067,0.277226,0.654983,-0.458336,0.765994,0.34562,0.477631,0.110151,1.11272,1 +-0.234112,1.50604,-0.181733,-0.124374,-0.300473,-0.0574621,-0.268691,0.465885,0.755417,-0.535235,-0.975016,0.373606,-0.324067,0.277226,0.654983,-0.458336,-0.33282,0.34562,0.477631,0.248188,1.11272,1 +-0.234112,1.76473,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.407721,0.0761009,-0.535235,-0.868411,0.373606,-0.324067,0.277226,0.994036,-0.458336,0.82704,0.538007,0.61588,0.0411321,1.11272,1 +-0.234112,1.24735,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,0.407721,0.18932,-0.535235,-0.51306,0.399276,-0.357896,0.277226,0.994036,-0.458336,0.82704,0.473878,0.61588,0.110151,1.11272,1 +-0.234112,1.50604,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,0.407721,0.18932,-0.535235,-0.744038,0.373606,-0.324067,0.277226,0.654983,-0.458336,0.82704,0.409749,0.408506,0.110151,1.11272,1 +-0.234112,1.24735,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,0.407721,0.30254,-0.535235,-0.975016,-0.370829,0.589323,0.16577,-0.701232,-0.458336,0.0334514,0.281491,0.201132,-0.37298,-0.524402,1 +-0.234112,1.76473,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,0.291394,-0.0371185,-0.535235,-0.957248,-0.370829,0.589323,0.16577,-0.701232,-0.458336,0.0334514,0.34562,0.270256,-0.37298,-0.524402,1 +-0.234112,0.988654,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,0.291394,0.0761009,-0.535235,-1.02832,-0.0627869,0.183372,0.16577,-0.362178,-0.458336,0.155542,0.281491,0.201132,-0.37298,-0.524402,1 +0.0707402,0.471268,-0.181733,0.554496,0.712969,-0.0574621,-0.268691,0.349558,0.528978,-0.535235,-1.29483,0.322266,-0.357896,0.110041,0.315929,-0.458336,0.338678,-0.103282,0.132007,0.351716,1.11272,5 +0.0707402,0.471268,-0.181733,0.554496,1.05078,-0.0574621,-0.268691,0.524049,0.30254,-0.535235,-1.27706,0.322266,-0.357896,0.110041,0.994036,-0.458336,-0.149684,-0.103282,-0.00624269,0.14466,-0.524402,5 +0.0707402,0.212576,-0.181733,0.554496,1.3886,-0.0574621,-0.268691,0.582213,0.18932,-0.535235,-1.13492,0.193915,-0.357896,-0.168601,0.315929,-0.458336,-0.0275938,-0.167411,-0.00624269,0.0756414,1.11272,5 +0.0707402,-0.0461169,-0.181733,0.893932,1.05078,-0.0574621,1.42637,0.698541,0.0761009,-0.535235,-0.975016,0.0398938,-0.357896,-0.502971,0.994036,0.957976,-0.0275938,-0.488055,-0.144492,0.558773,1.11272,5 +0.0707402,-0.822195,-0.203162,1.5728,1.3886,-0.0574621,3.12144,0.98936,0.18932,-0.535235,-0.779573,-0.0114465,-0.357896,-0.614428,0.315929,-0.458336,-0.0275938,-1.00109,-0.97399,1.07641,1.11272,7 +0.0707402,1.24735,-0.203162,2.59111,1.3886,-0.0574621,-0.268691,0.756704,-0.0371185,-0.535235,-1.45474,0.989691,-0.459384,1.39179,0.994036,-0.458336,1.13227,0.217363,0.89238,2.83639,1.11272,5 +0.0707402,1.24735,-0.203162,1.91224,1.05078,-0.0574621,-0.268691,0.756704,-0.263557,-0.535235,0.197641,0.989691,-0.459384,1.39179,1.33309,-0.458336,1.13227,0.666265,1.09975,1.7666,1.11272,5 +0.0707402,1.50604,-0.181733,1.91224,1.3886,-0.0574621,-0.268691,0.756704,-0.150338,-0.535235,-1.45474,0.989691,-0.459384,1.39179,1.33309,-0.458336,1.13227,0.666265,1.09975,1.73209,1.11272,5 +0.0707402,1.24735,-0.181733,1.91224,1.3886,-0.0574621,-0.268691,0.814868,-0.263557,-0.535235,-0.797341,0.989691,-0.459384,1.39179,2.0112,-0.458336,1.13227,0.602136,0.89238,1.45602,-0.524402,5 +0.0707402,0.988654,-0.181733,2.25167,1.05078,-0.0574621,-0.268691,0.873032,-0.150338,-0.535235,-0.6552,0.989691,-0.459384,1.39179,1.67214,-0.458336,1.13227,0.666265,0.961504,1.0419,-0.524402,5 +0.0707402,1.24735,-0.181733,1.5728,0.712969,-0.0574621,-0.268691,0.756704,-0.150338,-0.535235,-0.58413,0.989691,-0.459384,1.39179,-0.0231245,0.957976,1.13227,0.794523,0.89238,0.731319,-0.524402,5 +0.0707402,1.24735,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.698541,-0.150338,-0.535235,-0.530828,0.989691,-0.459384,1.39179,0.654983,-0.458336,0.765994,0.730394,0.823255,0.489754,-0.524402,5 +0.0707402,0.471268,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.150338,-0.535235,-1.13492,0.322266,-0.121092,0.50014,-0.0231245,-0.458336,0.765994,0.794523,0.89238,0.110151,1.11272,5 +0.0707402,0.471268,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.814868,-0.150338,-0.535235,-0.406455,0.322266,-0.121092,0.50014,-0.0231245,-0.458336,0.765994,0.538007,0.685005,0.00662268,1.11272,5 +0.0707402,0.471268,-0.181733,0.893932,1.05078,-0.0574621,-0.268691,0.814868,-0.263557,-0.535235,-0.388688,0.322266,-0.121092,0.50014,0.315929,-0.458336,0.277632,0.538007,0.61588,-0.0623961,1.11272,5 +0.0707402,0.729961,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.873032,-0.263557,-0.535235,-0.58413,0.322266,-0.121092,0.50014,0.315929,-0.458336,0.643904,0.473878,0.61588,-0.0623961,1.11272,5 +0.0707402,0.471268,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.873032,-0.263557,-0.535235,-0.58413,0.322266,-0.121092,0.50014,0.315929,-0.458336,0.277632,0.473878,0.546756,-0.131415,-0.524402,5 +0.0707402,0.988654,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,0.931196,-0.376776,-0.535235,-0.779573,0.322266,-0.121092,0.50014,-0.362178,-0.458336,0.704949,0.602136,0.61588,-0.131415,1.11272,5 +0.0707402,1.24735,-0.160304,-0.46381,1.05078,-0.0574621,-0.268691,0.931196,-0.489996,-0.535235,-1.01055,0.758659,-0.18875,1.33607,1.33309,-0.458336,0.82704,0.34562,0.546756,0.593282,-0.524402,5 +0.0707402,1.50604,-0.181733,0.554496,1.05078,-0.0574621,-0.268691,0.756704,-0.263557,-0.535235,-1.3659,0.732989,-0.18875,1.28034,0.654983,-0.458336,0.82704,0.666265,0.89238,0.662301,-0.524402,5 +0.0707402,1.50604,-0.181733,0.554496,1.05078,-0.0574621,-0.268691,0.698541,-0.150338,-0.535235,-1.34813,0.732989,-0.18875,1.28034,0.315929,-0.458336,0.82704,0.666265,0.89238,0.800338,-0.524402,5 +0.0707402,1.24735,-0.160304,1.23337,1.05078,-0.0574621,-0.268691,0.698541,-0.263557,-0.535235,-1.45474,0.732989,-0.18875,1.28034,0.315929,-0.458336,0.82704,0.666265,0.961504,0.869357,-0.524402,5 +0.0707402,1.24735,-0.181733,1.5728,1.05078,-0.0574621,-0.268691,0.582213,-0.150338,-0.535235,-1.45474,0.630308,-0.053433,1.28034,-0.0231245,-0.458336,0.82704,0.794523,1.09975,0.869357,-0.524402,5 +0.0707402,1.50604,-0.203162,1.91224,1.05078,-0.0574621,-0.268691,0.582213,-0.150338,-0.535235,-1.45474,0.784329,-0.256409,1.28034,-0.362178,-0.458336,0.82704,0.858651,1.16888,0.972885,1.11272,5 +0.0707402,2.02342,-0.203162,1.91224,0.712969,-0.0574621,-0.268691,0.524049,0.0761009,-0.535235,-1.45474,0.784329,-0.256409,1.28034,0.315929,-0.458336,0.82704,1.11517,1.5145,0.869357,1.11272,5 +0.0707402,2.02342,-0.181733,1.23337,1.05078,-0.0574621,-0.268691,0.465885,0.18932,-0.535235,-1.45474,0.784329,-0.256409,1.28034,0.315929,-0.458336,0.82704,0.92278,1.30713,1.0419,1.11272,5 +0.0707402,-0.30481,-0.160304,-1.48212,0.0373407,-0.0574621,6.51157,0.931196,0.18932,-0.535235,-1.45474,0.758659,-0.763847,0.388683,-0.0231245,0.957976,-2.95777,-1.89889,-2.28736,1.83562,-2.16152,7 +0.0707402,0.471268,-0.160304,-0.803245,0.375155,-0.0574621,4.81651,0.873032,0.18932,-0.535235,-1.45474,1.09237,-0.763847,1.11315,-0.0231245,-0.458336,-2.95777,-1.38586,-1.94174,4.45833,-2.16152,7 +0.0707402,0.212576,-0.181733,-1.14268,0.712969,-0.0574621,4.81651,0.756704,0.30254,-0.535235,-1.45474,1.09237,-0.763847,1.11315,0.994036,-0.458336,-2.95777,-1.06522,-1.73436,6.08027,-2.16152,7 +0.0707402,0.212576,-0.181733,-1.14268,0.375155,-0.0574621,4.81651,0.814868,0.528978,-0.535235,-1.45474,1.22072,-0.932994,1.11315,0.654983,-0.458336,-3.01881,-1.44999,-1.87261,5.63165,-2.16152,7 +0.0707402,0.212576,-0.181733,-1.14268,0.375155,-0.0574621,6.51157,0.873032,0.528978,-0.535235,-1.45474,1.22072,-0.932994,1.11315,0.315929,-0.458336,-3.01881,-1.83476,-2.14911,3.76814,-2.16152,7 +0.0707402,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,8.20664,0.98936,0.415759,-0.535235,-1.45474,1.11804,-0.932994,0.890238,0.654983,0.957976,-3.01881,-2.15541,-2.49474,2.38777,-2.16152,7 +0.0707402,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,8.20664,1.04752,0.528978,-0.535235,-1.45474,1.11804,-0.932994,0.890238,1.33309,0.957976,-3.01881,-2.21954,-2.56386,2.21522,-2.16152,7 +0.0707402,0.212576,-0.203162,-1.48212,-0.300473,-0.0574621,6.51157,0.98936,0.642198,-0.535235,-1.45474,1.27206,-0.932994,1.22461,1.67214,-0.458336,-3.01881,-1.96302,-2.21824,3.11247,-2.16152,7 +2.71279,1.76473,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-0.603215,-0.535235,0.00219796,0.0912342,1.26591,2.28345,0.994036,-0.458336,2.53631,2.26949,2.48225,-0.165924,-0.524402,1 +-1.3519,-0.30481,-0.203162,-1.14268,2.40204,-0.0574621,-0.268691,0.582213,-0.0371185,-0.535235,-0.122175,0.193915,-0.493213,-0.391514,-0.0231245,-0.458336,-1.49268,-1.2576,-1.31961,0.213679,-0.524402,5 +-1.3519,-0.0461169,-0.203162,-1.14268,2.73985,-0.0574621,-0.268691,0.640377,-0.150338,-0.535235,-0.15771,0.193915,-0.493213,-0.391514,-0.362178,-0.458336,-0.577001,-1.32173,-1.38874,0.69681,-0.524402,5 +-1.3519,-0.0461169,-0.203162,-1.14268,2.40204,-0.0574621,-0.268691,0.582213,0.18932,-0.535235,-0.0333371,0.193915,-0.493213,-0.391514,0.315929,0.957976,-1.49268,-1.2576,-1.31961,0.317207,-0.524402,5 +-1.3519,-0.822195,-0.203162,-0.46381,3.41548,-0.0574621,-0.268691,0.698541,0.30254,-0.535235,0.286478,0.373606,-0.831506,-0.558699,-0.0231245,0.957976,-2.83568,-1.77063,-2.14911,1.49053,-0.524402,7 +-1.3519,-0.822195,-0.203162,-0.124374,3.7533,-0.0574621,-0.268691,0.698541,0.30254,-0.535235,0.517456,0.322266,-0.831506,-0.670156,-0.0231245,0.957976,-2.83568,-1.83476,-2.21824,1.28347,-0.524402,7 +-1.3519,-0.822195,-0.203162,-0.124374,3.41548,-0.0574621,-0.268691,0.698541,0.30254,-0.535235,0.464154,0.322266,-0.831506,-0.670156,-0.0231245,0.957976,-1.98104,-1.83476,-2.14911,0.420735,-0.524402,7 +-1.3519,-0.822195,-0.203162,0.215061,3.07767,-0.0574621,-0.268691,0.756704,0.30254,-0.535235,0.144338,0.373606,-0.831506,-0.558699,-0.0231245,0.957976,-3.1409,-1.89889,-2.28736,1.93915,-0.524402,7 +-1.3519,-0.822195,-0.203162,0.215061,2.40204,-0.0574621,1.42637,0.873032,0.18932,-0.535235,0.108803,0.373606,-0.831506,-0.558699,0.315929,0.957976,-3.1409,-2.09128,-2.56386,1.55954,-2.16152,7 +-1.3519,-0.822195,-0.203162,0.215061,1.3886,-0.0574621,1.42637,0.873032,0.18932,-0.535235,0.197641,0.373606,-0.831506,-0.558699,-0.0231245,0.957976,-3.1409,-2.15541,-2.77123,1.55954,-2.16152,7 +-1.3519,-0.822195,-0.203162,-0.124374,1.72641,-0.0574621,1.42637,0.98936,-0.0371185,-0.535235,0.037733,0.373606,-0.831506,-0.558699,-0.362178,0.957976,-3.1409,-2.41192,-3.11686,1.00739,-2.16152,7 +-1.3519,-0.822195,-0.203162,0.215061,1.3886,-0.0574621,3.12144,0.98936,-0.263557,-0.535235,-0.0155696,0.373606,-0.831506,-0.558699,-0.701232,0.957976,-3.1409,-2.34779,-2.97861,0.869357,-2.16152,7 +-1.3519,-0.822195,-0.203162,-0.46381,1.3886,-0.0574621,3.12144,0.873032,-0.0371185,-0.535235,0.215408,0.322266,-0.831506,-0.670156,0.654983,0.957976,-3.1409,-2.15541,-2.56386,1.28347,-0.524402,7 +-1.3519,-0.822195,-0.203162,-1.14268,1.72641,-0.0574621,3.12144,0.98936,-0.263557,-0.535235,-1.45474,0.245255,-0.66236,-0.558699,-0.362178,-0.458336,-3.1409,-2.28366,-2.70211,0.731319,-2.16152,7 +-1.3519,-0.822195,-0.203162,-0.803245,2.73985,-0.0574621,3.12144,0.931196,-0.0371185,-0.535235,-1.45474,0.322266,-0.831506,-0.670156,0.654983,-0.458336,-1.85895,-2.21954,-2.56386,0.248188,-0.524402,7 +-1.3519,-0.822195,-0.203162,-0.803245,2.06422,-0.0574621,3.12144,0.98936,-0.0371185,-0.535235,-1.45474,0.168245,-0.831506,-1.00453,1.33309,-0.458336,-3.1409,-2.34779,-2.63298,0.662301,-0.524402,7 +-1.3519,-0.822195,-0.203162,0.215061,2.73985,-0.0574621,3.12144,0.98936,0.415759,-0.535235,-1.45474,1.04103,-1.03448,0.555868,2.0112,0.957976,-3.1409,-2.73257,-2.49474,0.834848,-2.16152,7 +-1.3519,-0.822195,-0.203162,-0.124374,2.40204,-0.0574621,1.42637,0.931196,0.755417,-0.535235,-1.45474,1.47742,-1.03448,1.50325,2.6893,2.37429,-1.85895,-2.66844,-2.21824,0.593282,-2.16152,7 +-1.3519,-0.822195,-0.203162,-0.124374,2.40204,-0.0574621,1.42637,0.873032,0.642198,-0.535235,-0.761806,1.47742,-1.03448,1.50325,2.0112,0.957976,-1.85895,-2.54018,-2.28736,0.627791,-2.16152,7 +-1.3519,-0.822195,-0.203162,0.215061,2.40204,-0.0574621,3.12144,0.98936,0.415759,-0.535235,-1.45474,1.04103,-1.03448,0.555868,2.0112,0.957976,-3.1409,-2.66844,-2.56386,0.800338,-2.16152,7 +-1.25028,-0.0461169,-0.160304,-0.46381,1.05078,-0.0574621,-0.268691,0.640377,0.18932,-0.535235,0.126571,0.655978,-0.899164,-0.0571439,0.994036,0.957976,-0.943273,-1.19347,-1.25049,0.213679,-0.524402,5 +-1.25028,0.212576,-0.160304,-0.124374,1.3886,-0.0574621,-0.268691,0.640377,0.415759,-0.535235,0.037733,0.655978,-0.899164,-0.0571439,0.654983,0.957976,-0.943273,-1.2576,-1.25049,0.420735,-0.524402,5 +-1.25028,-0.0461169,-0.160304,-0.803245,0.712969,-0.0574621,-0.268691,0.582213,0.30254,-0.535235,0.961644,0.732989,-0.899164,0.110041,0.994036,0.957976,-0.943273,-1.00109,-1.04311,0.17917,-0.524402,5 +-1.25028,0.729961,-0.160304,-0.124374,0.0373407,-0.0574621,-0.268691,0.582213,-0.0371185,-0.535235,1.05048,0.142575,-0.121092,0.110041,-0.362178,-0.458336,-0.821182,-0.552184,-0.83574,-0.0623961,-0.524402,1 +-1.25028,0.471268,-0.160304,-1.14268,-0.638287,-0.0574621,-0.268691,0.465885,0.0761009,-0.535235,0.979412,0.065564,0.081884,0.277226,0.654983,-0.458336,-0.821182,-0.488055,-0.766615,0.00662268,-0.524402,1 +-1.25028,0.988654,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,0.407721,0.415759,-0.535235,0.304246,0.065564,0.081884,0.277226,0.994036,-0.458336,-0.821182,-0.359797,-0.559241,0.17917,-0.524402,1 +-1.25028,0.729961,-0.160304,-0.124374,0.0373407,-0.0574621,-0.268691,0.524049,0.0761009,-0.535235,0.730666,0.219585,-0.121092,0.277226,-0.362178,-0.458336,-0.821182,-0.552184,-0.766615,0.00662268,-0.524402,1 +-1.25028,0.212576,-0.160304,-0.803245,0.375155,-0.0574621,-0.268691,0.524049,0.0761009,-0.535235,1.03271,0.450617,-0.425555,0.277226,-0.0231245,-0.458336,-0.821182,-0.744571,-0.904865,0.14466,-0.524402,5 +-1.25028,0.212576,-0.160304,-0.803245,1.05078,-0.0574621,-0.268691,0.524049,0.30254,-0.535235,0.961644,0.732989,-0.797677,0.277226,0.315929,0.957976,-0.821182,-0.872829,-0.97399,0.317207,-0.524402,5 +-1.25028,0.471268,-0.138875,0.215061,0.712969,-0.0574621,-0.268691,0.465885,0.528978,-0.535235,0.428619,0.732989,-0.797677,0.277226,1.67214,0.957976,-0.821182,-0.8087,-0.83574,0.489754,-0.524402,5 +-1.25028,0.729961,-0.117446,-0.124374,1.3886,-0.0574621,-0.268691,0.524049,0.642198,-0.535235,-0.921713,0.732989,-0.797677,0.277226,0.315929,0.957976,-0.821182,-0.872829,-0.766615,0.662301,-0.524402,5 +-1.25028,0.471268,-0.117446,0.215061,1.3886,-0.0574621,-0.268691,0.524049,0.528978,-0.535235,-0.992783,0.732989,-0.797677,0.277226,0.654983,-0.458336,-0.821182,-0.936957,-0.904865,0.627791,-0.524402,5 +-1.25028,0.212576,-0.138875,0.554496,2.40204,-0.0574621,-0.268691,0.640377,0.528978,-0.535235,-1.02832,0.93835,-1.06831,0.277226,1.33309,-0.458336,-1.43163,-1.38586,-1.25049,1.24896,-0.524402,5 +-1.25028,-0.822195,-0.160304,-0.803245,4.42892,-0.0574621,-0.268691,0.814868,0.755417,-0.535235,-0.58413,0.707319,-1.06831,-0.224329,1.33309,-0.458336,-1.43163,-2.21954,-2.21824,1.387,-0.524402,7 +-1.25028,-0.822195,-0.181733,-0.124374,2.73985,17.3946,-0.268691,1.10569,0.868636,-0.535235,-0.317617,0.88701,-1.30512,-0.224329,0.994036,-0.458336,-4.30076,-3.18147,-3.18598,3.11247,-2.16152,7 +-1.25028,-0.822195,-0.181733,-0.46381,3.07767,17.3946,-0.268691,1.16385,0.868636,-0.535235,-1.45474,0.81,-1.30512,-0.391514,-0.0231245,0.957976,-4.30076,-3.43798,-3.53161,2.42228,-2.16152,7 +-1.25028,-0.822195,-0.181733,0.215061,3.41548,17.3946,-0.268691,1.10569,0.868636,-0.535235,-1.45474,0.81,-1.30512,-0.391514,0.315929,0.957976,-4.30076,-3.30973,-3.32423,2.73286,-2.16152,7 +-1.25028,-0.822195,-0.181733,-0.46381,2.73985,17.3946,-0.268691,1.22202,0.868636,-0.535235,-1.45474,0.81,-1.30512,-0.391514,-0.362178,0.957976,-4.30076,-3.56624,-3.87723,2.21522,-2.16152,7 +-1.25028,-0.822195,-0.203162,-0.124374,2.40204,17.3946,-0.268691,1.33834,0.642198,-0.535235,-1.45474,0.81,-1.30512,-0.391514,0.654983,2.37429,-4.30076,-3.75863,-4.08461,1.69758,-2.16152,7 +0.985296,1.76473,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.698541,-0.603215,-0.535235,-0.175477,0.0398938,0.081884,0.221498,-0.362178,-0.458336,0.888085,0.730394,0.823255,-0.37298,1.11272,1 +0.985296,1.24735,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,0.756704,0.755417,-0.535235,-0.815108,0.219585,0.25103,0.890238,1.67214,-0.458336,0.521813,0.602136,0.89238,-0.0278867,-0.524402,1 +0.985296,1.24735,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.756704,0.981856,-0.535235,-0.761806,0.219585,0.25103,0.890238,1.33309,-0.458336,0.765994,-0.167411,1.03063,-0.165924,-0.524402,1 +0.985296,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.317807,0.357548,-1.24362,1.29974,-0.558699,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.26345,0.322013,-1.19228,1.3674,-0.335786,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.317807,0.304246,-1.24362,1.29974,-0.558699,-1.37934,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,-0.209093,0.250943,-1.14093,1.33357,-0.280057,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.16385,-1.16931,-0.209093,0.250943,-1.19228,1.3674,-0.335786,-1.04029,-0.458336,0.399723,0.602136,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,-0.26345,0.215408,-1.21795,1.40122,-0.335786,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,-0.26345,0.215408,-1.14093,1.33357,-0.280057,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,-0.209093,0.250943,-1.11526,1.29974,-0.280057,-1.04029,-0.458336,0.399723,0.602136,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,-0.209093,0.268711,-1.16661,1.33357,-0.335786,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,-0.209093,0.215408,-1.11526,1.29974,-0.280057,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,-0.100379,0.304246,-1.11526,1.29974,-0.280057,-1.04029,-0.458336,0.521813,0.666265,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.16385,-1.16931,-0.317807,0.410851,-1.16661,1.33357,-0.335786,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,-0.317807,0.908342,-0.370829,0.420177,-0.112872,-0.362178,0.957976,0.521813,0.666265,0.61588,-0.580037,1.11272,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,-0.26345,0.375316,-1.11526,1.29974,-0.280057,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.317807,0.961644,-0.370829,0.420177,-0.112872,-0.0231245,0.957976,0.521813,0.666265,0.61588,-0.580037,1.11272,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.317807,0.748434,-0.370829,0.420177,-0.112872,-0.0231245,0.957976,0.460768,0.602136,0.546756,-0.614546,1.11272,0 +0.578827,2.28212,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,0.349558,0.0761009,-0.535235,1.76118,0.964021,0.081884,2.22772,0.315929,-0.458336,0.399723,1.1793,0.961504,0.972885,-0.524402,1 +0.578827,1.50604,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.407721,-0.376776,-0.535235,1.76118,0.373606,0.081884,0.945967,0.315929,-0.458336,0.643904,0.794523,0.685005,-0.234943,-0.524402,1 +0.578827,1.50604,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.407721,-0.376776,-0.535235,1.90332,0.578968,0.081884,1.39179,0.654983,-0.458336,0.399723,0.986909,0.823255,0.213679,-0.524402,1 +0.578827,2.02342,-0.181733,0.893932,-0.638287,-0.0574621,-0.268691,0.349558,0.18932,-0.535235,2.27644,0.93835,0.115713,2.22772,0.994036,-0.458336,0.888085,1.30755,1.03063,0.69681,-0.524402,1 +0.578827,2.02342,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,0.291394,0.30254,-0.535235,2.09877,0.93835,0.115713,2.22772,1.33309,-0.458336,0.0334514,1.30755,1.03063,2.00817,-0.524402,1 +0.782061,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.0371185,-0.535235,-0.44199,0.193915,0.0142255,0.444411,0.654983,0.957976,0.277632,0.473878,0.61588,-0.37298,-0.524402,1 +0.782061,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,-0.480878,0.624061,-1.19228,1.33357,-0.391514,-1.04029,-0.458336,0.765994,0.794523,0.75413,-0.580037,1.11272,1 +0.782061,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,-0.535235,0.535224,-1.19228,1.33357,-0.391514,-1.37934,-0.458336,0.765994,0.794523,0.75413,-0.614546,1.11272,1 +-0.0308771,-0.30481,-0.181733,1.5728,0.375155,-0.0574621,-0.268691,0.524049,0.981856,-0.535235,-0.175477,0.501957,-0.763847,-0.168601,-0.701232,0.957976,0.0944967,-0.936957,0.0628821,0.00662268,1.11272,5 +-0.0308771,-0.0461169,-0.181733,1.91224,0.712969,-0.0574621,-0.268691,0.582213,0.642198,-0.535235,-0.353152,0.501957,-0.763847,-0.168601,0.994036,0.957976,0.155542,-0.680442,0.132007,0.0411321,1.11272,5 +0.680444,-0.822195,-0.160304,-0.124374,2.06422,-0.0574621,-0.268691,0.873032,0.0761009,-0.535235,-0.58413,0.578968,-0.932994,-0.280057,0.315929,0.957976,0.277632,-0.039153,0.408506,0.386226,1.11272,6 +0.680444,-0.822195,-0.181733,-0.46381,1.72641,-0.0574621,-0.268691,0.873032,-0.150338,-0.535235,-0.761806,0.578968,-0.932994,-0.280057,0.315929,2.37429,0.277632,0.0891048,0.408506,0.248188,1.11272,6 +0.680444,-0.822195,-0.181733,-0.803245,2.06422,-0.0574621,-0.268691,0.814868,-0.0371185,-0.535235,-0.761806,0.578968,-0.932994,-0.280057,0.994036,0.957976,0.277632,0.0249759,0.408506,0.17917,1.11272,6 +0.680444,-0.822195,-0.181733,-0.46381,2.06422,-0.0574621,-0.268691,0.814868,-0.0371185,-0.535235,-0.744038,0.604638,-0.966823,-0.280057,0.654983,0.957976,0.277632,-0.039153,0.339381,0.213679,1.11272,6 +0.680444,-0.822195,-0.160304,-0.803245,2.06422,-0.0574621,-0.268691,0.814868,0.0761009,-0.535235,-0.601898,0.655978,-1.03448,-0.280057,0.654983,-0.458336,0.277632,-0.103282,0.339381,0.351716,1.11272,6 +0.680444,-0.822195,-0.181733,-0.803245,2.06422,-0.0574621,-0.268691,0.756704,-0.0371185,-0.535235,-0.761806,0.604638,-0.966823,-0.280057,0.994036,0.957976,0.277632,-0.039153,0.339381,0.282698,1.11272,6 +0.680444,-0.822195,-0.160304,-0.803245,2.06422,-0.0574621,-0.268691,0.756704,0.0761009,-0.535235,-0.619665,0.655978,-1.03448,-0.280057,1.33309,0.957976,0.277632,-0.103282,0.339381,0.351716,1.11272,6 +0.680444,-0.822195,-0.160304,-0.46381,2.06422,-0.0574621,-0.268691,0.756704,0.18932,-0.535235,-0.353152,0.88701,-1.03448,0.221498,1.33309,0.957976,0.277632,-0.616313,0.339381,0.248188,1.11272,6 +0.680444,-0.822195,-0.181733,-0.46381,2.06422,-0.0574621,-0.268691,0.756704,0.18932,-0.535235,-0.29985,0.88701,-1.03448,0.221498,1.33309,-0.458336,0.277632,-0.680442,0.270256,0.213679,1.11272,6 +0.680444,-0.822195,-0.181733,-0.46381,1.72641,-0.0574621,-0.268691,0.814868,0.0761009,-0.535235,0.322013,0.88701,-1.03448,0.221498,1.33309,-0.458336,0.277632,-0.616313,0.339381,0.14466,1.11272,6 +0.680444,-0.822195,-0.138875,-0.46381,2.06422,-0.0574621,-0.268691,0.756704,0.528978,-0.535235,0.037733,0.93835,-1.4066,-0.280057,0.994036,-0.458336,0.277632,-0.680442,0.201132,0.524263,1.11272,6 +0.680444,-0.822195,-0.117446,-0.803245,1.72641,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,0.108803,0.81,-1.4066,-0.558699,0.315929,-0.458336,0.277632,-0.8087,0.201132,0.524263,1.11272,6 +0.375592,-0.822195,-0.117446,-0.803245,1.3886,-0.0574621,-0.268691,0.698541,0.755417,-0.535235,0.286478,1.16938,-1.4066,0.221498,0.654983,0.957976,0.277632,-0.872829,0.201132,0.524263,1.11272,6 +0.375592,-0.822195,-0.117446,-0.803245,1.72641,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,0.073268,0.81,-1.4066,-0.558699,2.0112,0.957976,0.277632,-0.744571,0.201132,0.558773,1.11272,6 +0.375592,-0.30481,-0.096017,-0.46381,1.3886,-0.0574621,-0.268691,0.640377,0.642198,-0.535235,-0.0688721,1.16938,-1.4066,0.221498,1.67214,2.37429,0.277632,-0.295669,0.0628821,0.662301,1.11272,5 +0.375592,-0.30481,-0.117446,1.91224,1.72641,-0.0574621,-0.268691,0.640377,0.528978,-0.535235,-0.477525,1.16938,-1.4066,0.221498,0.994036,0.957976,0.0944967,-0.295669,0.0628821,0.455245,1.11272,5 +0.375592,-0.30481,-0.117446,0.893932,1.3886,-0.0574621,-0.268691,0.640377,0.642198,-0.535235,-0.761806,0.989691,-1.4066,-0.168601,1.33309,2.37429,0.0944967,-0.167411,0.132007,0.317207,1.11272,5 +0.375592,-0.30481,-0.160304,0.893932,1.3886,-0.0574621,-0.268691,0.640377,0.528978,-0.535235,-0.406455,0.91268,-1.13597,0.110041,0.654983,-0.458336,0.0944967,-0.103282,0.201132,0.110151,1.11272,5 +0.375592,-0.822195,-0.181733,0.554496,0.712969,-0.0574621,-0.268691,0.698541,0.642198,-0.535235,-0.29985,0.81,-1.00065,0.110041,0.315929,0.957976,0.0944967,-0.103282,0.132007,-0.165924,1.11272,6 +0.375592,-0.822195,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,-0.317617,0.81,-1.00065,0.110041,0.315929,0.957976,0.0944967,-0.103282,0.132007,-0.200434,1.11272,6 +0.375592,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,-0.175477,0.81,-1.00065,0.110041,0.994036,0.957976,0.277632,-0.103282,0.132007,-0.0278867,1.11272,6 +0.375592,-0.822195,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,-0.282082,0.81,-1.00065,0.110041,1.33309,2.37429,0.277632,-0.039153,0.132007,-0.0969054,1.11272,6 +0.375592,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,0.640377,0.642198,-0.535235,-0.29985,0.81,-1.00065,0.110041,2.0112,2.37429,0.277632,-0.039153,0.201132,-0.165924,1.11272,6 +0.375592,-0.822195,-0.181733,0.554496,0.375155,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,-0.29985,0.81,-1.00065,0.110041,0.315929,2.37429,0.277632,-0.039153,0.132007,-0.165924,1.11272,6 +0.477209,1.76473,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,0.23323,-0.150338,-0.535235,-1.13492,0.707319,-0.696189,0.388683,1.67214,-0.458336,0.643904,0.666265,0.61588,-0.165924,1.11272,1 +0.477209,1.50604,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.23323,-0.0371185,-0.535235,-1.09939,0.707319,-0.696189,0.388683,1.33309,-0.458336,0.643904,0.666265,0.61588,-0.0969054,1.11272,1 +0.477209,1.50604,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.23323,-0.150338,-0.535235,-0.903946,0.707319,-0.696189,0.388683,1.67214,-0.458336,0.643904,0.666265,0.685005,-0.165924,1.11272,1 +0.477209,2.28212,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.175066,-0.150338,-0.535235,-1.20599,0.707319,-0.696189,0.388683,0.994036,-0.458336,0.643904,0.730394,0.685005,-0.269452,1.11272,1 +0.477209,2.02342,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.175066,-0.150338,-0.535235,-1.17046,0.707319,-0.696189,0.388683,0.994036,-0.458336,0.643904,0.730394,0.685005,-0.234943,1.11272,1 +0.477209,2.28212,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,0.23323,-0.150338,-0.535235,-1.17046,0.707319,-0.696189,0.388683,1.33309,-0.458336,0.643904,0.794523,0.75413,-0.234943,1.11272,1 +0.477209,2.54081,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.23323,-0.150338,-0.535235,-1.15269,0.707319,-0.696189,0.388683,0.994036,-0.458336,0.643904,0.794523,0.75413,-0.234943,1.11272,1 +0.477209,2.7995,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.263557,-0.535235,-1.08162,-0.550521,0.961445,0.388683,-0.362178,-0.458336,0.643904,0.858651,0.75413,-0.441999,-0.524402,1 +0.477209,2.7995,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.34813,-0.550521,0.961445,0.388683,-0.701232,-0.458336,0.582859,0.92278,0.75413,-0.476509,-0.524402,1 +0.477209,3.31689,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.43697,-0.550521,0.961445,0.388683,-0.362178,-0.458336,0.582859,0.92278,0.823255,-0.441999,-0.524402,1 +0.477209,3.57558,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.4192,-0.550521,0.961445,0.388683,-0.0231245,-0.458336,0.582859,0.92278,0.823255,-0.476509,-0.524402,1 +0.477209,3.0582,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.11716,-0.550521,0.961445,0.388683,-0.701232,-0.458336,0.582859,0.858651,0.75413,-0.476509,-0.524402,1 +0.477209,2.7995,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.06385,-0.550521,0.961445,0.388683,-0.362178,-0.458336,0.582859,0.858651,0.75413,-0.476509,-0.524402,1 +0.477209,3.31689,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.376776,-0.535235,-1.02832,-0.165468,0.454006,0.388683,-0.701232,3.7906,0.582859,0.858651,0.75413,-0.40749,-0.524402,1 +0.477209,2.7995,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.23323,-0.376776,-0.535235,-0.975016,-0.165468,0.454006,0.388683,-0.362178,0.957976,0.582859,0.858651,0.75413,-0.441999,-0.524402,1 +0.477209,2.54081,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.175066,-0.263557,-0.535235,-0.939481,0.424947,-0.324067,0.388683,-0.0231245,0.957976,0.582859,0.794523,0.685005,-0.303962,1.11272,1 +0.477209,2.7995,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.175066,-0.0371185,-0.535235,-1.11716,0.424947,-0.324067,0.388683,0.315929,0.957976,0.582859,0.730394,0.685005,-0.269452,1.11272,1 +0.477209,3.0582,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.376776,-0.535235,-1.06385,0.0398938,0.183372,0.388683,0.315929,0.957976,0.582859,0.794523,0.685005,-0.40749,1.11272,1 +0.477209,1.24735,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,0.116902,0.30254,-0.535235,-0.619665,0.553298,-0.459384,0.444411,-0.0231245,0.957976,0.277632,0.473878,0.477631,0.0756414,1.11272,5 +0.477209,0.988654,-0.203162,-0.803245,0.712969,-0.0574621,-0.268691,0.116902,0.30254,-0.535235,-0.388688,0.553298,-0.459384,0.444411,0.315929,0.957976,0.277632,0.409749,0.477631,0.14466,1.11272,5 +0.477209,0.729961,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.116902,0.30254,-0.535235,-0.44199,0.553298,-0.459384,0.444411,0.315929,-0.458336,0.277632,0.34562,0.408506,0.110151,1.11272,5 +0.477209,0.729961,-0.160304,-0.803245,1.05078,-0.0574621,-0.268691,0.175066,0.415759,-0.535235,-0.459758,0.81,-0.797677,0.444411,0.654983,-0.458336,0.277632,0.281491,0.408506,0.248188,1.11272,5 +0.477209,0.212576,-0.160304,-0.124374,1.3886,-0.0574621,-0.268691,0.175066,0.642198,-0.535235,-0.459758,0.81,-0.797677,0.444411,1.33309,-0.458336,0.277632,0.153234,0.270256,0.455245,1.11272,5 +0.477209,-0.0461169,-0.160304,0.554496,1.72641,-0.0574621,-0.268691,0.175066,1.09507,-0.535235,-0.637433,0.81,-0.797677,0.444411,0.994036,-0.458336,0.0334514,0.0249759,0.132007,0.248188,1.11272,5 +0.477209,-0.0461169,-0.160304,0.893932,2.06422,-0.0574621,-0.268691,0.23323,1.09507,-0.535235,-0.6552,1.0667,-1.13597,0.444411,0.654983,-0.458336,0.0334514,-0.23154,0.0628821,0.765829,1.11272,5 +0.477209,-0.30481,-0.160304,-0.124374,2.40204,-0.0574621,-0.268691,0.23323,1.32151,-0.535235,-0.530828,1.0667,-1.13597,0.444411,-0.0231245,-0.458336,0.0334514,-0.359797,-0.00624269,0.938376,1.11272,5 +0.477209,-0.30481,-0.160304,-0.124374,2.06422,-0.0574621,-0.268691,0.23323,1.20829,-0.535235,-0.424223,0.81,-0.797677,0.444411,1.67214,0.957976,-0.149684,-0.167411,-0.00624269,0.455245,1.11272,5 +0.477209,-0.0461169,-0.138875,0.215061,2.40204,-0.0574621,-0.268691,0.175066,1.20829,-0.535235,-0.388688,0.81,-0.797677,0.444411,0.654983,-0.458336,0.0334514,-0.167411,-0.00624269,0.386226,1.11272,5 +0.477209,-0.563502,-0.138875,0.554496,2.73985,-0.0574621,-0.268691,0.291394,1.43473,-0.535235,-1.02832,0.86134,-1.13597,-0.00141549,-0.0231245,-0.458336,-0.149684,-0.680442,-0.213617,1.00739,1.11272,5 +0.477209,-0.822195,-0.160304,1.5728,4.09111,-0.0574621,3.12144,0.756704,1.43473,-0.535235,-1.45474,0.91268,-1.30512,-0.168601,1.33309,2.37429,-1.2485,-2.28366,-1.45786,2.11169,-0.524402,7 +0.477209,-0.822195,-0.160304,1.5728,3.07767,-0.0574621,3.12144,0.582213,1.43473,-0.535235,-1.33037,0.91268,-1.30512,-0.168601,0.654983,0.957976,-0.149684,-1.77063,-1.11224,3.52658,1.11272,7 +0.477209,-0.822195,-0.203162,1.5728,3.7533,-0.0574621,-0.268691,0.582213,1.32151,-0.535235,-1.33037,0.91268,-1.30512,-0.168601,0.654983,0.957976,-0.149684,-1.64238,-1.04311,3.2505,1.11272,7 +0.477209,-0.822195,-0.160304,1.91224,3.41548,-0.0574621,3.12144,0.640377,1.32151,-0.535235,-1.24153,0.91268,-1.30512,-0.168601,1.33309,0.957976,-1.2485,-2.02715,-1.31961,1.97366,-0.524402,7 +0.578827,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.716435,-0.426521,0.588526,-0.49918,0.623152,-0.0571439,-0.362178,-0.458336,0.765994,0.794523,0.823255,-0.511018,1.11272,1 +0.578827,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,-0.0155696,-0.242478,0.454006,0.221498,-0.362178,-0.458336,0.94913,1.11517,1.09975,-0.545527,1.11272,1 +0.578827,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,0.0555005,-0.370829,0.623152,0.221498,-0.701232,-0.458336,0.94913,1.11517,1.09975,-0.545527,1.11272,1 +0.782061,0.729961,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,-0.0155696,-0.807222,1.29974,0.388683,-1.37934,-0.458336,0.94913,1.1793,1.16888,-0.545527,-0.524402,1 +0.782061,0.471268,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,-0.0688721,-0.858563,1.26591,0.221498,-1.37934,-0.458336,0.94913,1.1793,1.09975,-0.580037,-0.524402,1 +0.782061,0.212576,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,-0.0511046,-0.191138,0.487835,0.388683,-0.362178,0.957976,0.94913,1.1793,1.16888,-0.511018,1.11272,1 +0.782061,0.212576,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.480878,0.0555005,-0.268148,0.589323,0.388683,-0.362178,0.957976,0.94913,1.24342,1.238,-0.511018,1.11272,1 +0.782061,0.471268,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.372164,0.250943,-0.191138,0.487835,0.388683,-0.362178,0.957976,1.13227,1.24342,1.30713,-0.476509,1.11272,1 +0.782061,0.471268,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.480878,0.162106,-0.191138,0.487835,0.388683,-0.362178,0.957976,1.37645,1.24342,1.30713,-0.338471,1.11272,1 +0.782061,0.212576,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.582213,-0.716435,-0.480878,0.0555005,0.116904,0.081884,0.388683,-0.362178,-0.458336,1.37645,1.11517,1.238,-0.165924,1.11272,1 +0.782061,0.471268,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.582213,-0.716435,-0.480878,-0.0155696,-0.0371167,0.28486,0.388683,-0.0231245,-0.458336,1.37645,1.11517,1.238,-0.200434,1.11272,1 +0.578827,0.988654,-0.160304,2.25167,1.72641,-0.0574621,-0.268691,0.465885,0.0761009,-0.535235,-0.815108,0.0142237,0.0480547,0.110041,0.315929,-0.458336,1.43749,0.34562,0.61588,1.83562,1.11272,5 +0.578827,0.729961,-0.160304,1.91224,1.3886,-0.0574621,-0.268691,0.407721,0.30254,-0.535235,-1.06385,0.655978,-0.594701,0.444411,-0.0231245,0.957976,1.43749,0.281491,0.477631,2.04268,1.11272,5 +0.578827,1.50604,-0.181733,1.5728,1.05078,-0.0574621,-0.268691,0.291394,0.18932,-0.317807,0.357548,0.655978,-0.594701,0.444411,0.315929,-0.458336,1.25436,0.34562,0.477631,1.31798,1.11272,5 +0.578827,1.50604,-0.181733,1.5728,1.3886,-0.0574621,-0.268691,0.349558,0.30254,-0.209093,-0.211012,0.655978,-0.594701,0.444411,-0.0231245,-0.458336,1.25436,0.34562,0.546756,1.45602,1.11272,5 +0.578827,2.02342,-0.160304,1.91224,2.06422,-0.0574621,-0.268691,0.23323,0.642198,-0.535235,-1.45474,0.655978,-0.594701,0.444411,0.315929,-0.458336,0.582859,0.0891048,0.201132,0.800338,1.11272,5 +0.578827,2.02342,-0.181733,1.23337,1.72641,-0.0574621,-0.268691,0.175066,0.18932,-0.535235,0.322013,0.732989,-0.594701,0.611597,0.654983,-0.458336,0.582859,0.217363,0.339381,0.627791,1.11272,5 +0.578827,1.50604,-0.181733,1.23337,1.3886,-0.0574621,-0.268691,0.175066,0.0761009,-0.535235,1.12155,0.81,-0.594701,0.778782,1.33309,-0.458336,1.49854,0.473878,0.61588,1.80111,1.11272,5 +0.578827,1.76473,-0.181733,1.23337,0.712969,-0.0574621,-0.268691,0.175066,0.0761009,-0.535235,1.21039,0.81,-0.594701,0.778782,2.0112,-0.458336,1.49854,0.602136,0.75413,1.31798,1.11272,5 +0.578827,2.54081,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.535235,0.926109,0.0142237,0.454006,0.778782,-0.0231245,-0.458336,1.49854,1.1793,1.37625,0.213679,1.11272,1 +-0.335729,0.729961,-0.203162,3.26998,3.41548,-0.0574621,-0.268691,0.582213,0.755417,-0.535235,-1.45474,1.40041,-1.33894,0.83451,-0.0231245,2.37429,-1.00432,-1.2576,-1.11224,2.59483,-0.524402,5 +-0.335729,-0.30481,-0.203162,3.26998,4.09111,-0.0574621,-0.268691,0.698541,0.868636,-0.535235,-1.45474,1.45175,-1.47426,0.723053,1.33309,2.37429,-1.00432,-2.15541,-1.59611,2.07718,-0.524402,7 +-0.335729,-0.30481,-0.203162,2.59111,3.7533,-0.0574621,-0.268691,0.814868,0.755417,-0.535235,-1.45474,1.45175,-1.47426,0.723053,0.315929,-0.458336,-1.00432,-2.34779,-1.59611,2.59483,-0.524402,7 +-0.335729,-0.563502,-0.203162,2.59111,3.7533,-0.0574621,-0.268691,0.873032,0.755417,-0.535235,-1.45474,1.45175,-1.47426,0.723053,0.994036,-0.458336,-4.72808,-2.54018,-1.80349,8.63397,-0.524402,7 +-0.335729,-0.563502,-0.181733,2.59111,2.73985,-0.0574621,1.42637,0.873032,0.981856,-0.535235,-1.45474,2.32454,-1.47426,2.61782,1.67214,-0.458336,-4.72808,-2.92495,-1.73436,7.97829,-0.524402,7 +-0.335729,-0.30481,-0.160304,1.5728,2.40204,-0.0574621,3.12144,0.931196,1.09507,-0.535235,-1.45474,2.32454,-1.47426,2.61782,0.315929,-0.458336,-4.72808,-2.98908,-1.73436,8.11632,-2.16152,7 +-0.335729,-0.30481,-0.160304,1.23337,2.06422,-0.0574621,3.12144,0.98936,1.20829,-0.535235,-1.45474,2.32454,-1.47426,2.61782,1.33309,-0.458336,-4.72808,-3.18147,-1.80349,7.73672,-2.16152,7 +-0.335729,-0.30481,-0.160304,1.23337,2.06422,-0.0574621,3.12144,0.98936,1.32151,-0.535235,-1.45474,2.32454,-1.47426,2.61782,0.994036,-0.458336,-4.72808,-3.30973,-1.66524,7.6677,-2.16152,7 +-0.335729,-0.822195,-0.160304,0.893932,1.72641,-0.0574621,3.12144,1.10569,1.20829,-0.535235,-1.45474,2.32454,-1.47426,2.61782,0.994036,-0.458336,-4.72808,-3.82276,-2.07999,5.90773,-2.16152,7 +0.680444,-0.0461169,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.98936,-0.150338,-0.535235,-0.406455,0.0912342,0.0480547,0.277226,0.654983,-0.458336,0.277632,0.153234,0.270256,-0.0278867,-0.524402,5 +0.680444,0.212576,-0.181733,0.893932,1.05078,-0.0574621,-0.268691,0.98936,-0.263557,-0.535235,-0.779573,0.065564,0.081884,0.277226,0.315929,-0.458336,0.521813,0.34562,0.408506,-0.0969054,-0.524402,5 +0.680444,0.212576,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,1.04752,-0.489996,-0.535235,-0.477525,0.065564,0.081884,0.277226,-0.0231245,-0.458336,0.460768,0.409749,0.477631,-0.200434,-0.524402,5 +0.680444,0.212576,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.98936,-0.376776,-0.535235,-0.44199,-0.0371167,0.081884,0.0543129,-0.0231245,-0.458336,0.460768,0.281491,0.408506,-0.0623961,1.11272,5 +0.680444,0.212576,-0.181733,1.23337,1.05078,-0.0574621,-0.268691,0.931196,-0.150338,-0.535235,-0.353152,-0.0114465,0.0480547,0.0543129,0.654983,-0.458336,0.582859,0.153234,0.339381,0.213679,1.11272,5 +0.680444,-0.0461169,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.931196,-0.150338,-0.535235,-0.51306,-0.0627869,-0.0196038,-0.168601,-0.0231245,-0.458336,0.338678,0.0891048,0.339381,0.00662268,1.11272,5 +0.680444,-0.30481,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.98936,-0.150338,-0.535235,-0.406455,-0.0627869,-0.0196038,-0.168601,-0.701232,-0.458336,0.338678,0.0249759,0.270256,0.00662268,1.11272,5 +0.680444,-0.30481,-0.181733,0.893932,1.05078,-0.0574621,-0.268691,0.98936,-0.150338,-0.535235,-0.29985,-0.114127,0.0480547,-0.168601,0.315929,-0.458336,0.338678,-0.039153,0.201132,0.0756414,1.11272,5 +0.680444,-0.30481,-0.181733,1.23337,0.712969,-0.0574621,-0.268691,0.931196,0.0761009,-0.535235,-0.282082,-0.0114465,-0.0196038,-0.0571439,0.994036,-0.458336,0.277632,-0.039153,0.201132,0.110151,1.11272,5 +0.680444,-0.0461169,-0.181733,0.893932,1.05078,-0.0574621,-0.268691,0.931196,0.18932,-0.535235,-0.175477,2.11918,-0.62853,3.5652,1.67214,-0.458336,0.277632,-0.936957,0.270256,0.110151,-0.524402,5 +0.680444,-0.30481,-0.138875,0.554496,1.3886,-0.0574621,-0.268691,0.873032,0.30254,-0.535235,0.162106,2.11918,-0.62853,3.5652,1.67214,-0.458336,0.277632,-1.06522,0.270256,0.0411321,-0.524402,5 +0.680444,-0.30481,-0.160304,-0.124374,1.05078,-0.0574621,-0.268691,0.931196,-0.0371185,-0.480878,0.162106,2.11918,-0.62853,3.5652,0.994036,-0.458336,0.277632,-0.872829,0.339381,-0.0623961,-0.524402,5 +0.680444,-0.563502,-0.160304,0.554496,1.3886,-0.0574621,-0.268691,0.931196,0.18932,-0.480878,0.233176,2.37588,-0.966823,3.5652,0.315929,0.957976,0.277632,-1.06522,0.201132,0.282698,-0.524402,6 +0.680444,-0.563502,-0.138875,0.215061,1.3886,-0.0574621,-0.268691,0.873032,0.18932,-0.480878,-0.122175,2.37588,-0.966823,3.5652,0.315929,0.957976,0.277632,-1.06522,0.270256,0.282698,-0.524402,6 +0.680444,-0.822195,-0.138875,0.215061,0.712969,-0.0574621,-0.268691,0.931196,-0.150338,-0.372164,-0.0155696,0.604638,-0.966823,-0.280057,-0.362178,2.37429,0.155542,-0.23154,0.0628821,0.317207,1.11272,6 +0.680444,-0.822195,-0.117446,0.215061,0.712969,-0.0574621,-0.268691,0.931196,-0.150338,-0.372164,-0.0155696,0.604638,-0.966823,-0.280057,-0.701232,2.37429,0.155542,-0.103282,0.132007,0.110151,1.11272,6 +0.680444,-0.822195,-0.0317302,0.554496,0.0373407,-0.0574621,4.81651,0.873032,1.20829,-0.426521,-1.40144,-0.370829,-0.290238,-1.28317,-0.362178,-0.458336,-0.393865,-0.744571,-0.559241,-0.269452,1.11272,7 +0.680444,-0.822195,-0.138875,0.215061,0.375155,-0.0574621,1.42637,0.931196,0.415759,-0.26345,-0.744038,0.322266,-0.966823,-0.893069,-0.0231245,0.957976,0.155542,-0.488055,-0.351867,0.455245,1.11272,6 +0.680444,-0.822195,-0.117446,1.23337,0.712969,-0.0574621,1.42637,0.98936,-0.0371185,-0.535235,-0.317617,-0.268148,-0.0872623,-0.725884,-0.0231245,-0.458336,0.0944967,-0.423926,-0.351867,0.0756414,1.11272,6 +-0.0308771,-0.563502,-0.181733,0.215061,1.05078,-0.0574621,-0.268691,0.582213,1.43473,-0.535235,-1.18823,0.270926,-0.357896,-0.00141549,0.654983,-0.458336,-0.33282,-0.616313,-0.420991,0.0756414,-0.524402,6 +-0.0308771,-0.822195,-0.181733,1.5728,1.05078,-0.0574621,-0.268691,0.640377,1.43473,-0.535235,-1.24153,-0.114127,-0.357896,-0.837341,-0.0231245,-0.458336,-0.149684,-0.744571,-0.420991,0.0756414,1.11272,6 +-0.0308771,-0.822195,-0.160304,0.893932,0.712969,-0.0574621,-0.268691,0.756704,0.981856,-0.535235,-1.2593,-0.139797,-0.357896,-0.893069,-1.04029,-0.458336,-0.149684,-0.680442,-0.420991,0.00662268,1.11272,6 +-0.0308771,-0.822195,-0.117446,0.554496,0.712969,-0.0574621,-0.268691,0.756704,1.32151,-0.535235,-1.45474,-0.139797,-0.357896,-0.893069,-0.701232,-0.458336,-0.393865,-0.8087,-0.559241,-0.165924,1.11272,6 +-0.0308771,-0.822195,-0.138875,1.5728,0.712969,-0.0574621,-0.268691,0.814868,1.32151,-0.535235,-1.43697,-0.216808,-0.256409,-0.893069,-0.701232,-0.458336,-0.271775,-0.744571,-0.559241,-0.165924,1.11272,6 +-0.0308771,-0.822195,-0.117446,1.23337,0.375155,-0.0574621,-0.268691,0.814868,1.77439,-0.535235,-1.43697,-0.550521,-0.0196038,-1.22744,-0.362178,-0.458336,-0.271775,-0.680442,-0.420991,-0.338471,1.11272,6 +-0.0308771,-0.822195,-0.138875,1.5728,0.375155,-0.0574621,-0.268691,0.931196,1.20829,-0.535235,-1.43697,-0.807222,0.318689,-1.22744,-0.701232,-0.458336,-0.271775,-0.616313,-0.490116,-0.37298,1.11272,6 +-0.0308771,-0.822195,-0.138875,1.5728,0.375155,-0.0574621,-0.268691,0.931196,1.09507,-0.535235,-1.3659,-0.884233,0.318689,-1.39462,-0.701232,-0.458336,-0.271775,-0.680442,-0.559241,-0.37298,1.11272,6 +-0.0308771,-0.822195,-0.138875,1.5728,0.375155,-0.0574621,-0.268691,0.931196,0.981856,-0.535235,-1.3659,-0.884233,0.318689,-1.39462,-1.04029,-0.458336,-0.271775,-0.680442,-0.559241,-0.37298,1.11272,6 +-0.0308771,-0.822195,-0.117446,1.23337,0.712969,-0.0574621,-0.268691,0.873032,0.981856,-0.535235,-1.3659,-0.576191,0.115713,-1.06025,-0.701232,-0.458336,-0.271775,-0.744571,-0.628366,-0.269452,1.11272,6 +-0.0308771,-0.822195,-0.138875,0.893932,0.375155,-0.0574621,-0.268691,0.873032,0.868636,-0.535235,-1.04609,0.0912342,-0.18875,-0.112872,-0.0231245,-0.458336,-0.271775,-0.680442,-0.559241,-0.234943,-0.524402,6 +-0.0308771,-0.822195,-0.117446,0.554496,0.712969,-0.0574621,-0.268691,0.873032,0.868636,-0.535235,-1.17046,0.707319,-1.00065,-0.112872,-0.701232,-0.458336,-0.271775,-0.8087,-0.628366,0.213679,-0.524402,6 +-0.0308771,-0.822195,-0.138875,0.215061,0.712969,-0.0574621,-0.268691,0.873032,0.755417,-0.535235,-1.17046,0.758659,-1.06831,-0.112872,-0.362178,-0.458336,-0.271775,-1.00109,-0.697491,0.869357,-0.524402,6 +-0.0308771,-0.822195,-0.117446,0.215061,0.712969,-0.0574621,-0.268691,0.873032,0.981856,-0.535235,-1.09939,0.83567,-1.06831,0.0543129,-0.362178,-0.458336,-0.515956,-1.12934,-0.697491,0.869357,-0.524402,6 +-0.0308771,-0.822195,-0.181733,0.554496,0.375155,-0.0574621,4.81651,0.756704,0.981856,-0.535235,-0.566363,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-2.28627,-1.96302,-2.07999,1.14543,-0.524402,7 +-0.0308771,-0.822195,-0.181733,0.554496,0.375155,-0.0574621,3.12144,0.873032,0.642198,-0.535235,-0.708503,0.88701,-1.13597,0.0543129,-0.0231245,-0.458336,-0.577001,-1.7065,-1.52699,1.80111,-0.524402,7 +-0.0308771,-0.822195,-0.181733,0.215061,0.375155,-0.0574621,3.12144,0.814868,1.09507,-0.535235,-0.566363,0.88701,-1.13597,0.0543129,-0.0231245,-0.458336,-0.577001,-2.02715,-1.52699,1.7666,-0.524402,7 +-0.0308771,-0.822195,-0.181733,0.215061,0.375155,-0.0574621,4.81651,0.756704,1.66117,-0.535235,-0.0155696,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-2.28627,-2.34779,-2.14911,0.903866,-0.524402,7 +-0.0308771,-0.822195,-0.181733,0.554496,0.0373407,-0.0574621,3.12144,0.756704,1.54795,-0.535235,0.00219796,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-1.12641,-2.21954,-1.80349,1.17994,-0.524402,7 +-0.0308771,-0.822195,-0.181733,0.554496,0.0373407,-0.0574621,3.12144,0.756704,1.66117,-0.535235,-0.0866397,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-1.12641,-2.21954,-1.87261,1.17994,-0.524402,7 +-0.0308771,-0.822195,-0.181733,0.554496,-0.300473,-0.0574621,3.12144,0.756704,2.00083,-0.535235,0.233176,0.88701,-1.13597,0.0543129,0.994036,-0.458336,-2.71359,-2.34779,-2.14911,1.31798,-0.524402,7 +-0.0308771,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,4.81651,0.756704,2.11405,-0.535235,-1.45474,0.88701,-1.13597,0.0543129,0.654983,-0.458336,-2.71359,-2.60431,-2.49474,0.800338,-0.524402,7 +-0.0308771,-0.822195,-0.203162,1.91224,0.0373407,-0.0574621,3.12144,0.756704,1.88761,-0.535235,-1.45474,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-0.760137,-2.41192,-2.28736,2.11169,-0.524402,7 +-0.0308771,-0.822195,-0.203162,2.59111,-0.300473,-0.0574621,3.12144,0.756704,1.88761,-0.535235,-1.45474,0.681649,-1.20363,-0.502971,-0.0231245,-0.458336,-0.760137,-2.47605,-2.28736,2.07718,-0.524402,7 +-0.0308771,-0.822195,-0.203162,1.91224,0.375155,-0.0574621,1.42637,0.756704,2.22727,-0.535235,-1.45474,0.270926,-1.20363,-1.39462,-0.701232,-0.458336,-0.760137,-2.47605,-1.87261,1.93915,1.11272,7 +-0.0308771,-0.822195,-0.203162,1.91224,0.375155,-0.0574621,3.12144,0.756704,1.88761,-0.535235,-1.45474,0.86134,-1.20363,-0.112872,0.315929,-0.458336,-0.760137,-2.54018,-2.42561,2.45679,-0.524402,7 +-0.0308771,-0.822195,-0.203162,1.91224,0.375155,-0.0574621,3.12144,0.814868,1.66117,-0.535235,-1.45474,0.88701,-1.23746,-0.112872,0.654983,-0.458336,-0.760137,-2.47605,-2.42561,2.62933,-0.524402,7 +-0.0308771,-0.563502,-0.203162,1.5728,0.712969,-0.0574621,3.12144,0.756704,1.66117,-0.535235,-1.45474,1.45175,-1.23746,1.11315,1.33309,-0.458336,-0.760137,-2.34779,-2.35649,2.62933,-0.524402,7 +-0.0308771,-0.563502,-0.203162,1.5728,0.375155,-0.0574621,4.81651,0.814868,1.43473,-0.535235,-1.45474,1.58011,-1.4066,1.11315,0.994036,-0.458336,-0.760137,-2.47605,-2.49474,3.07796,-0.524402,7 +-0.0308771,-0.822195,-0.203162,-0.124374,0.712969,-0.0574621,6.51157,0.931196,0.642198,-0.535235,-1.45474,0.86134,-1.06831,0.110041,0.315929,-0.458336,-3.69031,-2.66844,-3.18598,1.90464,-2.16152,7 +-0.0308771,-0.563502,-0.203162,1.5728,0.712969,-0.0574621,6.51157,0.931196,0.868636,-0.535235,-1.45474,1.60578,-1.4066,1.16888,-0.0231245,-0.458336,-0.760137,-2.60431,-2.84036,4.42382,-2.16152,7 +-0.0308771,-0.563502,-0.203162,1.23337,0.712969,-0.0574621,4.81651,0.873032,0.981856,-0.535235,-1.45474,1.60578,-1.4066,1.16888,0.315929,-0.458336,-0.760137,-2.21954,-2.07999,3.28501,-0.524402,7 +-0.0308771,-0.563502,-0.203162,1.91224,0.712969,-0.0574621,3.12144,0.814868,1.54795,-0.535235,-1.45474,1.58011,-1.4066,1.11315,0.315929,-0.458336,-0.760137,-2.47605,-1.94174,2.90541,-0.524402,7 +-0.0308771,-0.822195,-0.203162,1.91224,0.375155,-0.0574621,3.12144,0.814868,1.66117,-0.535235,-1.45474,0.707319,-1.23746,-0.502971,-0.0231245,-0.458336,-0.760137,-2.54018,-2.42561,2.62933,-0.524402,7 +0.477209,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,1.10378,-0.52485,1.33357,1.05742,-1.04029,-0.458336,0.888085,1.43581,1.16888,-0.0623961,-0.524402,3 +0.477209,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,1.97439,-0.627531,1.46888,1.05742,-0.362178,-0.458336,0.704949,1.6282,1.58363,0.282698,1.11272,3 +0.477209,2.02342,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.582213,-0.716435,-0.535235,-0.797341,-0.576191,1.40122,1.05742,-0.362178,-0.458336,0.888085,1.6282,1.58363,0.0756414,1.11272,3 +0.477209,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.582213,-0.603215,-0.535235,-0.779573,-0.49918,1.13059,0.778782,-0.362178,-0.458336,0.704949,0.986909,0.823255,-0.303962,-0.524402,1 +0.477209,1.50604,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.582213,-0.603215,-0.535235,-0.15771,-0.755882,1.13059,0.221498,-0.701232,-0.458336,0.643904,0.666265,0.685005,-0.441999,-0.524402,1 +0.477209,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.698541,-0.716435,-0.535235,0.0555005,-0.704542,1.06293,0.221498,-1.04029,-0.458336,0.643904,0.666265,0.61588,-0.441999,-0.524402,1 +0.477209,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.698541,-0.603215,-0.535235,-0.0333371,-0.704542,1.06293,0.221498,-0.701232,-0.458336,0.643904,0.538007,0.477631,-0.40749,-0.524402,1 +0.477209,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.698541,-0.603215,-0.535235,-0.0866397,-0.704542,1.06293,0.221498,-0.362178,-0.458336,0.643904,0.602136,0.546756,-0.441999,-0.524402,1 +0.477209,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.716435,-0.535235,-0.0866397,-0.704542,1.06293,0.221498,-1.04029,-0.458336,0.643904,0.666265,0.546756,-0.441999,-0.524402,1 +0.477209,0.729961,-0.160304,-0.46381,-0.638287,-0.0574621,-0.268691,0.756704,-0.603215,-0.535235,-0.139942,-0.704542,1.06293,0.221498,-1.04029,-0.458336,0.643904,0.602136,0.61588,-0.441999,-0.524402,1 +0.172357,2.28212,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.489996,-0.535235,-1.3659,-0.678871,1.0291,0.221498,-0.362178,-0.458336,0.643904,0.602136,0.61588,-0.441999,-0.524402,1 +0.172357,2.02342,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.489996,-0.535235,-1.38367,-0.678871,1.0291,0.221498,-0.362178,-0.458336,0.643904,0.602136,0.546756,-0.441999,-0.524402,1 +0.172357,2.28212,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,0.698541,-0.376776,-0.535235,-1.3659,-0.807222,1.0291,-0.0571439,-1.04029,-0.458336,0.643904,0.538007,0.546756,-0.441999,-0.524402,1 +0.172357,2.02342,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.489996,-0.535235,-1.3659,-0.807222,1.0291,-0.0571439,-1.04029,-0.458336,0.643904,0.538007,0.546756,-0.441999,-0.524402,1 +0.172357,1.50604,-0.160304,0.554496,-0.638287,-0.0574621,-0.268691,0.756704,-0.489996,-0.535235,-0.779573,-0.807222,1.0291,-0.0571439,-0.701232,-0.458336,0.643904,0.538007,0.546756,-0.441999,-0.524402,1 +0.172357,0.988654,-0.160304,0.554496,-0.638287,-0.0574621,-0.268691,0.756704,-0.376776,-0.535235,-0.530828,-0.781552,0.995274,-0.0571439,-1.37934,-0.458336,0.643904,0.473878,0.477631,-0.40749,-0.524402,1 +0.172357,0.988654,-0.160304,0.554496,-0.638287,-0.0574621,-0.268691,0.873032,-0.489996,-0.480878,0.00219796,-0.755882,0.859957,-0.224329,-1.04029,-0.458336,0.643904,0.473878,0.546756,-0.37298,-0.524402,1 +0.172357,0.729961,-0.160304,1.23337,-0.638287,-0.0574621,-0.268691,0.931196,-0.603215,-0.535235,0.233176,-0.781552,0.893786,-0.224329,-1.04029,-0.458336,0.582859,0.409749,0.477631,-0.441999,-0.524402,1 +0.172357,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.931196,-0.603215,-0.535235,0.304246,-0.755882,0.859957,-0.224329,-1.04029,-0.458336,0.582859,0.409749,0.339381,-0.40749,-0.524402,1 +0.172357,-0.0461169,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.98936,-0.716435,-0.535235,0.233176,-0.755882,0.859957,-0.224329,-0.701232,-0.458336,0.582859,0.409749,0.339381,-0.40749,-0.524402,1 +0.172357,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.98936,-0.829654,-0.535235,0.357548,-0.755882,0.859957,-0.224329,-0.362178,-0.458336,0.582859,0.409749,0.339381,-0.40749,-0.524402,1 +0.172357,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-0.829654,-0.535235,0.375316,-0.832893,0.859957,-0.391514,-0.0231245,-0.458336,0.582859,0.409749,0.339381,-0.441999,-0.524402,1 +0.172357,1.24735,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,0.814868,-0.603215,-0.535235,-0.264315,-0.576191,0.893786,0.221498,-0.701232,-0.458336,0.643904,0.538007,0.477631,-0.441999,-0.524402,1 +0.172357,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.640377,-0.603215,-0.535235,-0.122175,-0.52485,0.927615,0.388683,-0.362178,-0.458336,0.582859,0.730394,0.61588,-0.37298,-0.524402,1 +0.172357,0.988654,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.640377,-0.603215,-0.535235,-0.22878,-0.52485,0.927615,0.388683,-0.701232,-0.458336,0.643904,0.730394,0.61588,-0.37298,-0.524402,1 +0.172357,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.640377,-0.376776,-0.535235,-0.459758,-0.704542,0.927615,-0.00141549,-0.362178,-0.458336,0.582859,0.602136,0.546756,-0.441999,-0.524402,1 +0.172357,0.729961,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.640377,-0.263557,-0.535235,-0.690735,-0.44784,0.589323,-0.00141549,-0.362178,-0.458336,0.216587,0.538007,0.477631,-0.37298,-0.524402,1 +0.172357,0.729961,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.150338,-0.535235,-0.530828,-0.49918,0.589323,-0.112872,-0.701232,-0.458336,0.216587,0.409749,0.339381,-0.441999,-0.524402,1 +0.172357,1.24735,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.640377,-0.376776,-0.535235,-0.619665,-0.319489,0.656981,0.388683,-0.362178,-0.458336,0.216587,0.602136,0.546756,-0.303962,-0.524402,1 +-0.843816,-0.822195,-0.203162,0.893932,2.40204,-0.0574621,-0.268691,0.873032,0.30254,-0.535235,-1.18823,0.065564,-0.865335,-1.28317,0.994036,-0.458336,-0.515956,-1.12934,-0.904865,0.455245,1.11272,6 +-0.843816,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,0.873032,0.415759,-0.535235,-1.24153,0.065564,-0.865335,-1.28317,1.67214,-0.458336,-0.577001,-1.12934,-0.83574,0.351716,1.11272,6 +-0.843816,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,0.873032,0.0761009,-0.535235,-1.20599,0.065564,-0.865335,-1.28317,1.33309,-0.458336,-0.577001,-1.12934,-0.904865,0.386226,1.11272,6 +-0.843816,-0.822195,-0.203162,1.23337,2.40204,-0.0574621,-0.268691,0.873032,-0.0371185,-0.535235,-1.22376,-0.0114465,-0.865335,-1.45035,0.654983,-0.458336,-0.577001,-1.12934,-0.97399,0.213679,1.11272,6 +-0.843816,-0.822195,-0.181733,0.893932,1.72641,-0.0574621,-0.268691,0.873032,0.642198,-0.535235,-1.17046,-0.0114465,-0.865335,-1.45035,0.654983,-0.458336,-0.454911,-1.06522,-0.766615,0.213679,1.11272,6 +-0.843816,-0.822195,-0.181733,1.5728,2.40204,-0.0574621,-0.268691,0.931196,0.30254,-0.535235,-1.15269,-0.0114465,-0.865335,-1.45035,-0.0231245,-0.458336,-0.454911,-1.19347,-0.97399,0.455245,1.11272,6 +-0.843816,-0.822195,-0.181733,1.5728,2.06422,-0.0574621,-0.268691,0.873032,0.415759,-0.535235,-1.2593,0.0398938,-0.865335,-1.3389,0.315929,-0.458336,-0.454911,-1.19347,-0.904865,0.351716,1.11272,6 +-0.843816,-0.822195,-0.181733,1.23337,2.06422,-0.0574621,-0.268691,0.873032,0.415759,-0.535235,-1.22376,-0.0371167,-0.763847,-1.3389,1.33309,-0.458336,-0.454911,-1.12934,-0.904865,0.386226,1.11272,6 +-0.843816,-0.563502,-0.181733,1.23337,1.72641,-0.0574621,-0.268691,0.873032,0.30254,-0.535235,-0.601898,0.296596,-0.763847,-0.614428,0.315929,-0.458336,-0.454911,-1.06522,-0.904865,0.386226,-0.524402,6 +-0.843816,-0.822195,-0.181733,0.893932,1.72641,-0.0574621,-0.268691,0.814868,0.528978,-0.535235,-0.548595,0.065564,-0.66236,-0.948798,-0.0231245,-0.458336,-0.454911,-1.12934,-0.904865,0.248188,1.11272,6 +-0.843816,0.729961,-0.160304,1.5728,0.712969,-0.0574621,-0.268691,0.698541,0.868636,-0.535235,-0.0688721,0.501957,-0.66236,-0.00141549,1.33309,0.957976,-0.393865,-0.8087,-0.83574,0.282698,-0.524402,5 +-0.843816,0.471268,-0.160304,0.554496,1.3886,-0.0574621,-0.268691,0.756704,0.642198,-0.535235,-0.264315,0.501957,-0.66236,-0.00141549,0.654983,0.957976,-0.454911,-0.872829,-0.97399,0.248188,-0.524402,5 +-0.843816,0.471268,-0.160304,0.554496,2.40204,-0.0574621,-0.268691,0.756704,-0.0371185,-0.535235,-0.122175,0.655978,-0.865335,-0.00141549,0.654983,0.957976,-1.67582,-0.936957,-1.25049,0.524263,-0.524402,5 +-0.843816,0.212576,-0.181733,0.554496,2.40204,-0.0574621,-0.268691,0.814868,-0.150338,-0.535235,-0.22878,0.655978,-0.865335,-0.00141549,0.315929,0.957976,-1.67582,-1.06522,-1.31961,0.386226,-0.524402,5 +-0.843816,-0.30481,-0.160304,1.5728,2.40204,-0.0574621,-0.268691,0.931196,-0.150338,-0.535235,-1.3126,0.758659,-1.00065,-0.00141549,1.33309,0.957976,-1.43163,-1.32173,-1.45786,-0.131415,-0.524402,6 +-0.843816,-0.563502,-0.181733,1.23337,2.73985,-0.0574621,-0.268691,0.931196,-0.263557,-0.535235,-0.72627,0.758659,-1.00065,-0.00141549,0.315929,2.37429,-1.30954,-1.32173,-1.45786,-0.200434,-0.524402,6 +-0.843816,-0.822195,-0.181733,1.23337,3.07767,-0.0574621,-0.268691,1.04752,-0.263557,-0.535235,-0.477525,0.142575,-1.00065,-1.3389,0.315929,0.957976,-1.30954,-1.51412,-1.59611,-0.338471,1.11272,6 +-0.843816,-0.822195,-0.181733,1.23337,2.40204,-0.0574621,1.42637,1.04752,-0.376776,-0.535235,-0.530828,0.142575,-1.00065,-1.3389,-0.0231245,0.957976,-1.30954,-1.51412,-1.59611,-0.303962,-0.524402,6 +-0.843816,-0.822195,-0.181733,1.5728,2.06422,-0.0574621,1.42637,0.98936,-0.263557,-0.535235,-0.566363,0.296596,-1.00065,-1.00453,0.315929,2.37429,-1.30954,-1.57825,-1.59611,-0.303962,-0.524402,6 +-0.843816,-0.822195,-0.203162,1.5728,1.3886,-0.0574621,1.42637,1.04752,-0.376776,-0.535235,-0.459758,0.296596,-1.00065,-1.00453,0.654983,2.37429,-1.30954,-1.57825,-1.59611,-0.338471,-0.524402,6 +-0.843816,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,1.42637,1.04752,-0.376776,-0.535235,-0.424223,0.296596,-1.00065,-1.00453,0.994036,2.37429,-1.2485,-1.51412,-1.52699,-0.338471,-0.524402,6 +-0.843816,-0.822195,-0.203162,1.5728,1.3886,-0.0574621,1.42637,1.04752,-0.263557,-0.535235,-0.15771,0.296596,-1.00065,-1.00453,0.315929,0.957976,-1.30954,-1.51412,-1.52699,-0.338471,-0.524402,6 +-0.843816,-0.822195,-0.203162,1.5728,1.72641,-0.0574621,1.42637,1.04752,-0.0371185,-0.535235,-0.29985,0.296596,-1.00065,-1.00453,0.315929,0.957976,-1.30954,-1.51412,-1.52699,-0.37298,-0.524402,6 +-0.843816,-0.822195,-0.203162,1.91224,1.05078,-0.0574621,1.42637,1.04752,-0.150338,-0.535235,-0.335385,-0.0114465,-0.594701,-1.00453,-0.362178,-0.458336,-1.30954,-1.51412,-1.66524,-0.37298,-0.524402,6 +-0.843816,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,1.42637,1.04752,-0.0371185,-0.535235,-0.921713,0.168245,-0.527043,-0.502971,-0.0231245,-0.458336,-1.67582,-1.51412,-1.73436,-0.37298,-0.524402,6 +-0.843816,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,1.42637,0.98936,-0.0371185,-0.535235,-0.992783,0.168245,-0.527043,-0.502971,-0.0231245,-0.458336,-1.43163,-1.51412,-1.66524,-0.40749,-0.524402,6 +-0.843816,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,1.42637,0.98936,0.0761009,-0.535235,-0.975016,0.168245,-0.527043,-0.502971,-0.0231245,-0.458336,-1.85895,-1.51412,-1.73436,-0.269452,-0.524402,6 +-0.843816,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,0.98936,0.0761009,-0.535235,-1.02832,0.501957,-0.966823,-0.502971,0.654983,-0.458336,-1.61477,-1.51412,-1.66524,-0.37298,-0.524402,6 +-0.843816,-0.822195,-0.203162,0.893932,3.07767,-0.0574621,-0.268691,0.98936,-0.0371185,-0.535235,-1.11716,0.501957,-0.966823,-0.502971,0.315929,-0.458336,-1.61477,-1.51412,-1.73436,-0.40749,-0.524402,6 +-0.843816,-0.822195,-0.203162,1.23337,3.07767,-0.0574621,-0.268691,1.04752,-0.0371185,-0.535235,-1.15269,0.501957,-0.966823,-0.502971,0.315929,-0.458336,-1.61477,-1.51412,-1.73436,-0.40749,-0.524402,6 +-0.437346,-0.822195,-0.160304,0.215061,3.7533,-0.0574621,-0.268691,0.640377,3.35946,-0.535235,-1.45474,2.24753,-0.730018,3.67666,2.0112,0.957976,-1.61477,-2.98908,-0.83574,0.489754,-2.16152,6 +-0.437346,-0.822195,-0.160304,0.215061,3.7533,-0.0574621,-0.268691,0.640377,2.90658,-0.535235,-1.45474,2.24753,-0.730018,3.67666,2.0112,0.957976,-1.49268,-2.86082,-0.97399,0.317207,-2.16152,6 +-0.437346,-0.822195,-0.203162,0.554496,2.73985,-0.0574621,1.42637,1.04752,1.43473,-0.535235,-1.45474,0.784329,-1.47426,-0.725884,1.67214,2.37429,-1.98104,-2.7967,-1.73436,-0.200434,-0.524402,7 +-0.437346,-0.822195,-0.181733,0.554496,2.40204,-0.0574621,1.42637,1.04752,1.66117,-0.535235,-1.45474,0.784329,-1.47426,-0.725884,0.994036,2.37429,-1.98104,-2.98908,-1.80349,-0.200434,-0.524402,7 +-0.437346,-0.822195,-0.181733,0.554496,2.06422,-0.0574621,3.12144,1.04752,1.66117,-0.535235,-1.45474,0.784329,-1.47426,-0.725884,0.994036,2.37429,-1.98104,-3.11734,-1.80349,-0.200434,-0.524402,7 +-0.437346,-0.822195,-0.181733,0.215061,2.06422,-0.0574621,3.12144,1.04752,1.77439,-0.535235,-1.45474,0.784329,-1.47426,-0.725884,0.654983,2.37429,-1.98104,-3.2456,-1.87261,-0.234943,-0.524402,7 +-0.437346,-0.822195,-0.181733,0.893932,1.72641,-0.0574621,3.12144,1.04752,2.00083,-0.535235,-1.45474,2.81227,-1.47426,3.67666,2.0112,0.957976,-1.98104,-3.30973,-1.80349,-0.165924,-2.16152,7 +-0.437346,-0.822195,-0.181733,0.554496,1.3886,-0.0574621,4.81651,1.10569,1.77439,-0.535235,-1.45474,0.604638,-1.47426,-1.11598,1.33309,-0.458336,-1.98104,-3.18147,-2.01086,-0.269452,-0.524402,7 +-0.437346,-0.822195,-0.181733,0.554496,1.05078,-0.0574621,4.81651,1.10569,1.66117,-0.535235,-1.45474,0.604638,-1.47426,-1.11598,0.654983,-0.458336,-1.98104,-3.18147,-1.94174,-0.269452,-0.524402,7 +-0.437346,-0.822195,-0.181733,0.554496,1.3886,-0.0574621,3.12144,1.10569,2.11405,-0.535235,-1.45474,0.655978,-1.47426,-1.00453,1.33309,-0.458336,-1.98104,-3.37386,-2.07999,-0.303962,-0.524402,7 +-0.437346,-0.822195,-0.181733,0.893932,1.3886,-0.0574621,3.12144,1.16385,2.11405,-0.535235,-1.45474,0.245255,-0.932994,-1.00453,0.994036,-0.458336,-1.98104,-3.50211,-2.14911,-0.338471,-0.524402,7 +-0.437346,-0.822195,-0.181733,0.554496,1.05078,-0.0574621,3.12144,1.16385,2.22727,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.994036,-0.458336,-1.98104,-3.50211,-2.14911,-0.165924,-2.16152,7 +-0.538964,-0.822195,-0.181733,1.23337,1.05078,-0.0574621,3.12144,1.10569,1.77439,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.654983,0.957976,-2.10313,-3.2456,-1.94174,0.0411321,-2.16152,7 +-0.538964,-0.822195,-0.160304,0.893932,1.05078,-0.0574621,3.12144,1.04752,1.43473,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.654983,-0.458336,-2.10313,-2.73257,-1.66524,0.317207,-0.524402,7 +-0.538964,-0.822195,-0.160304,0.893932,1.05078,-0.0574621,3.12144,1.10569,1.54795,-0.535235,-1.45474,1.50309,-1.03448,1.55898,-0.0231245,-0.458336,-1.98104,-2.92495,-1.80349,0.0756414,-0.524402,7 +-0.538964,-0.822195,-0.160304,0.893932,1.3886,-0.0574621,3.12144,1.04752,1.32151,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.654983,-0.458336,-2.04209,-2.60431,-1.59611,0.317207,-0.524402,7 +-0.538964,-0.822195,-0.138875,0.893932,1.3886,-0.0574621,3.12144,1.04752,1.32151,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.315929,-0.458336,-1.43163,-2.41192,-1.52699,0.213679,-0.524402,7 +-0.538964,-0.822195,-0.117446,1.23337,2.06422,-0.0574621,-0.268691,0.98936,0.755417,-0.535235,-1.45474,0.758659,-0.763847,0.388683,-0.0231245,2.37429,-0.943273,-1.44999,-1.04311,0.0411321,-0.524402,6 +-0.538964,-0.822195,-0.0531591,0.893932,1.72641,-0.0574621,-0.268691,0.98936,0.981856,-0.535235,-1.45474,0.347936,-0.222579,0.388683,0.315929,0.957976,-0.515956,-1.06522,-0.904865,-0.200434,-0.524402,6 +-0.538964,-0.822195,-0.0531591,0.893932,1.72641,-0.0574621,-0.268691,1.04752,0.755417,-0.535235,-1.2593,0.347936,-0.222579,0.388683,-0.362178,0.957976,-0.515956,-1.00109,-0.766615,-0.200434,-0.524402,6 +-0.538964,-0.822195,-0.096017,1.23337,2.40204,-0.0574621,-0.268691,0.931196,1.20829,-0.535235,-1.2593,0.93835,-1.00065,0.388683,0.654983,-0.458336,-0.515956,-1.32173,-0.766615,-0.0278867,-0.524402,6 +-0.538964,-0.822195,-0.0745881,1.5728,2.40204,-0.0574621,-0.268691,0.931196,1.32151,-0.535235,-1.24153,0.93835,-1.00065,0.388683,-0.0231245,0.957976,-0.515956,-1.2576,-0.697491,-0.0623961,-0.524402,6 +-0.538964,-0.822195,-0.0745881,1.5728,2.73985,-0.0574621,-0.268691,0.931196,1.54795,-0.535235,-1.22376,0.655978,-1.00065,-0.224329,0.654983,0.957976,-0.515956,-1.51412,-0.697491,0.0756414,-0.524402,6 +-0.538964,-0.822195,-0.0531591,1.23337,2.40204,-0.0574621,-0.268691,0.931196,1.88761,-0.535235,-1.18823,0.655978,-1.00065,-0.224329,0.315929,2.37429,-0.638046,-1.64238,-0.697491,0.17917,-0.524402,6 +-0.538964,-0.822195,-0.0317302,0.893932,2.73985,-0.0574621,-0.268691,0.931196,1.66117,-0.535235,-1.20599,0.655978,-1.00065,-0.224329,-0.362178,-0.458336,-0.638046,-1.32173,-0.628366,-0.0969054,-0.524402,6 +-0.538964,-0.822195,-0.203162,1.23337,2.73985,-0.0574621,-0.268691,0.931196,3.24624,-0.535235,-1.45474,0.501957,-0.932994,-0.447242,0.315929,-0.458336,-4.17867,-3.95102,-1.38874,3.76814,-0.524402,7 +-0.843816,0.471268,0.118272,0.893932,-0.638287,-0.0574621,-0.268691,1.10569,3.13302,-0.26345,-1.40144,-1.21795,0.995274,-1.00453,-1.37934,-0.458336,-0.271775,-0.552184,-0.282742,-0.614546,-0.524402,1 +-0.538964,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,1.33834,0.642198,0.334477,-0.72627,-1.29496,0.859957,-1.39462,-0.701232,-0.458336,-0.454911,-0.488055,-0.490116,-0.614546,-0.524402,2 +-0.640581,-0.0461169,0.16113,0.215061,-0.638287,-0.0574621,-0.268691,1.10569,3.24624,-0.26345,-1.40144,-1.21795,0.995274,-1.00453,-1.37934,-0.458336,-0.271775,-0.552184,-0.282742,-0.649055,-0.524402,1 +-0.640581,-0.0461169,-0.138875,0.893932,-0.638287,-0.0574621,-0.268691,1.04752,-0.150338,1.85647,-0.921713,-1.14093,0.893786,-1.00453,-0.701232,-0.458336,-0.699092,-0.552184,-0.697491,-0.614546,-2.16152,0 +-0.640581,-0.0461169,-0.138875,0.893932,-0.638287,-0.0574621,-0.268691,1.04752,-0.150338,1.96519,-0.921713,-1.14093,0.893786,-1.00453,-0.701232,-0.458336,-0.699092,-0.552184,-0.697491,-0.614546,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.04752,-0.716435,2.4544,-0.832876,-1.47465,0.893786,-1.72899,-1.04029,-0.458336,-0.699092,-0.552184,-0.766615,-0.649055,-0.524402,0 +-0.640581,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,0.873032,-0.716435,2.61747,-0.72627,-1.29496,0.893786,-1.3389,-1.04029,-0.458336,-0.699092,-0.616313,-0.83574,-0.649055,-2.16152,0 +-0.640581,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,0.931196,-0.716435,2.67183,-0.744038,-1.29496,0.893786,-1.3389,-0.701232,-0.458336,-0.699092,-0.616313,-0.766615,-0.649055,-2.16152,0 +-0.640581,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,0.873032,-0.716435,2.94362,-0.72627,-1.29496,0.893786,-1.3389,-1.04029,-0.458336,-0.821182,-0.616313,-0.83574,-0.614546,-2.16152,0 +-0.640581,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,0.756704,-0.716435,2.72619,-0.72627,-1.29496,0.893786,-1.3389,-0.701232,-0.458336,-0.943273,-0.680442,-0.904865,-0.614546,-2.16152,0 +-0.640581,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,0.756704,-0.829654,2.78054,-0.708503,-1.29496,0.893786,-1.3389,-0.701232,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,3.43283,-0.744038,-1.50032,0.859957,-1.84045,-1.04029,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,3.32411,-0.744038,-1.50032,0.859957,-1.84045,-1.04029,-0.458336,-0.882227,-0.744571,-0.97399,-0.649055,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,3.10669,-0.690735,-1.50032,0.859957,-1.84045,-1.04029,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.33834,-1.05609,2.88926,-0.72627,-1.3463,0.859957,-1.50608,-0.701232,-0.458336,-0.882227,-0.616313,-0.83574,-0.614546,-0.524402,0 +-0.640581,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,1.39651,-0.489996,2.29133,-0.779573,-1.3463,0.859957,-1.50608,-0.701232,-0.458336,-0.515956,-0.616313,-0.697491,-0.614546,-0.524402,0 +-0.640581,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.10569,-0.603215,2.61747,-0.72627,-1.32063,0.893786,-1.39462,-1.04029,-0.458336,-0.882227,-0.616313,-0.766615,-0.614546,-2.16152,0 +-0.335729,1.50604,-0.138875,1.23337,-0.638287,-0.0574621,-0.268691,1.04752,0.415759,-0.535235,-1.22376,-0.653201,0.623152,-0.391514,-0.0231245,-0.458336,-0.0886391,0.0249759,-0.00624269,-0.545527,-0.524402,1 +-0.335729,1.50604,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.16385,-0.263557,-0.535235,-1.27706,-0.653201,0.623152,-0.391514,0.315929,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,-0.524402,1 +-0.335729,1.50604,-0.181733,-0.803245,-0.638287,-0.0574621,-0.268691,1.10569,-0.150338,-0.535235,-1.27706,-0.653201,0.623152,-0.391514,0.654983,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,-0.524402,1 +-0.335729,1.24735,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-0.489996,-0.535235,-1.24153,-0.653201,0.623152,-0.391514,-0.0231245,-0.458336,-0.0275938,0.153234,0.0628821,-0.545527,-0.524402,1 +-0.335729,0.988654,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-0.489996,-0.535235,-0.957248,-0.627531,0.623152,-0.335786,-0.0231245,-0.458336,-0.0275938,0.217363,0.0628821,-0.511018,-0.524402,1 +-0.335729,0.988654,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.28018,-0.716435,-0.26345,-0.708503,-0.627531,0.623152,-0.335786,-0.0231245,-0.458336,0.0944967,0.281491,0.132007,-0.545527,-0.524402,1 +-0.335729,0.988654,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.33834,-0.716435,-0.209093,-0.672968,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.34562,0.201132,-0.545527,-0.524402,1 +-0.335729,0.988654,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.39651,-0.716435,-0.26345,-0.779573,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.281491,0.132007,-0.545527,-0.524402,1 +-0.335729,1.24735,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.33834,-0.716435,-0.209093,-0.690735,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.34562,0.201132,-0.545527,-0.524402,1 +-0.335729,0.988654,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.39651,-0.716435,0.00833509,-0.744038,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.34562,0.201132,-0.545527,-0.524402,1 +-0.335729,0.471268,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.45467,-0.489996,-0.046022,-0.601898,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.281491,0.201132,-0.545527,-0.524402,1 +-0.335729,0.471268,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.45467,-0.489996,-0.100379,-0.672968,-1.01258,1.13059,-0.335786,-0.701232,-0.458336,0.0944967,0.281491,0.132007,-0.545527,-0.524402,1 +-0.335729,0.471268,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.51283,-0.829654,-0.046022,-0.566363,-0.986914,1.09676,-0.335786,-0.701232,-0.458336,0.0944967,0.34562,0.201132,-0.545527,-0.524402,1 +-0.335729,0.212576,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.62916,-0.829654,0.00833509,-0.495293,-0.986914,1.09676,-0.335786,-0.362178,-0.458336,0.0944967,0.281491,0.132007,-0.545527,-0.524402,1 +-0.335729,-0.0461169,-0.160304,-1.14268,-0.638287,-0.0574621,-0.268691,1.571,-0.0371185,-0.100379,-0.566363,-0.986914,1.09676,-0.335786,-0.362178,-0.458336,0.0944967,0.153234,0.132007,-0.545527,-0.524402,1 +-0.335729,-0.822195,-0.0317302,0.215061,-0.638287,-0.0574621,-0.268691,1.51283,1.77439,-0.535235,-1.06385,-1.11526,1.0291,-0.725884,-0.701232,-0.458336,-0.33282,-0.488055,-0.351867,-0.614546,-2.16152,0 +-0.335729,-0.822195,-0.0103012,0.554496,-0.638287,-0.0574621,-0.268691,1.45467,1.43473,-0.26345,-1.18823,-1.11526,1.0291,-0.725884,-1.04029,-0.458336,-0.454911,-0.488055,-0.490116,-0.614546,-2.16152,0 +-0.335729,-0.822195,-0.0103012,1.23337,-0.638287,-0.0574621,-0.268691,1.51283,0.868636,0.117049,-1.20599,-1.11526,1.0291,-0.725884,-0.701232,-0.458336,-0.577001,-0.488055,-0.559241,-0.614546,-2.16152,0 +-0.538964,-0.563502,-0.0745881,0.554496,-0.638287,-0.0574621,-0.268691,1.68733,0.415759,0.823691,-1.11716,-1.24362,1.0291,-1.00453,-0.701232,-0.458336,-0.577001,-0.488055,-0.559241,-0.614546,-2.16152,0 +-0.538964,-0.563502,-0.138875,0.554496,-0.638287,-0.0574621,-0.268691,1.80365,-0.150338,1.36726,-1.02832,-1.11526,1.0291,-0.725884,-0.701232,-0.458336,-0.577001,-0.488055,-0.559241,-0.614546,-2.16152,0 +-0.0308771,-0.822195,-0.138875,0.554496,-0.638287,-0.0574621,-0.268691,1.571,-0.0371185,0.986762,-0.761806,-1.01258,0.859957,-0.781613,0.994036,-0.458336,-0.0886391,-0.039153,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,1.80365,-1.16931,3.43283,-0.832876,-1.24362,1.29974,-0.558699,-0.701232,-0.458336,-0.0886391,0.0891048,-0.00624269,-0.649055,-2.16152,0 +-0.0308771,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,1.86182,-0.942873,3.26976,-0.903946,-1.55166,1.26591,-1.28317,-1.04029,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,-0.524402,0 +-0.0308771,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.80365,-0.603215,2.67183,-0.992783,-1.47465,1.26591,-1.11598,-1.04029,-0.458336,-0.0886391,-0.039153,-0.144492,-0.649055,-2.16152,0 +-0.0308771,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.80365,-0.603215,1.85647,-0.815108,-1.44898,1.23208,-1.11598,-1.04029,-0.458336,-0.0886391,-0.039153,-0.0753675,-0.649055,-0.524402,0 +-0.0308771,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.74549,-0.489996,1.3129,-0.672968,-1.37197,1.23208,-0.948798,-1.04029,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,-0.524402,0 +-0.0308771,-0.822195,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,1.68733,-0.603215,1.04112,-0.51306,-1.37197,1.23208,-0.948798,-1.04029,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,-0.524402,0 +-0.0308771,-0.822195,-0.181733,-0.46381,-0.638287,-0.0574621,-0.268691,1.74549,-0.603215,0.334477,-0.424223,-1.37197,1.23208,-0.948798,-1.04029,-0.458336,-0.149684,0.0249759,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,1.68733,-0.829654,0.117049,-0.246547,-1.37197,1.23208,-0.948798,-1.37934,-0.458336,-0.0886391,0.0891048,-0.00624269,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.62916,-1.05609,0.171406,-0.175477,-1.14093,1.19825,-0.502971,-1.04029,-0.458336,-0.0886391,0.153234,0.0628821,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.62916,-1.05609,0.28012,-0.264315,-1.14093,1.19825,-0.502971,-0.701232,-0.458336,-0.0886391,0.153234,0.0628821,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.62916,-0.829654,0.551906,-0.619665,-1.14093,1.19825,-0.502971,-0.701232,-0.458336,-0.0886391,0.0891048,-0.00624269,-0.649055,-2.16152,0 +-0.0308771,-0.822195,-0.117446,0.554496,-0.638287,-0.0574621,-0.268691,1.51283,0.30254,0.225763,-0.886178,-0.986914,0.995274,-0.502971,-0.362178,-0.458336,-0.0886391,-0.103282,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.0103012,0.215061,-0.638287,-0.0574621,-0.268691,1.45467,0.868636,0.0626921,-1.01055,-0.268148,-0.0872623,-0.725884,2.0112,-0.458336,-0.0886391,-0.167411,-0.144492,-0.614546,1.11272,0 +-0.0308771,-0.822195,0.0111277,0.215061,-0.638287,-0.0574621,-0.268691,1.33834,1.54795,-0.317807,-1.18823,-0.268148,-0.0872623,-0.725884,1.33309,0.957976,-0.21073,-0.295669,-0.213617,-0.614546,1.11272,0 +-0.0308771,-0.822195,-0.0103012,1.23337,-0.638287,-0.0574621,-0.268691,1.28018,1.88761,-0.480878,-1.24153,-0.345159,-0.0872623,-0.893069,1.33309,-0.458336,-0.21073,-0.423926,-0.282742,-0.580037,1.11272,0 +-0.0308771,-0.822195,-0.0745881,0.893932,-0.638287,-0.0574621,-0.268691,1.22202,1.88761,-0.480878,-1.22376,-0.345159,-0.0872623,-0.893069,1.33309,-0.458336,-0.271775,-0.359797,-0.282742,-0.580037,1.11272,0 +-0.0308771,-0.822195,-0.181733,1.23337,-0.638287,-0.0574621,-0.268691,1.33834,0.755417,-0.209093,-1.01055,-0.0627869,-0.0872623,-0.280057,0.994036,0.957976,-0.271775,-0.167411,-0.213617,-0.545527,-0.524402,0 +0.273975,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,1.80365,-1.05609,0.932405,-0.637433,-0.704542,0.623152,-0.502971,-0.0231245,-0.458336,0.0334514,0.153234,0.0628821,-0.649055,-0.524402,0 +0.273975,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,1.63905,-0.548595,-1.29496,1.19825,-0.837341,-0.701232,-0.458336,0.0334514,0.217363,0.0628821,-0.649055,-0.524402,0 +0.273975,-0.822195,-0.181733,1.23337,-0.638287,-0.0574621,-0.268691,1.80365,-1.05609,1.42162,-0.193245,-0.884233,0.656981,-0.837341,-0.362178,-0.458336,0.0944967,0.153234,0.0628821,-0.614546,1.11272,0 +0.273975,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,1.571,-0.376776,0.606263,-0.211012,-0.730212,0.454006,-0.837341,-0.701232,-0.458336,-0.0275938,0.0249759,-0.00624269,-0.614546,1.11272,0 +0.273975,-0.822195,-0.138875,1.23337,-0.300473,-0.0574621,-0.268691,1.16385,0.981856,-0.535235,-0.672968,-0.653201,0.217201,-1.06025,-0.362178,-0.458336,-0.271775,-0.23154,-0.144492,-0.580037,1.11272,0 +0.273975,-0.822195,-0.181733,1.23337,-0.300473,-0.0574621,-0.268691,1.16385,0.642198,-0.535235,-0.51306,-0.653201,0.217201,-1.06025,-0.701232,-0.458336,-0.149684,-0.167411,-0.144492,-0.580037,1.11272,0 +0.273975,-0.822195,-0.117446,1.23337,1.72641,-0.0574621,1.42637,0.98936,0.981856,-0.535235,-0.921713,0.373606,-0.899164,-0.670156,0.315929,-0.458336,-0.21073,-1.00109,-0.490116,0.903866,1.11272,6 +0.273975,-0.822195,-0.117446,1.5728,2.40204,-0.0574621,3.12144,0.931196,0.981856,-0.535235,-1.11716,0.399276,-0.899164,-0.614428,0.654983,-0.458336,-0.21073,-1.44999,-1.04311,1.80111,1.11272,6 +0.273975,-0.822195,-0.096017,0.554496,2.06422,-0.0574621,3.12144,0.931196,0.981856,-0.535235,-0.566363,0.373606,-0.899164,-0.670156,0.654983,-0.458336,-0.21073,-1.19347,-0.697491,1.17994,1.11272,6 +0.273975,-0.822195,-0.160304,1.23337,-0.638287,-0.0574621,-0.268691,1.16385,0.18932,0.0626921,-0.619665,-0.832893,0.72464,-0.614428,-0.0231245,-0.458336,0.155542,-0.103282,-0.00624269,-0.511018,-0.524402,0 +0.375592,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.97814,-1.05609,1.25855,-0.335385,-1.01258,0.927615,-0.670156,-0.701232,-0.458336,0.521813,0.538007,0.477631,-0.614546,1.11272,0 +0.680444,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,2.09447,-1.28253,2.0739,-0.495293,-1.29496,1.29974,-0.670156,-0.701232,-0.458336,0.460768,0.666265,0.546756,-0.649055,-0.524402,0 +0.680444,0.212576,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.91998,-1.28253,1.42162,-1.06385,-1.3463,1.57037,-0.335786,-1.04029,-0.458336,0.582859,0.858651,0.75413,-0.614546,-0.524402,1 +0.680444,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.86182,-1.16931,0.551906,0.0555005,-1.14093,1.0291,-0.781613,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.614546,1.11272,0 +0.680444,-0.822195,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,1.86182,-0.942873,0.878048,-0.211012,-1.26929,1.19825,-0.781613,-1.04029,-0.458336,0.460768,0.473878,0.477631,-0.580037,1.11272,0 +0.680444,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,1.86182,-0.829654,0.932405,-0.317617,-1.14093,1.0291,-0.781613,-1.04029,-0.458336,0.399723,0.409749,0.477631,-0.614546,1.11272,0 +0.680444,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,1.74549,-0.716435,0.388834,-0.388688,-1.01258,1.0291,-0.502971,-0.701232,-0.458336,0.460768,0.538007,0.477631,-0.580037,-0.524402,0 +0.680444,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,0.823691,-0.175477,-0.781552,1.46888,0.723053,-0.0231245,-0.458336,0.94913,0.986909,0.961504,-0.580037,-0.524402,4 +0.680444,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.80365,-1.05609,0.66062,-0.193245,-0.114127,0.318689,0.277226,0.654983,-0.458336,0.888085,0.858651,0.89238,-0.545527,1.11272,4 +0.680444,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.86182,-1.05609,0.551906,-0.37092,-0.0884571,0.318689,0.332955,0.315929,-0.458336,0.94913,0.858651,0.961504,-0.511018,1.11272,4 +0.680444,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.80365,-1.05609,0.932405,-0.211012,-0.114127,0.318689,0.277226,0.654983,-0.458336,0.888085,0.794523,0.89238,-0.511018,1.11272,4 +0.883679,-0.30481,-0.160304,1.23337,-0.638287,-0.0574621,-0.268691,1.571,-1.05609,1.42162,-0.566363,-0.730212,0.792298,-0.280057,-0.701232,0.957976,0.460768,0.538007,0.477631,-0.614546,-0.524402,0 diff --git a/data/cardiotocography-3clases.arff b/data/cardiotocography-3clases.arff new file mode 100755 index 0000000..bcfaa9a --- /dev/null +++ b/data/cardiotocography-3clases.arff @@ -0,0 +1,2150 @@ +@relation cardiotocography-3clases +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'clase' {0,1,2} +@data +-1.3519,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-0.942873,1.80212,-1.02832,-0.165468,-1.06831,-2.11909,-0.701232,-0.458336,-1.06536,0.153234,-1.18136,1.87013,1.11272,1 +-0.132494,0.729961,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-1.74434,0.868636,-0.535235,0.393083,1.52876,-0.865335,1.89335,0.654983,0.957976,0.216587,0.0891048,0.132007,-0.234943,-0.524402,0 +-0.0308771,-0.0461169,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-1.8025,0.868636,-0.535235,0.926109,1.52876,-0.865335,1.89335,0.315929,0.957976,0.216587,0.0249759,-0.00624269,-0.200434,-0.524402,0 +0.0707402,-0.0461169,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-1.8025,1.20829,-0.535235,2.63179,1.19505,-1.37277,0.332955,2.35025,-0.458336,-0.0275938,-0.039153,-0.0753675,-0.200434,1.11272,0 +-0.132494,0.988654,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.8025,1.20829,-0.535235,2.081,1.19505,-1.37277,0.332955,1.67214,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.269452,1.11272,0 +0.0707402,-0.563502,-0.203162,1.91224,2.40204,-0.0574621,3.12144,-1.22087,5.17097,-0.535235,-1.45474,2.04217,-1.47426,2.00481,0.315929,3.7906,-3.75135,-1.77063,-2.14911,5.21754,-0.524402,2 +0.0707402,-0.563502,-0.203162,2.93054,2.06422,-0.0574621,4.81651,-1.04637,5.62385,-0.535235,-1.45474,2.04217,-1.47426,2.00481,0.654983,3.7906,-4.05658,-1.77063,-2.21824,6.77046,-0.524402,2 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.09447,-0.942873,-0.209093,1.31699,-0.0627869,-1.06831,-1.89618,-1.37934,-0.458336,-0.943273,-0.8087,-1.04311,-0.545527,1.11272,2 +-1.14867,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,2.15264,-0.942873,-0.26345,0.961644,-0.0627869,-1.06831,-1.89618,-1.37934,-0.458336,-0.943273,-0.8087,-1.04311,-0.545527,1.11272,2 +-1.14867,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,2.26896,-1.16931,-0.209093,0.428619,-0.0627869,-1.06831,-1.89618,-1.04029,-0.458336,-0.943273,-0.8087,-1.04311,-0.614546,1.11272,2 +1.79823,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,0.98936,0.642198,-0.046022,3.4491,1.52876,-1.27129,1.22461,-0.701232,-0.458336,0.765994,0.858651,0.89238,-0.338471,1.11272,1 +1.69662,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,0.98936,0.755417,-0.100379,3.78668,1.52876,-1.27129,1.22461,0.315929,-0.458336,0.765994,0.858651,0.89238,-0.303962,1.11272,1 +-0.234112,0.471268,1.33972,1.23337,0.375155,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.837272,-0.114127,-0.18875,-0.558699,0.315929,-0.458336,-0.149684,-0.039153,-0.0753675,-0.40749,1.11272,0 +-0.234112,1.50604,4.55406,0.554496,0.0373407,-0.0574621,-0.268691,-1.10454,0.18932,-0.535235,-0.495293,0.424947,-0.763847,-0.335786,-0.701232,-0.458336,0.216587,0.153234,0.201132,-0.303962,1.11272,0 +-0.335729,0.729961,8.53985,-0.124374,1.05078,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-0.0511046,0.93835,-0.899164,0.555868,0.994036,-0.458336,0.338678,-0.616313,-0.213617,1.97366,-0.524402,0 +-0.335729,0.729961,7.93984,-0.124374,0.712969,-0.0574621,1.42637,-1.62801,1.09507,-0.535235,0.0910356,0.93835,-0.899164,0.555868,-0.362178,-0.458336,-0.21073,-0.488055,-0.351867,0.834848,-0.524402,0 +-0.335729,0.729961,9.247,0.215061,1.05078,-0.0574621,-0.268691,-1.33719,0.868636,-0.535235,0.481921,1.40041,-1.37277,0.778782,0.315929,-0.458336,0.338678,-0.423926,-0.00624269,1.7666,1.11272,0 +-0.234112,-0.30481,8.00413,-0.46381,1.05078,-0.0574621,3.12144,-1.68618,1.20829,-0.535235,1.01495,0.93835,-0.899164,0.555868,0.315929,-0.458336,-0.21073,-0.616313,-0.420991,0.903866,-0.524402,1 +-0.335729,-0.0461169,9.46129,0.554496,0.712969,-0.0574621,1.42637,-1.39536,0.642198,-0.535235,0.108803,0.732989,-1.1698,-0.335786,0.654983,-0.458336,-0.271775,-0.680442,-0.628366,0.593282,1.11272,0 +-0.335729,0.471268,9.84702,0.215061,0.712969,-0.0574621,1.42637,-1.04637,0.415759,-0.535235,-0.0688721,1.0667,-0.966823,0.723053,0.654983,0.957976,-0.271775,-0.359797,-0.351867,0.282698,-0.524402,0 +-0.437346,-0.822195,7.08268,-0.124374,0.0373407,-0.0574621,4.81651,-0.988211,0.868636,-0.535235,0.0555005,1.47742,-1.33894,1.0017,3.02836,-0.458336,-0.515956,-1.96302,-1.25049,4.11324,-0.524402,2 +-0.538964,0.471268,8.90414,-0.46381,0.375155,-0.0574621,3.12144,-1.22087,0.415759,-0.535235,-0.264315,1.81114,-1.23746,1.89335,1.67214,-0.458336,-0.515956,-0.616313,-0.420991,0.524263,-0.524402,0 +-0.538964,-0.822195,6.95411,-0.46381,0.375155,-0.0574621,4.81651,-0.755555,1.32151,-0.535235,-0.744038,1.91382,-1.33894,1.94908,2.35025,0.957976,-3.8124,-2.28366,-2.49474,4.45833,-2.16152,2 +-0.538964,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.91998,-0.942873,-0.535235,-0.246547,-1.39764,0.690811,-1.89618,-1.37934,-0.458336,-0.699092,-0.680442,-0.904865,-0.614546,1.11272,2 +-0.538964,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,2.26896,-1.16931,3.75897,-0.939481,-1.39764,0.690811,-1.89618,-1.37934,-0.458336,-0.577001,-0.552184,-0.628366,-0.649055,1.11272,2 +-0.945433,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.26896,-1.16931,3.37847,-0.744038,-1.50032,0.826128,-1.89618,-1.04029,-0.458336,-0.821182,-0.680442,-0.904865,-0.649055,-0.524402,2 +-0.945433,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.26896,-1.05609,0.225763,-0.601898,-1.19228,0.961445,-1.00453,-1.04029,-0.458336,-0.699092,-0.552184,-0.766615,-0.649055,-2.16152,2 +-0.945433,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.32713,-1.28253,3.32411,-0.850643,-1.55166,0.826128,-2.00764,-1.37934,-0.458336,-0.821182,-0.744571,-0.904865,-0.649055,-0.524402,2 +-0.132494,-0.822195,2.68975,-1.14268,2.06422,-0.0574621,1.42637,-1.04637,3.47268,-0.535235,0.410851,1.81114,-1.47426,1.50325,0.994036,0.957976,-0.271775,-1.00109,-0.628366,1.87013,-0.524402,1 +-0.132494,-0.822195,1.9183,-1.48212,3.41548,-0.0574621,-0.268691,-1.22087,5.28419,-0.535235,-0.566363,1.86248,-1.47426,1.61471,2.0112,-0.458336,-0.271775,-1.38586,-1.45786,2.42228,-0.524402,0 +-0.132494,-0.822195,2.11116,-0.803245,2.73985,-0.0574621,-0.268691,-1.22087,3.5859,-0.535235,0.766201,2.0165,-1.47426,1.94908,1.67214,-0.458336,-0.271775,-0.936957,-0.83574,1.28347,-0.524402,0 +-0.132494,-0.822195,2.19688,-0.124374,4.09111,-0.0574621,-0.268691,-1.45352,6.30316,-0.535235,-0.335385,2.0165,-1.47426,1.94908,2.0112,-0.458336,-0.882227,-1.44999,-1.59611,1.62856,-0.524402,0 +-0.132494,-0.822195,1.70401,-1.14268,2.73985,-0.0574621,-0.268691,-1.04637,1.77439,-0.535235,1.22816,1.88815,-1.47426,1.67044,2.35025,0.957976,-0.271775,-0.680442,-0.559241,0.558773,-0.524402,0 +-1.3519,1.24735,2.00402,-1.14268,-0.300473,-0.0574621,-0.268691,-1.10454,2.34049,-0.535235,2.40081,1.42608,-1.30512,0.945967,3.02836,-0.458336,-1.00432,-0.680442,-0.83574,0.213679,-0.524402,0 +-1.3519,1.50604,1.6183,-0.803245,0.0373407,-0.0574621,-0.268691,-1.10454,2.11405,-0.535235,0.748434,1.47742,-1.37277,0.945967,1.67214,0.957976,-0.515956,-0.616313,-0.766615,0.213679,-0.524402,0 +-1.3519,0.729961,2.13259,0.893932,-0.638287,-0.0574621,-0.268691,-1.1627,2.68015,-0.535235,2.845,1.88815,-1.44043,1.72616,2.35025,-0.458336,-0.760137,-0.680442,-0.83574,0.17917,-0.524402,0 +-1.85999,0.471268,1.48973,0.215061,0.375155,-0.0574621,-0.268691,-1.39536,2.34049,-0.535235,1.88556,1.52876,-1.4066,1.0017,1.67214,-0.458336,-1.12641,-1.19347,-1.38874,0.0756414,-0.524402,0 +-1.96161,0.471268,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.33719,2.11405,-0.535235,1.4236,1.63145,-1.4066,1.22461,1.33309,-0.458336,-1.2485,-1.2576,-1.45786,0.00662268,-0.524402,0 +-1.85999,0.729961,1.18972,-0.124374,-0.300473,-0.0574621,-0.268691,-1.45352,2.56693,-0.535235,2.0277,1.73413,-1.47426,1.33607,1.33309,-0.458336,-1.2485,-1.12934,-1.31961,0.0756414,-0.524402,0 +-1.85999,1.50604,0.97543,0.215061,-0.638287,-0.0574621,-0.268691,-1.1627,1.09507,-0.535235,0.748434,1.50309,-1.37277,1.0017,0.994036,-0.458336,-1.12641,-0.936957,-1.25049,-0.165924,-0.524402,0 +-1.96161,1.24735,1.03972,0.893932,-0.300473,-0.0574621,-0.268691,-1.10454,0.981856,-0.535235,0.712899,0.707319,-1.30512,-0.614428,0.994036,0.957976,-1.12641,-1.00109,-1.25049,-0.200434,-0.524402,0 +-1.96161,0.729961,0.803999,1.5728,-0.638287,-0.0574621,-0.268691,-1.1627,1.20829,-0.535235,0.943877,1.47742,-1.33894,1.0017,0.654983,-0.458336,-1.12641,-1.06522,-1.31961,-0.200434,-0.524402,0 +-1.75837,-0.30481,0.611138,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,0.30254,-0.480878,0.908342,0.578968,-1.30512,-0.893069,0.654983,-0.458336,-0.638046,-0.680442,-0.766615,-0.338471,1.11272,0 +-1.75837,0.212576,0.0539856,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,0.528978,-0.480878,0.570759,1.83681,-1.4066,1.67044,3.02836,0.957976,-0.760137,-0.8087,-0.904865,-0.338471,-0.524402,0 +-1.14867,-0.822195,0.182559,-0.46381,1.05078,-0.0574621,-0.268691,-1.45352,3.47268,-0.535235,1.24592,2.04217,-1.47426,2.00481,0.994036,-0.458336,-1.12641,-1.38586,-1.45786,0.17917,-0.524402,0 +-1.14867,-0.822195,0.225417,-0.46381,1.3886,-0.0574621,-0.268691,-1.51169,3.81234,-0.535235,1.33476,2.04217,-1.47426,2.00481,1.33309,-0.458336,-1.30954,-1.44999,-1.45786,0.14466,-0.524402,0 +-1.14867,-0.822195,-0.096017,1.23337,0.375155,-0.0574621,-0.268691,-1.74434,4.03878,-0.535235,2.47188,1.91382,-1.37277,1.89335,3.02836,-0.458336,-0.638046,-0.8087,-0.83574,0.213679,-0.524402,0 +-1.14867,-0.30481,-0.138875,0.554496,0.0373407,-0.0574621,-0.268691,-1.56985,4.152,-0.535235,2.29421,1.99083,-1.47426,1.89335,2.35025,-0.458336,-0.638046,-0.680442,-0.766615,0.317207,-0.524402,0 +-1.14867,-0.0461169,-0.0745881,0.554496,1.3886,-0.0574621,-0.268691,-1.45352,6.41638,-0.535235,1.49467,2.0165,-1.47426,1.94908,0.994036,-0.458336,-0.515956,-1.06522,-0.97399,1.93915,-0.524402,0 +2.50956,0.471268,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-1.1627,0.415759,-0.535235,1.19262,1.27206,-0.560872,1.83762,0.994036,-0.458336,1.9869,2.14123,2.20575,-0.165924,1.11272,0 +2.50956,0.471268,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,0.819504,-0.396499,1.63803,1.83762,-0.0231245,-0.458336,1.9869,2.33362,2.344,-0.338471,-0.524402,0 +2.30632,-0.822195,-0.203162,2.59111,2.06422,-0.0574621,-0.268691,-0.232081,3.13302,-0.535235,2.48965,2.04217,-1.47426,2.00481,0.994036,0.957976,0.82704,0.473878,0.961504,1.83562,1.11272,0 +2.30632,-0.822195,-0.203162,2.25167,2.06422,-0.0574621,1.42637,-0.755555,4.60487,-0.535235,-0.868411,2.04217,-1.47426,2.00481,1.33309,-0.458336,-1.2485,-0.23154,-0.144492,3.07796,-0.524402,1 +1.69662,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,0.814868,-0.942873,1.63905,-0.353152,-1.01258,1.23208,-0.168601,-0.701232,-0.458336,1.01018,1.11517,1.09975,-0.614546,1.11272,1 +1.49338,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.2154,-0.548595,-1.3463,1.43505,-0.558699,-0.362178,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,2 +1.595,-0.822195,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,0.582213,-0.150338,2.40005,0.819504,1.42608,-1.20363,1.11315,2.6893,0.957976,0.765994,0.858651,0.89238,-0.37298,1.11272,1 +1.595,-0.822195,-0.203162,-1.48212,-0.300473,-0.0574621,-0.268691,0.640377,-0.0371185,2.34569,0.890574,1.42608,-1.20363,1.11315,2.6893,0.957976,0.765994,0.858651,0.89238,-0.37298,1.11272,1 +1.29015,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,1.53033,-0.477525,-1.3463,1.84101,0.110041,-1.04029,-0.458336,1.01018,1.30755,1.238,-0.614546,-0.524402,0 +1.49338,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,1.04112,-0.317617,-1.29496,1.67186,-0.0571439,-1.04029,-0.458336,1.01018,1.1793,1.09975,-0.649055,-0.524402,0 +1.08691,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,-0.353152,0.758659,-0.527043,0.778782,0.315929,-0.458336,0.704949,1.11517,0.961504,-0.37298,1.11272,0 +1.29015,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,0.443191,-0.530828,-0.678871,1.3674,0.778782,0.315929,-0.458336,1.01018,1.24342,1.16888,-0.511018,-0.524402,0 +1.29015,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.606263,-0.530828,-1.08959,1.67186,0.388683,-0.701232,-0.458336,1.01018,1.1793,1.09975,-0.614546,-0.524402,0 +0.883679,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.606294,-1.14093,1.23208,-0.447242,-1.37934,-0.458336,0.582859,0.666265,0.61588,-0.580037,-0.524402,0 +0.273975,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.535224,1.04103,-0.66236,1.16888,2.35025,-0.458336,0.155542,0.34562,0.201132,-0.580037,-0.524402,0 +0.782061,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.926109,0.83567,-0.66236,0.723053,2.0112,-0.458336,0.277632,0.538007,0.408506,-0.511018,1.11272,0 +1.69662,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,1.47598,-0.44199,-1.3463,1.67186,-0.168601,-1.04029,-0.458336,0.94913,1.1793,1.09975,-0.649055,-0.524402,0 +0.477209,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.376776,0.551906,0.659596,0.732989,-0.425555,0.890238,1.67214,2.37429,1.49854,1.37168,1.44538,-0.37298,1.11272,0 +0.680444,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.150338,-0.535235,0.375316,-0.268148,0.859957,0.83451,-0.701232,-0.458336,1.13227,1.1793,1.16888,-0.476509,-0.524402,0 +0.680444,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.150338,-0.535235,0.375316,-0.268148,0.859957,0.83451,-0.701232,-0.458336,1.13227,1.1793,1.16888,-0.476509,-0.524402,0 +1.08691,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.480878,0.855039,-0.858563,1.29974,0.277226,-0.0231245,-0.458336,1.49854,1.49994,1.5145,-0.476509,1.11272,0 +1.08691,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.426521,0.588526,-1.03825,1.50271,0.221498,-0.362178,-0.458336,1.49854,1.43581,1.5145,-0.476509,1.11272,0 +0.680444,1.76473,-0.0745881,-0.46381,-0.638287,-0.0574621,-0.268691,0.291394,0.30254,-0.535235,1.4236,0.86134,-0.865335,0.444411,-1.37934,-0.458336,0.399723,0.794523,0.61588,-0.165924,1.11272,0 +0.680444,1.24735,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,0.18932,-0.535235,0.837272,0.86134,-0.865335,0.444411,-0.701232,-0.458336,0.521813,0.794523,0.61588,-0.234943,1.11272,0 +0.680444,1.24735,-0.117446,-0.124374,-0.638287,-0.0574621,-0.268691,0.291394,0.642198,-0.535235,1.69011,0.964021,-0.865335,0.667325,-0.701232,-0.458336,0.399723,0.794523,0.61588,-0.0278867,1.11272,0 +0.680444,0.729961,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,0.524049,0.18932,-0.480878,1.22816,0.964021,-0.865335,0.667325,-0.362178,-0.458336,1.13227,0.986909,1.03063,-0.131415,1.11272,0 +2.10309,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.04752,-0.489996,-0.535235,0.926109,0.553298,-0.66236,0.110041,-0.701232,-0.458336,1.13227,1.49994,1.44538,-0.580037,1.11272,1 +1.69662,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-0.489996,-0.372164,0.0910356,-1.08959,1.50271,0.110041,-1.37934,-0.458336,0.888085,1.1793,1.16888,-0.545527,-0.524402,1 +1.18853,0.988654,-0.0103012,-0.803245,-0.638287,-0.0574621,-0.268691,-0.639228,0.0761009,-0.535235,0.961644,1.24639,-1.23746,0.667325,-0.362178,0.957976,0.643904,0.986909,0.823255,-0.234943,1.11272,0 +1.18853,-0.0461169,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,-0.755555,0.415759,-0.535235,2.50742,1.19505,-1.23746,0.555868,0.654983,0.957976,0.765994,0.794523,0.823255,-0.269452,1.11272,0 +1.18853,0.471268,0.0111277,0.215061,-0.638287,-0.0574621,-0.268691,-0.697392,0.642198,-0.535235,2.32974,1.78547,-1.27129,1.78189,0.315929,-0.458336,0.643904,0.986909,0.89238,-0.234943,1.11272,0 +1.18853,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,-0.755555,0.415759,-0.535235,3.14705,0.989691,-1.23746,0.110041,0.315929,0.957976,0.765994,0.794523,0.823255,-0.303962,1.11272,0 +1.18853,-0.30481,-0.0317302,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,0.0761009,-0.535235,1.81449,1.78547,-1.27129,1.78189,1.67214,0.957976,0.643904,0.858651,0.75413,-0.40749,-0.524402,0 +1.18853,-0.822195,-0.0531591,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,-0.150338,-0.535235,1.35253,1.68279,-1.13597,1.78189,1.33309,0.957976,0.460768,0.858651,0.75413,-0.441999,-0.524402,0 +1.18853,3.0582,-0.0317302,-0.803245,-0.638287,-0.0574621,-0.268691,-0.232081,0.18932,-0.535235,-1.45474,0.989691,-1.03448,0.444411,0.315929,-0.458336,1.13227,1.37168,1.37625,-0.269452,1.11272,0 +1.18853,2.54081,0.396849,-1.14268,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.535235,0.570759,1.40041,-1.06831,1.28034,-0.0231245,-0.458336,1.80376,1.88471,1.92925,-0.269452,1.11272,0 +1.18853,2.7995,0.353991,-1.14268,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.535235,-1.24153,1.09237,-0.696189,1.22461,-0.0231245,-0.458336,1.68167,1.82058,1.86013,-0.269452,1.11272,0 +1.18853,1.24735,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,0.528978,-0.535235,2.70286,1.19505,-1.47426,0.16577,-0.0231245,-0.458336,1.01018,1.05104,1.09975,-0.0969054,1.11272,0 +0.578827,-0.822195,2.08974,-1.48212,0.0373407,-0.0574621,-0.268691,-0.5229,0.18932,-0.535235,0.908342,1.63145,-1.37277,1.28034,0.315929,-0.458336,-0.271775,0.0891048,-0.00624269,-0.441999,-0.524402,0 +0.578827,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,0.873032,-0.716435,0.932405,0.588526,1.04103,-0.696189,1.11315,-0.0231245,-0.458336,0.643904,0.794523,0.685005,-0.580037,1.11272,0 +0.578827,-0.30481,-0.138875,-1.48212,0.375155,-0.0574621,-0.268691,0.23323,0.981856,-0.535235,-0.193245,1.99083,-1.4066,2.00481,2.6893,5.20691,0.582859,0.153234,0.477631,1.24896,-0.524402,1 +0.578827,-0.30481,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,1.04112,-0.29985,-1.08959,1.40122,-0.0571439,-1.04029,-0.458336,1.43749,1.11517,1.30713,-0.200434,1.11272,1 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,3.10669,-0.58413,-1.42331,1.53654,-0.558699,-0.0231245,-0.458336,0.765994,0.92278,0.89238,-0.649055,1.11272,1 +1.49338,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.16104,-0.51306,-1.37197,1.43505,-0.614428,-0.701232,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,1 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,3.54154,-0.6552,-1.16661,1.16442,-0.614428,-0.362178,-0.458336,0.765994,0.92278,0.89238,-0.649055,1.11272,2 +1.49338,-0.822195,-0.096017,-0.803245,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,3.48719,-0.637433,-1.39764,1.43505,-0.670156,-1.37934,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,2 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.154736,0.233176,-1.26929,1.40122,-0.447242,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.614546,1.11272,0 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,1.09548,0.108803,-0.909903,0.927615,-0.447242,-0.362178,0.957976,0.765994,0.92278,0.89238,-0.614546,1.11272,1 +1.49338,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,0.756704,-0.942873,2.12826,-0.601898,0.322266,-0.527043,-0.168601,-0.362178,-0.458336,1.01018,1.11517,1.09975,-0.614546,1.11272,1 +1.49338,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,0.814868,-0.942873,1.58469,-0.335385,-1.01258,1.23208,-0.168601,-0.701232,-0.458336,1.01018,1.11517,1.09975,-0.614546,1.11272,1 +-0.843816,1.76473,-0.0531591,-0.803245,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,-0.246547,0.655978,0.25103,1.83762,1.33309,0.957976,-0.271775,-0.23154,-0.351867,-0.476509,-2.16152,0 +-0.843816,0.471268,-0.203162,-0.803245,0.375155,-0.0574621,-0.268691,-1.27903,0.415759,-0.209093,0.606294,0.578968,-0.730018,0.0543129,-0.362178,-0.458336,-0.271775,-0.423926,-0.420991,-0.303962,-0.524402,0 +-0.843816,0.471268,-0.0317302,-0.803245,-0.300473,-0.0574621,-0.268691,-1.33719,0.30254,-0.535235,1.13932,-0.396499,0.115713,-0.670156,0.654983,2.37429,-0.393865,-0.295669,-0.420991,-0.441999,-0.524402,0 +-0.843816,1.24735,0.0754146,-0.803245,-0.638287,-0.0574621,-0.268691,-1.33719,0.30254,-0.535235,1.61904,0.347936,-0.865335,-0.670156,-0.0231245,-0.458336,-0.33282,-0.167411,-0.351867,-0.476509,1.11272,0 +-0.843816,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-1.04637,-0.263557,-0.535235,0.499689,-1.06392,0.792298,-1.00453,-1.37934,-0.458336,-0.393865,-0.295669,-0.420991,-0.614546,-0.524402,0 +-0.843816,-0.0461169,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,-1.45352,0.642198,-0.535235,1.35253,0.296596,-0.865335,-0.781613,0.315929,0.957976,-0.33282,-0.295669,-0.351867,-0.441999,1.11272,0 +-0.843816,0.212576,0.418278,-0.46381,0.712969,-0.0574621,-0.268691,-1.45352,1.66117,-0.535235,1.60128,1.47742,-1.27129,1.11315,0.315929,0.957976,-0.760137,-0.744571,-0.83574,-0.0969054,-0.524402,0 +-0.843816,-0.822195,0.868286,-1.48212,2.06422,-0.0574621,-0.268691,-1.45352,2.90658,-0.535235,0.872807,1.91382,-1.4066,1.83762,0.994036,0.957976,-1.00432,-1.12934,-1.18136,0.14466,-0.524402,0 +-0.843816,0.988654,-0.117446,0.554496,0.0373407,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,0.695131,0.88701,-0.696189,0.778782,1.33309,-0.458336,-0.699092,-0.552184,-0.697491,-0.269452,-0.524402,0 +-0.843816,0.729961,0.932573,0.554496,1.05078,-0.0574621,-0.268691,-1.56985,1.32151,-0.535235,-0.193245,1.63145,-1.03448,1.83762,1.33309,0.957976,-0.760137,-0.616313,-0.766615,-0.0969054,-0.524402,0 +-0.843816,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,1.97439,-0.216808,-0.459384,-1.22744,-0.0231245,0.957976,-0.638046,-0.616313,-0.766615,-0.441999,1.11272,0 +-0.843816,0.988654,1.03972,-0.803245,1.72641,-0.0574621,-0.268691,-1.39536,0.981856,-0.535235,-0.672968,1.3234,-0.527043,2.00481,2.0112,-0.458336,-0.393865,-0.616313,-0.697491,0.0411321,-0.524402,0 +-0.437346,0.471268,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,-0.755555,0.415759,-0.535235,0.837272,1.22072,-0.527043,1.78189,2.0112,-0.458336,-0.0275938,0.0891048,-0.0753675,-0.441999,-0.524402,0 +-0.437346,0.471268,-0.138875,0.215061,-0.638287,-0.0574621,-0.268691,-0.697392,-0.0371185,-0.535235,0.339781,0.553298,0.25103,1.61471,0.654983,-0.458336,-0.0886391,-0.039153,-0.213617,-0.511018,-0.524402,0 +-0.437346,-0.822195,-0.138875,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.150338,-0.535235,0.766201,-0.42217,0.589323,0.0543129,-0.0231245,0.957976,-0.271775,-0.167411,-0.282742,-0.580037,-0.524402,0 +-0.437346,0.988654,-0.0103012,1.5728,3.41548,-0.0574621,-0.268691,-1.45352,4.37844,-0.535235,-1.45474,1.91382,-1.47426,1.72616,3.02836,0.957976,0.0944967,-0.8087,-0.628366,2.31875,-0.524402,0 +-0.437346,-0.822195,0.0325567,0.893932,4.42892,-0.0574621,-0.268691,-1.45352,3.92556,-0.535235,-1.45474,1.73413,-1.47426,1.33607,0.994036,2.37429,-0.515956,-1.32173,-1.25049,1.42151,-0.524402,0 +-1.04705,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,3.12144,-1.22087,3.35946,-0.535235,1.99216,1.93949,-1.47426,1.78189,1.33309,0.957976,-0.699092,-1.89889,-1.73436,3.38854,-0.524402,2 +-1.04705,-0.0461169,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-0.988211,-0.263557,-0.480878,-0.424223,-0.44784,0.0480547,-0.893069,-0.362178,-0.458336,-0.760137,-0.680442,-0.83574,-0.441999,-0.524402,0 +-1.04705,-0.563502,-0.203162,-0.124374,1.3886,-0.0574621,-0.268691,-1.04637,-0.263557,-0.535235,-0.761806,-0.370829,-0.053433,-0.893069,-0.362178,-0.458336,-0.882227,-0.8087,-0.97399,-0.441999,-0.524402,0 +-1.04705,0.212576,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.535235,-1.08162,-0.370829,-0.053433,-0.893069,-0.362178,-0.458336,-1.00432,-0.744571,-0.904865,-0.40749,-0.524402,0 +-1.04705,-0.822195,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,0.000574525,-0.263557,1.14983,-0.139942,1.52876,-1.1698,1.39179,3.36741,2.37429,-0.515956,-0.8087,-0.766615,-0.131415,-0.524402,0 +-1.04705,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,0.175066,-0.603215,1.20419,-0.903946,0.604638,-0.62853,0.277226,0.994036,-0.458336,-0.760137,-0.8087,-0.83574,-0.37298,-0.524402,0 +-1.04705,-0.822195,-0.203162,0.215061,1.3886,-0.0574621,-0.268691,-0.115753,-0.376776,0.497548,-0.779573,0.373606,-1.1698,-1.11598,1.33309,0.957976,-0.821182,-1.00109,-0.904865,-0.165924,1.11272,0 +-1.04705,0.729961,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,-0.813719,-0.0371185,-0.535235,-0.619665,1.73413,-1.10214,1.94908,1.67214,0.957976,-0.149684,-0.8087,-0.766615,0.69681,-0.524402,0 +-1.04705,-0.822195,-0.203162,0.893932,1.05078,-0.0574621,3.12144,-1.10454,0.0761009,-0.535235,-0.6552,0.168245,-1.10214,-1.45035,-0.362178,0.957976,-1.43163,-1.44999,-1.59611,-0.131415,1.11272,1 +2.61117,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.334477,0.464154,0.527627,-0.425555,0.444411,-1.37934,-0.458336,1.55958,1.82058,1.86013,-0.580037,1.11272,1 +2.61117,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,0.606263,-0.317617,-1.42331,2.01015,0.221498,-1.37934,-0.458336,1.55958,1.82058,1.791,-0.649055,1.11272,1 +2.61117,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,-0.209093,0.890574,0.527627,-0.425555,0.444411,-1.37934,-0.458336,1.55958,1.82058,1.791,-0.580037,1.11272,1 +2.61117,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.0626921,-0.246547,-1.42331,2.01015,0.221498,-1.37934,-0.458336,1.55958,1.75646,1.791,-0.649055,1.11272,1 +2.50956,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,1.3129,-0.0333371,0.578968,-0.560872,0.332955,-0.362178,-0.458336,1.68167,1.82058,1.86013,-0.580037,1.11272,0 +2.50956,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,1.53033,-0.424223,-1.42331,2.11164,0.388683,-1.37934,-0.458336,1.68167,1.88471,1.92925,-0.649055,-0.524402,0 +2.50956,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,1.14983,0.073268,0.553298,-0.560872,0.277226,-1.04029,-0.458336,1.68167,1.75646,1.791,-0.580037,1.11272,0 +2.50956,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,2.61747,-0.690735,-1.52599,2.21313,0.332955,-1.37934,-0.458336,1.68167,1.94884,1.92925,-0.649055,-0.524402,0 +2.61117,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.100379,0.073268,-0.678871,1.33357,0.723053,-0.0231245,-0.458336,1.68167,1.88471,1.92925,-0.614546,1.11272,0 +2.61117,-0.30481,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,-0.0511046,-0.678871,1.33357,0.723053,-0.0231245,-0.458336,1.55958,1.88471,1.92925,-0.580037,1.11272,0 +2.61117,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,0.171406,0.0555005,-1.19228,1.87483,0.50014,-1.37934,-0.458336,1.68167,1.88471,1.92925,-0.649055,1.11272,1 +2.61117,-0.30481,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,-0.0688721,-0.678871,1.33357,0.723053,-0.0231245,-0.458336,1.55958,1.88471,1.86013,-0.580037,1.11272,0 +2.61117,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,0.334477,-0.175477,-1.21795,1.80718,0.332955,-1.37934,-0.458336,1.68167,1.88471,1.92925,-0.649055,1.11272,1 +2.61117,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,-0.100379,0.162106,-0.781552,1.84101,1.33607,-1.37934,-0.458336,1.80376,2.20536,2.20575,-0.476509,-0.524402,1 +2.61117,-0.30481,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,0.171406,-0.0333371,-0.730212,1.77335,1.33607,-0.701232,-0.458336,1.80376,2.39774,2.48225,-0.37298,-0.524402,1 +2.61117,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,-0.535235,-0.0155696,-1.24362,2.07781,0.723053,-1.04029,-0.458336,1.9869,2.0771,2.0675,-0.580037,-0.524402,0 +2.10309,-0.0461169,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,-0.173917,0.755417,-0.535235,3.21812,1.96516,-1.47426,1.83762,2.0112,13.7048,0.94913,1.49994,1.65275,0.282698,1.11272,0 +2.10309,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.0587384,-0.489996,-0.535235,0.801736,0.501957,-0.0196038,1.05742,-0.0231245,-0.458336,1.80376,1.69233,1.72188,-0.37298,1.11272,1 +2.10309,-0.0461169,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.173917,0.755417,-0.535235,4.88827,1.96516,-1.47426,1.83762,1.33309,6.62322,0.94913,1.30755,1.30713,0.14466,1.11272,0 +0.985296,0.471268,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.150338,-0.154736,1.54797,1.29773,-1.23746,0.778782,2.0112,-0.458336,0.521813,0.794523,0.685005,-0.303962,1.11272,0 +0.985296,1.24735,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.535235,-0.672968,0.91268,-0.730018,0.778782,0.315929,-0.458336,0.582859,0.986909,0.75413,-0.441999,1.11272,0 +0.985296,-0.563502,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.23323,-0.263557,0.00833509,1.74342,0.758659,-0.730018,0.444411,1.33309,0.957976,0.582859,0.730394,0.61588,-0.511018,1.11272,0 +1.595,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.23323,-0.376776,-0.100379,1.88556,0.732989,-0.763847,0.332955,-0.0231245,-0.458336,0.82704,1.1793,1.09975,-0.40749,1.11272,0 +1.595,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.046022,0.428619,0.604638,-0.560872,0.388683,-0.0231245,0.957976,0.94913,1.24342,1.09975,-0.476509,1.11272,0 +1.49338,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.407721,-0.716435,0.28012,0.144338,-0.47351,0.72464,0.16577,0.994036,0.957976,0.94913,1.11517,1.09975,-0.545527,1.11272,0 +1.49338,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,0.551906,0.250943,-0.576191,0.72464,-0.0571439,0.315929,-0.458336,0.94913,1.11517,1.03063,-0.614546,1.11272,0 +1.49338,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,0.171406,0.393083,-0.627531,0.72464,-0.168601,0.315929,-0.458336,0.82704,1.11517,1.03063,-0.614546,1.11272,0 +0.680444,0.729961,-0.181733,-0.124374,-0.300473,-0.0574621,-0.268691,-0.348408,0.415759,-0.535235,0.0199655,1.29773,-1.4066,0.50014,2.6893,0.957976,1.3154,0.92278,1.09975,0.386226,1.11272,0 +-0.843816,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.930047,-0.0371185,-0.535235,0.552991,0.373606,0.690811,1.94908,-0.362178,-0.458336,-0.699092,-0.23154,-0.420991,-0.338471,-2.16152,0 +-0.843816,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,1.13932,0.373606,0.690811,1.94908,-0.0231245,-0.458336,-0.699092,-0.488055,-0.697491,-0.545527,-2.16152,0 +-1.04705,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,0.225763,0.108803,-0.807222,0.656981,-0.670156,-0.701232,-0.458336,-0.699092,-0.423926,-0.697491,-0.511018,-0.524402,0 +-1.04705,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.117049,0.126571,-1.08959,0.656981,-1.28317,-0.701232,-0.458336,-0.699092,-0.552184,-0.766615,-0.614546,-0.524402,0 +-1.04705,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,0.171406,-0.0333371,-1.19228,0.792298,-1.28317,-1.04029,-0.458336,-0.699092,-0.488055,-0.697491,-0.614546,-0.524402,0 +-1.04705,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.489996,0.0626921,-0.868411,-1.01258,0.758469,-0.948798,-1.04029,-0.458336,-0.699092,-0.423926,-0.697491,-0.545527,-2.16152,0 +-1.04705,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.813719,-0.489996,-0.209093,-0.850643,-0.961244,0.758469,-0.837341,-0.701232,-0.458336,-0.699092,-0.423926,-0.697491,-0.545527,-0.524402,0 +-1.04705,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.639228,-0.489996,0.334477,-0.797341,-0.935573,0.72464,-0.837341,-1.04029,-0.458336,-0.699092,-0.488055,-0.766615,-0.545527,-2.16152,0 +-1.04705,0.471268,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.697392,-0.489996,0.171406,-0.886178,-0.961244,0.758469,-0.837341,-1.04029,-0.458336,-0.699092,-0.423926,-0.766615,-0.545527,-2.16152,0 +-1.14867,0.212576,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-0.871883,-0.150338,0.00833509,0.126571,0.270926,-0.899164,-0.893069,-0.701232,-0.458336,-0.760137,-0.680442,-0.83574,-0.37298,1.11272,0 +-1.14867,0.471268,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,0.117049,0.037733,-0.139797,-0.357896,-0.893069,-0.701232,0.957976,-0.760137,-0.616313,-0.83574,-0.511018,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.930047,-0.150338,0.00833509,0.00219796,-0.345159,-0.256409,-1.17171,-0.0231245,-0.458336,-0.760137,-0.616313,-0.83574,-0.545527,1.11272,0 +0.0707402,-0.0461169,-0.0317302,-1.14268,-0.300473,-0.0574621,-0.268691,0.524049,2.11405,-0.535235,5.97209,1.52876,-1.33894,1.11315,-1.04029,-0.458336,0.0334514,0.0249759,0.0628821,0.213679,-0.524402,0 +0.0707402,-0.0461169,-0.0531591,-1.14268,-0.638287,-0.0574621,-0.268691,0.349558,2.68015,-0.535235,7.5534,1.52876,-1.33894,1.11315,-1.04029,-0.458336,-0.0886391,0.0249759,0.0628821,0.213679,-0.524402,0 +0.0707402,-0.30481,-0.117446,-0.803245,-0.638287,-0.0574621,-0.268691,1.16385,0.18932,-0.372164,3.12928,1.73413,-1.33894,1.55898,-0.701232,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.40749,-0.524402,0 +0.0707402,-0.0461169,-0.0531591,-1.14268,-0.638287,-0.0574621,-0.268691,1.16385,-0.150338,-0.535235,1.3703,1.37474,-0.865335,1.55898,0.654983,-0.458336,0.0334514,0.0891048,-0.0753675,-0.441999,-0.524402,0 +-1.75837,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,1.58469,-0.477525,-0.678871,-0.0872623,-1.61754,-0.0231245,-0.458336,-1.06536,-0.936957,-1.11224,-0.614546,1.11272,0 +-1.75837,-0.822195,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-0.232081,-0.603215,0.823691,-0.459758,0.0398938,-1.27129,-2.00764,0.654983,-0.458336,-1.06536,-1.06522,-1.18136,-0.545527,1.11272,0 +-1.75837,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,0.878048,-0.477525,-1.50032,0.690811,-2.11909,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.649055,-0.524402,0 +-1.45352,-0.563502,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.426521,0.428619,0.476287,-0.560872,0.110041,-0.362178,0.957976,-1.00432,-0.872829,-1.04311,-0.511018,-0.524402,0 +-1.45352,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.988211,-0.0371185,-0.426521,0.606294,0.476287,-0.560872,0.110041,-0.362178,2.37429,-1.00432,-0.8087,-1.04311,-0.545527,-0.524402,0 +-1.45352,-0.30481,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.930047,-0.0371185,-0.372164,0.552991,0.476287,-0.560872,0.110041,0.654983,-0.458336,-1.00432,-0.8087,-1.04311,-0.580037,-0.524402,0 +-1.45352,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.930047,0.0761009,-0.535235,0.446386,1.63145,-1.20363,1.55898,0.994036,-0.458336,-0.638046,-0.488055,-0.766615,-0.40749,-0.524402,0 +-1.45352,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,1.03271,0.553298,-1.20363,-0.781613,-0.0231245,-0.458336,-0.638046,-0.616313,-0.697491,-0.545527,1.11272,0 +-1.45352,1.24735,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.988211,0.528978,-0.535235,0.322013,1.50309,-0.831506,1.89335,1.67214,-0.458336,-0.33282,-0.167411,-0.213617,0.0411321,-0.524402,0 +-1.45352,-0.0461169,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,1.05048,-0.370829,-0.18875,-1.11598,-0.362178,-0.458336,-0.638046,-0.8087,-0.904865,-0.37298,-0.524402,0 +-1.25028,2.02342,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.813719,0.642198,-0.535235,-0.29985,1.7598,-1.1698,1.89335,2.35025,-0.458336,0.277632,0.153234,0.132007,-0.0278867,-0.524402,0 +-1.3519,1.50604,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.1627,0.755417,-0.535235,1.08602,1.45175,-0.763847,1.89335,2.0112,0.957976,-0.638046,-0.295669,-0.420991,-0.234943,-0.524402,0 +0.477209,3.57558,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.697392,4.49166,-0.535235,-0.6552,1.99083,-1.4066,2.00481,2.35025,2.37429,0.521813,1.43581,1.58363,1.83562,1.11272,0 +-0.234112,-0.822195,-0.203162,-1.48212,2.06422,-0.0574621,-0.268691,-0.581064,0.642198,-0.535235,-0.886178,0.501957,-1.20363,-0.893069,-0.0231245,0.957976,-0.638046,-0.872829,-0.83574,0.0756414,1.11272,0 +-0.132494,-0.822195,-0.203162,0.554496,2.06422,-0.0574621,-0.268691,-0.5229,1.43473,-0.535235,0.428619,1.47742,-1.44043,0.83451,0.994036,0.957976,-0.271775,-0.616313,-0.559241,0.213679,-0.524402,0 +-0.132494,2.54081,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.930047,3.92556,-0.535235,-0.495293,1.96516,-1.4066,1.94908,1.67214,0.957976,-0.271775,1.24342,1.72188,4.07873,1.11272,0 +-0.132494,0.212576,-0.203162,1.23337,1.3886,-0.0574621,-0.268691,-0.639228,2.34049,-0.535235,1.26369,1.91382,-1.37277,1.89335,0.654983,2.37429,-0.271775,0.0891048,-0.282742,1.59405,-0.524402,0 +-0.132494,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.116902,0.755417,-0.535235,2.68509,0.476287,-1.06831,-0.725884,0.315929,-0.458336,-0.271775,-0.103282,-0.213617,-0.37298,1.11272,0 +0.477209,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.263557,0.551906,0.552991,-0.678871,1.19825,0.50014,1.33309,2.37429,1.49854,1.30755,1.44538,-0.37298,1.11272,1 +0.477209,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.376776,0.497548,0.606294,-0.678871,1.19825,0.50014,1.33309,2.37429,1.49854,1.30755,1.44538,-0.338471,-0.524402,1 +0.477209,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,0.144338,-0.268148,0.859957,0.83451,-0.701232,-0.458336,1.25436,1.11517,1.16888,-0.37298,-0.524402,0 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.115753,-0.376776,0.551906,0.730666,0.732989,-0.425555,0.890238,1.33309,2.37429,1.49854,1.37168,1.44538,-0.37298,1.11272,1 +1.08691,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,-0.426521,0.659596,-0.961244,1.40122,0.221498,-0.0231245,-0.458336,1.49854,1.43581,1.5145,-0.476509,1.11272,1 +1.08691,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.116902,-0.716435,-0.372164,0.286478,-0.678871,1.57037,1.11315,-0.362178,-0.458336,1.49854,1.49994,1.65275,-0.511018,-0.524402,1 +1.08691,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.426521,0.588526,-1.01258,1.50271,0.277226,-0.362178,-0.458336,1.49854,1.49994,1.58363,-0.476509,1.11272,1 +1.69662,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,0.497548,-0.0511046,-1.32063,1.84101,0.16577,-0.701232,-0.458336,0.94913,1.43581,1.37625,-0.545527,-0.524402,1 +1.69662,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.407721,-0.942873,0.171406,-0.0866397,-1.39764,1.80718,-0.0571439,-0.701232,-0.458336,0.94913,1.30755,1.30713,-0.580037,-0.524402,0 +1.69662,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,0.497548,-0.0866397,-1.29496,1.80718,0.16577,-0.362178,-0.458336,1.68167,1.43581,1.44538,-0.40749,-0.524402,1 +1.18853,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,-0.372164,0.606294,-1.11526,1.57037,0.16577,-1.37934,-0.458336,1.3154,1.37168,1.37625,-0.545527,1.11272,1 +1.18853,-0.0461169,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,-0.535235,-0.211012,-1.14093,1.73952,0.388683,-1.04029,-0.458336,1.01018,1.43581,1.37625,-0.511018,-0.524402,0 +-1.3519,-0.822195,0.0754146,-1.48212,-0.300473,-0.0574621,-0.268691,0.349558,-0.716435,-0.154736,0.712899,0.168245,-1.27129,-1.72899,0.654983,-0.458336,-0.882227,-0.872829,-1.04311,-0.545527,1.11272,0 +-1.3519,-0.822195,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.535235,1.17485,0.168245,-1.27129,-1.72899,0.315929,-0.458336,-0.882227,-0.8087,-0.97399,-0.580037,1.11272,0 +-1.3519,-0.822195,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,0.117049,0.0555005,-1.03825,0.318689,-1.72899,-0.701232,-0.458336,-1.06536,-0.872829,-1.11224,-0.614546,-0.524402,0 +-1.3519,-0.822195,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,0.117049,0.073268,-1.19228,0.521664,-1.72899,-1.37934,0.957976,-0.882227,-0.8087,-0.97399,-0.614546,-0.524402,0 +-1.3519,-0.822195,0.118272,-1.48212,-0.638287,-0.0574621,-0.268691,0.582213,-0.829654,-0.535235,0.233176,-1.26929,0.623152,-1.72899,-1.37934,-0.458336,-0.760137,-0.744571,-0.97399,-0.614546,-0.524402,0 +-1.3519,-0.822195,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,0.28012,-0.139942,-1.26929,0.521664,-1.89618,-1.04029,0.957976,-0.882227,-0.872829,-1.04311,-0.649055,-0.524402,0 +-1.3519,-0.822195,0.0111277,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,0.117049,-0.104407,-1.3463,0.72464,-1.72899,-1.37934,-0.458336,-0.882227,-0.8087,-1.04311,-0.614546,-0.524402,0 +-1.3519,-0.822195,0.268275,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.489996,-0.535235,1.22816,0.168245,-1.20363,-1.61754,0.315929,-0.458336,-0.882227,-0.744571,-0.97399,-0.476509,1.11272,0 +-1.3519,-0.822195,0.353991,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.603215,-0.535235,1.26369,-0.0371167,-1.06831,-1.84045,-0.362178,-0.458336,-0.760137,-0.872829,-0.97399,-0.476509,1.11272,0 +-0.945433,0.471268,0.118272,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.535235,-0.122175,-0.47351,-0.121092,-1.22744,-0.0231245,-0.458336,-0.515956,-0.295669,-0.490116,-0.580037,1.11272,0 +-0.945433,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.829654,-0.535235,-0.104407,-1.16661,0.589323,-1.56181,-1.37934,-0.458336,-0.515956,-0.359797,-0.559241,-0.649055,1.11272,0 +-0.843816,1.24735,0.118272,-1.14268,-0.638287,-0.0574621,-0.268691,0.0587384,-0.603215,-0.535235,-0.58413,-0.191138,-0.391726,-1.06025,1.67214,-0.458336,-0.271775,-0.167411,-0.351867,-0.545527,1.11272,0 +-0.843816,-0.0461169,0.0111277,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,-0.535235,-0.58413,-1.39764,1.06293,-1.28317,-1.04029,-0.458336,-0.271775,-0.167411,-0.282742,-0.649055,-0.524402,0 +-0.843816,1.76473,0.0111277,-0.803245,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.535235,-1.01055,1.22072,-1.23746,0.611597,1.33309,-0.458336,-0.271775,-0.167411,-0.351867,-0.511018,-0.524402,0 +-0.843816,0.471268,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.603215,-0.535235,-0.37092,0.116904,-0.865335,-1.17171,-0.362178,-0.458336,-0.271775,-0.167411,-0.351867,-0.580037,1.11272,0 +-0.640581,-0.30481,-0.0745881,-1.14268,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,-0.372164,0.428619,0.322266,-1.06831,-1.06025,-0.0231245,-0.458336,-0.515956,-0.23154,-0.420991,-0.511018,1.11272,0 +-0.640581,-0.0461169,-0.096017,-0.803245,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,0.0199655,-0.832893,0.656981,-0.725884,-0.362178,-0.458336,-0.515956,-0.039153,-0.144492,-0.441999,-0.524402,0 +-0.640581,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,-0.317807,0.552991,0.476287,-1.06831,-0.725884,-0.0231245,-0.458336,-0.515956,-0.423926,-0.559241,-0.614546,1.11272,1 +-0.640581,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-0.829654,-0.317807,0.588526,0.476287,-1.06831,-0.725884,-0.0231245,-0.458336,-0.393865,-0.359797,-0.490116,-0.580037,1.11272,1 +-0.640581,0.471268,-0.0317302,-1.14268,-0.300473,-0.0574621,-0.268691,0.407721,-0.376776,-0.26345,1.31699,0.322266,-1.03448,-1.00453,1.67214,0.957976,0.155542,0.0249759,-0.00624269,-0.165924,1.11272,0 +-0.640581,0.729961,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.603215,-0.535235,1.72565,0.86134,-1.00065,0.221498,-0.362178,-0.458336,-0.0886391,-0.039153,-0.144492,-0.476509,1.11272,0 +-0.437346,-0.0461169,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.716435,-0.535235,0.588526,0.245255,-0.865335,-0.893069,2.0112,-0.458336,-0.271775,-0.039153,-0.282742,-0.545527,1.11272,0 +-0.437346,-0.822195,0.182559,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,-0.480878,-0.122175,-1.21795,0.893786,-1.17171,-0.362178,-0.458336,-0.271775,-0.103282,-0.282742,-0.614546,-0.524402,0 +-0.437346,-0.30481,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.489996,-0.535235,1.61904,0.86134,-1.4066,-0.447242,0.654983,-0.458336,-0.271775,-0.103282,-0.282742,-0.511018,1.11272,0 +-0.437346,0.729961,0.16113,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.376776,-0.535235,-0.601898,-0.884233,0.893786,-0.447242,-0.701232,-0.458336,-0.271775,-0.103282,-0.351867,-0.545527,-0.524402,0 +-0.437346,-0.30481,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,-0.480878,-0.51306,-0.935573,0.961445,-0.447242,-0.362178,-0.458336,-0.271775,-0.039153,-0.213617,-0.614546,-0.524402,0 +-0.437346,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,-0.480878,-0.139942,-1.21795,0.893786,-1.17171,-0.362178,-0.458336,-0.271775,-0.103282,-0.282742,-0.614546,-0.524402,0 +-0.640581,0.988654,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.263557,-0.426521,1.03271,0.347936,-1.00065,-0.893069,-0.701232,-0.458336,-0.271775,-0.167411,-0.282742,-0.40749,1.11272,0 +-0.640581,0.729961,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.263557,-0.535235,1.19262,0.347936,-1.00065,-0.893069,-0.701232,-0.458336,-0.638046,-0.167411,-0.282742,-0.269452,1.11272,0 +-0.640581,0.729961,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.263557,-0.535235,0.783969,0.322266,-1.00065,-0.948798,-0.701232,-0.458336,-0.515956,-0.23154,-0.420991,-0.40749,1.11272,0 +-1.04705,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,-0.426521,1.28146,0.501957,-1.47426,-1.3389,0.994036,-0.458336,-0.515956,-0.423926,-0.559241,-0.511018,1.11272,0 +-1.04705,-0.0461169,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.716435,-0.535235,0.126571,0.0142237,-0.425555,-0.670156,-0.0231245,-0.458336,-0.515956,-0.359797,-0.559241,-0.545527,1.11272,0 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.175066,-0.603215,-0.154736,0.997179,0.0912342,-1.03448,-1.50608,-0.701232,-0.458336,-0.515956,-0.488055,-0.628366,-0.580037,1.11272,0 +-1.04705,0.212576,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.716435,-0.535235,0.073268,0.0142237,-0.425555,-0.670156,-0.0231245,-0.458336,-0.515956,-0.359797,-0.559241,-0.545527,1.11272,0 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.116902,-0.603215,-0.154736,0.997179,0.0912342,-1.03448,-1.50608,-0.701232,-0.458336,-0.515956,-0.488055,-0.628366,-0.580037,1.11272,0 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.116902,-0.603215,-0.154736,0.997179,0.0912342,-1.03448,-1.50608,-0.701232,-0.458336,-0.515956,-0.488055,-0.628366,-0.580037,1.11272,0 +-1.25028,-0.0461169,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,-0.426521,0.410851,0.168245,-1.06831,-1.39462,-0.362178,-0.458336,-0.638046,-0.423926,-0.628366,-0.545527,1.11272,0 +-1.25028,-0.0461169,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,-0.426521,-0.0333371,-1.26929,0.792298,-1.45035,-1.37934,-0.458336,-0.760137,-0.488055,-0.697491,-0.580037,-0.524402,0 +-1.25028,0.471268,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.317807,-0.139942,-1.24362,0.792298,-1.39462,-1.37934,-0.458336,-0.760137,-0.423926,-0.628366,-0.545527,-0.524402,0 +-0.843816,-0.822195,-0.096017,-1.14268,-0.638287,-0.0574621,-0.268691,1.10569,-1.16931,1.96519,-0.424223,-1.26929,0.623152,-1.72899,-1.37934,-0.458336,-0.760137,-0.680442,-0.83574,-0.649055,-0.524402,1 +-0.843816,-0.822195,-0.096017,-1.14268,-0.638287,-0.0574621,-0.268691,1.16385,-1.16931,2.56312,-0.58413,-1.44898,0.72464,-1.95191,-1.04029,-0.458336,-0.760137,-0.680442,-0.83574,-0.649055,1.11272,1 +-0.843816,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,3.54154,-0.832876,-1.603,0.893786,-2.00764,-1.37934,-0.458336,-0.760137,-0.616313,-0.83574,-0.649055,-0.524402,2 +-0.843816,-0.822195,-0.096017,-1.14268,-0.300473,-0.0574621,-0.268691,1.33834,-1.05609,1.04112,-0.193245,0.270926,-1.4066,-1.72899,0.315929,-0.458336,-0.760137,-0.744571,-0.904865,-0.580037,1.11272,1 +-0.843816,-0.822195,-0.117446,-0.803245,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,0.551906,-0.264315,-1.24362,0.521664,-1.84045,-1.04029,-0.458336,-1.06536,-0.872829,-1.11224,-0.614546,-0.524402,1 +-1.04705,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.16385,-0.829654,0.932405,0.783969,1.01536,-1.47426,-0.224329,0.994036,-0.458336,-0.760137,-0.744571,-0.904865,-0.580037,1.11272,1 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-0.942873,1.25855,0.0199655,0.0142237,-0.154921,-0.224329,0.315929,-0.458336,-0.882227,-0.680442,-0.83574,-0.614546,-0.524402,1 +-0.538964,1.24735,-0.0745881,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,0.642198,-0.535235,1.86779,1.37474,-1.13597,1.11315,2.0112,-0.458336,-0.271775,0.153234,-0.00624269,-0.0969054,-0.524402,0 +-0.538964,0.988654,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.376776,-0.535235,0.624061,0.732989,-1.13597,-0.280057,-0.362178,-0.458336,0.0334514,0.153234,0.0628821,-0.441999,1.11272,0 +1.79823,0.729961,-0.0531591,-0.803245,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,0.714977,-0.779573,-0.858563,1.6042,0.778782,-0.362178,-0.458336,1.19331,1.6282,1.5145,-0.511018,-0.524402,0 +1.79823,1.76473,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,-0.535235,-1.29483,-0.858563,1.6042,0.778782,-0.701232,-0.458336,1.43749,1.75646,1.72188,-0.511018,-0.524402,0 +1.79823,-0.30481,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,1.63905,-0.637433,-1.11526,1.6042,0.221498,-0.701232,-0.458336,1.19331,1.37168,1.37625,-0.614546,-0.524402,1 +1.49338,-0.0461169,0.0111277,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,0.878048,-0.139942,-1.14093,1.53654,0.0543129,-0.701232,-0.458336,0.94913,1.11517,1.09975,-0.580037,-0.524402,1 +-0.335729,-0.822195,-0.0103012,0.554496,-0.638287,-0.0574621,-0.268691,1.16385,-0.942873,0.66062,1.08602,0.347936,-0.730018,-0.447242,2.6893,-0.458336,0.338678,0.34562,0.339381,-0.511018,1.11272,1 +-0.335729,-0.30481,-0.0317302,-0.46381,-0.638287,-0.0574621,-0.268691,0.582213,-0.829654,0.878048,1.08602,0.527627,-0.966823,-0.447242,0.994036,-0.458336,-0.515956,-0.23154,-0.351867,-0.303962,1.11272,0 +-0.335729,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,2.23697,-0.566363,-1.32063,0.690811,-1.72899,-0.701232,-0.458336,-1.06536,-0.8087,-1.11224,-0.545527,-2.16152,0 +-0.335729,-0.822195,-0.0103012,-0.803245,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,1.47598,0.162106,-1.03825,0.690811,-1.11598,-0.362178,-0.458336,-1.06536,-0.616313,-0.83574,-0.37298,-2.16152,0 +-0.640581,0.988654,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-1.91883,2.22727,-0.535235,-0.335385,1.37474,-0.899164,1.50325,1.33309,-0.458336,-0.515956,-0.616313,-0.559241,0.903866,-0.524402,0 +-0.640581,0.729961,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-2.03516,2.34049,-0.535235,-0.44199,1.52876,-1.20363,1.33607,1.33309,-0.458336,-0.515956,-0.8087,-0.628366,0.765829,-0.524402,0 +-0.640581,0.988654,-0.203162,0.215061,1.72641,-0.0574621,-0.268691,-1.8025,2.34049,-0.535235,-1.45474,1.73413,-1.37277,1.50325,2.35025,-0.458336,0.94913,-0.680442,-0.559241,4.04422,-0.524402,0 +-0.640581,2.28212,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,-1.977,2.79336,-0.535235,-1.22376,1.73413,-1.37277,1.50325,2.6893,0.957976,-0.271775,-0.552184,-0.490116,0.765829,-0.524402,0 +-0.640581,0.212576,-0.203162,2.93054,0.712969,-0.0574621,-0.268691,-1.977,2.11405,-0.535235,0.339781,0.707319,-1.10214,-0.280057,-0.362178,2.37429,-0.515956,-0.680442,-0.628366,0.558773,1.11272,0 +-0.640581,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.18932,-0.535235,0.730666,0.527627,0.454006,1.89335,0.315929,0.957976,-0.149684,-0.167411,-0.282742,-0.545527,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.890574,0.527627,0.454006,1.89335,0.654983,-0.458336,-0.149684,-0.039153,-0.213617,-0.511018,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.33719,0.415759,-0.535235,1.35253,0.527627,0.454006,1.89335,1.67214,-0.458336,-0.149684,0.0891048,-0.00624269,-0.40749,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,1.29923,0.527627,0.454006,1.89335,0.654983,-0.458336,-0.149684,-0.039153,-0.0753675,-0.441999,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,0.748434,-0.858563,0.690811,-0.725884,-0.0231245,-0.458336,-0.577001,-0.295669,-0.490116,-0.580037,-0.524402,0 +-0.538964,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,1.06825,0.168245,0.859957,1.78189,-0.362178,-0.458336,0.643904,1.24342,1.16888,-0.200434,-0.524402,1 +-0.945433,1.24735,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.376776,-0.535235,0.197641,0.553298,-1.03448,-0.502971,0.654983,-0.458336,-0.271775,-0.103282,-0.282742,-0.40749,1.11272,0 +-0.945433,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.115753,-0.489996,-0.535235,0.179873,0.527627,-1.13597,-0.725884,0.315929,-0.458336,-0.271775,-0.167411,-0.282742,-0.476509,1.11272,0 +-0.742198,0.988654,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,-0.317617,-0.858563,0.826128,-0.502971,-0.701232,-0.458336,-0.271775,0.0249759,-0.213617,-0.441999,-0.524402,0 +-0.742198,0.471268,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.116902,-0.716435,-0.535235,0.268711,0.501957,-1.03448,-0.614428,-0.701232,-0.458336,-0.271775,-0.103282,-0.282742,-0.511018,1.11272,0 +-0.945433,1.76473,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,-0.903946,-0.730212,0.420177,-0.893069,-1.04029,-0.458336,-0.699092,-0.295669,-0.559241,-0.40749,-0.524402,0 +-0.945433,2.54081,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,-1.29483,-0.807222,0.555494,-0.837341,-0.362178,-0.458336,-0.515956,-0.295669,-0.490116,-0.476509,-0.524402,0 +-1.04705,-0.30481,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,0.225763,0.926109,0.424947,-1.20363,-1.06025,2.35025,0.957976,-0.638046,-0.552184,-0.766615,-0.511018,1.11272,0 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,-0.535235,1.54797,0.142575,-0.932994,-1.22744,-0.362178,-0.458336,-0.760137,-0.616313,-0.904865,-0.511018,1.11272,0 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,1.3129,-0.335385,0.296596,-1.1698,-1.28317,-0.0231245,-0.458336,-0.638046,-0.552184,-0.697491,-0.649055,1.11272,0 +-1.04705,-0.0461169,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,0.819504,0.219585,-0.932994,-1.06025,-0.701232,-0.458336,-0.760137,-0.488055,-0.766615,-0.511018,1.11272,0 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.348408,-0.489996,0.714977,0.428619,0.322266,-1.1698,-1.22744,-0.0231245,-0.458336,-0.638046,-0.616313,-0.766615,-0.580037,1.11272,0 +-1.04705,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.407721,-0.942873,-0.046022,0.037733,-1.06392,0.758469,-1.06025,-0.0231245,-0.458336,-0.699092,-0.423926,-0.628366,-0.545527,-0.524402,0 +-1.04705,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.942873,-0.100379,-0.104407,-1.26929,0.758469,-1.50608,-1.04029,-0.458336,-0.699092,-0.552184,-0.766615,-0.614546,-0.524402,0 +-1.3519,0.212576,-0.203162,1.5728,0.0373407,-0.0574621,-0.268691,0.175066,0.30254,-0.154736,-0.0155696,1.22072,-1.37277,0.388683,0.994036,2.37429,-0.760137,-0.552184,-0.766615,-0.165924,-0.524402,0 +-1.3519,0.471268,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.524049,-0.489996,0.171406,0.0910356,1.52876,-1.30512,1.16888,2.0112,-0.458336,-0.760137,-0.423926,-0.559241,-0.37298,-0.524402,0 +-1.55514,0.471268,-0.203162,1.91224,0.375155,-0.0574621,-0.268691,-0.348408,1.32151,-0.535235,-0.424223,1.24639,-1.4066,0.388683,0.654983,-0.458336,-0.882227,-0.8087,-0.97399,0.00662268,-0.524402,0 +-0.0308771,-0.30481,0.0111277,-0.46381,0.0373407,-0.0574621,-0.268691,-0.0575893,-0.263557,-0.535235,1.28146,-0.0371167,0.0480547,-0.00141549,0.315929,-0.458336,0.0944967,0.0249759,-0.00624269,-0.338471,-0.524402,0 +-0.0308771,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-0.115753,-0.489996,-0.535235,1.72565,-0.832893,0.927615,-0.280057,-0.362178,-0.458336,-0.271775,0.0249759,-0.144492,-0.476509,-0.524402,0 +-0.538964,0.988654,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,-0.173917,-0.263557,-0.535235,-0.104407,-0.319489,0.623152,0.332955,0.654983,-0.458336,-0.0275938,0.0891048,-0.0753675,-0.476509,-0.524402,0 +0.985296,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,1.3129,-0.122175,-1.11526,1.19825,-0.447242,-0.362178,-0.458336,0.82704,0.730394,0.75413,-0.545527,1.11272,1 +0.985296,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,2.40005,-0.58413,-1.21795,1.26591,-0.558699,-0.362178,-0.458336,0.82704,0.986909,0.89238,-0.649055,1.11272,1 +1.08691,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,-0.154736,0.233176,-0.807222,1.06293,-0.00141549,-0.362178,-0.458336,0.399723,0.538007,0.408506,-0.614546,-0.524402,1 +1.08691,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.480878,0.108803,-0.807222,1.06293,-0.00141549,-0.362178,-0.458336,0.338678,0.473878,0.408506,-0.614546,-0.524402,0 +1.08691,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.16931,2.61747,-0.744038,-1.55166,1.70569,-0.558699,-0.701232,-0.458336,0.82704,0.986909,0.961504,-0.649055,1.11272,1 +1.08691,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.606263,0.073268,-1.11526,1.19825,-0.447242,-0.701232,-0.458336,0.765994,0.730394,0.685005,-0.545527,1.11272,1 +0.883679,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-0.716435,2.29133,0.712899,0.219585,-0.763847,-0.781613,2.6893,-0.458336,0.338678,0.473878,0.408506,-0.545527,1.11272,1 +0.883679,-0.822195,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.150338,-0.26345,2.04546,1.24639,-1.27129,0.611597,2.6893,-0.458336,0.216587,0.409749,0.339381,-0.476509,1.11272,0 +0.883679,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.582213,-0.603215,1.20419,1.12155,0.758659,-1.27129,-0.447242,2.0112,-0.458336,0.399723,0.473878,0.408506,-0.545527,1.11272,0 +1.29015,-0.822195,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,1.10569,-0.942873,1.53033,0.819504,1.11804,-0.66236,1.33607,0.654983,-0.458336,0.582859,0.730394,0.685005,-0.580037,-0.524402,1 +1.29015,-0.822195,0.182559,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-0.942873,2.67183,0.926109,1.04103,-0.66236,1.16888,-0.0231245,-0.458336,0.582859,0.794523,0.685005,-0.580037,-0.524402,1 +1.49338,-0.822195,0.118272,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.28253,3.70461,-0.815108,-1.44898,1.53654,-0.614428,-1.37934,-0.458336,0.643904,0.858651,0.75413,-0.649055,-0.524402,2 +1.49338,-0.822195,0.0539856,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,4.03076,-0.939481,-1.62867,1.73952,-0.670156,-1.04029,-0.458336,0.643904,0.858651,0.75413,-0.649055,-0.524402,2 +1.49338,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.32411,-0.779573,-1.44898,1.53654,-0.614428,-1.04029,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,2 +1.49338,-0.822195,0.332562,-1.48212,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,2.67183,-0.690735,-1.44898,1.53654,-0.614428,-1.04029,-0.458336,0.765994,0.858651,0.823255,-0.649055,1.11272,1 +1.08691,-0.822195,0.0539856,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,2.29133,-0.459758,-1.39764,1.43505,-0.670156,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.649055,-0.524402,1 +1.08691,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,2.8349,-0.779573,-1.50032,1.50271,-0.781613,-0.701232,-0.458336,0.399723,0.602136,0.546756,-0.649055,-0.524402,1 +1.08691,-0.822195,0.225417,-1.48212,-0.638287,-0.0574621,-0.268691,1.39651,-1.16931,0.769334,-0.246547,-1.32063,1.33357,-0.670156,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.649055,-0.524402,1 +1.18853,-0.822195,0.182559,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.16931,1.58469,-0.0688721,-0.42217,1.26591,1.16888,-0.362178,-0.458336,0.460768,0.602136,0.546756,-0.649055,-2.16152,1 +1.18853,-0.822195,0.225417,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.91083,-0.424223,-1.26929,1.19825,-0.781613,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.649055,1.11272,1 +1.18853,-0.822195,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,1.09548,0.0555005,-0.42217,1.26591,1.16888,-0.701232,-0.458336,0.460768,0.602136,0.546756,-0.614546,-2.16152,1 +1.18853,-0.822195,0.225417,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.91083,-0.424223,-1.26929,1.19825,-0.781613,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.649055,1.11272,1 +-0.132494,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.36726,-0.44199,-1.3463,1.09676,-1.11598,-1.04029,-0.458336,-0.21073,0.0249759,-0.144492,-0.649055,-0.524402,1 +0.782061,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,1.39651,-1.05609,3.10669,0.464154,0.193915,-0.831506,-0.948798,-0.701232,-0.458336,0.399723,0.473878,0.408506,-0.580037,1.11272,1 +0.782061,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.16931,3.37847,-0.886178,-1.57733,1.50271,-0.948798,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,1.11272,2 +1.29015,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-0.942873,1.91083,0.499689,-0.730212,0.792298,-0.280057,0.654983,-0.458336,0.94913,0.986909,0.961504,-0.545527,1.11272,1 +1.29015,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.16931,2.61747,-0.672968,-1.3463,1.40122,-0.614428,-0.701232,-0.458336,0.765994,0.92278,0.89238,-0.649055,1.11272,1 +1.29015,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,1.20419,0.233176,-0.961244,1.33357,0.110041,-0.0231245,-0.458336,0.94913,1.05104,1.09975,-0.614546,-0.524402,1 +1.29015,-0.822195,0.0968435,-1.48212,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,1.6934,-0.22878,-0.909903,0.893786,-0.502971,-0.0231245,-0.458336,0.582859,0.730394,0.685005,-0.649055,1.11272,1 +1.29015,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.16931,2.78054,-0.44199,-1.06392,0.893786,-0.837341,-0.0231245,-0.458336,0.582859,0.730394,0.61588,-0.649055,1.11272,1 +1.29015,-0.822195,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,0.714977,-0.175477,-1.29496,1.43505,-0.447242,-1.04029,-0.458336,0.582859,0.794523,0.685005,-0.614546,-0.524402,1 +1.69662,-0.822195,0.268275,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,2.50876,-0.317617,-1.16661,1.26591,-0.447242,-0.0231245,-0.458336,0.765994,0.986909,0.89238,-0.649055,1.11272,1 +1.69662,-0.822195,0.332562,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,4.03076,-0.957248,-1.68001,1.80718,-0.670156,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.649055,-0.524402,2 +1.08691,-0.822195,0.268275,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,2.50876,-0.317617,-1.16661,1.26591,-0.447242,-0.0231245,-0.458336,0.765994,0.986909,0.89238,-0.649055,1.11272,1 +1.69662,-0.822195,0.311133,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,4.03076,-0.957248,-1.68001,1.80718,-0.670156,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.649055,-0.524402,2 +1.69662,-0.822195,0.396849,-1.48212,-0.638287,-0.0574621,-0.268691,1.39651,-1.05609,0.443191,-0.0511046,-1.37197,1.53654,-0.447242,-1.37934,-0.458336,0.82704,1.05104,0.961504,-0.649055,1.11272,2 +1.69662,-0.822195,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,1.85647,-0.15771,-1.14093,1.16442,-0.558699,-0.362178,-0.458336,0.765994,0.92278,0.89238,-0.649055,1.11272,1 +0.172357,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.376776,1.58469,1.45913,0.476287,-0.899164,-0.447242,1.33309,-0.458336,0.338678,0.34562,0.270256,-0.441999,1.11272,1 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,3.32411,-0.22878,0.681649,-0.763847,0.221498,-0.362178,-0.458336,0.338678,0.473878,0.408506,-0.614546,1.11272,2 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,3.32411,-0.22878,0.681649,-0.763847,0.221498,-0.362178,-0.458336,0.338678,0.473878,0.408506,-0.614546,1.11272,2 +0.172357,-0.30481,0.118272,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.376776,0.00833509,1.51244,1.58011,-0.932994,1.89335,2.0112,-0.458336,0.765994,0.538007,0.546756,-0.234943,-0.524402,1 +1.08691,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.05609,2.78054,0.428619,0.270926,-0.763847,-0.670156,-0.362178,-0.458336,0.460768,0.602136,0.546756,-0.580037,1.11272,1 +1.08691,-0.822195,0.311133,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.16931,3.10669,-0.708503,-1.39764,1.43505,-0.670156,-0.701232,-0.458336,0.460768,0.730394,0.61588,-0.649055,-0.524402,1 +1.29015,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.15264,-1.28253,3.86769,-0.939481,-1.55166,1.57037,-0.781613,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.649055,-0.524402,2 +1.29015,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.74776,-0.637433,-1.50032,1.46888,-0.837341,-1.04029,-0.458336,0.277632,0.473878,0.339381,-0.649055,-0.524402,1 +1.29015,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.56312,-0.690735,-1.50032,1.46888,-0.837341,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,1 +1.29015,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,2.50876,-0.690735,-1.50032,1.46888,-0.837341,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,1 +1.29015,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.16931,0.551906,-0.601898,-1.50032,1.46888,-0.837341,-1.37934,-0.458336,0.277632,0.538007,0.477631,-0.649055,-0.524402,1 +1.08691,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.05609,2.78054,0.428619,0.270926,-0.763847,-0.670156,-0.362178,-0.458336,0.460768,0.602136,0.546756,-0.580037,1.11272,1 +1.08691,-0.822195,0.0325567,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.16931,3.65026,-0.0511046,0.245255,-0.763847,-0.725884,-0.701232,-0.458336,0.460768,0.602136,0.546756,-0.614546,1.11272,2 +1.29015,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.28253,3.10669,-0.761806,-1.47465,1.46888,-0.781613,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.614546,-0.524402,2 +0.375592,-0.822195,0.139701,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-0.942873,0.117049,0.481921,0.373606,-0.865335,-0.614428,-0.701232,-0.458336,0.338678,0.473878,0.339381,-0.545527,1.11272,1 +0.375592,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,0.117049,0.073268,-1.24362,1.26591,-0.614428,-1.04029,-0.458336,0.460768,0.538007,0.477631,-0.614546,-0.524402,1 +0.375592,-0.822195,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.0626921,-0.0155696,-1.29496,1.33357,-0.614428,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,1 +-0.0308771,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.28253,4.24818,-0.868411,-1.603,1.26591,-1.39462,-1.04029,-0.458336,-0.271775,-0.039153,-0.213617,-0.649055,-0.524402,2 +-0.0308771,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,4.41126,-0.939481,-1.62867,1.26591,-1.45035,-1.04029,-0.458336,-0.271775,-0.039153,-0.213617,-0.649055,-0.524402,2 +-0.0308771,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,3.70461,-0.815108,-1.603,1.26591,-1.39462,-1.04029,-0.458336,-0.21073,-0.039153,-0.213617,-0.649055,-0.524402,2 +-0.0308771,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,4.03076,-0.832876,-1.603,1.26591,-1.39462,-1.04029,-0.458336,-0.21073,-0.039153,-0.213617,-0.649055,-0.524402,2 +0.578827,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.05609,2.01955,0.179873,0.219585,-0.932994,-1.06025,0.654983,-0.458336,0.155542,0.281491,0.201132,-0.580037,1.11272,1 +0.578827,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.6934,-0.51306,-1.37197,1.16442,-1.06025,-1.04029,0.957976,0.277632,0.409749,0.339381,-0.649055,1.11272,1 +0.578827,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.67183,-0.708503,-1.52599,1.33357,-1.11598,-1.04029,-0.458336,0.155542,0.281491,0.201132,-0.649055,-0.524402,1 +0.578827,-0.822195,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,2.4544,-0.690735,-1.52599,1.33357,-1.11598,-1.04029,-0.458336,0.155542,0.281491,0.201132,-0.649055,-0.524402,1 +0.578827,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.16931,0.117049,-0.37092,-1.37197,1.16442,-1.06025,-1.04029,0.957976,0.155542,0.34562,0.201132,-0.649055,1.11272,1 +0.782061,-0.822195,0.0111277,-1.14268,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.78054,-0.619665,-1.47465,1.33357,-1.00453,-1.04029,-0.458336,0.338678,0.409749,0.339381,-0.649055,1.11272,1 +0.782061,-0.822195,0.203988,-0.803245,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.12826,-0.601898,-1.55166,1.43505,-1.00453,-1.04029,-0.458336,0.277632,0.409749,0.339381,-0.649055,-0.524402,1 +0.782061,-0.822195,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,1.62916,-1.16931,2.12826,-0.637433,-1.57733,1.43505,-1.06025,-1.04029,-0.458336,0.338678,0.409749,0.339381,-0.649055,1.11272,1 +0.680444,-0.822195,0.203988,-1.48212,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,3.92204,-0.797341,-1.603,1.43505,-1.11598,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,2 +0.680444,-0.822195,0.268275,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,4.13947,-0.850643,-1.603,1.43505,-1.11598,-1.04029,-0.458336,0.216587,0.34562,0.201132,-0.649055,-0.524402,2 +0.680444,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,0.606263,0.0199655,-1.24362,1.19825,-0.725884,-0.701232,-0.458336,0.216587,0.409749,0.270256,-0.614546,-0.524402,1 +0.680444,-0.822195,-0.0745881,-1.48212,0.375155,-0.0574621,-0.268691,1.16385,-1.05609,0.823691,-0.193245,-1.16661,0.961445,-0.948798,-1.04029,-0.458336,0.277632,0.217363,0.201132,-0.511018,1.11272,1 +0.680444,-0.822195,-0.0531591,-1.48212,1.05078,-0.0574621,-0.268691,0.814868,-0.489996,0.334477,0.748434,1.50309,-1.00065,1.61471,1.67214,0.957976,0.277632,0.217363,0.201132,-0.269452,-0.524402,1 +-0.335729,-0.822195,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.28012,0.286478,-0.44784,0.0480547,-0.893069,-0.0231245,-0.458336,0.277632,0.217363,0.270256,-0.511018,1.11272,1 +-0.335729,-0.30481,-0.0103012,-1.48212,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.150338,-0.535235,1.4236,0.630308,-1.13597,-0.502971,1.33309,-0.458336,-0.0886391,-0.103282,-0.213617,-0.37298,1.11272,0 +-0.0308771,-0.822195,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,0.756704,-0.942873,0.225763,0.570759,0.245255,-0.865335,-0.893069,-0.0231245,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,1.11272,1 +-0.0308771,-0.822195,-0.0103012,-0.803245,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.535235,0.961644,0.245255,-0.865335,-0.893069,-0.701232,-0.458336,-0.0275938,0.217363,0.0628821,-0.580037,1.11272,0 +-0.0308771,-0.822195,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,0.823691,-0.317617,-1.42331,1.19825,-1.11598,-0.701232,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,-0.524402,1 +-0.0308771,-0.822195,0.0325567,-0.124374,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,1.04112,-0.459758,-1.50032,1.19825,-1.28317,-1.04029,-0.458336,-0.0275938,0.0249759,-0.0753675,-0.649055,-0.524402,1 +0.172357,-0.822195,0.0754146,-0.803245,-0.638287,-0.0574621,-0.268691,1.16385,-1.16931,3.10669,-0.477525,-1.08959,0.758469,-1.11598,-0.0231245,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,1.11272,1 +0.172357,-0.822195,0.0754146,-1.14268,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,3.70461,-0.761806,-1.57733,1.29974,-1.28317,-1.04029,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.649055,-0.524402,2 +0.172357,-0.822195,0.139701,-0.803245,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,4.03076,-0.832876,-1.57733,1.29974,-1.28317,-1.04029,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.649055,-0.524402,2 +0.172357,-0.822195,-0.0745881,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,0.606263,0.233176,-0.884233,0.487835,-1.11598,0.315929,-0.458336,0.0334514,0.0249759,-0.0753675,-0.545527,1.11272,1 +0.172357,-0.822195,0.203988,-0.803245,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,2.72619,-0.744038,-1.603,1.33357,-1.28317,-1.04029,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.649055,-0.524402,1 +0.172357,-0.822195,0.0754146,-0.803245,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,3.16104,-0.566363,-1.16661,0.758469,-1.28317,-0.362178,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,1.11272,1 +-0.0308771,-0.822195,-0.0317302,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,-0.317807,-0.0688721,-1.39764,1.16442,-1.11598,-1.04029,-0.458336,-0.149684,0.0249759,-0.144492,-0.649055,-0.524402,1 +0.477209,-0.822195,-0.0317302,-1.14268,0.0373407,-0.0574621,-0.268691,0.98936,-1.05609,1.09548,-0.211012,-0.755882,0.826128,-0.280057,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.476509,-0.524402,1 +0.477209,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,0.606263,-0.175477,-1.24362,1.16442,-0.781613,-1.04029,-0.458336,0.399723,0.473878,0.408506,-0.614546,1.11272,1 +0.477209,-0.822195,-0.0103012,-0.803245,0.0373407,-0.0574621,-0.268691,0.465885,-0.716435,-0.535235,0.197641,-0.576191,0.318689,-0.725884,-0.0231245,-0.458336,0.399723,0.34562,0.339381,-0.476509,1.11272,0 +0.477209,-0.822195,0.0539856,-0.803245,0.0373407,-0.0574621,-0.268691,0.756704,-0.942873,1.20419,-0.246547,-0.370829,0.318689,-0.280057,-0.0231245,-0.458336,0.82704,0.602136,0.477631,-0.338471,1.11272,1 +0.477209,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,1.10569,-1.05609,0.551906,-0.246547,-0.961244,0.792298,-0.781613,-0.701232,-0.458336,0.399723,0.409749,0.408506,-0.580037,1.11272,1 +0.477209,-0.822195,-0.0103012,-0.803245,0.0373407,-0.0574621,-0.268691,0.756704,-0.942873,-0.046022,0.0910356,-0.601861,0.318689,-0.781613,-0.362178,-0.458336,0.399723,0.34562,0.408506,-0.511018,1.11272,1 +0.782061,-0.822195,0.16113,-0.803245,0.0373407,-0.0574621,-0.268691,0.756704,-1.05609,1.6934,-0.459758,-0.832893,0.927615,-0.280057,-0.362178,-0.458336,1.01018,0.92278,1.09975,-0.37298,1.11272,1 +0.782061,0.471268,0.289704,-0.803245,-0.300473,-0.0574621,-0.268691,0.349558,-0.376776,0.986762,-0.530828,1.34907,-1.23746,0.890238,3.02836,-0.458336,1.01018,0.92278,1.09975,-0.303962,1.11272,1 +0.782061,1.50604,0.289704,-1.48212,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.263557,-0.426521,-0.939481,1.11804,-1.20363,0.444411,0.994036,-0.458336,1.01018,0.92278,0.961504,-0.37298,1.11272,0 +0.782061,-0.563502,0.225417,-1.14268,-0.300473,-0.0574621,-0.268691,0.698541,-0.942873,1.53033,-0.37092,-0.832893,0.927615,-0.280057,-0.362178,-0.458336,1.01018,0.92278,1.09975,-0.37298,1.11272,1 +0.782061,-0.563502,0.225417,-1.14268,-0.300473,-0.0574621,-0.268691,0.524049,-0.942873,0.388834,-0.139942,-0.49918,0.927615,0.444411,-0.0231245,-0.458336,1.01018,0.858651,0.961504,-0.40749,-0.524402,1 +0.782061,1.24735,0.311133,-0.803245,0.0373407,-0.0574621,-0.268691,0.175066,-0.489996,-0.480878,-0.690735,1.11804,-1.20363,0.444411,0.994036,-0.458336,0.643904,0.794523,0.89238,-0.40749,1.11272,0 +-0.437346,1.50604,0.546851,-0.46381,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.535235,-0.939481,1.65712,-0.966823,2.00481,-0.0231245,0.957976,-0.271775,0.794523,0.270256,1.42151,-0.524402,0 +-0.234112,2.28212,0.954001,-0.46381,-0.638287,-0.0574621,-0.268691,-0.581064,0.0761009,-0.535235,-0.797341,1.65712,-0.966823,2.00481,0.315929,0.957976,0.0944967,1.24342,0.685005,1.7666,-0.524402,0 +-0.234112,0.729961,0.439707,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,-0.535235,-0.637433,-0.139797,1.06293,1.44752,-1.04029,-0.458336,-0.0275938,0.730394,0.132007,0.662301,-2.16152,0 +-0.0308771,0.471268,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,-0.335385,-1.08959,1.06293,-0.614428,-1.04029,-0.458336,-0.149684,0.153234,-0.0753675,-0.580037,-0.524402,0 +-0.437346,1.50604,0.825428,-0.46381,-0.300473,-0.0574621,-0.268691,-0.639228,0.18932,-0.535235,1.72565,1.63145,-1.10214,1.72616,2.35025,2.37429,2.96362,1.24342,0.61588,4.76892,-0.524402,0 +-0.437346,2.02342,1.68259,0.215061,-0.638287,-0.0574621,-0.268691,-0.639228,0.18932,-0.535235,-1.45474,0.732989,0.183372,1.89335,-0.362178,0.957976,2.96362,1.82058,2.13663,3.00894,1.11272,0 +-0.437346,2.02342,0.439707,-0.46381,-0.638287,-0.0574621,-0.268691,-0.581064,-0.150338,-0.535235,0.073268,0.81,-0.0196038,1.72616,1.33309,-0.458336,3.02467,1.43581,1.03063,4.07873,-0.524402,0 +-0.437346,0.729961,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,-0.464736,-0.263557,-0.535235,0.624061,0.88701,-1.30512,-0.224329,-0.362178,2.37429,-0.638046,0.0891048,-0.0753675,0.0756414,1.11272,0 +-0.437346,1.24735,0.954001,-0.803245,-0.638287,-0.0574621,-0.268691,-0.581064,-0.0371185,-0.535235,0.695131,1.78547,-1.30512,1.72616,0.994036,5.20691,2.96362,1.05104,0.408506,5.4591,-0.524402,0 +-0.437346,1.76473,0.718283,-0.46381,-0.638287,-0.0574621,-0.268691,-0.639228,0.0761009,-0.535235,0.215408,1.78547,-1.30512,1.72616,0.315929,3.7906,0.338678,0.858651,0.339381,1.14543,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,1.04112,0.286478,-0.858563,0.893786,-0.391514,0.315929,0.957976,0.521813,0.730394,0.61588,-0.580037,1.11272,0 +0.985296,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,2.12826,-0.51306,-1.47465,1.46888,-0.781613,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.649055,-0.524402,1 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.489996,-0.535235,0.641829,1.16938,-0.865335,1.11315,0.315929,0.957976,0.765994,0.794523,0.75413,-0.511018,1.11272,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,0.117049,0.712899,1.16938,-0.865335,1.11315,0.315929,0.957976,0.460768,0.666265,0.61588,-0.545527,1.11272,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,1.36726,0.304246,-0.858563,0.893786,-0.391514,0.315929,0.957976,0.521813,0.666265,0.546756,-0.580037,1.11272,1 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.046022,0.872807,1.16938,-0.865335,1.11315,0.654983,0.957976,0.460768,0.794523,0.685005,-0.545527,1.11272,0 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.551906,-0.264315,-1.26929,1.6042,-0.112872,-1.04029,-0.458336,1.19331,1.30755,1.30713,-0.614546,1.11272,1 +1.49338,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.606263,-0.29985,-1.37197,1.73952,-0.112872,-1.37934,-0.458336,1.13227,1.30755,1.30713,-0.649055,-0.524402,1 +1.69662,-0.30481,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,0.000574525,0.0761009,0.00833509,0.695131,1.91382,-1.4066,1.83762,1.33309,-0.458336,1.3154,1.24342,1.30713,-0.200434,1.11272,1 +1.69662,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,2.8349,-0.6552,-1.44898,1.94249,0.0543129,-1.37934,-0.458336,1.43749,1.56407,1.58363,-0.614546,-0.524402,1 +1.69662,-0.822195,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,0.000574525,-0.263557,0.28012,-0.193245,1.68279,-1.10214,1.83762,0.315929,-0.458336,1.3154,1.24342,1.30713,-0.37298,1.11272,0 +1.79823,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,3.16104,-0.744038,-1.603,2.04398,-0.112872,-1.37934,-0.458336,1.3154,1.49994,1.5145,-0.649055,-0.524402,1 +1.79823,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.716435,3.26976,-0.761806,-1.603,2.04398,-0.112872,-1.37934,-0.458336,1.3154,1.49994,1.5145,-0.649055,-0.524402,2 +1.69662,-0.822195,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,1.51283,-0.489996,2.01955,-0.601898,1.99083,-1.44043,1.94908,1.33309,-0.458336,1.01018,0.986909,1.16888,0.351716,1.11272,1 +1.69662,-0.822195,-0.203162,-1.48212,1.05078,-0.0574621,-0.268691,1.33834,0.0761009,2.0739,-0.672968,2.0165,-1.44043,2.00481,2.0112,-0.458336,1.01018,0.794523,1.16888,1.21445,1.11272,1 +1.69662,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.23697,-0.601898,-1.52599,1.77335,-0.391514,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,1.11272,1 +1.69662,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.16931,1.14983,-0.495293,-1.52599,1.77335,-0.391514,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,1.11272,1 +1.69662,-0.822195,-0.203162,-1.48212,-0.300473,-0.0574621,-0.268691,1.68733,-1.28253,1.80212,-0.530828,-0.909903,0.995274,-0.335786,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.614546,1.11272,1 +1.69662,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,2.18262,-0.601898,-1.50032,1.77335,-0.335786,-1.37934,-0.458336,1.01018,1.24342,1.16888,-0.649055,1.11272,1 +1.39177,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,0.334477,-0.139942,0.245255,-0.66236,-0.558699,-1.04029,-0.458336,0.643904,0.730394,0.685005,-0.614546,1.11272,1 +1.39177,-0.822195,-0.203162,-0.803245,0.0373407,-0.0574621,-0.268691,1.39651,-1.16931,0.388834,-0.424223,-1.42331,1.53654,-0.558699,-1.37934,-0.458336,0.338678,0.666265,0.546756,-0.614546,-0.524402,1 +1.39177,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,0.117049,-0.477525,-1.55166,1.70569,-0.558699,-1.37934,-0.458336,0.765994,0.92278,0.823255,-0.649055,-0.524402,1 +1.39177,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,0.117049,-0.0155696,0.245255,-0.66236,-0.558699,-1.04029,-0.458336,0.643904,0.794523,0.75413,-0.614546,1.11272,0 +0.172357,-0.30481,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.698541,-0.829654,-0.317807,0.197641,1.22072,-0.797677,1.33607,-0.362178,-0.458336,0.155542,0.34562,0.201132,-0.545527,-0.524402,0 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.535235,-0.139942,-1.26929,1.26591,-0.670156,-0.701232,-0.458336,-0.149684,0.281491,0.201132,-0.511018,-0.524402,0 +0.172357,-0.30481,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,-0.100379,-0.495293,-0.961244,1.33357,0.110041,-1.04029,-0.458336,0.216587,0.473878,0.339381,-0.614546,-2.16152,1 +0.375592,-0.563502,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.22202,-1.05609,2.01955,-0.424223,-0.139797,1.40122,2.00481,-0.362178,-0.458336,0.338678,0.538007,0.408506,-0.614546,-2.16152,1 +0.375592,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,3.32411,-0.744038,-1.47465,1.40122,-0.893069,-1.04029,-0.458336,0.155542,0.409749,0.270256,-0.614546,-0.524402,2 +0.375592,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,-0.046022,-0.0688721,0.116904,1.06293,2.00481,-0.0231245,-0.458336,0.521813,0.602136,0.546756,-0.580037,-2.16152,1 +0.375592,-0.563502,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.05609,2.0739,-0.619665,-0.114127,1.3674,2.00481,-0.362178,-0.458336,0.155542,0.473878,0.339381,-0.545527,-2.16152,1 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-0.829654,0.225763,0.908342,-0.832893,0.893786,-0.335786,0.315929,-0.458336,0.460768,0.666265,0.546756,-0.580037,-0.524402,1 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.98936,-0.829654,0.878048,0.606294,0.373606,-0.696189,-0.335786,0.994036,0.957976,0.521813,0.666265,0.61588,-0.580037,1.11272,1 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,-0.535235,0.179873,-1.21795,1.19825,-0.670156,-0.701232,0.957976,0.338678,0.538007,0.477631,-0.614546,-0.524402,1 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.04752,-0.829654,-0.154736,0.837272,-1.06392,1.19825,-0.335786,-0.0231245,0.957976,0.765994,0.666265,0.546756,-0.476509,-0.524402,1 +2.30632,-0.822195,-0.160304,0.215061,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,-0.209093,0.464154,-1.11526,1.6042,0.221498,-0.701232,0.957976,1.55958,1.56407,1.58363,-0.580037,1.11272,0 +2.30632,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,0.349558,-0.603215,-0.372164,2.04546,0.527627,0.28486,1.61471,-0.362178,-0.458336,1.43749,1.56407,1.58363,-0.545527,-0.524402,0 +-1.3519,2.54081,-0.0745881,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.0371185,-0.535235,-0.193245,0.476287,-0.865335,-0.391514,0.315929,0.957976,-0.271775,-0.039153,-0.144492,-0.338471,1.11272,0 +-1.25028,2.28212,-0.0103012,-1.14268,-0.638287,-0.0574621,-0.268691,-0.464736,-0.0371185,-0.535235,-0.282082,0.707319,0.28486,2.00481,0.994036,0.957976,-0.271775,-0.23154,-0.420991,-0.37298,-2.16152,0 +-1.25028,2.02342,-0.0531591,-1.14268,-0.638287,-0.0574621,-0.268691,-0.464736,-0.0371185,-0.535235,-0.22878,1.58011,-0.865335,2.00481,1.33309,0.957976,-0.271775,-0.167411,-0.282742,-0.37298,-0.524402,0 +-1.25028,2.02342,-0.096017,-0.803245,-0.638287,-0.0574621,-0.268691,-0.464736,-0.150338,-0.535235,-0.122175,0.399276,-0.865335,-0.558699,0.994036,0.957976,-0.271775,-0.103282,-0.213617,-0.37298,1.11272,0 +-0.843816,1.24735,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.348408,-0.150338,-0.535235,0.570759,-0.191138,0.149542,-0.168601,-0.0231245,-0.458336,0.0334514,0.0249759,-0.0753675,-0.441999,-0.524402,0 +-0.843816,2.02342,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.581064,0.30254,-0.535235,0.712899,1.42608,-0.865335,1.67044,-0.362178,0.957976,-0.638046,-0.103282,-0.282742,-0.234943,-0.524402,0 +-0.843816,0.988654,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.489996,-0.535235,-0.0866397,-0.832893,0.826128,-0.447242,-0.362178,-0.458336,0.0334514,0.153234,0.0628821,-0.545527,-0.524402,0 +1.79823,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,0.931196,-0.0371185,0.606263,0.00219796,2.04217,-1.47426,2.00481,1.33309,3.7906,1.13227,0.92278,1.238,0.869357,1.11272,1 +1.79823,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,0.756704,-0.489996,0.388834,-0.850643,1.37474,-1.47426,0.555868,1.33309,-0.458336,1.13227,0.858651,1.16888,0.627791,1.11272,1 +1.79823,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,0.98936,-0.263557,0.878048,-0.921713,2.04217,-1.47426,2.00481,2.35025,2.37429,1.13227,0.986909,1.238,0.662301,1.11272,1 +1.79823,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,0.814868,-0.0371185,0.28012,0.410851,2.04217,-1.47426,2.00481,1.33309,0.957976,1.13227,0.858651,1.16888,0.800338,1.11272,1 +1.79823,-0.822195,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.582213,1.43473,0.334477,3.59124,2.0165,-1.44043,2.00481,2.6893,10.8722,1.13227,0.986909,1.30713,1.28347,1.11272,1 +1.79823,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,0.349558,1.77439,-0.372164,2.34751,2.0165,-1.44043,2.00481,2.35025,9.45584,1.13227,0.794523,1.16888,1.93915,1.11272,1 +0.883679,-0.563502,-0.138875,-1.14268,0.0373407,-0.0574621,-0.268691,0.465885,-0.0371185,0.00833509,1.29923,1.14371,-1.4066,0.16577,2.6893,3.7906,0.643904,0.538007,0.61588,-0.0623961,1.11272,0 +0.883679,-0.563502,-0.138875,-1.14268,0.0373407,-0.0574621,-0.268691,0.465885,-0.0371185,0.00833509,0.322013,1.14371,-1.4066,0.16577,3.70647,3.7906,0.643904,0.473878,0.61588,0.0411321,1.11272,0 +1.08691,-0.822195,-0.138875,-1.48212,-0.300473,-0.0574621,-0.268691,0.756704,-0.829654,-0.154736,0.0555005,1.01536,-1.23746,0.16577,-0.362178,-0.458336,0.399723,0.92278,0.75413,-0.303962,1.11272,1 +1.08691,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.100379,-0.264315,-1.39764,1.57037,-0.447242,-1.37934,-0.458336,0.643904,0.794523,0.75413,-0.649055,-0.524402,1 +1.08691,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.26345,-0.0688721,-1.14093,1.6042,0.16577,-1.04029,-0.458336,0.582859,1.05104,0.89238,-0.441999,-2.16152,1 +0.883679,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,1.58469,-0.264315,-1.42331,1.43505,-0.725884,-1.04029,-0.458336,0.277632,0.473878,0.339381,-0.649055,-0.524402,1 +0.883679,-0.822195,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,1.58469,-0.29985,-1.44898,1.46888,-0.725884,-1.04029,-0.458336,0.277632,0.473878,0.339381,-0.649055,-0.524402,1 +0.883679,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,1.53033,-0.264315,-1.42331,1.43505,-0.725884,-1.04029,-0.458336,0.277632,0.473878,0.339381,-0.649055,-0.524402,1 +0.172357,0.212576,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.171406,-0.282082,0.630308,-0.797677,0.0543129,0.315929,-0.458336,0.277632,0.409749,0.339381,-0.580037,1.11272,0 +0.172357,-0.563502,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,0.28012,-0.0333371,0.630308,-0.797677,0.0543129,0.315929,-0.458336,0.0944967,0.34562,0.201132,-0.580037,1.11272,0 +0.172357,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.334477,0.0555005,-0.781552,0.656981,-0.614428,-0.0231245,-0.458336,0.0944967,0.281491,0.132007,-0.614546,-0.524402,0 +0.172357,0.988654,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.372164,-0.761806,0.630308,-0.797677,0.0543129,0.315929,-0.458336,0.277632,0.538007,0.408506,-0.580037,1.11272,0 +-0.640581,1.76473,-0.0745881,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,0.642198,-0.535235,1.83225,1.37474,-1.13597,1.11315,2.0112,-0.458336,-0.271775,0.153234,-0.00624269,-0.0969054,-0.524402,0 +-0.0308771,-0.822195,-0.138875,-0.803245,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,0.334477,0.179873,-1.24362,1.06293,-0.948798,-1.04029,-0.458336,-0.0275938,0.0891048,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,0.388834,0.126571,-1.24362,1.06293,-0.948798,-0.701232,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.117446,-1.14268,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,0.171406,0.304246,-1.24362,1.06293,-0.948798,-0.701232,-0.458336,-0.0275938,0.0891048,-0.0753675,-0.614546,-0.524402,0 +-0.234112,0.988654,0.954001,0.215061,-0.300473,-0.0574621,-0.268691,-0.755555,0.981856,-0.535235,1.92109,0.93835,-1.4066,-0.280057,-0.701232,-0.458336,-0.271775,0.0249759,-0.0753675,0.110151,1.11272,0 +0.782061,0.729961,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.290245,0.528978,-0.535235,1.29923,1.16938,-0.797677,1.22461,1.33309,0.957976,0.94913,1.05104,0.961504,-0.165924,1.11272,0 +0.782061,0.212576,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.115753,-0.263557,-0.535235,1.40583,0.758659,-0.797677,0.332955,-1.04029,-0.458336,0.94913,1.05104,0.961504,-0.40749,1.11272,0 +0.782061,1.24735,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.317807,0.357548,0.707319,-0.831506,0.16577,-0.362178,-0.458336,0.338678,0.730394,0.546756,-0.441999,1.11272,0 +-1.3519,-0.0461169,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,0.171406,-0.0511046,-0.909903,0.420177,-1.28317,-0.701232,-0.458336,-1.06536,-0.8087,-1.11224,-0.545527,-0.524402,0 +-1.3519,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,0.606263,-0.211012,-1.32063,0.690811,-1.72899,-0.701232,-0.458336,-1.06536,-0.936957,-1.18136,-0.649055,-2.16152,1 +-1.3519,0.212576,-0.181733,-0.46381,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,-0.535235,0.108803,-0.909903,0.420177,-1.28317,-1.04029,-0.458336,-0.760137,-0.616313,-0.83574,-0.545527,-0.524402,0 +-1.3519,0.729961,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,0.23323,-0.0371185,-0.372164,0.517456,1.09237,-1.1698,0.444411,4.04552,0.957976,-1.2485,-0.488055,-0.628366,0.14466,-0.524402,0 +-1.3519,-0.0461169,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.349558,-0.603215,-0.372164,0.339781,0.578968,-0.763847,-0.00141549,0.994036,-0.458336,-1.2485,-0.488055,-0.697491,0.0756414,-0.524402,0 +1.08691,-0.822195,-0.160304,-1.14268,-0.300473,-0.0574621,-0.268691,1.80365,-0.829654,0.714977,0.499689,1.42608,-0.66236,2.00481,0.315929,-0.458336,0.521813,0.666265,0.61588,-0.545527,-0.524402,1 +1.08691,-0.822195,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,2.09447,-1.16931,1.14983,-0.424223,-0.832893,1.29974,0.332955,-0.701232,-0.458336,0.399723,0.602136,0.477631,-0.649055,-2.16152,2 +1.08691,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,2.15264,-1.16931,1.14983,-0.44199,-0.832893,1.29974,0.332955,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.649055,-2.16152,2 +1.08691,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,2.15264,-1.16931,1.3129,-0.477525,-0.832893,1.29974,0.332955,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.649055,-2.16152,2 +1.79823,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.05609,0.986762,-0.282082,-0.935573,1.23208,-0.00141549,-0.701232,-0.458336,0.888085,1.11517,1.03063,-0.614546,-0.524402,2 +1.79823,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.05609,1.04112,-0.317617,-1.03825,1.23208,-0.224329,-0.701232,-0.458336,0.888085,1.05104,1.03063,-0.614546,1.11272,2 +1.69662,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,2.03631,-1.05609,1.53033,-0.530828,-1.50032,1.84101,-0.224329,-1.37934,-0.458336,0.888085,1.24342,1.16888,-0.614546,-0.524402,2 +1.69662,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.97814,-1.05609,0.388834,-0.193245,-0.678871,1.23208,0.555868,-0.701232,-0.458336,0.888085,0.986909,0.89238,-0.614546,-0.524402,2 +1.69662,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.91998,-1.05609,0.769334,0.0555005,-0.47351,1.0291,0.667325,-1.04029,-0.458336,0.765994,1.11517,1.03063,-0.580037,-0.524402,2 +1.69662,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,2.15264,-1.16931,1.20419,-0.353152,-1.29496,1.43505,-0.447242,-1.37934,-0.458336,0.765994,0.986909,0.89238,-0.614546,1.11272,2 +1.69662,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,2.15264,-1.16931,1.47598,-0.530828,-1.39764,1.57037,-0.447242,-1.37934,-0.458336,0.765994,0.986909,0.89238,-0.649055,-0.524402,2 +1.18853,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,0.873032,-0.942873,-0.100379,0.339781,0.424947,-0.797677,-0.391514,-1.04029,0.957976,0.643904,0.666265,0.685005,-0.511018,1.11272,1 +1.18853,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.046022,-0.0866397,-1.24362,1.40122,-0.391514,-1.04029,-0.458336,0.643904,0.858651,0.75413,-0.649055,-0.524402,1 +1.18853,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,0.756704,-0.942873,-0.26345,-0.122175,-0.627531,0.589323,-0.391514,-1.04029,0.957976,0.643904,0.730394,0.685005,-0.511018,1.11272,1 +1.18853,-0.822195,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,0.582213,-0.942873,-0.535235,-0.15771,-0.627531,0.589323,-0.391514,-1.04029,0.957976,0.765994,0.730394,0.75413,-0.441999,1.11272,0 +0.680444,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.756704,-0.603215,1.20419,0.535224,1.27206,-0.493213,1.94908,1.67214,-0.458336,0.216587,0.409749,0.270256,-0.545527,-0.524402,1 +0.680444,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-0.942873,1.47598,-0.104407,0.142575,-0.324067,-0.224329,0.315929,-0.458336,0.216587,0.34562,0.270256,-0.614546,1.11272,1 +0.578827,-0.30481,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.603215,-0.100379,0.126571,-0.191138,1.13059,1.44752,0.994036,0.957976,0.399723,0.730394,0.61588,-0.511018,-2.16152,1 +0.578827,-0.563502,0.0325567,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.489996,-0.372164,0.215408,1.29773,-1.30512,0.667325,0.654983,0.957976,1.01018,0.794523,0.685005,-0.338471,1.11272,1 +0.985296,-0.822195,-0.160304,-1.14268,-0.638287,-0.0574621,-0.268691,0.814868,-0.829654,0.388834,1.10378,0.347936,-0.66236,-0.335786,2.0112,0.957976,0.460768,0.602136,0.546756,-0.545527,1.11272,1 +0.985296,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,0.497548,-0.29985,-1.37197,1.46888,-0.558699,-0.701232,-0.458336,0.399723,0.602136,0.477631,-0.649055,-0.524402,1 +-0.640581,1.24735,-0.138875,-1.48212,-0.300473,-0.0574621,-0.268691,-0.697392,-0.150338,-0.535235,-0.548595,1.24639,-1.06831,0.945967,0.654983,-0.458336,-0.271775,0.217363,-0.282742,0.282698,-0.524402,0 +-0.640581,1.50604,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,-0.697392,-0.150338,-0.535235,-0.903946,1.27206,-1.06831,1.0017,0.654983,-0.458336,-0.271775,0.281491,-0.213617,0.248188,-0.524402,0 +-0.640581,0.729961,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-0.813719,-0.0371185,-0.535235,-0.22878,0.655978,-0.493213,0.611597,-0.0231245,-0.458336,-0.515956,0.0249759,-0.351867,0.282698,-0.524402,0 +-0.640581,1.76473,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-0.755555,-0.150338,-0.535235,-0.815108,1.24639,-1.06831,0.945967,0.654983,-0.458336,-0.271775,0.281491,-0.213617,0.248188,-0.524402,0 +-1.3519,2.02342,1.03972,-1.14268,-0.638287,-0.0574621,-0.268691,-0.697392,1.20829,-0.535235,0.570759,1.29773,-1.30512,0.667325,2.0112,-0.458336,1.80376,0.92278,1.30713,1.83562,1.11272,0 +-1.3519,2.02342,0.911144,-1.48212,-0.638287,-0.0574621,-0.268691,-0.813719,1.54795,-0.535235,0.393083,1.83681,-1.44043,1.61471,1.67214,-0.458336,1.80376,0.858651,1.238,1.97366,1.11272,0 +-1.3519,2.28212,1.6183,-1.14268,-0.638287,-0.0574621,-0.268691,-0.639228,0.868636,-0.535235,-1.29483,1.78547,-1.37277,1.61471,3.02836,-0.458336,1.80376,1.05104,1.37625,1.28347,1.11272,0 +-1.3519,1.50604,1.74687,-0.803245,-0.638287,-0.0574621,-0.268691,-0.639228,0.528978,-0.535235,0.481921,1.37474,-1.37277,0.723053,0.654983,-0.458336,1.55958,1.11517,1.5145,0.800338,1.11272,0 +-0.640581,2.7995,0.353991,-0.803245,-0.638287,-0.0574621,-0.268691,-0.697392,0.981856,-0.535235,-0.44199,1.09237,-1.10214,0.555868,3.02836,0.957976,-0.271775,0.538007,0.339381,0.69681,1.11272,0 +-0.640581,2.02342,0.503994,-0.803245,-0.638287,-0.0574621,-0.268691,-0.5229,0.0761009,-0.535235,-0.175477,1.09237,-1.10214,0.555868,0.654983,0.957976,-0.515956,0.602136,0.201132,0.903866,1.11272,0 +-0.335729,2.7995,1.7683,-1.14268,-0.638287,-0.0574621,-0.268691,-0.871883,1.20829,-0.535235,0.233176,1.27206,-1.47426,0.332955,2.0112,-0.458336,1.3154,0.986909,1.16888,0.282698,1.11272,0 +-0.335729,3.31689,1.59687,-0.803245,-0.638287,-0.0574621,-0.268691,-0.755555,0.868636,-0.535235,-0.921713,1.58011,-1.47426,1.0017,1.33309,-0.458336,1.3154,1.05104,1.16888,0.213679,1.11272,0 +-0.335729,3.0582,2.26117,-1.48212,-0.638287,-0.0574621,-0.268691,-0.930047,1.43473,-0.535235,1.03271,1.27206,-1.47426,0.332955,2.6893,-0.458336,1.19331,1.05104,1.238,0.17917,1.11272,0 +-0.335729,2.7995,1.59687,-1.14268,-0.638287,-0.0574621,-0.268691,-0.755555,0.868636,-0.535235,-0.459758,1.58011,-1.47426,1.0017,2.0112,-0.458336,1.3154,0.986909,1.16888,0.248188,1.11272,0 +-0.234112,2.7995,0.118272,-1.14268,-0.638287,-0.0574621,-0.268691,-1.04637,2.68015,-0.535235,-0.601898,1.27206,-1.44043,0.388683,2.35025,0.957976,0.765994,0.602136,0.89238,0.489754,1.11272,0 +-0.234112,3.0582,0.16113,-1.14268,-0.638287,-0.0574621,-0.268691,-0.930047,2.11405,-0.535235,-0.193245,1.60578,-1.37277,1.22461,2.0112,0.957976,0.765994,0.602136,0.75413,0.213679,1.11272,0 +-0.335729,1.24735,0.0754146,-0.124374,-0.638287,-0.0574621,-0.268691,-0.639228,0.642198,-0.535235,2.1876,1.22072,-1.33894,0.444411,0.654983,-0.458336,1.01018,0.858651,1.09975,0.248188,1.11272,0 +-0.335729,1.24735,0.0968435,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,0.868636,-0.535235,1.60128,1.22072,-1.4066,0.332955,0.315929,-0.458336,1.3154,0.730394,0.89238,0.69681,1.11272,0 +-0.538964,1.24735,0.0968435,-0.124374,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.535235,0.801736,1.34907,-1.1698,1.0017,0.994036,-0.458336,-0.515956,0.281491,-0.144492,0.213679,-0.524402,0 +-0.538964,0.729961,0.118272,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.150338,-0.535235,0.819504,1.34907,-1.1698,1.0017,1.33309,-0.458336,-0.515956,0.217363,-0.213617,0.213679,-0.524402,0 +2.40794,1.24735,-0.138875,-0.803245,-0.638287,-0.0574621,-0.268691,0.116902,-0.716435,-0.535235,-0.58413,-0.807222,2.01015,1.55898,-1.37934,-0.458336,1.55958,2.01297,1.92925,-0.441999,-2.16152,0 +2.40794,0.729961,-0.117446,-0.803245,-0.638287,-0.0574621,-0.268691,0.175066,-0.829654,-0.535235,-0.459758,-0.807222,2.01015,1.55898,-1.04029,-0.458336,1.68167,2.01297,1.92925,-0.511018,-2.16152,0 +2.40794,1.50604,-0.117446,-1.14268,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,-0.51306,-0.807222,2.01015,1.55898,-1.04029,-0.458336,1.55958,2.0771,1.92925,-0.441999,-2.16152,0 +2.40794,1.24735,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.116902,-0.716435,-0.535235,-0.868411,-0.832893,2.04398,1.55898,-0.701232,-0.458336,1.43749,2.0771,1.92925,-0.338471,-2.16152,0 +2.10309,0.729961,-0.160304,-0.46381,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,-0.139942,-0.114127,0.995274,1.39179,-0.362178,2.37429,1.43749,1.88471,1.791,-0.37298,-0.524402,0 +2.10309,0.988654,-0.181733,-0.803245,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.535235,-0.832876,-0.601861,1.63803,1.39179,-0.701232,0.957976,1.43749,2.01297,1.86013,-0.303962,-0.524402,0 +2.10309,-0.0461169,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,-0.480878,0.179873,-1.01258,1.57037,0.388683,-1.04029,-0.458336,1.43749,1.6282,1.65275,-0.580037,1.11272,0 +2.10309,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,-0.535235,-0.495293,-1.14093,2.01015,0.83451,-1.04029,0.957976,1.43749,1.69233,1.65275,-0.614546,-2.16152,1 +-0.335729,1.24735,0.546851,0.215061,-0.638287,-0.0574621,-0.268691,-0.232081,-0.376776,-0.535235,-0.548595,0.450617,-0.763847,-0.280057,0.315929,0.957976,-0.271775,0.473878,0.270256,-0.0623961,1.11272,0 +-0.335729,0.729961,0.503994,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.535235,-0.22878,0.450617,-0.763847,-0.280057,-0.362178,-0.458336,-0.271775,0.409749,0.0628821,-0.131415,1.11272,0 +-0.335729,1.50604,0.418278,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,-0.797341,0.88701,-0.594701,0.945967,-0.362178,-0.458336,-0.271775,0.409749,0.132007,-0.131415,-0.524402,0 +-0.335729,1.50604,0.675425,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.376776,-0.535235,-0.72627,1.01536,-0.763847,0.945967,-0.362178,-0.458336,0.94913,0.538007,0.546756,-0.0623961,1.11272,0 +-0.742198,0.471268,0.311133,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.0371185,-0.426521,0.446386,1.45175,-0.932994,1.61471,1.67214,-0.458336,-0.515956,-0.103282,-0.351867,-0.269452,-0.524402,0 +-0.742198,1.24735,0.653996,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,0.18932,-0.535235,-0.0688721,1.96516,-1.44043,1.89335,1.67214,-0.458336,-0.271775,0.0891048,-0.282742,-0.200434,-0.524402,0 +-0.742198,-0.30481,-0.096017,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.317807,0.766201,0.399276,-0.932994,-0.670156,-0.362178,-0.458336,-0.515956,-0.359797,-0.490116,-0.545527,1.11272,0 +-0.742198,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.26345,0.339781,-1.11526,0.893786,-0.948798,-1.04029,0.957976,-0.515956,-0.359797,-0.559241,-0.614546,-0.524402,0 +2.50956,1.24735,0.37542,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,-0.489996,-0.535235,0.890574,-0.601861,1.94249,1.89335,-0.0231245,-0.458336,2.96362,2.78252,2.897,-0.131415,-0.524402,0 +2.50956,1.76473,0.418278,-0.46381,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.535235,-1.45474,-0.653201,2.01015,1.89335,-0.701232,-0.458336,2.96362,2.91078,3.10437,-0.269452,1.11272,0 +2.50956,1.76473,0.461136,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.535235,-1.45474,-0.781552,2.1793,1.89335,-1.04029,-0.458336,2.96362,3.03903,3.31175,-0.338471,1.11272,0 +2.50956,2.28212,0.353991,-1.48212,-0.638287,-0.0574621,-0.268691,-0.290245,-0.489996,-0.535235,-0.957248,-0.704542,1.94249,1.67044,-0.701232,-0.458336,2.59735,2.59013,2.75875,-0.303962,-0.524402,0 +0.883679,3.0582,1.14686,-0.803245,-0.300473,-0.0574621,-0.268691,-0.639228,0.642198,-0.535235,-1.01055,1.99083,-1.44043,1.94908,2.6893,-0.458336,2.59735,1.88471,2.27488,1.17994,1.11272,0 +0.883679,2.7995,1.08258,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,-1.45474,-0.216808,1.13059,1.39179,1.33309,-0.458336,2.59735,2.33362,2.6205,0.110151,1.11272,0 +0.883679,2.54081,0.868286,-0.803245,-0.638287,-0.0574621,-0.268691,-0.5229,-0.263557,-0.535235,-1.45474,0.142575,0.623152,1.33607,-0.701232,-0.458336,2.35317,2.46187,2.6205,-0.269452,1.11272,0 +0.883679,4.09297,1.6183,-1.48212,-0.638287,-0.0574621,-0.268691,-0.871883,1.09507,-0.535235,-1.45474,1.88815,-1.27129,2.00481,2.0112,-0.458336,1.9869,1.49994,1.65275,0.627791,1.11272,0 +0.883679,3.31689,1.31829,-1.48212,0.0373407,-0.0574621,-0.268691,-0.871883,2.00083,-0.535235,-1.17046,2.0165,-1.44043,2.00481,2.0112,-0.458336,1.80376,1.24342,1.5145,1.24896,1.11272,0 +0.883679,3.31689,1.08258,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,-1.45474,1.52876,-0.865335,1.89335,0.315929,-0.458336,2.59735,2.46187,2.68962,-0.165924,1.11272,0 +0.375592,-0.0461169,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.603215,0.769334,0.926109,0.681649,-0.797677,0.16577,1.33309,-0.458336,0.338678,0.602136,0.477631,-0.476509,1.11272,0 +0.375592,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.756704,-0.829654,0.66062,0.872807,0.655978,-0.763847,0.16577,-0.362178,-0.458336,0.338678,0.602136,0.408506,-0.545527,1.11272,1 +0.375592,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,1.42162,-0.122175,0.655978,-0.763847,0.16577,-0.362178,-0.458336,0.338678,0.409749,0.339381,-0.614546,1.11272,1 +0.477209,-0.563502,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.376776,0.443191,1.17485,0.81,-0.66236,0.667325,1.33309,0.957976,0.277632,0.409749,0.339381,-0.545527,1.11272,0 +0.477209,-0.563502,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.716435,0.66062,-0.264315,0.81,-0.66236,0.667325,-0.0231245,-0.458336,0.277632,0.409749,0.270256,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-0.829654,0.986762,1.19262,0.578968,-0.730018,0.0543129,-0.0231245,-0.458336,0.399723,0.602136,0.546756,-0.545527,1.11272,1 +0.985296,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.10569,-0.942873,0.986762,0.943877,0.578968,-0.730018,0.0543129,-0.0231245,-0.458336,0.399723,0.602136,0.546756,-0.580037,1.11272,1 +0.985296,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,0.769334,0.393083,1.04103,-1.27129,0.16577,-0.0231245,-0.458336,0.338678,0.602136,0.477631,-0.614546,1.11272,1 +1.18853,0.988654,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.535235,0.0910356,0.553298,-0.66236,0.110041,-0.0231245,-0.458336,1.3154,1.30755,1.30713,-0.476509,1.11272,0 +1.18853,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.535235,-0.282082,-1.26929,1.73952,0.110041,-1.37934,-0.458336,1.19331,1.37168,1.37625,-0.614546,-0.524402,1 +0.680444,-0.563502,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,-0.535235,1.4236,0.964021,-1.23746,0.0543129,0.994036,-0.458336,0.521813,0.666265,0.61588,-0.511018,1.11272,0 +0.680444,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.349558,-0.716435,-0.535235,1.17485,0.347936,-0.730018,-0.447242,-0.0231245,-0.458336,0.338678,0.666265,0.546756,-0.545527,1.11272,0 +1.18853,-0.822195,-0.203162,-1.48212,-0.300473,-0.0574621,-0.268691,1.10569,-1.05609,1.14983,-0.139942,-1.03825,1.0291,-0.558699,-0.0231245,-0.458336,0.521813,0.666265,0.61588,-0.614546,1.11272,1 +1.18853,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,1.63905,-0.51306,-1.44898,1.53654,-0.614428,-1.04029,-0.458336,0.521813,0.730394,0.61588,-0.649055,-0.524402,1 +1.18853,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,0.714977,0.393083,-1.01258,0.995274,-0.558699,-0.0231245,-0.458336,0.521813,0.602136,0.61588,-0.614546,1.11272,1 +0.477209,-0.822195,0.418278,0.215061,0.0373407,-0.0574621,-0.268691,0.698541,-0.942873,0.878048,-0.58413,-0.42217,0.217201,-0.558699,0.315929,-0.458336,0.582859,0.666265,0.685005,-0.545527,1.11272,1 +0.782061,-0.822195,-0.160304,-0.46381,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,0.28012,-0.0155696,-1.21795,1.23208,-0.614428,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.782061,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,0.66062,-0.22878,-1.32063,1.33357,-0.670156,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,1 +0.782061,-0.822195,-0.138875,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.942873,0.66062,-0.0688721,-1.16661,1.16442,-0.614428,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.614546,1.11272,1 +0.273975,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.697392,4.94453,-0.535235,3.80445,1.99083,-1.4066,2.00481,0.315929,3.7906,0.521813,0.986909,0.89238,1.49053,1.11272,0 +0.273975,3.31689,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.697392,4.03878,-0.535235,-0.530828,1.99083,-1.4066,2.00481,2.35025,2.37429,0.521813,1.56407,1.65275,1.90464,1.11272,0 +0.680444,-0.0461169,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-0.697392,4.152,-0.535235,3.75115,1.42608,-1.47426,0.667325,2.0112,0.957976,0.643904,0.538007,0.685005,0.834848,1.11272,0 +0.680444,-0.822195,-0.203162,1.23337,1.3886,-0.0574621,-0.268691,-0.697392,3.0198,-0.535235,2.64956,1.45175,-1.47426,0.723053,1.67214,0.957976,0.338678,0.153234,0.339381,0.282698,1.11272,0 +0.680444,0.729961,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.5229,4.60487,-0.535235,4.71059,2.0165,-1.47426,1.94908,1.33309,0.957976,0.643904,0.858651,0.89238,0.834848,1.11272,0 +0.680444,-0.0461169,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,-0.5229,2.45371,-0.535235,2.40081,1.45175,-1.47426,0.723053,0.315929,-0.458336,0.338678,0.409749,0.477631,0.213679,1.11272,0 +-0.335729,-0.0461169,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,-0.406572,1.77439,-0.535235,3.39579,1.88815,-1.44043,1.72616,0.654983,2.37429,-0.271775,-0.039153,-0.00624269,0.282698,-0.524402,0 +-0.335729,0.471268,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-0.639228,1.32151,-0.535235,0.0910356,1.88815,-1.44043,1.72616,0.994036,2.37429,-0.271775,-0.039153,-0.282742,0.662301,-0.524402,0 +-0.335729,0.212576,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-0.697392,1.66117,-0.535235,0.606294,1.88815,-1.44043,1.72616,1.33309,0.957976,-0.638046,-0.103282,-0.490116,1.17994,-0.524402,0 +-0.335729,-0.822195,-0.203162,-1.48212,1.72641,-0.0574621,-0.268691,-0.581064,0.528978,-0.535235,-0.921713,0.501957,-1.20363,-0.893069,-0.0231245,0.957976,-0.638046,-0.872829,-0.83574,0.0756414,1.11272,0 +-0.538964,-0.563502,-0.203162,1.91224,0.375155,-0.0574621,-0.268691,-0.581064,1.66117,-0.535235,1.38806,1.68279,-1.30512,1.50325,1.67214,0.957976,-0.515956,-0.295669,-0.628366,0.627791,-0.524402,0 +-0.538964,-0.822195,-0.203162,1.91224,1.05078,-0.0574621,-0.268691,-0.0575893,0.868636,-0.535235,0.606294,1.11804,-1.47426,-0.00141549,1.33309,0.957976,-0.515956,-0.744571,-0.697491,-0.0623961,1.11272,0 +-0.538964,-0.30481,-0.203162,2.59111,0.375155,-0.0574621,-0.268691,-0.988211,2.00083,-0.535235,1.19262,1.81114,-1.47426,1.50325,2.0112,-0.458336,-0.760137,-0.103282,-0.697491,1.73209,-0.524402,0 +-0.538964,-0.30481,-0.203162,2.25167,0.0373407,-0.0574621,-0.268691,-1.10454,2.34049,-0.535235,2.09877,1.70846,-1.33894,1.50325,1.67214,0.957976,-0.760137,0.153234,-0.559241,2.07718,-0.524402,0 +-0.538964,0.988654,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-0.115753,1.66117,-0.426521,0.393083,1.47742,-1.44043,0.83451,1.67214,0.957976,-0.271775,-0.167411,-0.213617,0.17917,-0.524402,0 +-0.538964,0.988654,-0.203162,-0.124374,1.05078,-0.0574621,-0.268691,-0.232081,1.32151,-0.535235,-0.761806,2.0165,-1.47426,1.94908,2.35025,0.957976,-0.271775,-0.295669,-0.351867,0.0756414,-0.524402,0 +-0.538964,0.988654,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,0.175066,0.642198,-0.317807,-0.406455,1.81114,-1.44043,1.55898,1.33309,-0.458336,-0.271775,-0.103282,-0.144492,-0.131415,-0.524402,0 +-0.538964,1.24735,-0.203162,1.23337,1.3886,-0.0574621,-0.268691,-0.290245,1.20829,-0.535235,-0.6552,2.0165,-1.47426,1.94908,2.6893,2.37429,-0.271775,-0.295669,-0.351867,0.17917,-0.524402,0 +-0.538964,0.988654,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-0.639228,2.34049,-0.535235,1.24592,1.91382,-1.37277,1.89335,0.654983,2.37429,-0.271775,0.0891048,-0.282742,1.59405,-0.524402,0 +-0.538964,-0.563502,-0.203162,0.893932,1.3886,-0.0574621,-0.268691,-0.464736,1.54795,-0.535235,1.90332,1.47742,-1.44043,0.83451,0.654983,-0.458336,-0.271775,-0.616313,-0.559241,0.17917,-0.524402,0 +-0.538964,0.988654,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,-0.639228,2.79336,-0.535235,2.1876,1.99083,-1.44043,1.94908,0.994036,0.957976,-0.271775,0.409749,-0.144492,2.21522,-0.524402,0 +-0.538964,0.988654,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-0.639228,2.79336,-0.535235,1.83225,1.91382,-1.37277,1.89335,0.994036,2.37429,-0.271775,0.281491,-0.213617,2.07718,-0.524402,0 +-0.538964,1.50604,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.581064,3.13302,-0.535235,3.21812,1.96516,-1.4066,1.94908,0.994036,0.957976,-0.271775,0.794523,0.132007,2.80188,-0.524402,0 +-0.538964,2.54081,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.755555,4.03878,-0.535235,1.38806,1.96516,-1.4066,1.94908,0.994036,2.37429,-0.271775,1.30755,1.72188,4.07873,1.11272,0 +-0.538964,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,-0.268691,-0.5229,1.43473,-0.535235,1.17485,1.47742,-1.44043,0.83451,0.315929,0.957976,-0.271775,-0.680442,-0.628366,0.213679,-0.524402,0 +-0.538964,-0.0461169,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.464736,1.43473,-0.535235,1.58351,1.47742,-1.44043,0.83451,0.994036,-0.458336,-0.271775,-0.552184,-0.420991,0.110151,-0.524402,0 +0.273975,0.212576,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,1.28018,-0.603215,-0.535235,1.60128,1.42608,-1.33894,0.890238,0.315929,-0.458336,0.155542,0.281491,0.201132,-0.40749,1.11272,0 +-1.3519,-0.0461169,-0.0317302,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.535235,0.179873,0.0142237,0.386347,0.667325,0.654983,-0.458336,-0.882227,-0.23154,-0.766615,0.386226,-2.16152,0 +-1.3519,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.535235,0.535224,-1.11526,0.521664,-1.56181,-0.701232,-0.458336,-0.882227,-0.680442,-0.83574,-0.580037,-0.524402,0 +-1.3519,-0.0461169,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.581064,-0.263557,-0.535235,0.250943,-1.16661,0.623152,-1.50608,-1.04029,-0.458336,-0.638046,-0.488055,-0.628366,-0.580037,-0.524402,0 +-1.3519,-0.0461169,-0.0317302,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.535235,0.304246,-0.0884571,0.386347,0.444411,-0.0231245,-0.458336,-0.882227,-0.488055,-0.83574,-0.0969054,-2.16152,0 +-1.3519,-0.0461169,-0.138875,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.376776,-0.535235,0.0910356,-0.165468,0.623152,0.667325,-0.0231245,-0.458336,-0.882227,-0.167411,-0.697491,0.420735,-2.16152,0 +-1.3519,-0.0461169,-0.0745881,-0.124374,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.215408,-0.0884571,0.521664,0.667325,0.994036,-0.458336,-0.882227,-0.23154,-0.766615,0.420735,-2.16152,0 +-1.3519,-0.563502,-0.0317302,-0.46381,-0.300473,-0.0574621,-0.268691,-0.290245,-0.263557,-0.535235,0.837272,1.16938,-1.33894,0.332955,2.0112,-0.458336,-1.37059,-1.06522,-1.45786,-0.165924,-0.524402,0 +-1.3519,-0.822195,-0.0745881,-0.46381,0.0373407,-0.0574621,-0.268691,-0.115753,-0.489996,-0.535235,0.304246,-0.807222,0.28486,-1.28317,-0.362178,-0.458336,-1.37059,-1.32173,-1.52699,-0.614546,-0.524402,0 +-1.3519,-0.822195,-0.0745881,0.554496,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,-0.535235,1.03271,-1.06392,0.420177,-1.61754,-1.04029,-0.458336,-1.00432,-1.00109,-1.18136,-0.545527,-0.524402,0 +-1.3519,-0.0461169,0.225417,-0.124374,-0.638287,-0.0574621,-0.268691,-0.639228,0.18932,-0.535235,0.943877,1.0667,-1.06831,0.555868,0.654983,-0.458336,-1.12641,-0.359797,-0.904865,0.800338,-0.524402,0 +-1.3519,-0.822195,0.0111277,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,1.35253,-0.293819,0.318689,-0.112872,0.654983,-0.458336,-1.12641,-1.06522,-1.25049,-0.511018,-2.16152,0 +-1.3519,-0.822195,-0.096017,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,1.38806,-0.293819,0.318689,-0.112872,-0.0231245,-0.458336,-1.12641,-0.936957,-1.18136,-0.511018,-2.16152,0 +-1.3519,0.729961,0.37542,0.554496,-0.638287,-0.0574621,-0.268691,-0.697392,0.415759,-0.535235,0.250943,1.45175,-1.06831,1.39179,0.994036,-0.458336,-0.760137,0.0891048,-0.420991,1.0419,-0.524402,0 +-1.3519,0.729961,0.16113,1.5728,-0.638287,-0.0574621,-0.268691,-0.697392,0.18932,-0.535235,1.19262,0.193915,0.081884,0.555868,0.315929,0.957976,1.43749,0.473878,0.0628821,1.7666,-0.524402,0 +-1.3519,1.24735,0.182559,1.23337,-0.638287,-0.0574621,-0.268691,-0.697392,0.30254,-0.535235,-1.08162,0.655978,-0.527043,0.555868,0.994036,-0.458336,1.43749,0.409749,-0.00624269,1.93915,-0.524402,0 +-1.3519,0.212576,0.0111277,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,0.18932,-0.535235,0.552991,0.655978,-0.527043,0.555868,-0.0231245,-0.458336,-1.12641,-0.167411,-0.697491,1.11092,-0.524402,0 +1.49338,-0.30481,-0.117446,-0.46381,-0.638287,-0.0574621,-0.268691,1.74549,-0.942873,-0.372164,0.250943,-0.986914,1.57037,0.444411,-0.701232,-0.458336,0.765994,1.11517,1.03063,-0.580037,-0.524402,0 +1.49338,-0.822195,-0.138875,-0.124374,-0.638287,-0.0574621,-0.268691,1.86182,-1.05609,-0.317807,0.322013,-1.29496,1.57037,-0.224329,-1.04029,-0.458336,0.765994,1.05104,1.03063,-0.614546,-0.524402,1 +1.49338,-0.822195,-0.160304,0.215061,-0.638287,-0.0574621,-0.268691,2.03631,-1.05609,-0.26345,0.037733,-1.3463,1.63803,-0.224329,-1.37934,-0.458336,0.765994,1.05104,0.89238,-0.649055,-0.524402,2 +1.49338,-0.822195,-0.138875,0.215061,-0.638287,-0.0574621,-0.268691,1.74549,-0.942873,-0.317807,0.357548,-0.986914,1.57037,0.444411,-1.04029,-0.458336,0.765994,0.986909,0.89238,-0.614546,-2.16152,2 +1.49338,-0.822195,-0.117446,0.215061,-0.638287,-0.0574621,-0.268691,1.80365,-0.942873,-0.317807,0.322013,-0.986914,1.57037,0.444411,-1.04029,-0.458336,0.765994,0.986909,0.89238,-0.614546,-2.16152,1 +1.49338,-0.822195,-0.117446,-0.124374,-0.638287,-0.0574621,-0.268691,1.62916,-0.829654,-0.535235,0.446386,-0.986914,1.57037,0.444411,-1.04029,-0.458336,0.765994,0.986909,0.89238,-0.649055,-2.16152,1 +1.08691,0.729961,-0.0317302,-0.803245,-0.300473,-0.0574621,-0.268691,1.51283,-0.829654,-0.535235,0.197641,0.604638,-0.391726,0.667325,-0.0231245,-0.458336,1.13227,1.24342,1.16888,-0.476509,1.11272,0 +1.08691,-0.30481,0.0111277,-0.803245,-0.638287,-0.0574621,-0.268691,1.68733,-0.829654,-0.535235,0.641829,-0.42217,1.09676,0.890238,-0.701232,-0.458336,1.13227,1.1793,1.16888,-0.476509,-0.524402,1 +1.08691,1.76473,-0.0531591,-1.14268,-0.300473,-0.0574621,-0.268691,1.39651,-0.603215,-0.535235,-0.975016,0.604638,-0.391726,0.667325,-0.362178,-0.458336,1.13227,1.24342,1.16888,-0.441999,1.11272,0 +1.08691,1.24735,-0.0531591,-1.14268,-0.300473,-0.0574621,-0.268691,1.51283,-0.716435,-0.535235,-0.530828,0.707319,-0.391726,0.890238,-0.362178,-0.458336,1.13227,1.24342,1.30713,-0.476509,1.11272,0 +1.08691,0.471268,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-0.489996,-0.535235,0.268711,0.707319,-0.730018,0.332955,-0.0231245,-0.458336,0.521813,0.794523,0.75413,-0.511018,1.11272,0 +1.39177,1.24735,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,1.39651,-0.716435,-0.535235,0.233176,0.296596,0.758469,1.89335,-0.701232,-0.458336,1.13227,1.49994,1.44538,-0.303962,-0.524402,0 +1.39177,0.471268,0.0968435,-0.46381,-0.638287,-0.0574621,-0.268691,1.16385,-0.603215,-0.535235,0.481921,0.0398938,0.893786,1.55898,-1.04029,-0.458336,1.13227,1.43581,1.30713,-0.269452,-0.524402,0 +1.49338,1.24735,-0.096017,-0.124374,-0.638287,-0.0574621,-0.268691,1.51283,-0.716435,-0.535235,0.304246,0.296596,0.758469,1.89335,-0.701232,-0.458336,1.25436,1.56407,1.44538,-0.269452,-0.524402,0 +1.08691,0.729961,-0.0745881,-0.46381,-0.638287,-0.0574621,-0.268691,-0.755555,0.30254,-0.535235,2.06323,0.86134,-0.763847,0.611597,-0.0231245,0.957976,0.643904,0.92278,0.89238,-0.269452,1.11272,0 +1.08691,1.76473,0.0111277,-0.803245,-0.638287,-0.0574621,-0.268691,-0.639228,0.0761009,-0.535235,0.588526,1.24639,-1.23746,0.667325,-0.701232,0.957976,0.643904,0.986909,0.823255,-0.234943,1.11272,0 +1.08691,-0.30481,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,-0.697392,0.528978,-0.535235,2.93384,1.22072,-1.27129,0.555868,0.654983,0.957976,0.82704,0.858651,0.89238,-0.234943,1.11272,0 +1.08691,0.729961,-0.096017,-0.803245,-0.638287,-0.0574621,-0.268691,-0.813719,0.415759,-0.535235,2.36528,0.83567,-0.763847,0.555868,0.315929,0.957976,0.765994,0.92278,0.89238,-0.303962,1.11272,0 +0.985296,0.471268,0.0754146,-0.46381,-0.638287,-0.0574621,-0.268691,-0.464736,0.30254,-0.535235,0.322013,1.68279,-1.13597,1.78189,1.67214,0.957976,0.643904,0.92278,0.823255,-0.37298,-0.524402,0 +1.29015,1.50604,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,-0.348408,0.642198,-0.535235,3.39579,1.52876,-1.47426,0.890238,0.994036,-0.458336,1.01018,1.11517,1.16888,-0.0278867,1.11272,0 +1.29015,2.02342,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,-0.406572,0.642198,-0.535235,3.09375,1.3234,-1.47426,0.444411,-0.0231245,-0.458336,1.01018,1.05104,1.16888,-0.0969054,1.11272,0 +1.29015,1.50604,-0.0745881,-0.803245,-0.638287,-0.0574621,-0.268691,-0.406572,0.755417,-0.535235,3.18258,1.60578,-1.47426,1.05742,1.33309,-0.458336,1.13227,1.24342,1.30713,0.0411321,1.11272,0 +1.29015,3.0582,0.332562,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.535235,-1.20599,1.09237,-0.696189,1.22461,-0.362178,-0.458336,1.19331,1.75646,1.791,-0.200434,1.11272,0 +0.883679,-0.822195,-0.181733,-0.803245,-0.638287,-0.0574621,-0.268691,-0.988211,1.77439,-0.26345,5.10148,0.964021,-1.47426,-0.335786,-1.04029,-0.458336,0.216587,0.34562,0.408506,-0.338471,1.11272,0 +0.883679,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,-0.406572,-0.263557,0.117049,0.464154,0.681649,-1.23746,-0.558699,-0.701232,-0.458336,0.643904,0.602136,0.61588,-0.511018,1.11272,0 +0.883679,1.24735,-0.0103012,-0.46381,-0.638287,-0.0574621,-0.268691,-0.115753,-0.263557,-0.426521,0.0910356,1.55443,-1.44043,1.0017,0.315929,-0.458336,0.521813,1.1793,0.961504,0.00662268,1.11272,0 +0.883679,2.54081,0.0754146,-0.124374,-0.638287,-0.0574621,-0.268691,-0.115753,-0.150338,-0.535235,-0.6552,1.63145,-1.44043,1.16888,0.315929,-0.458336,1.13227,1.49994,1.37625,-0.165924,1.11272,0 +0.883679,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,-0.372164,0.215408,-1.11526,1.46888,-0.00141549,-0.701232,-0.458336,0.521813,0.666265,0.546756,-0.614546,-2.16152,0 +-0.0308771,1.24735,0.16113,-0.124374,-0.638287,-0.0574621,-0.268691,-0.639228,2.00083,-0.535235,3.4491,0.88701,-1.33894,-0.280057,-0.0231245,-0.458336,0.338678,0.153234,0.270256,0.317207,1.11272,0 +-0.0308771,1.24735,0.16113,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,1.32151,-0.535235,1.99216,1.09237,-1.33894,0.16577,-0.362178,-0.458336,0.338678,0.153234,0.201132,0.110151,1.11272,0 +-0.335729,0.988654,0.246846,-0.46381,-0.638287,-0.0574621,-0.268691,-0.115753,1.66117,-0.535235,3.69784,1.11804,-1.4066,0.110041,-0.701232,-0.458336,-0.21073,0.0249759,-0.0753675,0.17917,1.11272,0 +-0.335729,1.50604,0.332562,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,1.32151,-0.535235,3.52017,1.11804,-1.4066,0.110041,-0.701232,-0.458336,-0.21073,0.217363,0.0628821,0.14466,1.11272,0 +-0.132494,2.02342,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-0.581064,1.20829,-0.535235,1.56574,1.14371,-1.4066,0.16577,2.0112,-0.458336,0.216587,0.34562,0.339381,0.489754,1.11272,0 +-1.3519,-0.0461169,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,-0.0575893,0.18932,0.0626921,1.92109,1.58011,-1.23746,1.39179,1.67214,-0.458336,-0.760137,-0.744571,-0.83574,-0.131415,-0.524402,0 +-1.3519,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,0.878048,-0.388688,-1.29496,0.758469,-1.56181,-1.37934,-0.458336,-0.760137,-0.744571,-0.904865,-0.614546,-0.524402,0 +0.0707402,2.54081,-0.0745881,-0.46381,0.375155,-0.0574621,-0.268691,0.000574525,1.54795,-0.535235,-1.45474,1.01536,-1.13597,0.332955,0.315929,-0.458336,0.765994,0.794523,1.03063,0.420735,1.11272,0 +0.0707402,3.57558,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.0587384,0.981856,-0.535235,-1.45474,1.27206,-1.47426,0.332955,0.315929,-0.458336,1.37645,0.986909,1.16888,0.317207,1.11272,0 +1.08691,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.263557,0.00833509,2.40081,1.14371,-0.763847,1.22461,1.67214,-0.458336,0.94913,1.05104,1.03063,-0.441999,1.11272,1 +1.08691,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.603215,0.0626921,0.961644,0.501957,-0.66236,-0.00141549,0.315929,0.957976,0.94913,1.05104,0.961504,-0.545527,1.11272,1 +1.08691,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,-0.26345,-0.37092,-1.52599,1.84101,-0.280057,-1.04029,-0.458336,0.94913,1.24342,1.16888,-0.649055,-0.524402,1 +0.985296,-0.0461169,-0.0531591,-1.48212,-0.300473,-0.0574621,-0.268691,0.175066,-0.263557,-0.372164,0.712899,1.42608,-0.66236,2.00481,1.33309,-0.458336,0.643904,0.794523,0.75413,-0.511018,-0.524402,0 +0.985296,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.582213,-0.829654,-0.26345,0.393083,0.707319,-0.66236,0.444411,-0.701232,-0.458336,0.765994,0.858651,0.823255,-0.614546,1.11272,0 +0.985296,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.829654,-0.535235,0.126571,-0.293819,0.420177,0.0543129,-0.362178,-0.458336,0.643904,0.92278,0.823255,-0.614546,1.11272,0 +0.985296,0.988654,0.182559,-1.48212,-0.638287,-0.0574621,-0.268691,-0.173917,-0.0371185,-0.535235,0.570759,0.784329,-0.459384,0.945967,0.654983,-0.458336,0.521813,0.794523,0.685005,-0.476509,-0.524402,0 +0.477209,0.212576,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,-0.115753,-0.376776,-0.535235,0.819504,1.14371,-0.763847,1.22461,0.994036,-0.458336,0.399723,0.602136,0.477631,-0.441999,-0.524402,0 +0.477209,0.212576,0.16113,-1.48212,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.961644,1.14371,-0.763847,1.22461,0.315929,-0.458336,0.399723,0.538007,0.408506,-0.441999,-0.524402,0 +0.477209,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,-0.5229,-0.150338,-0.535235,1.4769,0.347936,-0.763847,-0.502971,-0.0231245,-0.458336,0.399723,0.34562,0.270256,-0.476509,1.11272,0 +0.477209,-0.822195,0.0111277,-1.48212,-0.638287,-0.0574621,-0.268691,-0.5229,-0.150338,-0.535235,2.04546,0.501957,-0.763847,-0.168601,-0.362178,-0.458336,0.399723,0.409749,0.270256,-0.476509,1.11272,0 +0.273975,1.24735,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,-0.406572,1.09507,-0.535235,1.99216,1.7598,-1.44043,1.44752,0.315929,6.62322,0.399723,0.473878,0.477631,-0.0623961,1.11272,0 +0.273975,1.50604,-0.0317302,-1.48212,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.0371185,-0.535235,-0.22878,2.0165,-1.44043,2.00481,2.6893,-0.458336,0.399723,0.666265,0.61588,-0.37298,-0.524402,0 +-1.04705,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,3.37847,-0.530828,-1.08959,0.487835,-1.56181,-0.362178,-0.458336,-0.882227,-0.680442,-0.904865,-0.614546,-0.524402,2 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.28253,4.08511,-0.868411,-1.52599,0.826128,-1.95191,-1.04029,-0.458336,-0.882227,-0.8087,-0.97399,-0.649055,-0.524402,2 +-1.04705,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.829654,-0.535235,0.393083,-0.47351,-0.324067,-1.56181,-0.0231245,-0.458336,-0.760137,-0.680442,-0.83574,-0.580037,1.11272,1 +-1.04705,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,2.94362,-0.406455,-0.47351,-0.324067,-1.56181,-0.362178,-0.458336,-0.882227,-0.680442,-0.83574,-0.614546,1.11272,1 +-1.04705,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,2.61747,-0.29985,-0.47351,-0.324067,-1.56181,-0.362178,-0.458336,-0.882227,-0.744571,-0.97399,-0.614546,1.11272,1 +-1.04705,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.05233,-0.406455,-1.03825,0.25103,-1.84045,-1.04029,-0.458336,-0.882227,-0.744571,-0.97399,-0.614546,1.11272,1 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,4.41126,-0.939481,-1.57733,0.893786,-1.95191,-0.701232,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-0.524402,2 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.16931,4.3569,-0.957248,-1.57733,0.893786,-1.95191,-0.701232,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-0.524402,2 +-1.04705,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,2.40005,-0.246547,-1.01258,0.217201,-1.84045,-1.37934,-0.458336,-0.882227,-0.872829,-1.04311,-0.614546,1.11272,2 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,3.26976,-0.672968,-1.32063,0.555494,-1.95191,-0.701232,-0.458336,-0.882227,-0.680442,-0.904865,-0.614546,1.11272,2 +-1.04705,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.39651,-1.16931,3.65026,-0.72627,-1.32063,0.555494,-1.95191,-1.04029,-0.458336,-0.882227,-0.744571,-0.97399,-0.649055,1.11272,2 +-0.335729,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.30254,0.0626921,0.108803,0.630308,-1.06831,-0.391514,0.994036,-0.458336,-0.21073,-0.103282,-0.282742,-0.511018,1.11272,0 +-0.335729,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,0.30254,-0.100379,0.250943,1.14371,-1.06831,0.723053,1.67214,-0.458336,-0.21073,-0.039153,-0.213617,-0.476509,-0.524402,0 +-0.335729,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.0761009,0.0626921,-0.175477,-0.986914,0.893786,-0.670156,-0.701232,-0.458336,-0.271775,-0.167411,-0.282742,-0.614546,-0.524402,0 +-0.335729,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.33719,-0.150338,0.117049,-0.104407,-0.909903,0.893786,-0.502971,-1.04029,-0.458336,-0.21073,-0.103282,-0.213617,-0.614546,-0.524402,0 +-0.335729,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.51169,0.0761009,0.0626921,-0.15771,-0.961244,0.859957,-0.670156,-1.04029,-0.458336,-0.271775,-0.23154,-0.351867,-0.580037,-0.524402,0 +-0.335729,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,-0.0371185,0.00833509,-0.44199,-0.986914,0.893786,-0.670156,-0.701232,-0.458336,-0.271775,-0.103282,-0.282742,-0.614546,-0.524402,0 +-0.538964,-0.822195,-0.203162,0.554496,4.09111,-0.0574621,4.81651,-1.39536,5.62385,-0.535235,-1.45474,1.88815,-1.4066,1.78189,2.0112,2.37429,-2.89672,-2.34779,-3.25511,2.62933,-2.16152,1 +0.477209,-0.822195,-0.181733,0.215061,-0.300473,-0.0574621,3.12144,0.582213,0.0761009,0.00833509,0.126571,1.58011,-1.13597,1.55898,1.67214,0.957976,0.277632,-0.488055,-0.00624269,1.93915,-0.524402,1 +0.477209,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,4.81651,0.582213,-0.0371185,0.0626921,0.357548,1.58011,-1.13597,1.55898,2.35025,0.957976,0.155542,-0.552184,-0.0753675,1.93915,-0.524402,1 +0.477209,-0.822195,-0.138875,-0.46381,-0.638287,-0.0574621,3.12144,0.756704,-0.376776,-0.100379,-0.122175,1.22072,-0.831506,1.28034,2.0112,0.957976,0.277632,-0.295669,0.132007,1.45602,-0.524402,1 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,3.12144,0.814868,-0.376776,0.117049,0.322013,1.22072,-0.831506,1.28034,2.6893,0.957976,0.155542,-0.295669,0.132007,1.24896,-0.524402,1 +0.477209,-0.822195,-0.096017,-0.46381,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,-0.046022,-0.0155696,-1.11526,0.927615,-0.893069,-1.04029,-0.458336,0.277632,0.34562,0.270256,-0.614546,1.11272,1 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,0.225763,-0.211012,-1.29496,1.19825,-0.837341,-0.362178,-0.458336,0.216587,0.34562,0.270256,-0.614546,-0.524402,1 +0.477209,-0.822195,-0.203162,0.554496,0.0373407,-0.0574621,3.12144,0.640377,-0.263557,0.28012,-0.22878,1.58011,-1.13597,1.55898,1.33309,2.37429,0.216587,-0.167411,0.201132,0.972885,-0.524402,1 +0.782061,-0.563502,-0.203162,-1.14268,0.375155,-0.0574621,-0.268691,0.407721,-0.489996,-0.154736,0.233176,1.37474,-1.13597,1.11315,2.6893,2.37429,0.765994,0.281491,0.61588,1.0419,1.11272,0 +0.782061,-0.563502,-0.203162,-1.14268,0.712969,-0.0574621,-0.268691,0.524049,-0.489996,0.117049,0.0555005,1.68279,-1.13597,1.78189,1.33309,2.37429,0.765994,0.153234,0.61588,1.69758,-0.524402,0 +0.782061,-0.822195,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,0.000574525,-0.603215,-0.535235,0.268711,-0.42217,0.318689,-0.391514,0.654983,0.957976,1.01018,0.602136,0.61588,-0.131415,1.11272,0 +0.782061,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,0.225763,-0.0688721,-0.935573,1.06293,-0.280057,-1.04029,-0.458336,0.765994,0.730394,0.75413,-0.580037,1.11272,1 +0.680444,2.28212,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,0.582213,-0.0371185,-0.535235,-0.850643,1.73413,-1.47426,1.33607,0.315929,-0.458336,2.35317,1.82058,1.99838,0.558773,1.11272,0 +0.680444,1.76473,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.582213,-0.0371185,-0.535235,0.304246,1.73413,-1.47426,1.33607,-0.0231245,-0.458336,2.35317,1.88471,2.13663,0.420735,1.11272,0 +0.680444,2.7995,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,0.0761009,-0.535235,-1.45474,1.73413,-1.47426,1.33607,-0.362178,-0.458336,0.765994,1.88471,1.99838,0.731319,1.11272,0 +0.680444,1.76473,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.263557,-0.535235,-1.45474,-0.216808,0.893786,1.0017,-1.04029,-0.458336,2.35317,1.82058,2.13663,0.386226,1.11272,0 +0.680444,2.54081,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,0.0761009,-0.535235,-1.45474,1.73413,-1.47426,1.33607,-0.362178,-0.458336,2.35317,1.82058,1.99838,0.558773,1.11272,0 +0.680444,1.76473,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.150338,-0.535235,-0.708503,1.42608,-1.06831,1.33607,-0.0231245,-0.458336,2.35317,1.88471,2.13663,0.282698,1.11272,0 +0.883679,-0.563502,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,0.175066,-0.150338,-0.535235,2.77393,0.86134,-1.20363,-0.112872,1.33309,-0.458336,0.643904,0.602136,0.61588,-0.37298,1.11272,0 +0.883679,-0.563502,-0.181733,-0.46381,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.535235,0.499689,-0.47351,0.893786,0.444411,-0.362178,-0.458336,0.643904,0.666265,0.61588,-0.580037,-0.524402,0 +0.680444,-0.0461169,-0.138875,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,1.77439,-0.535235,5.79441,1.11804,-0.932994,0.890238,1.67214,2.37429,0.582859,0.666265,0.685005,0.110151,1.11272,0 +-0.132494,-0.822195,6.3541,-0.124374,0.712969,-0.0574621,6.51157,-0.697392,1.54795,-0.535235,-1.45474,1.91382,-1.33894,1.94908,1.67214,2.37429,-3.8124,-2.86082,-4.15373,2.93992,-2.16152,2 +-0.132494,-0.822195,6.18267,-0.803245,0.0373407,-0.0574621,6.51157,-0.581064,1.09507,-0.535235,-1.45474,1.04103,-1.33894,0.0543129,0.315929,0.957976,-3.8124,-3.05321,-4.22286,2.31875,-2.16152,2 +-0.0308771,-0.0461169,2.77546,0.893932,0.0373407,-0.0574621,-0.268691,-1.1627,0.18932,-0.535235,1.17485,-0.0114465,-0.18875,-0.335786,-1.04029,-0.458336,0.155542,0.0249759,-0.00624269,-0.303962,1.11272,0 +-0.0308771,0.471268,3.84691,0.893932,0.0373407,-0.0574621,-0.268691,-1.22087,0.30254,-0.535235,0.837272,0.424947,-0.763847,-0.335786,-0.701232,-0.458336,0.216587,0.0249759,0.0628821,-0.200434,1.11272,0 +-0.0308771,-0.822195,0.0968435,0.215061,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,1.31699,-0.935573,0.656981,-0.948798,-1.04029,-0.458336,-0.21073,-0.039153,-0.144492,-0.545527,-0.524402,0 +-0.0308771,0.471268,3.16118,1.23337,0.375155,-0.0574621,-0.268691,-1.22087,0.30254,-0.535235,1.06825,-0.0114465,-0.18875,-0.335786,-0.701232,-0.458336,0.155542,0.0249759,0.0628821,-0.234943,1.11272,0 +-0.0308771,0.988654,4.83264,0.893932,0.0373407,-0.0574621,-0.268691,-1.10454,0.30254,-0.535235,0.268711,0.424947,-0.763847,-0.335786,-0.701232,-0.458336,0.216587,0.153234,0.201132,-0.269452,1.11272,0 +-0.0308771,0.212576,8.53985,-0.124374,0.375155,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,1.33476,0.93835,-0.899164,0.555868,0.994036,-0.458336,0.338678,-0.616313,-0.213617,1.97366,-0.524402,1 +-0.0308771,-0.822195,7.51126,-0.124374,0.0373407,-0.0574621,3.12144,-1.68618,1.54795,-0.535235,2.36528,0.93835,-0.899164,0.555868,-0.0231245,-0.458336,-1.37059,-0.936957,-1.18136,1.00739,-0.524402,2 +-0.0308771,0.988654,9.54701,-0.46381,0.375155,-0.0574621,-0.268691,-1.27903,0.415759,-0.535235,0.908342,0.91268,-0.865335,0.555868,0.994036,0.957976,0.338678,-0.167411,-0.00624269,0.765829,-0.524402,0 +-0.0308771,1.24735,9.28986,0.215061,1.05078,-0.0574621,-0.268691,-1.33719,0.868636,-0.535235,0.926109,1.40041,-1.37277,0.778782,0.654983,-0.458336,0.338678,-0.423926,-0.00624269,1.73209,1.11272,0 +-0.0308771,0.212576,9.86844,0.215061,0.375155,-0.0574621,1.42637,-1.04637,0.415759,-0.535235,0.233176,1.22072,-1.1698,0.723053,0.994036,0.957976,-0.271775,-0.359797,-0.351867,0.282698,-0.524402,0 +-0.0308771,0.729961,10.0184,0.215061,0.375155,-0.0574621,-0.268691,-0.697392,-0.0371185,-0.535235,-0.495293,0.450617,-0.865335,-0.447242,0.994036,-0.458336,-0.271775,-0.103282,-0.144492,-0.0278867,1.11272,0 +-0.0308771,-0.0461169,9.35415,0.554496,0.712969,-0.0574621,1.42637,-1.33719,0.642198,-0.535235,-0.44199,0.732989,-1.1698,-0.335786,0.315929,-0.458336,-0.271775,-0.680442,-0.559241,0.558773,1.11272,0 +-0.0308771,0.988654,10.1042,0.215061,0.0373407,-0.0574621,-0.268691,-0.871883,0.30254,-0.535235,0.037733,0.501957,-0.865335,-0.335786,-0.0231245,-0.458336,-0.271775,-0.103282,-0.213617,-0.0278867,1.11272,0 +-0.234112,-0.563502,7.70412,-0.46381,0.375155,-0.0574621,3.12144,-1.04637,0.755417,-0.535235,-0.0155696,1.04103,-1.33894,0.0543129,3.36741,-0.458336,-0.515956,-1.44999,-0.697491,2.90541,1.11272,2 +-0.234112,-0.822195,6.97554,-0.46381,0.375155,-0.0574621,3.12144,-0.755555,0.981856,-0.535235,-0.779573,1.47742,-1.33894,1.0017,2.0112,0.957976,-3.8124,-2.28366,-2.49474,4.45833,-2.16152,2 +-0.335729,-0.563502,9.01129,-0.124374,1.05078,-0.0574621,1.42637,-1.27903,0.642198,-0.535235,0.0199655,1.81114,-1.23746,1.89335,4.04552,-0.458336,-0.515956,-0.616313,-0.490116,0.558773,-0.524402,1 +-0.335729,-0.822195,7.21125,-0.46381,0.375155,-0.0574621,4.81651,-1.04637,0.981856,-0.535235,-0.0688721,1.68279,-1.33894,1.44752,3.02836,-0.458336,-0.515956,-1.83476,-1.11224,3.80265,-0.524402,2 +-0.234112,-0.822195,6.71839,-0.803245,0.0373407,-0.0574621,3.12144,0.814868,0.642198,-0.535235,0.730666,1.47742,-1.27129,1.11315,2.35025,-0.458336,-0.21073,-0.936957,-0.490116,1.31798,-0.524402,2 +-0.234112,-0.822195,7.83269,-1.48212,-0.638287,-0.0574621,6.51157,1.91998,-1.16931,-0.535235,-0.104407,-0.550521,0.081884,-1.06025,-0.362178,-0.458336,-1.79791,-0.616313,-0.697491,0.903866,1.11272,2 +-0.335729,-0.822195,7.21125,-1.48212,-0.638287,-0.0574621,4.81651,1.91998,-1.16931,-0.535235,-0.139942,-0.550521,0.081884,-1.06025,-0.362178,-0.458336,-1.79791,-0.744571,-1.11224,0.69681,1.11272,2 +-0.335729,-0.822195,7.36126,-1.48212,-0.638287,-0.0574621,8.20664,1.91998,-1.16931,-0.535235,-1.45474,-1.06392,0.454006,-1.56181,-1.04029,-0.458336,-1.79791,-0.936957,-1.25049,0.14466,-2.16152,2 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.756704,-0.716435,2.61747,0.304246,1.47742,-0.730018,2.00481,1.33309,0.957976,-0.271775,-0.167411,-0.282742,-0.580037,-0.524402,1 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,3.86769,-0.797341,-1.50032,1.09676,-1.45035,-1.04029,-0.458336,-0.271775,-0.167411,-0.282742,-0.649055,-0.524402,2 +-0.335729,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.209093,0.0910356,-1.03825,0.758469,-1.00453,-0.701232,-0.458336,-0.271775,-0.103282,-0.282742,-0.614546,-0.524402,0 +-0.335729,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,0.0626921,-0.104407,-1.29496,1.0291,-1.11598,-1.04029,-0.458336,-0.271775,-0.167411,-0.282742,-0.649055,-0.524402,0 +-0.742198,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,1.04112,-0.122175,-1.14093,0.758469,-1.22744,-0.701232,-0.458336,-0.515956,-0.423926,-0.559241,-0.614546,-0.524402,0 +-0.742198,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,1.63905,-0.264315,-1.11526,0.758469,-1.17171,-0.701232,-0.458336,-0.515956,-0.488055,-0.628366,-0.614546,-0.524402,0 +-0.742198,-0.0461169,-0.096017,-0.124374,0.0373407,-0.0574621,-0.268691,-0.348408,0.868636,-0.535235,3.12928,1.27206,-1.47426,0.332955,1.33309,0.957976,-0.515956,-0.359797,-0.420991,0.00662268,1.11272,0 +-0.742198,0.471268,-0.138875,0.215061,-0.638287,-0.0574621,-0.268691,-0.348408,0.415759,-0.535235,2.34751,0.758659,-1.47426,-0.781613,-0.0231245,-0.458336,-0.271775,-0.295669,-0.420991,-0.303962,1.11272,0 +-1.3519,1.24735,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.232081,0.0761009,-0.26345,1.81449,0.91268,-1.47426,-0.447242,1.33309,-0.458336,-0.515956,-0.359797,-0.559241,-0.269452,1.11272,0 +-0.132494,0.729961,-0.0745881,0.554496,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,0.334477,0.0199655,-0.730212,0.72464,-0.391514,-0.701232,-0.458336,-0.271775,0.217363,0.0628821,-0.40749,-0.524402,0 +-0.132494,1.24735,-0.096017,0.554496,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,-0.535235,0.00219796,-0.730212,0.72464,-0.391514,-0.701232,-0.458336,0.277632,0.409749,0.270256,-0.545527,-0.524402,0 +-0.132494,-0.0461169,-0.096017,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,0.714977,-0.0688721,-0.884233,0.893786,-0.447242,-0.701232,-0.458336,-0.271775,0.0249759,-0.282742,-0.545527,-0.524402,0 +-0.132494,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,1.53033,-0.335385,-1.24362,0.927615,-1.17171,-0.701232,-0.458336,-0.271775,-0.167411,-0.351867,-0.649055,-0.524402,1 +-0.132494,-0.30481,-0.0531591,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,-0.535235,0.730666,-0.755882,0.72464,-0.447242,-0.701232,0.957976,-0.0886391,0.153234,0.0628821,-0.580037,-0.524402,0 +-0.437346,-0.822195,0.0111277,0.215061,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,2.40005,-0.51306,-1.21795,0.826128,-1.28317,-1.04029,-0.458336,-0.393865,-0.295669,-0.420991,-0.649055,-0.524402,1 +-0.437346,-0.822195,-0.0531591,-0.124374,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,3.43283,-0.761806,-1.62867,1.13059,-1.67327,-1.04029,-0.458336,-0.393865,-0.295669,-0.420991,-0.649055,-0.524402,2 +0.985296,-0.822195,0.246846,-1.48212,-0.638287,-0.0574621,-0.268691,1.04752,-1.16931,1.80212,-0.29985,-1.19228,1.26591,-0.502971,-0.701232,-0.458336,0.582859,0.666265,0.61588,-0.614546,-0.524402,1 +0.985296,-0.822195,0.16113,-1.48212,-0.638287,-0.0574621,-0.268691,1.33834,-1.16931,2.18262,-0.548595,-1.47465,1.63803,-0.502971,-1.04029,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,1 +0.883679,-0.822195,0.761141,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.26345,0.712899,-0.678871,0.758469,-0.224329,-0.0231245,-0.458336,0.460768,0.666265,0.61588,-0.580037,1.11272,0 +-0.538964,0.729961,0.139701,-0.46381,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,-0.535235,-0.264315,-0.884233,0.927615,-0.391514,-0.0231245,-0.458336,0.155542,0.217363,0.0628821,-0.476509,-0.524402,0 +-0.538964,0.212576,0.0325567,-0.46381,-0.638287,-0.0574621,-0.268691,0.407721,-0.829654,-0.535235,-0.29985,-0.884233,0.927615,-0.391514,-0.362178,-0.458336,0.155542,0.217363,0.0628821,-0.476509,-0.524402,0 +-0.437346,-0.822195,-0.0317302,-0.803245,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.535235,0.375316,-0.319489,0.25103,-0.280057,-0.362178,-0.458336,0.155542,0.217363,0.132007,-0.580037,-0.524402,1 +-0.437346,0.729961,0.16113,-0.124374,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,-0.535235,-0.779573,-0.884233,0.927615,-0.391514,-1.37934,-0.458336,-0.271775,0.217363,-0.00624269,-0.269452,-0.524402,0 +-1.3519,-0.0461169,0.16113,-0.124374,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,-0.209093,-0.175477,0.604638,-1.13597,-0.558699,-0.701232,-0.458336,-0.882227,-0.552184,-0.904865,-0.40749,1.11272,0 +-1.3519,0.471268,0.225417,0.215061,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,-0.154736,-0.37092,0.604638,-1.13597,-0.558699,-0.701232,-0.458336,-0.882227,-0.552184,-0.904865,-0.303962,1.11272,0 +-1.3519,-0.822195,-0.117446,-0.124374,-0.638287,-0.0574621,-0.268691,0.349558,-0.829654,-0.372164,-0.0155696,-1.32063,0.758469,-1.61754,-1.04029,-0.458336,-0.760137,-0.744571,-0.904865,-0.614546,-0.524402,0 +-1.3519,1.24735,0.439707,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.535235,0.0910356,-0.678871,0.758469,-0.224329,-0.701232,-0.458336,0.94913,0.473878,0.61588,0.282698,1.11272,0 +-1.3519,-0.30481,0.0539856,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,-0.372164,-0.122175,-0.832893,0.758469,-0.558699,-0.362178,-0.458336,-0.882227,-0.616313,-0.904865,-0.476509,-2.16152,0 +-0.945433,1.24735,0.718283,1.23337,-0.638287,-0.0574621,-0.268691,-0.348408,-0.0371185,-0.535235,0.197641,0.065564,0.72464,1.33607,1.67214,0.957976,0.765994,0.666265,0.89238,-0.234943,-0.524402,0 +-0.437346,1.50604,0.546851,-0.46381,-0.638287,-0.0574621,-0.268691,-0.173917,-0.376776,-0.535235,-0.530828,1.09237,-0.62853,1.33607,0.654983,-0.458336,0.765994,0.409749,0.546756,-0.0278867,-0.524402,0 +-0.437346,1.76473,0.653996,-0.124374,-0.638287,-0.0574621,-0.268691,-0.406572,0.0761009,-0.535235,-0.122175,0.065564,0.72464,1.33607,2.0112,0.957976,0.765994,0.666265,0.823255,-0.234943,-0.524402,0 +-0.437346,1.24735,0.825428,0.893932,-0.638287,-0.0574621,-0.268691,-0.406572,0.0761009,-0.535235,0.0555005,0.065564,0.72464,1.33607,1.67214,0.957976,0.765994,0.794523,0.89238,-0.338471,-0.524402,0 +-1.04705,1.24735,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,0.868636,-0.535235,2.32974,0.450617,-1.20363,-1.00453,0.994036,-0.458336,-0.638046,-0.488055,-0.628366,-0.165924,1.11272,0 +-1.04705,1.24735,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.464736,0.18932,-0.535235,1.38806,0.630308,-1.44043,-1.00453,0.654983,0.957976,-0.515956,-0.423926,-0.559241,-0.338471,1.11272,0 +-1.3519,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.348408,0.981856,-0.317807,3.02268,0.93835,-1.20363,0.0543129,-0.0231245,0.957976,-1.00432,-0.680442,-0.83574,-0.0969054,-0.524402,0 +-1.3519,1.50604,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-0.464736,0.642198,-0.535235,1.69011,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-0.515956,-0.488055,-0.628366,-0.234943,-0.524402,0 +0.578827,0.212576,-0.096017,-0.46381,-0.638287,-0.0574621,-0.268691,0.407721,-0.716435,-0.26345,-0.15771,0.784329,-0.966823,0.110041,-0.701232,-0.458336,0.582859,0.666265,0.61588,-0.476509,1.11272,0 +0.578827,-0.30481,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.100379,-0.317617,-1.37197,1.50271,-0.502971,-1.04029,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,1 +0.883679,-0.563502,-0.203162,0.215061,3.07767,-0.0574621,-0.268691,-1.10454,2.00083,-0.535235,-0.708503,1.65712,-1.37277,1.33607,1.33309,2.37429,0.338678,-0.295669,0.0628821,1.31798,-0.524402,0 +0.883679,-0.822195,-0.203162,-0.46381,4.09111,-0.0574621,-0.268691,-1.91883,3.5859,-0.535235,-1.45474,1.40041,-1.37277,0.778782,3.36741,3.7906,-2.4694,-1.2576,-1.59611,2.28424,-0.524402,0 +0.883679,-0.563502,-0.203162,0.215061,3.41548,-0.0574621,-0.268691,-1.39536,2.56693,-0.535235,-1.11716,1.88815,-1.47426,1.67044,2.6893,0.957976,0.338678,-0.488055,-0.213617,1.83562,-0.524402,0 +0.883679,-0.563502,-0.203162,0.215061,2.40204,-0.0574621,-0.268691,-1.04637,1.54795,-0.535235,-0.957248,1.88815,-1.47426,1.67044,1.33309,-0.458336,0.338678,-0.167411,0.0628821,0.800338,-0.524402,0 +0.883679,-0.563502,-0.203162,0.893932,3.07767,-0.0574621,-0.268691,-1.27903,2.00083,-0.535235,-1.01055,1.88815,-1.47426,1.67044,0.994036,-0.458336,0.338678,-0.359797,-0.0753675,1.28347,-0.524402,0 +0.0707402,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,1.74776,-0.477525,-1.37197,1.16442,-1.06025,-0.701232,-0.458336,-0.149684,0.0249759,-0.144492,-0.614546,-0.524402,1 +0.0707402,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.28253,2.34569,-0.58413,-1.39764,1.19825,-1.06025,-0.701232,-0.458336,-0.149684,0.0249759,-0.144492,-0.614546,-0.524402,2 +0.0707402,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,2.09447,-1.28253,2.94362,-0.832876,-1.52599,1.23208,-1.28317,-1.04029,-0.458336,-0.149684,-0.039153,-0.144492,-0.649055,-0.524402,2 +0.0707402,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,1.6934,-0.477525,-1.37197,1.16442,-1.06025,-0.701232,-0.458336,-0.149684,0.0249759,-0.144492,-0.614546,-0.524402,2 +-0.335729,-0.563502,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,1.3129,-0.175477,-0.396499,1.06293,0.890238,-0.0231245,-0.458336,-0.515956,-0.167411,-0.420991,-0.545527,-2.16152,0 +-0.335729,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.942873,1.25855,-0.122175,-1.32063,1.06293,-1.11598,-0.701232,-0.458336,-0.515956,-0.23154,-0.420991,-0.580037,-2.16152,0 +-0.335729,-0.822195,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-1.05609,1.3129,-0.246547,-1.26929,1.06293,-1.00453,-1.04029,-0.458336,-0.515956,-0.167411,-0.351867,-0.545527,-2.16152,0 +-0.335729,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-1.05609,1.47598,-0.282082,-1.26929,1.06293,-1.00453,-0.701232,-0.458336,-0.515956,-0.167411,-0.420991,-0.580037,-2.16152,0 +-0.437346,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.000574525,-0.263557,-0.209093,2.43635,0.527627,-1.4066,-1.17171,-0.362178,-0.458336,-0.393865,-0.295669,-0.420991,-0.40749,1.11272,0 +-0.437346,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,0.0587384,-0.489996,0.171406,0.535224,0.0142237,-0.932994,-1.50608,-1.04029,-0.458336,-0.393865,-0.295669,-0.420991,-0.580037,1.11272,0 +-0.437346,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-0.829654,-0.426521,0.464154,1.3234,-0.966823,1.28034,0.994036,0.957976,-0.515956,-0.167411,-0.351867,-0.476509,-0.524402,0 +-0.437346,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.426521,0.162106,-1.29496,0.961445,-1.22744,-1.37934,-0.458336,-0.33282,-0.167411,-0.351867,-0.614546,-0.524402,1 +-0.437346,-0.0461169,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.154736,-0.264315,-0.0884571,0.589323,0.778782,-0.0231245,-0.458336,0.338678,0.217363,0.132007,-0.40749,-0.524402,0 +-0.437346,0.212576,-0.0745881,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,-0.26345,-0.424223,-1.06392,0.927615,-0.781613,-0.701232,-0.458336,0.338678,0.153234,0.0628821,-0.40749,-0.524402,0 +-0.437346,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,0.225763,-0.104407,-1.16661,1.13059,-0.670156,-1.37934,-0.458336,0.0944967,0.0249759,-0.144492,-0.511018,-2.16152,1 +-0.437346,-0.0461169,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,0.698541,-0.489996,0.606263,1.99216,1.22072,-0.932994,1.11315,4.72363,-0.458336,-0.271775,0.0249759,-0.0753675,-0.40749,-0.524402,0 +0.782061,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,1.85647,0.179873,0.193915,-0.797677,-0.893069,-0.701232,-0.458336,0.338678,0.409749,0.339381,-0.614546,1.11272,1 +0.782061,-0.822195,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,1.68733,-1.28253,2.8349,-0.690735,-1.50032,1.3674,-1.00453,-1.04029,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,1 +0.782061,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.04112,-0.51306,-1.47465,1.40122,-0.893069,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,1.11272,1 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,3.2154,-0.637433,0.142575,-0.899164,-1.17171,-0.701232,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.649055,1.11272,2 +0.172357,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,3.37847,-0.761806,-1.55166,1.33357,-1.17171,-1.04029,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.649055,-0.524402,2 +0.0707402,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.97814,-1.28253,4.41126,-1.22376,-1.73135,1.33357,-1.56181,-1.04029,-0.458336,-0.149684,-0.039153,-0.144492,-0.649055,1.11272,2 +0.0707402,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.91998,-1.28253,4.3569,-1.22376,-1.73135,1.33357,-1.56181,-1.04029,-0.458336,-0.149684,-0.039153,-0.144492,-0.649055,1.11272,2 +-0.335729,-0.822195,-0.181733,-1.48212,-0.300473,-0.0574621,-0.268691,1.80365,-1.28253,4.03076,-1.09939,-1.08959,0.386347,-1.72899,0.654983,-0.458336,-0.393865,-0.295669,-0.420991,-0.614546,1.11272,2 +-0.335729,-0.822195,-0.138875,-1.48212,0.375155,-0.0574621,-0.268691,1.571,-1.05609,1.74776,-1.01055,-0.268148,0.386347,0.0543129,0.654983,-0.458336,-0.393865,-0.423926,-0.490116,-0.545527,-0.524402,1 +-0.335729,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,4.41126,-1.15269,-1.65434,1.13059,-1.72899,-1.04029,-0.458336,-0.454911,-0.295669,-0.490116,-0.649055,1.11272,2 +-0.335729,-0.822195,-0.160304,-1.48212,0.0373407,-0.0574621,-0.268691,1.62916,-1.16931,3.05233,-1.08162,-0.268148,0.386347,0.0543129,0.654983,-0.458336,-0.454911,-0.359797,-0.490116,-0.614546,-0.524402,1 +0.375592,-0.822195,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,1.74549,-1.28253,1.63905,-0.282082,-1.06392,1.13059,-0.447242,-0.701232,-0.458336,0.0334514,0.409749,0.201132,-0.545527,-0.524402,1 +0.375592,-0.822195,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,1.3129,-0.22878,-1.19228,1.13059,-0.725884,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.614546,-0.524402,1 +0.375592,-0.822195,-0.117446,-1.14268,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,1.20419,-0.211012,-1.19228,1.13059,-0.725884,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.614546,-0.524402,1 +0.375592,-0.822195,-0.117446,-1.14268,-0.638287,-0.0574621,-0.268691,1.62916,-1.28253,1.09548,-0.193245,-1.19228,1.13059,-0.725884,-0.701232,-0.458336,0.0334514,0.281491,0.0628821,-0.614546,-0.524402,1 +-0.538964,-0.822195,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.28253,1.20419,-0.15771,-1.24362,0.961445,-1.11598,-1.04029,-0.458336,-0.515956,-0.167411,-0.351867,-0.545527,-0.524402,1 +-0.538964,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,1.51283,-1.16931,1.53033,-0.193245,-1.24362,0.961445,-1.11598,-1.04029,-0.458336,-0.515956,-0.295669,-0.490116,-0.614546,-0.524402,1 +-0.538964,-0.822195,-0.160304,-1.48212,-0.638287,-0.0574621,-0.268691,1.80365,-1.28253,1.20419,-0.246547,-1.37197,1.13059,-1.11598,-0.701232,-0.458336,-0.271775,0.0249759,-0.213617,-0.580037,-0.524402,1 +-0.538964,-0.822195,-0.096017,-1.48212,-0.638287,-0.0574621,-0.268691,1.571,-1.28253,1.91083,-0.22878,-1.24362,0.961445,-1.11598,-1.04029,-0.458336,-0.271775,-0.295669,-0.420991,-0.614546,-0.524402,1 +-0.0308771,-0.822195,0.0539856,-1.48212,-0.638287,-0.0574621,-0.268691,1.28018,-1.05609,0.823691,0.322013,-0.319489,1.13059,1.16888,0.315929,-0.458336,-0.271775,0.0891048,-0.0753675,-0.511018,-2.16152,1 +-0.0308771,-0.822195,0.0968435,-1.48212,-0.638287,-0.0574621,-0.268691,1.45467,-1.16931,0.551906,0.108803,-0.986914,0.72464,-0.948798,-0.701232,-0.458336,-0.271775,0.0891048,-0.144492,-0.545527,-0.524402,1 +-1.65675,-0.563502,0.0754146,-1.48212,-0.638287,-0.0574621,-0.268691,0.349558,-0.716435,-0.100379,0.677364,0.168245,-1.27129,-1.72899,0.654983,-0.458336,-0.882227,-0.872829,-1.04311,-0.545527,1.11272,0 +-1.65675,-0.822195,0.0325567,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.046022,0.908342,0.168245,-1.27129,-1.72899,0.315929,-0.458336,-0.882227,-0.8087,-0.97399,-0.580037,1.11272,0 +-1.04705,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,-0.426521,1.28146,0.501957,-1.47426,-1.3389,0.994036,-0.458336,-0.515956,-0.423926,-0.559241,-0.511018,1.11272,0 +-1.04705,-0.0461169,-0.138875,-1.48212,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,-0.372164,1.08602,0.168245,-1.03448,-1.3389,0.994036,-0.458336,-0.638046,-0.423926,-0.559241,-0.476509,1.11272,0 +-1.04705,0.212576,-0.0531591,-1.48212,-0.638287,-0.0574621,-0.268691,0.524049,-0.716435,-0.535235,-0.139942,0.0142237,-0.425555,-0.670156,-0.0231245,-0.458336,-0.638046,-0.359797,-0.490116,-0.511018,1.11272,0 +-1.04705,-0.0461169,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.317807,1.17485,0.296596,-1.20363,-1.3389,0.994036,-0.458336,-0.515956,-0.423926,-0.559241,-0.476509,1.11272,0 +-1.04705,-0.0461169,-0.117446,-1.48212,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.317807,1.17485,0.296596,-1.20363,-1.3389,0.994036,-0.458336,-0.515956,-0.423926,-0.559241,-0.476509,1.11272,0 +1.29015,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,0.465885,-0.716435,1.20419,0.00219796,0.0398938,-0.0196038,0.0543129,-0.0231245,-0.458336,0.765994,0.794523,0.823255,-0.441999,1.11272,0 +1.29015,-0.822195,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,0.291394,-0.603215,1.20419,0.073268,0.0398938,-0.0196038,0.0543129,-0.362178,-0.458336,0.888085,0.794523,0.89238,-0.338471,1.11272,0 +1.29015,-0.822195,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,0.116902,-0.489996,1.20419,0.0910356,0.245255,-0.256409,0.110041,-0.362178,-0.458336,0.888085,0.794523,0.89238,-0.269452,1.11272,0 +1.29015,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.98936,-1.05609,1.14983,-0.175477,-1.32063,1.46888,-0.447242,-0.701232,-0.458336,0.765994,0.794523,0.823255,-0.614546,-0.524402,1 +1.29015,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,1.25855,-0.211012,-1.32063,1.50271,-0.391514,-1.04029,-0.458336,0.765994,0.794523,0.823255,-0.614546,-0.524402,1 +1.29015,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,1.58469,-0.211012,-1.32063,1.46888,-0.447242,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.614546,1.11272,1 +1.29015,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,1.58469,-0.211012,-1.32063,1.46888,-0.447242,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.614546,1.11272,1 +1.29015,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,1.85647,-0.282082,-1.24362,1.3674,-0.447242,-0.362178,-0.458336,0.888085,0.986909,0.961504,-0.614546,1.11272,1 +1.29015,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,2.4544,-0.637433,-1.52599,1.73952,-0.447242,-1.37934,-0.458336,0.888085,0.986909,0.961504,-0.649055,-0.524402,1 +1.29015,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,1.04752,-1.05609,1.6934,-0.211012,-1.08959,1.3674,-0.112872,-0.0231245,-0.458336,0.888085,0.986909,0.961504,-0.614546,-0.524402,1 +1.29015,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,1.25855,-0.139942,-1.03825,1.3674,-0.00141549,-1.04029,-0.458336,0.765994,0.92278,0.89238,-0.614546,-0.524402,1 +1.29015,-0.822195,-0.203162,0.215061,2.06422,-0.0574621,-0.268691,-1.1627,0.642198,0.28012,-0.317617,0.270926,-0.256409,0.16577,0.315929,-0.458336,0.82704,0.34562,0.477631,0.420735,1.11272,0 +1.29015,-0.563502,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.10454,0.415759,-0.046022,0.730666,0.245255,-0.256409,0.110041,-0.362178,-0.458336,0.82704,0.473878,0.546756,0.110151,1.11272,0 +1.29015,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.175066,-0.829654,1.14983,0.162106,-0.704542,0.893786,-0.0571439,-0.362178,-0.458336,1.37645,1.30755,1.30713,-0.476509,1.11272,0 +1.29015,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,1.20419,0.00219796,-1.11526,1.43505,-0.0571439,-0.701232,0.957976,1.37645,1.37168,1.37625,-0.580037,1.11272,0 +1.29015,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,1.20419,0.00219796,-1.11526,1.43505,-0.0571439,-0.701232,0.957976,1.37645,1.37168,1.37625,-0.580037,1.11272,1 +1.29015,-0.563502,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,-0.290245,-0.376776,1.36726,-0.122175,0.450617,-0.324067,0.444411,-0.701232,0.957976,1.19331,1.05104,1.238,-0.0623961,1.11272,0 +1.29015,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,2.34569,-0.246547,-0.653201,0.826128,-0.0571439,0.315929,-0.458336,1.19331,1.24342,1.30713,-0.580037,1.11272,1 +1.29015,-0.822195,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,0.349558,-0.716435,1.85647,-0.0155696,-0.0114465,-0.0196038,-0.0571439,-0.0231245,0.957976,1.19331,1.11517,1.238,-0.37298,1.11272,1 +1.29015,-0.0461169,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.581064,-0.0371185,1.14983,-0.175477,0.219585,-0.0196038,0.444411,-0.701232,2.37429,1.49854,1.11517,1.238,0.14466,1.11272,0 +1.29015,-0.0461169,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.5229,-0.150338,1.25855,-0.22878,0.193915,0.0142255,0.444411,-0.701232,3.7906,1.49854,1.24342,1.37625,0.00662268,1.11272,0 +1.29015,0.212576,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-0.930047,0.18932,0.66062,-0.29985,0.450617,-0.324067,0.444411,-1.04029,0.957976,1.49854,0.986909,1.238,0.593282,1.11272,0 +1.29015,-0.0461169,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-1.10454,0.30254,-0.535235,-0.317617,0.578968,-0.459384,0.50014,-0.0231245,-0.458336,0.643904,0.858651,0.89238,0.317207,1.11272,0 +1.29015,-0.822195,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.10454,0.0761009,0.28012,-0.264315,0.322266,-0.459384,-0.0571439,-0.0231245,-0.458336,0.643904,0.666265,0.89238,0.17917,1.11272,0 +1.29015,-0.30481,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.10454,0.0761009,0.334477,-0.264315,0.373606,-0.459384,0.0543129,0.315929,-0.458336,0.643904,0.730394,0.89238,0.213679,1.11272,0 +1.89985,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,2.56312,-0.0333371,-0.884233,1.16442,-0.00141549,-0.701232,-0.458336,1.37645,1.43581,1.5145,-0.580037,1.11272,1 +1.89985,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,2.18262,0.162106,-0.884233,1.16442,-0.00141549,-0.701232,-0.458336,1.37645,1.43581,1.5145,-0.580037,1.11272,0 +1.89985,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,2.94362,-0.37092,-0.935573,1.19825,-0.0571439,-0.362178,0.957976,1.37645,1.43581,1.5145,-0.614546,1.11272,1 +1.89985,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,2.67183,-0.193245,-0.935573,1.19825,-0.0571439,-0.362178,0.957976,1.37645,1.43581,1.5145,-0.614546,1.11272,1 +1.89985,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,3.10669,-0.761806,-1.55166,1.97632,-0.112872,-1.04029,-0.458336,1.37645,1.49994,1.5145,-0.649055,1.11272,1 +1.89985,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,2.8349,-0.744038,-1.47465,1.90866,-0.0571439,-1.04029,-0.458336,1.37645,1.49994,1.5145,-0.649055,1.11272,1 +1.89985,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,3.32411,-0.424223,-1.03825,1.3674,-0.00141549,-0.0231245,-0.458336,1.37645,1.49994,1.5145,-0.614546,1.11272,2 +1.89985,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,3.48719,-0.264315,-0.755882,0.995274,-0.00141549,-0.0231245,-0.458336,1.37645,1.49994,1.5145,-0.614546,1.11272,2 +1.89985,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,2.67183,-0.459758,-1.16661,1.43505,-0.168601,-1.37934,-0.458336,1.3154,1.37168,1.37625,-0.614546,1.11272,1 +1.89985,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,0.640377,-0.942873,2.0739,-0.193245,-0.44784,0.555494,-0.0571439,-0.0231245,3.7906,1.3154,1.24342,1.30713,-0.511018,1.11272,0 +1.89985,-0.822195,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,0.465885,-0.829654,1.91083,-0.264315,-0.165468,0.183372,-0.0571439,-0.0231245,3.7906,1.3154,1.24342,1.37625,-0.476509,1.11272,0 +1.89985,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,2.8349,0.233176,-0.832893,1.09676,-0.00141549,-0.362178,0.957976,1.37645,1.43581,1.44538,-0.580037,1.11272,1 +1.89985,-0.822195,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,0.640377,-0.942873,2.67183,-0.122175,-0.42217,0.555494,-0.00141549,-0.362178,2.37429,1.3154,1.30755,1.37625,-0.511018,1.11272,0 +1.89985,-0.822195,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,0.582213,-0.829654,2.18262,-0.246547,-0.44784,0.555494,-0.0571439,-0.0231245,3.7906,1.3154,1.24342,1.37625,-0.476509,1.11272,0 +1.89985,-0.822195,-0.203162,-0.803245,0.0373407,-0.0574621,-0.268691,0.814868,-0.942873,2.78054,-0.850643,-0.242478,0.183372,-0.224329,-0.0231245,3.7906,1.3154,1.30755,1.37625,-0.511018,1.11272,1 +1.89985,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,0.524049,-0.829654,1.58469,-0.246547,-0.242478,0.183372,-0.224329,-0.362178,2.37429,1.19331,1.1793,1.238,-0.476509,1.11272,0 +1.89985,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.582213,-0.942873,1.80212,0.0910356,-0.755882,0.995274,-0.00141549,-0.0231245,-0.458336,1.37645,1.49994,1.58363,-0.614546,1.11272,0 +-0.538964,0.988654,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,-1.39536,1.20829,-0.535235,-0.637433,0.784329,-0.797677,0.388683,0.994036,0.957976,1.07122,0.34562,0.408506,0.938376,1.11272,0 +-0.538964,0.729961,-0.203162,-0.803245,2.73985,-0.0574621,-0.268691,-1.8025,2.22727,-0.535235,-0.797341,1.11804,-1.23746,0.388683,0.654983,0.957976,-0.0886391,-0.295669,-0.144492,0.248188,1.11272,0 +-0.538964,0.212576,-0.203162,-0.803245,1.72641,-0.0574621,-0.268691,-1.56985,1.43473,-0.535235,0.890574,0.553298,-0.493213,0.388683,-0.701232,0.957976,0.82704,0.153234,0.270256,0.69681,1.11272,0 +-0.538964,1.24735,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,-1.22087,0.981856,-0.535235,-0.44199,0.630308,-0.493213,0.555868,-0.701232,0.957976,1.19331,0.473878,0.546756,0.834848,1.11272,0 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,2.50876,-0.29985,-0.807222,0.656981,-0.670156,-0.362178,-0.458336,0.216587,0.281491,0.201132,-0.614546,1.11272,0 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,2.8349,-0.264315,-0.807222,0.656981,-0.670156,-0.362178,-0.458336,0.216587,0.281491,0.201132,-0.614546,1.11272,1 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,2.34569,-0.0688721,-0.807222,0.656981,-0.670156,-0.0231245,-0.458336,0.216587,0.217363,0.201132,-0.580037,1.11272,0 +0.477209,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.290245,-0.603215,1.85647,-0.0688721,-0.807222,0.656981,-0.670156,-0.362178,-0.458336,0.216587,0.281491,0.270256,-0.614546,1.11272,0 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,2.0739,-0.175477,-0.807222,0.656981,-0.670156,-0.701232,-0.458336,0.216587,0.281491,0.270256,-0.614546,1.11272,0 +0.477209,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.173917,-0.829654,2.78054,-0.548595,-1.32063,1.23208,-0.837341,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,1 +0.477209,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.232081,-0.829654,2.40005,-0.495293,-1.32063,1.23208,-0.837341,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,0 +0.477209,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.117049,0.410851,-0.550521,0.386347,-0.558699,0.315929,-0.458336,0.216587,0.409749,0.270256,-0.614546,1.11272,0 +0.477209,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,-0.046022,0.481921,-0.550521,0.386347,-0.558699,0.315929,-0.458336,0.277632,0.409749,0.339381,-0.614546,1.11272,0 +0.477209,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,-0.154736,0.464154,-0.550521,0.386347,-0.558699,0.315929,-0.458336,0.277632,0.409749,0.339381,-0.614546,1.11272,0 +0.477209,-0.30481,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.100379,0.375316,-0.49918,0.386347,-0.447242,-0.0231245,-0.458336,0.277632,0.473878,0.339381,-0.580037,1.11272,0 +0.477209,-0.30481,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.100379,0.375316,-0.49918,0.386347,-0.447242,-0.0231245,-0.458336,0.277632,0.473878,0.339381,-0.580037,1.11272,0 +0.477209,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,-0.046022,0.0199655,-1.16661,1.26591,-0.447242,-1.37934,-0.458336,0.277632,0.473878,0.408506,-0.614546,-0.524402,0 +0.477209,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,0.171406,-0.29985,-1.16661,1.26591,-0.447242,-1.37934,-0.458336,0.582859,0.666265,0.546756,-0.580037,-0.524402,0 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.00833509,0.162106,-1.21795,1.26591,-0.558699,-0.701232,-0.458336,0.277632,0.409749,0.339381,-0.614546,-0.524402,0 +0.477209,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.348408,-0.716435,1.47598,-0.0688721,-1.16661,1.19825,-0.558699,-0.701232,-0.458336,0.155542,0.34562,0.201132,-0.614546,-0.524402,0 +0.477209,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,2.61747,-0.566363,-1.39764,1.19825,-1.06025,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,1.11272,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,0.606263,0.126571,-1.16661,1.29974,-0.391514,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,-0.372164,0.250943,-1.16661,1.29974,-0.391514,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,-0.480878,0.517456,-0.986914,1.09676,-0.335786,-1.04029,-0.458336,0.460768,0.730394,0.61588,-0.580037,-0.524402,0 +0.883679,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.535235,0.783969,-0.986914,1.09676,-0.335786,-1.37934,-0.458336,0.82704,0.730394,0.685005,-0.476509,1.11272,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.348408,-0.489996,-0.535235,0.624061,-0.909903,0.995274,-0.335786,-1.37934,-0.458336,0.82704,0.730394,0.75413,-0.40749,1.11272,0 +0.883679,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.535235,0.677364,-0.986914,1.13059,-0.280057,-1.04029,-0.458336,0.82704,0.794523,0.75413,-0.511018,1.11272,0 +0.883679,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,0.932405,-0.406455,-1.14093,1.33357,-0.280057,-1.04029,-0.458336,0.765994,0.858651,0.823255,-0.614546,-0.524402,0 +0.883679,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.639228,-0.376776,0.171406,0.677364,0.630308,-0.763847,0.110041,0.315929,-0.458336,0.460768,0.666265,0.546756,-0.580037,1.11272,0 +0.883679,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,1.63905,-0.193245,-1.08959,1.23208,-0.335786,-0.362178,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,0 +0.883679,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,0.334477,0.037733,-1.19228,1.40122,-0.280057,-1.37934,-0.458336,0.765994,0.92278,0.823255,-0.614546,-0.524402,0 +0.883679,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.535235,0.570759,-0.986914,1.13059,-0.280057,-1.04029,-0.458336,0.82704,0.730394,0.75413,-0.476509,-0.524402,0 +0.883679,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,1.09548,-0.193245,-1.37197,1.57037,-0.391514,-1.04029,-0.458336,0.765994,0.858651,0.823255,-0.649055,-0.524402,0 +0.883679,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,1.47598,-0.175477,-1.08959,1.23208,-0.335786,-0.362178,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,0 +0.883679,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,1.74776,-0.15771,-0.807222,0.859957,-0.335786,-0.0231245,-0.458336,0.582859,0.730394,0.685005,-0.614546,1.11272,0 +0.273975,0.988654,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.551906,-0.744038,-0.832893,0.893786,-0.335786,-0.701232,-0.458336,0.216587,0.538007,0.408506,-0.545527,-0.524402,0 +0.273975,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.551906,-0.690735,-0.832893,0.893786,-0.335786,-0.701232,0.957976,0.216587,0.538007,0.408506,-0.545527,-0.524402,0 +0.273975,0.471268,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.443191,-0.6552,-0.832893,0.893786,-0.335786,-0.701232,-0.458336,0.216587,0.473878,0.339381,-0.580037,-0.524402,0 +0.273975,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.66062,-0.6552,-0.858563,0.893786,-0.391514,-0.362178,-0.458336,0.216587,0.409749,0.270256,-0.614546,-0.524402,0 +0.273975,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,0.443191,-0.72627,-1.19228,1.33357,-0.391514,-1.04029,-0.458336,0.155542,0.409749,0.270256,-0.614546,-0.524402,0 +0.273975,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,0.225763,-0.193245,-1.11526,1.09676,-0.614428,-0.701232,-0.458336,0.277632,0.34562,0.270256,-0.614546,-0.524402,0 +0.172357,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.603215,-0.154736,0.0555005,-0.935573,0.859957,-0.614428,-0.362178,-0.458336,0.277632,0.34562,0.270256,-0.614546,-0.524402,0 +0.172357,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.209093,0.233176,-0.935573,0.859957,-0.614428,-0.362178,-0.458336,0.277632,0.34562,0.270256,-0.580037,-0.524402,0 +0.273975,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,-0.154736,0.375316,-0.909903,0.859957,-0.558699,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.580037,-0.524402,0 +0.273975,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.100379,0.535224,-0.601861,0.454006,-0.558699,-1.04029,-0.458336,0.0334514,0.281491,0.0628821,-0.580037,-0.524402,0 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,0.695131,-0.884233,0.826128,-0.558699,-0.701232,-0.458336,0.0334514,0.281491,0.201132,-0.580037,-0.524402,0 +0.273975,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,0.624061,-0.601861,0.454006,-0.558699,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.580037,1.11272,0 +0.273975,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.535235,0.783969,-0.755882,0.555494,-0.725884,-0.362178,-0.458336,0.0944967,0.281491,0.132007,-0.614546,1.11272,0 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.639228,-0.489996,-0.426521,0.393083,-1.06392,1.0291,-0.614428,-0.701232,-0.458336,0.0944967,0.281491,0.132007,-0.614546,-0.524402,0 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,0.117049,0.108803,-0.961244,1.0291,-0.391514,-0.362178,-0.458336,0.0944967,0.281491,0.132007,-0.614546,-0.524402,0 +0.273975,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.986762,-0.282082,-0.961244,1.0291,-0.391514,-0.0231245,-0.458336,0.216587,0.281491,0.201132,-0.614546,-0.524402,0 +0.273975,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,2.01955,-0.51306,-1.50032,1.40122,-0.948798,-1.04029,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,0 +0.273975,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.115753,-0.829654,2.0739,-0.690735,-1.32063,1.40122,-0.558699,-0.701232,-0.458336,0.216587,0.409749,0.270256,-0.649055,-2.16152,0 +0.273975,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.942873,0.823691,-0.353152,-1.42331,1.40122,-0.781613,-1.04029,-0.458336,0.399723,0.538007,0.408506,-0.649055,-0.524402,0 +0.273975,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.291394,-0.942873,0.986762,-0.37092,-1.44898,1.43505,-0.781613,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,0 +0.273975,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.829654,1.80212,-0.619665,-1.3463,1.43505,-0.558699,-1.04029,-0.458336,0.216587,0.409749,0.270256,-0.649055,-2.16152,0 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.000574525,-0.829654,1.53033,-0.51306,-1.3463,1.43505,-0.558699,-1.04029,-0.458336,0.216587,0.409749,0.270256,-0.649055,-2.16152,0 +0.273975,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,0.986762,-0.353152,-1.50032,1.43505,-0.893069,-1.04029,-0.458336,0.399723,0.473878,0.408506,-0.649055,-0.524402,0 +0.273975,-0.30481,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,1.58469,-0.530828,-1.21795,1.26591,-0.558699,-0.362178,-0.458336,0.216587,0.34562,0.270256,-0.649055,-0.524402,0 +1.08691,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,-0.209093,0.0910356,-1.11526,1.3674,-0.168601,-1.04029,-0.458336,0.643904,0.794523,0.75413,-0.614546,-0.524402,0 +1.08691,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.639228,-0.603215,-0.426521,0.393083,-1.11526,1.3674,-0.168601,-1.37934,-0.458336,0.582859,0.794523,0.685005,-0.614546,-0.524402,0 +1.08691,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.372164,0.588526,-1.11526,1.3674,-0.168601,-1.37934,-0.458336,0.643904,0.858651,0.75413,-0.614546,-0.524402,0 +1.08691,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.697392,-0.489996,-0.426521,0.464154,-0.884233,1.06293,-0.168601,-1.37934,-0.458336,0.765994,0.858651,0.823255,-0.580037,1.11272,0 +1.08691,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.535235,0.890574,-0.832893,0.961445,-0.224329,-1.04029,-0.458336,0.765994,0.794523,0.75413,-0.580037,1.11272,0 +1.08691,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.988211,-0.263557,-0.535235,0.943877,-0.704542,0.961445,0.0543129,-1.37934,-0.458336,0.643904,0.794523,0.75413,-0.545527,-0.524402,0 +1.08691,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,0.783969,-0.319489,0.792298,0.611597,-0.0231245,-0.458336,0.643904,0.986909,0.823255,-0.37298,-0.524402,0 +1.08691,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.04637,0.0761009,-0.535235,1.76118,-0.319489,0.792298,0.611597,-0.362178,-0.458336,0.765994,0.92278,0.823255,-0.338471,-0.524402,0 +1.08691,-0.30481,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-1.22087,0.30254,-0.535235,2.24091,0.142575,0.183372,0.611597,-0.362178,0.957976,0.765994,0.858651,0.823255,-0.234943,-0.524402,0 +1.08691,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,2.32974,0.142575,0.081884,0.444411,-0.362178,2.37429,0.643904,0.602136,0.61588,-0.269452,1.11272,0 +1.29015,-0.822195,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-1.10454,0.18932,0.0626921,2.50742,0.296596,-0.053433,0.555868,0.654983,0.957976,0.765994,0.794523,0.823255,-0.37298,1.11272,0 +1.29015,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.988211,-0.0371185,-0.317807,1.67235,0.116904,-0.0196038,0.221498,0.315929,-0.458336,0.582859,0.666265,0.685005,-0.441999,1.11272,0 +1.29015,-0.822195,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.988211,-0.263557,-0.535235,-0.619665,-0.293819,0.183372,-0.335786,-0.362178,-0.458336,0.582859,0.538007,0.61588,-0.476509,1.11272,0 +1.29015,0.212576,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.04637,-0.150338,-0.480878,-0.211012,-0.216808,0.454006,0.277226,-0.701232,2.37429,0.765994,0.794523,0.75413,-0.40749,-0.524402,0 +1.29015,0.471268,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.426521,-0.122175,-0.0114465,0.183372,0.277226,-0.701232,0.957976,0.765994,0.858651,0.823255,-0.40749,1.11272,0 +1.29015,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.480878,-0.22878,-0.139797,0.893786,1.16888,0.994036,0.957976,0.94913,1.24342,1.16888,-0.441999,-0.524402,0 +1.29015,0.729961,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,0.215408,-0.216808,1.09676,1.33607,-0.0231245,-0.458336,1.19331,1.37168,1.30713,-0.476509,-0.524402,0 +1.29015,-0.30481,-0.203162,-1.48212,2.06422,-0.0574621,-0.268691,-1.62801,2.34049,-0.535235,1.21039,2.04217,-1.47426,2.00481,1.33309,0.957976,0.643904,0.281491,0.546756,0.593282,-0.524402,0 +1.29015,-0.0461169,-0.203162,-0.803245,1.05078,-0.0574621,-0.268691,-1.27903,1.32151,-0.535235,0.535224,0.553298,-0.459384,0.444411,1.33309,0.957976,1.07122,0.666265,0.961504,0.455245,1.11272,0 +1.29015,0.471268,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-1.1627,0.18932,-0.535235,1.10378,-0.396499,0.859957,0.555868,0.315929,-0.458336,1.07122,1.11517,1.16888,-0.37298,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.406572,-0.716435,0.117049,-0.0333371,-1.21795,0.420177,-1.95191,-1.04029,-0.458336,-0.760137,-0.872829,-0.97399,-0.545527,1.11272,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,-0.426521,0.215408,-0.961244,0.183372,-1.78472,-0.701232,-0.458336,-0.882227,-0.8087,-0.97399,-0.614546,1.11272,0 +-1.14867,-0.0461169,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,0.0910356,-0.47351,0.0480547,-0.948798,-0.362178,0.957976,-0.882227,-0.8087,-0.97399,-0.511018,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.803245,-0.638287,-0.0574621,3.12144,-1.1627,0.30254,-0.535235,-0.886178,-0.268148,-0.222579,-0.948798,-1.04029,0.957976,-0.882227,-1.06522,-1.04311,-0.0278867,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,3.12144,-0.813719,-0.263557,-0.100379,-0.175477,-0.268148,-0.222579,-0.948798,-0.0231245,2.37429,-1.06536,-1.2576,-1.25049,-0.269452,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,-0.639228,-0.376776,0.117049,-0.0866397,-0.730212,-0.222579,-1.95191,-0.701232,-0.458336,-0.882227,-1.12934,-1.18136,-0.303962,1.11272,0 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,0.00833509,0.037733,-1.21795,0.420177,-1.95191,-1.04029,-0.458336,-0.882227,-1.00109,-1.18136,-0.580037,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,0.0626921,0.322013,-1.14093,0.521664,-1.61754,-0.701232,-0.458336,-0.882227,-0.616313,-0.83574,-0.580037,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.930047,-0.376776,-0.154736,0.233176,-0.986914,0.25103,-1.72899,-0.701232,-0.458336,-0.882227,-0.8087,-0.97399,-0.545527,1.11272,0 +-1.14867,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,1.42637,-0.930047,-0.150338,-0.480878,0.0199655,-0.268148,-0.222579,-0.948798,-0.701232,0.957976,-1.06536,-1.00109,-1.04311,-0.338471,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.930047,-0.0371185,-0.535235,0.108803,-0.47351,0.0480547,-0.948798,-0.701232,0.957976,-1.06536,-0.744571,-0.97399,-0.476509,-0.524402,0 +-1.14867,0.471268,-0.203162,-0.124374,0.375155,-0.0574621,-0.268691,-0.930047,-0.150338,-0.535235,-0.264315,-0.345159,-0.0196038,-0.781613,-0.701232,-0.458336,-0.271775,-0.295669,-0.282742,-0.234943,1.11272,0 +-1.14867,-0.30481,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.39536,0.415759,-0.372164,0.197641,0.065564,-0.324067,-0.391514,-0.362178,-0.458336,-0.699092,-0.872829,-1.11224,-0.165924,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,-1.1627,0.0761009,-0.317807,0.730666,-0.44784,-0.0872623,-1.11598,-0.0231245,-0.458336,-0.699092,-0.936957,-1.11224,-0.441999,-0.524402,0 +-1.14867,-0.30481,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,-0.0866397,-0.0627869,-0.154921,-0.391514,-0.701232,-0.458336,-0.760137,-0.8087,-0.97399,-0.269452,-0.524402,0 +-1.14867,-0.563502,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.0555005,-0.47351,-0.154921,-1.28317,-0.362178,-0.458336,-0.760137,-0.936957,-1.04311,-0.338471,-0.524402,0 +-1.14867,0.471268,-0.203162,-0.124374,0.375155,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,-0.29985,-0.345159,-0.0196038,-0.781613,-0.701232,-0.458336,-0.271775,-0.295669,-0.282742,-0.234943,1.11272,0 +-1.14867,0.471268,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,0.0199655,-0.44784,0.115713,-0.781613,-0.362178,0.957976,-0.271775,-0.167411,-0.282742,-0.545527,1.11272,0 +-1.14867,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.988211,-0.0371185,-0.535235,0.606294,-0.49918,-0.154921,-1.3389,-1.04029,-0.458336,-0.638046,-0.872829,-0.904865,-0.37298,1.11272,0 +-1.14867,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.755555,-0.489996,-0.535235,0.695131,-1.03825,0.487835,-1.45035,-1.04029,-0.458336,-0.638046,-0.616313,-0.697491,-0.580037,-0.524402,0 +-1.14867,-0.30481,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.22087,0.18932,-0.317807,0.322013,-0.114127,-0.0872623,-0.391514,-0.362178,-0.458336,-0.699092,-0.872829,-1.04311,-0.269452,-0.524402,0 +-0.742198,-0.0461169,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-1.27903,0.528978,-0.535235,1.13932,0.81,-1.4066,-0.558699,-0.362178,-0.458336,-0.0886391,-0.295669,-0.282742,-0.234943,1.11272,0 +-0.742198,-0.0461169,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,0.464154,-0.47351,0.0480547,-0.948798,-0.362178,0.957976,-0.0886391,-0.23154,-0.282742,-0.40749,1.11272,0 +-0.742198,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,0.979412,-0.986914,0.521664,-1.28317,-1.04029,-0.458336,-0.393865,-0.23154,-0.351867,-0.580037,1.11272,0 +-0.742198,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.755555,-0.489996,-0.535235,1.17485,-1.01258,0.589323,-1.22744,-1.04029,-0.458336,-0.271775,-0.167411,-0.282742,-0.580037,1.11272,0 +-0.742198,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,1.24592,-0.961244,0.521664,-1.22744,-1.04029,-0.458336,-0.21073,-0.23154,-0.282742,-0.545527,1.11272,0 +0.273975,-0.822195,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,0.524049,-0.263557,1.20419,-0.139942,0.630308,-0.66236,0.277226,-0.0231245,3.7906,0.155542,0.153234,0.132007,-0.234943,1.11272,0 +0.273975,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,2.78054,-0.459758,-1.19228,1.13059,-0.725884,-1.04029,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,1 +0.273975,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.814868,-0.942873,2.0739,-0.0333371,-1.01258,1.0291,-0.502971,1.67214,-0.458336,0.277632,0.34562,0.201132,-0.580037,-0.524402,1 +0.273975,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.407721,-0.716435,0.28012,0.410851,-0.704542,0.826128,-0.168601,0.994036,-0.458336,-0.0886391,0.409749,0.201132,-0.37298,-0.524402,0 +0.273975,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.407721,-0.942873,-0.100379,0.233176,-0.550521,0.826128,0.16577,-1.04029,-0.458336,0.82704,0.92278,0.89238,-0.40749,1.11272,0 +0.273975,-0.563502,-0.203162,-0.803245,1.05078,-0.0574621,3.12144,-1.33719,1.09507,-0.535235,-1.45474,1.16938,-1.44043,0.16577,0.654983,2.37429,-0.699092,-1.2576,-1.11224,1.31798,-0.524402,2 +0.477209,0.212576,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,-0.0575893,-0.376776,0.334477,-0.761806,1.16938,-1.44043,0.16577,0.654983,3.7906,0.82704,0.602136,0.89238,0.386226,1.11272,0 +0.883679,-0.822195,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.317807,1.13932,0.296596,-0.594701,-0.335786,-0.0231245,-0.458336,0.582859,0.409749,0.408506,-0.234943,1.11272,0 +0.883679,-0.0461169,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.988211,0.0761009,-0.535235,1.60128,0.322266,-0.594701,-0.280057,-0.0231245,0.957976,0.399723,0.473878,0.477631,-0.303962,1.11272,0 +0.883679,0.729961,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.480878,0.517456,-0.601861,0.656981,-0.224329,-0.0231245,2.37429,0.765994,0.858651,0.89238,-0.511018,1.11272,0 +0.883679,0.471268,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,-0.535235,0.357548,-0.44784,0.420177,-0.280057,0.994036,-0.458336,0.765994,0.92278,0.89238,-0.580037,1.11272,0 +0.883679,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,2.0277,-0.0884571,0.0142255,-0.168601,0.315929,0.957976,0.82704,0.730394,0.75413,-0.37298,1.11272,0 +0.883679,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.930047,-0.150338,-0.535235,2.82723,-0.0884571,0.0142255,-0.168601,-0.701232,-0.458336,0.82704,0.666265,0.685005,-0.303962,1.11272,0 +0.273975,1.76473,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-0.697392,-0.150338,-0.535235,-0.104407,0.604638,-0.966823,-0.280057,0.315929,-0.458336,0.399723,0.34562,0.408506,0.00662268,1.11272,0 +0.273975,0.471268,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-0.581064,-0.150338,-0.535235,0.073268,0.604638,-1.00065,-0.335786,-0.701232,-0.458336,0.0944967,0.153234,0.201132,0.0756414,1.11272,0 +0.273975,-0.822195,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-0.697392,-0.263557,-0.535235,0.588526,0.399276,-0.831506,-0.502971,-0.362178,-0.458336,-0.0886391,-0.103282,-0.0753675,-0.165924,1.11272,0 +0.273975,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,1.65458,0.81,-1.10214,-0.0571439,0.994036,-0.458336,-0.0886391,-0.103282,-0.0753675,-0.0623961,1.11272,0 +0.273975,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,0.837272,0.553298,-0.763847,-0.0571439,-0.0231245,-0.458336,-0.271775,-0.103282,-0.0753675,0.00662268,1.11272,0 +0.273975,-0.822195,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-0.813719,-0.0371185,-0.535235,-0.0333371,0.270926,-0.696189,-0.558699,-0.0231245,0.957976,-0.271775,-0.167411,-0.213617,-0.0623961,1.11272,0 +0.273975,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-0.813719,-0.150338,-0.535235,1.10378,0.527627,-1.10214,-0.670156,0.315929,-0.458336,-0.0886391,-0.167411,-0.0753675,-0.0623961,1.11272,0 +-0.0308771,-0.822195,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-1.56985,1.43473,-0.535235,2.54295,0.707319,-1.03448,-0.168601,0.994036,-0.458336,-0.0886391,-0.552184,-0.213617,1.21445,1.11272,0 +-0.0308771,-0.822195,-0.203162,0.554496,2.40204,-0.0574621,-0.268691,-1.56985,1.54795,-0.535235,1.83225,0.707319,-1.03448,-0.168601,0.994036,-0.458336,-0.0886391,-0.680442,-0.282742,1.45602,1.11272,0 +-0.0308771,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.697392,-0.0371185,-0.317807,3.34249,0.501957,-0.899164,-0.391514,0.994036,-0.458336,0.0944967,0.0249759,0.0628821,-0.0969054,1.11272,0 +-0.0308771,-0.563502,-0.203162,-0.803245,2.06422,-0.0574621,-0.268691,-0.813719,0.0761009,-0.372164,0.819504,0.424947,-0.966823,-0.670156,0.654983,-0.458336,-0.0886391,-0.295669,-0.0753675,0.248188,1.11272,0 +-0.0308771,-0.822195,-0.203162,-1.14268,2.06422,-0.0574621,-0.268691,-0.581064,-0.0371185,-0.317807,1.13932,0.270926,-0.763847,-0.670156,-0.0231245,-0.458336,-0.0886391,-0.295669,-0.144492,0.17917,1.11272,0 +-0.0308771,0.471268,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-1.1627,0.528978,-0.535235,1.70788,0.553298,-1.10214,-0.614428,0.315929,0.957976,0.277632,-0.039153,0.132007,0.351716,1.11272,0 +-0.0308771,-0.0461169,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.10454,0.30254,-0.535235,1.24592,0.655978,-1.23746,-0.614428,0.315929,2.37429,0.216587,0.0249759,0.132007,0.248188,1.11272,0 +-0.0308771,0.471268,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.04637,0.415759,-0.535235,2.70286,0.476287,-1.00065,-0.614428,1.67214,2.37429,0.277632,0.0249759,0.201132,0.110151,1.11272,0 +-0.0308771,0.471268,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,-1.1627,0.415759,-0.535235,2.16984,0.476287,-1.00065,-0.614428,1.67214,2.37429,0.277632,0.0249759,0.132007,0.0756414,1.11272,0 +-0.0308771,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.581064,-0.263557,-0.535235,3.71561,0.501957,-0.899164,-0.391514,1.67214,0.957976,0.155542,0.0891048,0.132007,-0.234943,1.11272,0 +-0.0308771,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.26345,3.68008,0.065564,-0.324067,-0.391514,1.33309,2.37429,0.155542,0.0891048,0.132007,-0.37298,1.11272,0 +-0.0308771,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,-0.173917,-0.603215,0.171406,1.70788,-0.139797,-0.391726,-0.948798,-0.701232,-0.458336,0.155542,0.0891048,0.0628821,-0.37298,1.11272,0 +-0.234112,-0.822195,-0.203162,0.554496,2.40204,-0.0574621,-0.268691,-1.04637,0.868636,-0.317807,-0.815108,0.964021,-1.1698,0.16577,0.994036,0.957976,-0.149684,-0.936957,-0.420991,1.83562,1.11272,0 +-0.234112,-0.822195,-0.203162,1.23337,2.40204,-0.0574621,-0.268691,-1.27903,1.20829,-0.372164,-0.761806,0.964021,-1.1698,0.16577,0.994036,0.957976,-0.0886391,-0.936957,-0.282742,2.18071,1.11272,0 +-0.234112,-0.822195,-0.203162,0.215061,2.06422,-0.0574621,-0.268691,-0.871883,0.528978,-0.209093,-1.04609,0.681649,-1.1698,-0.447242,-0.362178,0.957976,-0.149684,-0.936957,-0.351867,1.7666,1.11272,0 +-0.234112,-0.822195,-0.203162,-0.124374,2.06422,-0.0574621,-0.268691,-0.464736,-0.376776,-0.209093,-1.01055,-0.0627869,-0.696189,-1.28317,0.315929,-0.458336,-0.149684,-0.680442,-0.282742,0.69681,1.11272,0 +-0.234112,-0.822195,-0.203162,0.215061,1.72641,-0.0574621,-0.268691,-0.871883,0.981856,0.117049,-0.37092,0.964021,-1.1698,0.16577,0.654983,0.957976,0.338678,-0.616313,-0.0753675,2.4913,1.11272,0 +-0.234112,-0.30481,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-0.290245,-0.376776,0.0626921,-0.637433,0.81,-1.44043,-0.614428,0.654983,-0.458336,0.338678,-0.039153,0.201132,0.524263,1.11272,0 +-0.234112,-0.822195,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.406572,-0.263557,0.171406,-0.58413,0.758659,-1.44043,-0.725884,0.994036,-0.458336,0.338678,-0.167411,0.0628821,0.834848,1.11272,0 +-0.234112,0.212576,-0.203162,0.215061,1.72641,-0.0574621,1.42637,-0.813719,0.642198,-0.535235,-1.02832,1.45175,-1.44043,0.778782,0.994036,-0.458336,0.277632,-0.552184,0.0628821,2.45679,1.11272,0 +-0.234112,0.729961,-0.203162,-0.46381,1.05078,-0.0574621,3.12144,-0.697392,0.415759,-0.535235,-1.45474,1.42608,-1.4066,0.778782,0.654983,0.957976,0.338678,-0.423926,0.270256,2.52581,1.11272,0 +-0.234112,0.729961,-0.203162,0.215061,1.3886,-0.0574621,-0.268691,-0.5229,-0.0371185,-0.535235,-0.939481,0.630308,-1.20363,-0.614428,0.315929,-0.458336,0.338678,-0.23154,0.270256,1.55954,1.11272,0 +-0.234112,0.988654,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.290245,-0.489996,-0.535235,-0.886178,0.219585,-0.66236,-0.614428,-0.701232,-0.458336,0.277632,0.0891048,0.270256,0.17917,1.11272,0 +-0.234112,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.04637,-0.376776,-0.535235,0.855039,-1.01258,0.792298,-0.893069,-1.37934,-0.458336,-0.515956,-0.103282,-0.282742,-0.476509,-0.524402,0 +-0.234112,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.04637,-0.376776,-0.535235,0.837272,-1.01258,0.72464,-1.00453,-1.37934,-0.458336,-0.515956,-0.23154,-0.420991,-0.545527,-0.524402,0 +-0.234112,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.04637,-0.376776,-0.535235,0.748434,-1.11526,0.961445,-0.837341,-1.37934,-0.458336,-0.0886391,0.0891048,-0.00624269,-0.580037,-0.524402,0 +-0.234112,1.24735,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,-0.246547,-0.730212,0.792298,-0.280057,-1.04029,-0.458336,-0.0886391,0.217363,0.0628821,-0.476509,-0.524402,0 +-0.234112,1.24735,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.535235,-0.15771,-0.730212,0.792298,-0.280057,-0.701232,-0.458336,-0.0886391,0.217363,0.0628821,-0.476509,-0.524402,0 +-0.234112,2.28212,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,-0.690735,-0.47351,0.826128,0.332955,1.33309,-0.458336,0.338678,0.666265,0.477631,-0.37298,-0.524402,0 +-0.234112,2.02342,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,-0.6552,0.476287,-0.391726,0.388683,1.33309,-0.458336,0.338678,0.666265,0.477631,-0.338471,1.11272,0 +-0.234112,2.02342,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,-0.282082,-0.47351,1.0291,0.667325,-0.362178,-0.458336,0.643904,0.858651,0.75413,-0.40749,-0.524402,0 +-0.234112,1.50604,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.27903,0.0761009,-0.535235,-0.29985,0.527627,-0.222579,0.778782,0.654983,-0.458336,-0.0886391,0.602136,0.408506,-0.0623961,-0.524402,0 +-0.234112,1.76473,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,-0.246547,0.296596,-0.222579,0.277226,0.315929,-0.458336,-0.0886391,0.409749,0.201132,-0.338471,-0.524402,0 +-0.234112,2.02342,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.1627,0.0761009,-0.535235,0.0910356,-0.47351,0.826128,0.332955,0.994036,-0.458336,0.643904,0.730394,0.61588,-0.40749,-0.524402,0 +-0.234112,2.54081,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.535235,-0.744038,0.476287,-0.391726,0.388683,0.994036,-0.458336,0.338678,0.730394,0.546756,-0.37298,1.11272,0 +-0.437346,0.212576,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-1.1627,-0.150338,-0.480878,-0.0511046,-0.268148,0.149542,-0.335786,-0.362178,-0.458336,-0.271775,-0.103282,-0.282742,-0.511018,-0.524402,0 +-0.437346,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.10454,-0.263557,-0.480878,-0.193245,-1.03825,0.961445,-0.670156,-1.04029,-0.458336,-0.271775,-0.103282,-0.282742,-0.580037,-0.524402,0 +-0.437346,0.729961,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.552991,-0.293819,0.318689,-0.112872,-0.0231245,-0.458336,-0.515956,-0.167411,-0.490116,-0.165924,-0.524402,0 +-0.437346,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.783969,-0.678871,0.72464,-0.280057,-1.04029,-0.458336,-0.271775,0.281491,0.201132,-0.269452,-0.524402,0 +-0.437346,1.50604,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.926109,-0.653201,0.690811,-0.280057,-1.04029,-0.458336,-0.271775,0.217363,-0.00624269,-0.338471,-0.524402,0 +-0.437346,2.7995,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,-1.3659,-0.44784,0.521664,-0.112872,0.315929,-0.458336,0.399723,0.538007,0.477631,-0.37298,-0.524402,0 +-0.437346,3.0582,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.45352,0.30254,-0.535235,-1.3659,-0.319489,0.487835,0.110041,-0.0231245,-0.458336,0.216587,0.538007,0.408506,-0.338471,-0.524402,0 +-0.437346,1.24735,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.45352,0.18932,-0.535235,0.428619,-0.44784,0.521664,-0.112872,-0.0231245,-0.458336,0.582859,0.538007,0.546756,-0.40749,1.11272,0 +-0.437346,2.02342,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.51169,0.18932,-0.535235,-0.6552,-0.42217,0.487835,-0.112872,-0.0231245,-0.458336,0.399723,0.473878,0.408506,-0.37298,1.11272,0 +-0.437346,2.28212,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.45352,0.30254,-0.535235,-1.45474,-0.319489,0.487835,0.110041,-0.0231245,-0.458336,0.216587,0.473878,0.408506,-0.269452,-0.524402,0 +-0.437346,2.28212,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.39536,0.30254,-0.535235,-1.45474,-0.42217,0.623152,0.110041,-0.0231245,-0.458336,0.0334514,0.538007,0.408506,-0.200434,-0.524402,0 +-1.14867,-0.0461169,-0.203162,-1.14268,0.712969,-0.0574621,-0.268691,-1.86067,1.54795,-0.535235,2.0277,1.50309,-1.44043,0.890238,0.654983,0.957976,-0.943273,-0.8087,-1.04311,0.834848,-0.524402,0 +-1.14867,0.212576,-0.203162,-1.14268,1.3886,-0.0574621,-0.268691,-1.977,1.88761,-0.535235,2.29421,1.50309,-1.44043,0.890238,0.654983,0.957976,-0.943273,-0.8087,-1.04311,1.21445,-0.524402,0 +-1.14867,-0.30481,-0.203162,-1.48212,1.72641,-0.0574621,-0.268691,-1.977,2.11405,-0.535235,2.24091,1.50309,-1.44043,0.890238,0.315929,0.957976,-1.12641,-1.00109,-1.18136,1.49053,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.803245,0.0373407,-0.0574621,-0.268691,-1.74434,0.868636,-0.535235,1.28146,0.0142237,0.0480547,0.110041,-0.701232,-0.458336,-0.943273,-0.680442,-1.04311,-0.0278867,-0.524402,0 +-1.14867,-0.30481,-0.203162,-1.48212,1.72641,-0.0574621,-0.268691,-2.03516,2.56693,-0.535235,3.04044,1.50309,-1.44043,0.890238,0.994036,0.957976,-0.943273,-1.00109,-1.11224,2.07718,-0.524402,0 +0.578827,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,0.819504,-0.781552,1.26591,0.388683,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.545527,-2.16152,0 +0.578827,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,1.05048,-0.884233,1.19825,0.0543129,-0.701232,-0.458336,0.399723,0.538007,0.408506,-0.580037,-0.524402,0 +0.578827,0.988654,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.535235,0.00219796,-0.730212,1.26591,0.50014,-0.701232,-0.458336,0.399723,0.602136,0.477631,-0.545527,-2.16152,0 +0.578827,1.24735,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,-0.0155696,-0.730212,1.26591,0.50014,-0.0231245,-0.458336,0.399723,0.666265,0.546756,-0.545527,-2.16152,0 +0.578827,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.464736,-0.603215,-0.535235,-0.104407,-0.935573,1.43505,0.332955,-1.04029,-0.458336,0.399723,0.730394,0.546756,-0.545527,-2.16152,0 +0.578827,0.988654,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.535235,-0.193245,-0.935573,1.43505,0.332955,-1.04029,-0.458336,0.399723,0.730394,0.546756,-0.511018,-2.16152,0 +0.578827,0.471268,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-0.581064,-0.0371185,-0.535235,-0.0688721,0.91268,-0.865335,0.555868,0.994036,0.957976,0.216587,0.538007,0.477631,-0.200434,1.11272,0 +0.578827,-0.0461169,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.376776,-0.535235,0.624061,-0.601861,0.690811,-0.168601,-0.701232,-0.458336,0.277632,0.409749,0.270256,-0.545527,-0.524402,0 +0.578827,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.697392,-0.376776,-0.535235,0.606294,-1.08959,1.26591,-0.280057,-1.37934,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.172357,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,0.393083,-0.858563,0.995274,-0.224329,-0.362178,-0.458336,0.0334514,0.281491,0.132007,-0.545527,-0.524402,0 +0.172357,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.268711,-0.781552,0.893786,-0.224329,-0.701232,-0.458336,0.0334514,0.281491,0.132007,-0.580037,-0.524402,0 +0.172357,1.24735,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-1.1627,0.0761009,-0.535235,0.0555005,0.91268,-1.00065,0.332955,-0.0231245,2.37429,0.0334514,0.34562,0.201132,-0.37298,1.11272,0 +0.172357,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,0.339781,-0.858563,0.995274,-0.224329,-1.04029,0.957976,-0.0275938,0.217363,0.0628821,-0.580037,-0.524402,0 +0.172357,1.24735,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-1.22087,0.30254,-0.535235,-0.388688,0.91268,-1.00065,0.332955,-0.0231245,2.37429,0.216587,0.217363,0.201132,-0.0969054,1.11272,0 +0.172357,0.988654,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-1.39536,0.528978,-0.535235,0.108803,1.0667,-1.13597,0.444411,0.654983,2.37429,0.0944967,0.153234,0.132007,0.0411321,1.11272,0 +0.172357,0.729961,-0.203162,0.554496,1.05078,-0.0574621,-0.268691,-1.1627,0.18932,-0.535235,-0.424223,0.655978,-0.831506,0.0543129,0.315929,2.37429,0.338678,0.281491,0.270256,-0.0623961,1.11272,0 +0.172357,-0.30481,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.39536,0.415759,-0.535235,0.037733,0.450617,-0.831506,-0.391514,0.654983,2.37429,0.0944967,-0.039153,0.0628821,-0.0623961,1.11272,0 +0.172357,1.50604,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.33719,1.32151,-0.535235,-0.761806,0.707319,-0.459384,0.778782,-0.0231245,2.37429,0.338678,0.538007,0.546756,-0.131415,-0.524402,0 +0.172357,2.02342,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.27903,1.32151,-0.535235,-0.637433,0.476287,-0.154921,0.778782,0.315929,2.37429,0.338678,0.666265,0.61588,-0.303962,-0.524402,0 +0.172357,-0.0461169,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.872807,-0.396499,0.28486,-0.391514,-0.0231245,-0.458336,-0.0886391,-0.039153,-0.144492,-0.338471,-0.524402,0 +0.172357,-0.0461169,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,-1.39536,0.30254,-0.535235,0.162106,-0.0884571,-0.121092,-0.391514,-0.362178,-0.458336,-0.271775,-0.103282,-0.213617,-0.303962,1.11272,0 +0.273975,2.7995,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,1.20829,-0.535235,-0.406455,-0.47351,0.792298,0.277226,-0.701232,-0.458336,0.338678,0.666265,0.546756,-0.40749,-0.524402,0 +0.273975,2.54081,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,1.09507,-0.535235,-0.175477,-0.165468,0.690811,0.778782,-0.362178,0.957976,0.460768,0.602136,0.477631,-0.441999,-0.524402,0 +0.172357,0.212576,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.126571,-0.0627869,-0.121092,-0.335786,-0.362178,-0.458336,-0.0886391,-0.039153,-0.144492,-0.303962,-0.524402,0 +0.172357,0.988654,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,-0.850643,-0.0627869,-0.121092,-0.335786,-0.0231245,-0.458336,0.0944967,0.153234,0.0628821,-0.303962,1.11272,0 +-0.843816,-0.822195,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.871883,-0.376776,0.28012,-0.388688,-0.961244,0.115713,-1.89618,-1.04029,-0.458336,-0.882227,-0.872829,-0.97399,-0.580037,1.11272,0 +-0.843816,-0.563502,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-0.697392,-0.489996,0.551906,-0.22878,-0.704542,0.25103,-1.11598,-0.0231245,-0.458336,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,0.551906,-0.193245,-1.24362,0.758469,-1.45035,-0.701232,-0.458336,-0.699092,-0.616313,-0.766615,-0.614546,-0.524402,0 +-0.843816,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.823691,-0.353152,-1.08959,0.758469,-1.11598,-1.04029,-0.458336,-0.393865,-0.359797,-0.490116,-0.614546,-0.524402,0 +-0.843816,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.443191,-0.264315,-1.16661,0.826128,-1.17171,-1.04029,-0.458336,-0.393865,-0.359797,-0.490116,-0.649055,-0.524402,0 +-0.843816,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,0.117049,0.0910356,-0.730212,0.318689,-1.06025,-0.701232,-0.458336,-0.393865,-0.359797,-0.420991,-0.614546,1.11272,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.0626921,0.144338,-0.909903,0.318689,-1.45035,-0.701232,-0.458336,-0.393865,-0.359797,-0.490116,-0.614546,1.11272,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,0.28012,-0.0333371,-0.935573,0.318689,-1.50608,-1.04029,-0.458336,-0.393865,-0.359797,-0.490116,-0.614546,1.11272,0 +-0.843816,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.117049,0.108803,-0.730212,0.318689,-1.06025,-0.701232,-0.458336,-0.393865,-0.359797,-0.420991,-0.614546,1.11272,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.603215,0.0626921,0.233176,-0.909903,0.318689,-1.45035,-0.701232,-0.458336,-0.393865,-0.359797,-0.490116,-0.614546,1.11272,0 +-0.843816,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.639228,-0.489996,-0.317807,-0.29985,-0.653201,0.72464,-0.224329,-0.701232,-0.458336,-0.393865,-0.23154,-0.490116,-0.545527,-0.524402,0 +-0.843816,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,-0.26345,-0.264315,-1.03825,0.72464,-1.06025,-0.701232,-0.458336,-0.393865,-0.295669,-0.420991,-0.614546,-0.524402,0 +-0.843816,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.813719,-0.489996,-0.426521,-0.282082,-0.576191,0.758469,-0.00141549,-0.701232,-0.458336,-0.638046,-0.23154,-0.490116,-0.441999,-2.16152,0 +-0.843816,0.212576,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.535235,-0.335385,-0.52485,0.690811,-0.00141549,-0.701232,-0.458336,-0.638046,-0.23154,-0.559241,-0.338471,-2.16152,0 +-0.843816,0.471268,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.10454,-0.150338,-0.535235,-0.0511046,0.424947,-0.493213,0.110041,-0.0231245,-0.458336,-0.393865,-0.167411,-0.420991,-0.37298,-0.524402,0 +-0.843816,0.988654,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,-0.0333371,0.424947,-0.493213,0.110041,-0.0231245,-0.458336,-0.393865,-0.103282,-0.420991,-0.269452,-0.524402,0 +-0.640581,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,-0.264315,-0.42217,0.690811,0.221498,-0.362178,-0.458336,-0.393865,0.0249759,-0.351867,-0.234943,-2.16152,0 +-0.640581,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,-0.37092,-0.42217,0.690811,0.221498,-1.04029,-0.458336,-0.393865,0.0891048,-0.282742,-0.131415,-2.16152,0 +-0.640581,1.76473,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.988211,0.0761009,-0.535235,-0.264315,1.24639,-1.03448,1.0017,1.67214,-0.458336,-0.21073,0.217363,-0.0753675,-0.0278867,-0.524402,0 +-0.640581,0.471268,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,-0.535235,-0.211012,-0.345159,0.690811,0.388683,-0.701232,-0.458336,-0.638046,0.153234,-0.213617,0.14466,-2.16152,0 +-0.640581,1.24735,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,2.57849,1.24639,-1.03448,1.0017,0.654983,-0.458336,-0.393865,-0.103282,-0.213617,0.455245,-0.524402,0 +-0.640581,0.988654,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-1.51169,0.981856,-0.535235,2.96937,0.784329,-0.425555,1.0017,0.315929,-0.458336,-0.393865,-0.23154,-0.351867,0.248188,-0.524402,0 +-0.640581,-0.822195,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-1.68618,1.32151,-0.535235,1.93886,0.322266,-0.594701,-0.280057,0.315929,-0.458336,-1.06536,-1.06522,-1.18136,0.0411321,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.893932,1.3886,-0.0574621,-0.268691,-1.56985,0.981856,-0.535235,1.97439,0.193915,-0.425555,-0.280057,-0.0231245,-0.458336,-0.393865,-0.8087,-0.97399,0.14466,-0.524402,0 +-0.640581,-0.822195,-0.203162,1.5728,3.07767,-0.0574621,-0.268691,-1.74434,1.66117,-0.535235,-0.797341,0.270926,-0.594701,-0.391514,-0.362178,-0.458336,-1.43163,-1.44999,-1.59611,-0.0969054,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.893932,3.41548,-0.0574621,-0.268691,-1.74434,1.66117,-0.535235,-0.797341,0.270926,-0.594701,-0.391514,0.315929,-0.458336,-1.43163,-1.38586,-1.52699,-0.0969054,-0.524402,0 +-0.640581,0.212576,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.535235,-0.122175,-0.345159,0.690811,0.388683,-1.04029,-0.458336,-0.393865,0.0249759,-0.282742,-0.165924,-2.16152,0 +-0.640581,-0.0461169,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,-0.104407,-0.986914,0.690811,-1.00453,-1.37934,-0.458336,-0.515956,-0.295669,-0.420991,-0.545527,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.62801,1.09507,-0.535235,3.00491,0.193915,-0.425555,-0.280057,-0.701232,-0.458336,-0.393865,-0.744571,-0.904865,0.14466,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.62801,1.09507,-0.535235,3.05821,0.193915,-0.425555,-0.280057,-0.0231245,-0.458336,-0.393865,-0.616313,-0.697491,0.00662268,-0.524402,0 +-0.0308771,1.76473,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.871883,0.0761009,-0.535235,-0.335385,0.322266,0.081884,0.83451,0.315929,-0.458336,1.55958,0.92278,0.75413,0.627791,-0.524402,0 +-0.0308771,2.7995,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.930047,0.0761009,-0.535235,-1.22376,0.322266,0.081884,0.83451,0.994036,0.957976,1.55958,1.05104,1.09975,0.420735,1.11272,0 +-0.0308771,2.7995,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.10454,0.30254,-0.535235,-1.45474,0.476287,-0.0872623,0.890238,0.994036,0.957976,1.55958,1.11517,1.37625,0.524263,1.11272,0 +-0.0308771,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.813719,-0.150338,-0.535235,-0.672968,0.296596,0.115713,0.83451,0.994036,-0.458336,1.55958,1.37168,1.58363,0.00662268,1.11272,0 +-0.0308771,0.988654,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.74434,1.20829,-0.535235,-1.08162,0.707319,-0.391726,0.890238,-0.0231245,-0.458336,-0.699092,0.153234,-0.00624269,1.45602,-0.524402,0 +-0.0308771,1.24735,-0.203162,-0.124374,1.3886,-0.0574621,-0.268691,-1.8025,1.43473,-0.535235,-1.45474,0.707319,-0.391726,0.890238,0.315929,-0.458336,-0.393865,0.217363,-0.144492,1.21445,-0.524402,0 +-0.0308771,-0.563502,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-1.1627,0.415759,0.171406,0.570759,0.630308,-0.391726,0.723053,-0.0231245,-0.458336,0.582859,-0.103282,-0.00624269,0.834848,-0.524402,0 +-0.0308771,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.930047,0.0761009,0.334477,0.855039,0.296596,-0.391726,-0.00141549,0.315929,-0.458336,0.582859,0.0249759,0.132007,0.420735,1.11272,0 +0.273975,0.729961,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-0.639228,-0.150338,0.117049,-0.424223,0.219585,-0.18875,0.16577,-0.701232,-0.458336,0.582859,0.34562,0.477631,-0.0969054,1.11272,0 +0.273975,0.988654,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.930047,0.0761009,-0.535235,-0.0333371,0.219585,-0.18875,0.16577,-0.701232,-0.458336,0.399723,0.34562,0.408506,-0.165924,1.11272,0 +0.375592,-0.30481,-0.203162,0.893932,1.3886,-0.0574621,-0.268691,-1.1627,0.30254,-0.535235,0.339781,0.270926,-0.256409,0.16577,-0.701232,-0.458336,0.399723,0.0891048,0.201132,0.14466,1.11272,0 +0.375592,-0.30481,-0.203162,-1.48212,3.07767,-0.0574621,-0.268691,-1.56985,0.755417,-0.535235,-1.45474,0.0912342,-0.256409,-0.224329,-1.04029,-0.458336,-0.699092,-0.423926,-0.559241,0.14466,-0.524402,0 +0.0707402,-0.30481,-0.203162,1.91224,1.05078,-0.0574621,-0.268691,-1.22087,0.528978,0.00833509,1.22816,0.296596,-0.391726,-0.00141549,0.315929,-0.458336,0.582859,-0.103282,-0.0753675,0.731319,1.11272,0 +0.0707402,-0.822195,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-0.930047,0.0761009,0.388834,1.13932,0.296596,-0.391726,-0.00141549,-0.0231245,-0.458336,0.582859,0.0249759,0.0628821,0.386226,1.11272,0 +0.0707402,-0.0461169,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-1.27903,0.642198,0.0626921,0.286478,0.655978,-0.391726,0.778782,0.315929,-0.458336,0.582859,0.0249759,-0.00624269,0.834848,-0.524402,0 +0.0707402,-0.0461169,-0.203162,0.554496,2.06422,-0.0574621,-0.268691,-1.91883,1.88761,-0.535235,-1.45474,0.707319,-0.391726,0.890238,-0.362178,-0.458336,-0.699092,-0.359797,-0.628366,0.938376,-0.524402,0 +0.782061,-0.30481,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-0.639228,-0.0371185,-0.046022,0.286478,0.219585,-0.053433,0.388683,0.654983,-0.458336,0.460768,0.538007,0.546756,-0.303962,1.11272,0 +0.782061,-0.563502,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-1.10454,0.415759,-0.426521,0.624061,0.399276,-0.290238,0.388683,1.67214,-0.458336,0.399723,0.409749,0.408506,-0.131415,1.11272,0 +0.782061,-0.30481,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-1.27903,0.528978,-0.480878,0.783969,0.399276,-0.290238,0.388683,1.67214,-0.458336,0.460768,0.409749,0.477631,-0.0623961,1.11272,0 +-1.14867,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.528978,-0.535235,1.44137,-0.678871,0.487835,-0.670156,-1.04029,-0.458336,-0.760137,-0.488055,-0.766615,-0.476509,-0.524402,0 +-1.14867,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,1.40583,-0.576191,0.352518,-0.670156,-0.701232,-0.458336,-0.760137,-0.552184,-0.83574,-0.511018,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,0.30254,-0.480878,1.54797,-0.755882,0.589323,-0.670156,-0.701232,-0.458336,-0.760137,-0.488055,-0.766615,-0.511018,-0.524402,0 +-1.14867,0.729961,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.56985,0.755417,-0.535235,0.304246,-0.704542,0.487835,-0.725884,-1.37934,-0.458336,-0.393865,-0.359797,-0.559241,-0.511018,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.56985,0.755417,-0.535235,0.357548,-0.730212,0.352518,-1.00453,-1.37934,-0.458336,-0.393865,-0.423926,-0.559241,-0.511018,-0.524402,0 +-1.14867,-0.563502,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,0.197641,-1.11526,0.656981,-1.3389,-1.04029,-0.458336,-0.760137,-0.616313,-0.83574,-0.614546,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,0.357548,-1.11526,0.555494,-1.50608,-1.37934,0.957976,-0.638046,-0.552184,-0.766615,-0.614546,-0.524402,0 +-1.14867,-0.30481,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.22087,0.0761009,-0.480878,0.00219796,-0.884233,0.690811,-0.781613,-0.701232,-0.458336,-0.943273,-0.552184,-0.83574,-0.441999,-2.16152,0 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.480878,0.179873,-1.08959,0.656981,-1.28317,-1.04029,-0.458336,-0.943273,-0.680442,-0.97399,-0.580037,-0.524402,0 +-1.14867,3.31689,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-1.45352,0.981856,-0.535235,-1.11716,-0.47351,0.217201,-0.670156,-1.04029,-0.458336,-0.393865,-0.103282,-0.282742,-0.476509,-0.524402,0 +-1.14867,3.83427,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.45352,1.32151,-0.535235,-1.06385,-0.47351,0.217201,-0.670156,-1.04029,-0.458336,-0.0886391,-0.167411,-0.282742,-0.441999,-0.524402,0 +-1.04705,2.28212,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.45352,0.981856,-0.535235,-0.264315,-0.47351,0.217201,-0.670156,-0.701232,-0.458336,-0.393865,-0.167411,-0.351867,-0.511018,-0.524402,0 +-1.04705,3.57558,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.33719,0.981856,-0.535235,-1.15269,-0.47351,0.217201,-0.670156,-1.04029,-0.458336,-0.0886391,-0.103282,-0.213617,-0.476509,-0.524402,0 +-1.14867,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.528978,-0.426521,1.19262,-0.42217,0.217201,-0.558699,-0.362178,-0.458336,-0.699092,-0.616313,-0.766615,-0.511018,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.45352,0.528978,-0.426521,1.33476,-0.884233,0.352518,-1.3389,-0.701232,-0.458336,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-1.14867,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,1.15709,-0.52485,0.318689,-0.614428,-0.0231245,-0.458336,-0.699092,-0.488055,-0.697491,-0.511018,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,1.33476,-0.935573,0.420177,-1.3389,-0.701232,0.957976,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,1.19262,-0.396499,0.352518,-0.280057,-1.04029,0.957976,-0.699092,-0.488055,-0.697491,-0.441999,-0.524402,0 +-1.14867,-0.30481,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.39536,0.30254,-0.535235,1.4236,-0.961244,0.521664,-1.22744,-0.701232,0.957976,-0.699092,-0.488055,-0.697491,-0.545527,-0.524402,0 +-1.14867,0.988654,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.62801,1.09507,-0.535235,0.695131,-0.44784,0.352518,-0.391514,-0.701232,0.957976,-0.760137,-0.488055,-0.697491,-0.37298,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.981856,-0.535235,1.63681,-0.807222,0.352518,-1.17171,-0.0231245,2.37429,-0.515956,-0.552184,-0.697491,-0.511018,-0.524402,0 +-1.14867,-0.0461169,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,-1.62801,0.755417,-0.535235,1.69011,-0.627531,0.28486,-0.893069,-0.362178,-0.458336,-0.760137,-0.680442,-0.83574,-0.441999,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.51169,0.981856,-0.535235,1.58351,-0.935573,0.352518,-1.45035,-0.362178,2.37429,-0.515956,-0.552184,-0.697491,-0.545527,1.11272,0 +-1.14867,-0.30481,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-1.74434,0.755417,-0.535235,1.88556,-0.627531,0.28486,-0.893069,-0.701232,-0.458336,-1.12641,-0.744571,-1.04311,-0.37298,-0.524402,0 +-1.14867,-0.30481,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.68618,0.642198,-0.535235,1.99216,-0.781552,0.487835,-0.893069,-0.362178,-0.458336,-1.12641,-0.616313,-0.904865,-0.338471,-0.524402,0 +-1.14867,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.51169,0.755417,-0.535235,0.783969,-0.550521,0.454006,-0.447242,-0.362178,-0.458336,-0.699092,-0.616313,-0.83574,-0.476509,-0.524402,0 +-1.14867,0.471268,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.56985,0.868636,-0.535235,0.286478,-0.396499,0.25103,-0.447242,-0.0231245,0.957976,-0.638046,-0.552184,-0.766615,-0.40749,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.300473,-0.0574621,-0.268691,-1.56985,0.528978,-0.535235,0.997179,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-1.00109,-1.18136,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,1.22816,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,1.22816,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,1.22816,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,1.22816,-0.807222,0.318689,-1.22744,-1.04029,-0.458336,-1.06536,-0.936957,-1.11224,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,-1.27903,0.0761009,-0.372164,0.197641,-1.01258,0.386347,-1.56181,-1.04029,-0.458336,-0.699092,-0.8087,-0.97399,-0.476509,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.317807,0.286478,-1.03825,0.420177,-1.56181,-1.04029,-0.458336,-0.699092,-0.8087,-0.904865,-0.545527,-0.524402,0 +-1.14867,-0.563502,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,1.08602,-0.858563,0.386347,-1.22744,-1.04029,-0.458336,-0.760137,-0.744571,-0.904865,-0.545527,-0.524402,0 +-1.14867,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,1.01495,-0.858563,0.386347,-1.22744,-1.37934,-0.458336,-0.760137,-0.680442,-0.83574,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,-1.39536,0.18932,-0.372164,0.233176,-0.961244,0.318689,-1.56181,-1.37934,-0.458336,-0.760137,-0.936957,-1.11224,-0.476509,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.317807,0.233176,-1.03825,0.420177,-1.56181,-1.04029,-0.458336,-0.760137,-0.8087,-0.97399,-0.545527,-0.524402,0 +-1.14867,-0.563502,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,1.03271,-0.858563,0.386347,-1.22744,-1.04029,-0.458336,-0.760137,-0.744571,-0.904865,-0.545527,-0.524402,0 +-1.14867,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.56985,0.528978,-0.535235,1.21039,-0.858563,0.386347,-1.22744,-1.37934,-0.458336,-0.760137,-0.744571,-0.904865,-0.511018,-0.524402,0 +-1.14867,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.27903,0.0761009,-0.535235,-0.0333371,-0.678871,0.352518,-0.893069,-0.0231245,-0.458336,-0.699092,-0.616313,-0.766615,-0.545527,-0.524402,0 +-1.14867,0.212576,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.0199655,-0.678871,0.352518,-0.893069,0.315929,-0.458336,-0.699092,-0.616313,-0.83574,-0.511018,-0.524402,0 +-1.14867,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,-0.0155696,-0.807222,0.352518,-1.17171,-0.362178,-0.458336,-0.699092,-0.680442,-0.83574,-0.580037,-0.524402,0 +-1.14867,-0.822195,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.04637,-0.150338,-0.535235,0.0555005,-1.14093,0.454006,-1.72899,-1.04029,-0.458336,-0.699092,-0.680442,-0.83574,-0.614546,1.11272,0 +-1.14867,0.729961,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,0.588526,-0.47351,0.081884,-0.893069,-1.04029,-0.458336,-0.393865,-0.423926,-0.559241,-0.40749,-0.524402,0 +-1.14867,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,0.943877,-0.653201,0.318689,-0.893069,-1.04029,-0.458336,-0.393865,-0.359797,-0.490116,-0.511018,-0.524402,0 +-1.14867,0.471268,-0.203162,-0.124374,1.05078,-0.0574621,-0.268691,-1.56985,1.43473,-0.535235,1.69011,0.707319,-1.13597,-0.335786,0.654983,-0.458336,-0.393865,-0.872829,-0.83574,0.420735,-0.524402,0 +-1.14867,-0.0461169,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-1.68618,1.88761,-0.535235,1.4236,0.707319,-1.13597,-0.335786,0.994036,-0.458336,-0.638046,-0.936957,-0.97399,0.317207,-0.524402,0 +-1.14867,-0.30481,-0.203162,1.5728,2.40204,-0.0574621,-0.268691,-1.8025,2.45371,-0.535235,2.64956,0.707319,-1.13597,-0.335786,0.315929,-0.458336,-1.85895,-1.2576,-1.59611,0.524263,-0.524402,0 +-1.14867,-0.822195,-0.203162,2.25167,3.07767,-0.0574621,-0.268691,-1.977,2.79336,-0.535235,2.7384,0.707319,-1.13597,-0.335786,0.654983,0.957976,-0.638046,-1.38586,-1.59611,0.765829,-0.524402,0 +-1.14867,-0.30481,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.8025,2.34049,-0.535235,2.06323,0.655978,-1.06831,-0.335786,0.654983,-0.458336,-0.760137,-0.936957,-0.97399,0.213679,-0.524402,0 +-1.14867,-0.0461169,-0.203162,2.25167,2.06422,-0.0574621,-0.268691,-1.74434,2.34049,-0.535235,1.81449,0.655978,-1.06831,-0.335786,1.67214,-0.458336,-0.760137,-0.8087,-0.83574,0.248188,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,-1.1627,-0.263557,-0.535235,0.446386,-0.909903,0.25103,-1.56181,-1.04029,-0.458336,-0.760137,-0.8087,-0.97399,-0.545527,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,-0.988211,-0.263557,-0.535235,-0.104407,-0.807222,-0.0196038,-1.78472,-0.701232,-0.458336,-0.699092,-0.8087,-0.904865,-0.511018,1.11272,0 +-1.14867,-0.822195,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,0.339781,-0.704542,-0.0196038,-1.56181,-0.701232,-0.458336,-0.760137,-0.8087,-0.97399,-0.545527,1.11272,0 +-1.14867,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.27903,-0.150338,-0.535235,0.499689,-1.01258,0.386347,-1.56181,-1.37934,-0.458336,-0.760137,-0.8087,-0.97399,-0.580037,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,0.375316,-0.781552,-0.053433,-1.78472,-0.362178,2.37429,-1.06536,-0.936957,-1.04311,-0.511018,1.11272,0 +-1.14867,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,0.286478,-0.601861,-0.290238,-1.78472,-0.362178,2.37429,-0.699092,-1.00109,-1.04311,-0.303962,1.11272,0 +-1.14867,0.212576,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,-0.139942,-0.0371167,-0.66236,-1.17171,-0.362178,-0.458336,-0.271775,-0.8087,-0.766615,0.248188,1.11272,0 +-1.14867,0.212576,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,-0.264315,-0.0371167,-0.66236,-1.17171,-0.0231245,-0.458336,-0.271775,-0.872829,-0.83574,0.455245,1.11272,0 +-1.14867,-0.822195,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.428619,0.065564,-0.560872,-0.781613,-1.04029,2.37429,-0.821182,-1.00109,-1.04311,-0.234943,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.51169,0.642198,-0.535235,-0.459758,0.065564,-0.560872,-0.781613,-0.362178,2.37429,-0.638046,-1.2576,-1.45786,0.386226,-0.524402,0 +-1.14867,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,-0.0333371,-0.396499,-0.425555,-1.56181,-0.701232,0.957976,-0.699092,-1.2576,-1.38874,0.110151,1.11272,0 +-1.14867,-0.822195,-0.203162,0.554496,2.40204,-0.0574621,-0.268691,-1.68618,0.642198,-0.535235,0.108803,-0.678871,-0.0872623,-1.61754,-0.0231245,-0.458336,-0.699092,-1.12934,-1.18136,0.00662268,1.11272,0 +-1.14867,-0.822195,-0.203162,-1.48212,1.3886,-0.0574621,-0.268691,-1.51169,0.642198,-0.535235,0.233176,-0.345159,-0.391726,-1.39462,-0.0231245,-0.458336,-0.271775,-1.00109,-0.97399,0.662301,1.11272,0 +-1.14867,0.988654,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-1.22087,0.0761009,-0.535235,-0.459758,-0.242478,-0.290238,-1.00453,0.315929,-0.458336,0.155542,-0.359797,-0.282742,0.317207,1.11272,0 +-1.14867,1.24735,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-1.33719,0.30254,-0.535235,0.037733,0.193915,-0.493213,-0.391514,-0.362178,-0.458336,-0.0886391,-0.488055,-0.490116,0.0756414,1.11272,0 +-1.14867,1.50604,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.481921,0.0398938,-0.290238,-0.391514,0.654983,2.37429,-0.0886391,-0.359797,-0.351867,-0.165924,1.11272,0 +-1.14867,-0.0461169,-0.203162,-1.48212,2.40204,-0.0574621,-0.268691,-1.68618,1.20829,-0.535235,-0.58413,0.0912342,-0.831506,-1.17171,-1.04029,0.957976,-0.393865,-1.12934,-1.25049,0.731319,1.11272,0 +-1.14867,-0.563502,-0.203162,-0.46381,3.41548,-0.0574621,-0.268691,-1.8025,1.54795,-0.535235,-0.477525,0.655978,-1.27129,-0.670156,-1.04029,2.37429,-1.55373,-1.38586,-1.52699,0.0756414,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.46381,4.09111,-0.0574621,-0.268691,-1.977,1.88761,-0.535235,-1.38367,0.655978,-1.27129,-0.670156,-0.362178,2.37429,-1.73686,-1.57825,-1.80349,0.0411321,-0.524402,0 +-1.14867,-0.822195,-0.203162,-0.803245,4.42892,-0.0574621,-0.268691,-1.977,1.88761,-0.535235,-1.33037,0.322266,-0.831506,-0.670156,-0.362178,-0.458336,-1.67582,-1.57825,-1.73436,-0.0969054,-0.524402,0 +-1.14867,0.988654,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,-1.39536,0.415759,-0.535235,0.268711,0.193915,-0.493213,-0.391514,0.654983,-0.458336,-0.393865,-0.616313,-0.559241,-0.0278867,-0.524402,0 +-1.14867,1.76473,-0.203162,-1.48212,0.0373407,-0.0574621,-0.268691,-1.27903,0.30254,-0.535235,0.162106,0.0398938,-0.290238,-0.391514,0.654983,2.37429,-0.0886391,-0.359797,-0.351867,-0.131415,1.11272,0 +-0.640581,1.50604,-0.203162,0.893932,0.0373407,-0.0574621,1.42637,-1.45352,0.415759,-0.535235,-1.45474,1.50309,-1.4066,0.945967,1.33309,-0.458336,0.155542,0.0891048,0.270256,1.52504,1.11272,0 +-0.640581,1.76473,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-1.45352,0.30254,-0.535235,-1.45474,0.501957,-0.0872623,0.945967,-0.0231245,0.957976,0.155542,0.602136,0.546756,0.213679,-0.524402,0 +-0.640581,2.02342,-0.203162,1.91224,-0.300473,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,-1.15269,-0.0884571,0.521664,0.667325,-0.362178,-0.458336,1.07122,0.858651,0.961504,0.00662268,-0.524402,0 +-0.640581,1.76473,-0.203162,1.5728,-0.300473,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,-1.45474,0.0398938,0.521664,0.945967,-0.0231245,-0.458336,0.94913,0.986909,1.09975,-0.0969054,-0.524402,0 +-0.234112,0.729961,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.1627,0.0761009,-0.535235,1.95663,-0.0114465,0.555494,0.890238,-0.701232,-0.458336,1.07122,1.30755,1.238,-0.165924,-0.524402,0 +-0.234112,2.02342,-0.203162,2.25167,-0.638287,-0.0574621,-0.268691,-1.39536,0.415759,-0.535235,-0.22878,0.347936,0.555494,1.67044,0.654983,-0.458336,1.37645,1.49994,1.58363,0.14466,-0.524402,0 +-0.234112,2.02342,-0.203162,3.60941,-0.638287,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,-0.921713,-0.242478,0.521664,0.332955,-0.701232,0.957976,1.07122,1.05104,1.09975,-0.269452,1.11272,0 +-0.742198,1.50604,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.215408,-0.961244,0.961445,-0.502971,-1.04029,0.957976,-0.0886391,0.153234,-0.00624269,-0.545527,-0.524402,0 +-0.742198,1.50604,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.375316,-0.961244,0.961445,-0.502971,-0.701232,-0.458336,-0.0886391,0.153234,0.0628821,-0.545527,-0.524402,0 +-0.742198,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.697392,-0.376776,-0.26345,-0.0688721,-1.26929,0.927615,-1.22744,-1.04029,-0.458336,-0.0886391,-0.103282,-0.213617,-0.580037,-0.524402,0 +-0.742198,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.639228,-0.489996,-0.317807,-0.15771,-1.26929,0.927615,-1.22744,-1.04029,-0.458336,-0.0886391,-0.103282,-0.213617,-0.614546,1.11272,0 +-0.742198,-0.30481,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,0.144338,-0.49918,0.690811,0.0543129,-1.04029,-0.458336,-0.515956,-0.167411,-0.490116,-0.303962,-2.16152,0 +-0.742198,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.51169,0.18932,-0.535235,0.393083,-1.21795,0.690811,-1.50608,-1.04029,-0.458336,-0.515956,-0.423926,-0.559241,-0.614546,-0.524402,0 +-0.742198,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.317807,0.0199655,-1.19228,0.826128,-1.22744,-0.701232,-0.458336,-0.0886391,-0.167411,-0.282742,-0.580037,-0.524402,0 +-0.742198,0.212576,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.10454,-0.150338,-0.535235,0.375316,-0.704542,0.826128,-0.168601,-0.362178,0.957976,-0.393865,-0.039153,-0.351867,-0.338471,-2.16152,0 +-0.742198,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.39536,0.0761009,-0.535235,0.712899,-0.730212,0.25103,-1.17171,-0.362178,-0.458336,-0.699092,-0.423926,-0.628366,-0.580037,-0.524402,0 +-0.742198,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.659596,-0.370829,0.25103,-0.391514,-0.701232,-0.458336,-0.699092,-0.23154,-0.559241,-0.338471,-0.524402,0 +-0.742198,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.04637,-0.0371185,-0.535235,0.179873,-0.139797,0.318689,0.221498,-0.701232,-0.458336,-0.638046,-0.039153,-0.351867,-0.0278867,-0.524402,0 +-0.742198,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.535235,0.464154,-0.935573,0.454006,-1.28317,-1.04029,-0.458336,-0.638046,-0.423926,-0.697491,-0.545527,-0.524402,0 +-0.742198,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,-0.459758,-0.319489,0.318689,-0.168601,-0.701232,-0.458336,-0.271775,0.0249759,-0.213617,-0.303962,-0.524402,0 +-0.742198,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,0.0761009,-0.535235,-0.335385,-0.576191,0.454006,-0.502971,-0.701232,-0.458336,-0.271775,0.0249759,-0.213617,-0.338471,-0.524402,0 +-0.742198,0.729961,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.1627,-0.0371185,-0.535235,-0.335385,-0.704542,0.656981,-0.447242,-0.362178,-0.458336,-0.515956,-0.039153,-0.282742,-0.303962,-0.524402,0 +-0.742198,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,-0.690735,-0.550521,0.454006,-0.447242,-0.362178,-0.458336,-0.638046,-0.039153,-0.282742,-0.269452,-0.524402,0 +-0.742198,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,-0.708503,-0.550521,0.454006,-0.447242,-0.362178,-0.458336,-0.638046,-0.039153,-0.282742,-0.269452,-0.524402,0 +-0.742198,0.471268,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.04637,-0.150338,-0.535235,-0.601898,-0.884233,0.487835,-1.11598,-0.362178,-0.458336,-0.638046,-0.23154,-0.490116,-0.511018,-0.524402,0 +-1.3519,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.116902,-0.489996,-0.317807,1.24592,-0.807222,0.0480547,-1.67327,0.315929,-0.458336,-0.943273,-0.936957,-1.11224,-0.545527,1.11272,0 +-1.3519,-0.822195,-0.203162,2.59111,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,-0.317807,0.570759,-1.14093,0.318689,-1.95191,-1.04029,-0.458336,-0.943273,-1.00109,-1.18136,-0.580037,1.11272,0 +-1.3519,-0.822195,-0.203162,2.59111,-0.638287,-0.0574621,-0.268691,0.349558,-0.716435,-0.426521,0.393083,-1.29496,0.454006,-2.06337,-0.701232,-0.458336,-0.943273,-1.00109,-1.18136,-0.580037,1.11272,0 +-1.3519,-0.563502,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.000574525,-0.376776,-0.426521,0.286478,-0.0884571,-0.696189,-1.3389,1.67214,-0.458336,-1.30954,-0.872829,-1.18136,-0.338471,1.11272,0 +-1.3519,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.116902,-0.603215,-0.426521,0.410851,-0.986914,0.352518,-1.56181,-0.0231245,-0.458336,-1.30954,-0.936957,-1.18136,-0.511018,-0.524402,0 +-1.3519,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.175066,-0.603215,-0.426521,0.357548,-1.06392,0.352518,-1.72899,-0.701232,-0.458336,-1.30954,-1.00109,-1.25049,-0.545527,-0.524402,0 +-0.0308771,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.480878,0.464154,-0.627531,0.72464,-0.168601,-0.701232,0.957976,-0.149684,0.0891048,-0.0753675,-0.545527,-0.524402,0 +-0.0308771,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.116902,-0.376776,-0.480878,0.570759,-0.268148,0.25103,-0.168601,-0.0231245,0.957976,-0.149684,0.0891048,-0.0753675,-0.511018,-0.524402,0 +-0.0308771,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.291394,-0.716435,-0.480878,0.179873,-0.0884571,0.0142255,-0.168601,-0.0231245,-0.458336,-0.0886391,0.153234,-0.00624269,-0.580037,-0.524402,0 +-0.0308771,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.291394,-0.716435,-0.426521,0.073268,-0.832893,0.656981,-0.725884,-1.04029,0.957976,-0.0886391,0.0891048,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.348408,-0.263557,-0.046022,0.855039,0.296596,-0.256409,0.221498,-0.0231245,0.957976,0.0944967,0.538007,0.408506,-0.338471,1.11272,0 +-0.0308771,-0.0461169,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.5229,-0.263557,-0.535235,0.766201,-0.319489,0.656981,0.388683,0.315929,0.957976,0.765994,0.794523,0.75413,-0.476509,-0.524402,0 +0.477209,2.28212,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.150338,-0.535235,-0.72627,-0.576191,0.893786,0.221498,-1.37934,0.957976,0.521813,0.794523,0.685005,-0.511018,-0.524402,0 +0.477209,1.24735,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.150338,-0.535235,-0.530828,-0.47351,0.758469,0.221498,-0.701232,-0.458336,0.521813,0.730394,0.61588,-0.511018,-0.524402,0 +-0.0308771,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.175066,-0.603215,-0.26345,0.552991,-0.345159,0.0142255,-0.725884,-0.362178,-0.458336,-0.0886391,0.0891048,-0.0753675,-0.614546,1.11272,0 +-0.0308771,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.349558,-0.716435,-0.426521,0.286478,-0.935573,0.656981,-0.948798,-0.0231245,0.957976,-0.0886391,0.0891048,-0.00624269,-0.614546,1.11272,0 +0.985296,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.263557,-0.26345,0.712899,-0.653201,1.16442,0.50014,-0.0231245,-0.458336,0.582859,0.858651,0.75413,-0.511018,-0.524402,0 +0.985296,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.376776,-0.535235,0.233176,-0.678871,1.23208,0.555868,-0.0231245,-0.458336,0.582859,0.858651,0.75413,-0.476509,-0.524402,0 +0.985296,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.489996,-0.209093,0.215408,-0.704542,1.23208,0.50014,0.994036,-0.458336,0.582859,0.858651,0.685005,-0.511018,-0.524402,0 +0.985296,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.489996,0.117049,-0.406455,-0.935573,1.29974,0.110041,-0.701232,-0.458336,0.582859,0.858651,0.75413,-0.580037,-0.524402,0 +0.985296,-0.0461169,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.000574525,-0.716435,-0.535235,0.481921,-0.961244,1.46888,0.332955,-0.701232,0.957976,1.07122,1.24342,1.238,-0.545527,-0.524402,0 +0.985296,0.212576,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,0.428619,-0.832893,1.43505,0.555868,-0.701232,0.957976,1.07122,1.30755,1.30713,-0.580037,-0.524402,0 +0.985296,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,1.36726,-0.29985,-0.961244,1.16442,-0.168601,-0.0231245,-0.458336,0.582859,0.730394,0.685005,-0.649055,-0.524402,1 +0.273975,0.471268,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.480878,-0.139942,-0.807222,0.859957,-0.335786,-1.04029,0.957976,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.273975,0.729961,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.115753,-0.603215,-0.426521,-0.317617,-1.06392,1.19825,-0.335786,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.273975,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.426521,0.215408,-0.730212,0.927615,-0.0571439,-1.04029,0.957976,0.399723,0.602136,0.477631,-0.580037,-0.524402,0 +0.273975,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.000574525,-0.489996,-0.426521,0.428619,-0.807222,0.859957,-0.335786,-0.701232,0.957976,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.375592,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.823691,-0.193245,-1.01258,1.29974,-0.0571439,-0.701232,0.957976,0.277632,0.409749,0.270256,-0.580037,-2.16152,0 +0.375592,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.3129,-0.406455,-1.42331,1.29974,-0.948798,-1.04029,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,1 +0.375592,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.91083,-0.548595,-1.24362,1.33357,-0.502971,-0.701232,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,1 +0.375592,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,2.12826,-0.601898,-1.24362,1.33357,-0.502971,-0.701232,-0.458336,0.277632,0.409749,0.270256,-0.649055,-0.524402,1 +0.375592,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,1.74776,-0.495293,-1.24362,1.33357,-0.502971,-0.701232,-0.458336,0.277632,0.34562,0.270256,-0.649055,-0.524402,1 +0.375592,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,1.25855,-0.424223,-1.24362,1.33357,-0.502971,-0.701232,-0.458336,0.277632,0.34562,0.270256,-0.614546,-0.524402,1 +0.172357,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.640377,-0.942873,1.20419,-0.37092,-1.01258,0.792298,-0.893069,-0.0231245,-0.458336,0.155542,0.281491,0.201132,-0.614546,1.11272,0 +0.172357,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,1.20419,-0.37092,-1.39764,1.29974,-0.893069,-1.04029,-0.458336,0.155542,0.34562,0.270256,-0.649055,-0.524402,0 +0.172357,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.407721,-0.942873,0.117049,0.144338,-0.986914,0.792298,-0.837341,-0.701232,-0.458336,0.155542,0.153234,0.132007,-0.580037,1.11272,0 +0.172357,-0.822195,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,0.23323,-0.829654,-0.426521,0.126571,-1.03825,0.758469,-1.00453,-1.04029,-0.458336,0.0334514,-0.039153,-0.0753675,-0.545527,1.11272,0 +0.172357,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.291394,-0.829654,-0.154736,0.286478,-0.986914,0.792298,-0.837341,-1.04029,-0.458336,0.155542,0.153234,0.0628821,-0.580037,-0.524402,0 +0.172357,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.175066,-0.829654,-0.535235,0.712899,-0.935573,0.826128,-0.670156,-1.37934,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.614546,-0.524402,0 +0.172357,0.729961,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.480878,-0.0155696,-0.730212,0.893786,-0.112872,0.315929,-0.458336,0.0944967,0.409749,0.270256,-0.511018,-0.524402,0 +0.172357,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,-0.426521,-1.13492,-0.627531,0.961445,0.221498,-0.362178,-0.458336,0.0944967,0.473878,0.339381,-0.511018,-0.524402,0 +0.172357,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.000574525,-0.603215,-0.426521,0.322013,-0.807222,0.893786,-0.280057,-1.04029,-0.458336,0.0944967,0.281491,0.201132,-0.545527,-0.524402,0 +0.172357,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.000574525,-0.603215,-0.426521,0.908342,-0.884233,0.893786,-0.447242,-1.04029,-0.458336,0.0944967,0.217363,0.0628821,-0.580037,-0.524402,0 +-0.843816,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,1.14983,-0.0688721,-1.26929,0.893786,-1.28317,-1.37934,-0.458336,-0.393865,-0.295669,-0.420991,-0.614546,-0.524402,0 +-0.843816,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,1.25855,-0.0866397,-1.32063,0.961445,-1.28317,-1.37934,-0.458336,-0.393865,-0.295669,-0.490116,-0.614546,-0.524402,0 +-0.843816,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,-0.716435,-0.046022,-0.0155696,-1.06392,0.961445,-0.725884,-1.04029,-0.458336,-0.393865,-0.167411,-0.420991,-0.580037,-2.16152,0 +-0.843816,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,0.28012,0.0910356,-1.26929,0.893786,-1.28317,-1.37934,-0.458336,-0.393865,-0.295669,-0.490116,-0.614546,-0.524402,0 +-0.742198,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.755555,-0.489996,-0.372164,0.357548,-0.755882,0.555494,-0.725884,-0.701232,-0.458336,-0.699092,-0.423926,-0.628366,-0.511018,-0.524402,0 +-0.742198,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.871883,-0.489996,-0.317807,0.535224,-1.01258,0.555494,-1.28317,-1.04029,-0.458336,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-0.843816,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.930047,-0.263557,-0.480878,0.766201,-0.832893,0.521664,-0.948798,-0.0231245,-0.458336,-0.760137,-0.616313,-0.766615,-0.545527,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,-0.372164,0.855039,-0.49918,0.081884,-0.948798,-0.0231245,-0.458336,-0.699092,-0.616313,-0.766615,-0.580037,-0.524402,0 +-0.843816,-0.30481,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-0.988211,-0.263557,-0.372164,0.499689,-0.653201,0.28486,-0.948798,-1.04029,-0.458336,-0.699092,-0.488055,-0.697491,-0.545527,-0.524402,0 +-0.843816,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.26345,0.446386,-0.601861,0.217201,-0.948798,-1.04029,-0.458336,-0.699092,-0.488055,-0.697491,-0.545527,-0.524402,0 +-0.843816,-0.0461169,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-0.871883,-0.376776,-0.154736,0.037733,-0.42217,-0.0196038,-0.948798,-0.701232,-0.458336,-0.699092,-0.552184,-0.697491,-0.545527,-0.524402,0 +-0.843816,-0.30481,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.639228,-0.376776,0.00833509,0.250943,-0.42217,-0.0196038,-0.948798,-1.04029,-0.458336,-0.699092,-0.488055,-0.697491,-0.545527,-0.524402,0 +-1.85999,-0.30481,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,-1.62801,0.415759,-0.535235,1.06825,-0.293819,-0.154921,-0.893069,-1.04029,0.957976,-1.06536,-1.06522,-1.18136,-0.476509,-0.524402,0 +-1.85999,0.212576,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,0.304246,0.193915,-0.493213,-0.391514,-0.0231245,2.37429,-1.06536,-0.872829,-1.04311,-0.40749,-0.524402,0 +-1.85999,0.988654,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,-0.832876,0.193915,-0.493213,-0.391514,0.654983,3.7906,-0.882227,-0.680442,-0.904865,-0.40749,-0.524402,0 +-1.85999,0.471268,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.464154,-0.345159,0.0142255,-0.725884,-0.701232,-0.458336,-1.06536,-0.872829,-1.11224,-0.441999,-0.524402,0 +-1.85999,-0.822195,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,1.03271,-0.293819,-0.154921,-0.893069,-1.04029,0.957976,-1.06536,-1.06522,-1.18136,-0.511018,-0.524402,0 +-1.85999,0.729961,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.33719,0.0761009,-0.535235,0.855039,-0.49918,0.28486,-0.614428,-1.37934,-0.458336,-1.55373,-0.936957,-1.18136,-0.0969054,-0.524402,0 +-1.85999,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.45352,0.18932,-0.535235,0.890574,-0.49918,0.28486,-0.614428,-0.701232,-0.458336,-1.55373,-1.06522,-1.45786,-0.269452,-2.16152,0 +-2.16484,0.471268,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.26345,0.410851,-0.781552,0.318689,-1.17171,-1.04029,-0.458336,-1.43163,-1.32173,-1.59611,-0.511018,-2.16152,0 +-2.16484,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,-0.0371185,0.00833509,0.766201,-0.781552,0.352518,-1.11598,-1.37934,-0.458336,-1.55373,-1.38586,-1.73436,-0.580037,-2.16152,0 +-2.16484,1.76473,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.26345,-0.388688,-0.807222,0.386347,-1.11598,-1.37934,-0.458336,-1.43163,-1.19347,-1.52699,-0.476509,-2.16152,0 +-2.16484,3.83427,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.27903,0.0761009,-0.535235,-1.34813,-0.909903,0.521664,-1.11598,-1.37934,-0.458336,-1.30954,-0.936957,-1.31961,-0.441999,-2.16152,0 +-2.16484,1.50604,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.209093,-0.317617,-0.858563,0.386347,-1.22744,-1.04029,-0.458336,-1.43163,-1.19347,-1.59611,-0.511018,-2.16152,0 +-2.16484,1.24735,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,-0.15771,-0.858563,0.386347,-1.22744,-1.04029,-0.458336,-1.43163,-1.2576,-1.59611,-0.511018,-2.16152,0 +-2.16484,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.33719,-0.0371185,-0.100379,0.393083,-0.781552,0.352518,-1.11598,-1.37934,0.957976,-1.43163,-1.32173,-1.66524,-0.545527,-2.16152,0 +-2.16484,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,-0.0371185,0.0626921,0.855039,-0.781552,0.352518,-1.11598,-1.04029,-0.458336,-1.55373,-1.38586,-1.66524,-0.580037,-2.16152,0 +-1.3519,1.24735,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,-0.424223,-0.730212,0.521664,-0.725884,-0.701232,-0.458336,-0.943273,-0.552184,-0.904865,-0.37298,-0.524402,0 +-1.55514,-0.563502,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,-1.22087,0.0761009,-0.535235,0.499689,-0.370829,0.0142255,-0.781613,-0.362178,-0.458336,-1.06536,-1.06522,-1.31961,-0.441999,-0.524402,0 +-1.55514,-0.0461169,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,-1.33719,0.415759,-0.535235,-0.193245,-0.216808,-0.18875,-0.781613,-0.0231245,0.957976,-1.43163,-1.19347,-1.52699,-0.234943,-0.524402,0 +-1.55514,-0.563502,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.481921,-0.242478,-0.154921,-0.781613,0.315929,-0.458336,-1.06536,-1.00109,-1.25049,-0.441999,-0.524402,0 +-1.55514,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.22087,-0.150338,-0.535235,0.517456,-0.678871,0.217201,-1.11598,-0.362178,-0.458336,-1.06536,-1.00109,-1.25049,-0.580037,-0.524402,0 +-1.55514,-0.30481,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.27903,0.0761009,0.66062,-0.0511046,0.450617,-0.730018,-0.224329,-0.701232,2.37429,-0.699092,-0.936957,-1.04311,-0.269452,-0.524402,0 +-1.55514,-0.30481,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-1.27903,0.18932,1.36726,-0.29985,0.501957,-0.797677,-0.224329,-0.701232,2.37429,-0.699092,-0.936957,-0.97399,-0.200434,-0.524402,0 +-1.55514,-0.822195,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-1.51169,0.18932,-0.535235,0.375316,-0.396499,-0.154921,-1.11598,-1.04029,0.957976,-0.882227,-1.06522,-1.18136,-0.441999,-0.524402,0 +-1.55514,-0.822195,-0.203162,-0.803245,0.0373407,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.268711,-0.396499,-0.154921,-1.11598,-1.04029,0.957976,-0.760137,-1.06522,-1.18136,-0.303962,-0.524402,0 +-1.45352,-0.0461169,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,-1.22087,0.0761009,0.714977,-0.335385,0.450617,-0.730018,-0.224329,-1.04029,0.957976,-0.699092,-0.744571,-0.83574,-0.40749,-0.524402,0 +-1.45352,0.212576,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.39536,0.18932,-0.26345,-0.0511046,0.116904,-0.797677,-1.06025,-1.04029,0.957976,-0.699092,-0.8087,-0.904865,-0.338471,1.11272,0 +-1.45352,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.33719,0.0761009,-0.426521,0.517456,-0.730212,0.318689,-1.06025,-1.04029,-0.458336,-0.760137,-0.680442,-0.83574,-0.511018,-0.524402,0 +-1.45352,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.046022,0.197641,-0.781552,0.318689,-1.17171,-0.362178,-0.458336,-0.699092,-0.8087,-0.97399,-0.511018,-0.524402,0 +-1.45352,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.997179,-0.807222,0.420177,-1.06025,-1.37934,-0.458336,-1.06536,-0.744571,-1.04311,-0.476509,-0.524402,0 +-1.45352,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,1.40583,-0.807222,0.420177,-1.06025,-0.362178,0.957976,-0.760137,-0.680442,-0.83574,-0.545527,-0.524402,0 +-1.45352,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.22087,-0.150338,-0.535235,0.997179,-0.807222,0.420177,-1.06025,-1.04029,-0.458336,-1.06536,-0.8087,-1.11224,-0.545527,-0.524402,0 +-1.45352,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.33719,0.0761009,-0.535235,1.29923,-0.807222,0.420177,-1.06025,-0.362178,-0.458336,-0.760137,-0.680442,-0.83574,-0.545527,-0.524402,0 +-1.45352,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,0.855039,-0.858563,0.521664,-1.00453,-1.04029,-0.458336,-1.06536,-0.936957,-1.18136,-0.614546,-2.16152,0 +-1.45352,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,0.926109,-0.884233,0.555494,-1.00453,-1.04029,-0.458336,-1.06536,-0.936957,-1.18136,-0.614546,-2.16152,0 +-1.85999,0.471268,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.56985,0.30254,-0.535235,0.446386,0.399276,-0.763847,-0.391514,0.315929,-0.458336,-1.30954,-1.00109,-1.38874,-0.269452,-0.524402,0 +-1.85999,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.56985,0.30254,-0.535235,0.215408,0.296596,-0.62853,-0.391514,-0.362178,-0.458336,-1.06536,-0.872829,-1.18136,-0.37298,-0.524402,0 +-1.85999,0.729961,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,0.464154,0.450617,-0.831506,-0.391514,0.315929,-0.458336,-1.43163,-1.06522,-1.38874,-0.200434,-0.524402,0 +-1.85999,0.471268,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,0.428619,0.347936,-0.831506,-0.614428,0.315929,-0.458336,-1.43163,-1.12934,-1.52699,-0.200434,-0.524402,0 +-1.85999,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.56985,0.415759,-0.535235,0.250943,-0.370829,0.25103,-0.391514,-0.701232,-0.458336,-1.43163,-1.06522,-1.38874,-0.303962,-2.16152,0 +-1.85999,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.51169,0.30254,-0.535235,0.872807,-0.755882,0.217201,-1.28317,-1.04029,-0.458336,-1.43163,-1.38586,-1.66524,-0.580037,-2.16152,0 +-1.85999,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,1.42637,-1.74434,0.755417,-0.535235,1.01495,0.065564,-0.324067,-0.391514,-1.37934,0.957976,-1.06536,-1.12934,-1.31961,-0.200434,-0.524402,0 +-1.85999,2.54081,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.62801,0.528978,-0.535235,-0.264315,-0.370829,0.25103,-0.391514,-1.04029,0.957976,-1.06536,-0.872829,-1.18136,-0.338471,-0.524402,0 +-2.16484,0.471268,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-1.74434,0.755417,-0.480878,0.144338,-0.114127,-0.527043,-1.11598,-1.37934,0.957976,-1.55373,-1.44999,-1.73436,-0.338471,-0.524402,0 +-2.16484,-0.30481,-0.203162,0.554496,0.375155,-0.0574621,-0.268691,-1.74434,0.755417,-0.535235,0.606294,-0.114127,-0.527043,-1.11598,-0.362178,0.957976,-1.55373,-1.64238,-1.87261,-0.338471,-0.524402,0 +-2.16484,-0.0461169,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-1.51169,0.415759,-0.426521,0.304246,-0.268148,-0.324067,-1.11598,-1.04029,0.957976,-1.43163,-1.38586,-1.59611,-0.40749,-0.524402,0 +-2.16484,-0.822195,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-1.8025,0.981856,-0.372164,0.393083,-0.216808,-0.527043,-1.3389,-0.362178,0.957976,-1.55373,-1.7065,-1.94174,-0.303962,-0.524402,0 +-2.16484,-0.30481,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.39536,0.18932,-0.480878,0.179873,-0.396499,-0.154921,-1.11598,0.315929,-0.458336,-1.43163,-1.32173,-1.52699,-0.511018,-0.524402,0 +-2.16484,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,0.339781,-0.858563,-0.121092,-2.06337,-0.701232,0.957976,-1.43163,-1.32173,-1.52699,-0.580037,1.11272,0 +-2.16484,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.22087,-0.150338,-0.480878,0.037733,-0.42217,-0.121092,-1.11598,-0.0231245,2.37429,-1.06536,-1.19347,-1.45786,-0.511018,-0.524402,0 +-2.16484,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-1.27903,-0.0371185,-0.535235,0.197641,-0.935573,0.352518,-1.45035,-0.0231245,0.957976,-1.12641,-1.19347,-1.38874,-0.580037,-0.524402,0 +-1.85999,0.471268,-0.203162,1.5728,0.0373407,-0.0574621,1.42637,-1.74434,0.755417,-0.535235,-0.246547,0.476287,-0.459384,0.277226,-0.362178,0.957976,-1.00432,-1.2576,-1.31961,0.213679,-0.524402,0 +-1.85999,-0.30481,-0.203162,1.5728,0.712969,-0.0574621,3.12144,-1.86067,1.09507,-0.535235,-0.459758,0.553298,-0.560872,0.277226,-0.0231245,0.957976,-1.43163,-1.64238,-1.94174,0.489754,-2.16152,0 +-1.85999,-0.0461169,-0.203162,1.5728,-0.300473,-0.0574621,-0.268691,-1.51169,0.415759,-0.535235,0.446386,0.322266,-0.290238,0.221498,-0.701232,-0.458336,-0.515956,-0.8087,-0.904865,0.00662268,-0.524402,0 +-1.85999,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,-1.86067,0.981856,-0.535235,-0.246547,-0.396499,-0.324067,-1.39462,-0.0231245,-0.458336,-1.12641,-1.51412,-1.59611,0.00662268,-0.524402,0 +-1.85999,0.212576,-0.203162,1.91224,-0.300473,-0.0574621,-0.268691,-1.45352,0.415759,-0.535235,0.357548,0.81,-0.594701,0.778782,-0.362178,2.37429,-0.515956,-0.680442,-0.697491,-0.0623961,-0.524402,0 +-1.85999,0.729961,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.62801,0.415759,-0.535235,-0.0511046,-0.396499,-0.154921,-1.11598,-0.701232,0.957976,-0.699092,-0.872829,-1.04311,-0.338471,-0.524402,0 +-1.85999,-0.0461169,-0.203162,1.23337,0.0373407,-0.0574621,1.42637,-1.33719,0.30254,-0.535235,0.339781,0.964021,-0.763847,0.83451,-0.362178,2.37429,-0.271775,-0.8087,-0.628366,0.903866,-0.524402,0 +-1.85999,-0.563502,-0.203162,1.5728,-0.300473,-0.0574621,1.42637,-1.27903,0.415759,-0.535235,0.375316,0.964021,-0.763847,0.83451,-0.362178,2.37429,-0.515956,-0.8087,-0.559241,0.800338,-0.524402,0 +-1.85999,0.212576,-0.203162,1.23337,0.0373407,-0.0574621,1.42637,-1.39536,0.642198,-0.535235,0.0555005,1.34907,-0.763847,1.67044,-0.0231245,-0.458336,-0.393865,-0.359797,-0.420991,1.387,-0.524402,0 +-1.85999,0.729961,-0.203162,0.893932,0.375155,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-1.15269,1.40041,-0.763847,1.78189,-0.362178,-0.458336,0.460768,-0.488055,-0.559241,3.73363,-0.524402,0 +-1.96161,0.988654,-0.203162,1.91224,0.0373407,-0.0574621,1.42637,-1.62801,1.66117,-0.535235,0.712899,1.45175,-0.763847,1.89335,0.315929,-0.458336,0.460768,-0.103282,-0.144492,3.28501,-0.524402,0 +-1.96161,2.02342,-0.203162,2.25167,-0.638287,-0.0574621,-0.268691,-1.68618,1.88761,-0.535235,1.19262,1.3234,-0.594701,1.89335,-0.0231245,0.957976,0.460768,0.730394,0.61588,1.59405,-0.524402,0 +0.273975,-0.30481,-0.203162,0.215061,1.3886,-0.0574621,1.42637,-1.33719,0.30254,-0.535235,-0.761806,1.14371,-1.13597,0.611597,1.33309,-0.458336,-0.0886391,-0.423926,-0.213617,0.558773,-0.524402,0 +0.273975,-0.822195,-0.203162,0.215061,1.72641,-0.0574621,1.42637,-1.27903,0.30254,-0.535235,-0.744038,0.707319,-1.13597,-0.335786,0.654983,-0.458336,-0.0886391,-0.552184,-0.282742,0.524263,1.11272,0 +0.273975,0.729961,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.464736,-0.603215,-0.535235,-0.6552,-0.191138,0.72464,0.778782,0.315929,-0.458336,0.643904,1.11517,0.961504,-0.234943,-0.524402,0 +0.375592,0.471268,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-0.639228,-0.489996,-0.535235,-0.566363,-0.191138,0.72464,0.778782,-0.0231245,-0.458336,0.643904,0.858651,0.75413,-0.338471,-0.524402,0 +0.477209,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.755555,-0.376776,-0.209093,0.410851,-0.370829,0.183372,-0.502971,0.315929,-0.458336,0.643904,0.473878,0.546756,-0.338471,1.11272,0 +0.477209,-0.822195,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.755555,-0.376776,-0.154736,0.250943,-0.216808,-0.0196038,-0.502971,0.315929,-0.458336,0.643904,0.473878,0.546756,-0.303962,1.11272,0 +0.477209,-0.30481,-0.203162,0.893932,1.05078,-0.0574621,-0.268691,-0.871883,-0.263557,0.334477,-0.282082,0.193915,0.115713,0.611597,0.315929,-0.458336,0.460768,0.281491,0.408506,-0.0969054,-0.524402,0 +0.477209,-0.822195,-0.203162,0.554496,1.05078,-0.0574621,-0.268691,-0.813719,-0.376776,0.443191,-0.264315,-0.0884571,0.115713,-0.00141549,-0.701232,-0.458336,0.460768,0.281491,0.408506,-0.234943,1.11272,0 +0.477209,-0.0461169,-0.203162,1.23337,1.3886,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.046022,-0.832876,0.501957,-0.290238,0.611597,0.654983,-0.458336,0.399723,-0.039153,-0.00624269,0.420735,-0.524402,0 +0.477209,0.988654,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.10454,0.0761009,0.334477,-1.17046,0.501957,-0.290238,0.611597,1.33309,-0.458336,0.338678,0.0891048,0.201132,0.455245,-0.524402,0 +-0.742198,0.988654,-0.0317302,0.215061,1.72641,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-0.708503,0.93835,-0.899164,0.555868,0.654983,-0.458336,0.338678,-0.616313,-0.351867,2.04268,-0.524402,0 +-0.843816,2.7995,0.0111277,0.215061,1.05078,-0.0574621,-0.268691,-1.45352,0.981856,-0.535235,-1.45474,0.93835,-0.899164,0.555868,0.994036,0.957976,-0.21073,-0.039153,-0.00624269,0.0756414,-0.524402,0 +-0.843816,3.0582,0.0111277,0.215061,0.375155,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,-1.45474,0.93835,-0.899164,0.555868,-0.0231245,-0.458336,-0.21073,0.0891048,-0.00624269,-0.0969054,-0.524402,0 +-0.843816,0.988654,-0.0531591,0.215061,1.72641,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-0.690735,0.93835,-0.899164,0.555868,0.994036,-0.458336,0.338678,-0.616313,-0.282742,2.07718,-0.524402,0 +-0.843816,1.24735,-0.0531591,0.893932,1.05078,-0.0574621,-0.268691,-1.39536,0.868636,-0.535235,-0.477525,1.40041,-1.37277,0.778782,1.33309,-0.458336,0.338678,-0.423926,-0.0753675,1.59405,1.11272,0 +-0.843816,0.212576,0.0539856,0.215061,1.3886,-0.0574621,-0.268691,-1.39536,0.981856,-0.535235,-0.139942,1.40041,-1.37277,0.778782,1.33309,-0.458336,0.338678,-0.8087,-0.490116,2.52581,-0.524402,0 +-0.843816,-0.0461169,0.0539856,-0.124374,1.3886,-0.0574621,-0.268691,-1.45352,0.981856,-0.535235,0.0555005,1.40041,-1.37277,0.778782,1.67214,-0.458336,0.338678,-0.744571,-0.490116,2.24973,-0.524402,0 +-0.843816,-0.822195,0.0539856,0.215061,1.72641,-0.0574621,-0.268691,-1.45352,1.09507,-0.535235,0.0555005,1.40041,-1.37277,0.778782,1.33309,-0.458336,0.338678,-0.8087,-0.559241,2.59483,-0.524402,0 +-0.843816,-0.30481,0.0968435,0.554496,2.06422,-0.0574621,-0.268691,-1.68618,1.54795,-0.535235,-0.335385,1.40041,-1.37277,0.778782,2.0112,-0.458336,-0.393865,-1.2576,-1.18136,1.83562,-0.524402,0 +-0.538964,1.24735,-0.0531591,-0.124374,0.712969,-0.0574621,1.42637,-1.56985,0.981856,-0.535235,-1.11716,0.93835,-0.899164,0.555868,-0.0231245,-0.458336,-0.21073,-0.552184,-0.351867,0.972885,-0.524402,0 +-0.538964,0.988654,-0.0317302,0.215061,1.05078,-0.0574621,1.42637,-1.62801,1.20829,-0.535235,-1.11716,0.93835,-0.899164,0.555868,0.994036,-0.458336,-0.21073,-0.744571,-0.628366,1.31798,-0.524402,0 +-0.538964,0.729961,0.0111277,-0.124374,1.05078,-0.0574621,1.42637,-1.45352,0.981856,-0.535235,-0.335385,0.989691,-0.966823,0.555868,0.994036,-0.458336,0.338678,-0.552184,-0.282742,1.7666,-0.524402,0 +-0.538964,-0.822195,0.0539856,0.215061,1.72641,-0.0574621,3.12144,-1.45352,1.09507,-0.535235,0.037733,1.40041,-1.37277,0.778782,1.67214,-0.458336,0.338678,-0.872829,-0.559241,2.69835,-0.524402,0 +-0.538964,-0.0461169,-0.0103012,0.893932,1.05078,-0.0574621,1.42637,-1.33719,0.755417,-0.535235,0.144338,0.527627,-0.966823,-0.447242,0.654983,-0.458336,-0.271775,-0.616313,-0.490116,0.800338,1.11272,0 +-0.538964,-0.563502,0.0325567,0.215061,0.712969,-0.0574621,1.42637,-1.45352,0.981856,-0.535235,0.215408,1.40041,-1.37277,0.778782,0.994036,-0.458336,0.338678,-0.744571,-0.559241,2.11169,-0.524402,0 +-0.538964,0.212576,0.0111277,0.215061,1.05078,-0.0574621,1.42637,-1.27903,0.755417,-0.535235,-0.15771,0.527627,-0.966823,-0.447242,1.33309,-0.458336,-0.271775,-0.616313,-0.490116,0.765829,1.11272,0 +-0.538964,-0.822195,0.0968435,1.23337,1.3886,-0.0574621,3.12144,-1.74434,1.54795,-0.535235,0.0910356,1.40041,-1.37277,0.778782,1.67214,-0.458336,-0.271775,-1.32173,-1.11224,1.87013,-0.524402,0 +-0.538964,0.471268,0.0325567,-0.124374,1.05078,-0.0574621,-0.268691,-0.988211,0.415759,-0.535235,-0.211012,1.22072,-1.1698,0.723053,0.994036,0.957976,-0.271775,-0.423926,-0.351867,0.386226,-0.524402,0 +-0.538964,0.729961,-0.0745881,0.215061,0.712969,-0.0574621,-0.268691,-0.871883,0.18932,-0.535235,-0.495293,0.501957,-0.865335,-0.335786,0.654983,-0.458336,-0.271775,-0.103282,-0.213617,-0.0969054,1.11272,0 +-0.538964,0.988654,0.0111277,-0.124374,1.3886,-0.0574621,-0.268691,-0.930047,0.415759,-0.535235,-0.797341,0.989691,-0.865335,0.723053,2.35025,-0.458336,-0.0275938,-0.423926,-0.213617,0.731319,-0.524402,0 +-0.538964,1.24735,0.0111277,-0.124374,1.05078,-0.0574621,-0.268691,-0.930047,0.415759,-0.535235,-0.939481,1.81114,-1.23746,1.89335,2.35025,-0.458336,-0.0275938,-0.295669,-0.0753675,0.765829,-0.524402,0 +-0.538964,1.24735,0.0111277,-0.46381,1.05078,-0.0574621,-0.268691,-0.988211,0.642198,-0.535235,-0.779573,1.81114,-1.23746,1.89335,2.6893,-0.458336,-0.0275938,-0.488055,-0.144492,1.0419,-0.524402,0 +-0.538964,1.24735,0.0111277,-0.46381,1.05078,-0.0574621,-0.268691,-1.1627,0.642198,-0.535235,-1.2593,1.81114,-1.23746,1.89335,2.6893,-0.458336,-0.149684,-0.616313,-0.213617,1.387,-0.524402,0 +-0.538964,0.988654,-0.0531591,-0.124374,1.3886,-0.0574621,1.42637,-1.51169,1.09507,-0.535235,-0.530828,0.93835,-0.899164,0.555868,0.994036,-0.458336,0.338678,-0.552184,-0.213617,1.97366,-0.524402,0 +-0.538964,-0.0461169,-0.0745881,-0.46381,1.3886,-0.0574621,4.81651,-1.91883,1.54795,-0.535235,-1.45474,0.476287,-0.899164,-0.447242,-0.0231245,-0.458336,-1.37059,-1.2576,-1.52699,0.869357,-0.524402,0 +-0.538964,0.729961,0.0111277,0.215061,1.05078,-0.0574621,1.42637,-1.45352,0.981856,-0.535235,-0.282082,0.989691,-0.966823,0.555868,0.654983,-0.458336,0.338678,-0.488055,-0.213617,1.80111,-0.524402,0 +-0.538964,-0.822195,0.0325567,-0.124374,1.3886,-0.0574621,3.12144,-1.45352,1.20829,-0.535235,0.179873,1.40041,-1.37277,0.778782,2.35025,-0.458336,0.338678,-0.872829,-0.490116,2.83639,-0.524402,0 +-0.538964,0.471268,0.0111277,0.215061,1.05078,-0.0574621,1.42637,-1.22087,0.755417,-0.535235,0.00219796,0.527627,-0.966823,-0.447242,1.33309,-0.458336,-0.271775,-0.552184,-0.420991,0.765829,1.11272,0 +-0.538964,-0.822195,0.139701,1.91224,2.06422,-0.0574621,3.12144,-1.8025,1.77439,-0.535235,-0.0688721,1.40041,-1.37277,0.778782,1.67214,-0.458336,-0.271775,-1.32173,-1.18136,1.90464,-0.524402,0 +-0.538964,0.212576,0.0111277,0.215061,0.712969,-0.0574621,1.42637,-1.04637,0.30254,-0.535235,-0.317617,0.527627,-0.966823,-0.447242,1.33309,-0.458336,-0.271775,-0.359797,-0.351867,0.282698,1.11272,0 +-0.538964,0.471268,-0.0317302,-0.124374,1.05078,-0.0574621,-0.268691,-1.04637,0.30254,-0.535235,-0.193245,0.501957,-0.865335,-0.335786,0.654983,-0.458336,-0.271775,-0.23154,-0.351867,0.00662268,1.11272,0 +-0.538964,0.988654,-0.0103012,-0.46381,1.05078,-0.0574621,-0.268691,-0.871883,0.30254,-0.535235,-0.832876,0.989691,-0.865335,0.723053,2.35025,-0.458336,-0.0275938,-0.359797,-0.213617,0.558773,-0.524402,0 +-0.538964,1.24735,-0.0317302,-0.124374,1.05078,-0.0574621,-0.268691,-0.813719,0.18932,-0.535235,-0.761806,1.81114,-1.23746,1.89335,1.33309,-0.458336,-0.0275938,-0.167411,-0.144492,0.0756414,-0.524402,0 +-0.538964,0.729961,0.0325567,-0.124374,0.712969,-0.0574621,1.42637,-1.04637,0.415759,-0.535235,-0.424223,1.14371,-1.06831,0.723053,2.35025,-0.458336,-0.0275938,-0.423926,-0.351867,0.627791,-0.524402,0 +-0.538964,2.02342,0.0325567,0.215061,0.375155,-0.0574621,-0.268691,-0.639228,0.30254,-0.535235,-0.58413,1.37474,-1.1698,1.05742,0.315929,-0.458336,-0.0275938,0.0249759,0.0628821,-0.0278867,-0.524402,0 +-0.538964,-0.0461169,0.16113,-0.46381,0.375155,-0.0574621,4.81651,-0.988211,0.755417,-0.535235,-0.388688,1.04103,-1.33894,0.0543129,3.36741,-0.458336,-0.515956,-1.44999,-0.628366,2.90541,1.11272,1 +-0.538964,-0.822195,0.203988,-0.46381,0.375155,-0.0574621,4.81651,-1.04637,0.981856,-0.535235,-0.175477,1.91382,-1.33894,1.94908,3.36741,-0.458336,-0.515956,-1.77063,-0.97399,3.69913,-0.524402,2 +-0.538964,-0.822195,0.203988,-0.46381,0.0373407,-0.0574621,4.81651,-0.988211,0.868636,-0.535235,0.073268,1.47742,-1.33894,1.0017,2.6893,-0.458336,-0.515956,-1.96302,-1.25049,3.9752,-0.524402,2 +-0.538964,-0.822195,0.332562,-0.46381,0.375155,-0.0574621,4.81651,-0.755555,1.20829,-0.535235,-0.815108,1.91382,-1.33894,1.94908,2.35025,0.957976,-3.8124,-2.34779,-3.60073,4.32029,-2.16152,2 +-0.538964,-0.822195,0.396849,-0.124374,0.712969,-0.0574621,6.51157,-0.639228,1.43473,-0.535235,-1.45474,1.27206,-1.33894,0.555868,1.33309,2.37429,-3.8124,-2.7967,-4.08461,3.07796,-2.16152,2 +-0.234112,-0.563502,-0.203162,0.215061,0.375155,-0.0574621,-0.268691,-1.1627,0.0761009,-0.535235,0.712899,0.347936,-0.763847,-0.502971,-0.701232,-0.458336,-0.0886391,-0.167411,-0.0753675,-0.131415,1.11272,0 +-0.234112,-0.822195,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,-1.62801,0.642198,-0.535235,0.730666,0.270926,-0.797677,-0.725884,-0.362178,0.957976,-0.638046,-0.552184,-0.559241,0.0756414,1.11272,0 +-0.132494,-0.563502,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.535235,0.908342,0.219585,-0.594701,-0.502971,-0.362178,2.37429,0.155542,0.0249759,-0.00624269,-0.269452,1.11272,0 +-0.132494,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,0.908342,-0.909903,0.893786,-0.502971,-1.04029,-0.458336,0.0334514,0.217363,0.0628821,-0.580037,-0.524402,0 +-0.132494,0.471268,-0.203162,-0.803245,0.375155,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,0.499689,0.553298,-0.594701,0.221498,-0.0231245,2.37429,0.216587,0.217363,0.132007,-0.0969054,1.11272,0 +-0.132494,-0.563502,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,0.677364,0.168245,-0.594701,-0.614428,0.315929,2.37429,0.155542,-0.103282,-0.0753675,-0.0623961,1.11272,0 +-0.132494,1.76473,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,-1.56985,0.868636,-0.535235,-0.939481,0.732989,-0.594701,0.611597,0.315929,-0.458336,0.216587,0.217363,0.270256,0.351716,1.11272,0 +-0.132494,1.50604,-0.203162,-0.46381,1.3886,-0.0574621,-0.268691,-1.62801,1.09507,-0.535235,-0.744038,0.758659,-0.594701,0.667325,0.654983,0.957976,0.460768,0.217363,0.339381,0.593282,1.11272,0 +-0.132494,1.76473,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-1.51169,0.755417,-0.535235,-0.335385,0.630308,-0.459384,0.611597,0.654983,2.37429,0.338678,0.281491,0.270256,0.14466,-0.524402,0 +-0.132494,1.76473,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,-1.22087,0.0761009,-0.535235,-0.744038,-0.319489,0.555494,0.221498,-0.701232,0.957976,0.460768,0.730394,0.61588,-0.269452,-0.524402,0 +-0.132494,1.24735,-0.203162,-0.803245,0.712969,-0.0574621,-0.268691,-1.45352,0.642198,-0.535235,-0.0688721,0.630308,-0.459384,0.611597,0.994036,2.37429,0.338678,0.34562,0.339381,0.110151,-0.524402,0 +-0.132494,1.24735,-0.203162,-0.803245,1.05078,-0.0574621,-0.268691,-1.56985,0.868636,-0.535235,-0.0333371,0.81,-0.66236,0.667325,1.67214,2.37429,0.216587,0.0891048,0.132007,0.17917,-0.524402,0 +-0.132494,0.471268,-0.203162,-0.803245,0.375155,-0.0574621,-0.268691,-1.22087,0.18932,-0.535235,-0.122175,0.604638,-0.865335,-0.112872,1.67214,0.957976,0.338678,0.153234,0.270256,0.248188,1.11272,0 +-0.132494,-0.30481,-0.203162,-0.803245,0.375155,-0.0574621,-0.268691,-1.04637,0.18932,-0.535235,0.073268,0.81,-0.899164,0.277226,2.35025,0.957976,0.338678,0.0891048,0.201132,0.489754,1.11272,0 +-0.132494,-0.30481,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.037733,0.604638,-0.865335,-0.112872,2.35025,0.957976,0.338678,0.153234,0.270256,0.248188,1.11272,0 +-0.132494,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.39536,0.18932,-0.535235,0.872807,-0.730212,0.420177,-0.893069,0.315929,-0.458336,0.0334514,0.0891048,-0.00624269,-0.545527,1.11272,0 +-0.0308771,-0.0461169,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-0.988211,0.18932,-0.535235,-0.51306,0.81,-0.899164,0.277226,1.67214,0.957976,0.582859,0.153234,0.408506,0.731319,1.11272,0 +0.0707402,-0.563502,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-1.04637,0.30254,-0.535235,-0.530828,0.81,-0.899164,0.277226,2.0112,0.957976,0.582859,0.0891048,0.339381,0.903866,1.11272,0 +0.0707402,-0.822195,-0.203162,-0.124374,1.3886,-0.0574621,-0.268691,-1.10454,0.642198,-0.535235,-0.477525,0.81,-0.899164,0.277226,2.35025,2.37429,0.643904,-0.103282,0.132007,1.62856,1.11272,0 +0.0707402,-0.822195,-0.203162,-0.803245,1.05078,-0.0574621,-0.268691,-0.988211,0.30254,-0.535235,-0.601898,0.81,-0.899164,0.277226,2.0112,2.37429,0.643904,0.0249759,0.270256,1.07641,1.11272,0 +1.08691,-0.822195,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.756704,-1.05609,-0.100379,-0.175477,-0.961244,0.995274,-0.447242,-1.37934,-0.458336,0.582859,0.666265,0.685005,-0.580037,1.11272,1 +1.08691,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,0.00833509,-0.104407,-1.29496,1.43505,-0.447242,-0.701232,-0.458336,0.643904,0.730394,0.685005,-0.614546,-0.524402,1 +-1.25028,1.24735,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.871883,-0.376776,-0.535235,-0.992783,-0.601861,0.555494,-0.391514,-1.04029,-0.458336,-0.393865,-0.23154,-0.490116,-0.37298,-0.524402,0 +-1.25028,1.24735,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,-1.1627,-0.150338,-0.535235,-0.868411,-0.0884571,-0.121092,-0.391514,-0.0231245,-0.458336,-0.515956,-0.359797,-0.628366,-0.234943,-0.524402,0 +-1.25028,0.212576,-0.203162,1.5728,0.0373407,-0.0574621,-0.268691,-1.33719,0.18932,-0.535235,-0.58413,-0.0884571,-0.121092,-0.391514,-0.701232,-0.458336,-1.06536,-0.616313,-1.04311,-0.0969054,-0.524402,0 +-1.25028,0.988654,-0.203162,1.91224,0.712969,-0.0574621,-0.268691,-1.51169,0.642198,-0.535235,-0.939481,0.322266,-0.66236,-0.391514,-0.701232,-0.458336,-0.760137,-0.744571,-0.83574,0.00662268,-0.524402,0 +-1.25028,0.729961,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,-1.33719,0.415759,-0.535235,-0.72627,0.0398938,-0.66236,-1.00453,-0.0231245,-0.458336,-0.515956,-0.872829,-0.83574,0.213679,1.11272,0 +-1.25028,-0.0461169,-0.203162,0.893932,1.3886,-0.0574621,-0.268691,-1.27903,0.30254,-0.535235,-0.779573,0.065564,-0.763847,-1.11598,-0.701232,-0.458336,-1.06536,-1.32173,-1.31961,0.351716,1.11272,0 +-1.25028,-0.0461169,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,-0.672968,0.065564,-0.763847,-1.11598,-0.0231245,-0.458336,-0.943273,-1.44999,-1.45786,0.524263,-0.524402,0 +-1.25028,-0.0461169,-0.203162,0.893932,1.05078,-0.0574621,1.42637,-1.22087,0.0761009,-0.535235,-1.2593,0.065564,-0.763847,-1.11598,0.654983,-0.458336,-0.882227,-1.44999,-1.45786,0.593282,-0.524402,0 +-1.25028,-0.822195,-0.203162,-0.46381,1.05078,-0.0574621,3.12144,-1.33719,0.18932,-0.535235,-1.45474,-0.0627869,-0.763847,-1.39462,-0.701232,-0.458336,-0.882227,-1.83476,-2.07999,1.17994,-0.524402,1 +-1.25028,-0.822195,-0.203162,-0.46381,1.05078,-0.0574621,3.12144,-1.33719,0.18932,-0.535235,-1.45474,-0.0627869,-0.763847,-1.39462,-0.701232,-0.458336,-0.882227,-1.83476,-2.07999,1.17994,-0.524402,0 +-1.25028,-0.563502,-0.203162,1.23337,1.3886,-0.0574621,1.42637,-1.1627,0.0761009,-0.535235,-0.672968,-0.0371167,-0.797677,-1.39462,-0.0231245,-0.458336,-1.43163,-1.57825,-1.66524,0.17917,-0.524402,0 +-1.25028,-0.822195,-0.203162,1.23337,2.06422,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,-0.44199,-0.0884571,-0.797677,-1.50608,-0.701232,0.957976,-1.43163,-1.44999,-1.52699,0.0756414,1.11272,0 +-1.25028,0.212576,-0.203162,1.5728,0.712969,-0.0574621,-0.268691,-0.755555,-0.263557,-0.535235,-0.335385,0.322266,-0.797677,-0.614428,0.315929,0.957976,-0.638046,-0.744571,-0.83574,0.351716,1.11272,0 +-1.25028,-0.822195,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.10454,-0.0371185,-0.535235,-0.459758,-0.0884571,-0.797677,-1.50608,-0.362178,0.957976,-1.43163,-1.38586,-1.45786,0.0411321,1.11272,0 +-1.25028,0.212576,-0.203162,1.5728,0.375155,-0.0574621,-0.268691,-0.581064,-0.376776,-0.535235,-0.282082,0.0142237,-0.391726,-0.614428,0.654983,-0.458336,-0.0886391,-0.552184,-0.628366,0.558773,1.11272,0 +-1.25028,0.729961,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.535235,0.073268,-0.319489,0.0480547,-0.614428,-0.0231245,-0.458336,0.765994,-0.23154,-0.420991,0.972885,-0.524402,0 +-1.25028,0.471268,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,-0.122175,0.0142237,-0.391726,-0.614428,0.315929,-0.458336,0.765994,-0.423926,-0.559241,1.69758,1.11272,0 +-1.25028,0.988654,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,-0.535235,-0.282082,-0.576191,0.386347,-0.614428,-0.362178,-0.458336,0.765994,0.0249759,-0.0753675,0.455245,1.11272,0 +0.883679,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,-0.100379,-0.0866397,-1.29496,1.43505,-0.447242,-1.37934,-0.458336,0.582859,0.730394,0.685005,-0.614546,-0.524402,1 +0.883679,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.640377,-1.05609,-0.046022,-0.0511046,-1.29496,1.43505,-0.447242,-1.37934,-0.458336,0.643904,0.794523,0.75413,-0.614546,-0.524402,0 +0.883679,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.756704,-1.05609,0.388834,-0.246547,-1.26929,1.63803,-0.0571439,-1.37934,-0.458336,0.94913,1.11517,1.03063,-0.614546,-0.524402,1 +0.883679,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-1.05609,0.66062,-0.335385,-1.47465,1.73952,-0.335786,-1.37934,-0.458336,0.94913,1.05104,1.03063,-0.649055,-0.524402,0 +0.883679,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.698541,-1.05609,1.20419,-0.335385,-1.24362,1.6042,-0.0571439,-1.04029,-0.458336,1.07122,1.1793,1.16888,-0.614546,-0.524402,1 +0.883679,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-1.05609,1.14983,-0.37092,-1.24362,1.6042,-0.0571439,-0.701232,-0.458336,1.07122,1.1793,1.16888,-0.614546,-0.524402,1 +0.883679,-0.563502,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,0.116902,-0.489996,0.986762,-0.424223,1.11804,-0.865335,1.0017,-0.701232,-0.458336,0.94913,0.730394,1.09975,0.627791,1.11272,0 +0.883679,-0.563502,-0.203162,1.23337,1.72641,-0.0574621,-0.268691,-0.348408,-0.150338,0.66062,-0.51306,1.14371,-0.899164,1.0017,-1.04029,-0.458336,1.19331,0.34562,0.75413,1.87013,1.11272,0 +0.883679,-0.30481,-0.203162,1.23337,1.72641,-0.0574621,-0.268691,-0.348408,0.0761009,0.932405,-0.637433,1.14371,-0.899164,1.0017,-0.0231245,-0.458336,1.19331,0.34562,0.823255,2.11169,1.11272,0 +0.883679,-0.822195,-0.203162,1.5728,1.72641,-0.0574621,-0.268691,-0.173917,0.18932,1.25855,-0.44199,1.14371,-0.899164,1.0017,-0.701232,0.957976,1.19331,0.409749,1.03063,2.35326,1.11272,0 +0.883679,0.212576,-0.203162,0.554496,3.07767,-0.0574621,-0.268691,-0.871883,0.528978,-0.535235,-1.45474,1.14371,-0.899164,1.0017,-0.701232,-0.458336,1.19331,-0.103282,0.270256,3.31952,1.11272,0 +0.883679,-0.0461169,-0.203162,0.215061,3.7533,-0.0574621,-0.268691,-1.27903,0.868636,-0.535235,-1.45474,1.14371,-0.899164,1.0017,-0.701232,-0.458336,0.338678,-0.423926,-0.351867,2.21522,-0.524402,0 +1.18853,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,0.388834,-0.15771,-0.730212,1.06293,0.16577,1.33309,-0.458336,0.94913,1.24342,1.16888,-0.580037,1.11272,1 +1.18853,-0.30481,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.175066,-0.716435,0.117049,-0.29985,-0.139797,0.318689,0.221498,1.33309,-0.458336,0.94913,1.30755,1.238,-0.545527,1.11272,1 +1.18853,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,0.171406,0.0199655,-1.19228,1.6042,0.0543129,-1.04029,-0.458336,0.94913,1.11517,1.03063,-0.614546,-0.524402,1 +1.18853,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,-0.154736,0.037733,-1.19228,1.6042,0.0543129,-1.04029,-0.458336,0.94913,1.11517,1.03063,-0.614546,-0.524402,1 +1.18853,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.535235,0.073268,-0.0884571,0.352518,0.388683,-0.0231245,-0.458336,1.07122,1.1793,1.09975,-0.511018,1.11272,0 +1.18853,0.471268,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.603215,-0.535235,0.037733,-1.01258,1.57037,0.388683,-0.701232,-0.458336,0.94913,1.11517,0.961504,-0.545527,-0.524402,0 +1.18853,0.471268,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.716435,-0.26345,-0.0866397,-0.0884571,0.352518,0.388683,0.315929,-0.458336,0.704949,1.1793,1.09975,-0.476509,1.11272,0 +1.18853,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.100379,-0.406455,-1.11526,1.50271,0.0543129,0.315929,-0.458336,0.704949,0.986909,0.89238,-0.580037,-0.524402,0 +1.18853,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.465885,-0.829654,-0.100379,-0.282082,0.065564,-0.0196038,0.110041,0.315929,-0.458336,0.704949,0.986909,0.89238,-0.614546,1.11272,0 +1.18853,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.582213,-0.829654,0.00833509,0.00219796,-0.114127,-0.0196038,-0.280057,-0.0231245,-0.458336,0.704949,0.92278,0.823255,-0.614546,1.11272,0 +0.883679,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.603215,-0.046022,0.233176,-0.52485,0.623152,-0.112872,1.33309,-0.458336,0.94913,0.92278,0.89238,-0.511018,1.11272,1 +0.883679,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.291394,-0.603215,0.00833509,0.499689,0.0142237,-0.154921,-0.224329,0.654983,-0.458336,0.94913,0.92278,1.03063,-0.476509,1.11272,1 +0.883679,1.50604,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.232081,-0.489996,-0.535235,-0.37092,-0.627531,1.13059,0.50014,-0.362178,-0.458336,0.704949,0.92278,0.823255,-0.511018,-0.524402,0 +0.883679,2.54081,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.535235,-1.33037,-0.678871,1.3674,0.778782,-0.0231245,-0.458336,0.704949,1.11517,0.961504,-0.476509,-0.524402,0 +0.883679,1.24735,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.173917,-0.489996,-0.535235,-0.211012,-0.627531,1.13059,0.50014,-0.701232,-0.458336,0.704949,0.92278,0.823255,-0.511018,-0.524402,0 +0.883679,-0.30481,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.535235,0.108803,-0.807222,0.995274,-0.112872,-0.362178,-0.458336,0.704949,0.794523,0.75413,-0.580037,-0.524402,0 +0.883679,1.50604,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.535235,-0.175477,-0.755882,1.29974,0.50014,-0.362178,-0.458336,0.765994,0.986909,0.89238,-0.545527,-0.524402,0 +0.883679,1.24735,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.0555005,-0.242478,0.420177,0.16577,-0.701232,-0.458336,0.765994,0.92278,0.89238,-0.545527,1.11272,0 +0.883679,0.729961,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.570759,0.681649,-0.66236,0.388683,0.654983,-0.458336,0.643904,0.858651,0.75413,-0.476509,1.11272,0 +0.883679,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.376776,-0.535235,0.712899,-0.242478,1.23208,1.50325,-0.0231245,-0.458336,0.643904,0.794523,0.75413,-0.580037,-2.16152,0 +0.883679,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.535235,0.357548,-0.345159,0.589323,0.221498,0.315929,-0.458336,0.582859,0.794523,0.75413,-0.511018,-0.524402,0 +0.883679,1.76473,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.406572,-0.376776,-0.535235,-1.08162,-0.345159,0.589323,0.221498,0.654983,-0.458336,0.582859,0.858651,0.75413,-0.441999,-0.524402,0 +1.08691,0.471268,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.348408,-0.489996,-0.209093,-0.58413,-0.191138,0.758469,0.83451,0.654983,0.957976,1.07122,1.1793,1.09975,-0.476509,-0.524402,0 +1.08691,0.212576,-0.203162,-1.14268,-0.300473,-0.0574621,-0.268691,-0.406572,-0.489996,-0.26345,0.0199655,0.681649,-0.391726,0.83451,0.994036,0.957976,0.888085,1.1793,1.09975,-0.40749,1.11272,0 +1.08691,0.212576,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.5229,-0.376776,-0.372164,-0.211012,-0.191138,0.758469,0.83451,-0.362178,-0.458336,1.07122,1.1793,1.16888,-0.441999,-0.524402,0 +1.08691,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.464736,-0.376776,-0.26345,-0.957248,-0.704542,1.43505,0.83451,-1.04029,-0.458336,1.19331,1.43581,1.30713,-0.511018,-0.524402,0 +1.08691,-0.563502,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,-0.480878,0.357548,-0.653201,1.19825,0.555868,-1.37934,-0.458336,1.07122,1.24342,1.238,-0.580037,-0.524402,0 +1.08691,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,-0.480878,0.357548,-0.781552,1.19825,0.277226,-1.04029,-0.458336,1.19331,1.24342,1.238,-0.545527,-0.524402,1 +1.08691,-0.30481,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,-0.535235,0.322013,-0.858563,1.43505,0.50014,-1.04029,-0.458336,1.07122,1.24342,1.238,-0.580037,-0.524402,0 +1.08691,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,-0.535235,0.286478,-1.03825,1.53654,0.277226,-0.701232,-0.458336,1.19331,1.30755,1.30713,-0.580037,-0.524402,1 +1.08691,1.50604,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.376776,-0.535235,0.0910356,-0.576191,1.09676,0.555868,-1.04029,-0.458336,0.94913,1.1793,1.09975,-0.476509,-0.524402,0 +1.08691,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,-0.51306,-0.42217,0.893786,0.555868,-1.04029,-0.458336,1.07122,1.24342,1.16888,-0.476509,-0.524402,0 +1.08691,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.535235,-0.388688,-0.576191,1.09676,0.555868,-1.04029,-0.458336,1.07122,1.24342,1.16888,-0.511018,-0.524402,0 +1.08691,2.02342,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,-0.535235,-0.637433,-0.781552,1.3674,0.555868,-0.701232,-0.458336,1.07122,1.24342,1.238,-0.545527,-0.524402,0 +1.29015,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.535235,0.037733,-0.550521,1.09676,0.611597,-0.701232,-0.458336,1.19331,1.11517,1.09975,-0.441999,-0.524402,0 +1.29015,1.24735,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.535235,-0.672968,-0.550521,1.09676,0.611597,-0.0231245,-0.458336,1.19331,1.24342,1.238,-0.476509,-0.524402,0 +1.29015,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,-0.0511046,-0.550521,1.09676,0.611597,-0.701232,-0.458336,1.07122,1.11517,1.09975,-0.511018,-0.524402,0 +1.29015,0.729961,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.376776,-0.535235,0.108803,-0.550521,1.09676,0.611597,-0.362178,-0.458336,0.765994,1.11517,1.03063,-0.476509,-0.524402,0 +1.29015,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,-0.22878,-0.47351,1.09676,0.778782,-1.37934,-0.458336,1.07122,1.1793,1.16888,-0.511018,-0.524402,0 +1.29015,1.76473,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.697392,-0.376776,-0.535235,-0.850643,-0.47351,1.09676,0.778782,-0.701232,-0.458336,1.07122,1.24342,1.16888,-0.511018,-0.524402,0 +1.39177,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,1.42162,-0.815108,-0.909903,1.67186,0.778782,-1.37934,-0.458336,1.19331,1.49994,1.44538,-0.614546,-0.524402,0 +1.39177,1.24735,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,0.28012,-1.13492,-0.909903,1.57037,0.611597,-1.37934,-0.458336,1.19331,1.43581,1.37625,-0.614546,-0.524402,0 +1.39177,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.829654,2.12826,-0.601898,-1.19228,1.67186,0.16577,-1.04029,-0.458336,1.37645,1.43581,1.44538,-0.614546,-0.524402,0 +1.39177,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,2.29133,-0.530828,-1.3463,1.87483,0.16577,-0.701232,-0.458336,1.37645,1.49994,1.44538,-0.649055,-0.524402,1 +1.39177,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,1.96519,-0.530828,-1.06392,1.70569,0.50014,-0.701232,-0.458336,1.19331,1.43581,1.44538,-0.614546,-0.524402,0 +1.39177,-0.563502,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,1.6934,-0.51306,-1.21795,1.70569,0.16577,-1.04029,-0.458336,1.19331,1.43581,1.44538,-0.649055,-0.524402,0 +1.39177,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.290245,-0.489996,1.47598,-0.58413,-0.730212,1.29974,0.555868,-1.04029,-0.458336,1.19331,1.43581,1.44538,-0.614546,-0.524402,0 +1.39177,2.54081,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.639228,-0.150338,-0.535235,-0.601898,-0.730212,1.29974,0.555868,-0.701232,-0.458336,1.19331,1.43581,1.37625,-0.580037,-0.524402,0 +1.49338,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.173917,-0.716435,-0.209093,0.00219796,-1.08959,1.63803,0.332955,-1.04029,-0.458336,1.07122,1.30755,1.238,-0.614546,-0.524402,0 +1.49338,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,-0.480878,0.250943,-1.26929,1.67186,-0.00141549,-1.37934,-0.458336,1.07122,1.24342,1.238,-0.649055,-0.524402,0 +1.49338,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.173917,-0.603215,-0.100379,0.215408,-1.01258,1.63803,0.50014,-0.0231245,-0.458336,1.19331,1.37168,1.37625,-0.614546,-0.524402,0 +1.49338,-0.30481,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.173917,-0.489996,0.28012,0.250943,-0.268148,1.40122,1.72616,0.315929,-0.458336,1.19331,1.49994,1.37625,-0.614546,-0.524402,1 +1.49338,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.100379,0.641829,-0.601861,1.09676,0.50014,0.315929,-0.458336,1.19331,1.37168,1.37625,-0.545527,-0.524402,0 +1.49338,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.348408,-0.376776,-0.26345,0.926109,-0.268148,1.40122,1.72616,-0.0231245,0.957976,1.19331,1.30755,1.37625,-0.580037,-0.524402,1 +1.49338,-0.0461169,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.290245,-0.603215,0.551906,0.197641,-0.653201,1.09676,0.388683,-0.701232,-0.458336,1.19331,1.30755,1.37625,-0.545527,1.11272,0 +1.49338,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.535235,0.428619,-0.909903,1.43505,0.388683,-1.04029,-0.458336,0.94913,1.30755,1.238,-0.511018,-0.524402,0 +1.49338,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.535235,0.428619,-0.909903,1.43505,0.388683,-1.04029,-0.458336,0.94913,1.30755,1.238,-0.511018,-0.524402,0 +1.49338,-0.563502,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.0575893,-0.716435,2.40005,-0.193245,-0.653201,1.09676,0.388683,-0.362178,-0.458336,1.37645,1.49994,1.5145,-0.580037,1.11272,0 +1.49338,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.581064,-0.263557,-0.372164,0.855039,-0.730212,1.09676,0.221498,-0.701232,-0.458336,1.19331,1.1793,1.238,-0.476509,1.11272,0 +1.49338,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.175066,-0.942873,2.72619,-0.58413,-1.50032,1.94249,-0.0571439,-1.04029,-0.458336,1.37645,1.56407,1.5145,-0.649055,1.11272,0 +1.49338,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.175066,-0.942873,2.8349,-0.619665,-1.55166,2.01015,-0.0571439,-1.04029,-0.458336,1.37645,1.56407,1.58363,-0.649055,1.11272,1 +1.49338,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.23323,-0.942873,2.67183,-0.601898,-1.52599,1.97632,-0.0571439,-1.04029,-0.458336,1.37645,1.56407,1.58363,-0.649055,1.11272,0 +1.49338,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.23323,-0.942873,2.8349,-0.6552,-1.603,2.07781,-0.0571439,-1.04029,-0.458336,1.37645,1.56407,1.58363,-0.649055,-0.524402,1 +1.49338,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,2.50876,-0.672968,-1.47465,1.97632,0.0543129,-0.701232,-0.458336,1.37645,1.56407,1.58363,-0.649055,-0.524402,0 +1.49338,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,2.12826,-0.690735,-1.47465,1.97632,0.0543129,-1.04029,-0.458336,1.37645,1.56407,1.5145,-0.649055,-0.524402,0 +1.49338,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-1.1627,0.18932,-0.100379,0.855039,-0.52485,1.19825,0.83451,-0.362178,-0.458336,1.19331,1.24342,1.30713,-0.441999,-0.524402,0 +1.49338,0.729961,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-1.51169,0.528978,-0.535235,1.29923,-0.370829,1.19825,1.16888,-0.701232,-0.458336,1.19331,1.30755,1.238,-0.40749,-0.524402,0 +1.49338,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.639228,-0.603215,-0.100379,0.215408,-0.653201,1.40122,0.890238,-0.362178,-0.458336,1.19331,1.43581,1.37625,-0.545527,-0.524402,0 +1.49338,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,0.388834,0.712899,-0.935573,1.40122,0.277226,-0.362178,-0.458336,1.19331,1.30755,1.37625,-0.545527,-0.524402,1 +1.49338,-0.30481,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.716435,0.117049,-0.193245,-0.884233,1.70569,0.890238,-1.04029,-0.458336,1.55958,1.56407,1.58363,-0.545527,-0.524402,0 +1.49338,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.581064,-0.603215,-0.535235,-0.193245,-0.807222,1.63803,0.945967,-1.04029,-0.458336,1.19331,1.43581,1.44538,-0.545527,-0.524402,0 +1.49338,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.173917,-0.829654,0.334477,-0.15771,-1.29496,1.90866,0.332955,-0.701232,-0.458336,1.55958,1.69233,1.72188,-0.649055,-0.524402,1 +1.49338,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.173917,-0.829654,0.497548,-0.22878,-1.32063,1.90866,0.277226,-1.04029,-0.458336,1.55958,1.69233,1.72188,-0.649055,-0.524402,1 +1.595,-0.30481,-0.203162,1.5728,-0.300473,-0.0574621,-0.268691,-0.581064,-0.263557,0.00833509,-0.282082,0.0142237,0.352518,0.611597,0.654983,-0.458336,1.55958,1.56407,1.72188,-0.40749,1.11272,1 +1.595,-0.563502,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.639228,0.0761009,0.00833509,-0.264315,1.29773,-1.20363,0.83451,0.654983,-0.458336,1.55958,1.49994,1.72188,-0.269452,1.11272,1 +1.595,0.729961,-0.203162,1.5728,-0.300473,-0.0574621,-0.268691,-0.755555,-0.0371185,-0.480878,-0.51306,0.116904,0.352518,0.83451,1.33309,-0.458336,1.55958,1.69233,1.791,-0.303962,1.11272,0 +1.595,1.76473,-0.203162,1.91224,0.0373407,-0.0574621,-0.268691,-1.04637,0.415759,-0.535235,-1.13492,1.29773,-1.20363,0.83451,0.994036,-0.458336,1.92585,1.69233,1.92925,0.110151,1.11272,0 +1.595,1.50604,-0.203162,2.25167,0.0373407,-0.0574621,-0.268691,-0.988211,0.18932,-0.535235,-1.13492,-0.345159,0.961445,0.83451,-0.362178,-0.458336,1.92585,1.69233,1.99838,0.00662268,1.11272,0 +1.595,1.76473,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.697392,-0.376776,-0.535235,-1.3659,-0.935573,1.73952,0.83451,-0.362178,-0.458336,1.92585,2.01297,2.13663,-0.476509,1.11272,0 +-0.132494,-0.30481,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-0.232081,-0.603215,-0.535235,0.695131,-0.396499,0.521664,-0.00141549,-0.362178,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.511018,-0.524402,0 +-0.132494,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.000574525,-0.716435,-0.480878,0.535224,-1.01258,0.690811,-1.06025,-1.04029,-0.458336,-0.0886391,-0.039153,-0.144492,-0.580037,1.11272,0 +-0.132494,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,-0.426521,0.250943,-1.16661,0.758469,-1.28317,-1.04029,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.614546,1.11272,0 +-0.132494,1.50604,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.697392,-0.150338,-0.535235,0.783969,-0.396499,0.521664,-0.00141549,-0.362178,-0.458336,-0.0886391,0.281491,0.132007,-0.338471,-0.524402,0 +-0.132494,2.54081,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.988211,-0.0371185,-0.535235,0.535224,-0.0371167,0.115713,0.110041,-0.701232,-0.458336,0.460768,0.473878,0.408506,-0.37298,1.11272,0 +-0.132494,0.729961,-0.203162,1.23337,-0.300473,-0.0574621,1.42637,-0.988211,0.18932,-0.535235,-0.0511046,0.81,-1.10214,-0.0571439,-0.0231245,-0.458336,0.460768,-0.680442,-0.490116,2.66384,1.11272,0 +-0.132494,2.54081,-0.203162,2.25167,-0.638287,-0.0574621,3.12144,-1.10454,0.415759,-0.535235,-1.45474,0.86134,-1.06831,0.110041,0.994036,0.957976,0.460768,-0.039153,0.477631,1.97366,1.11272,0 +-0.132494,-0.30481,-0.203162,1.23337,-0.638287,17.3946,1.42637,-0.930047,0.0761009,-0.535235,0.588526,0.81,-1.10214,-0.0571439,0.315929,-0.458336,-2.34731,-0.872829,-0.628366,2.59483,1.11272,0 +-0.132494,-0.822195,-0.203162,0.554496,-0.638287,17.3946,1.42637,-0.871883,-0.0371185,-0.535235,0.961644,0.527627,-1.13597,-0.725884,-1.04029,0.957976,-2.34731,-1.19347,-0.904865,1.83562,1.11272,2 +-0.132494,-0.30481,-0.203162,1.5728,-0.300473,-0.0574621,1.42637,-0.755555,-0.150338,-0.535235,0.748434,0.91268,-1.10214,0.16577,-0.362178,0.957976,-2.34731,-0.680442,-0.490116,3.35403,1.11272,1 +-0.132494,-0.822195,-0.203162,1.23337,0.0373407,-0.0574621,3.12144,-0.988211,0.415759,-0.535235,-1.45474,0.501957,-1.13597,-0.781613,-0.362178,-0.458336,-2.34731,-1.96302,-2.49474,0.489754,-0.524402,2 +-0.132494,-0.822195,-0.203162,2.25167,-0.300473,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,1.06825,0.501957,-1.13597,-0.781613,-0.701232,3.7906,-2.34731,-1.12934,-0.904865,1.45602,1.11272,2 +-0.132494,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.871883,-0.263557,-0.535235,1.29923,-0.807222,0.589323,-0.781613,-1.04029,-0.458336,-0.271775,-0.23154,-0.420991,-0.545527,-0.524402,0 +-0.132494,0.988654,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-0.813719,-0.150338,-0.535235,1.03271,-0.165468,0.318689,0.16577,0.315929,-0.458336,0.765994,0.409749,0.201132,-0.0278867,-0.524402,0 +-0.132494,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.813719,-0.376776,-0.535235,1.12155,-0.807222,0.589323,-0.781613,-0.701232,0.957976,-0.271775,-0.167411,-0.282742,-0.545527,-0.524402,0 +-0.132494,0.729961,-0.203162,1.91224,-0.300473,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,0.943877,0.0398938,0.0480547,0.16577,-0.0231245,0.957976,1.07122,0.473878,0.408506,0.282698,1.11272,0 +-0.132494,1.50604,-0.203162,2.25167,-0.638287,-0.0574621,-0.268691,-0.871883,-0.0371185,-0.535235,0.730666,0.424947,0.0480547,1.0017,0.315929,-0.458336,1.07122,0.730394,0.75413,-0.131415,-0.524402,0 +-0.132494,-0.30481,-0.203162,1.5728,-0.638287,-0.0574621,3.12144,-0.988211,-0.150338,-0.535235,1.15709,-0.319489,0.0480547,-0.614428,-0.362178,-0.458336,-0.271775,-0.423926,-0.420991,-0.0969054,-0.524402,0 +-0.132494,-0.822195,-0.203162,1.5728,0.0373407,-0.0574621,-0.268691,-0.988211,-0.150338,-0.535235,1.13932,-0.396499,0.0480547,-0.781613,-1.04029,0.957976,-0.271775,-0.423926,-0.420991,-0.234943,-0.524402,0 +-0.132494,1.76473,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.1627,0.415759,-0.535235,0.552991,1.3234,-1.33894,0.667325,1.33309,-0.458336,0.765994,0.730394,0.75413,-0.0278867,1.11272,0 +-0.132494,1.24735,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.04637,0.30254,-0.535235,-0.139942,0.553298,-0.324067,0.667325,-0.362178,-0.458336,1.07122,0.794523,0.823255,-0.0623961,1.11272,0 +-0.335729,0.212576,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,-0.406572,-0.489996,0.388834,-0.29985,-0.653201,0.555494,-0.502971,0.654983,-0.458336,-0.0886391,-0.103282,-0.213617,-0.511018,-0.524402,0 +-0.335729,-0.30481,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.23323,-0.829654,1.53033,-0.601898,-1.21795,1.06293,-0.893069,-1.04029,-0.458336,-0.21073,0.0249759,-0.144492,-0.614546,-0.524402,0 +-0.335729,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.5229,-0.376776,-0.535235,-0.0155696,-0.44784,0.28486,-0.502971,0.654983,0.957976,-0.0886391,0.0249759,-0.0753675,-0.511018,-0.524402,0 +-0.335729,0.988654,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.639228,-0.263557,-0.535235,0.126571,-0.114127,-0.121092,-0.447242,0.654983,0.957976,-0.0886391,0.0249759,-0.0753675,-0.476509,1.11272,0 +-0.335729,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,1.20419,-0.264315,-0.44784,0.28486,-0.502971,0.315929,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,-0.524402,0 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,1.91083,-0.406455,-1.29496,0.995274,-1.17171,-0.701232,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.649055,1.11272,0 +-0.335729,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,-0.480878,0.162106,-0.44784,0.28486,-0.502971,0.654983,0.957976,-0.0886391,0.0249759,-0.0753675,-0.545527,-0.524402,0 +-0.335729,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.000574525,-0.716435,1.09548,-0.246547,-0.807222,0.690811,-0.614428,-0.0231245,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,-0.524402,0 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.291394,-0.829654,1.85647,-0.406455,-1.03825,0.995274,-0.614428,-0.701232,0.957976,-0.0275938,0.0891048,-0.00624269,-0.649055,-0.524402,0 +-0.335729,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.581064,-0.489996,-0.535235,0.926109,-0.704542,0.623152,-0.502971,-0.362178,-0.458336,-0.0886391,-0.039153,-0.213617,-0.545527,-0.524402,0 +-0.335729,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,1.45913,-0.44784,0.318689,-0.447242,-0.362178,-0.458336,-0.271775,-0.103282,-0.282742,-0.511018,-0.524402,0 +-0.335729,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.464736,-0.489996,-0.100379,0.730666,-0.704542,0.623152,-0.502971,-0.362178,-0.458336,-0.0886391,-0.039153,-0.144492,-0.545527,-0.524402,0 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.930047,-0.263557,-0.535235,1.67235,-0.601861,0.318689,-0.781613,-0.362178,0.957976,-0.393865,-0.167411,-0.351867,-0.580037,-0.524402,0 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.930047,-0.263557,-0.535235,1.08602,-0.884233,0.690811,-0.781613,-1.04029,2.37429,-0.393865,-0.167411,-0.351867,-0.614546,-0.524402,0 +-0.335729,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.10454,-0.150338,-0.535235,1.21039,-0.884233,0.690811,-0.781613,-0.701232,2.37429,-0.393865,-0.167411,-0.351867,-0.580037,-0.524402,0 +-0.335729,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.348408,-0.603215,0.171406,0.304246,-0.730212,0.690811,-0.447242,-0.701232,0.957976,-0.0886391,0.0249759,-0.0753675,-0.580037,-0.524402,0 +-0.335729,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.116902,-0.829654,0.823691,-0.495293,-1.44898,1.19825,-1.17171,-1.04029,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.649055,-0.524402,0 +-0.0308771,-0.0461169,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,1.3703,-0.42217,0.521664,-0.0571439,-0.362178,-0.458336,0.155542,0.217363,0.0628821,-0.338471,-0.524402,0 +-0.0308771,0.471268,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-0.930047,-0.0371185,-0.535235,0.819504,-0.268148,0.318689,-0.0571439,-0.701232,-0.458336,0.155542,0.281491,0.132007,-0.303962,-0.524402,0 +-0.0308771,1.24735,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,-0.755555,-0.150338,-0.535235,-0.193245,-0.268148,0.318689,-0.0571439,-0.701232,-0.458336,-0.0886391,0.34562,0.201132,-0.165924,-0.524402,0 +-0.0308771,-0.822195,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-0.871883,0.0761009,-0.535235,0.286478,-0.704542,0.318689,-1.00453,-1.04029,-0.458336,-0.0886391,-0.167411,-0.144492,-0.40749,1.11272,0 +-0.0308771,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-1.1627,0.0761009,-0.480878,1.88556,-0.370829,0.081884,-0.670156,0.315929,-0.458336,-0.0886391,-0.039153,-0.0753675,-0.511018,1.11272,0 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-1.45352,0.30254,-0.535235,2.32974,-0.601861,0.386347,-0.670156,-1.04029,-0.458336,0.0334514,0.0249759,-0.00624269,-0.476509,1.11272,0 +-0.0308771,-0.30481,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,-0.755555,-0.263557,-0.154736,1.08602,-0.0371167,-0.0872623,-0.224329,-0.0231245,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.476509,-0.524402,0 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.639228,-0.376776,-0.100379,1.45913,-0.293819,-0.0872623,-0.781613,-0.362178,-0.458336,-0.0886391,-0.039153,-0.0753675,-0.545527,1.11272,0 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.232081,-0.603215,1.09548,0.535224,-0.576191,0.420177,-0.558699,-0.0231245,-0.458336,0.460768,0.34562,0.339381,-0.511018,1.11272,1 +-0.0308771,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,1.96519,-0.246547,-1.16661,1.06293,-0.781613,-0.701232,-0.458336,0.460768,0.473878,0.408506,-0.614546,1.11272,1 +-0.0308771,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.406572,-0.489996,0.606263,0.535224,-0.52485,0.420177,-0.447242,-0.362178,-0.458336,0.277632,0.34562,0.270256,-0.545527,1.11272,0 +-0.0308771,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.755555,-0.263557,-0.209093,1.12155,-0.319489,0.25103,-0.280057,-0.0231245,-0.458336,0.277632,0.281491,0.270256,-0.511018,1.11272,0 +-0.0308771,-0.0461169,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.813719,-0.150338,-0.26345,0.979412,-0.319489,0.25103,-0.280057,-0.0231245,-0.458336,0.277632,0.217363,0.201132,-0.476509,1.11272,0 +-0.0308771,0.212576,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,-0.697392,-0.263557,-0.100379,-0.139942,-0.576191,0.521664,-0.391514,-0.701232,0.957976,0.277632,0.217363,0.201132,-0.511018,-0.524402,0 +0.273975,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.290245,-0.603215,-0.046022,0.801736,-0.653201,0.792298,-0.112872,-0.701232,-0.458336,0.0944967,0.217363,0.132007,-0.580037,-0.524402,0 +0.273975,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.639228,-0.376776,-0.535235,1.40583,-0.858563,0.792298,-0.558699,-0.701232,-0.458336,0.0944967,0.153234,-0.00624269,-0.545527,-0.524402,0 +0.273975,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.000574525,-0.716435,0.66062,0.322013,-0.884233,0.792298,-0.614428,-0.701232,0.957976,0.399723,0.409749,0.339381,-0.580037,1.11272,0 +0.273975,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-0.581064,-0.376776,-0.535235,1.33476,-0.858563,0.792298,-0.558699,-0.701232,0.957976,0.0334514,0.153234,0.0628821,-0.580037,-0.524402,0 +0.273975,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.349558,-0.942873,1.47598,-0.406455,-1.37197,1.3674,-0.725884,-0.701232,-0.458336,0.399723,0.473878,0.408506,-0.649055,-0.524402,0 +0.273975,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.407721,-0.942873,1.63905,-0.459758,-1.37197,1.3674,-0.725884,-0.701232,-0.458336,0.399723,0.538007,0.477631,-0.649055,-0.524402,0 +0.273975,0.988654,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.290245,-0.716435,-0.372164,-0.708503,-0.601861,0.623152,-0.280057,-1.37934,-0.458336,0.460768,0.538007,0.477631,-0.545527,1.11272,0 +0.273975,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.232081,-0.716435,-0.480878,-0.637433,-0.807222,0.893786,-0.280057,-1.37934,0.957976,0.460768,0.602136,0.546756,-0.580037,-0.524402,0 +0.273975,0.729961,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,-0.232081,-0.716435,-0.317807,-0.548595,-0.627531,0.623152,-0.335786,-1.04029,-0.458336,0.399723,0.473878,0.408506,-0.545527,1.11272,0 +1.08691,-0.0461169,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.209093,0.357548,-0.601861,0.893786,0.16577,-0.362178,-0.458336,0.643904,0.92278,0.823255,-0.545527,-0.524402,0 +1.08691,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.0587384,-0.829654,-0.209093,0.570759,-1.01258,1.19825,-0.224329,-1.04029,-0.458336,0.643904,0.794523,0.75413,-0.614546,-0.524402,0 +1.595,-0.822195,-0.203162,1.5728,2.06422,-0.0574621,-0.268691,-0.290245,1.32151,0.714977,0.00219796,2.35021,-1.44043,2.72927,-0.0231245,-0.458336,1.13227,0.473878,1.09975,2.35326,-0.524402,0 +1.595,-0.822195,-0.203162,1.5728,2.40204,-0.0574621,-0.268691,-0.464736,1.32151,0.823691,-0.459758,1.70846,-1.44043,1.33607,-0.0231245,0.957976,1.07122,0.281491,1.03063,2.69835,1.11272,0 +1.595,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,2.40005,-0.530828,-1.47465,1.77335,-0.280057,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,-0.524402,1 +1.595,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.931196,-1.05609,2.99797,-0.637433,-1.50032,1.77335,-0.335786,-1.04029,-0.458336,0.94913,1.1793,1.16888,-0.649055,1.11272,1 +1.595,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.873032,-1.05609,1.96519,-0.477525,-1.44898,1.77335,-0.224329,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,-0.524402,1 +1.595,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.814868,-1.05609,1.3129,-0.459758,-1.50032,1.84101,-0.224329,-1.04029,-0.458336,1.01018,1.1793,1.16888,-0.649055,-0.524402,1 +1.595,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.465885,-0.942873,0.497548,-0.317617,-1.21795,1.80718,0.332955,-0.701232,-0.458336,1.07122,1.30755,1.238,-0.649055,-0.524402,0 +1.595,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.698541,-0.942873,0.932405,-0.477525,-1.42331,1.84101,-0.0571439,-1.04029,-0.458336,1.07122,1.24342,1.238,-0.649055,-0.524402,0 +1.08691,-0.30481,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,0.23323,-0.829654,0.334477,-0.388688,-0.678871,1.06293,0.277226,-0.362178,-0.458336,1.19331,1.37168,1.37625,-0.545527,1.11272,0 +1.08691,-0.30481,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.115753,-0.716435,0.171406,0.108803,-0.42217,0.961445,0.667325,-0.701232,-0.458336,1.19331,1.30755,1.238,-0.476509,-0.524402,0 +1.08691,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.175066,-0.829654,0.606263,-0.51306,-1.11526,1.63803,0.277226,-0.701232,-0.458336,1.19331,1.43581,1.37625,-0.580037,-0.524402,0 +1.08691,0.471268,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-0.871883,-0.150338,-0.535235,0.108803,-0.139797,0.72464,0.890238,-0.362178,-0.458336,0.94913,1.11517,1.09975,-0.234943,-0.524402,0 +1.08691,0.471268,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,-0.813719,-0.263557,-0.535235,-0.0866397,-0.0627869,0.656981,0.945967,-0.362178,-0.458336,0.94913,1.24342,1.16888,-0.234943,-0.524402,0 +0.985296,0.729961,-0.203162,1.23337,0.0373407,-0.0574621,-0.268691,-1.10454,0.0761009,-0.535235,0.0199655,0.245255,0.28486,1.0017,-0.362178,-0.458336,1.07122,1.11517,1.09975,0.14466,-0.524402,0 +0.985296,0.212576,-0.203162,0.215061,0.0373407,-0.0574621,-0.268691,-1.45352,0.528978,-0.535235,0.588526,0.373606,0.183372,1.11315,0.315929,-0.458336,0.82704,0.92278,0.961504,0.351716,-0.524402,0 +1.08691,-0.30481,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,-0.755555,-0.150338,-0.26345,0.357548,0.245255,0.28486,1.0017,-0.0231245,-0.458336,1.19331,1.11517,1.16888,-0.0623961,-0.524402,0 +1.08691,-0.822195,-0.203162,-0.124374,0.0373407,-0.0574621,-0.268691,-0.813719,-0.150338,-0.426521,0.393083,-0.242478,0.183372,-0.224329,-0.701232,-0.458336,0.94913,0.794523,0.961504,0.00662268,1.11272,0 +1.08691,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,-0.26345,0.517456,-0.370829,0.623152,0.221498,-0.701232,-0.458336,1.19331,1.1793,1.16888,-0.476509,1.11272,0 +1.08691,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.5229,-0.489996,-0.26345,0.926109,-0.370829,0.623152,0.221498,-0.362178,-0.458336,1.19331,1.1793,1.238,-0.441999,1.11272,0 +1.08691,0.212576,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.406572,-0.603215,-0.535235,0.304246,-0.293819,0.623152,0.388683,-0.362178,-0.458336,1.37645,1.24342,1.30713,-0.37298,1.11272,0 +1.08691,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,-1.22087,-0.0371185,-0.535235,1.56574,-0.47351,0.623152,-0.00141549,-0.701232,-0.458336,0.765994,0.730394,0.685005,-0.441999,1.11272,0 +1.18853,0.212576,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-0.115753,-0.716435,-0.480878,-0.139942,-0.832893,1.33357,0.388683,-0.701232,-0.458336,1.37645,1.49994,1.44538,-0.580037,-0.524402,0 +1.18853,-0.0461169,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.0587384,-0.716435,-0.426521,-0.335385,-0.832893,1.33357,0.388683,-0.701232,-0.458336,1.37645,1.56407,1.5145,-0.580037,1.11272,0 +-0.335729,1.50604,-0.203162,2.25167,0.712969,-0.0574621,-0.268691,-1.33719,0.30254,-0.535235,-1.45474,0.91268,-0.594701,1.0017,-0.362178,0.957976,1.07122,0.34562,0.685005,2.24973,1.11272,0 +-0.335729,2.28212,-0.203162,2.59111,-0.638287,-0.0574621,-0.268691,-1.33719,0.0761009,-0.535235,-1.45474,0.0912342,0.792298,1.50325,-0.362178,0.957976,1.07122,1.24342,1.30713,-0.165924,-0.524402,0 +-0.335729,0.212576,-0.203162,1.5728,2.40204,-0.0574621,-0.268691,-1.27903,0.415759,-0.535235,-1.45474,0.604638,-0.594701,0.332955,0.654983,-0.458336,-0.271775,-1.00109,-1.18136,1.87013,-0.524402,0 +-0.0308771,-0.30481,-0.203162,1.5728,2.40204,-0.0574621,-0.268691,-1.27903,0.415759,-0.535235,-1.45474,0.604638,-0.594701,0.332955,0.654983,-0.458336,-0.271775,-1.12934,-1.45786,2.00817,-0.524402,0 +-0.132494,1.24735,-0.203162,2.59111,1.05078,-0.0574621,-0.268691,-1.27903,0.18932,-0.535235,-1.45474,1.14371,-0.594701,1.50325,-0.362178,0.957976,1.37645,0.217363,0.75413,3.45756,1.11272,0 +-0.132494,-0.822195,-0.203162,-0.124374,2.40204,-0.0574621,-0.268691,-1.22087,0.868636,-0.535235,-1.45474,0.270926,-0.594701,-0.391514,-0.0231245,-0.458336,-3.1409,-1.64238,-2.21824,3.14698,-2.16152,0 +-0.132494,-0.563502,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,-1.10454,0.30254,-0.317807,0.943877,0.553298,-0.865335,-0.224329,0.654983,3.7906,-0.0886391,-0.167411,-0.144492,-0.200434,1.11272,0 +-0.132494,-0.30481,-0.203162,1.23337,0.375155,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,1.83225,0.88701,-1.30512,-0.224329,-0.0231245,0.957976,-0.393865,-0.23154,-0.282742,-0.131415,1.11272,0 +-0.132494,-0.822195,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.755555,-0.376776,-0.154736,0.215408,-0.114127,-0.357896,-0.837341,0.994036,0.957976,-0.0886391,-0.103282,-0.0753675,-0.40749,1.11272,0 +-0.132494,-0.822195,-0.203162,-0.124374,1.72641,-0.0574621,-0.268691,-0.697392,-0.150338,0.00833509,-0.601898,0.0398938,-0.763847,-1.17171,0.994036,0.957976,-0.0886391,-0.23154,-0.144492,-0.269452,1.11272,0 +-0.132494,-0.563502,-0.203162,-0.124374,0.712969,-0.0574621,-0.268691,-1.10454,0.30254,-0.317807,1.72565,0.681649,-1.27129,-0.614428,1.67214,3.7906,-0.0886391,-0.295669,-0.213617,0.213679,1.11272,0 +-0.132494,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.988211,-0.263557,-0.535235,0.979412,-0.47351,0.115713,-0.837341,-0.0231245,0.957976,-0.271775,-0.103282,-0.213617,-0.545527,1.11272,0 +-0.132494,-0.563502,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-1.27903,0.642198,-0.535235,2.04546,0.732989,-1.33894,-0.614428,0.654983,-0.458336,-0.271775,-0.488055,-0.351867,0.524263,1.11272,0 +-0.132494,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.8025,1.32151,-0.535235,4.49738,0.88701,-1.33894,-0.280057,1.67214,0.957976,-0.0886391,-0.23154,-0.282742,-0.131415,1.11272,0 +-0.132494,-0.563502,-0.203162,0.215061,0.712969,-0.0574621,-0.268691,-1.04637,0.18932,-0.480878,1.38806,0.553298,-1.10214,-0.614428,-0.0231245,0.957976,-0.271775,-0.359797,-0.282742,0.14466,1.11272,0 +-0.132494,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.22087,0.528978,-0.535235,1.21039,0.681649,-1.37277,-0.781613,-0.362178,3.7906,-0.271775,-0.552184,-0.420991,0.558773,1.11272,0 +-0.132494,-0.563502,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-0.988211,0.528978,-0.26345,2.081,0.732989,-1.4066,-0.725884,0.994036,-0.458336,0.0944967,-0.295669,-0.0753675,0.420735,1.11272,0 +-0.132494,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.697392,-0.0371185,-0.535235,3.41356,0.0142237,-0.493213,-0.781613,-0.0231245,-0.458336,-0.271775,0.0249759,-0.0753675,-0.338471,1.11272,0 +-0.132494,-0.563502,-0.203162,0.554496,1.3886,-0.0574621,-0.268691,-1.10454,0.868636,-0.209093,1.4236,0.784329,-1.47426,-0.725884,2.35025,0.957976,0.338678,-0.359797,-0.144492,0.800338,1.11272,0 +-0.132494,-0.822195,-0.203162,0.554496,2.06422,-0.0574621,-0.268691,-1.86067,2.11405,-0.535235,1.54797,0.758659,-1.47426,-0.781613,2.0112,2.37429,-0.271775,-0.8087,-0.559241,0.765829,1.11272,0 +0.0707402,-0.822195,-0.203162,0.215061,1.3886,-0.0574621,-0.268691,-0.871883,-0.150338,0.551906,-0.317617,0.81,-1.37277,-0.502971,0.315929,0.957976,-0.0886391,-0.423926,-0.213617,0.386226,1.11272,0 +0.0707402,-0.822195,-0.203162,-0.124374,1.05078,-0.0574621,-0.268691,-1.1627,0.0761009,0.443191,0.162106,0.476287,-0.932994,-0.502971,0.654983,0.957976,-0.0886391,-0.423926,-0.213617,0.420735,1.11272,0 +0.0707402,-0.822195,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,-0.813719,0.0761009,0.551906,0.304246,1.01536,-1.37277,-0.0571439,-0.362178,0.957976,-0.0886391,-0.359797,-0.144492,0.282698,1.11272,0 +0.0707402,-0.822195,-0.203162,-0.124374,1.72641,-0.0574621,-0.268691,-0.581064,-0.263557,0.66062,-0.939481,0.578968,-1.47426,-1.17171,0.315929,-0.458336,0.0334514,-0.359797,-0.144492,0.420735,1.11272,0 +0.0707402,-0.822195,-0.203162,0.893932,1.72641,-0.0574621,-0.268691,-1.56985,0.981856,-0.372164,1.22816,1.09237,-1.47426,-0.0571439,0.994036,0.957976,-0.699092,-0.936957,-0.766615,1.11092,1.11272,0 +0.0707402,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,-1.1627,1.66117,-0.100379,3.18258,0.0912342,-0.154921,-0.0571439,0.994036,0.957976,0.0334514,-0.039153,-0.00624269,-0.200434,-0.524402,0 +0.0707402,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,-1.56985,0.868636,-0.535235,0.00219796,1.14371,-1.47426,0.0543129,0.994036,2.37429,-0.699092,-1.12934,-0.83574,1.52504,-0.524402,0 +0.0707402,-0.822195,-0.203162,0.215061,1.72641,-0.0574621,-0.268691,-1.51169,0.642198,-0.535235,0.073268,0.86134,-1.47426,-0.558699,1.67214,2.37429,-0.699092,-1.12934,-0.766615,1.55954,1.11272,0 +0.0707402,-0.822195,-0.203162,0.215061,2.06422,-0.0574621,-0.268691,-1.45352,0.868636,-0.535235,-0.0333371,1.04103,-1.33894,0.0543129,0.315929,2.37429,-0.699092,-1.06522,-0.766615,1.387,-0.524402,0 +0.477209,0.471268,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,-0.813719,2.00083,-0.535235,-0.0511046,-0.293819,0.555494,0.277226,-0.362178,-0.458336,-0.0886391,0.666265,0.546756,0.110151,-0.524402,0 +0.477209,-0.822195,-0.203162,-0.46381,0.375155,-0.0574621,-0.268691,-0.930047,2.79336,-0.535235,-0.282082,-0.653201,0.454006,-0.670156,0.315929,0.957976,0.0334514,0.153234,0.0628821,-0.545527,1.11272,0 +0.477209,1.50604,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,-0.581064,0.18932,-0.535235,0.730666,-0.396499,0.690811,0.277226,-0.362178,-0.458336,0.765994,0.986909,0.961504,-0.37298,1.11272,0 +0.477209,1.76473,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,-0.290245,0.0761009,-0.535235,-1.45474,-0.49918,0.893786,0.388683,-1.37934,0.957976,1.19331,1.1793,1.16888,-0.37298,1.11272,0 +0.477209,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,-0.639228,1.20829,-0.535235,1.38806,0.193915,0.690811,1.55898,0.654983,0.957976,1.37645,1.43581,1.5145,-0.165924,-0.524402,1 +0.477209,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,-1.62801,0.981856,-0.535235,1.70788,-0.653201,0.555494,-0.502971,-0.362178,-0.458336,0.399723,0.409749,0.339381,-0.441999,1.11272,0 +0.477209,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,-0.871883,2.11405,-0.535235,1.24592,-0.0627869,1.0291,1.55898,-0.0231245,0.957976,1.37645,1.49994,1.44538,-0.269452,-0.524402,1 +0.477209,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,-1.68618,3.24624,-0.535235,1.60128,-0.216808,0.690811,0.667325,-0.0231245,-0.458336,1.19331,0.92278,0.89238,-0.200434,-0.524402,0 +0.680444,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,-0.290245,0.0761009,0.334477,0.517456,-0.576191,1.0291,0.444411,-1.04029,-0.458336,0.82704,0.986909,0.89238,-0.511018,-0.524402,1 +0.680444,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.0587384,-0.489996,0.606263,0.233176,-0.858563,1.40122,0.444411,-0.701232,0.957976,0.82704,1.11517,0.961504,-0.545527,-0.524402,1 +0.375592,-0.30481,0.825428,-0.124374,0.712969,-0.0574621,-0.268691,0.873032,1.43473,-0.535235,-0.886178,0.527627,-0.425555,0.444411,0.994036,-0.458336,0.155542,-0.8087,0.270256,-0.37298,-0.524402,0 +-0.0308771,0.729961,0.718283,-0.46381,-0.300473,-0.0574621,-0.268691,0.98936,0.755417,-0.535235,-0.6552,-0.165468,0.081884,-0.224329,-0.362178,-0.458336,0.277632,-0.295669,0.270256,-0.545527,1.11272,0 +0.0707402,0.212576,0.482565,-0.124374,-0.300473,-0.0574621,-0.268691,1.04752,1.09507,-0.535235,-1.22376,-0.935573,1.13059,-0.168601,-1.04029,-0.458336,0.0334514,-0.359797,0.132007,-0.545527,-2.16152,0 +1.08691,-0.822195,0.653996,-1.14268,1.72641,-0.0574621,-0.268691,1.04752,2.22727,-0.535235,-0.975016,0.476287,-0.66236,-0.0571439,-0.362178,-0.458336,0.582859,-1.64238,0.75413,-0.0623961,1.11272,0 +0.273975,0.212576,0.889715,-0.124374,0.0373407,-0.0574621,-0.268691,0.931196,0.528978,-0.535235,-0.317617,0.142575,0.081884,0.444411,1.33309,-0.458336,0.277632,-0.167411,0.339381,-0.476509,-0.524402,0 +-0.0308771,0.471268,0.56828,-0.124374,-0.300473,-0.0574621,-0.268691,1.04752,1.32151,-0.535235,-1.17046,-0.935573,1.13059,-0.168601,-1.04029,-0.458336,0.0334514,-0.488055,0.132007,-0.545527,-2.16152,0 +0.172357,-0.30481,0.589709,-0.46381,-0.300473,-0.0574621,-0.268691,1.04752,0.755417,-0.535235,-0.530828,-0.139797,0.081884,-0.168601,-0.362178,-0.458336,0.0334514,-0.295669,0.201132,-0.545527,1.11272,0 +0.375592,-0.30481,0.868286,-1.14268,0.0373407,-0.0574621,-0.268691,0.98936,0.642198,-0.535235,-0.22878,0.142575,0.081884,0.444411,-0.0231245,-0.458336,0.277632,-0.295669,0.339381,-0.476509,-0.524402,0 +-0.0308771,0.729961,0.546851,-0.46381,-0.300473,-0.0574621,-0.268691,1.04752,1.54795,-0.535235,-1.2593,-0.909903,1.09676,-0.168601,-0.701232,-0.458336,0.0334514,-0.552184,0.132007,-0.545527,-0.524402,0 +1.08691,-0.563502,0.846857,-1.14268,2.40204,-0.0574621,-0.268691,1.04752,2.56693,-0.535235,-1.15269,1.86248,-0.899164,2.56209,0.994036,0.957976,0.460768,-1.7065,0.75413,0.662301,-0.524402,0 +1.08691,-0.0461169,0.846857,-0.803245,1.3886,-0.0574621,1.42637,1.10569,2.34049,-0.535235,-1.40144,1.09237,-0.899164,0.890238,0.994036,-0.458336,0.216587,-1.57825,0.61588,2.42228,1.11272,0 +0.883679,0.212576,0.675425,-0.46381,0.712969,-0.0574621,1.42637,1.10569,2.11405,-0.535235,-1.3659,0.91268,-0.831506,0.611597,2.0112,-0.458336,0.0334514,-1.44999,0.546756,2.73286,1.11272,0 +0.883679,-0.0461169,0.868286,-0.803245,1.3886,-0.0574621,1.42637,1.10569,2.22727,-0.535235,-1.40144,1.09237,-0.899164,0.890238,0.994036,-0.458336,0.216587,-1.51412,0.61588,2.45679,1.11272,0 +0.883679,-0.0461169,0.825428,-0.46381,1.3886,-0.0574621,1.42637,1.10569,2.45371,-0.535235,-1.40144,1.86248,-0.899164,2.56209,0.994036,-0.458336,0.277632,-1.7065,0.61588,2.28424,-0.524402,0 +0.883679,-0.30481,0.954001,-1.14268,1.72641,-0.0574621,-0.268691,0.98936,3.0198,-0.535235,-1.38367,1.86248,-0.899164,2.56209,1.67214,2.37429,0.277632,-1.64238,0.823255,1.21445,-0.524402,0 +0.985296,-0.30481,0.911144,-1.14268,2.06422,-0.0574621,-0.268691,0.98936,2.79336,-0.535235,-1.22376,1.86248,-0.899164,2.56209,2.0112,2.37429,0.460768,-1.51412,0.75413,1.0419,-0.524402,0 +0.0707402,-0.563502,-0.160304,0.554496,1.3886,-0.0574621,-0.268691,1.04752,0.18932,-0.26345,-0.22878,0.630308,-0.966823,-0.224329,0.315929,-0.458336,-0.149684,-0.423926,-0.0753675,0.489754,1.11272,0 +-0.742198,2.54081,-0.160304,0.893932,-0.300473,-0.0574621,-0.268691,0.349558,1.32151,-0.535235,-1.40144,0.373606,-0.324067,0.277226,-0.362178,-0.458336,-0.149684,-0.103282,0.132007,-0.200434,-0.524402,0 +-0.742198,2.28212,-0.160304,0.893932,-0.300473,-0.0574621,-0.268691,0.349558,1.43473,-0.535235,-1.4192,0.399276,-0.324067,0.332955,0.315929,-0.458336,-0.149684,-0.039153,0.132007,-0.234943,-0.524402,0 +-0.640581,1.50604,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.349558,1.54795,-0.535235,-0.690735,1.04103,-0.763847,1.0017,0.654983,0.957976,0.0944967,-0.680442,0.0628821,-0.131415,-0.524402,0 +-1.04705,2.28212,-0.138875,0.554496,-0.638287,-0.0574621,-0.268691,0.465885,0.981856,-0.535235,-1.02832,0.116904,-0.290238,-0.224329,1.33309,-0.458336,-0.149684,-0.167411,-0.144492,-0.37298,1.11272,0 +-1.04705,2.02342,-0.160304,-0.46381,-0.638287,-0.0574621,-0.268691,0.465885,0.868636,-0.535235,-1.2593,0.116904,-0.290238,-0.224329,0.654983,-0.458336,-0.271775,-0.103282,-0.144492,-0.37298,1.11272,0 +-1.04705,1.76473,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,0.465885,0.868636,-0.535235,-1.45474,0.168245,-0.290238,-0.112872,-0.0231245,-0.458336,0.155542,-0.039153,0.0628821,-0.303962,1.11272,0 +-1.04705,1.76473,-0.160304,0.893932,-0.638287,-0.0574621,-0.268691,0.349558,2.34049,-0.535235,-1.45474,0.989691,-0.324067,1.61471,0.654983,0.957976,0.521813,-0.359797,0.546756,-0.131415,-0.524402,0 +-1.04705,1.76473,-0.181733,-0.46381,-0.638287,-0.0574621,-0.268691,0.465885,0.755417,-0.535235,-1.2593,0.116904,-0.290238,-0.224329,0.654983,-0.458336,0.155542,-0.039153,-0.00624269,-0.303962,1.11272,0 +-0.335729,0.212576,-0.203162,2.25167,0.0373407,-0.0574621,-0.268691,0.291394,1.54795,-0.535235,-1.06385,0.476287,-0.594701,0.0543129,0.315929,-0.458336,0.0944967,-0.359797,-0.213617,0.0411321,-0.524402,0 +-0.335729,-0.30481,-0.181733,1.5728,-0.300473,-0.0574621,-0.268691,0.291394,1.54795,-0.535235,-0.637433,0.450617,-0.560872,0.0543129,0.654983,-0.458336,0.0944967,-0.295669,-0.144492,-0.131415,-0.524402,0 +-0.335729,-0.563502,-0.160304,1.23337,0.0373407,-0.0574621,-0.268691,0.349558,1.66117,-0.535235,-0.193245,-0.216808,0.0480547,-0.391514,0.315929,-0.458336,0.0334514,-0.23154,-0.144492,-0.338471,-0.524402,0 +-0.335729,-0.30481,-0.117446,0.893932,0.375155,-0.0574621,-0.268691,0.291394,1.88761,-0.535235,-0.459758,-0.0371167,-0.222579,-0.447242,-0.0231245,-0.458336,0.0944967,-0.359797,-0.213617,-0.131415,1.11272,0 +-0.335729,-0.0461169,-0.096017,0.554496,0.375155,-0.0574621,-0.268691,0.291394,1.88761,-0.535235,-0.868411,0.142575,-0.222579,-0.0571439,0.654983,-0.458336,0.0944967,-0.295669,-0.144492,-0.131415,-0.524402,0 +-0.335729,0.212576,-0.0745881,0.215061,0.0373407,-0.0574621,-0.268691,0.23323,1.66117,-0.535235,-0.708503,0.142575,-0.222579,-0.0571439,0.315929,-0.458336,-0.149684,-0.23154,-0.144492,-0.269452,-0.524402,0 +-0.335729,2.28212,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.175066,0.0761009,-0.535235,-0.957248,-0.0627869,0.352518,0.444411,-0.0231245,0.957976,0.399723,0.473878,0.408506,-0.303962,-0.524402,0 +-0.335729,1.50604,-0.181733,-0.124374,-0.300473,-0.0574621,-0.268691,0.291394,-0.0371185,-0.535235,-1.02832,0.732989,-0.696189,0.444411,0.654983,-0.458336,0.399723,0.409749,0.408506,-0.0969054,1.11272,0 +-0.335729,0.988654,-0.181733,-0.803245,0.712969,-0.0574621,-0.268691,0.291394,0.30254,-0.535235,-0.708503,0.91268,-0.696189,0.83451,0.994036,-0.458336,0.399723,0.217363,0.339381,0.351716,-0.524402,0 +-0.335729,0.729961,-0.160304,-0.803245,0.712969,-0.0574621,-0.268691,0.349558,0.415759,-0.535235,-1.09939,0.91268,-0.696189,0.83451,0.994036,-0.458336,0.399723,0.153234,0.201132,0.420735,-0.524402,0 +-0.335729,0.988654,-0.160304,-0.803245,1.05078,-0.0574621,-0.268691,0.23323,0.642198,-0.535235,-0.424223,1.40041,-0.696189,1.89335,0.315929,-0.458336,-0.393865,0.153234,0.132007,1.11092,-0.524402,0 +-0.335729,0.471268,-0.181733,-0.46381,1.3886,-0.0574621,-0.268691,0.23323,0.642198,-0.535235,-0.58413,1.40041,-0.696189,1.89335,0.654983,-0.458336,-0.393865,0.153234,0.132007,1.28347,-0.524402,0 +-0.335729,1.24735,-0.181733,-0.803245,0.712969,-0.0574621,-0.268691,0.23323,0.528978,-0.535235,-0.29985,1.22072,-0.560872,1.72616,0.994036,-0.458336,-0.393865,0.153234,0.201132,0.972885,-0.524402,0 +-0.335729,1.76473,-0.203162,1.5728,0.712969,-0.0574621,-0.268691,0.116902,0.18932,-0.535235,0.375316,1.11804,-0.324067,1.89335,0.994036,-0.458336,0.765994,0.409749,0.477631,1.07641,-0.524402,0 +-0.335729,1.50604,-0.203162,0.215061,1.05078,-0.0574621,-0.268691,0.23323,0.18932,-0.535235,-0.566363,0.784329,-0.560872,0.778782,0.994036,-0.458336,-0.454911,0.0249759,-0.0753675,0.69681,-0.524402,0 +-0.335729,1.24735,-0.181733,0.554496,1.05078,-0.0574621,-0.268691,0.291394,0.415759,-0.535235,-1.40144,0.784329,-0.560872,0.778782,-0.362178,-0.458336,-0.149684,-0.039153,-0.0753675,1.00739,-0.524402,0 +-0.335729,1.24735,-0.181733,-0.124374,0.712969,-0.0574621,-0.268691,0.23323,0.30254,-0.535235,-0.708503,0.989691,-0.560872,1.22461,-0.0231245,-0.458336,0.399723,0.217363,0.339381,0.662301,-0.524402,0 +-0.132494,1.24735,-0.203162,1.5728,3.41548,-0.0574621,-0.268691,0.465885,1.54795,-0.535235,-1.45474,1.34907,-1.13597,1.05742,0.315929,-0.458336,0.399723,-1.06522,0.270256,2.80188,1.11272,0 +-0.132494,0.988654,-0.203162,1.91224,3.41548,-0.0574621,-0.268691,0.524049,1.77439,-0.535235,-1.45474,1.42608,-1.13597,1.22461,0.994036,-0.458336,0.399723,-1.32173,0.0628821,2.90541,-0.524402,0 +-0.132494,1.24735,-0.203162,1.23337,3.7533,-0.0574621,-0.268691,0.465885,1.54795,-0.535235,-1.45474,1.16938,-0.797677,1.22461,-0.362178,-0.458336,0.399723,-1.19347,-0.0753675,2.90541,-0.524402,0 +-0.132494,0.988654,-0.203162,1.91224,3.07767,-0.0574621,-0.268691,0.524049,1.66117,-0.535235,-1.45474,1.16938,-0.797677,1.22461,0.315929,-0.458336,-1.92,-1.2576,-0.351867,3.2505,-2.16152,0 +-0.132494,0.471268,-0.203162,2.25167,4.09111,-0.0574621,-0.268691,0.640377,1.77439,-0.535235,-1.45474,1.14371,-1.03448,0.778782,-0.0231245,-0.458336,-1.55373,-1.57825,-1.18136,1.55954,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,-0.535235,0.588526,-1.24362,0.352518,-2.11909,-1.04029,-0.458336,-1.37059,-1.2576,-1.52699,-0.649055,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,-0.535235,0.677364,-1.19228,0.28486,-2.11909,-1.04029,-0.458336,-1.37059,-1.2576,-1.52699,-0.614546,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.98936,-0.942873,-0.535235,0.712899,-1.16661,0.217201,-2.17482,-1.04029,-0.458336,-1.37059,-1.32173,-1.52699,-0.614546,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.98936,-0.942873,-0.535235,0.748434,-1.14093,0.217201,-2.11909,-1.04029,-0.458336,-1.37059,-1.32173,-1.52699,-0.614546,-0.524402,0 +-1.96161,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,-0.535235,0.606294,-1.21795,0.28486,-2.17482,-1.04029,-0.458336,-1.37059,-1.2576,-1.52699,-0.649055,-0.524402,0 +-1.96161,-0.0461169,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.814868,-0.0371185,-0.535235,1.4236,-0.345159,-0.0872623,-0.893069,-0.701232,-0.458336,-1.49268,-1.38586,-1.66524,-0.303962,-0.524402,0 +-2.77454,2.02342,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.873032,0.0761009,-0.535235,0.801736,-0.42217,0.0142255,-0.893069,0.315929,-0.458336,-1.85895,-1.12934,-1.52699,0.455245,-2.16152,0 +-2.77454,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.931196,-0.829654,-0.535235,1.05048,-1.08959,0.0480547,-2.28628,-1.04029,-0.458336,-1.67582,-1.64238,-1.87261,-0.580037,-0.524402,0 +-2.77454,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.931196,-0.829654,-0.535235,0.943877,-1.08959,0.0480547,-2.28628,-1.04029,-0.458336,-1.55373,-1.64238,-1.87261,-0.580037,-0.524402,0 +-2.77454,-0.563502,-0.203162,2.25167,-0.638287,-0.0574621,-0.268691,0.931196,-0.829654,-0.535235,0.588526,-1.03825,0.0480547,-2.17482,-1.04029,-0.458336,-1.55373,-1.57825,-1.80349,-0.614546,-0.524402,0 +-2.77454,-0.822195,-0.203162,1.91224,-0.638287,-0.0574621,-0.268691,0.931196,-0.829654,-0.535235,0.748434,-1.11526,0.0480547,-2.34201,-1.04029,-0.458336,-1.55373,-1.57825,-1.80349,-0.614546,-0.524402,0 +-2.77454,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.98936,-0.829654,-0.535235,0.393083,-1.29496,0.28486,-2.34201,-1.04029,-0.458336,-1.61477,-1.51412,-1.80349,-0.649055,-0.524402,0 +-2.77454,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.98936,-0.716435,-0.535235,0.783969,-0.42217,0.217201,-0.558699,-0.362178,-0.458336,-1.55373,-1.19347,-1.66524,-0.165924,-2.16152,0 +-2.36807,-0.30481,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.873032,-0.489996,-0.535235,0.641829,-0.165468,-0.053433,-0.447242,0.315929,-0.458336,-1.55373,-1.38586,-1.73436,-0.234943,-2.16152,0 +-2.36807,-0.0461169,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,0.814868,-0.489996,-0.535235,0.464154,-0.165468,-0.053433,-0.447242,-0.362178,-0.458336,-1.55373,-1.44999,-1.87261,-0.0969054,-2.16152,0 +-2.36807,-0.30481,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.931196,-0.603215,-0.535235,0.481921,-0.165468,-0.053433,-0.447242,-0.362178,-0.458336,-1.55373,-1.38586,-1.73436,-0.165924,-2.16152,0 +-2.36807,-0.0461169,-0.181733,0.215061,-0.300473,-0.0574621,-0.268691,0.98936,-0.489996,-0.535235,0.428619,-0.139797,-0.053433,-0.391514,0.654983,-0.458336,-1.67582,-1.32173,-1.73436,0.0756414,-2.16152,0 +-2.36807,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.98936,-0.829654,-0.535235,0.677364,-1.03825,0.149542,-2.00764,-1.04029,-0.458336,-1.67582,-1.51412,-1.80349,-0.614546,-0.524402,0 +-2.36807,0.212576,-0.181733,-0.803245,-0.300473,-0.0574621,-0.268691,1.04752,-0.263557,-0.535235,0.197641,0.450617,-0.121092,0.778782,0.315929,-0.458336,-1.73686,-1.38586,-1.80349,0.17917,-2.16152,0 +-2.36807,0.471268,-0.181733,1.23337,-0.300473,-0.0574621,-0.268691,0.931196,0.30254,-0.535235,0.0555005,0.450617,-0.121092,0.778782,-0.362178,-0.458336,-1.73686,-1.32173,-1.80349,0.524263,-2.16152,0 +-2.36807,0.988654,-0.181733,1.5728,-0.300473,-0.0574621,-0.268691,0.931196,0.642198,-0.535235,-0.175477,0.450617,-0.121092,0.778782,-0.0231245,-0.458336,-1.85895,-1.2576,-1.66524,1.00739,-2.16152,0 +-2.36807,-0.0461169,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.98936,0.415759,-0.535235,-0.335385,2.70959,-1.06831,4.12248,3.02836,0.957976,-1.85895,-2.02715,-2.14911,0.558773,-2.16152,0 +-2.36807,-0.0461169,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.98936,0.30254,-0.535235,-0.246547,1.16938,-1.06831,0.778782,2.6893,0.957976,-1.85895,-1.89889,-2.07999,0.627791,-0.524402,0 +-2.36807,-0.0461169,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,0.931196,1.20829,-0.535235,-1.13492,2.70959,-1.06831,4.12248,2.0112,0.957976,-2.40836,-2.15541,-2.28736,1.387,-2.16152,0 +-2.36807,0.212576,-0.203162,1.5728,1.05078,-0.0574621,-0.268691,0.931196,1.54795,-0.535235,-1.13492,2.70959,-1.06831,4.12248,1.67214,-0.458336,-2.59149,-2.34779,-2.21824,1.45602,-2.16152,0 +-2.36807,-0.0461169,-0.203162,1.23337,0.712969,-0.0574621,-0.268691,0.98936,0.868636,-0.535235,-0.459758,2.70959,-1.06831,4.12248,2.0112,-0.458336,-1.85895,-2.15541,-2.07999,0.489754,-2.16152,0 +-2.36807,0.212576,-0.181733,1.5728,0.712969,-0.0574621,-0.268691,0.98936,0.981856,-0.535235,-0.51306,2.70959,-1.06831,4.12248,0.994036,-0.458336,-1.85895,-2.02715,-2.01086,0.800338,-2.16152,0 +-2.36807,0.212576,-0.181733,1.5728,0.375155,-0.0574621,-0.268691,0.98936,0.528978,-0.535235,-0.246547,2.70959,-1.06831,4.12248,0.994036,-0.458336,-1.67582,-1.83476,-1.94174,0.593282,-2.16152,0 +-2.36807,-0.0461169,-0.160304,0.554496,1.72641,-0.0574621,3.12144,1.22202,2.00083,-0.535235,-1.45474,1.60578,-1.13597,1.61471,1.33309,-0.458336,-2.83568,-3.30973,-2.97861,0.800338,-2.16152,2 +-2.36807,0.212576,-0.203162,1.5728,1.72641,-0.0574621,3.12144,1.22202,1.88761,-0.535235,-1.45474,1.60578,-1.13597,1.61471,0.994036,-0.458336,-2.83568,-3.05321,-2.97861,0.765829,-2.16152,2 +-2.36807,-0.0461169,-0.160304,0.893932,1.72641,-0.0574621,3.12144,1.22202,1.88761,-0.535235,-1.45474,1.60578,-1.13597,1.61471,0.654983,-0.458336,-2.83568,-3.2456,-3.04773,0.903866,-2.16152,2 +-2.36807,-0.30481,-0.138875,-0.803245,2.40204,-0.0574621,3.12144,1.22202,2.11405,-0.535235,-1.45474,1.37474,-1.03448,1.28034,0.654983,0.957976,-2.83568,-3.63037,-3.04773,0.69681,-2.16152,2 +-2.36807,0.212576,-0.160304,0.215061,2.06422,-0.0574621,1.42637,1.16385,2.22727,-0.535235,-1.45474,1.52876,-1.03448,1.61471,0.315929,-0.458336,-3.01881,-3.18147,-2.84036,1.387,-2.16152,2 +-2.36807,-0.0461169,-0.160304,0.554496,1.3886,-0.0574621,3.12144,1.22202,2.00083,-0.535235,-1.45474,1.60578,-1.13597,1.61471,1.33309,-0.458336,-2.83568,-3.37386,-2.97861,0.800338,-2.16152,2 +0.375592,2.7995,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,0.349558,1.54795,-0.535235,-1.40144,1.68279,-1.4066,1.33607,1.67214,2.37429,1.37645,0.473878,1.72188,0.800338,1.11272,0 +0.375592,2.54081,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,0.407721,1.66117,-0.535235,-0.601898,1.68279,-1.4066,1.33607,1.67214,2.37429,1.62063,0.409749,1.86013,1.00739,1.11272,0 +0.375592,2.54081,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.524049,1.20829,-0.535235,-1.38367,1.68279,-1.4066,1.33607,0.315929,-0.458336,1.37645,0.409749,1.58363,1.11092,1.11272,0 +0.375592,2.28212,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.524049,0.868636,-0.535235,-1.4192,1.68279,-1.4066,1.33607,-0.362178,-0.458336,1.37645,0.602136,1.58363,0.69681,1.11272,0 +0.375592,2.7995,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.582213,0.528978,-0.535235,-1.4192,1.68279,-1.4066,1.33607,0.994036,-0.458336,0.521813,0.666265,1.58363,0.938376,1.11272,0 +0.375592,2.7995,-0.203162,-0.46381,1.05078,-0.0574621,-0.268691,0.582213,0.528978,-0.535235,-1.38367,1.68279,-1.4066,1.33607,0.994036,0.957976,0.521813,0.473878,1.30713,1.17994,1.11272,0 +0.375592,2.28212,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.524049,0.981856,-0.535235,-1.38367,1.68279,-1.4066,1.33607,-0.0231245,-0.458336,1.37645,0.409749,1.44538,1.387,1.11272,0 +0.375592,2.28212,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.640377,0.415759,-0.535235,-1.15269,1.68279,-1.4066,1.33607,0.994036,0.957976,0.704949,0.666265,1.37625,0.869357,1.11272,0 +0.375592,2.02342,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.582213,0.30254,-0.535235,-0.104407,1.68279,-1.4066,1.33607,0.315929,0.957976,0.643904,0.730394,1.37625,0.800338,1.11272,0 +0.375592,1.76473,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.524049,0.30254,-0.535235,-0.193245,1.68279,-1.4066,1.33607,0.315929,-0.458336,0.643904,0.538007,1.30713,1.387,1.11272,0 +0.375592,1.50604,-0.181733,0.215061,0.375155,-0.0574621,-0.268691,0.640377,0.18932,-0.535235,-0.495293,0.989691,-0.831506,0.778782,-0.701232,-0.458336,0.521813,0.538007,0.823255,1.14543,1.11272,0 +0.375592,1.24735,-0.181733,0.215061,0.375155,-0.0574621,-0.268691,0.640377,0.30254,-0.535235,-0.459758,0.989691,-0.831506,0.778782,0.315929,-0.458336,0.643904,0.538007,0.89238,1.24896,1.11272,0 +0.375592,0.729961,-0.160304,0.215061,0.375155,-0.0574621,-0.268691,0.640377,0.18932,-0.535235,-0.530828,0.989691,-0.831506,0.778782,0.315929,0.957976,0.643904,0.538007,0.823255,1.0419,1.11272,0 +0.375592,1.24735,-0.181733,0.215061,0.375155,-0.0574621,-0.268691,0.640377,0.0761009,-0.535235,-0.619665,0.989691,-0.831506,0.778782,-0.701232,-0.458336,0.521813,0.538007,0.823255,0.972885,1.11272,0 +0.375592,0.988654,-0.181733,-0.124374,0.375155,-0.0574621,-0.268691,0.582213,0.0761009,-0.535235,-0.353152,0.989691,-0.831506,0.778782,-0.0231245,-0.458336,0.521813,0.538007,0.75413,0.834848,1.11272,0 +0.375592,0.729961,-0.160304,0.215061,0.0373407,-0.0574621,-0.268691,0.582213,0.0761009,-0.535235,-0.246547,0.989691,-0.831506,0.778782,-0.362178,0.957976,0.643904,0.538007,0.75413,0.834848,1.11272,0 +0.375592,0.729961,-0.096017,0.215061,-0.300473,-0.0574621,-0.268691,0.698541,0.0761009,-0.535235,-0.211012,-0.576191,0.961445,0.332955,-0.701232,-0.458336,0.521813,0.409749,0.339381,-0.37298,-0.524402,0 +0.375592,1.50604,-0.138875,-0.124374,-0.300473,-0.0574621,-0.268691,0.640377,-0.150338,-0.535235,-0.317617,-0.576191,0.961445,0.332955,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.37298,-0.524402,0 +0.375592,2.02342,-0.117446,-0.124374,-0.300473,-0.0574621,-0.268691,0.524049,-0.263557,-0.535235,-0.530828,-0.576191,0.961445,0.332955,-1.04029,-0.458336,0.521813,0.602136,0.546756,-0.37298,-0.524402,0 +0.375592,1.50604,-0.138875,-0.124374,-0.300473,-0.0574621,-0.268691,0.582213,-0.150338,-0.535235,-0.406455,-0.576191,0.961445,0.332955,-1.04029,-0.458336,0.521813,0.602136,0.477631,-0.37298,-0.524402,0 +0.375592,2.28212,-0.160304,0.215061,-0.638287,-0.0574621,-0.268691,0.524049,-0.489996,-0.535235,-0.72627,-0.576191,0.961445,0.332955,-0.362178,-0.458336,0.582859,0.730394,0.61588,-0.40749,-0.524402,0 +-0.234112,-0.822195,-0.138875,-0.46381,2.06422,-0.0574621,4.81651,1.16385,0.415759,-0.535235,-1.45474,-0.0627869,-0.527043,-1.00453,0.994036,-0.458336,-1.00432,-1.19347,-1.25049,-0.131415,-0.524402,2 +-0.234112,0.212576,-0.138875,-0.124374,1.05078,-0.0574621,1.42637,0.756704,0.868636,-0.535235,-1.29483,0.501957,-0.527043,0.221498,1.33309,-0.458336,-0.271775,-0.488055,-0.420991,0.0756414,-0.524402,0 +-0.234112,0.729961,-0.138875,-0.124374,0.712969,-0.0574621,-0.268691,0.582213,0.755417,-0.535235,-1.24153,-0.0371167,0.217201,0.277226,0.654983,0.957976,-0.271775,-0.103282,-0.282742,-0.131415,-0.524402,0 +-0.234112,1.24735,-0.138875,-0.803245,-0.638287,-0.0574621,-0.268691,0.349558,0.528978,-0.535235,-0.886178,-0.268148,0.521664,0.277226,0.994036,-0.458336,0.765994,0.538007,0.61588,-0.165924,-0.524402,0 +-0.234112,0.988654,-0.117446,-0.46381,-0.638287,-0.0574621,-0.268691,0.349558,1.20829,-0.535235,-1.45474,-0.370829,0.521664,0.0543129,-0.0231245,-0.458336,-0.393865,0.34562,0.339381,0.213679,-0.524402,0 +-0.234112,1.24735,-0.117446,-0.124374,-0.300473,-0.0574621,-0.268691,0.465885,1.09507,-0.535235,-1.45474,-0.370829,0.521664,0.0543129,-0.362178,-0.458336,-0.454911,0.217363,0.201132,0.213679,-0.524402,0 +-0.234112,1.24735,-0.160304,-0.124374,0.0373407,-0.0574621,-0.268691,0.465885,0.642198,-0.535235,-1.02832,0.373606,-0.324067,0.277226,0.654983,-0.458336,0.765994,0.281491,0.408506,0.213679,1.11272,0 +-0.234112,1.24735,-0.138875,-0.124374,-0.300473,-0.0574621,-0.268691,0.465885,0.642198,-0.535235,-0.957248,0.373606,-0.324067,0.277226,0.654983,-0.458336,0.765994,0.34562,0.477631,0.110151,1.11272,0 +-0.234112,1.50604,-0.181733,-0.124374,-0.300473,-0.0574621,-0.268691,0.465885,0.755417,-0.535235,-0.975016,0.373606,-0.324067,0.277226,0.654983,-0.458336,-0.33282,0.34562,0.477631,0.248188,1.11272,0 +-0.234112,1.76473,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.407721,0.0761009,-0.535235,-0.868411,0.373606,-0.324067,0.277226,0.994036,-0.458336,0.82704,0.538007,0.61588,0.0411321,1.11272,0 +-0.234112,1.24735,-0.203162,-0.803245,-0.300473,-0.0574621,-0.268691,0.407721,0.18932,-0.535235,-0.51306,0.399276,-0.357896,0.277226,0.994036,-0.458336,0.82704,0.473878,0.61588,0.110151,1.11272,0 +-0.234112,1.50604,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,0.407721,0.18932,-0.535235,-0.744038,0.373606,-0.324067,0.277226,0.654983,-0.458336,0.82704,0.409749,0.408506,0.110151,1.11272,0 +-0.234112,1.24735,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,0.407721,0.30254,-0.535235,-0.975016,-0.370829,0.589323,0.16577,-0.701232,-0.458336,0.0334514,0.281491,0.201132,-0.37298,-0.524402,0 +-0.234112,1.76473,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,0.291394,-0.0371185,-0.535235,-0.957248,-0.370829,0.589323,0.16577,-0.701232,-0.458336,0.0334514,0.34562,0.270256,-0.37298,-0.524402,0 +-0.234112,0.988654,-0.203162,0.893932,0.0373407,-0.0574621,-0.268691,0.291394,0.0761009,-0.535235,-1.02832,-0.0627869,0.183372,0.16577,-0.362178,-0.458336,0.155542,0.281491,0.201132,-0.37298,-0.524402,0 +0.0707402,0.471268,-0.181733,0.554496,0.712969,-0.0574621,-0.268691,0.349558,0.528978,-0.535235,-1.29483,0.322266,-0.357896,0.110041,0.315929,-0.458336,0.338678,-0.103282,0.132007,0.351716,1.11272,0 +0.0707402,0.471268,-0.181733,0.554496,1.05078,-0.0574621,-0.268691,0.524049,0.30254,-0.535235,-1.27706,0.322266,-0.357896,0.110041,0.994036,-0.458336,-0.149684,-0.103282,-0.00624269,0.14466,-0.524402,0 +0.0707402,0.212576,-0.181733,0.554496,1.3886,-0.0574621,-0.268691,0.582213,0.18932,-0.535235,-1.13492,0.193915,-0.357896,-0.168601,0.315929,-0.458336,-0.0275938,-0.167411,-0.00624269,0.0756414,1.11272,0 +0.0707402,-0.0461169,-0.181733,0.893932,1.05078,-0.0574621,1.42637,0.698541,0.0761009,-0.535235,-0.975016,0.0398938,-0.357896,-0.502971,0.994036,0.957976,-0.0275938,-0.488055,-0.144492,0.558773,1.11272,0 +0.0707402,-0.822195,-0.203162,1.5728,1.3886,-0.0574621,3.12144,0.98936,0.18932,-0.535235,-0.779573,-0.0114465,-0.357896,-0.614428,0.315929,-0.458336,-0.0275938,-1.00109,-0.97399,1.07641,1.11272,2 +0.0707402,1.24735,-0.203162,2.59111,1.3886,-0.0574621,-0.268691,0.756704,-0.0371185,-0.535235,-1.45474,0.989691,-0.459384,1.39179,0.994036,-0.458336,1.13227,0.217363,0.89238,2.83639,1.11272,0 +0.0707402,1.24735,-0.203162,1.91224,1.05078,-0.0574621,-0.268691,0.756704,-0.263557,-0.535235,0.197641,0.989691,-0.459384,1.39179,1.33309,-0.458336,1.13227,0.666265,1.09975,1.7666,1.11272,0 +0.0707402,1.50604,-0.181733,1.91224,1.3886,-0.0574621,-0.268691,0.756704,-0.150338,-0.535235,-1.45474,0.989691,-0.459384,1.39179,1.33309,-0.458336,1.13227,0.666265,1.09975,1.73209,1.11272,0 +0.0707402,1.24735,-0.181733,1.91224,1.3886,-0.0574621,-0.268691,0.814868,-0.263557,-0.535235,-0.797341,0.989691,-0.459384,1.39179,2.0112,-0.458336,1.13227,0.602136,0.89238,1.45602,-0.524402,0 +0.0707402,0.988654,-0.181733,2.25167,1.05078,-0.0574621,-0.268691,0.873032,-0.150338,-0.535235,-0.6552,0.989691,-0.459384,1.39179,1.67214,-0.458336,1.13227,0.666265,0.961504,1.0419,-0.524402,0 +0.0707402,1.24735,-0.181733,1.5728,0.712969,-0.0574621,-0.268691,0.756704,-0.150338,-0.535235,-0.58413,0.989691,-0.459384,1.39179,-0.0231245,0.957976,1.13227,0.794523,0.89238,0.731319,-0.524402,0 +0.0707402,1.24735,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.698541,-0.150338,-0.535235,-0.530828,0.989691,-0.459384,1.39179,0.654983,-0.458336,0.765994,0.730394,0.823255,0.489754,-0.524402,0 +0.0707402,0.471268,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.465885,-0.150338,-0.535235,-1.13492,0.322266,-0.121092,0.50014,-0.0231245,-0.458336,0.765994,0.794523,0.89238,0.110151,1.11272,0 +0.0707402,0.471268,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.814868,-0.150338,-0.535235,-0.406455,0.322266,-0.121092,0.50014,-0.0231245,-0.458336,0.765994,0.538007,0.685005,0.00662268,1.11272,0 +0.0707402,0.471268,-0.181733,0.893932,1.05078,-0.0574621,-0.268691,0.814868,-0.263557,-0.535235,-0.388688,0.322266,-0.121092,0.50014,0.315929,-0.458336,0.277632,0.538007,0.61588,-0.0623961,1.11272,0 +0.0707402,0.729961,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.873032,-0.263557,-0.535235,-0.58413,0.322266,-0.121092,0.50014,0.315929,-0.458336,0.643904,0.473878,0.61588,-0.0623961,1.11272,0 +0.0707402,0.471268,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,0.873032,-0.263557,-0.535235,-0.58413,0.322266,-0.121092,0.50014,0.315929,-0.458336,0.277632,0.473878,0.546756,-0.131415,-0.524402,0 +0.0707402,0.988654,-0.203162,0.554496,0.0373407,-0.0574621,-0.268691,0.931196,-0.376776,-0.535235,-0.779573,0.322266,-0.121092,0.50014,-0.362178,-0.458336,0.704949,0.602136,0.61588,-0.131415,1.11272,0 +0.0707402,1.24735,-0.160304,-0.46381,1.05078,-0.0574621,-0.268691,0.931196,-0.489996,-0.535235,-1.01055,0.758659,-0.18875,1.33607,1.33309,-0.458336,0.82704,0.34562,0.546756,0.593282,-0.524402,0 +0.0707402,1.50604,-0.181733,0.554496,1.05078,-0.0574621,-0.268691,0.756704,-0.263557,-0.535235,-1.3659,0.732989,-0.18875,1.28034,0.654983,-0.458336,0.82704,0.666265,0.89238,0.662301,-0.524402,0 +0.0707402,1.50604,-0.181733,0.554496,1.05078,-0.0574621,-0.268691,0.698541,-0.150338,-0.535235,-1.34813,0.732989,-0.18875,1.28034,0.315929,-0.458336,0.82704,0.666265,0.89238,0.800338,-0.524402,0 +0.0707402,1.24735,-0.160304,1.23337,1.05078,-0.0574621,-0.268691,0.698541,-0.263557,-0.535235,-1.45474,0.732989,-0.18875,1.28034,0.315929,-0.458336,0.82704,0.666265,0.961504,0.869357,-0.524402,0 +0.0707402,1.24735,-0.181733,1.5728,1.05078,-0.0574621,-0.268691,0.582213,-0.150338,-0.535235,-1.45474,0.630308,-0.053433,1.28034,-0.0231245,-0.458336,0.82704,0.794523,1.09975,0.869357,-0.524402,0 +0.0707402,1.50604,-0.203162,1.91224,1.05078,-0.0574621,-0.268691,0.582213,-0.150338,-0.535235,-1.45474,0.784329,-0.256409,1.28034,-0.362178,-0.458336,0.82704,0.858651,1.16888,0.972885,1.11272,0 +0.0707402,2.02342,-0.203162,1.91224,0.712969,-0.0574621,-0.268691,0.524049,0.0761009,-0.535235,-1.45474,0.784329,-0.256409,1.28034,0.315929,-0.458336,0.82704,1.11517,1.5145,0.869357,1.11272,0 +0.0707402,2.02342,-0.181733,1.23337,1.05078,-0.0574621,-0.268691,0.465885,0.18932,-0.535235,-1.45474,0.784329,-0.256409,1.28034,0.315929,-0.458336,0.82704,0.92278,1.30713,1.0419,1.11272,0 +0.0707402,-0.30481,-0.160304,-1.48212,0.0373407,-0.0574621,6.51157,0.931196,0.18932,-0.535235,-1.45474,0.758659,-0.763847,0.388683,-0.0231245,0.957976,-2.95777,-1.89889,-2.28736,1.83562,-2.16152,2 +0.0707402,0.471268,-0.160304,-0.803245,0.375155,-0.0574621,4.81651,0.873032,0.18932,-0.535235,-1.45474,1.09237,-0.763847,1.11315,-0.0231245,-0.458336,-2.95777,-1.38586,-1.94174,4.45833,-2.16152,2 +0.0707402,0.212576,-0.181733,-1.14268,0.712969,-0.0574621,4.81651,0.756704,0.30254,-0.535235,-1.45474,1.09237,-0.763847,1.11315,0.994036,-0.458336,-2.95777,-1.06522,-1.73436,6.08027,-2.16152,2 +0.0707402,0.212576,-0.181733,-1.14268,0.375155,-0.0574621,4.81651,0.814868,0.528978,-0.535235,-1.45474,1.22072,-0.932994,1.11315,0.654983,-0.458336,-3.01881,-1.44999,-1.87261,5.63165,-2.16152,2 +0.0707402,0.212576,-0.181733,-1.14268,0.375155,-0.0574621,6.51157,0.873032,0.528978,-0.535235,-1.45474,1.22072,-0.932994,1.11315,0.315929,-0.458336,-3.01881,-1.83476,-2.14911,3.76814,-2.16152,2 +0.0707402,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,8.20664,0.98936,0.415759,-0.535235,-1.45474,1.11804,-0.932994,0.890238,0.654983,0.957976,-3.01881,-2.15541,-2.49474,2.38777,-2.16152,2 +0.0707402,-0.0461169,-0.203162,-1.48212,-0.638287,-0.0574621,8.20664,1.04752,0.528978,-0.535235,-1.45474,1.11804,-0.932994,0.890238,1.33309,0.957976,-3.01881,-2.21954,-2.56386,2.21522,-2.16152,2 +0.0707402,0.212576,-0.203162,-1.48212,-0.300473,-0.0574621,6.51157,0.98936,0.642198,-0.535235,-1.45474,1.27206,-0.932994,1.22461,1.67214,-0.458336,-3.01881,-1.96302,-2.21824,3.11247,-2.16152,2 +2.71279,1.76473,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-0.603215,-0.535235,0.00219796,0.0912342,1.26591,2.28345,0.994036,-0.458336,2.53631,2.26949,2.48225,-0.165924,-0.524402,0 +-1.3519,-0.30481,-0.203162,-1.14268,2.40204,-0.0574621,-0.268691,0.582213,-0.0371185,-0.535235,-0.122175,0.193915,-0.493213,-0.391514,-0.0231245,-0.458336,-1.49268,-1.2576,-1.31961,0.213679,-0.524402,0 +-1.3519,-0.0461169,-0.203162,-1.14268,2.73985,-0.0574621,-0.268691,0.640377,-0.150338,-0.535235,-0.15771,0.193915,-0.493213,-0.391514,-0.362178,-0.458336,-0.577001,-1.32173,-1.38874,0.69681,-0.524402,0 +-1.3519,-0.0461169,-0.203162,-1.14268,2.40204,-0.0574621,-0.268691,0.582213,0.18932,-0.535235,-0.0333371,0.193915,-0.493213,-0.391514,0.315929,0.957976,-1.49268,-1.2576,-1.31961,0.317207,-0.524402,0 +-1.3519,-0.822195,-0.203162,-0.46381,3.41548,-0.0574621,-0.268691,0.698541,0.30254,-0.535235,0.286478,0.373606,-0.831506,-0.558699,-0.0231245,0.957976,-2.83568,-1.77063,-2.14911,1.49053,-0.524402,2 +-1.3519,-0.822195,-0.203162,-0.124374,3.7533,-0.0574621,-0.268691,0.698541,0.30254,-0.535235,0.517456,0.322266,-0.831506,-0.670156,-0.0231245,0.957976,-2.83568,-1.83476,-2.21824,1.28347,-0.524402,2 +-1.3519,-0.822195,-0.203162,-0.124374,3.41548,-0.0574621,-0.268691,0.698541,0.30254,-0.535235,0.464154,0.322266,-0.831506,-0.670156,-0.0231245,0.957976,-1.98104,-1.83476,-2.14911,0.420735,-0.524402,2 +-1.3519,-0.822195,-0.203162,0.215061,3.07767,-0.0574621,-0.268691,0.756704,0.30254,-0.535235,0.144338,0.373606,-0.831506,-0.558699,-0.0231245,0.957976,-3.1409,-1.89889,-2.28736,1.93915,-0.524402,2 +-1.3519,-0.822195,-0.203162,0.215061,2.40204,-0.0574621,1.42637,0.873032,0.18932,-0.535235,0.108803,0.373606,-0.831506,-0.558699,0.315929,0.957976,-3.1409,-2.09128,-2.56386,1.55954,-2.16152,2 +-1.3519,-0.822195,-0.203162,0.215061,1.3886,-0.0574621,1.42637,0.873032,0.18932,-0.535235,0.197641,0.373606,-0.831506,-0.558699,-0.0231245,0.957976,-3.1409,-2.15541,-2.77123,1.55954,-2.16152,2 +-1.3519,-0.822195,-0.203162,-0.124374,1.72641,-0.0574621,1.42637,0.98936,-0.0371185,-0.535235,0.037733,0.373606,-0.831506,-0.558699,-0.362178,0.957976,-3.1409,-2.41192,-3.11686,1.00739,-2.16152,2 +-1.3519,-0.822195,-0.203162,0.215061,1.3886,-0.0574621,3.12144,0.98936,-0.263557,-0.535235,-0.0155696,0.373606,-0.831506,-0.558699,-0.701232,0.957976,-3.1409,-2.34779,-2.97861,0.869357,-2.16152,2 +-1.3519,-0.822195,-0.203162,-0.46381,1.3886,-0.0574621,3.12144,0.873032,-0.0371185,-0.535235,0.215408,0.322266,-0.831506,-0.670156,0.654983,0.957976,-3.1409,-2.15541,-2.56386,1.28347,-0.524402,2 +-1.3519,-0.822195,-0.203162,-1.14268,1.72641,-0.0574621,3.12144,0.98936,-0.263557,-0.535235,-1.45474,0.245255,-0.66236,-0.558699,-0.362178,-0.458336,-3.1409,-2.28366,-2.70211,0.731319,-2.16152,2 +-1.3519,-0.822195,-0.203162,-0.803245,2.73985,-0.0574621,3.12144,0.931196,-0.0371185,-0.535235,-1.45474,0.322266,-0.831506,-0.670156,0.654983,-0.458336,-1.85895,-2.21954,-2.56386,0.248188,-0.524402,2 +-1.3519,-0.822195,-0.203162,-0.803245,2.06422,-0.0574621,3.12144,0.98936,-0.0371185,-0.535235,-1.45474,0.168245,-0.831506,-1.00453,1.33309,-0.458336,-3.1409,-2.34779,-2.63298,0.662301,-0.524402,2 +-1.3519,-0.822195,-0.203162,0.215061,2.73985,-0.0574621,3.12144,0.98936,0.415759,-0.535235,-1.45474,1.04103,-1.03448,0.555868,2.0112,0.957976,-3.1409,-2.73257,-2.49474,0.834848,-2.16152,2 +-1.3519,-0.822195,-0.203162,-0.124374,2.40204,-0.0574621,1.42637,0.931196,0.755417,-0.535235,-1.45474,1.47742,-1.03448,1.50325,2.6893,2.37429,-1.85895,-2.66844,-2.21824,0.593282,-2.16152,2 +-1.3519,-0.822195,-0.203162,-0.124374,2.40204,-0.0574621,1.42637,0.873032,0.642198,-0.535235,-0.761806,1.47742,-1.03448,1.50325,2.0112,0.957976,-1.85895,-2.54018,-2.28736,0.627791,-2.16152,2 +-1.3519,-0.822195,-0.203162,0.215061,2.40204,-0.0574621,3.12144,0.98936,0.415759,-0.535235,-1.45474,1.04103,-1.03448,0.555868,2.0112,0.957976,-3.1409,-2.66844,-2.56386,0.800338,-2.16152,2 +-1.25028,-0.0461169,-0.160304,-0.46381,1.05078,-0.0574621,-0.268691,0.640377,0.18932,-0.535235,0.126571,0.655978,-0.899164,-0.0571439,0.994036,0.957976,-0.943273,-1.19347,-1.25049,0.213679,-0.524402,0 +-1.25028,0.212576,-0.160304,-0.124374,1.3886,-0.0574621,-0.268691,0.640377,0.415759,-0.535235,0.037733,0.655978,-0.899164,-0.0571439,0.654983,0.957976,-0.943273,-1.2576,-1.25049,0.420735,-0.524402,0 +-1.25028,-0.0461169,-0.160304,-0.803245,0.712969,-0.0574621,-0.268691,0.582213,0.30254,-0.535235,0.961644,0.732989,-0.899164,0.110041,0.994036,0.957976,-0.943273,-1.00109,-1.04311,0.17917,-0.524402,0 +-1.25028,0.729961,-0.160304,-0.124374,0.0373407,-0.0574621,-0.268691,0.582213,-0.0371185,-0.535235,1.05048,0.142575,-0.121092,0.110041,-0.362178,-0.458336,-0.821182,-0.552184,-0.83574,-0.0623961,-0.524402,0 +-1.25028,0.471268,-0.160304,-1.14268,-0.638287,-0.0574621,-0.268691,0.465885,0.0761009,-0.535235,0.979412,0.065564,0.081884,0.277226,0.654983,-0.458336,-0.821182,-0.488055,-0.766615,0.00662268,-0.524402,0 +-1.25028,0.988654,-0.138875,-1.14268,-0.638287,-0.0574621,-0.268691,0.407721,0.415759,-0.535235,0.304246,0.065564,0.081884,0.277226,0.994036,-0.458336,-0.821182,-0.359797,-0.559241,0.17917,-0.524402,0 +-1.25028,0.729961,-0.160304,-0.124374,0.0373407,-0.0574621,-0.268691,0.524049,0.0761009,-0.535235,0.730666,0.219585,-0.121092,0.277226,-0.362178,-0.458336,-0.821182,-0.552184,-0.766615,0.00662268,-0.524402,0 +-1.25028,0.212576,-0.160304,-0.803245,0.375155,-0.0574621,-0.268691,0.524049,0.0761009,-0.535235,1.03271,0.450617,-0.425555,0.277226,-0.0231245,-0.458336,-0.821182,-0.744571,-0.904865,0.14466,-0.524402,0 +-1.25028,0.212576,-0.160304,-0.803245,1.05078,-0.0574621,-0.268691,0.524049,0.30254,-0.535235,0.961644,0.732989,-0.797677,0.277226,0.315929,0.957976,-0.821182,-0.872829,-0.97399,0.317207,-0.524402,0 +-1.25028,0.471268,-0.138875,0.215061,0.712969,-0.0574621,-0.268691,0.465885,0.528978,-0.535235,0.428619,0.732989,-0.797677,0.277226,1.67214,0.957976,-0.821182,-0.8087,-0.83574,0.489754,-0.524402,0 +-1.25028,0.729961,-0.117446,-0.124374,1.3886,-0.0574621,-0.268691,0.524049,0.642198,-0.535235,-0.921713,0.732989,-0.797677,0.277226,0.315929,0.957976,-0.821182,-0.872829,-0.766615,0.662301,-0.524402,0 +-1.25028,0.471268,-0.117446,0.215061,1.3886,-0.0574621,-0.268691,0.524049,0.528978,-0.535235,-0.992783,0.732989,-0.797677,0.277226,0.654983,-0.458336,-0.821182,-0.936957,-0.904865,0.627791,-0.524402,0 +-1.25028,0.212576,-0.138875,0.554496,2.40204,-0.0574621,-0.268691,0.640377,0.528978,-0.535235,-1.02832,0.93835,-1.06831,0.277226,1.33309,-0.458336,-1.43163,-1.38586,-1.25049,1.24896,-0.524402,0 +-1.25028,-0.822195,-0.160304,-0.803245,4.42892,-0.0574621,-0.268691,0.814868,0.755417,-0.535235,-0.58413,0.707319,-1.06831,-0.224329,1.33309,-0.458336,-1.43163,-2.21954,-2.21824,1.387,-0.524402,2 +-1.25028,-0.822195,-0.181733,-0.124374,2.73985,17.3946,-0.268691,1.10569,0.868636,-0.535235,-0.317617,0.88701,-1.30512,-0.224329,0.994036,-0.458336,-4.30076,-3.18147,-3.18598,3.11247,-2.16152,2 +-1.25028,-0.822195,-0.181733,-0.46381,3.07767,17.3946,-0.268691,1.16385,0.868636,-0.535235,-1.45474,0.81,-1.30512,-0.391514,-0.0231245,0.957976,-4.30076,-3.43798,-3.53161,2.42228,-2.16152,2 +-1.25028,-0.822195,-0.181733,0.215061,3.41548,17.3946,-0.268691,1.10569,0.868636,-0.535235,-1.45474,0.81,-1.30512,-0.391514,0.315929,0.957976,-4.30076,-3.30973,-3.32423,2.73286,-2.16152,2 +-1.25028,-0.822195,-0.181733,-0.46381,2.73985,17.3946,-0.268691,1.22202,0.868636,-0.535235,-1.45474,0.81,-1.30512,-0.391514,-0.362178,0.957976,-4.30076,-3.56624,-3.87723,2.21522,-2.16152,2 +-1.25028,-0.822195,-0.203162,-0.124374,2.40204,17.3946,-0.268691,1.33834,0.642198,-0.535235,-1.45474,0.81,-1.30512,-0.391514,0.654983,2.37429,-4.30076,-3.75863,-4.08461,1.69758,-2.16152,2 +0.985296,1.76473,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.698541,-0.603215,-0.535235,-0.175477,0.0398938,0.081884,0.221498,-0.362178,-0.458336,0.888085,0.730394,0.823255,-0.37298,1.11272,0 +0.985296,1.24735,-0.203162,-0.46381,0.0373407,-0.0574621,-0.268691,0.756704,0.755417,-0.535235,-0.815108,0.219585,0.25103,0.890238,1.67214,-0.458336,0.521813,0.602136,0.89238,-0.0278867,-0.524402,0 +0.985296,1.24735,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.756704,0.981856,-0.535235,-0.761806,0.219585,0.25103,0.890238,1.33309,-0.458336,0.765994,-0.167411,1.03063,-0.165924,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.317807,0.357548,-1.24362,1.29974,-0.558699,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.26345,0.322013,-1.19228,1.3674,-0.335786,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.317807,0.304246,-1.24362,1.29974,-0.558699,-1.37934,-0.458336,0.399723,0.538007,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,-0.209093,0.250943,-1.14093,1.33357,-0.280057,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.16385,-1.16931,-0.209093,0.250943,-1.19228,1.3674,-0.335786,-1.04029,-0.458336,0.399723,0.602136,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,-0.26345,0.215408,-1.21795,1.40122,-0.335786,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,-0.26345,0.215408,-1.14093,1.33357,-0.280057,-1.04029,-0.458336,0.399723,0.602136,0.477631,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,-0.209093,0.250943,-1.11526,1.29974,-0.280057,-1.04029,-0.458336,0.399723,0.602136,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,-0.209093,0.268711,-1.16661,1.33357,-0.335786,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,-0.209093,0.215408,-1.11526,1.29974,-0.280057,-1.04029,-0.458336,0.460768,0.602136,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.28018,-1.16931,-0.100379,0.304246,-1.11526,1.29974,-0.280057,-1.04029,-0.458336,0.521813,0.666265,0.546756,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.16385,-1.16931,-0.317807,0.410851,-1.16661,1.33357,-0.335786,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,-0.317807,0.908342,-0.370829,0.420177,-0.112872,-0.362178,0.957976,0.521813,0.666265,0.61588,-0.580037,1.11272,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.22202,-1.16931,-0.26345,0.375316,-1.11526,1.29974,-0.280057,-1.04029,-0.458336,0.521813,0.666265,0.61588,-0.614546,-0.524402,0 +0.985296,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.317807,0.961644,-0.370829,0.420177,-0.112872,-0.0231245,0.957976,0.521813,0.666265,0.61588,-0.580037,1.11272,0 +0.985296,-0.822195,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.10569,-1.05609,-0.317807,0.748434,-0.370829,0.420177,-0.112872,-0.0231245,0.957976,0.460768,0.602136,0.546756,-0.614546,1.11272,0 +0.578827,2.28212,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,0.349558,0.0761009,-0.535235,1.76118,0.964021,0.081884,2.22772,0.315929,-0.458336,0.399723,1.1793,0.961504,0.972885,-0.524402,0 +0.578827,1.50604,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.407721,-0.376776,-0.535235,1.76118,0.373606,0.081884,0.945967,0.315929,-0.458336,0.643904,0.794523,0.685005,-0.234943,-0.524402,0 +0.578827,1.50604,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.407721,-0.376776,-0.535235,1.90332,0.578968,0.081884,1.39179,0.654983,-0.458336,0.399723,0.986909,0.823255,0.213679,-0.524402,0 +0.578827,2.02342,-0.181733,0.893932,-0.638287,-0.0574621,-0.268691,0.349558,0.18932,-0.535235,2.27644,0.93835,0.115713,2.22772,0.994036,-0.458336,0.888085,1.30755,1.03063,0.69681,-0.524402,0 +0.578827,2.02342,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,0.291394,0.30254,-0.535235,2.09877,0.93835,0.115713,2.22772,1.33309,-0.458336,0.0334514,1.30755,1.03063,2.00817,-0.524402,0 +0.782061,0.729961,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.0371185,-0.535235,-0.44199,0.193915,0.0142255,0.444411,0.654983,0.957976,0.277632,0.473878,0.61588,-0.37298,-0.524402,0 +0.782061,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.04752,-0.942873,-0.480878,0.624061,-1.19228,1.33357,-0.391514,-1.04029,-0.458336,0.765994,0.794523,0.75413,-0.580037,1.11272,0 +0.782061,-0.563502,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.16385,-1.05609,-0.535235,0.535224,-1.19228,1.33357,-0.391514,-1.37934,-0.458336,0.765994,0.794523,0.75413,-0.614546,1.11272,0 +-0.0308771,-0.30481,-0.181733,1.5728,0.375155,-0.0574621,-0.268691,0.524049,0.981856,-0.535235,-0.175477,0.501957,-0.763847,-0.168601,-0.701232,0.957976,0.0944967,-0.936957,0.0628821,0.00662268,1.11272,0 +-0.0308771,-0.0461169,-0.181733,1.91224,0.712969,-0.0574621,-0.268691,0.582213,0.642198,-0.535235,-0.353152,0.501957,-0.763847,-0.168601,0.994036,0.957976,0.155542,-0.680442,0.132007,0.0411321,1.11272,0 +0.680444,-0.822195,-0.160304,-0.124374,2.06422,-0.0574621,-0.268691,0.873032,0.0761009,-0.535235,-0.58413,0.578968,-0.932994,-0.280057,0.315929,0.957976,0.277632,-0.039153,0.408506,0.386226,1.11272,0 +0.680444,-0.822195,-0.181733,-0.46381,1.72641,-0.0574621,-0.268691,0.873032,-0.150338,-0.535235,-0.761806,0.578968,-0.932994,-0.280057,0.315929,2.37429,0.277632,0.0891048,0.408506,0.248188,1.11272,0 +0.680444,-0.822195,-0.181733,-0.803245,2.06422,-0.0574621,-0.268691,0.814868,-0.0371185,-0.535235,-0.761806,0.578968,-0.932994,-0.280057,0.994036,0.957976,0.277632,0.0249759,0.408506,0.17917,1.11272,0 +0.680444,-0.822195,-0.181733,-0.46381,2.06422,-0.0574621,-0.268691,0.814868,-0.0371185,-0.535235,-0.744038,0.604638,-0.966823,-0.280057,0.654983,0.957976,0.277632,-0.039153,0.339381,0.213679,1.11272,0 +0.680444,-0.822195,-0.160304,-0.803245,2.06422,-0.0574621,-0.268691,0.814868,0.0761009,-0.535235,-0.601898,0.655978,-1.03448,-0.280057,0.654983,-0.458336,0.277632,-0.103282,0.339381,0.351716,1.11272,0 +0.680444,-0.822195,-0.181733,-0.803245,2.06422,-0.0574621,-0.268691,0.756704,-0.0371185,-0.535235,-0.761806,0.604638,-0.966823,-0.280057,0.994036,0.957976,0.277632,-0.039153,0.339381,0.282698,1.11272,0 +0.680444,-0.822195,-0.160304,-0.803245,2.06422,-0.0574621,-0.268691,0.756704,0.0761009,-0.535235,-0.619665,0.655978,-1.03448,-0.280057,1.33309,0.957976,0.277632,-0.103282,0.339381,0.351716,1.11272,0 +0.680444,-0.822195,-0.160304,-0.46381,2.06422,-0.0574621,-0.268691,0.756704,0.18932,-0.535235,-0.353152,0.88701,-1.03448,0.221498,1.33309,0.957976,0.277632,-0.616313,0.339381,0.248188,1.11272,0 +0.680444,-0.822195,-0.181733,-0.46381,2.06422,-0.0574621,-0.268691,0.756704,0.18932,-0.535235,-0.29985,0.88701,-1.03448,0.221498,1.33309,-0.458336,0.277632,-0.680442,0.270256,0.213679,1.11272,0 +0.680444,-0.822195,-0.181733,-0.46381,1.72641,-0.0574621,-0.268691,0.814868,0.0761009,-0.535235,0.322013,0.88701,-1.03448,0.221498,1.33309,-0.458336,0.277632,-0.616313,0.339381,0.14466,1.11272,0 +0.680444,-0.822195,-0.138875,-0.46381,2.06422,-0.0574621,-0.268691,0.756704,0.528978,-0.535235,0.037733,0.93835,-1.4066,-0.280057,0.994036,-0.458336,0.277632,-0.680442,0.201132,0.524263,1.11272,0 +0.680444,-0.822195,-0.117446,-0.803245,1.72641,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,0.108803,0.81,-1.4066,-0.558699,0.315929,-0.458336,0.277632,-0.8087,0.201132,0.524263,1.11272,0 +0.375592,-0.822195,-0.117446,-0.803245,1.3886,-0.0574621,-0.268691,0.698541,0.755417,-0.535235,0.286478,1.16938,-1.4066,0.221498,0.654983,0.957976,0.277632,-0.872829,0.201132,0.524263,1.11272,0 +0.375592,-0.822195,-0.117446,-0.803245,1.72641,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,0.073268,0.81,-1.4066,-0.558699,2.0112,0.957976,0.277632,-0.744571,0.201132,0.558773,1.11272,0 +0.375592,-0.30481,-0.096017,-0.46381,1.3886,-0.0574621,-0.268691,0.640377,0.642198,-0.535235,-0.0688721,1.16938,-1.4066,0.221498,1.67214,2.37429,0.277632,-0.295669,0.0628821,0.662301,1.11272,0 +0.375592,-0.30481,-0.117446,1.91224,1.72641,-0.0574621,-0.268691,0.640377,0.528978,-0.535235,-0.477525,1.16938,-1.4066,0.221498,0.994036,0.957976,0.0944967,-0.295669,0.0628821,0.455245,1.11272,0 +0.375592,-0.30481,-0.117446,0.893932,1.3886,-0.0574621,-0.268691,0.640377,0.642198,-0.535235,-0.761806,0.989691,-1.4066,-0.168601,1.33309,2.37429,0.0944967,-0.167411,0.132007,0.317207,1.11272,0 +0.375592,-0.30481,-0.160304,0.893932,1.3886,-0.0574621,-0.268691,0.640377,0.528978,-0.535235,-0.406455,0.91268,-1.13597,0.110041,0.654983,-0.458336,0.0944967,-0.103282,0.201132,0.110151,1.11272,0 +0.375592,-0.822195,-0.181733,0.554496,0.712969,-0.0574621,-0.268691,0.698541,0.642198,-0.535235,-0.29985,0.81,-1.00065,0.110041,0.315929,0.957976,0.0944967,-0.103282,0.132007,-0.165924,1.11272,0 +0.375592,-0.822195,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,-0.317617,0.81,-1.00065,0.110041,0.315929,0.957976,0.0944967,-0.103282,0.132007,-0.200434,1.11272,0 +0.375592,-0.822195,-0.203162,1.23337,1.05078,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,-0.175477,0.81,-1.00065,0.110041,0.994036,0.957976,0.277632,-0.103282,0.132007,-0.0278867,1.11272,0 +0.375592,-0.822195,-0.203162,0.893932,0.712969,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,-0.282082,0.81,-1.00065,0.110041,1.33309,2.37429,0.277632,-0.039153,0.132007,-0.0969054,1.11272,0 +0.375592,-0.822195,-0.203162,0.893932,0.375155,-0.0574621,-0.268691,0.640377,0.642198,-0.535235,-0.29985,0.81,-1.00065,0.110041,2.0112,2.37429,0.277632,-0.039153,0.201132,-0.165924,1.11272,0 +0.375592,-0.822195,-0.181733,0.554496,0.375155,-0.0574621,-0.268691,0.698541,0.528978,-0.535235,-0.29985,0.81,-1.00065,0.110041,0.315929,2.37429,0.277632,-0.039153,0.132007,-0.165924,1.11272,0 +0.477209,1.76473,-0.203162,-0.124374,-0.300473,-0.0574621,-0.268691,0.23323,-0.150338,-0.535235,-1.13492,0.707319,-0.696189,0.388683,1.67214,-0.458336,0.643904,0.666265,0.61588,-0.165924,1.11272,0 +0.477209,1.50604,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.23323,-0.0371185,-0.535235,-1.09939,0.707319,-0.696189,0.388683,1.33309,-0.458336,0.643904,0.666265,0.61588,-0.0969054,1.11272,0 +0.477209,1.50604,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.23323,-0.150338,-0.535235,-0.903946,0.707319,-0.696189,0.388683,1.67214,-0.458336,0.643904,0.666265,0.685005,-0.165924,1.11272,0 +0.477209,2.28212,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.175066,-0.150338,-0.535235,-1.20599,0.707319,-0.696189,0.388683,0.994036,-0.458336,0.643904,0.730394,0.685005,-0.269452,1.11272,0 +0.477209,2.02342,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.175066,-0.150338,-0.535235,-1.17046,0.707319,-0.696189,0.388683,0.994036,-0.458336,0.643904,0.730394,0.685005,-0.234943,1.11272,0 +0.477209,2.28212,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,0.23323,-0.150338,-0.535235,-1.17046,0.707319,-0.696189,0.388683,1.33309,-0.458336,0.643904,0.794523,0.75413,-0.234943,1.11272,0 +0.477209,2.54081,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,0.23323,-0.150338,-0.535235,-1.15269,0.707319,-0.696189,0.388683,0.994036,-0.458336,0.643904,0.794523,0.75413,-0.234943,1.11272,0 +0.477209,2.7995,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.263557,-0.535235,-1.08162,-0.550521,0.961445,0.388683,-0.362178,-0.458336,0.643904,0.858651,0.75413,-0.441999,-0.524402,0 +0.477209,2.7995,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.34813,-0.550521,0.961445,0.388683,-0.701232,-0.458336,0.582859,0.92278,0.75413,-0.476509,-0.524402,0 +0.477209,3.31689,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.43697,-0.550521,0.961445,0.388683,-0.362178,-0.458336,0.582859,0.92278,0.823255,-0.441999,-0.524402,0 +0.477209,3.57558,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.4192,-0.550521,0.961445,0.388683,-0.0231245,-0.458336,0.582859,0.92278,0.823255,-0.476509,-0.524402,0 +0.477209,3.0582,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.11716,-0.550521,0.961445,0.388683,-0.701232,-0.458336,0.582859,0.858651,0.75413,-0.476509,-0.524402,0 +0.477209,2.7995,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.23323,-0.489996,-0.535235,-1.06385,-0.550521,0.961445,0.388683,-0.362178,-0.458336,0.582859,0.858651,0.75413,-0.476509,-0.524402,0 +0.477209,3.31689,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.23323,-0.376776,-0.535235,-1.02832,-0.165468,0.454006,0.388683,-0.701232,3.7906,0.582859,0.858651,0.75413,-0.40749,-0.524402,0 +0.477209,2.7995,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.23323,-0.376776,-0.535235,-0.975016,-0.165468,0.454006,0.388683,-0.362178,0.957976,0.582859,0.858651,0.75413,-0.441999,-0.524402,0 +0.477209,2.54081,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.175066,-0.263557,-0.535235,-0.939481,0.424947,-0.324067,0.388683,-0.0231245,0.957976,0.582859,0.794523,0.685005,-0.303962,1.11272,0 +0.477209,2.7995,-0.203162,-0.46381,-0.300473,-0.0574621,-0.268691,0.175066,-0.0371185,-0.535235,-1.11716,0.424947,-0.324067,0.388683,0.315929,0.957976,0.582859,0.730394,0.685005,-0.269452,1.11272,0 +0.477209,3.0582,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.175066,-0.376776,-0.535235,-1.06385,0.0398938,0.183372,0.388683,0.315929,0.957976,0.582859,0.794523,0.685005,-0.40749,1.11272,0 +0.477209,1.24735,-0.203162,-1.48212,0.375155,-0.0574621,-0.268691,0.116902,0.30254,-0.535235,-0.619665,0.553298,-0.459384,0.444411,-0.0231245,0.957976,0.277632,0.473878,0.477631,0.0756414,1.11272,0 +0.477209,0.988654,-0.203162,-0.803245,0.712969,-0.0574621,-0.268691,0.116902,0.30254,-0.535235,-0.388688,0.553298,-0.459384,0.444411,0.315929,0.957976,0.277632,0.409749,0.477631,0.14466,1.11272,0 +0.477209,0.729961,-0.203162,-0.46381,0.712969,-0.0574621,-0.268691,0.116902,0.30254,-0.535235,-0.44199,0.553298,-0.459384,0.444411,0.315929,-0.458336,0.277632,0.34562,0.408506,0.110151,1.11272,0 +0.477209,0.729961,-0.160304,-0.803245,1.05078,-0.0574621,-0.268691,0.175066,0.415759,-0.535235,-0.459758,0.81,-0.797677,0.444411,0.654983,-0.458336,0.277632,0.281491,0.408506,0.248188,1.11272,0 +0.477209,0.212576,-0.160304,-0.124374,1.3886,-0.0574621,-0.268691,0.175066,0.642198,-0.535235,-0.459758,0.81,-0.797677,0.444411,1.33309,-0.458336,0.277632,0.153234,0.270256,0.455245,1.11272,0 +0.477209,-0.0461169,-0.160304,0.554496,1.72641,-0.0574621,-0.268691,0.175066,1.09507,-0.535235,-0.637433,0.81,-0.797677,0.444411,0.994036,-0.458336,0.0334514,0.0249759,0.132007,0.248188,1.11272,0 +0.477209,-0.0461169,-0.160304,0.893932,2.06422,-0.0574621,-0.268691,0.23323,1.09507,-0.535235,-0.6552,1.0667,-1.13597,0.444411,0.654983,-0.458336,0.0334514,-0.23154,0.0628821,0.765829,1.11272,0 +0.477209,-0.30481,-0.160304,-0.124374,2.40204,-0.0574621,-0.268691,0.23323,1.32151,-0.535235,-0.530828,1.0667,-1.13597,0.444411,-0.0231245,-0.458336,0.0334514,-0.359797,-0.00624269,0.938376,1.11272,0 +0.477209,-0.30481,-0.160304,-0.124374,2.06422,-0.0574621,-0.268691,0.23323,1.20829,-0.535235,-0.424223,0.81,-0.797677,0.444411,1.67214,0.957976,-0.149684,-0.167411,-0.00624269,0.455245,1.11272,0 +0.477209,-0.0461169,-0.138875,0.215061,2.40204,-0.0574621,-0.268691,0.175066,1.20829,-0.535235,-0.388688,0.81,-0.797677,0.444411,0.654983,-0.458336,0.0334514,-0.167411,-0.00624269,0.386226,1.11272,0 +0.477209,-0.563502,-0.138875,0.554496,2.73985,-0.0574621,-0.268691,0.291394,1.43473,-0.535235,-1.02832,0.86134,-1.13597,-0.00141549,-0.0231245,-0.458336,-0.149684,-0.680442,-0.213617,1.00739,1.11272,0 +0.477209,-0.822195,-0.160304,1.5728,4.09111,-0.0574621,3.12144,0.756704,1.43473,-0.535235,-1.45474,0.91268,-1.30512,-0.168601,1.33309,2.37429,-1.2485,-2.28366,-1.45786,2.11169,-0.524402,2 +0.477209,-0.822195,-0.160304,1.5728,3.07767,-0.0574621,3.12144,0.582213,1.43473,-0.535235,-1.33037,0.91268,-1.30512,-0.168601,0.654983,0.957976,-0.149684,-1.77063,-1.11224,3.52658,1.11272,2 +0.477209,-0.822195,-0.203162,1.5728,3.7533,-0.0574621,-0.268691,0.582213,1.32151,-0.535235,-1.33037,0.91268,-1.30512,-0.168601,0.654983,0.957976,-0.149684,-1.64238,-1.04311,3.2505,1.11272,2 +0.477209,-0.822195,-0.160304,1.91224,3.41548,-0.0574621,3.12144,0.640377,1.32151,-0.535235,-1.24153,0.91268,-1.30512,-0.168601,1.33309,0.957976,-1.2485,-2.02715,-1.31961,1.97366,-0.524402,2 +0.578827,-0.30481,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.716435,-0.426521,0.588526,-0.49918,0.623152,-0.0571439,-0.362178,-0.458336,0.765994,0.794523,0.823255,-0.511018,1.11272,0 +0.578827,0.212576,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,-0.0155696,-0.242478,0.454006,0.221498,-0.362178,-0.458336,0.94913,1.11517,1.09975,-0.545527,1.11272,0 +0.578827,0.212576,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,0.0555005,-0.370829,0.623152,0.221498,-0.701232,-0.458336,0.94913,1.11517,1.09975,-0.545527,1.11272,0 +0.782061,0.729961,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,-0.0155696,-0.807222,1.29974,0.388683,-1.37934,-0.458336,0.94913,1.1793,1.16888,-0.545527,-0.524402,0 +0.782061,0.471268,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.942873,-0.535235,-0.0688721,-0.858563,1.26591,0.221498,-1.37934,-0.458336,0.94913,1.1793,1.09975,-0.580037,-0.524402,0 +0.782061,0.212576,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,-0.0511046,-0.191138,0.487835,0.388683,-0.362178,0.957976,0.94913,1.1793,1.16888,-0.511018,1.11272,0 +0.782061,0.212576,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.480878,0.0555005,-0.268148,0.589323,0.388683,-0.362178,0.957976,0.94913,1.24342,1.238,-0.511018,1.11272,0 +0.782061,0.471268,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.372164,0.250943,-0.191138,0.487835,0.388683,-0.362178,0.957976,1.13227,1.24342,1.30713,-0.476509,1.11272,0 +0.782061,0.471268,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.480878,0.162106,-0.191138,0.487835,0.388683,-0.362178,0.957976,1.37645,1.24342,1.30713,-0.338471,1.11272,0 +0.782061,0.212576,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.582213,-0.716435,-0.480878,0.0555005,0.116904,0.081884,0.388683,-0.362178,-0.458336,1.37645,1.11517,1.238,-0.165924,1.11272,0 +0.782061,0.471268,-0.203162,1.23337,-0.300473,-0.0574621,-0.268691,0.582213,-0.716435,-0.480878,-0.0155696,-0.0371167,0.28486,0.388683,-0.0231245,-0.458336,1.37645,1.11517,1.238,-0.200434,1.11272,0 +0.578827,0.988654,-0.160304,2.25167,1.72641,-0.0574621,-0.268691,0.465885,0.0761009,-0.535235,-0.815108,0.0142237,0.0480547,0.110041,0.315929,-0.458336,1.43749,0.34562,0.61588,1.83562,1.11272,0 +0.578827,0.729961,-0.160304,1.91224,1.3886,-0.0574621,-0.268691,0.407721,0.30254,-0.535235,-1.06385,0.655978,-0.594701,0.444411,-0.0231245,0.957976,1.43749,0.281491,0.477631,2.04268,1.11272,0 +0.578827,1.50604,-0.181733,1.5728,1.05078,-0.0574621,-0.268691,0.291394,0.18932,-0.317807,0.357548,0.655978,-0.594701,0.444411,0.315929,-0.458336,1.25436,0.34562,0.477631,1.31798,1.11272,0 +0.578827,1.50604,-0.181733,1.5728,1.3886,-0.0574621,-0.268691,0.349558,0.30254,-0.209093,-0.211012,0.655978,-0.594701,0.444411,-0.0231245,-0.458336,1.25436,0.34562,0.546756,1.45602,1.11272,0 +0.578827,2.02342,-0.160304,1.91224,2.06422,-0.0574621,-0.268691,0.23323,0.642198,-0.535235,-1.45474,0.655978,-0.594701,0.444411,0.315929,-0.458336,0.582859,0.0891048,0.201132,0.800338,1.11272,0 +0.578827,2.02342,-0.181733,1.23337,1.72641,-0.0574621,-0.268691,0.175066,0.18932,-0.535235,0.322013,0.732989,-0.594701,0.611597,0.654983,-0.458336,0.582859,0.217363,0.339381,0.627791,1.11272,0 +0.578827,1.50604,-0.181733,1.23337,1.3886,-0.0574621,-0.268691,0.175066,0.0761009,-0.535235,1.12155,0.81,-0.594701,0.778782,1.33309,-0.458336,1.49854,0.473878,0.61588,1.80111,1.11272,0 +0.578827,1.76473,-0.181733,1.23337,0.712969,-0.0574621,-0.268691,0.175066,0.0761009,-0.535235,1.21039,0.81,-0.594701,0.778782,2.0112,-0.458336,1.49854,0.602136,0.75413,1.31798,1.11272,0 +0.578827,2.54081,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,0.175066,-0.489996,-0.535235,0.926109,0.0142237,0.454006,0.778782,-0.0231245,-0.458336,1.49854,1.1793,1.37625,0.213679,1.11272,0 +-0.335729,0.729961,-0.203162,3.26998,3.41548,-0.0574621,-0.268691,0.582213,0.755417,-0.535235,-1.45474,1.40041,-1.33894,0.83451,-0.0231245,2.37429,-1.00432,-1.2576,-1.11224,2.59483,-0.524402,0 +-0.335729,-0.30481,-0.203162,3.26998,4.09111,-0.0574621,-0.268691,0.698541,0.868636,-0.535235,-1.45474,1.45175,-1.47426,0.723053,1.33309,2.37429,-1.00432,-2.15541,-1.59611,2.07718,-0.524402,2 +-0.335729,-0.30481,-0.203162,2.59111,3.7533,-0.0574621,-0.268691,0.814868,0.755417,-0.535235,-1.45474,1.45175,-1.47426,0.723053,0.315929,-0.458336,-1.00432,-2.34779,-1.59611,2.59483,-0.524402,2 +-0.335729,-0.563502,-0.203162,2.59111,3.7533,-0.0574621,-0.268691,0.873032,0.755417,-0.535235,-1.45474,1.45175,-1.47426,0.723053,0.994036,-0.458336,-4.72808,-2.54018,-1.80349,8.63397,-0.524402,2 +-0.335729,-0.563502,-0.181733,2.59111,2.73985,-0.0574621,1.42637,0.873032,0.981856,-0.535235,-1.45474,2.32454,-1.47426,2.61782,1.67214,-0.458336,-4.72808,-2.92495,-1.73436,7.97829,-0.524402,2 +-0.335729,-0.30481,-0.160304,1.5728,2.40204,-0.0574621,3.12144,0.931196,1.09507,-0.535235,-1.45474,2.32454,-1.47426,2.61782,0.315929,-0.458336,-4.72808,-2.98908,-1.73436,8.11632,-2.16152,2 +-0.335729,-0.30481,-0.160304,1.23337,2.06422,-0.0574621,3.12144,0.98936,1.20829,-0.535235,-1.45474,2.32454,-1.47426,2.61782,1.33309,-0.458336,-4.72808,-3.18147,-1.80349,7.73672,-2.16152,2 +-0.335729,-0.30481,-0.160304,1.23337,2.06422,-0.0574621,3.12144,0.98936,1.32151,-0.535235,-1.45474,2.32454,-1.47426,2.61782,0.994036,-0.458336,-4.72808,-3.30973,-1.66524,7.6677,-2.16152,2 +-0.335729,-0.822195,-0.160304,0.893932,1.72641,-0.0574621,3.12144,1.10569,1.20829,-0.535235,-1.45474,2.32454,-1.47426,2.61782,0.994036,-0.458336,-4.72808,-3.82276,-2.07999,5.90773,-2.16152,2 +0.680444,-0.0461169,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.98936,-0.150338,-0.535235,-0.406455,0.0912342,0.0480547,0.277226,0.654983,-0.458336,0.277632,0.153234,0.270256,-0.0278867,-0.524402,0 +0.680444,0.212576,-0.181733,0.893932,1.05078,-0.0574621,-0.268691,0.98936,-0.263557,-0.535235,-0.779573,0.065564,0.081884,0.277226,0.315929,-0.458336,0.521813,0.34562,0.408506,-0.0969054,-0.524402,0 +0.680444,0.212576,-0.203162,0.554496,0.712969,-0.0574621,-0.268691,1.04752,-0.489996,-0.535235,-0.477525,0.065564,0.081884,0.277226,-0.0231245,-0.458336,0.460768,0.409749,0.477631,-0.200434,-0.524402,0 +0.680444,0.212576,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.98936,-0.376776,-0.535235,-0.44199,-0.0371167,0.081884,0.0543129,-0.0231245,-0.458336,0.460768,0.281491,0.408506,-0.0623961,1.11272,0 +0.680444,0.212576,-0.181733,1.23337,1.05078,-0.0574621,-0.268691,0.931196,-0.150338,-0.535235,-0.353152,-0.0114465,0.0480547,0.0543129,0.654983,-0.458336,0.582859,0.153234,0.339381,0.213679,1.11272,0 +0.680444,-0.0461169,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.931196,-0.150338,-0.535235,-0.51306,-0.0627869,-0.0196038,-0.168601,-0.0231245,-0.458336,0.338678,0.0891048,0.339381,0.00662268,1.11272,0 +0.680444,-0.30481,-0.181733,0.893932,0.712969,-0.0574621,-0.268691,0.98936,-0.150338,-0.535235,-0.406455,-0.0627869,-0.0196038,-0.168601,-0.701232,-0.458336,0.338678,0.0249759,0.270256,0.00662268,1.11272,0 +0.680444,-0.30481,-0.181733,0.893932,1.05078,-0.0574621,-0.268691,0.98936,-0.150338,-0.535235,-0.29985,-0.114127,0.0480547,-0.168601,0.315929,-0.458336,0.338678,-0.039153,0.201132,0.0756414,1.11272,0 +0.680444,-0.30481,-0.181733,1.23337,0.712969,-0.0574621,-0.268691,0.931196,0.0761009,-0.535235,-0.282082,-0.0114465,-0.0196038,-0.0571439,0.994036,-0.458336,0.277632,-0.039153,0.201132,0.110151,1.11272,0 +0.680444,-0.0461169,-0.181733,0.893932,1.05078,-0.0574621,-0.268691,0.931196,0.18932,-0.535235,-0.175477,2.11918,-0.62853,3.5652,1.67214,-0.458336,0.277632,-0.936957,0.270256,0.110151,-0.524402,0 +0.680444,-0.30481,-0.138875,0.554496,1.3886,-0.0574621,-0.268691,0.873032,0.30254,-0.535235,0.162106,2.11918,-0.62853,3.5652,1.67214,-0.458336,0.277632,-1.06522,0.270256,0.0411321,-0.524402,0 +0.680444,-0.30481,-0.160304,-0.124374,1.05078,-0.0574621,-0.268691,0.931196,-0.0371185,-0.480878,0.162106,2.11918,-0.62853,3.5652,0.994036,-0.458336,0.277632,-0.872829,0.339381,-0.0623961,-0.524402,0 +0.680444,-0.563502,-0.160304,0.554496,1.3886,-0.0574621,-0.268691,0.931196,0.18932,-0.480878,0.233176,2.37588,-0.966823,3.5652,0.315929,0.957976,0.277632,-1.06522,0.201132,0.282698,-0.524402,0 +0.680444,-0.563502,-0.138875,0.215061,1.3886,-0.0574621,-0.268691,0.873032,0.18932,-0.480878,-0.122175,2.37588,-0.966823,3.5652,0.315929,0.957976,0.277632,-1.06522,0.270256,0.282698,-0.524402,0 +0.680444,-0.822195,-0.138875,0.215061,0.712969,-0.0574621,-0.268691,0.931196,-0.150338,-0.372164,-0.0155696,0.604638,-0.966823,-0.280057,-0.362178,2.37429,0.155542,-0.23154,0.0628821,0.317207,1.11272,0 +0.680444,-0.822195,-0.117446,0.215061,0.712969,-0.0574621,-0.268691,0.931196,-0.150338,-0.372164,-0.0155696,0.604638,-0.966823,-0.280057,-0.701232,2.37429,0.155542,-0.103282,0.132007,0.110151,1.11272,0 +0.680444,-0.822195,-0.0317302,0.554496,0.0373407,-0.0574621,4.81651,0.873032,1.20829,-0.426521,-1.40144,-0.370829,-0.290238,-1.28317,-0.362178,-0.458336,-0.393865,-0.744571,-0.559241,-0.269452,1.11272,2 +0.680444,-0.822195,-0.138875,0.215061,0.375155,-0.0574621,1.42637,0.931196,0.415759,-0.26345,-0.744038,0.322266,-0.966823,-0.893069,-0.0231245,0.957976,0.155542,-0.488055,-0.351867,0.455245,1.11272,0 +0.680444,-0.822195,-0.117446,1.23337,0.712969,-0.0574621,1.42637,0.98936,-0.0371185,-0.535235,-0.317617,-0.268148,-0.0872623,-0.725884,-0.0231245,-0.458336,0.0944967,-0.423926,-0.351867,0.0756414,1.11272,0 +-0.0308771,-0.563502,-0.181733,0.215061,1.05078,-0.0574621,-0.268691,0.582213,1.43473,-0.535235,-1.18823,0.270926,-0.357896,-0.00141549,0.654983,-0.458336,-0.33282,-0.616313,-0.420991,0.0756414,-0.524402,0 +-0.0308771,-0.822195,-0.181733,1.5728,1.05078,-0.0574621,-0.268691,0.640377,1.43473,-0.535235,-1.24153,-0.114127,-0.357896,-0.837341,-0.0231245,-0.458336,-0.149684,-0.744571,-0.420991,0.0756414,1.11272,0 +-0.0308771,-0.822195,-0.160304,0.893932,0.712969,-0.0574621,-0.268691,0.756704,0.981856,-0.535235,-1.2593,-0.139797,-0.357896,-0.893069,-1.04029,-0.458336,-0.149684,-0.680442,-0.420991,0.00662268,1.11272,0 +-0.0308771,-0.822195,-0.117446,0.554496,0.712969,-0.0574621,-0.268691,0.756704,1.32151,-0.535235,-1.45474,-0.139797,-0.357896,-0.893069,-0.701232,-0.458336,-0.393865,-0.8087,-0.559241,-0.165924,1.11272,0 +-0.0308771,-0.822195,-0.138875,1.5728,0.712969,-0.0574621,-0.268691,0.814868,1.32151,-0.535235,-1.43697,-0.216808,-0.256409,-0.893069,-0.701232,-0.458336,-0.271775,-0.744571,-0.559241,-0.165924,1.11272,0 +-0.0308771,-0.822195,-0.117446,1.23337,0.375155,-0.0574621,-0.268691,0.814868,1.77439,-0.535235,-1.43697,-0.550521,-0.0196038,-1.22744,-0.362178,-0.458336,-0.271775,-0.680442,-0.420991,-0.338471,1.11272,0 +-0.0308771,-0.822195,-0.138875,1.5728,0.375155,-0.0574621,-0.268691,0.931196,1.20829,-0.535235,-1.43697,-0.807222,0.318689,-1.22744,-0.701232,-0.458336,-0.271775,-0.616313,-0.490116,-0.37298,1.11272,0 +-0.0308771,-0.822195,-0.138875,1.5728,0.375155,-0.0574621,-0.268691,0.931196,1.09507,-0.535235,-1.3659,-0.884233,0.318689,-1.39462,-0.701232,-0.458336,-0.271775,-0.680442,-0.559241,-0.37298,1.11272,0 +-0.0308771,-0.822195,-0.138875,1.5728,0.375155,-0.0574621,-0.268691,0.931196,0.981856,-0.535235,-1.3659,-0.884233,0.318689,-1.39462,-1.04029,-0.458336,-0.271775,-0.680442,-0.559241,-0.37298,1.11272,0 +-0.0308771,-0.822195,-0.117446,1.23337,0.712969,-0.0574621,-0.268691,0.873032,0.981856,-0.535235,-1.3659,-0.576191,0.115713,-1.06025,-0.701232,-0.458336,-0.271775,-0.744571,-0.628366,-0.269452,1.11272,0 +-0.0308771,-0.822195,-0.138875,0.893932,0.375155,-0.0574621,-0.268691,0.873032,0.868636,-0.535235,-1.04609,0.0912342,-0.18875,-0.112872,-0.0231245,-0.458336,-0.271775,-0.680442,-0.559241,-0.234943,-0.524402,0 +-0.0308771,-0.822195,-0.117446,0.554496,0.712969,-0.0574621,-0.268691,0.873032,0.868636,-0.535235,-1.17046,0.707319,-1.00065,-0.112872,-0.701232,-0.458336,-0.271775,-0.8087,-0.628366,0.213679,-0.524402,0 +-0.0308771,-0.822195,-0.138875,0.215061,0.712969,-0.0574621,-0.268691,0.873032,0.755417,-0.535235,-1.17046,0.758659,-1.06831,-0.112872,-0.362178,-0.458336,-0.271775,-1.00109,-0.697491,0.869357,-0.524402,0 +-0.0308771,-0.822195,-0.117446,0.215061,0.712969,-0.0574621,-0.268691,0.873032,0.981856,-0.535235,-1.09939,0.83567,-1.06831,0.0543129,-0.362178,-0.458336,-0.515956,-1.12934,-0.697491,0.869357,-0.524402,0 +-0.0308771,-0.822195,-0.181733,0.554496,0.375155,-0.0574621,4.81651,0.756704,0.981856,-0.535235,-0.566363,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-2.28627,-1.96302,-2.07999,1.14543,-0.524402,2 +-0.0308771,-0.822195,-0.181733,0.554496,0.375155,-0.0574621,3.12144,0.873032,0.642198,-0.535235,-0.708503,0.88701,-1.13597,0.0543129,-0.0231245,-0.458336,-0.577001,-1.7065,-1.52699,1.80111,-0.524402,2 +-0.0308771,-0.822195,-0.181733,0.215061,0.375155,-0.0574621,3.12144,0.814868,1.09507,-0.535235,-0.566363,0.88701,-1.13597,0.0543129,-0.0231245,-0.458336,-0.577001,-2.02715,-1.52699,1.7666,-0.524402,2 +-0.0308771,-0.822195,-0.181733,0.215061,0.375155,-0.0574621,4.81651,0.756704,1.66117,-0.535235,-0.0155696,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-2.28627,-2.34779,-2.14911,0.903866,-0.524402,2 +-0.0308771,-0.822195,-0.181733,0.554496,0.0373407,-0.0574621,3.12144,0.756704,1.54795,-0.535235,0.00219796,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-1.12641,-2.21954,-1.80349,1.17994,-0.524402,2 +-0.0308771,-0.822195,-0.181733,0.554496,0.0373407,-0.0574621,3.12144,0.756704,1.66117,-0.535235,-0.0866397,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-1.12641,-2.21954,-1.87261,1.17994,-0.524402,2 +-0.0308771,-0.822195,-0.181733,0.554496,-0.300473,-0.0574621,3.12144,0.756704,2.00083,-0.535235,0.233176,0.88701,-1.13597,0.0543129,0.994036,-0.458336,-2.71359,-2.34779,-2.14911,1.31798,-0.524402,2 +-0.0308771,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,4.81651,0.756704,2.11405,-0.535235,-1.45474,0.88701,-1.13597,0.0543129,0.654983,-0.458336,-2.71359,-2.60431,-2.49474,0.800338,-0.524402,2 +-0.0308771,-0.822195,-0.203162,1.91224,0.0373407,-0.0574621,3.12144,0.756704,1.88761,-0.535235,-1.45474,0.88701,-1.13597,0.0543129,0.315929,-0.458336,-0.760137,-2.41192,-2.28736,2.11169,-0.524402,2 +-0.0308771,-0.822195,-0.203162,2.59111,-0.300473,-0.0574621,3.12144,0.756704,1.88761,-0.535235,-1.45474,0.681649,-1.20363,-0.502971,-0.0231245,-0.458336,-0.760137,-2.47605,-2.28736,2.07718,-0.524402,2 +-0.0308771,-0.822195,-0.203162,1.91224,0.375155,-0.0574621,1.42637,0.756704,2.22727,-0.535235,-1.45474,0.270926,-1.20363,-1.39462,-0.701232,-0.458336,-0.760137,-2.47605,-1.87261,1.93915,1.11272,2 +-0.0308771,-0.822195,-0.203162,1.91224,0.375155,-0.0574621,3.12144,0.756704,1.88761,-0.535235,-1.45474,0.86134,-1.20363,-0.112872,0.315929,-0.458336,-0.760137,-2.54018,-2.42561,2.45679,-0.524402,2 +-0.0308771,-0.822195,-0.203162,1.91224,0.375155,-0.0574621,3.12144,0.814868,1.66117,-0.535235,-1.45474,0.88701,-1.23746,-0.112872,0.654983,-0.458336,-0.760137,-2.47605,-2.42561,2.62933,-0.524402,2 +-0.0308771,-0.563502,-0.203162,1.5728,0.712969,-0.0574621,3.12144,0.756704,1.66117,-0.535235,-1.45474,1.45175,-1.23746,1.11315,1.33309,-0.458336,-0.760137,-2.34779,-2.35649,2.62933,-0.524402,2 +-0.0308771,-0.563502,-0.203162,1.5728,0.375155,-0.0574621,4.81651,0.814868,1.43473,-0.535235,-1.45474,1.58011,-1.4066,1.11315,0.994036,-0.458336,-0.760137,-2.47605,-2.49474,3.07796,-0.524402,2 +-0.0308771,-0.822195,-0.203162,-0.124374,0.712969,-0.0574621,6.51157,0.931196,0.642198,-0.535235,-1.45474,0.86134,-1.06831,0.110041,0.315929,-0.458336,-3.69031,-2.66844,-3.18598,1.90464,-2.16152,2 +-0.0308771,-0.563502,-0.203162,1.5728,0.712969,-0.0574621,6.51157,0.931196,0.868636,-0.535235,-1.45474,1.60578,-1.4066,1.16888,-0.0231245,-0.458336,-0.760137,-2.60431,-2.84036,4.42382,-2.16152,2 +-0.0308771,-0.563502,-0.203162,1.23337,0.712969,-0.0574621,4.81651,0.873032,0.981856,-0.535235,-1.45474,1.60578,-1.4066,1.16888,0.315929,-0.458336,-0.760137,-2.21954,-2.07999,3.28501,-0.524402,2 +-0.0308771,-0.563502,-0.203162,1.91224,0.712969,-0.0574621,3.12144,0.814868,1.54795,-0.535235,-1.45474,1.58011,-1.4066,1.11315,0.315929,-0.458336,-0.760137,-2.47605,-1.94174,2.90541,-0.524402,2 +-0.0308771,-0.822195,-0.203162,1.91224,0.375155,-0.0574621,3.12144,0.814868,1.66117,-0.535235,-1.45474,0.707319,-1.23746,-0.502971,-0.0231245,-0.458336,-0.760137,-2.54018,-2.42561,2.62933,-0.524402,2 +0.477209,0.988654,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,1.10378,-0.52485,1.33357,1.05742,-1.04029,-0.458336,0.888085,1.43581,1.16888,-0.0623961,-0.524402,0 +0.477209,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.640377,-0.829654,-0.535235,1.97439,-0.627531,1.46888,1.05742,-0.362178,-0.458336,0.704949,1.6282,1.58363,0.282698,1.11272,0 +0.477209,2.02342,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.582213,-0.716435,-0.535235,-0.797341,-0.576191,1.40122,1.05742,-0.362178,-0.458336,0.888085,1.6282,1.58363,0.0756414,1.11272,0 +0.477209,1.76473,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.582213,-0.603215,-0.535235,-0.779573,-0.49918,1.13059,0.778782,-0.362178,-0.458336,0.704949,0.986909,0.823255,-0.303962,-0.524402,0 +0.477209,1.50604,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.582213,-0.603215,-0.535235,-0.15771,-0.755882,1.13059,0.221498,-0.701232,-0.458336,0.643904,0.666265,0.685005,-0.441999,-0.524402,0 +0.477209,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.698541,-0.716435,-0.535235,0.0555005,-0.704542,1.06293,0.221498,-1.04029,-0.458336,0.643904,0.666265,0.61588,-0.441999,-0.524402,0 +0.477209,0.471268,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.698541,-0.603215,-0.535235,-0.0333371,-0.704542,1.06293,0.221498,-0.701232,-0.458336,0.643904,0.538007,0.477631,-0.40749,-0.524402,0 +0.477209,0.729961,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.698541,-0.603215,-0.535235,-0.0866397,-0.704542,1.06293,0.221498,-0.362178,-0.458336,0.643904,0.602136,0.546756,-0.441999,-0.524402,0 +0.477209,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.716435,-0.535235,-0.0866397,-0.704542,1.06293,0.221498,-1.04029,-0.458336,0.643904,0.666265,0.546756,-0.441999,-0.524402,0 +0.477209,0.729961,-0.160304,-0.46381,-0.638287,-0.0574621,-0.268691,0.756704,-0.603215,-0.535235,-0.139942,-0.704542,1.06293,0.221498,-1.04029,-0.458336,0.643904,0.602136,0.61588,-0.441999,-0.524402,0 +0.172357,2.28212,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.489996,-0.535235,-1.3659,-0.678871,1.0291,0.221498,-0.362178,-0.458336,0.643904,0.602136,0.61588,-0.441999,-0.524402,0 +0.172357,2.02342,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.489996,-0.535235,-1.38367,-0.678871,1.0291,0.221498,-0.362178,-0.458336,0.643904,0.602136,0.546756,-0.441999,-0.524402,0 +0.172357,2.28212,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,0.698541,-0.376776,-0.535235,-1.3659,-0.807222,1.0291,-0.0571439,-1.04029,-0.458336,0.643904,0.538007,0.546756,-0.441999,-0.524402,0 +0.172357,2.02342,-0.160304,-0.124374,-0.638287,-0.0574621,-0.268691,0.756704,-0.489996,-0.535235,-1.3659,-0.807222,1.0291,-0.0571439,-1.04029,-0.458336,0.643904,0.538007,0.546756,-0.441999,-0.524402,0 +0.172357,1.50604,-0.160304,0.554496,-0.638287,-0.0574621,-0.268691,0.756704,-0.489996,-0.535235,-0.779573,-0.807222,1.0291,-0.0571439,-0.701232,-0.458336,0.643904,0.538007,0.546756,-0.441999,-0.524402,0 +0.172357,0.988654,-0.160304,0.554496,-0.638287,-0.0574621,-0.268691,0.756704,-0.376776,-0.535235,-0.530828,-0.781552,0.995274,-0.0571439,-1.37934,-0.458336,0.643904,0.473878,0.477631,-0.40749,-0.524402,0 +0.172357,0.988654,-0.160304,0.554496,-0.638287,-0.0574621,-0.268691,0.873032,-0.489996,-0.480878,0.00219796,-0.755882,0.859957,-0.224329,-1.04029,-0.458336,0.643904,0.473878,0.546756,-0.37298,-0.524402,0 +0.172357,0.729961,-0.160304,1.23337,-0.638287,-0.0574621,-0.268691,0.931196,-0.603215,-0.535235,0.233176,-0.781552,0.893786,-0.224329,-1.04029,-0.458336,0.582859,0.409749,0.477631,-0.441999,-0.524402,0 +0.172357,0.471268,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.931196,-0.603215,-0.535235,0.304246,-0.755882,0.859957,-0.224329,-1.04029,-0.458336,0.582859,0.409749,0.339381,-0.40749,-0.524402,0 +0.172357,-0.0461169,-0.203162,-0.803245,-0.638287,-0.0574621,-0.268691,0.98936,-0.716435,-0.535235,0.233176,-0.755882,0.859957,-0.224329,-0.701232,-0.458336,0.582859,0.409749,0.339381,-0.40749,-0.524402,0 +0.172357,-0.30481,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,0.98936,-0.829654,-0.535235,0.357548,-0.755882,0.859957,-0.224329,-0.362178,-0.458336,0.582859,0.409749,0.339381,-0.40749,-0.524402,0 +0.172357,-0.563502,-0.203162,-0.46381,-0.638287,-0.0574621,-0.268691,1.04752,-0.829654,-0.535235,0.375316,-0.832893,0.859957,-0.391514,-0.0231245,-0.458336,0.582859,0.409749,0.339381,-0.441999,-0.524402,0 +0.172357,1.24735,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,0.814868,-0.603215,-0.535235,-0.264315,-0.576191,0.893786,0.221498,-0.701232,-0.458336,0.643904,0.538007,0.477631,-0.441999,-0.524402,0 +0.172357,0.988654,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.640377,-0.603215,-0.535235,-0.122175,-0.52485,0.927615,0.388683,-0.362178,-0.458336,0.582859,0.730394,0.61588,-0.37298,-0.524402,0 +0.172357,0.988654,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.640377,-0.603215,-0.535235,-0.22878,-0.52485,0.927615,0.388683,-0.701232,-0.458336,0.643904,0.730394,0.61588,-0.37298,-0.524402,0 +0.172357,0.729961,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,0.640377,-0.376776,-0.535235,-0.459758,-0.704542,0.927615,-0.00141549,-0.362178,-0.458336,0.582859,0.602136,0.546756,-0.441999,-0.524402,0 +0.172357,0.729961,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,0.640377,-0.263557,-0.535235,-0.690735,-0.44784,0.589323,-0.00141549,-0.362178,-0.458336,0.216587,0.538007,0.477631,-0.37298,-0.524402,0 +0.172357,0.729961,-0.203162,-1.48212,-0.638287,-0.0574621,-0.268691,0.640377,-0.150338,-0.535235,-0.530828,-0.49918,0.589323,-0.112872,-0.701232,-0.458336,0.216587,0.409749,0.339381,-0.441999,-0.524402,0 +0.172357,1.24735,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.640377,-0.376776,-0.535235,-0.619665,-0.319489,0.656981,0.388683,-0.362178,-0.458336,0.216587,0.602136,0.546756,-0.303962,-0.524402,0 +-0.843816,-0.822195,-0.203162,0.893932,2.40204,-0.0574621,-0.268691,0.873032,0.30254,-0.535235,-1.18823,0.065564,-0.865335,-1.28317,0.994036,-0.458336,-0.515956,-1.12934,-0.904865,0.455245,1.11272,0 +-0.843816,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,0.873032,0.415759,-0.535235,-1.24153,0.065564,-0.865335,-1.28317,1.67214,-0.458336,-0.577001,-1.12934,-0.83574,0.351716,1.11272,0 +-0.843816,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,0.873032,0.0761009,-0.535235,-1.20599,0.065564,-0.865335,-1.28317,1.33309,-0.458336,-0.577001,-1.12934,-0.904865,0.386226,1.11272,0 +-0.843816,-0.822195,-0.203162,1.23337,2.40204,-0.0574621,-0.268691,0.873032,-0.0371185,-0.535235,-1.22376,-0.0114465,-0.865335,-1.45035,0.654983,-0.458336,-0.577001,-1.12934,-0.97399,0.213679,1.11272,0 +-0.843816,-0.822195,-0.181733,0.893932,1.72641,-0.0574621,-0.268691,0.873032,0.642198,-0.535235,-1.17046,-0.0114465,-0.865335,-1.45035,0.654983,-0.458336,-0.454911,-1.06522,-0.766615,0.213679,1.11272,0 +-0.843816,-0.822195,-0.181733,1.5728,2.40204,-0.0574621,-0.268691,0.931196,0.30254,-0.535235,-1.15269,-0.0114465,-0.865335,-1.45035,-0.0231245,-0.458336,-0.454911,-1.19347,-0.97399,0.455245,1.11272,0 +-0.843816,-0.822195,-0.181733,1.5728,2.06422,-0.0574621,-0.268691,0.873032,0.415759,-0.535235,-1.2593,0.0398938,-0.865335,-1.3389,0.315929,-0.458336,-0.454911,-1.19347,-0.904865,0.351716,1.11272,0 +-0.843816,-0.822195,-0.181733,1.23337,2.06422,-0.0574621,-0.268691,0.873032,0.415759,-0.535235,-1.22376,-0.0371167,-0.763847,-1.3389,1.33309,-0.458336,-0.454911,-1.12934,-0.904865,0.386226,1.11272,0 +-0.843816,-0.563502,-0.181733,1.23337,1.72641,-0.0574621,-0.268691,0.873032,0.30254,-0.535235,-0.601898,0.296596,-0.763847,-0.614428,0.315929,-0.458336,-0.454911,-1.06522,-0.904865,0.386226,-0.524402,0 +-0.843816,-0.822195,-0.181733,0.893932,1.72641,-0.0574621,-0.268691,0.814868,0.528978,-0.535235,-0.548595,0.065564,-0.66236,-0.948798,-0.0231245,-0.458336,-0.454911,-1.12934,-0.904865,0.248188,1.11272,0 +-0.843816,0.729961,-0.160304,1.5728,0.712969,-0.0574621,-0.268691,0.698541,0.868636,-0.535235,-0.0688721,0.501957,-0.66236,-0.00141549,1.33309,0.957976,-0.393865,-0.8087,-0.83574,0.282698,-0.524402,0 +-0.843816,0.471268,-0.160304,0.554496,1.3886,-0.0574621,-0.268691,0.756704,0.642198,-0.535235,-0.264315,0.501957,-0.66236,-0.00141549,0.654983,0.957976,-0.454911,-0.872829,-0.97399,0.248188,-0.524402,0 +-0.843816,0.471268,-0.160304,0.554496,2.40204,-0.0574621,-0.268691,0.756704,-0.0371185,-0.535235,-0.122175,0.655978,-0.865335,-0.00141549,0.654983,0.957976,-1.67582,-0.936957,-1.25049,0.524263,-0.524402,0 +-0.843816,0.212576,-0.181733,0.554496,2.40204,-0.0574621,-0.268691,0.814868,-0.150338,-0.535235,-0.22878,0.655978,-0.865335,-0.00141549,0.315929,0.957976,-1.67582,-1.06522,-1.31961,0.386226,-0.524402,0 +-0.843816,-0.30481,-0.160304,1.5728,2.40204,-0.0574621,-0.268691,0.931196,-0.150338,-0.535235,-1.3126,0.758659,-1.00065,-0.00141549,1.33309,0.957976,-1.43163,-1.32173,-1.45786,-0.131415,-0.524402,0 +-0.843816,-0.563502,-0.181733,1.23337,2.73985,-0.0574621,-0.268691,0.931196,-0.263557,-0.535235,-0.72627,0.758659,-1.00065,-0.00141549,0.315929,2.37429,-1.30954,-1.32173,-1.45786,-0.200434,-0.524402,0 +-0.843816,-0.822195,-0.181733,1.23337,3.07767,-0.0574621,-0.268691,1.04752,-0.263557,-0.535235,-0.477525,0.142575,-1.00065,-1.3389,0.315929,0.957976,-1.30954,-1.51412,-1.59611,-0.338471,1.11272,0 +-0.843816,-0.822195,-0.181733,1.23337,2.40204,-0.0574621,1.42637,1.04752,-0.376776,-0.535235,-0.530828,0.142575,-1.00065,-1.3389,-0.0231245,0.957976,-1.30954,-1.51412,-1.59611,-0.303962,-0.524402,0 +-0.843816,-0.822195,-0.181733,1.5728,2.06422,-0.0574621,1.42637,0.98936,-0.263557,-0.535235,-0.566363,0.296596,-1.00065,-1.00453,0.315929,2.37429,-1.30954,-1.57825,-1.59611,-0.303962,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.5728,1.3886,-0.0574621,1.42637,1.04752,-0.376776,-0.535235,-0.459758,0.296596,-1.00065,-1.00453,0.654983,2.37429,-1.30954,-1.57825,-1.59611,-0.338471,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,1.42637,1.04752,-0.376776,-0.535235,-0.424223,0.296596,-1.00065,-1.00453,0.994036,2.37429,-1.2485,-1.51412,-1.52699,-0.338471,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.5728,1.3886,-0.0574621,1.42637,1.04752,-0.263557,-0.535235,-0.15771,0.296596,-1.00065,-1.00453,0.315929,0.957976,-1.30954,-1.51412,-1.52699,-0.338471,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.5728,1.72641,-0.0574621,1.42637,1.04752,-0.0371185,-0.535235,-0.29985,0.296596,-1.00065,-1.00453,0.315929,0.957976,-1.30954,-1.51412,-1.52699,-0.37298,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.91224,1.05078,-0.0574621,1.42637,1.04752,-0.150338,-0.535235,-0.335385,-0.0114465,-0.594701,-1.00453,-0.362178,-0.458336,-1.30954,-1.51412,-1.66524,-0.37298,-0.524402,0 +-0.843816,-0.822195,-0.203162,0.554496,1.3886,-0.0574621,1.42637,1.04752,-0.0371185,-0.535235,-0.921713,0.168245,-0.527043,-0.502971,-0.0231245,-0.458336,-1.67582,-1.51412,-1.73436,-0.37298,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,1.42637,0.98936,-0.0371185,-0.535235,-0.992783,0.168245,-0.527043,-0.502971,-0.0231245,-0.458336,-1.43163,-1.51412,-1.66524,-0.40749,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.23337,1.72641,-0.0574621,1.42637,0.98936,0.0761009,-0.535235,-0.975016,0.168245,-0.527043,-0.502971,-0.0231245,-0.458336,-1.85895,-1.51412,-1.73436,-0.269452,-0.524402,0 +-0.843816,-0.822195,-0.203162,0.893932,2.06422,-0.0574621,-0.268691,0.98936,0.0761009,-0.535235,-1.02832,0.501957,-0.966823,-0.502971,0.654983,-0.458336,-1.61477,-1.51412,-1.66524,-0.37298,-0.524402,0 +-0.843816,-0.822195,-0.203162,0.893932,3.07767,-0.0574621,-0.268691,0.98936,-0.0371185,-0.535235,-1.11716,0.501957,-0.966823,-0.502971,0.315929,-0.458336,-1.61477,-1.51412,-1.73436,-0.40749,-0.524402,0 +-0.843816,-0.822195,-0.203162,1.23337,3.07767,-0.0574621,-0.268691,1.04752,-0.0371185,-0.535235,-1.15269,0.501957,-0.966823,-0.502971,0.315929,-0.458336,-1.61477,-1.51412,-1.73436,-0.40749,-0.524402,0 +-0.437346,-0.822195,-0.160304,0.215061,3.7533,-0.0574621,-0.268691,0.640377,3.35946,-0.535235,-1.45474,2.24753,-0.730018,3.67666,2.0112,0.957976,-1.61477,-2.98908,-0.83574,0.489754,-2.16152,0 +-0.437346,-0.822195,-0.160304,0.215061,3.7533,-0.0574621,-0.268691,0.640377,2.90658,-0.535235,-1.45474,2.24753,-0.730018,3.67666,2.0112,0.957976,-1.49268,-2.86082,-0.97399,0.317207,-2.16152,0 +-0.437346,-0.822195,-0.203162,0.554496,2.73985,-0.0574621,1.42637,1.04752,1.43473,-0.535235,-1.45474,0.784329,-1.47426,-0.725884,1.67214,2.37429,-1.98104,-2.7967,-1.73436,-0.200434,-0.524402,2 +-0.437346,-0.822195,-0.181733,0.554496,2.40204,-0.0574621,1.42637,1.04752,1.66117,-0.535235,-1.45474,0.784329,-1.47426,-0.725884,0.994036,2.37429,-1.98104,-2.98908,-1.80349,-0.200434,-0.524402,2 +-0.437346,-0.822195,-0.181733,0.554496,2.06422,-0.0574621,3.12144,1.04752,1.66117,-0.535235,-1.45474,0.784329,-1.47426,-0.725884,0.994036,2.37429,-1.98104,-3.11734,-1.80349,-0.200434,-0.524402,2 +-0.437346,-0.822195,-0.181733,0.215061,2.06422,-0.0574621,3.12144,1.04752,1.77439,-0.535235,-1.45474,0.784329,-1.47426,-0.725884,0.654983,2.37429,-1.98104,-3.2456,-1.87261,-0.234943,-0.524402,2 +-0.437346,-0.822195,-0.181733,0.893932,1.72641,-0.0574621,3.12144,1.04752,2.00083,-0.535235,-1.45474,2.81227,-1.47426,3.67666,2.0112,0.957976,-1.98104,-3.30973,-1.80349,-0.165924,-2.16152,2 +-0.437346,-0.822195,-0.181733,0.554496,1.3886,-0.0574621,4.81651,1.10569,1.77439,-0.535235,-1.45474,0.604638,-1.47426,-1.11598,1.33309,-0.458336,-1.98104,-3.18147,-2.01086,-0.269452,-0.524402,2 +-0.437346,-0.822195,-0.181733,0.554496,1.05078,-0.0574621,4.81651,1.10569,1.66117,-0.535235,-1.45474,0.604638,-1.47426,-1.11598,0.654983,-0.458336,-1.98104,-3.18147,-1.94174,-0.269452,-0.524402,2 +-0.437346,-0.822195,-0.181733,0.554496,1.3886,-0.0574621,3.12144,1.10569,2.11405,-0.535235,-1.45474,0.655978,-1.47426,-1.00453,1.33309,-0.458336,-1.98104,-3.37386,-2.07999,-0.303962,-0.524402,2 +-0.437346,-0.822195,-0.181733,0.893932,1.3886,-0.0574621,3.12144,1.16385,2.11405,-0.535235,-1.45474,0.245255,-0.932994,-1.00453,0.994036,-0.458336,-1.98104,-3.50211,-2.14911,-0.338471,-0.524402,2 +-0.437346,-0.822195,-0.181733,0.554496,1.05078,-0.0574621,3.12144,1.16385,2.22727,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.994036,-0.458336,-1.98104,-3.50211,-2.14911,-0.165924,-2.16152,2 +-0.538964,-0.822195,-0.181733,1.23337,1.05078,-0.0574621,3.12144,1.10569,1.77439,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.654983,0.957976,-2.10313,-3.2456,-1.94174,0.0411321,-2.16152,2 +-0.538964,-0.822195,-0.160304,0.893932,1.05078,-0.0574621,3.12144,1.04752,1.43473,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.654983,-0.458336,-2.10313,-2.73257,-1.66524,0.317207,-0.524402,2 +-0.538964,-0.822195,-0.160304,0.893932,1.05078,-0.0574621,3.12144,1.10569,1.54795,-0.535235,-1.45474,1.50309,-1.03448,1.55898,-0.0231245,-0.458336,-1.98104,-2.92495,-1.80349,0.0756414,-0.524402,2 +-0.538964,-0.822195,-0.160304,0.893932,1.3886,-0.0574621,3.12144,1.04752,1.32151,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.654983,-0.458336,-2.04209,-2.60431,-1.59611,0.317207,-0.524402,2 +-0.538964,-0.822195,-0.138875,0.893932,1.3886,-0.0574621,3.12144,1.04752,1.32151,-0.535235,-1.45474,1.50309,-1.03448,1.55898,0.315929,-0.458336,-1.43163,-2.41192,-1.52699,0.213679,-0.524402,2 +-0.538964,-0.822195,-0.117446,1.23337,2.06422,-0.0574621,-0.268691,0.98936,0.755417,-0.535235,-1.45474,0.758659,-0.763847,0.388683,-0.0231245,2.37429,-0.943273,-1.44999,-1.04311,0.0411321,-0.524402,0 +-0.538964,-0.822195,-0.0531591,0.893932,1.72641,-0.0574621,-0.268691,0.98936,0.981856,-0.535235,-1.45474,0.347936,-0.222579,0.388683,0.315929,0.957976,-0.515956,-1.06522,-0.904865,-0.200434,-0.524402,0 +-0.538964,-0.822195,-0.0531591,0.893932,1.72641,-0.0574621,-0.268691,1.04752,0.755417,-0.535235,-1.2593,0.347936,-0.222579,0.388683,-0.362178,0.957976,-0.515956,-1.00109,-0.766615,-0.200434,-0.524402,0 +-0.538964,-0.822195,-0.096017,1.23337,2.40204,-0.0574621,-0.268691,0.931196,1.20829,-0.535235,-1.2593,0.93835,-1.00065,0.388683,0.654983,-0.458336,-0.515956,-1.32173,-0.766615,-0.0278867,-0.524402,0 +-0.538964,-0.822195,-0.0745881,1.5728,2.40204,-0.0574621,-0.268691,0.931196,1.32151,-0.535235,-1.24153,0.93835,-1.00065,0.388683,-0.0231245,0.957976,-0.515956,-1.2576,-0.697491,-0.0623961,-0.524402,0 +-0.538964,-0.822195,-0.0745881,1.5728,2.73985,-0.0574621,-0.268691,0.931196,1.54795,-0.535235,-1.22376,0.655978,-1.00065,-0.224329,0.654983,0.957976,-0.515956,-1.51412,-0.697491,0.0756414,-0.524402,0 +-0.538964,-0.822195,-0.0531591,1.23337,2.40204,-0.0574621,-0.268691,0.931196,1.88761,-0.535235,-1.18823,0.655978,-1.00065,-0.224329,0.315929,2.37429,-0.638046,-1.64238,-0.697491,0.17917,-0.524402,0 +-0.538964,-0.822195,-0.0317302,0.893932,2.73985,-0.0574621,-0.268691,0.931196,1.66117,-0.535235,-1.20599,0.655978,-1.00065,-0.224329,-0.362178,-0.458336,-0.638046,-1.32173,-0.628366,-0.0969054,-0.524402,0 +-0.538964,-0.822195,-0.203162,1.23337,2.73985,-0.0574621,-0.268691,0.931196,3.24624,-0.535235,-1.45474,0.501957,-0.932994,-0.447242,0.315929,-0.458336,-4.17867,-3.95102,-1.38874,3.76814,-0.524402,2 +-0.843816,0.471268,0.118272,0.893932,-0.638287,-0.0574621,-0.268691,1.10569,3.13302,-0.26345,-1.40144,-1.21795,0.995274,-1.00453,-1.37934,-0.458336,-0.271775,-0.552184,-0.282742,-0.614546,-0.524402,0 +-0.538964,-0.822195,-0.160304,-0.803245,-0.638287,-0.0574621,-0.268691,1.33834,0.642198,0.334477,-0.72627,-1.29496,0.859957,-1.39462,-0.701232,-0.458336,-0.454911,-0.488055,-0.490116,-0.614546,-0.524402,0 +-0.640581,-0.0461169,0.16113,0.215061,-0.638287,-0.0574621,-0.268691,1.10569,3.24624,-0.26345,-1.40144,-1.21795,0.995274,-1.00453,-1.37934,-0.458336,-0.271775,-0.552184,-0.282742,-0.649055,-0.524402,0 +-0.640581,-0.0461169,-0.138875,0.893932,-0.638287,-0.0574621,-0.268691,1.04752,-0.150338,1.85647,-0.921713,-1.14093,0.893786,-1.00453,-0.701232,-0.458336,-0.699092,-0.552184,-0.697491,-0.614546,-2.16152,0 +-0.640581,-0.0461169,-0.138875,0.893932,-0.638287,-0.0574621,-0.268691,1.04752,-0.150338,1.96519,-0.921713,-1.14093,0.893786,-1.00453,-0.701232,-0.458336,-0.699092,-0.552184,-0.697491,-0.614546,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.04752,-0.716435,2.4544,-0.832876,-1.47465,0.893786,-1.72899,-1.04029,-0.458336,-0.699092,-0.552184,-0.766615,-0.649055,-0.524402,0 +-0.640581,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,0.873032,-0.716435,2.61747,-0.72627,-1.29496,0.893786,-1.3389,-1.04029,-0.458336,-0.699092,-0.616313,-0.83574,-0.649055,-2.16152,0 +-0.640581,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,0.931196,-0.716435,2.67183,-0.744038,-1.29496,0.893786,-1.3389,-0.701232,-0.458336,-0.699092,-0.616313,-0.766615,-0.649055,-2.16152,0 +-0.640581,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,0.873032,-0.716435,2.94362,-0.72627,-1.29496,0.893786,-1.3389,-1.04029,-0.458336,-0.821182,-0.616313,-0.83574,-0.614546,-2.16152,0 +-0.640581,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,0.756704,-0.716435,2.72619,-0.72627,-1.29496,0.893786,-1.3389,-0.701232,-0.458336,-0.943273,-0.680442,-0.904865,-0.614546,-2.16152,0 +-0.640581,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,0.756704,-0.829654,2.78054,-0.708503,-1.29496,0.893786,-1.3389,-0.701232,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-2.16152,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,0.873032,-0.942873,3.43283,-0.744038,-1.50032,0.859957,-1.84045,-1.04029,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,0.931196,-0.942873,3.32411,-0.744038,-1.50032,0.859957,-1.84045,-1.04029,-0.458336,-0.882227,-0.744571,-0.97399,-0.649055,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.04752,-1.05609,3.10669,-0.690735,-1.50032,0.859957,-1.84045,-1.04029,-0.458336,-0.882227,-0.680442,-0.904865,-0.649055,-0.524402,0 +-0.640581,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.33834,-1.05609,2.88926,-0.72627,-1.3463,0.859957,-1.50608,-0.701232,-0.458336,-0.882227,-0.616313,-0.83574,-0.614546,-0.524402,0 +-0.640581,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,1.39651,-0.489996,2.29133,-0.779573,-1.3463,0.859957,-1.50608,-0.701232,-0.458336,-0.515956,-0.616313,-0.697491,-0.614546,-0.524402,0 +-0.640581,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.10569,-0.603215,2.61747,-0.72627,-1.32063,0.893786,-1.39462,-1.04029,-0.458336,-0.882227,-0.616313,-0.766615,-0.614546,-2.16152,0 +-0.335729,1.50604,-0.138875,1.23337,-0.638287,-0.0574621,-0.268691,1.04752,0.415759,-0.535235,-1.22376,-0.653201,0.623152,-0.391514,-0.0231245,-0.458336,-0.0886391,0.0249759,-0.00624269,-0.545527,-0.524402,0 +-0.335729,1.50604,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.16385,-0.263557,-0.535235,-1.27706,-0.653201,0.623152,-0.391514,0.315929,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,-0.524402,0 +-0.335729,1.50604,-0.181733,-0.803245,-0.638287,-0.0574621,-0.268691,1.10569,-0.150338,-0.535235,-1.27706,-0.653201,0.623152,-0.391514,0.654983,-0.458336,-0.0275938,0.0891048,-0.00624269,-0.580037,-0.524402,0 +-0.335729,1.24735,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-0.489996,-0.535235,-1.24153,-0.653201,0.623152,-0.391514,-0.0231245,-0.458336,-0.0275938,0.153234,0.0628821,-0.545527,-0.524402,0 +-0.335729,0.988654,-0.181733,-1.48212,-0.638287,-0.0574621,-0.268691,1.16385,-0.489996,-0.535235,-0.957248,-0.627531,0.623152,-0.335786,-0.0231245,-0.458336,-0.0275938,0.217363,0.0628821,-0.511018,-0.524402,0 +-0.335729,0.988654,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.28018,-0.716435,-0.26345,-0.708503,-0.627531,0.623152,-0.335786,-0.0231245,-0.458336,0.0944967,0.281491,0.132007,-0.545527,-0.524402,0 +-0.335729,0.988654,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.33834,-0.716435,-0.209093,-0.672968,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.34562,0.201132,-0.545527,-0.524402,0 +-0.335729,0.988654,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.39651,-0.716435,-0.26345,-0.779573,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.281491,0.132007,-0.545527,-0.524402,0 +-0.335729,1.24735,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.33834,-0.716435,-0.209093,-0.690735,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.34562,0.201132,-0.545527,-0.524402,0 +-0.335729,0.988654,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.39651,-0.716435,0.00833509,-0.744038,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.34562,0.201132,-0.545527,-0.524402,0 +-0.335729,0.471268,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.45467,-0.489996,-0.046022,-0.601898,-1.01258,1.13059,-0.335786,-1.04029,-0.458336,0.0944967,0.281491,0.201132,-0.545527,-0.524402,0 +-0.335729,0.471268,-0.181733,-1.14268,-0.638287,-0.0574621,-0.268691,1.45467,-0.489996,-0.100379,-0.672968,-1.01258,1.13059,-0.335786,-0.701232,-0.458336,0.0944967,0.281491,0.132007,-0.545527,-0.524402,0 +-0.335729,0.471268,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.51283,-0.829654,-0.046022,-0.566363,-0.986914,1.09676,-0.335786,-0.701232,-0.458336,0.0944967,0.34562,0.201132,-0.545527,-0.524402,0 +-0.335729,0.212576,-0.203162,-1.14268,-0.638287,-0.0574621,-0.268691,1.62916,-0.829654,0.00833509,-0.495293,-0.986914,1.09676,-0.335786,-0.362178,-0.458336,0.0944967,0.281491,0.132007,-0.545527,-0.524402,0 +-0.335729,-0.0461169,-0.160304,-1.14268,-0.638287,-0.0574621,-0.268691,1.571,-0.0371185,-0.100379,-0.566363,-0.986914,1.09676,-0.335786,-0.362178,-0.458336,0.0944967,0.153234,0.132007,-0.545527,-0.524402,0 +-0.335729,-0.822195,-0.0317302,0.215061,-0.638287,-0.0574621,-0.268691,1.51283,1.77439,-0.535235,-1.06385,-1.11526,1.0291,-0.725884,-0.701232,-0.458336,-0.33282,-0.488055,-0.351867,-0.614546,-2.16152,0 +-0.335729,-0.822195,-0.0103012,0.554496,-0.638287,-0.0574621,-0.268691,1.45467,1.43473,-0.26345,-1.18823,-1.11526,1.0291,-0.725884,-1.04029,-0.458336,-0.454911,-0.488055,-0.490116,-0.614546,-2.16152,0 +-0.335729,-0.822195,-0.0103012,1.23337,-0.638287,-0.0574621,-0.268691,1.51283,0.868636,0.117049,-1.20599,-1.11526,1.0291,-0.725884,-0.701232,-0.458336,-0.577001,-0.488055,-0.559241,-0.614546,-2.16152,0 +-0.538964,-0.563502,-0.0745881,0.554496,-0.638287,-0.0574621,-0.268691,1.68733,0.415759,0.823691,-1.11716,-1.24362,1.0291,-1.00453,-0.701232,-0.458336,-0.577001,-0.488055,-0.559241,-0.614546,-2.16152,0 +-0.538964,-0.563502,-0.138875,0.554496,-0.638287,-0.0574621,-0.268691,1.80365,-0.150338,1.36726,-1.02832,-1.11526,1.0291,-0.725884,-0.701232,-0.458336,-0.577001,-0.488055,-0.559241,-0.614546,-2.16152,0 +-0.0308771,-0.822195,-0.138875,0.554496,-0.638287,-0.0574621,-0.268691,1.571,-0.0371185,0.986762,-0.761806,-1.01258,0.859957,-0.781613,0.994036,-0.458336,-0.0886391,-0.039153,-0.0753675,-0.614546,-0.524402,1 +-0.0308771,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,1.80365,-1.16931,3.43283,-0.832876,-1.24362,1.29974,-0.558699,-0.701232,-0.458336,-0.0886391,0.0891048,-0.00624269,-0.649055,-2.16152,0 +-0.0308771,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,1.86182,-0.942873,3.26976,-0.903946,-1.55166,1.26591,-1.28317,-1.04029,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,-0.524402,0 +-0.0308771,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.80365,-0.603215,2.67183,-0.992783,-1.47465,1.26591,-1.11598,-1.04029,-0.458336,-0.0886391,-0.039153,-0.144492,-0.649055,-2.16152,0 +-0.0308771,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.80365,-0.603215,1.85647,-0.815108,-1.44898,1.23208,-1.11598,-1.04029,-0.458336,-0.0886391,-0.039153,-0.0753675,-0.649055,-0.524402,0 +-0.0308771,-0.822195,-0.181733,0.215061,-0.638287,-0.0574621,-0.268691,1.74549,-0.489996,1.3129,-0.672968,-1.37197,1.23208,-0.948798,-1.04029,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,-0.524402,0 +-0.0308771,-0.822195,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,1.68733,-0.603215,1.04112,-0.51306,-1.37197,1.23208,-0.948798,-1.04029,-0.458336,-0.0886391,0.0249759,-0.0753675,-0.649055,-0.524402,0 +-0.0308771,-0.822195,-0.181733,-0.46381,-0.638287,-0.0574621,-0.268691,1.74549,-0.603215,0.334477,-0.424223,-1.37197,1.23208,-0.948798,-1.04029,-0.458336,-0.149684,0.0249759,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.181733,-0.124374,-0.638287,-0.0574621,-0.268691,1.68733,-0.829654,0.117049,-0.246547,-1.37197,1.23208,-0.948798,-1.37934,-0.458336,-0.0886391,0.0891048,-0.00624269,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.62916,-1.05609,0.171406,-0.175477,-1.14093,1.19825,-0.502971,-1.04029,-0.458336,-0.0886391,0.153234,0.0628821,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.62916,-1.05609,0.28012,-0.264315,-1.14093,1.19825,-0.502971,-0.701232,-0.458336,-0.0886391,0.153234,0.0628821,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.203162,0.215061,-0.638287,-0.0574621,-0.268691,1.62916,-0.829654,0.551906,-0.619665,-1.14093,1.19825,-0.502971,-0.701232,-0.458336,-0.0886391,0.0891048,-0.00624269,-0.649055,-2.16152,0 +-0.0308771,-0.822195,-0.117446,0.554496,-0.638287,-0.0574621,-0.268691,1.51283,0.30254,0.225763,-0.886178,-0.986914,0.995274,-0.502971,-0.362178,-0.458336,-0.0886391,-0.103282,-0.0753675,-0.614546,-0.524402,0 +-0.0308771,-0.822195,-0.0103012,0.215061,-0.638287,-0.0574621,-0.268691,1.45467,0.868636,0.0626921,-1.01055,-0.268148,-0.0872623,-0.725884,2.0112,-0.458336,-0.0886391,-0.167411,-0.144492,-0.614546,1.11272,0 +-0.0308771,-0.822195,0.0111277,0.215061,-0.638287,-0.0574621,-0.268691,1.33834,1.54795,-0.317807,-1.18823,-0.268148,-0.0872623,-0.725884,1.33309,0.957976,-0.21073,-0.295669,-0.213617,-0.614546,1.11272,0 +-0.0308771,-0.822195,-0.0103012,1.23337,-0.638287,-0.0574621,-0.268691,1.28018,1.88761,-0.480878,-1.24153,-0.345159,-0.0872623,-0.893069,1.33309,-0.458336,-0.21073,-0.423926,-0.282742,-0.580037,1.11272,0 +-0.0308771,-0.822195,-0.0745881,0.893932,-0.638287,-0.0574621,-0.268691,1.22202,1.88761,-0.480878,-1.22376,-0.345159,-0.0872623,-0.893069,1.33309,-0.458336,-0.271775,-0.359797,-0.282742,-0.580037,1.11272,0 +-0.0308771,-0.822195,-0.181733,1.23337,-0.638287,-0.0574621,-0.268691,1.33834,0.755417,-0.209093,-1.01055,-0.0627869,-0.0872623,-0.280057,0.994036,0.957976,-0.271775,-0.167411,-0.213617,-0.545527,-0.524402,0 +0.273975,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,1.80365,-1.05609,0.932405,-0.637433,-0.704542,0.623152,-0.502971,-0.0231245,-0.458336,0.0334514,0.153234,0.0628821,-0.649055,-0.524402,0 +0.273975,-0.822195,-0.203162,1.5728,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,1.63905,-0.548595,-1.29496,1.19825,-0.837341,-0.701232,-0.458336,0.0334514,0.217363,0.0628821,-0.649055,-0.524402,0 +0.273975,-0.822195,-0.181733,1.23337,-0.638287,-0.0574621,-0.268691,1.80365,-1.05609,1.42162,-0.193245,-0.884233,0.656981,-0.837341,-0.362178,-0.458336,0.0944967,0.153234,0.0628821,-0.614546,1.11272,0 +0.273975,-0.822195,-0.181733,0.554496,-0.638287,-0.0574621,-0.268691,1.571,-0.376776,0.606263,-0.211012,-0.730212,0.454006,-0.837341,-0.701232,-0.458336,-0.0275938,0.0249759,-0.00624269,-0.614546,1.11272,0 +0.273975,-0.822195,-0.138875,1.23337,-0.300473,-0.0574621,-0.268691,1.16385,0.981856,-0.535235,-0.672968,-0.653201,0.217201,-1.06025,-0.362178,-0.458336,-0.271775,-0.23154,-0.144492,-0.580037,1.11272,0 +0.273975,-0.822195,-0.181733,1.23337,-0.300473,-0.0574621,-0.268691,1.16385,0.642198,-0.535235,-0.51306,-0.653201,0.217201,-1.06025,-0.701232,-0.458336,-0.149684,-0.167411,-0.144492,-0.580037,1.11272,0 +0.273975,-0.822195,-0.117446,1.23337,1.72641,-0.0574621,1.42637,0.98936,0.981856,-0.535235,-0.921713,0.373606,-0.899164,-0.670156,0.315929,-0.458336,-0.21073,-1.00109,-0.490116,0.903866,1.11272,0 +0.273975,-0.822195,-0.117446,1.5728,2.40204,-0.0574621,3.12144,0.931196,0.981856,-0.535235,-1.11716,0.399276,-0.899164,-0.614428,0.654983,-0.458336,-0.21073,-1.44999,-1.04311,1.80111,1.11272,0 +0.273975,-0.822195,-0.096017,0.554496,2.06422,-0.0574621,3.12144,0.931196,0.981856,-0.535235,-0.566363,0.373606,-0.899164,-0.670156,0.654983,-0.458336,-0.21073,-1.19347,-0.697491,1.17994,1.11272,0 +0.273975,-0.822195,-0.160304,1.23337,-0.638287,-0.0574621,-0.268691,1.16385,0.18932,0.0626921,-0.619665,-0.832893,0.72464,-0.614428,-0.0231245,-0.458336,0.155542,-0.103282,-0.00624269,-0.511018,-0.524402,0 +0.375592,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.97814,-1.05609,1.25855,-0.335385,-1.01258,0.927615,-0.670156,-0.701232,-0.458336,0.521813,0.538007,0.477631,-0.614546,1.11272,0 +0.680444,-0.822195,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,2.09447,-1.28253,2.0739,-0.495293,-1.29496,1.29974,-0.670156,-0.701232,-0.458336,0.460768,0.666265,0.546756,-0.649055,-0.524402,0 +0.680444,0.212576,-0.203162,-0.124374,-0.638287,-0.0574621,-0.268691,1.91998,-1.28253,1.42162,-1.06385,-1.3463,1.57037,-0.335786,-1.04029,-0.458336,0.582859,0.858651,0.75413,-0.614546,-0.524402,0 +0.680444,-0.822195,-0.203162,1.23337,-0.638287,-0.0574621,-0.268691,1.86182,-1.16931,0.551906,0.0555005,-1.14093,1.0291,-0.781613,-1.04029,-0.458336,0.399723,0.538007,0.477631,-0.614546,1.11272,0 +0.680444,-0.822195,-0.203162,0.554496,-0.300473,-0.0574621,-0.268691,1.86182,-0.942873,0.878048,-0.211012,-1.26929,1.19825,-0.781613,-1.04029,-0.458336,0.460768,0.473878,0.477631,-0.580037,1.11272,0 +0.680444,-0.822195,-0.203162,0.893932,-0.300473,-0.0574621,-0.268691,1.86182,-0.829654,0.932405,-0.317617,-1.14093,1.0291,-0.781613,-1.04029,-0.458336,0.399723,0.409749,0.477631,-0.614546,1.11272,0 +0.680444,-0.822195,-0.203162,0.215061,-0.300473,-0.0574621,-0.268691,1.74549,-0.716435,0.388834,-0.388688,-1.01258,1.0291,-0.502971,-0.701232,-0.458336,0.460768,0.538007,0.477631,-0.580037,-0.524402,0 +0.680444,-0.822195,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.86182,-1.28253,0.823691,-0.175477,-0.781552,1.46888,0.723053,-0.0231245,-0.458336,0.94913,0.986909,0.961504,-0.580037,-0.524402,1 +0.680444,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.80365,-1.05609,0.66062,-0.193245,-0.114127,0.318689,0.277226,0.654983,-0.458336,0.888085,0.858651,0.89238,-0.545527,1.11272,1 +0.680444,-0.563502,-0.203162,0.893932,-0.638287,-0.0574621,-0.268691,1.86182,-1.05609,0.551906,-0.37092,-0.0884571,0.318689,0.332955,0.315929,-0.458336,0.94913,0.858651,0.961504,-0.511018,1.11272,1 +0.680444,-0.563502,-0.203162,0.554496,-0.638287,-0.0574621,-0.268691,1.80365,-1.05609,0.932405,-0.211012,-0.114127,0.318689,0.277226,0.654983,-0.458336,0.888085,0.794523,0.89238,-0.511018,1.11272,1 +0.883679,-0.30481,-0.160304,1.23337,-0.638287,-0.0574621,-0.268691,1.571,-1.05609,1.42162,-0.566363,-0.730212,0.792298,-0.280057,-0.701232,0.957976,0.460768,0.538007,0.477631,-0.614546,-0.524402,0 diff --git a/data/conn-bench-sonar-mines-rocks.arff b/data/conn-bench-sonar-mines-rocks.arff new file mode 100755 index 0000000..dc04c49 --- /dev/null +++ b/data/conn-bench-sonar-mines-rocks.arff @@ -0,0 +1,271 @@ +@relation conn-bench-sonar-mines-rocks +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'f35' real +@attribute 'f36' real +@attribute 'f37' real +@attribute 'f38' real +@attribute 'f39' real +@attribute 'f40' real +@attribute 'f41' real +@attribute 'f42' real +@attribute 'f43' real +@attribute 'f44' real +@attribute 'f45' real +@attribute 'f46' real +@attribute 'f47' real +@attribute 'f48' real +@attribute 'f49' real +@attribute 'f50' real +@attribute 'f51' real +@attribute 'f52' real +@attribute 'f53' real +@attribute 'f54' real +@attribute 'f55' real +@attribute 'f56' real +@attribute 'f57' real +@attribute 'f58' real +@attribute 'f59' real +@attribute 'f60' real +@attribute 'clase' {0,1} +@data +-0.39859,-0.0405504,-0.0268608,-0.713384,0.363579,-0.101009,0.520383,0.297126,1.12256,0.0211349,-0.566016,-0.656956,-0.351196,-1.41097,-1.23743,-0.649845,-0.401943,-0.582796,0.0115837,-0.317326,-0.119309,-0.457924,-0.856099,-0.492038,-0.0176525,-0.246035,0.0335638,0.480528,0.154114,-0.884387,-1.74668,-0.837755,0.45944,1.51991,1.77951,1.76378,1.27294,1.26797,0.846419,-0.206014,-1.39238,0.030266,0.258704,1.58694,0.440998,-0.164489,-0.199567,0.686931,-0.379064,0.876396,0.59385,-1.11275,-0.596166,0.679259,-0.294934,1.47807,1.75954,0.0697021,0.171265,-0.657361,1 +0.701845,0.420616,1.05308,0.322552,0.775804,2.60094,1.51896,2.50494,1.31515,0.587289,1.92749,2.89122,2.96956,2.93743,2.0747,2.43247,2.21489,1.66361,1.1535,0.832861,-0.340783,-0.856153,-1.0044,-1.17622,-1.43073,-1.60127,-1.52674,-1.75946,-0.831526,-1.71293,-0.587289,-0.676902,-1.05959,-0.731413,-1.01096,0.126277,0.0820853,-1.09853,-0.712293,-0.639235,-0.712122,-1.30383,-0.765805,-0.384685,-0.891206,-1.04773,-0.798743,-0.275952,-0.306749,-1.04823,-0.297185,-0.521092,-0.256239,-0.841122,0.0154657,1.89647,1.06816,-0.471269,-0.443484,-0.418842,1 +-0.128918,0.599621,1.71926,1.16935,0.399581,2.0883,1.96403,2.8455,3.22499,3.05873,2.99377,3.25389,1.99412,1.43142,1.59521,1.3523,0.985739,1.15774,1.50429,1.13783,0.730515,0.193155,-0.87009,-1.28747,-0.581087,-1.93302,-0.79442,0.671515,-0.160142,1.22525,1.62027,0.306981,-1.11867,-0.572272,0.118198,-0.304965,1.03285,1.57739,1.06342,0.899428,1.02535,-0.116123,-0.242039,0.0609569,0.091459,-1.06789,0.141998,-0.272748,-1.08274,-0.718919,-1.06331,1.01514,0.83436,-0.197357,1.22885,2.82044,4.11025,1.30621,0.252153,0.256962,1 +-0.833544,-0.647348,0.48058,-0.717683,-0.984703,-1.1466,-0.193349,-0.0845432,-0.998443,-0.609,-1.1146,-0.36425,-1.80833,-0.428445,-0.717051,-0.710881,-1.3148,-0.857335,-0.383008,-0.631048,-1.29921,-0.997623,-0.365244,-0.786456,-1.47564,-0.701715,-0.718705,-1.86359,-1.8026,-1.01938,0.567892,1.38325,0.943187,-0.231503,0.0105307,-0.316702,0.737741,2.54371,3.31484,3.38905,1.88677,1.31754,0.535696,0.796191,1.53182,1.52883,1.64511,1.06023,0.449774,0.656857,0.668797,-0.137035,-1.00691,0.555985,-0.111516,-0.160672,-0.487459,-0.548551,-0.637616,1.03215,1 +2.04585,0.854476,0.111059,-0.311475,-0.291661,-0.671177,-0.0137023,1.31413,1.5069,1.76795,1.35027,1.03503,1.08039,0.710942,0.645478,0.662426,1.19319,0.638482,-1.16909,-0.378624,-0.753477,-0.76236,-0.295693,-0.555187,-1.46707,-1.98698,-0.010807,1.29001,0.35016,-0.491634,0.0272183,0.501131,-0.625238,-1.31954,-0.762048,0.125898,0.402619,-0.0843167,-0.215997,-0.381765,-0.533875,-0.200875,-0.444926,-0.975122,-0.844381,-0.805084,-0.997702,-1.32856,-0.804608,-1.158,-0.0390349,-1.07123,-0.751966,-0.0603859,0.241211,-1.17181,-0.107198,-0.486726,0.446284,0.574988,1 +-0.0245289,0.208237,-0.419802,-0.784309,-0.662484,-0.0942416,-0.0266498,0.56958,0.274499,0.71153,0.473134,1.24778,2.56093,3.18123,3.3092,2.66629,2.0283,1.72134,0.84728,-0.193589,-1.55792,-0.882336,-0.231737,-1.612,-1.92353,-0.512867,-0.664564,-1.34502,-1.25275,-0.336254,0.250123,0.181768,-0.422829,-0.793253,-0.971979,-0.375766,0.0704143,0.357523,0.399853,0.10295,-0.10842,-0.0787851,-1.2536,-0.677278,-0.514628,-0.386233,-0.691788,-0.673282,-0.710042,-0.901868,-0.472062,-0.925909,-1.31851,-0.978093,-1.12737,0.118262,-0.366467,-0.811309,-0.459662,-0.0610632,1 +0.110307,1.73433,2.29696,1.86786,1.65966,1.12392,-0.787317,0.0622528,0.255915,1.06417,-0.432637,-1.31662,-1.57493,0.478079,1.07921,0.711427,0.375523,-0.0998675,-1.17219,-0.532058,0.633159,1.36478,1.16728,-0.488274,-0.606809,-0.0727838,-0.532673,-0.637146,-1.76639,-1.65812,0.358071,0.906314,-0.584563,-0.933799,-0.369198,0.497698,1.04827,0.416215,1.11566,1.69087,1.24158,-0.240584,-0.365786,-0.293906,-0.440763,-0.753567,-0.115613,0.212699,-0.0341783,-0.331067,0.285735,0.693359,1.99578,0.295739,-0.323152,0.9725,0.238494,0.981626,-0.702326,0.753877,1 +0.988915,0.496465,1.05048,-0.472669,0.730801,-0.20929,-0.308258,-0.863149,-0.2661,0.561994,0.332973,0.416777,-0.0539527,0.507871,1.17998,0.254088,-0.585122,-1.27106,0.630992,1.43594,0.675437,-0.348108,0.135605,1.02354,0.350621,0.514837,0.753267,-0.358044,-1.43756,-2.13196,-1.74154,-1.7663,-1.54092,-0.0113871,-0.100224,-1.05954,-0.718207,0.250467,0.517396,-0.316838,-1.01777,-0.347857,-0.421904,-0.52798,0.114542,0.562714,-0.114463,-1.05779,-0.651634,-0.192026,-0.905088,-0.552232,0.182833,-0.882213,0.396411,0.25773,0.117502,-0.502182,-0.508195,-0.239953,1 +-0.29855,-0.0284145,0.118866,-0.137386,-0.189055,-0.769306,-0.751711,-1.46795,-0.9258,-0.443096,-0.907376,-0.605554,0.780314,0.384447,-0.724839,-1.13856,-1.44526,-0.27805,0.912012,1.63506,1.43954,1.03455,0.0968321,-1.02065,-1.3801,0.154846,1.05409,0.174021,-0.651297,-1.90953,-0.952256,-0.138064,-0.485295,-0.314533,-0.199787,-0.629437,-0.48979,-0.314862,-0.792665,-0.179147,-0.195498,-0.618114,-0.247795,-0.781561,-0.651146,-0.250349,0.269654,0.400149,0.716782,1.71796,-0.830141,0.112083,0.296142,0.487499,-0.492461,-0.579074,-0.22819,0.208809,-0.330241,-0.856127,1 +-0.555173,-0.64128,-0.237644,-1.00783,-1.01711,-0.633955,-0.261324,-0.764502,-0.690977,-1.36263,-1.17489,-1.03248,-1.04074,-1.26201,-1.46233,-1.13985,-0.505858,-0.49294,-0.701627,-0.493985,-0.00876624,0.55074,1.09253,1.25147,1.00143,0.2303,0.515944,0.829195,0.369723,0.492287,0.366483,0.255395,-0.518707,-1.61145,-1.42078,-1.03758,-0.852006,-0.951092,-1.28695,-1.48889,-1.3281,-0.807175,-0.624791,-0.567743,-1.05542,-0.685625,-0.411176,-0.642841,-1.18843,-0.0456669,-0.355477,-0.458812,1.64169,0.953201,-0.125625,-0.247839,-0.798582,-0.687658,-0.378774,-0.498348,1 +-1.09887,-0.975018,-0.745085,-0.436131,-0.795692,-1.28872,-1.32949,-1.26361,-1.23073,-1.2131,-1.40774,-1.07531,-0.928656,-1.07718,-1.25301,-1.23699,-1.13124,-1.18311,-1.48267,-1.72336,-1.64597,-0.987853,-0.834514,-0.42638,-0.0409248,0.201214,0.257453,0.68079,1.37326,1.54552,1.14829,1.32181,1.73587,0.874699,0.422676,0.246298,0.128769,0.415276,0.58722,0.356502,-0.537966,-1.3465,-1.20324,-0.65402,-0.289736,-0.684132,-0.945949,-0.609196,-0.810171,-0.960412,-0.821814,-0.74945,0.182833,-0.786333,-0.52068,0.187996,-0.625736,-1.18226,-0.427307,-0.577855,1 +-0.733505,-0.228658,-0.700847,-0.485564,-0.709287,-1.59664,-1.67584,-0.903078,-0.555828,-0.928159,-1.36554,-1.18169,-0.501591,-0.248478,-0.648413,-0.753435,-1.02278,-0.640151,0.300744,0.798596,0.683194,0.888003,-0.462775,-1.28538,-0.318967,0.538022,1.21244,0.73054,-0.04984,-0.551883,-0.516259,-0.850886,-0.656229,-0.601679,-0.45101,-0.435587,0.148359,0.553791,0.342588,-0.330271,-0.649005,-0.846884,-1.40253,-1.35324,-0.711161,-0.556461,-0.405426,-0.751786,-1.07162,0.0933743,0.227443,-0.0124759,2.23656,1.56957,-0.266716,0.623831,-0.90229,0.193353,-1.13912,-0.418842,1 +-0.924885,-0.905237,-0.997504,-0.620967,-0.734488,-0.845442,-1.11586,-0.457992,-0.651277,-0.626855,-0.951836,-0.918964,-0.609421,0.253728,0.0121628,-0.456422,-0.0822338,0.729867,0.861622,1.15839,1.38989,1.40855,1.20326,0.547624,0.0321584,-0.785179,-1.60042,-2.57526,-0.999685,-1.56978,-1.46723,-1.47976,-1.18888,-0.727089,-0.554432,-0.0755245,-0.106734,-0.848732,-1.13977,-1.13235,-1.08089,-1.15211,-0.773,-0.991628,-0.853614,-0.704291,-0.0259093,-0.356059,-1.02155,0.451954,0.110859,0.433861,0.281979,-0.293237,0.0719021,-1.10208,-0.331898,-0.332162,-0.330241,-0.657361,1 +-0.87704,-0.978052,-0.482257,-0.107297,0.801006,0.919202,0.282472,-0.423936,-0.69689,-0.139561,-0.349747,0.0319753,0.950573,0.0135689,-0.146531,0.662426,-0.0522729,-1.12882,-0.784576,-0.656177,-0.988527,-0.705302,-0.0222844,-0.888916,-0.304269,0.712959,0.53874,0.307248,-0.557645,-0.538746,0.156662,0.461738,-0.158923,-0.186529,1.34151,1.48134,0.0916721,-1.28165,0.213993,1.68023,0.360865,-0.279107,-0.194555,0.682905,-0.0232952,-0.0271114,-0.857396,-0.602788,-1.03824,-0.997002,0.219116,-0.78059,-0.171257,1.15866,-0.182062,1.21657,1.37928,-0.409444,1.77285,0.734001,1 +-0.729155,0.147557,0.431137,-0.193267,-0.27906,-1.16859,-1.111,-1.18023,-0.614956,0.0278306,-0.542656,-0.429216,0.20782,-0.575581,-1.27053,-0.599555,-0.1907,-0.273079,0.341444,0.254531,-0.112328,-0.652153,-0.807733,-1.26948,-0.125848,0.818343,0.796416,-0.826446,-1.28522,-1.56706,-1.63172,-0.339718,0.0812554,-0.410969,-0.347974,0.0986382,0.776505,0.343906,1.12571,1.06678,0.139956,0.0113006,-0.0823192,0.117975,-0.539029,-0.658747,-0.694088,-0.955258,-0.192714,-0.272524,-0.688575,-0.531472,-0.709475,0.884715,1.34172,-0.491907,0.618756,1.80081,1.09339,-0.0610632,1 +0.0276656,0.699742,0.550841,0.821177,1.55345,2.11199,1.55133,0.804453,-0.271169,-0.915511,0.0873144,0.815858,0.0311765,-0.0849267,0.0170307,0.236464,0.560598,0.0121659,-0.271375,0.305549,-0.837257,-1.66238,-1.17108,1.01978,1.06839,-1.00269,-1.73028,-0.137966,0.668995,-0.729007,0.0688086,1.20598,0.784359,2.10026,1.51941,1.24357,1.65766,0.471621,-0.125076,0.0285079,-0.0488099,0.0681968,-1.39533,-0.205378,-0.276546,0.0199253,0.0315932,-0.26634,-0.187152,-1.02627,-0.0556897,-1.07123,0.650233,-0.526088,1.68034,-0.108372,1.27557,-0.471269,1.9508,0.157579,1 +0.262541,-0.814217,-0.643597,-0.150282,-0.0270449,0.235677,0.753438,0.226664,-0.265256,0.617047,-0.0242115,-0.189339,-0.186612,-0.854651,0.140676,-0.204971,-0.705724,-0.88716,-0.9904,-0.572035,-1.13747,-0.0202241,-0.246127,-1.39327,-1.71204,-0.590008,0.457325,0.000320257,0.234864,1.29138,0.413681,-0.340656,1.24825,2.01723,1.50938,1.40221,0.896549,0.618119,-1.00766,1.66512,2.58866,1.89302,0.694696,-0.253393,0.267547,1.35711,1.2403,-0.360866,-0.843547,1.9375,2.20937,2.19845,0.721051,0.610773,0.227102,-0.596508,0.290348,-0.996785,-0.103754,0.0383198,1 +-0.433386,0.675471,-0.156974,0.505238,1.14483,-0.400474,-1.05112,-1.32585,-0.627626,-0.667029,-0.846338,-0.643392,0.558269,0.920093,0.276004,0.849402,0.859448,0.866755,0.817434,-0.0626174,-0.268251,0.0466033,0.551313,0.430526,-0.397767,-0.90068,-1.15631,-1.89016,-2.3745,-2.35393,-1.50882,0.0481137,0.873458,-0.106958,-0.552116,0.727895,2.17327,2.35355,0.156728,0.0117164,1.87216,2.13068,0.175247,-0.541485,-0.469781,-0.237657,-0.49973,-0.136567,0.00197903,0.0860564,1.65976,2.04275,0.338633,0.145071,0.212993,-1.01491,-0.573882,-0.656745,0.527172,0.197333,1 +-0.0941216,-0.887033,-0.763301,-0.560788,-0.612081,-0.488452,-0.309877,-0.246606,-0.832885,-0.418546,-0.516282,-0.808307,-0.973349,-0.985371,-0.515032,0.674461,1.01267,0.411739,-0.757831,-0.915454,-0.644098,-0.261741,-0.274907,-0.231496,0.562522,1.18887,1.14039,0.938391,0.417174,0.872809,1.60204,1.38888,1.21,0.886808,0.892706,0.803997,0.865705,0.866507,-0.167774,-0.882153,-0.519849,-0.445647,-0.185921,-0.272149,-0.408447,-0.174195,-0.546882,-0.708529,-0.540381,-0.184708,-0.96338,-0.521092,-1.37517,-1.25204,-0.351371,-0.753409,0.722463,0.811606,-0.152287,0.455728,1 +-0.720456,-0.714096,0.527421,2.56421,3.26356,2.56034,2.79915,3.24362,2.7055,2.85488,2.61624,2.08235,1.94304,1.42777,0.865995,1.37551,1.56713,1.26786,1.22753,1.42109,1.51634,1.16508,0.547316,-0.525495,-0.895059,-0.453852,-0.640547,-1.25185,-2.30541,-1.55121,-1.4205,-1.78365,-0.788424,-0.874986,-1.38798,-0.871372,-1.01123,-0.446334,-0.0436998,0.0464189,0.0926186,-1.15389,-0.862932,-0.569994,-0.55156,-0.814043,-1.32432,-1.01934,-0.409658,-0.60915,-0.0640172,-0.438053,-1.02108,-0.156266,0.396411,-1.32871,1.77682,0.224265,0.591883,-0.0411866,1 +0.788836,0.37814,0.990623,1.53258,1.85587,3.42489,2.89787,1.19082,1.73158,1.24718,0.498001,0.290414,-0.306503,-0.945243,-0.788609,-0.582362,0.119149,0.55092,0.657349,0.890352,0.86433,0.613659,0.861895,0.26868,-1.0747,-1.85588,-1.47749,-1.329,-0.804471,0.213691,1.12352,1.37762,1.71021,1.65959,0.818998,0.761592,1.14497,1.82296,1.52104,1.23358,0.687554,-0.587888,-0.604646,0.28978,-0.0457184,0.0273914,-0.713639,-1.12989,-0.231653,-0.21398,-0.447079,0.610319,0.154506,-0.621968,-0.718207,-0.491907,-0.504744,0.0387894,-0.831747,-0.756744,1 +1.6196,0.578383,1.05048,-0.358759,-0.529276,-0.464766,-0.722579,-0.256001,0.483981,-0.181966,0.383461,1.16139,0.648364,-0.59686,-0.176226,0.109235,0.636069,0.867519,0.402299,-0.294102,-1.10334,-1.653,-1.75387,-2.10799,-1.74348,-1.79687,-1.64357,-0.963468,0.236945,0.754123,1.36044,1.68385,1.2313,1.25828,1.35618,1.63581,2.19827,3.10059,2.76027,2.21029,2.28535,1.8462,1.54869,1.12404,-0.316776,-0.291413,0.0936959,0.454621,0.163296,0.225098,-0.213911,0.0705635,1.17429,-0.909607,-0.802861,-0.980043,-0.936859,1.2753,0.47864,0.276839,1 +-0.837894,0.30229,-0.362553,-0.519952,-0.180054,0.052953,1.85398,1.21783,-1.44021,-0.149232,-0.68131,-0.435641,0.314231,-0.988411,-0.502863,-0.570327,-0.595741,-0.66424,-1.06598,-1.89393,-1.80344,-1.97893,-1.91935,-2.06742,-1.74674,-1.86684,-2.43655,-0.667923,0.29272,0.218221,-0.134937,0.761874,1.47003,0.952108,0.694352,1.39123,2.11491,2.74937,3.2405,3.46182,3.56639,3.03925,2.2552,0.523104,1.60569,2.91231,3.5726,3.18947,4.06551,4.20607,1.95955,0.402721,0.593579,0.0765853,1.53925,0.989933,-0.850436,1.24438,0.430107,1.37005,1 +-0.768301,-0.711062,-0.786721,-0.994935,-0.973903,0.020807,-0.314732,-1.06631,-0.717163,-1.0033,-1.22085,-1.34232,-1.19043,-1.08387,-0.720945,-0.516168,-0.351882,-0.27002,-0.312074,-0.53815,-0.636728,-0.847164,-1.26461,-1.13524,-0.934254,-0.750614,0.215932,1.08047,1.48981,1.48346,1.51325,1.49158,1.49618,0.916647,0.676986,0.722595,0.702728,0.129325,-0.798191,-1.25716,-1.3129,-0.528621,0.156541,0.559865,0.243146,0.0460568,-0.240969,0.449815,0.513744,-0.272524,-0.447079,-0.448432,-1.29018,-0.348025,-0.407807,-0.980043,-0.850436,-0.656745,-0.152287,-0.478472,1 +0.00591789,0.787728,-0.125747,-0.786458,-0.496874,-0.388631,-0.363285,-1.21311,-0.881877,-0.90956,-1.46651,-1.44941,-1.3465,-1.23283,-0.845077,-1.27912,-1.13049,-0.896336,-0.667517,-0.903271,-1.54357,-1.54006,-1.24263,-1.03194,-0.875869,-1.85167,-2.50249,-1.71941,-0.339122,1.14823,1.42587,1.34104,1.87678,2.33637,2.34409,1.9353,0.782758,-0.168834,-0.462136,-0.408632,0.248658,0.61523,-0.640619,0.0654583,-0.25742,-0.129398,0.470912,0.350482,0.132702,-0.521334,0.0775493,-1.02971,-0.780293,-0.361722,-0.21028,-0.125806,0.463194,1.24438,0.252153,-1.07477,1 +-0.39424,-1.08728,-0.781517,-1.02502,-1.11431,-1.51374,-1.09482,-1.33642,-1.077,-0.733241,-1.14475,-1.11386,-1.08473,-1.54777,-1.54362,-1.55722,-1.34097,-0.916219,-0.624879,-0.691965,-0.878759,-0.577901,-0.062656,0.333084,0.784221,0.75427,0.358,0.597312,1.33622,1.72581,1.9586,2.11624,2.68061,2.42805,1.5306,0.552218,-0.383501,-0.677818,-0.946377,-0.0039557,0.524502,0.783548,0.640017,0.643142,0.511565,0.311852,-0.208767,-0.738969,-0.507005,-0.601832,-0.73854,-0.271974,-0.525348,-0.635665,-0.887516,-1.24154,-1.2307,-0.857678,-0.362596,-0.418842,1 +-0.611717,-0.195284,0.418126,1.09843,0.739802,1.16453,0.746965,-0.268919,-0.75264,-0.652893,-1.14022,-0.702647,-0.303665,-0.104991,0.0983248,0.318992,1.05818,1.63799,1.5915,0.72778,0.250331,0.352993,0.745577,0.407524,0.0974841,-0.192078,-0.806632,-0.849213,-0.59469,-0.746674,-1.59527,-1.86947,-1.71185,-0.462863,-0.12222,-0.750594,-1.31801,-0.89193,-0.42848,-0.633638,0.165086,-0.239398,-0.539176,-0.436451,-0.274567,-0.884225,-0.841295,-0.70212,-0.835203,-1.06286,-0.621955,-0.75983,-1.30435,-0.348025,0.495175,-0.491907,-1.16156,-0.934959,-0.912635,-0.0610632,1 +-0.498629,-0.255963,-0.391177,-0.311475,-0.219657,-0.879279,-0.85691,-0.839662,-0.976481,-1.09332,-0.512514,0.695206,1.29676,1.35116,1.51197,1.46836,0.376661,-0.269638,-0.93187,-0.870147,-0.475374,0.150557,0.367442,1.03985,1.3252,0.316715,-0.581522,-0.323894,0.921649,0.354575,-0.128395,0.277905,-0.407818,-0.413564,-0.405087,-0.614293,-1.18546,-1.3117,-1.10963,-1.40269,-0.796278,-1.06676,-0.591696,-0.17987,-0.570686,0.231964,0.278854,-0.8367,-0.45416,0.481226,0.0608944,-0.334253,0.211161,-0.89591,-0.252607,0.728432,0.359487,-0.347619,-0.767037,-0.915757,1 +-0.833544,-0.331813,-0.646199,-0.360908,-0.60488,-1.42914,-1.46221,-0.818523,0.0979592,0.435521,0.765512,0.556705,-0.21357,-1.03219,-0.936594,0.282026,0.999392,0.966552,1.13101,1.43556,1.46087,0.762164,-0.272109,-0.139072,0.117898,-0.0521286,-1.19701,-2.16251,-1.81342,-0.857207,-0.585887,-1.10131,-0.941925,-0.298965,0.0224937,0.465137,0.79026,-0.0209285,-0.268741,-0.466842,-0.495888,-0.472317,-1.17302,-0.924857,-0.39064,0.255109,-0.0155589,-0.114137,0.193891,0.312913,-0.355477,-0.479572,-0.0437847,-1.00549,-0.0691888,-0.613941,0.670609,-0.919503,0.187443,-0.14057,1 +-0.446435,-0.231692,-0.627983,0.178553,-1.20972,-0.434312,0.360157,0.120971,0.00757781,0.326903,0.18603,0.862263,0.832101,-0.178558,-0.236588,0.17113,1.07259,0.462593,-1.09389,-1.14199,0.536192,0.398717,-1.22984,-1.63207,-0.286305,-0.464391,-0.836348,0.706508,0.798444,-0.781555,-1.29759,-1.24059,-1.7748,-1.05705,-0.341799,-0.938765,-0.847421,-0.627108,-1.26786,-1.62882,-0.733161,-0.711163,-0.457157,-0.191123,-0.635977,-0.704291,-1.19781,-0.817474,-1.14393,-0.448155,-0.580318,-0.998568,-0.157094,0.446408,1.36994,1.00737,0.359487,0.193353,-0.443484,0.197333,1 +-0.224608,-0.50475,-0.297496,0.0646427,-0.75969,-0.901274,-0.518656,-0.745712,-1.02294,-1.25997,-0.321112,-0.0486975,0.122691,-0.218686,0.296449,0.521012,-0.434179,-0.331964,0.675567,0.638308,-0.402455,-0.70413,0.206755,0.58819,0.419213,0.819608,0.77647,0.831725,0.911243,1.02094,0.231431,-0.911851,-0.345352,-1.04537,-0.562922,0.649522,0.434714,-1.13515,-0.841893,-1.32153,0.250411,0.570187,0.14431,-0.797316,-0.365579,0.0602425,-0.559533,-0.448983,-1.0438,0.159236,-0.830141,0.288542,0.551088,-0.224751,0.269429,0.205429,-0.418321,-0.934959,-0.216998,-0.83625,1 +-0.903137,-0.70196,-0.383371,-0.229804,0.358179,-0.496912,-1.30036,-1.27888,-0.919043,-0.245203,-0.293984,-0.953232,-0.744919,-1.30822,-0.497995,0.574311,1.16475,1.24377,0.455015,-0.810753,-0.914443,-1.415,-1.07674,0.265334,0.783404,0.516102,0.305488,0.388618,-0.319975,-0.984953,-0.705985,-0.246394,-0.388449,-1.01164,-0.501177,-0.247415,-0.93787,-1.10275,-0.792163,-0.672818,-1.00433,-1.0964,-1.15791,-0.892596,-0.650486,-0.485533,-0.918348,-0.812668,-1.14949,-0.184708,-0.871779,1.05666,0.0978516,0.364225,0.339975,-0.387307,-0.349182,-0.749483,-0.119932,-0.398965,1 +-0.420337,-0.51992,-0.989698,-0.749921,-0.779491,-0.803144,-0.345482,-0.798559,-0.919887,-1.36933,-1.2299,-1.33018,0.190794,0.540095,0.761822,0.351229,-0.373499,-0.138869,0.534863,1.66362,0.985345,-0.402821,-1.32457,-0.323919,0.399207,-0.403268,-1.07733,-0.612693,-0.707905,0.192853,-0.557849,-1.31328,-0.136164,0.545606,-0.16274,0.239104,0.16795,0.767433,1.61598,1.33265,0.383073,-0.447425,-0.419745,-0.972122,-0.433508,-0.0121792,-0.761941,-0.476219,-0.490317,1.21302,0.835346,0.236642,-0.468694,2.21334,1.55336,0.118262,0.290348,0.239722,-0.94499,-0.239953,1 +0.654,0.281052,-1.01312,0.0904336,-0.853295,-0.622112,0.722688,0.166772,-0.680841,-0.606024,-0.942793,-0.0908187,-0.51507,-0.502013,-1.01886,-0.751715,-0.64163,0.825459,1.27792,0.998098,0.747193,1.07051,1.2768,0.747945,-0.0523568,-1.58399,-2.02215,-0.535961,-0.289174,-0.422325,1.16231,1.50518,0.490431,0.037912,0.630677,0.651415,-0.959545,0.203982,0.679647,0.681698,-0.196667,-0.780505,0.736425,0.388811,-0.678185,-0.176434,0.137398,-0.798248,0.555464,3.16692,0.410647,0.724498,1.54254,0.350528,-0.534789,-0.160672,0.031079,0.394285,-0.330241,0.79363,1 +0.0842097,0.323528,0.660136,0.627745,-1.21152,-1.43084,-0.382707,-0.389879,0.206924,-0.978748,-0.446955,0.0376867,0.0560059,-0.148158,0.0121628,-0.138347,0.46844,1.29539,1.55661,1.16905,0.613378,-1.28408,-0.928049,-0.285862,-1.46013,-1.4824,-0.351526,0.467458,-0.0548348,-0.367058,0.36695,1.06435,-0.0233385,-1.19889,-0.555204,0.313313,0.726904,-0.115776,-0.562098,-0.707521,-0.7092,-0.269624,-1.04352,-1.07115,-0.895163,-0.617684,-0.533081,-0.110932,0.202235,-0.997002,-0.596973,-0.489952,-1.06357,0.282042,1.34172,0.327463,2.60649,1.58442,-0.54055,-0.538101,1 +-0.372492,-0.765673,0.246377,0.0646427,-0.189055,0.653575,0.204787,0.813848,-0.176564,-0.379116,-0.0249651,-0.512031,-0.869775,-0.638204,-0.555436,-0.635231,-0.682589,-1.23282,-0.479136,0.0866291,-0.61811,-0.534131,1.41111,0.814858,-0.831366,-0.698765,-0.33565,0.0854844,-0.339538,-0.942824,-1.19806,-1.15806,-1.34916,-0.305884,-0.402386,-0.234921,-0.429768,-0.636968,-0.433001,-1.00361,-1.29128,-1.45141,-1.25863,-0.87384,-0.781728,-0.809564,-0.833245,-1.09464,-0.82964,-0.440837,1.21841,2.61364,0.565251,-1.25204,0.10012,0.240296,-0.0207748,1.55351,0.47864,0.0979496,1 +-0.859641,-0.662518,-0.104929,-0.386699,-0.127851,-0.574739,-0.319587,-0.534326,-1.18174,-0.561386,-0.796604,-1.59148,-1.482,-1.37023,-0.972616,-1.31866,-1.11342,-0.831334,-0.528751,-0.651989,-0.452102,0.996646,1.25362,0.861279,0.061555,-0.0259934,-0.548549,-0.168743,0.574927,0.799876,0.369754,0.903031,1.90584,2.16512,1.82196,1.07773,0.162114,-0.482019,-0.287829,0.307807,0.218852,-0.345486,0.381732,0.0482028,-0.533753,-0.725196,-0.873496,-0.788636,-0.960363,-0.235934,-0.222238,0.0705635,1.18845,0.487499,-0.393698,0.815599,2.39907,0.116071,-0.039044,1.13153,1 +0.1799,-0.495648,-0.438018,-0.124491,-0.131451,-0.109469,-0.606051,-0.206677,-0.862449,-0.864922,-0.666993,-1.41371,-1.14503,-1.21337,-0.98722,-0.905594,-0.954892,-1.26876,-1.76524,-1.55584,-1.01064,-0.0378102,1.06975,1.103,0.785038,0.747525,0.623411,0.797996,1.48981,1.12649,0.727243,0.519889,0.747558,1.22239,1.11885,0.489747,-0.370163,-0.957196,-0.857465,-0.260866,-0.525109,-0.533362,0.201867,-0.367429,-0.921543,-0.680399,-0.72054,-0.734163,-1.38591,-0.997002,-1.03833,-1.16465,-1.06357,-0.676756,-0.548898,-0.335007,1.12001,0.811606,-0.459662,-0.478472,1 +-0.733505,-1.09941,-0.630586,-0.715533,-1.02971,-0.936804,-1.91699,-1.11564,-0.835419,-1.19598,-0.91039,-1.41514,-1.09324,-0.621788,-0.663017,-0.734092,-0.835807,-1.10626,-1.48461,-1.75649,-1.83719,-1.20592,-0.729388,-0.343157,0.00888611,0.472262,0.640101,0.96453,0.818423,0.647214,0.582845,0.37076,0.221198,0.528741,0.471299,0.0304876,-0.983304,-1.40185,-1.20507,-1.10884,-0.927187,-0.608038,0.13136,-0.139357,-0.868123,-0.76626,-1.0414,-0.982494,-0.687792,-0.953094,-0.0973269,-0.0955152,0.381124,-1.14246,-0.774643,-1.11951,0.601471,-0.332162,-0.524372,0.117826,1 +-0.87269,-0.51992,-0.604563,-0.072909,-0.171054,-0.424161,-0.400509,-0.558988,-0.875964,-0.926671,-0.588623,-1.14528,-1.71965,-0.674684,-0.113429,-0.753435,-1.09825,-1.0967,-1.31289,-1.34758,-1.46638,-0.696705,0.0656539,0.0863416,0.371036,0.508936,0.0111749,0.261294,0.435072,0.261709,-0.0928794,-0.498227,0.573234,2.03626,1.7934,1.08644,-0.0800573,-0.115776,-0.27929,-0.287733,-0.0879658,0.480694,1.3789,0.239514,-0.800854,-1.05968,-0.49168,-0.26634,-0.423565,-0.360339,1.16012,-0.230454,0.0695243,-0.101477,-0.943952,0.25773,0.342202,-0.564007,-0.13611,0.85326,1 +-0.97273,-0.462275,0.194331,-0.204013,-0.905498,-0.691479,-1.28741,-0.256001,0.110629,0.291937,-0.568277,-1.12814,-0.23769,0.154624,0.532056,-0.48694,-1.32504,-1.17814,-1.03691,-1.1557,-1.3954,-0.914382,-0.034276,0.548042,0.110958,-0.0525501,-0.00999283,0.682055,1.48981,1.72672,1.84644,1.49345,1.32186,0.715126,0.181486,0.264093,-0.283048,-0.849671,-0.792163,-1.2706,-1.00491,-0.609816,0.188917,-0.326916,-1.17282,-1.04027,-1.00115,-0.79184,-1.18565,-0.00175912,0.319045,0.402721,0.791869,-0.745242,-0.67588,-0.247839,-0.643021,-0.4249,1.85374,0.79363,1 +-0.863991,-0.604872,-0.994902,-1.02073,-0.885697,-0.994328,-1.20973,-1.5161,-1.14457,-1.07323,-1.10933,-0.64482,-0.845655,-0.120191,-0.499455,-0.423755,-0.253656,-0.64971,-0.995826,-0.999596,-0.694521,-0.609165,-0.779353,-0.711179,-0.219346,-0.180275,-0.158574,0.16053,0.879609,1.89841,1.59036,0.920852,1.03422,0.942161,1.17712,0.764621,0.521412,0.13449,-0.610322,-0.919654,-0.393031,-0.79058,-0.701773,-0.697534,-0.546284,-0.608724,-0.988501,-1.22121,-1.2079,-0.616468,-1.15491,-0.676791,-0.61033,0.268345,0.297648,-0.491907,0.18664,-0.455813,-0.346419,-0.796497,1 +-0.350745,-0.198318,-0.0606902,-0.543594,-1.13591,-1.02817,0.131957,0.0493347,-0.916509,-1.1268,-1.12365,-0.404943,-0.890348,-0.665564,-0.588051,-0.215717,1.02442,0.493565,-0.987686,-1.4835,-1.05796,-0.255879,0.0488657,0.11938,0.549048,0.801903,0.701569,0.399158,0.95911,1.61573,1.81093,1.46203,1.28796,1.54716,1.96475,2.32906,2.28622,1.87414,1.33468,0.528895,0.0739173,-0.267846,0.334967,0.117975,0.276121,0.226738,-0.147815,-0.984096,-0.968707,1.30816,-0.896761,-0.458812,-0.92193,0.597076,0.184775,-1.08464,0.463194,-0.471269,-0.152287,0.296715,1 +-0.863991,-0.350017,-0.575938,-0.429684,-0.804692,0.213683,0.376342,-0.83379,-0.878498,-0.537579,-0.171908,0.882252,0.71292,-0.17795,-0.423029,0.680049,1.19547,1.19903,0.474008,-0.47038,-0.682885,-0.749072,-0.37004,0.264916,0.749108,0.838998,0.976342,1.03747,1.23133,1.25288,1.04641,1.08311,1.63419,2.05009,2.31283,2.29952,2.4096,2.34369,1.68128,0.953721,0.0143069,-0.600926,-0.956462,-1.08016,-0.260058,0.247643,-0.136314,-0.354457,-0.9548,0.00555883,1.23506,0.807538,-0.227912,-0.731545,-0.097407,0.170563,-0.141767,0.564305,-0.314063,0.893013,1 +-0.150666,0.190033,-0.130951,-0.644608,1.01342,0.469158,0.632055,0.935983,-0.788116,-1.132,-1.10707,-1.17169,-0.852749,-0.876539,-0.658636,-0.392807,-0.815707,-0.67877,-0.0120608,-1.31674,-0.431545,-0.382108,-1.12831,-0.400869,-0.650496,-0.54111,-1.22754,-1.38718,0.109994,1.29093,1.4053,-0.14463,-0.384091,0.458252,1.09994,1.31172,1.01034,1.71074,2.8085,3.28383,2.83937,2.64571,3.78981,4.21728,2.66222,2.17092,2.15229,1.51363,1.21464,0.0128768,0.377337,-0.396533,0.650233,-0.18366,0.537502,2.0185,-0.919574,1.84718,2.84057,2.28437,1 +0.506115,0.815034,-0.107531,0.139866,-0.460871,1.30495,-0.0638739,-0.380484,-1.01111,0.0694924,0.074504,0.592401,0.251094,-0.21443,0.0145967,-0.023153,0.0163716,0.3215,0.780611,0.976778,1.06447,0.80359,0.45538,0.367376,0.658469,0.803589,0.256639,-0.439835,-1.40843,-2.2588,-1.05506,1.33682,1.86904,1.73743,1.44725,1.3704,1.08995,-0.782526,-0.171792,1.05839,1.36022,1.20968,1.10695,1.3026,-0.211914,-0.869293,-0.645786,-0.795044,-0.123181,0.225098,-0.788504,-0.74945,0.310306,1.02169,-0.337261,2.0185,2.08795,0.347916,-0.152287,-0.200199,1 +0.0711611,-0.137638,-0.614972,0.752401,1.47245,1.1916,-0.481431,0.00588313,-0.157981,0.530004,0.73537,0.312545,-0.798124,0.224544,0.867942,1.50876,1.20988,1.42616,1.45157,1.53303,1.51634,0.963037,0.000499649,-0.315137,0.597634,0.318823,-0.370658,-1.15741,-1.42799,-2.01825,-1.21815,0.57851,0.669596,1.26736,1.30138,1.20154,0.76275,-0.927615,0.743442,1.84591,0.866385,0.234144,-0.0636133,0.500597,-0.394597,-0.351142,-0.219118,-0.362468,-0.270592,-0.638422,-0.755194,0.340441,0.281979,0.391619,-0.0409706,-0.544208,-0.850436,0.657043,-0.378774,-0.89588,1 +0.353881,-0.313609,-0.536904,-0.674698,-1.03151,-0.529058,-0.609288,-0.372263,-0.664792,-0.952709,-0.599926,0.0448259,-0.0773633,-1.0863,-1.2681,-0.955025,-0.72772,-0.358347,-1.26212,-0.904032,-0.00449967,0.291246,0.767961,0.763836,0.390225,-0.330342,-0.52331,-1.07013,-0.984284,-0.633424,0.0398356,0.738426,1.50102,1.084,0.762656,0.584779,0.524747,0.321368,0.445564,1.61811,2.51502,2.28182,2.74947,1.46015,0.817576,0.680679,0.296105,0.118173,-0.562632,0.473908,-0.788504,-1.30997,-0.879439,-1.16985,-1.22613,-0.160672,0.307633,-0.393988,0.0903768,-0.100816,1 +-0.442085,-1.05087,0.530023,-0.186819,-0.754289,-0.601809,-0.512182,0.124494,-0.878498,-1.28972,-0.679049,0.693064,0.329129,-0.0867507,-1.47791,-1.38099,-0.756923,0.0152248,-0.476423,-0.00131974,0.152588,0.387775,0.708403,0.852914,1.3252,0.667433,-0.186662,-0.781335,-0.66753,-0.579516,-0.244754,0.0664032,0.587277,0.55166,0.551953,0.538588,0.259233,-0.451029,-1.03127,0.410235,0.709762,1.3537,1.25947,0.253768,-0.254782,-0.360102,-0.659587,-0.200652,-0.540381,-0.982366,-1.1216,-0.427673,0.154506,0.035494,0.0154657,1.00737,-0.107198,-0.88859,-0.394951,1.13153,1 +-0.750903,0.599621,0.48058,0.131269,1.16103,1.41662,0.331025,0.116274,-1.0922,-0.906584,-0.163619,0.869402,-0.0482774,-0.518429,-1.02178,-1.13856,-0.844151,-0.145751,-0.685735,0.225215,0.534252,0.560119,0.558508,0.638374,1.3252,1.04639,0.21064,-0.393037,-0.409466,-0.191293,0.268348,0.352001,0.925755,0.687017,0.783495,0.84413,0.5781,-0.266499,-1.39696,-0.168513,0.309437,1.40111,1.37171,0.247016,-0.174322,-0.196593,-0.444528,-0.255125,-0.598789,-0.953094,-0.763522,-1.13351,-0.0579483,-0.484997,0.424629,-0.230406,-0.0380594,-0.100318,-0.799392,1.44956,1 +0.266891,0.997073,-0.292292,-0.573683,-0.687685,-0.429236,-0.217626,-0.776246,-1.25185,-0.894681,-0.966153,-1.08745,-0.342683,-0.0891827,-0.536938,-1.09386,-0.933275,-1.37047,-1.53383,-1.60686,-1.87054,-1.20827,-2.01449,-1.86627,-0.407565,0.369829,0.0555457,-0.397253,-0.348696,0.220033,1.22165,2.13359,2.06467,1.1999,1.71893,2.32906,2.44211,2.09859,1.20006,0.205938,-0.179719,-0.283848,0.347198,0.916979,0.688972,0.438029,0.105196,0.262365,0.110451,-1.23849,-0.522026,0.298922,1.9108,-0.909607,1.53925,0.449497,-0.712159,0.255178,0.219798,-0.239953,1 +-0.698708,-0.959849,-0.339132,-0.489863,-1.20072,-0.471533,-0.722579,-0.831441,-0.890323,-0.879057,-1.21332,-1.18383,-1.06912,-0.818779,-0.430817,-0.365728,-0.240382,-0.331199,-0.708216,-0.966091,-0.778301,-0.765095,-0.722193,-0.322246,0.0791113,0.584812,0.754488,-0.226081,-1.29563,-1.08008,-0.0582987,0.0945409,-0.551151,0.144294,0.482105,0.482175,0.461807,0.706862,0.675629,0.754462,0.761775,0.0533801,-0.121889,-0.894097,-1.23811,-0.80583,-0.9678,-1.29331,-1.14393,-0.93114,-0.430424,-0.74945,-1.12022,-0.950699,-0.252607,-0.753409,-0.435605,-1.0277,-0.443484,-0.83625,1 +-0.890088,-1.0266,-0.929846,-0.663951,-0.298861,-0.615344,-0.363285,-0.741015,-1.01703,-0.940806,-0.787561,-0.457059,0.0396895,-0.235102,-0.4683,-0.523046,-0.465278,-0.585855,-0.435723,-0.357684,-0.165078,0.0864653,0.121615,0.355667,0.858121,1.02026,1.21244,0.684585,0.153698,-0.100693,-0.419526,-0.67737,-1.03974,-1.44625,-1.06305,-0.640417,-0.592744,-0.291385,-0.476703,-0.933647,-0.806213,-0.61515,-0.510397,-0.537733,-0.701928,-1.09626,-0.868896,-0.695712,-1.00208,-1.16531,-1.2132,-0.853249,-0.978584,-0.416511,0.297648,-0.561641,-0.833151,-0.239425,-0.346419,-0.697114,1 +0.00591789,-0.0193125,-0.471848,-1.02502,-1.11971,-0.733777,-0.521892,-0.283011,-0.681686,-0.990651,-1.38061,-0.923248,-0.688166,-0.563421,-0.231233,-0.629214,-0.562746,-0.60765,-0.679533,-0.274304,-0.267088,0.00556895,0.1424,0.334756,0.714404,0.8175,1.18313,0.924899,0.274406,0.230452,0.505273,0.116113,-0.665913,-0.999531,-0.872416,-0.487457,-0.376415,-0.0880731,-0.268239,-0.68961,-0.78342,-0.154647,-0.247795,-0.254894,-0.329306,-0.690852,-0.153565,0.00762555,-0.340125,-0.814053,-0.70523,-0.71831,-0.497021,-0.0192945,-0.591225,0.344897,-0.643021,-0.378531,-0.47584,0.435852,1 +-0.694359,-0.923441,-0.651404,-0.855234,-0.568878,-0.639031,-0.984766,-1.42919,-0.744193,-0.863434,-0.689599,-0.733345,-0.458317,-0.24787,-0.291595,-0.773637,-0.669695,-0.531177,-0.376418,-0.419362,-0.464514,-0.225396,-0.0942339,0.0060459,0.623765,0.769023,0.885158,0.853648,0.469619,0.419807,0.662755,0.28916,-0.246569,-0.750009,-0.989345,-0.65329,-0.518134,-0.339748,-0.197411,-0.588861,-0.720888,-0.0888604,0.062292,-0.333669,-0.333263,-0.23915,-0.343323,-0.317608,-0.540381,0.393411,-0.205584,-0.936289,-1.12022,-1.21094,-1.00039,-0.596508,1.03359,0.935257,-0.831747,-0.02131,1 +-0.39424,-0.814217,-0.820551,-0.631713,-0.369066,-1.4173,-0.528366,-0.601265,-0.37591,-0.657357,-0.465794,-0.79617,-0.49024,-0.234494,-0.285267,-0.725496,-0.617358,-0.50097,-0.279515,-0.331413,-0.29579,-0.0725917,0.0904365,0.313428,0.888334,1.01436,1.21244,1.19936,0.854219,0.828868,0.773974,0.280719,-0.219936,-0.794118,-0.968506,-0.442402,-0.420181,-0.137375,0.0673139,-0.553598,-1.00667,-0.0758217,-0.188799,-0.449956,-0.335242,-0.419831,0.000541851,-0.271146,-0.081461,0.1446,-1.07164,-0.604131,-0.879439,-0.731545,-0.252607,-0.788275,-0.573882,-0.780396,-1.1553,-0.935633,1 +-0.607368,-0.856693,-0.846573,-0.593026,-1.17912,-1.10768,-0.583393,-0.50849,-0.701958,-0.430449,-0.338443,-0.276438,-0.343392,-0.23875,-0.730681,-0.757303,-0.615083,-0.422967,-0.396187,-0.410225,-0.21938,-0.0983848,-0.246127,0.162037,1.12106,1.20531,1.21244,1.11209,0.924563,0.597384,0.39639,-0.0316098,-0.61749,-0.989585,-1.2178,-0.587411,-0.491457,-0.138784,0.0271279,-0.499306,-1.18141,-0.426089,-0.472985,-0.387686,-0.562112,-0.590805,-0.123664,0.0572917,-0.298405,-0.616468,-0.938398,-0.884389,-0.936093,-1.00549,-1.12737,-0.631375,-0.712159,-1.05861,-0.734681,-0.637484,1 +-0.328997,-0.789945,-0.687835,-0.831593,-0.259259,-0.0333335,-0.126993,-0.553116,-0.52373,-0.905096,-0.599926,-1.22952,-1.23157,-1.24681,-1.23646,-1.13942,-0.917725,-0.745684,-0.67992,-0.655034,-0.253125,-0.0499251,0.220745,0.369468,0.497604,0.887896,0.726807,0.425298,0.653178,0.62094,0.636586,0.901156,0.850699,0.923566,0.992655,1.10386,1.08995,0.807814,0.317471,0.0900769,-0.224135,-0.742574,-0.821923,-0.362928,-0.499459,-0.469107,-0.888447,-1.02735,-0.946456,-0.821371,-1.18822,-0.853249,-0.822784,-0.18366,0.579829,0.693565,-0.539313,-0.950416,-1.18765,-0.83625,1 +-0.289851,-1.10851,-0.945459,-0.949801,-0.552677,-0.236361,-0.531603,-0.813826,-0.131795,-0.469135,-0.69186,-1.10958,-1.50044,-0.805404,-1.21406,-1.26407,-0.595361,-0.705153,-0.757443,-0.362633,-0.051432,0.391683,0.920654,1.04027,1.03205,1.24072,1.21244,0.898338,0.884188,0.672129,0.679578,0.788136,0.685576,0.836644,0.906598,0.609768,0.47848,0.266901,-0.588219,-0.817785,-0.617446,-1.26294,-1.22842,-1.24146,-1.06795,-0.977552,-1.13111,-0.857527,-1.11334,-0.960412,-0.913416,-1.04009,0.310306,-0.128871,-0.689989,-0.439607,-0.833151,-0.687658,-0.94499,-0.756744,1 +-0.724806,-0.704994,-0.573336,-0.78216,-0.702086,-0.591658,-0.557498,-0.859626,-0.446019,-0.580729,-1.10933,-1.42942,-1.49335,-1.02854,-1.16879,-1.30792,-0.800916,-0.601532,-0.719069,-0.404894,-0.0510441,0.335407,0.701608,0.710306,0.943452,1.18171,1.21244,0.763846,0.483771,0.365447,0.346388,0.345905,0.29238,0.415872,0.490595,0.462865,0.391365,0.0509115,-0.709782,-0.684013,-0.540888,-1.03239,-1.37806,-1.23696,-0.890547,-0.822256,-1.12421,-1.11387,-1.16062,-1.15068,-1.17989,-0.967428,-0.468694,-1.08767,-0.605334,-0.596508,-1.05785,-0.59492,0.106554,-0.14057,1 +-0.703058,-1.14796,-0.91163,-0.178222,-0.408668,-0.452923,-0.463629,-0.477956,-0.0583077,-0.446072,-0.62404,-1.00106,-1.30748,-1.05164,-0.976024,-1.13469,-0.767163,-0.644357,-0.545806,-0.0763237,0.225895,0.678532,1.12051,0.962066,0.995305,1.26517,1.13958,0.907192,0.733928,0.522185,0.399661,0.495503,0.469609,0.586689,0.619486,0.556383,0.495153,0.184731,-0.716814,-0.762373,-0.7092,-1.2499,-1.33562,-1.32473,-0.949243,-0.991737,-1.20241,-1.28209,-1.24128,-0.64574,-0.571991,-0.583371,-0.936093,-1.32052,-1.15559,-0.648808,-0.67759,-0.88859,-0.912635,-0.975386,1 +-0.68131,-1.02963,-1.00791,-0.537146,-0.343864,-0.197447,-0.301785,-0.54607,-0.155447,-0.129889,-0.590884,-0.992498,-1.08969,-1.08934,-0.869903,-0.674776,-0.569572,-0.692153,-0.459755,0.032946,0.273991,0.978669,1.41111,0.929028,0.680108,0.916982,0.930343,0.889484,0.752242,0.533057,0.367417,0.250236,0.189239,0.487226,0.673127,0.54351,0.627701,0.162193,-0.490266,-1.07414,-1.05459,-1.39392,-1.00395,-1.16868,-1.27042,-0.846148,-0.939049,-1.00012,-0.910299,-0.806735,-1.12993,-1.00895,-0.327057,-0.101477,0.0436839,-1.01491,-0.712159,-0.795852,-0.799392,-0.697114,1 +-0.894438,-0.513852,-0.510882,-0.201864,-0.153053,-0.464766,-1.16279,-0.519059,-0.465446,-0.667773,-1.19448,-1.00035,-1.19965,-1.28451,-1.33674,-1.06635,-0.557436,-0.602679,-0.534565,-0.259836,0.0715229,0.750049,1.10612,0.829495,0.529859,0.74078,1.21244,1.23014,1.25131,1.04404,0.907623,1.1347,1.17126,1.26347,1.29829,1.07206,0.949902,0.705454,0.0909231,-0.417587,-0.687576,-1.04898,-1.22266,-0.972122,-1.12929,-0.950674,-1.17251,-0.969677,-1.1634,-0.799417,-0.946725,-0.645651,-0.751966,-1.19725,-1.08504,-0.927743,-0.349182,-0.455813,-0.896457,-0.697114,1 +-0.977079,-0.874897,-1.07817,-1.03362,-0.999104,-0.723625,-1.27123,-0.466213,-0.797408,-0.671492,-1.04151,-1.13742,-1.47348,-1.44258,-1.1537,-1.06936,-0.804708,-0.272315,-0.231451,-0.154754,-0.0696619,0.126327,-0.0646546,-0.304682,-0.733378,-0.569775,-0.0470364,0.663083,1.48981,1.5206,1.2296,0.837846,0.627468,0.64161,0.593245,0.63097,0.384696,0.0325993,0.0632953,-0.145005,-0.228226,-0.676788,-0.619035,-0.487467,-0.426254,-0.686372,-0.715939,-0.565939,-0.593226,-0.367657,-1.09662,-0.894769,-1.19104,-1.22464,-0.746425,-1.10208,-0.764013,-0.703114,-0.459662,-0.677238,1 +-0.959681,-0.853659,-0.789323,-0.0965507,-0.898298,-0.40555,-0.83587,-0.716353,-1.40474,-0.881289,-1.56071,-0.676946,-0.919434,-1.17385,-0.865522,-1.09945,-1.23933,-0.946809,-1.63617,-1.56346,-1.18673,-1.81128,-2.31947,-2.21672,-2.59639,-2.25339,-1.47464,-0.879147,-0.505616,-0.13648,0.494057,0.749681,1.25503,2.10372,2.34409,2.14618,2.00946,1.72624,1.7275,1.79889,1.29126,0.816738,0.252229,-0.326916,-0.363601,-0.474334,-0.397376,-0.082094,-0.456941,0.210462,0.760399,-0.946669,-0.836948,-0.457602,0.438738,0.397197,-0.418321,-0.734027,-0.103754,-0.0411866,1 +-0.502979,-0.644314,0.163104,-0.545743,-0.882097,-1.17536,-1.38452,-0.95475,-1.28564,-1.19673,-1.38211,-0.46277,-1.20107,-1.22675,-1.11476,-0.901296,-0.982957,-1.58613,-1.44662,-1.34949,-1.59593,-2.06999,-1.80064,-2.29367,-2.50615,-2.04768,-0.968647,-0.197834,-0.0336069,0.134868,0.935194,0.462207,0.85312,1.90739,2.1438,2.21736,1.7206,1.36939,1.25682,1.69926,1.49463,1.20316,0.67671,-0.168616,-0.552879,-0.721463,-0.360574,0.105356,0.121576,-0.126164,-0.605301,-0.957048,0.961833,0.843624,-0.196171,-0.561641,0.584186,1.53805,3.4715,-0.0411866,1 +-0.115869,0.168795,-0.784119,-0.977741,-0.804692,-1.02817,-1.41851,-0.66703,-0.79065,-0.969821,-1.53207,-0.315703,-0.585301,-1.15561,-0.849458,-0.667468,-0.792572,-1.307,-1.53887,-1.70014,-1.49974,-2.17042,-1.76266,-1.81608,-2.38857,-1.98993,-0.467949,0.639473,0.851722,0.846988,1.40671,0.876769,1.14899,2.03885,2.29971,2.0822,1.38464,1.09705,1.31308,1.98752,1.6121,1.46038,0.876719,-0.107847,-0.303586,-0.820016,-0.337573,0.10856,0.0131044,-0.118846,-0.505371,-0.998568,1.1318,0.638167,-0.351371,0.25773,-0.0899132,0.0233331,0.106554,0.594864,1 +0.332134,0.0565372,-0.315712,-0.528549,0.122364,0.501304,-0.0913874,-0.804431,-1.37264,-1.17292,-1.09576,0.0305475,-0.90028,-1.02975,-0.963367,-0.909463,-1.03757,-1.23817,-1.23692,-1.71118,-1.55986,-2.3541,-1.62676,-1.74791,-2.65967,-2.13957,-0.923462,0.0264597,0.168266,0.287077,0.943139,0.4608,1.1761,2.02198,2.15808,2.1795,1.69809,1.58491,1.59388,2.01942,1.83651,1.40585,0.961615,0.10297,-0.29699,-0.601258,-0.483629,-0.259931,0.12992,-0.21398,-0.855124,-0.448432,0.749379,0.692956,-0.167952,-0.212973,0.981732,-0.193056,-0.0228664,0.0581964,1 +-0.420337,-0.735333,-0.669619,-0.285684,-0.649883,-1.34793,-0.526748,-0.440377,-0.794029,-0.663309,-0.631576,-0.842575,-0.921562,-1.04678,-1.24084,-1.2443,-1.11266,-1.02366,-0.452778,-0.750979,-1.47143,-1.41969,-0.910061,-0.367413,-0.453702,-0.65366,-0.915727,-0.0182303,1.40531,1.89841,2.10346,2.08435,1.68987,1.08746,0.58707,0.281888,0.43388,-0.661854,-1.28545,-0.90622,-0.689329,-0.669083,0.096826,1.27934,1.17503,0.603031,-0.169666,-1.10586,-1.01321,-0.126164,-0.297185,-1.10237,-0.567839,0.145071,-1.14148,-1.04978,-0.349182,-0.579464,-0.20082,-1.05489,1 +-0.328997,-0.513852,-0.430211,-0.859533,-0.711087,-0.441079,-0.50409,-0.516711,-0.531332,-0.825492,-0.871959,-0.999637,-1.09324,-0.731836,-0.395282,-0.707873,-0.846047,-1.05464,-1.66756,-1.66207,-1.58468,-1.82574,-1.54482,-0.560624,0.688274,1.26517,0.676737,-0.0835791,-0.367842,-0.530592,-0.670937,-1.09522,-1.23585,-0.839093,-0.318645,-0.569616,-1.07542,-1.415,-1.37134,-1.01928,-0.380758,-0.514397,-0.631986,-0.899348,-0.746774,-0.699065,-1.01495,-0.713335,-0.451378,-0.49938,-0.655265,0.0601836,-0.893602,-0.786333,-0.280825,-1.06721,-0.539313,-0.857678,-1.13912,-0.95551,1 +-0.985778,-0.796013,-0.963675,-0.926159,-0.963102,-1.28872,-1.11748,-0.907775,-0.613266,-0.724314,-1.0724,-1.19596,-1.2862,-1.24924,-0.834854,-0.910752,-1.09673,-1.20414,-1.53228,-1.65407,-1.52999,-1.31066,-0.892074,-0.233587,0.576812,1.10583,0.51228,-0.473985,-0.729965,-1.02844,-1.0831,-1.3977,-1.11819,-0.802767,-0.604213,-0.803979,-1.27091,-1.30325,-0.708777,-0.369451,0.0534628,0.152948,-0.136998,-0.49572,-0.573983,-0.319784,-0.709039,-0.931226,-0.676666,-0.762827,-1.14658,-0.676791,-1.16271,-1.12876,-0.577116,-0.805709,-0.90229,-0.672202,-1.18765,-0.597731,1 +-1.11192,-0.929509,-0.901221,-0.32652,-0.399668,0.25598,0.0413247,-0.378135,-0.456999,-0.888729,-1.0724,-0.897547,-0.804509,-0.865595,-0.660096,-0.882384,-1.01747,-1.06114,-1.39274,-1.54252,-1.48694,-1.66785,-1.23983,-0.375777,0.714812,1.26517,0.584332,-0.133328,-0.356604,-0.853583,-0.846644,-1.09568,-1.09058,-0.780712,-0.300507,-0.598391,-1.18504,-1.24362,-1.05086,-0.639795,-0.159849,-0.163537,-0.34708,-0.894847,-0.686759,-0.478813,-0.970101,-0.767808,-0.509786,-1.09214,-0.680248,-0.157795,-0.737802,-1.01918,-0.802861,-1.36358,-1.04057,-0.471269,-0.896457,-0.975386,1 +-0.363793,-0.601838,-0.799733,-0.704787,-0.255659,-0.732085,-0.979911,-0.988807,-0.668171,-0.736217,-0.977457,-0.944665,-1.02301,-0.835803,-0.740904,-0.802435,-0.965132,-1.09976,-1.41522,-1.60077,-1.42023,-1.33919,-0.871289,-0.11858,0.941819,1.26517,0.433715,-0.346239,-0.483139,-0.965927,-1.07422,-1.58059,-1.37192,-1.05964,-0.761662,-0.780504,-1.3376,-1.08022,-0.751475,-0.353219,0.150476,0.0812355,-0.405356,-1.08391,-0.800854,-0.519877,-0.901097,-1.07382,-0.707261,-0.799417,-0.172274,-0.624891,-0.624493,-0.389117,-0.0832979,-0.666241,-0.86772,-0.934959,-0.492017,-0.83625,1 +-0.663912,-0.492614,-0.909028,-0.926159,-0.966702,-1.53912,-0.903844,-0.46269,-0.839642,-0.794246,-0.828253,-1.19525,-1.58912,-1.28755,-0.821711,-1.02681,-1.17334,-0.994222,-0.797368,-0.907459,-0.88962,-0.228522,0.405016,0.849151,0.936512,0.215968,-0.0665758,0.0433239,-0.231734,-0.922439,-1.32657,-0.8265,-0.726442,-0.486648,-0.750085,-0.590819,-0.18843,-0.246778,-0.169281,-0.171311,-0.123031,-0.397641,-0.685226,-0.263896,-0.0806723,0.0826409,-0.375525,-0.413736,-0.206621,-0.689647,-1.13826,-0.74945,-0.497021,0.0491911,-1.14148,-1.04978,-0.919574,-0.316706,-0.653793,-0.339335,1 +-0.794398,-0.883999,-0.825755,-0.345863,-0.131451,-0.309112,-0.345482,-0.803256,-0.708716,-0.778623,-1.04603,-1.4287,-0.842108,0.266496,0.779833,1.19714,1.35703,1.26327,1.20311,0.951269,0.855797,0.895819,0.959427,0.906445,0.908748,1.1248,1.21244,0.924899,0.142044,-0.521079,-1.00459,-0.671274,-1.17484,-0.830444,-0.52356,-0.595362,-0.620671,-0.843097,-1.45021,-1.67639,-1.40524,-1.47867,-1.34425,-1.28272,-1.0574,-1.18063,-1.0322,-1.05299,-0.938112,-0.704283,-0.305513,-0.593751,-1.19104,0.10398,-0.563007,-0.0909387,-0.0380594,-0.363075,-0.394951,-0.518225,1 +-0.389891,-0.850625,-0.294894,-0.644608,0.0989628,0.817688,-0.102716,-0.869021,-0.391114,-0.53014,-1.14324,-1.59433,-1.04926,0.0488327,1.15953,1.80019,1.58572,1.35121,1.38296,1.19494,1.28866,1.23504,1.17488,1.36898,1.21292,0.97389,0.948254,0.158844,-0.832359,-1.16208,-0.412984,0.103451,-0.0683721,-0.44643,-0.566009,-0.946716,-0.457278,-0.536017,-0.833856,-0.910698,-1.1966,-1.31213,-1.15863,-0.659272,-0.540348,-0.773726,-0.918348,-0.783829,-0.790701,-1.45072,0.227443,-0.0747554,-0.369548,-0.580876,-0.704098,-0.30014,-0.504744,-0.393988,-0.103754,-0.220076,1 +-0.228958,-0.592736,0.0720251,-0.21261,-0.171054,-0.513831,0.263051,-0.292406,-0.33452,-0.525676,-1.07165,-1.60147,-0.87545,-0.0697268,1.23693,1.93129,1.71011,1.37951,1.54925,1.3004,1.51634,1.45897,1.35995,1.26903,0.920588,1.14883,1.08015,0.292071,-0.826948,-0.900242,-0.148489,-0.179802,-0.383122,-0.372049,-0.657468,-1.17956,-0.394339,-0.708339,-1.27892,-1.14746,-1.28485,-1.47156,-1.13129,-0.511475,-0.411745,-0.90737,-0.780342,-0.713335,-0.885267,-0.799417,-0.0473623,-0.448432,0.621906,-0.402814,-1.05683,-0.0735053,-0.573882,-0.826765,-0.702326,-0.816374,1 +0.192948,-0.274167,0.0980477,0.000165327,0.0755613,-0.408933,-0.131848,-0.140913,-0.460378,-0.922951,-1.50947,-1.29449,-0.729312,0.17712,0.681501,1.04884,1.20115,1.26939,1.13954,1.00153,1.51634,1.39566,1.25922,1.20212,0.965092,0.879887,0.370212,-0.448267,-1.22653,-0.713152,-0.192416,-0.459772,-0.640733,-0.512595,-0.842702,-1.24923,-1.01957,-1.05298,-1.20708,-0.72823,-0.951732,-1.17582,-1.50181,-0.654771,-0.558815,-0.822256,-0.316872,-0.380091,-0.723949,-0.25057,-1.06331,0.163983,0.0553607,-1.06028,-0.816971,1.51294,1.0163,-0.996785,-0.168465,-0.279706,1 +-0.263754,-0.10123,-1.06256,-0.504907,-0.743489,-0.314188,0.842453,0.0035344,-0.605664,-1.29121,-1.34519,-0.79974,-0.325657,0.651966,0.983798,1.3162,1.27473,1.23765,1.03101,1.14087,1.51634,1.02791,0.634455,0.850405,0.943861,1.0249,0.742683,-0.185607,-1.43631,-1.53399,-0.959265,-0.987354,-0.917714,-1.08256,-1.11476,-1.32382,-1.06917,-0.950153,-0.967977,-0.928049,-1.03881,-1.38858,-1.22554,-0.569994,-0.75271,-0.71101,-0.437627,-0.511466,-0.0619917,0.795898,-0.0556897,-0.292734,-0.14293,-1.19725,-0.577116,-0.178106,-0.383751,-0.641289,-0.589083,-0.697114,1 +-0.798748,-0.905237,-0.989698,-0.169625,-4.32719e-05,-0.268506,-0.32768,-1.0029,-1.10487,-1.25699,-0.945054,-0.778322,-0.376735,0.0062729,0.44492,0.416563,0.466543,0.671365,0.779835,0.870934,1.31969,1.46835,1.26921,1.13144,0.77728,0.377838,-0.2119,-1.03219,-0.699997,0.155707,-0.0540929,-0.560599,-0.211705,-0.301127,-1.10898,-1.20304,-1.35844,-1.37838,-0.785633,-0.527851,-0.710368,-1.26768,-1.65937,-1.02239,-0.870102,-1.04251,-0.822894,-0.84471,-0.715605,-0.755509,0.00260232,-1.09199,-0.412039,0.0628882,-0.139734,-0.422174,-1.29984,-0.873134,-0.864102,-0.756744,1 +-0.272453,-0.0466184,-1.03654,-0.352311,-0.534676,0.687412,1.60797,-0.187888,-0.870051,-0.335966,0.262892,0.610963,0.963342,0.872061,1.11134,1.47352,1.50835,1.78252,1.91942,1.44203,1.17346,1.21393,0.405416,-0.660994,-1.08124,-1.49884,-0.016506,0.747404,1.07899,0.998744,-0.310644,-1.44037,-1.19276,-0.669573,-0.340255,-0.581732,-0.958711,-0.629455,-0.39382,-0.180267,-0.749524,-1.61617,-1.52124,-0.744799,-0.422956,-0.993231,-0.530781,-0.453789,-0.584882,0.261687,-0.38046,-0.72869,-1.2052,0.172465,0.819684,-0.45704,-0.90229,-0.780396,0.397751,1.94647,1 +-0.833544,-0.577566,-0.737278,-0.107297,0.156566,-0.0620957,0.662806,0.849079,0.773708,0.675076,0.664536,0.758744,0.864025,1.35907,1.82595,2.01295,2.21489,1.81808,1.34188,0.905962,0.795677,1.00915,0.332667,-0.259097,0.16526,0.615163,-0.285987,-0.898962,-0.0540023,0.608256,0.448729,-0.0728785,-0.0320547,-0.0174414,-0.847333,-0.709325,-0.528554,-0.966117,-0.841391,0.0217913,-0.540303,-0.432016,-0.858615,-0.759054,-0.0173596,0.439523,0.811327,0.935262,0.705657,-0.0603028,-0.322168,-0.0436156,-0.482857,-0.443905,-0.252607,-0.387307,0.031079,-0.934959,-0.427307,-0.915757,1 +0.510465,0.111149,0.350467,-0.878876,-1.02431,-0.0451768,-0.26456,-0.326463,0.440902,0.131241,0.00969838,0.585976,0.776058,1.13958,1.75731,1.62052,2.03361,2.02762,1.48181,1.00419,0.570324,0.771544,0.198761,-0.118161,0.0791113,0.428001,-0.394269,-0.360995,1.02238,1.24472,0.242179,-0.70035,-0.258675,0.325922,-0.392738,-1.11671,-0.664854,-0.793326,-1.43212,-1.02208,-0.766472,-0.35082,-0.549967,-0.877591,0.161367,0.840455,0.746924,0.236731,0.405272,1.46915,-0.397115,-1.10237,-1.00691,-0.0603859,0.382302,0.0833954,-0.297328,-0.285794,-0.799392,0.256962,1 +-0.324647,-0.134604,-0.120542,-0.651056,0.592193,0.200148,0.292183,-0.398099,-0.534711,-0.227348,1.29526,1.14997,0.879632,1.28428,1.60981,1.84317,2.14625,2.09415,1.68957,1.07424,0.781713,0.866509,-0.103028,-0.381214,0.404515,0.508093,-0.578265,-1.66586,-0.587614,0.370883,0.330967,-0.157292,-0.206378,-0.238422,-0.905218,-0.918699,-0.628591,-0.718669,-1.13274,-0.400795,-0.380758,-0.446832,-1.26295,-0.40119,-0.200043,0.0699485,0.695172,0.783059,-0.0369597,0.1446,-0.547009,-1.07123,-0.0579483,-0.430208,-0.224389,0.205429,-0.815867,-0.76494,-1.07441,0.078073,1 +0.375629,-0.201352,-0.0398722,-0.406042,1.86307,0.997029,-0.53484,-0.623578,-0.000869052,-0.0220148,0.583906,0.439623,0.676031,0.558942,1.28902,1.75505,2.11591,2.09415,1.85857,1.1344,0.912426,1.10138,-0.248925,-1.12646,-0.329991,-0.0866945,-0.257492,-0.817171,-0.350777,-0.443163,-0.147554,-0.502917,-0.0983944,-0.0598213,-0.621965,-1.06484,-0.969549,-1.18915,-0.346099,0.0374634,-0.142316,-0.0408543,-0.541334,-1.16793,-0.489566,0.443256,1.11954,0.255956,-0.26781,-0.309113,-0.563663,-0.915529,-0.893602,-0.430208,0.128338,-0.30014,-0.297328,-0.270337,-0.589083,-0.239953,1 +0.319085,3.78531,3.11667,1.8958,0.680398,0.440396,1.44775,1.08043,1.02374,1.22933,0.513826,-1.51009,-0.0383457,1.47823,1.46134,1.49243,1.58913,0.904226,-0.231838,-0.650846,-0.18835,0.508924,0.735984,1.36898,0.819742,0.0393447,-0.00510797,-0.812112,-1.03173,-0.613039,-0.454574,-1.69642,-1.33125,-1.57036,-0.126851,1.13528,1.433,0.0941094,-1.32915,-0.0476137,0.627359,0.643086,-0.0614549,-0.061332,0.208192,0.0729349,0.41686,1.40629,1.39821,-0.389611,0.518903,-0.251214,-0.511184,1.30933,1.0031,-0.335007,-0.00349016,0.224265,0.494817,0.0581964,1 +-0.450784,-0.0435844,1.33933,0.6127,-0.905498,-0.943571,0.334262,0.732817,0.0785314,-0.205773,-0.166633,-0.699077,-0.537771,1.14201,1.99389,1.72884,1.42074,0.611334,-0.328742,-1.07498,-0.365607,0.518303,0.849904,1.36898,0.695215,-0.0850084,-0.0205767,-0.462602,-0.686261,-0.275552,-0.3756,-1.31234,-1.21261,-1.4895,0.0159334,1.24887,1.53428,0.0527897,-1.3407,-0.236238,0.764112,0.646642,-0.0182874,-0.105596,0.220722,0.208819,0.845829,1.2605,2.35499,1.41792,-0.147292,-0.427673,-1.0494,0.0491911,-0.887516,-0.439607,0.203925,-0.347619,-0.184643,-0.816374,1 +2.45471,0.211271,-0.146565,-0.721981,-0.660684,-0.865744,1.49307,2.06925,0.892809,0.49727,0.261385,-1.11101,-1.21526,0.944413,1.7208,1.25258,1.10217,0.423974,-0.489602,-1.10772,-0.307814,0.568326,0.868691,1.07791,1.0688,-0.316853,-0.406074,-0.05491,-0.571797,-0.0155284,-0.135872,-0.933424,-0.67463,-0.880176,0.532272,1.34807,1.72435,0.482421,-0.925279,0.22161,0.928917,0.844593,0.42346,0.07071,0.421212,0.889731,1.34265,1.77318,2.24373,1.12521,-0.272203,0.392341,0.437779,-0.416511,-0.788752,-0.544208,3.10774,0.347916,-0.686148,-0.557978,1 +-0.0767235,-0.431935,0.475376,0.0452995,0.678598,-0.123004,0.98002,0.466235,-0.287218,-0.204285,0.0044235,-1.13957,-0.698098,0.636158,0.966274,1.51607,1.85916,1.8112,0.924803,-0.44449,-0.383061,0.277177,0.51374,0.684795,0.215887,-0.25278,-0.513948,-1.17806,-1.21779,-0.621646,-1.11207,-1.10975,-1.07993,-1.41295,-0.0774553,0.755156,0.49557,-0.492819,-1.13475,0.073845,0.641385,0.113832,-0.562198,-0.284903,-0.19081,-0.655014,-0.0397099,0.613233,0.636123,-1.00432,0.785381,-0.220074,0.0128698,-0.334328,-0.647661,-0.143239,0.44591,1.25984,2.27435,2.14524,1 +-0.246356,-0.283269,0.808465,-0.0428196,-0.945101,-0.358177,-0.874712,0.768048,0.925751,1.18395,0.462584,-1.18883,-0.582464,1.26118,1.53339,1.29772,1.26866,0.792193,-0.208969,-1.01521,-0.803512,0.21543,0.730388,1.36898,0.606617,0.04904,0.286762,-0.344131,-0.617999,-0.0730597,-0.064841,-1.20542,-1.14337,-1.26505,0.261368,1.0607,1.16081,-0.577806,-0.656535,1.02704,1.18781,0.745617,-0.0456268,-0.561741,-0.127497,0.253616,0.573267,0.973713,1.13954,-0.184708,0.677125,-0.531472,-0.992748,-0.197357,0.170666,-0.910309,0.929878,-0.177599,0.462462,0.495481,1 +-0.720456,0.40848,0.475376,-0.0449688,0.575992,2.60771,1.75849,0.844382,1.38188,1.63776,0.49348,-0.924676,0.401489,1.66671,1.83033,2.56443,2.21489,1.82382,0.450363,-0.39766,-0.422624,-0.473165,0.244728,0.708215,0.553131,0.291423,0.441043,-0.310824,-1.69188,-1.45608,0.586117,1.11219,-0.614585,0.15597,1.77642,1.26136,0.484732,1.15481,0.871535,-0.137728,-1.3392,-0.957713,0.195392,0.503598,0.0696953,-0.706531,-0.843595,-0.912,-0.965925,0.605631,-1.11327,0.766018,-0.836948,1.22714,0.466957,-1.04978,-0.712159,-0.703114,0.559528,0.237086,1 +-0.168064,1.2853,0.178718,-0.633862,1.74966,4.69889,4.06477,2.62472,1.39286,0.0851155,0.220693,0.514584,2.02107,2.40178,2.30787,1.4473,-0.245691,-0.961721,-0.919466,-0.50693,-0.314408,-1.07617,-2.01449,-0.532604,-0.169943,0.300697,-0.0747172,0.453124,0.687726,1.13283,1.2838,0.308857,-1.33609,-0.54719,0.446987,0.355339,-0.951209,-0.515357,-0.235588,0.403519,0.0236576,-0.964825,-0.54709,-0.635264,-0.701268,-0.602005,-0.756191,-1.14751,-1.12724,-0.389611,-0.630283,0.45462,-0.482857,-0.416511,-0.774643,0.588965,-0.781297,-0.625833,0.0256664,-0.239953,1 +-0.137617,-0.583634,-0.479654,-1.02717,-0.720087,-0.583198,0.0736935,-0.314719,-0.217109,-0.33671,-1.00232,-0.225035,-0.844945,-0.204094,-0.127546,-0.346815,-1.31253,-1.19382,-0.797755,-0.653131,-0.966806,-1.50059,-0.904066,-0.439762,-0.269565,-0.284816,-0.192361,0.308935,1.48981,1.20214,0.216945,0.0251346,0.482683,0.101914,-0.819547,-1.1576,-1.29342,-0.699887,-0.350118,-0.536807,-0.0721866,0.0344147,-0.526945,-0.994629,-1.07983,-0.502705,-0.237519,-0.969677,-0.865797,0.832488,-0.238893,-0.168175,0.182833,-0.80003,-0.323152,-1.17181,-0.746728,-1.10498,-0.572905,0.237086,1 +0.727942,0.159693,-0.237644,-0.178222,-1.23312,-0.263431,0.939559,0.461538,-0.153757,-0.501869,0.250835,0.540285,1.28541,1.71414,0.617731,-0.667898,-0.756923,-0.505558,-0.826826,-0.531297,-0.632462,-1.50958,-0.0218846,0.936556,0.883434,0.223556,-0.0747172,0.611225,1.48981,1.15639,0.178626,0.0875065,1.88599,1.27169,-0.00413362,-0.867207,-0.850338,-0.580154,0.964465,0.934691,-0.320563,0.483658,0.229926,-0.250392,-1.06861,-0.846148,-1.03795,-0.811065,-0.990957,-0.850642,-0.330495,-0.697551,-1.06357,-0.00559738,1.0031,1.19913,-0.141767,0.0851584,0.60806,-0.180323,1 +-1.15976,-0.228658,-0.695642,-0.66825,-0.572478,0.301661,1.18071,0.367588,-0.348035,-0.485502,-1.02945,-0.180059,-0.205057,0.166176,-0.079354,-0.590959,-1.43844,-1.0902,-0.77915,-0.594498,-0.960988,-1.66043,-0.742979,0.0512122,0.211396,0.0646369,0.0327497,0.664348,1.48981,0.851971,-0.0952159,-0.315801,0.931565,0.466036,-0.516999,-1.11028,-1.12169,-0.520991,0.111518,-0.56927,-0.579459,0.0936816,-0.183043,-0.46271,-0.808768,-0.746848,-0.612435,-0.750184,-0.487536,-0.89455,-0.438752,0.153603,-0.426203,-1.00549,0.297648,0.0485286,0.394056,-0.981328,-0.831747,-1.01514,1 +-0.0027812,0.0474352,0.865715,0.580462,-0.415869,0.00896377,-1.73572,-0.791513,-0.410542,-0.696787,-1.06864,-1.21952,-1.76009,-1.079,-1.05002,-0.745698,-0.987508,-0.700947,-0.489989,-0.611631,-1.01645,-1.89452,-2.10322,-1.63082,-2.14523,-1.84323,-1.03948,0.244429,1.08856,0.907237,-0.130264,-0.8945,0.580982,0.971568,-0.107556,0.273937,1.13414,1.44498,1.13626,0.0788825,-0.350953,-1.26234,-1.77377,-1.60607,-1.30076,-1.1993,-1.40827,-1.46474,-1.44431,-1.49462,-1.33812,-0.81173,1.83998,1.29563,-0.605334,0.955066,1.48299,0.0233331,0.963968,0.91289,1 +-0.481231,-0.723198,-1.07297,-0.855234,-0.59588,-0.96895,-1.38614,-0.71283,-0.322694,-0.771927,-1.09727,-1.30734,-1.23157,-1.16108,-1.39028,-1.09773,-0.96096,-0.333111,-0.692324,-1.0034,-1.54434,-1.61744,-1.75267,-1.85874,-2.45267,-2.12018,-1.19498,-0.234092,0.644854,0.769525,0.220683,-1.02065,0.24202,0.193161,-0.628525,-0.232271,0.350933,1.02568,1.63858,1.25485,-0.242252,-0.305185,-0.487374,-0.932359,-0.947264,-0.920062,-0.26972,0.0669045,-0.562632,-0.455473,-0.70523,0.921717,2.09492,0.487499,1.97663,-0.718542,-1.04057,-0.486726,0.155087,0.396098,1 +0.867128,-0.319677,0.39991,1.57126,1.83607,1.45891,1.61769,-0.681122,-0.451087,-0.0406138,-1.06487,-0.00372061,-0.371769,0.139424,0.0671702,-0.198524,-0.523304,-0.591973,-0.814035,-1.48541,-1.09635,-0.941348,-1.17787,-0.550587,-0.62314,-1.06381,-0.684511,-0.681836,-1.0463,-1.06604,-0.445696,0.116582,0.681702,0.732856,0.937471,1.40637,1.36089,1.30506,1.06543,1.40485,2.11294,1.19368,0.914131,0.497596,0.00638263,0.62095,0.64917,1.26851,0.675062,0.247051,0.893638,-0.552232,0.310306,0.706653,-0.421916,0.641265,2.00152,0.935257,4.08625,7.43241,0 +4.44245,5.93034,6.81969,8.0061,5.86471,1.26096,1.02857,-1.51845,0.125834,0.11041,0.412096,-0.173633,0.285855,0.20448,0.222943,0.0735588,0.0857747,0.056138,0.0801915,-0.721662,-1.49237,-1.66863,-0.852502,-0.0813593,-0.68765,-1.77157,-1.16363,-0.41749,-0.490631,-0.738973,-0.62187,-0.945148,-1.60242,-1.12235,-0.397369,0.27583,0.0362352,-0.0115377,0.273769,0.5983,0.415216,-0.0426323,-0.584501,-0.142358,0.553114,0.4776,0.800977,0.938466,0.405272,-0.0822567,-0.0390349,2.36453,1.45756,0.610773,1.22885,-1.20668,0.480479,0.734324,1.59489,3.29808,0 +-0.39424,0.117217,0.301024,0.524581,-0.237658,-0.295577,-0.0266498,1.59598,-0.484874,-1.3418,-0.0822351,0.0805218,-0.6832,0.451935,0.647912,0.759998,0.173003,-0.277668,-0.619453,-1.12904,-1.43341,-1.99925,-1.5644,-0.651375,-1.21475,-1.22948,-0.679219,-0.769108,-0.781162,-0.702733,-0.549438,-0.211691,0.236694,-0.0252255,-0.668273,-0.769525,-1.09001,-0.605039,-0.00250921,0.327397,0.0113849,0.134576,0.070206,-0.160363,0.0591432,0.108026,-0.441077,0.193473,0.33852,-0.374975,-0.663593,0.589559,1.06098,0.692956,2.78085,0.135696,2.83118,2.23359,1.78903,0.614741,0 +1.46736,2.06504,2.83042,1.48314,1.23303,0.244137,-0.539695,-0.517885,0.276188,1.12666,2.34044,1.92957,1.69829,1.47702,1.63366,2.11482,2.13373,1.83988,1.11202,0.667243,0.317045,-0.935095,-2.31787,-2.60315,-1.64835,-1.75345,-1.94888,-2.12035,-2.5027,-1.48507,-1.43265,-1.17213,-0.842174,-0.897906,-0.485741,-0.949745,-1.06917,-0.64495,-0.7354,-1.61482,-0.923096,-0.59737,-0.659325,-0.386185,-0.833829,-1.10298,-0.49398,-0.24391,-1.1189,-1.04823,0.802036,-0.469192,2.19407,-0.0192945,0.636266,1.82674,2.62377,-0.347619,0.54335,1.31042,0 +0.188599,-0.759605,0.670545,1.37783,-0.727288,0.227218,1.18232,0.304173,1.0609,1.70323,2.39093,2.33365,3.04262,2.49359,2.02748,1.55003,1.69229,1.88691,1.44731,0.869031,-0.12823,-1.24344,-2.36104,-2.71313,-1.7149,-0.90068,-0.811924,-1.07013,-1.48751,-1.81757,-0.693835,-0.407248,-0.412176,-0.397996,-0.111029,-1.17161,-0.751969,-0.740267,-0.724852,-0.850249,-1.35381,-1.08395,-0.992435,-0.996879,-0.783706,-0.835695,-0.903398,-0.525885,-0.415221,-0.1408,1.17677,1.1397,1.76916,-0.224751,0.932557,1.93134,-0.798582,4.59841,0.753659,1.80734,0 +1.28468,2.50496,2.15904,2.06129,1.23123,-0.820063,-0.623854,-0.793861,-0.344656,0.200429,0.638915,1.25278,1.75079,1.18457,1.3377,1.47695,1.85043,1.75423,1.42444,0.782605,0.479175,-0.398913,-1.34815,-1.48653,-1.83085,-2.25887,-2.14753,-2.15239,-1.82008,-1.87329,-1.06441,-0.603274,-0.374406,0.176728,0.432323,-0.391667,-0.815742,-0.358529,-0.030137,-0.659945,-1.14459,-1.38681,-1.21259,-1.0644,-1.03366,-0.786418,-0.165065,0.360095,0.688969,0.444636,0.452284,2.04275,0.0553607,-0.293237,0.918447,0.693565,-0.694874,0.33246,2.40378,1.17129,0 +-0.563872,-0.398561,-0.458836,-0.328669,-0.192655,-0.970642,-0.261324,0.046986,-0.998443,-0.556922,0.458816,1.60759,2.08847,1.65638,1.56697,1.59129,1.83526,2.09415,1.79926,1.29507,0.61842,0.295154,0.0696511,-0.318901,-1.24251,-2.56195,-2.66247,-2.55671,-2.23964,-1.85517,-0.832158,0.10392,-0.112921,0.440089,0.350126,-0.127773,-0.549812,0.296952,0.209974,-0.896705,-1.25504,-0.822585,-0.657167,-1.32323,-0.881313,-0.868546,-1.10466,-1.10746,-0.924205,-0.93114,-0.197256,-0.656031,-0.355384,1.67915,1.48281,-0.143239,-0.746728,0.317003,-0.508195,-0.915757,0 +0.0668115,0.420616,0.558648,-0.0385211,-0.253859,-0.792993,-0.894134,-0.803256,-0.270324,0.527772,1.14304,1.77751,1.59472,1.21984,1.17073,1.52767,1.54362,1.77793,1.90973,1.62973,0.833688,0.0997526,-0.195763,-0.779764,-1.47156,-2.29976,-2.45568,-2.8063,-2.25296,-1.4375,-1.09852,-0.684874,-0.603932,-0.0148467,-0.102539,-0.256124,0.404703,0.458944,-0.72234,0.147728,1.93411,0.986834,-0.433415,-0.540734,-0.91231,-0.769246,-0.635436,-1.03376,-0.762888,-0.104211,-0.813486,1.93895,1.16012,0.377922,2.59743,1.21657,-0.45289,0.641586,0.721304,-0.200199,0 +-0.763951,-0.623076,0.0277866,1.19729,2.08988,-0.205906,-0.738763,-0.300627,-0.864138,-0.800942,0.1054,1.06073,0.763288,1.08668,1.44236,1.15157,1.46549,1.79132,1.8543,1.52427,0.991163,0.81375,0.721993,0.535496,-0.266299,-0.904474,-1.08548,-1.11019,-0.841516,-0.895259,-0.940573,-0.635633,-0.472221,-0.752603,-0.692585,-0.56848,-0.182178,0.496977,0.199425,-0.222246,-0.669459,-0.593814,-0.191677,-0.813821,-0.922862,-0.970086,-1.13571,-0.711733,-1.16062,-1.0775,-1.07996,0.298922,-0.114603,-0.348025,2.49867,3.39574,0.324917,-0.393988,1.10957,0.535235,0 +0.171201,0.117217,0.0928432,0.599805,0.149366,-0.490144,-1.3651,-0.454469,-1.04068,-1.40578,-1.10255,-0.548441,-0.565438,-0.0989106,0.0540268,0.530898,0.834418,0.983759,1.27327,1.18009,0.768914,0.494073,0.422204,0.238987,-0.235677,-0.865271,-1.01383,-1.19788,-0.782827,-0.763435,-0.890571,-0.561068,-0.232526,-0.11085,0.209657,0.351553,0.449303,0.595111,0.318978,0.63972,0.684632,0.550629,1.0055,0.496095,-0.454613,-0.365328,0.0902458,-0.203856,-0.231653,0.1446,-0.230566,-0.583371,0.947669,0.91211,-0.774643,0.815599,-0.210905,-0.548551,0.88308,0.535235,0 +0.593106,0.517703,0.701772,0.169956,0.833408,0.809229,0.526857,-1.12386,-0.988307,-1.4653,-0.832774,-0.0208547,0.197179,0.475039,0.641584,0.690795,0.920887,0.990259,0.989922,1.15801,0.901953,0.676578,0.765563,1.08335,0.735227,-0.352684,-1.1734,-1.54781,-1.37887,-1.47465,-0.784025,0.0349828,0.400848,0.466468,0.489437,0.291731,0.248396,0.458005,0.511871,0.739349,0.471904,0.320674,0.0709255,0.28978,0.108606,0.136397,-0.246719,-0.618809,-0.18437,-0.631104,-1.26317,0.0809434,1.01849,-0.416511,-0.464243,0.850466,0.18664,0.0697021,0.54335,-0.319459,0 +1.33688,0.27195,0.155297,-0.32652,0.493187,-0.461382,-0.589867,-1.05809,-0.579479,-1.28824,-0.586362,-0.342118,-0.329913,-0.0831027,0.300343,0.378308,0.958433,1.57681,1.67174,1.42261,1.18432,1.14085,1.1357,0.785165,0.233852,-0.520876,-1.16404,-1.19198,-0.946823,-1.20511,-0.985434,-0.572792,-0.495464,0.0431014,0.0263527,0.131199,0.372608,0.480073,0.74294,0.178512,0.17619,0.347937,0.0198439,0.382059,-0.147942,-0.503452,-0.798743,-1.33496,-0.493098,-0.492062,-1.10495,-1.25807,-1.44598,1.61066,1.63801,-0.0212051,0.670609,0.533392,0.527172,0.694247,0 +-0.120219,-0.950747,-0.250655,0.546074,0.523789,-0.444463,0.322933,-0.20198,-1.12092,-0.846323,-0.925461,-1.18668,-1.43021,-0.606588,-0.276991,0.174569,0.337598,0.836548,1.11396,1.04721,1.03499,1.24246,1.41111,1.34013,1.15168,0.694833,0.0787488,-0.480309,-0.606344,-0.418248,-0.451303,-0.913258,-1.16419,-0.674763,-0.157337,-0.032741,-0.303889,-0.509722,-0.0452068,0.247357,0.495865,0.98387,0.572388,-0.133355,-0.730946,0.0609891,0.88148,0.485062,0.302363,0.869078,0.768727,0.828298,2.19407,0.925807,-0.788752,-0.247839,0.739748,-0.0384922,-0.0228664,0.0184432,0 +-0.355094,-0.799047,-0.61237,1.06834,1.66146,-1.062,-0.800264,-0.61066,-1.08629,-1.03901,-0.930736,-0.543443,-0.016354,0.0737606,0.181566,0.521442,0.702059,0.744397,1.17016,1.28593,1.09201,1.20963,1.41111,0.993432,0.711138,0.366035,0.271294,0.327907,-0.0635757,-0.683254,-1.38685,-1.49712,-1.21648,-0.611625,-0.0245865,0.0414674,-0.162587,-0.513948,-0.00401618,0.509305,0.848268,0.726059,0.650809,0.283027,0.0848639,-0.317545,-0.0857119,-0.583562,-0.629384,-0.155436,-0.472062,-0.178555,-0.0862756,-0.663059,-0.873407,0.292596,0.031079,0.425198,1.31988,1.35017,0 +1.03676,1.51892,4.05609,4.43836,4.45163,2.03247,-0.971819,1.10274,-0.701114,-0.998835,-0.565263,-0.197193,-0.0213198,0.242784,0.517939,0.154367,0.567045,0.916845,1.35622,1.37198,1.1948,1.46835,1.22404,0.993014,0.64622,0.0229048,-0.198467,-1.03598,-1.64859,-1.71655,-1.68172,-1.59278,-1.28912,-0.709359,0.19615,0.444692,0.334677,0.551444,0.336057,-0.118698,0.301255,1.30806,0.839307,-0.565492,-0.113648,-0.229444,-0.806793,-0.155792,-0.139869,-0.660375,1.15179,1.1397,1.30176,2.02158,-0.153843,1.19913,1.60398,1.02799,0.88308,-0.180323,0 +0.706195,0.265882,0.673148,1.0361,1.16103,0.75678,0.436224,-0.677599,-0.514438,-0.303232,0.330712,0.585976,0.907299,0.808829,1.04562,0.698962,1.02784,1.34662,1.607,1.34723,1.51634,1.4574,1.04856,0.498275,-0.0201022,-0.705931,-1.40421,-1.87877,-1.35681,-0.921533,-0.891038,-1.2556,-0.598121,0.519659,0.771918,0.601438,0.365939,-0.00825085,-0.0215975,-0.522814,-0.712122,-0.0882678,0.37022,-0.0778372,-0.539029,-0.513158,-0.393925,-1.09945,-0.387408,-0.455473,-0.197256,-0.147415,-0.92193,1.76133,0.509284,0.0310952,2.41635,3.73285,1.20663,-0.239953,0 +-0.0375776,0.651199,0.566455,-0.666101,0.156566,1.06132,-0.102716,-0.293581,-0.346346,-0.234788,-0.275145,0.261857,0.384463,0.488415,0.47072,0.537775,0.766152,1.33898,1.66088,1.4348,1.23513,1.2534,0.742779,0.437635,0.1032,-0.356056,-0.493187,-1.04821,-1.12955,-1.32199,-1.33638,-1.25654,-0.287729,-0.0369016,-0.40856,-0.548035,-0.00794761,-0.0387711,0.253676,0.926295,0.68171,0.520403,-0.104622,-0.518227,-0.630041,-0.369808,-0.654987,-1.03056,-0.765669,-0.184708,-0.430424,0.132843,0.891015,0.665561,-0.661771,-0.160672,-0.418321,-0.718571,-0.556728,0.276839,0 +-0.772651,-0.492614,-0.44062,-0.332968,0.837008,1.71947,0.439461,-0.492049,-0.363239,-0.210981,0.0948499,0.336105,0.666099,0.868413,1.00084,1.27665,1.2296,1.43801,1.5446,1.50523,1.51634,1.46131,0.971019,0.320537,-0.158103,-0.10735,0.0754922,-0.0502723,-0.378248,-0.462189,-0.523736,-0.871052,-1.49298,-1.14267,-0.530506,-0.207282,-0.341819,-0.589075,-0.498303,-0.542964,-0.314719,0.0521948,0.0939482,-0.161864,-0.472419,-0.450442,-0.314572,0.473847,0.580497,-0.221298,0.435629,1.39919,0.636069,2.02158,0.057793,-0.718542,-0.487459,1.01254,0.381574,-0.796497,0 +0.532213,0.156659,0.0225821,0.655685,-0.59948,0.286434,1.26972,0.197305,-0.812612,-0.0800437,-0.038529,0.373228,0.854802,1.26726,1.29973,1.21433,1.23529,1.33171,1.32095,0.87893,1.05245,0.836808,0.552512,0.732889,0.277538,-0.238447,-0.61368,-1.44241,-1.3539,-1.11587,-1.39666,-1.57496,-0.486264,0.00331613,0.137493,0.261064,0.027482,0.161724,0.291853,0.213774,0.869307,0.878375,0.279569,0.500597,0.278759,-0.923796,-0.482479,-0.597981,-0.952019,-1.01896,0.510576,-0.925909,0.409451,0.0491911,-0.563007,1.4432,1.08544,-0.0384922,2.69497,2.64215,0 +-0.859641,-0.155842,-0.344337,-0.350162,0.979216,1.26773,1.11921,0.403994,0.0759974,-0.266034,-0.0995669,0.431056,1.00094,1.33232,1.05487,0.568293,0.865137,1.0717,1.20776,1.22806,1.47406,1.46835,0.911461,0.796457,0.947127,0.706214,0.296532,-0.143447,-0.335376,-0.81236,-1.26815,-1.51306,-1.49007,-1.55739,-1.27607,-0.716519,-0.632759,-0.0725782,0.423964,-0.0968688,-0.573615,-0.640635,-1.04711,-0.471712,-0.359644,-0.38026,-0.0592608,0.0925387,0.510963,0.561724,0.460611,0.195123,0.0695243,1.80242,1.0031,-0.474474,-0.00349016,-0.378531,0.187443,0.0383198,0 +-0.276802,-0.844557,-0.802335,0.651387,0.656997,0.778774,0.903953,-0.412192,-0.297354,0.107434,0.19658,0.433198,0.0893482,0.212992,0.269189,0.306957,0.229511,0.661806,0.874413,1.16943,1.26384,1.3175,1.06176,1.13604,1.3252,1.03543,0.730064,0.244429,0.269411,0.0800551,-0.555045,-0.881838,-0.9734,-1.32516,-1.0044,-0.948231,-0.578573,-0.0716391,0.342085,0.388406,0.213593,0.516254,0.372379,-0.271399,-0.288417,-0.304105,-0.305371,-0.239103,0.360771,0.795898,0.202461,-0.375773,1.00432,-0.443905,-0.266716,0.222863,-0.401036,-0.533095,-0.265531,-0.518225,0 +0.310386,0.284086,-0.365155,-0.706936,1.18263,1.47245,0.212879,0.311219,-0.0650652,-0.475087,-0.279666,-0.248595,0.0921859,0.367423,0.378717,0.24678,0.445305,0.680925,0.754641,0.687041,0.887602,0.937244,1.01699,1.13144,1.13576,1.26517,1.02804,1.1825,1.05776,0.628188,0.194981,-0.578888,-0.797624,-0.892284,-0.670203,-0.876673,-1.22006,-0.89146,-0.754991,-0.467962,-0.917836,-1.0235,-0.354275,-0.33667,-0.0602276,-0.320531,-0.512381,-0.67168,-0.0758983,-0.0749387,0.743744,-0.199314,1.17429,-0.745242,0.0436839,-0.561641,-0.210905,0.533392,-0.103754,-0.637484,0 +-0.133268,-0.359119,-0.560324,0.451507,1.10162,0.790618,0.159471,0.359368,0.0709293,-0.0517732,0.399285,0.819428,0.551174,0.321824,0.54666,0.693374,0.78777,0.899638,0.884104,0.942893,0.894196,0.933727,0.910261,1.20463,1.20925,0.894641,0.632773,0.78324,0.540795,-0.0445206,-0.364852,-0.717701,-0.512412,-0.850337,-1.06537,-1.38704,-0.973717,-0.430369,-0.814265,-1.12451,-0.437446,-0.444462,-0.416148,-0.578246,-0.393278,-0.970086,-0.979301,-0.493843,-0.334562,-0.257888,-0.213911,0.911337,0.961833,0.240951,-1.00039,0.728432,-0.418321,-0.904047,-0.831747,-0.83625,0 +0.236444,0.37814,-0.93505,-0.636011,-0.576078,-0.525674,-0.4523,-0.251303,-0.466291,-0.427473,-0.415306,-0.0801099,0.151776,-0.0606068,0.39332,0.661996,0.502952,0.497006,0.384856,0.42586,0.38531,0.643751,1.12491,1.27739,1.21823,1.26517,1.09114,1.27146,0.755156,0.0954572,0.138905,0.223505,-0.312909,-1.06656,-1.14988,-0.846383,-0.339319,-0.00308589,-0.120053,-0.0935105,0.0499563,-0.0633757,-0.295279,-0.0538296,-0.229061,-0.291413,-0.243269,-0.272748,-0.37072,-1.12872,-0.122309,-0.977808,0.211161,-0.0329916,0.269429,0.344897,-0.45289,-0.857678,-0.00668882,-0.677238,0 +-0.563872,-1.04177,-0.518688,-0.210461,-0.219657,-0.210982,0.24363,-0.317068,-0.192613,-0.22586,-0.147794,0.0469676,0.252513,0.524895,0.579762,0.666295,0.69637,0.843048,0.876351,0.937182,1.10559,1.3386,1.41111,1.32423,1.07043,0.839841,0.880273,0.92237,0.578673,0.0945512,-0.598037,-0.511358,-0.916261,-1.6521,-1.08389,-0.780126,-0.527304,-0.259926,-0.510861,-0.222246,0.274956,-0.140423,-0.430537,0.0144421,-0.45791,-0.625896,-0.177716,0.0508832,0.324614,0.166554,-0.272203,0.402721,0.395288,0.0628882,-0.436025,1.30373,0.169356,-0.672202,-0.427307,-0.697114,0 +-0.185462,-0.805115,-0.419802,0.475148,0.838808,0.832915,-0.0412158,-0.139738,0.286324,0.333598,0.372911,0.327538,0.431284,0.803357,0.975036,0.989527,1.16664,1.16768,1.03799,0.939466,1.12653,1.17407,1.15729,1.30751,1.23374,1.26517,1.17011,0.900446,0.368475,-0.0232294,-0.269054,-0.314863,-1.01359,-1.33079,-1.32662,-0.924757,-0.45186,-0.630395,-0.825819,-0.492589,-0.654265,-0.290368,0.0399888,-0.507724,-0.856912,-0.478813,0.307605,0.342472,-0.156557,-0.0822567,-0.172274,-1.11275,-0.553675,0.555985,-1.14148,0.885333,-0.522028,2.54272,-0.039044,0.177456,0 +-0.0941216,-0.67162,-0.253258,-0.627414,0.125964,0.355802,0.1708,0.277162,0.200166,0.0293185,-0.113131,-0.0736846,0.163836,0.66595,0.921489,0.742375,0.930368,0.872108,0.570524,0.440709,0.667292,0.830946,0.998999,1.30876,1.3252,1.01014,0.771585,0.491068,0.169515,-0.107488,-0.347561,-0.493068,-1.0349,-1.39868,-1.20275,-0.879701,-0.421849,-0.441639,-0.641968,-0.39184,-0.282576,-0.522694,-0.279451,-0.280402,-0.562772,-0.617684,0.137398,0.0733131,0.218923,0.920304,0.30239,0.5688,1.37258,-0.334328,-0.704098,0.170563,1.03359,0.224265,0.413929,0.555111,0 +0.419125,-0.183148,0.649727,0.771744,0.927013,0.794002,1.48335,1.48559,0.888585,0.472719,0.968218,1.02218,0.787408,1.04048,1.05244,0.446222,0.256059,0.511919,0.981007,0.520281,0.320924,0.934118,1.05416,1.09547,0.461267,0.668698,0.911618,0.0589233,-0.267114,-0.26921,-0.252231,-0.59155,-1.31914,-1.29143,-0.812601,-0.881973,-1.09251,-0.919633,-0.638954,-0.600615,-0.0669268,0.0569361,-0.816167,-0.750801,-0.436806,-0.129398,-0.690638,-1.30452,-1.17174,-0.53597,-0.0723446,1.25387,-0.511184,2.10376,-0.196171,0.501797,0.497763,-0.177599,0.284508,0.0383198,0 +-0.276802,1.42183,1.46163,-0.238401,0.656997,1.0241,0.614252,0.901926,1.27967,1.06714,0.730849,0.81443,0.912974,1.07331,0.970655,1.19842,1.61795,1.51142,1.27753,1.07463,0.740211,0.896601,1.26801,1.36898,1.06267,1.01604,0.833867,0.0690418,-0.0419315,-0.0644527,-0.721406,-0.911382,-1.19808,-0.32102,-0.0971363,-0.574538,-0.510631,-0.394684,-0.686173,-0.656027,0.10606,0.00122523,-1.55217,-0.677278,-0.0780342,0.109519,-0.167365,-0.298382,-0.771232,-0.0968926,-0.0140525,0.392341,1.18845,2.06267,0.664484,0.745865,0.653325,0.208809,-1.09059,-0.577855,0 +1.84143,1.4097,0.386899,-0.689742,0.197969,1.27788,1.13053,0.643565,0.996705,1.56485,1.88906,1.96098,2.28852,2.36469,2.61455,2.55024,1.71921,1.60128,1.51398,1.63392,1.12071,0.748486,0.760766,0.340611,-0.35163,-0.636799,-0.561168,-0.646843,-0.681682,-0.62074,-0.629347,-0.851824,-1.30461,-0.990017,-1.04067,-0.855849,-0.764891,-0.920572,-0.799196,-0.269822,-0.384849,-0.915041,-1.14856,-0.0365741,-0.312159,-0.694585,-0.374375,0.0204426,0.385803,-0.865278,0.460611,0.195123,0.196997,-0.18366,1.45459,-0.701108,-0.210905,0.301547,0.0580216,1.17129,0 +-0.359444,-0.374289,-0.828357,0.492342,0.561591,1.07316,2.91082,2.48028,1.29572,1.51947,1.19278,-0.834008,1.34004,4.25861,2.8891,1.9373,1.07486,1.2625,1.45002,1.0929,1.09744,1.26239,1.41111,0.94032,0.429421,0.557412,-0.211493,-1.00858,-0.70291,-1.09549,-1.07376,-1.60029,-1.78933,-1.13705,-0.807199,-0.643825,-0.986638,-0.69707,0.0668115,0.185789,-0.305953,-0.941118,0.143591,0.334794,-0.382067,-0.390713,0.18225,0.651684,1.52893,0.883714,1.29336,-0.80135,0.735215,-0.334328,3.93779,0.327463,0.843455,3.22279,0.802192,-0.83625,0 +0.358231,0.611757,0.493591,-0.0105809,-0.894698,0.636656,1.38301,1.62769,1.08962,0.3827,0.846143,1.06859,1.30599,1.81446,2.29862,1.92871,1.48939,1.70299,1.85275,1.27603,1.0858,1.22097,1.06016,0.505803,-0.0147945,-0.286924,-0.87787,-1.49764,-0.661287,-0.900242,-0.920479,-1.46476,-1.66052,-1.09078,-0.779414,-0.769146,-0.804072,-1.15065,-0.215495,-0.0593677,-0.7542,-0.77043,0.294677,-0.0703349,-0.599045,-0.157769,-0.183466,-0.620411,-0.345688,-0.155436,1.60147,-0.168175,-0.624493,1.74763,-0.859298,0.0833954,0.791602,0.517936,0.300686,1.21104,0 +4.69473,2.55351,2.4635,2.0312,1.84327,0.646807,0.899098,0.954772,-0.126727,-0.0115993,1.42939,2.12875,3.11995,2.45468,1.74027,1.78557,1.98052,1.68311,1.5884,0.838192,0.725084,0.680096,0.49815,-0.0466481,-0.77339,-0.60139,-0.946258,-0.548187,-0.792401,-1.10545,-1.1032,-0.96203,-0.542434,-0.439511,-0.452553,-1.06295,-0.784064,-0.112959,0.173304,-0.210491,-0.930109,-0.192577,0.675271,-0.290905,-0.852955,-0.406392,-0.668787,-0.612401,0.0325737,0.495862,0.0858767,-0.168175,0.310306,3.21323,-0.393698,-0.265273,-0.971428,-0.00757955,1.07721,-0.279706,0 +0.65835,0.186999,-0.529097,1.00816,2.70012,2.64831,1.36521,0.375809,0.017714,0.744265,1.0805,2.04308,2.44033,2.96479,2.52644,2.2485,2.21489,1.67775,1.43607,0.858751,0.413237,0.522993,-0.0390726,-1.47064,-1.91006,-1.98951,-1.51127,-1.72573,-1.86129,-1.87465,-1.87846,-1.42021,-0.949189,-1.2577,-0.867785,-1.06371,-0.448525,-0.362755,-0.513373,-1.08141,-1.04582,0.028488,-0.0578576,-1.41476,-0.00350997,-0.0920669,-0.909148,-0.460198,-0.0174903,1.96677,0.727089,1.45109,1.38674,0.43271,1.29939,-0.474474,-0.573882,0.548848,1.17428,0.694247,0 +3.73348,2.36237,1.11293,-0.388848,-0.9361,0.374412,1.94137,1.54196,2.16744,2.45165,1.09708,-1.07888,-1.50186,-0.711772,0.343181,-0.0786011,-0.424319,-0.801127,-0.383008,1.05254,1.42984,-0.610728,-2.34226,-1.91687,-2.20729,-1.74712,-2.20004,-1.80921,-0.772421,0.313804,-1.02656,-0.513234,0.580014,1.12206,1.81386,1.77893,1.75478,2.63856,2.79745,1.66456,-0.0482255,-1.1124,-0.926964,0.415069,2.13791,1.96038,1.28285,1.62418,1.5929,2.21558,0.560541,-0.365393,-0.596166,-0.334328,1.03132,0.484364,1.93239,0.950713,-0.184643,0.415975,0 +2.94186,1.32474,0.496194,0.148463,-0.243058,0.272899,-0.442589,3.37632,3.34831,2.18904,0.84991,-0.572714,-0.46612,0.0737606,0.497494,0.656409,-0.653766,-1.00913,-1.21715,1.02437,1.51634,-0.846773,-2.20235,-2.00678,-1.77002,-1.35257,-1.68062,-1.47108,-1.10041,-0.270116,-1.27516,-0.494944,0.294801,0.901079,1.07254,1.33519,1.5497,2.06384,1.77321,1.20168,-0.0762775,-0.733684,-0.32118,0.067709,1.48302,1.09057,0.120147,0.696544,1.49556,2.15704,0.377337,-0.635271,-0.369548,2.65164,1.36994,2.26257,0.826171,1.87809,2.11258,-0.478472,0 +2.16764,0.978869,-0.224633,2.40947,1.04042,-1.38685,-0.722579,1.56192,3.28074,3.36747,1.99079,0.0576764,-0.768329,0.839837,0.63915,0.341343,-0.301062,-0.200047,0.107324,1.28669,1.49268,-0.998014,-2.18157,-2.70937,-1.81125,-1.27205,-1.9387,-0.713878,0.198651,1.13555,-0.335879,-0.304546,0.766927,1.73441,1.558,1.25909,1.42466,2.231,2.1816,1.63546,0.970995,1.15337,1.44797,1.18631,1.79431,1.66696,-0.525031,0.885596,0.716782,1.9375,0.26908,1.70021,4.00701,2.52837,1.1583,2.90761,1.08544,-0.100318,-0.88028,0.714124,0 +3.44206,2.08021,-0.471848,0.64064,-0.00724371,0.134164,3.40606,3.80731,3.16417,2.8891,2.21836,-0.179345,-0.234852,-0.168222,1.6765,1.22378,-0.942756,-1.40947,-0.277964,1.17552,0.737496,-0.989026,-1.90536,-2.13935,-1.90597,-1.75008,-1.95824,-0.339915,-0.255459,0.505424,-0.569999,-0.0409891,1.75234,2.01982,2.34409,2.03071,2.39585,2.77332,2.03743,0.939728,-0.470758,-0.454537,-0.57299,0.548612,1.58392,1.11297,0.40651,-0.578756,-0.515349,0.0348307,0.0942041,0.47538,0.0411971,1.70654,2.58332,-0.875443,0.100217,0.657043,0.041844,1.54894,0 +-0.859641,0.687607,1.81554,1.42726,-0.628282,0.306737,2.06761,3.77913,4.06038,2.22921,0.74592,-1.19097,0.192213,0.602718,0.276004,0.0185406,-1.1047,-1.20835,-0.918691,1.35446,1.43062,-1.17505,-1.80903,-2.02937,-2.39633,-1.49884,-1.65619,-0.435197,-0.772838,0.690702,-1.43732,-0.750529,0.987736,2.01031,1.81193,2.09431,1.95444,2.85643,1.73955,0.741028,1.3269,0.608118,-0.653569,-0.518977,0.454847,0.14909,0.545666,2.63513,1.69581,-0.023713,2.65905,1.0359,0.961833,3.3228,0.918447,4.24998,2.12252,1.36803,2.67879,1.76758,0 +3.46381,2.71128,1.26907,1.49389,0.943214,1.15945,1.18232,3.42212,4.26395,2.73659,1.78808,-0.1001,-1.21313,-0.0375029,0.735535,0.375729,-1.04098,-1.40488,-0.694262,1.28555,1.24949,-0.541947,-2.04806,-2.14228,-1.64018,-0.585793,-1.37083,-0.337807,-0.39573,1.20713,0.277227,0.493628,0.442492,0.960324,1.76408,1.72554,1.9932,2.6949,2.23786,0.990662,0.48593,0.99928,1.52567,1.76325,2.40303,2.01488,-0.321472,-0.192641,-0.682229,-0.367657,-0.172274,3.32986,1.50005,-0.37542,0.438738,1.47807,0.428625,1.93992,1.59489,2.42351,0 +0.601805,1.5705,1.02706,0.589058,-1.05671,-1.30056,-1.0495,0.832638,1.77973,3.73722,3.7541,1.80678,0.189375,-0.616924,-0.211761,-0.020574,-0.626839,-0.77092,-0.680696,-0.289152,0.169266,0.864164,1.30678,1.36898,-0.0364336,-0.706352,-1.22022,-1.47403,-0.908113,-0.737161,-0.304569,-1.514,0.0793185,1.09006,0.86685,0.198592,0.200045,0.114769,0.660057,0.702408,0.0417745,0.906231,1.21558,-0.237638,-0.320073,-1.09626,-0.0696112,1.82284,1.52893,-0.0383489,0.393992,0.433861,1.27343,1.37781,0.678593,-0.579074,-0.885005,1.2753,-0.330241,-0.876003,0 +1.91102,2.62329,3.19214,2.05699,1.24383,2.91733,2.16472,0.427481,-1.10994,-0.720594,-0.468054,0.469607,0.366018,-0.487421,-0.57004,-0.517888,-0.896487,-0.803421,-0.557822,-1.45457,-1.35235,0.128672,1.30478,1.26736,0.540883,-0.201352,-0.857516,-0.664972,0.511243,-0.253355,0.0262837,-0.0803819,-0.00590622,-0.919528,-1.42889,0.140286,0.774421,-0.428961,-0.614843,-0.21441,-0.0324463,0.995724,0.512673,-1.00063,-0.514628,0.393979,2.31904,3.25355,2.65537,0.0494666,1.66809,3.21568,1.74083,2.47358,0.678593,1.37347,1.70769,1.7699,2.06405,-0.160446,0 +-0.555173,0.73615,0.77984,0.148463,-0.9343,0.0038881,0.195077,-0.826744,-0.217953,-0.969077,-0.42887,0.12764,-0.67043,-1.17142,-0.594866,-0.236779,-0.156188,-0.740713,-0.530301,-0.808088,-0.187962,-0.395395,-0.400019,0.0951239,-0.164227,-0.10187,0.601429,0.45734,0.0592132,1.26013,0.752478,0.458924,-0.510475,-0.116472,-0.43403,-1.1258,-0.132993,0.394617,-0.731884,0.353144,1.01366,-0.69279,0.0205634,0.796191,0.193023,-0.343676,-0.860846,0.0460768,0.847505,-0.243252,0.69378,1.28501,0.508597,1.59697,1.32761,1.79187,0.549617,0.224265,-0.0228664,0.932766,0 +0.523514,2.27742,0.207343,-0.659653,-0.190855,0.132472,0.921756,1.24367,0.761882,-0.018295,-0.61349,0.120501,0.289402,-0.0375029,0.160147,0.556258,0.181725,-1.01869,-0.222535,-0.590691,-0.267864,-0.569303,-0.8545,-0.256588,-0.679076,-1.00859,0.0901468,0.862923,1.00115,1.53646,1.38334,0.770315,-0.993738,-0.504378,0.041403,-0.395832,-0.229695,0.0720409,-0.358155,-0.940363,1.7395,2.1621,2.4178,1.60945,1.92687,3.1139,3.5542,2.7649,3.5454,4.15484,5.30718,2.50984,0.508597,2.22703,0.481066,1.46064,0.290348,2.24904,0.300686,0.396098,0 +1.80663,2.63239,2.62484,2.37508,1.69386,-0.341258,-0.813212,-0.47091,-0.166428,-0.621647,-0.0151689,-0.527023,-0.318563,0.0907845,0.741376,0.755699,0.465026,-0.297168,-0.180285,0.125844,0.532701,0.547613,-0.303287,-0.196366,-0.024185,0.0557846,0.222038,0.479263,0.855884,1.57632,2.08804,1.69042,0.0919085,0.00677572,0.396048,-0.808901,0.00580741,0.172053,-0.209467,-1.50288,1.42509,2.47088,1.31127,0.691907,2.54746,3.05043,1.61636,0.451417,1.28974,1.24229,1.08517,0.226262,1.27343,0.350528,0.481066,0.9725,0.947163,0.79615,1.20663,3.03969,0 +1.01936,0.541975,2.03153,1.43371,-0.910899,-0.0401011,-1.09806,-1.06749,0.43161,-0.335222,0.138556,0.217594,0.197179,0.240352,-0.0866559,-0.644687,-0.474001,-1.22632,-1.51058,-0.847684,-0.205029,0.053247,0.0332767,0.274953,-0.0899191,-0.664199,-0.0588414,0.162216,0.543293,1.09614,1.74877,2.21237,1.22646,0.8907,1.38126,0.350795,-0.821995,0.16548,0.260206,-0.563114,1.74944,1.68618,0.0802784,2.32893,2.75455,2.62561,2.48465,0.936864,0.0742937,0.481226,1.82631,2.12579,0.593579,3.08995,3.99423,1.6001,0.929878,0.363372,4.60393,2.84092,0 +0.975866,1.69792,0.477978,-0.266341,0.437383,2.34377,0.905572,0.786838,0.70191,-0.586681,0.215418,0.196891,1.20525,0.429439,-0.568093,-0.438799,-0.344297,-1.1422,-0.877604,-0.808088,-0.35048,0.316258,0.269111,0.036575,-0.675401,-0.712675,-0.362517,0.610382,1.08648,1.26737,2.15486,2.24051,1.43323,1.23925,1.30601,0.108104,-0.857841,-0.740737,-0.94286,-0.0851147,2.36249,3.23779,2.07606,1.69723,2.95174,3.44017,2.06028,0.744608,-0.431909,1.10325,2.4592,3.09112,2.36403,0.583379,0.382302,0.815599,-1.006,0.45611,-0.0875769,0.256962,0 +0.0320152,0.921224,1.44081,1.0361,0.086362,-0.705015,-1.76,-0.628276,-0.0160734,-0.806893,-1.38438,-1.14099,-0.0553715,0.0810566,0.154793,0.0460497,-0.075028,-0.793098,-1.04389,-0.984367,-1.15531,-0.603694,-0.374038,-0.917773,-0.935071,-0.981615,-0.977195,0.0201357,0.501669,0.550725,1.09221,1.43296,1.81819,0.516632,0.0159334,-0.305343,-0.970799,-0.464177,-0.742433,-0.84745,1.61561,2.16921,1.27746,1.82027,2.498,2.75253,2.37195,0.590803,0.497056,0.949576,1.50987,3.37138,2.40652,0.857321,-0.0832979,-0.631375,2.15709,0.780693,0.575705,-0.995263,0 +1.86752,3.60934,1.75309,1.17365,-0.154853,1.27619,-0.177165,1.69815,-0.314248,-0.957917,0.13102,1.01219,0.455404,-0.824251,-0.639164,-0.204971,-0.712171,-0.897101,-1.23847,-0.176456,-0.29036,0.0215919,0.786348,0.012319,-0.379394,-0.361536,0.727621,0.604901,-1.06212,-0.343502,0.19171,-0.0700647,-1.2775,0.396844,1.17982,1.23448,0.837361,0.691837,1.13375,0.739349,1.37775,1.95111,2.00411,-0.586499,1.51402,2.11717,1.11379,-0.022815,1.89329,3.10106,0.610505,1.81439,0.281979,-0.37542,2.65387,0.606398,0.238494,1.04345,1.25516,1.27067,0 +3.17239,1.35205,0.360876,0.189299,-0.210656,0.477618,-0.371378,0.515559,-0.490787,-0.530884,0.112182,0.0919445,0.0446553,0.00688089,0.30229,-0.281911,-0.0773035,-0.92922,-0.709379,-0.870147,-1.12738,-1.31144,-1.1431,-1.73997,-1.08124,-1.01492,-0.936081,0.142401,0.487101,0.348686,1.15389,1.06717,0.353878,0.834482,1.01349,0.0626698,-1.02123,-0.0711695,-0.0758486,-0.984021,1.29535,3.08488,3.6344,2.52624,2.56263,4.24502,4.94231,3.88479,3.02807,1.98141,7.02263,5.96636,2.97307,2.73383,2.2447,0.0833954,1.70769,2.07903,2.3876,0.813507,0 +1.5761,0.802898,0.777238,1.27467,3.11415,0.357493,0.937941,-0.421587,0.574362,0.996467,-0.174922,-0.803309,0.921487,1.65273,-0.391387,0.234745,0.680441,0.477506,1.21241,1.22006,-0.32682,0.0509021,0.761566,-0.0115188,0.409006,0.738251,0.520422,-0.018652,-1.26899,0.269863,0.978187,1.78749,1.20322,0.528308,-0.372671,-1.19054,-1.1121,0.255632,1.39144,0.228887,0.602813,1.20019,1.53718,1.51792,2.28564,3.01833,2.26614,2.51497,2.16864,4.54269,0.685452,0.786778,3.59627,1.77503,4.99597,5.43545,4.78435,5.57216,2.64644,0.654494,0 +1.82838,1.56746,2.17986,2.05914,0.957615,0.201839,0.109299,0.394599,0.0422099,0.0330383,0.400039,1.05859,1.30741,1.73603,0.888387,-0.797277,-0.599533,-0.514735,-0.892721,0.211509,1.11218,0.468671,-0.512341,-1.63751,-2.03377,-0.1651,0.225702,-0.766579,-0.715814,-0.149617,-0.326065,-1.46054,-1.61065,-1.3429,-1.39416,-1.07923,-0.774061,-0.85014,-0.129095,-0.506022,-0.840109,0.0664188,0.53066,-0.545236,-0.88593,-0.651281,-0.482479,-0.490638,0.127139,0.598314,-0.0556897,0.205502,0.692724,-0.758939,-0.887516,-0.596508,0.152071,0.33246,0.252153,0.0581964,0 +-0.368143,0.457023,-0.271473,0.599805,-0.0216446,-1.22104,-0.484668,-0.326463,-0.191768,-0.631319,-0.425102,-0.510603,-1.05422,-0.236318,0.0817739,0.0881731,-0.952996,-0.863071,-0.708991,-0.104498,0.802271,1.46835,0.891874,0.0679405,-0.185866,-0.531415,-0.535115,-0.406528,-0.882307,-1.69934,-1.89014,-1.00517,-0.902702,-0.0239281,-0.234904,-0.8036,-0.920781,-0.576867,-0.648498,-0.544083,0.45671,-0.450388,-1.21403,-0.912102,0.274142,1.33919,1.57496,0.300816,1.08948,1.88627,0.0858767,-1.05047,-0.808621,1.10387,0.142448,0.676132,-0.625736,0.16244,-0.152287,0.674371,0 +-0.359444,-0.322711,-0.841369,-0.201864,-0.585079,-0.473225,0.389289,0.0963095,0.0962698,-0.170807,-0.461272,-0.675518,-0.891767,-0.965307,-0.300844,0.0181107,0.236717,0.319971,0.443386,0.86865,1.23087,1.46835,1.04337,0.296281,-0.488814,-1.61308,-2.33112,-2.67392,-1.53954,-0.993561,-0.818606,0.217878,-0.114374,-0.945908,-1.38297,-0.514717,0.0829189,0.0551374,-0.303401,-0.756776,-0.755953,-1.13611,-1.34929,-0.996129,-0.976282,-0.887958,-0.838995,-0.876753,-1.12446,-0.631104,-0.230566,-0.396533,-1.31851,-0.827425,-0.760534,-0.927743,-0.00349016,-0.502182,-0.94499,-1.07477,0 +-0.263754,-0.210454,-0.698244,-0.672548,-0.615681,-1.57295,-1.60948,-0.637671,0.494117,0.281521,-0.0867565,-0.701219,-0.710157,0.0810566,0.573433,0.778051,1.00887,0.627393,0.680219,1.06777,1.4857,1.46835,0.604876,-0.543896,-1.14411,-0.767053,-0.558318,-1.64352,-1.88959,-0.837728,-1.28918,-0.396931,0.00716802,-0.706764,-0.802182,-0.0334983,0.288827,0.107726,-0.371215,-0.695207,-1.07913,-0.263105,-0.341324,-0.780811,-0.849657,-0.973072,-0.633136,-0.207061,-0.178808,0.305595,-0.080672,-0.0955152,-1.00691,0.186162,-0.704098,0.554098,-0.45289,0.177896,-1.1553,0.535235,0 +-0.698708,-0.556328,-1.02353,-0.691892,-0.939701,-0.955414,-0.769514,-1.19197,-0.34719,-0.00267182,-0.0490788,-0.365677,-1.09891,-0.653404,-0.123165,0.669733,1.02025,1.29998,1.22947,0.631836,0.489259,0.654693,0.634455,-0.764709,-1.96803,-1.71762,-0.31204,0.676996,1.05942,0.911314,0.0575932,0.210843,-0.0649824,-0.268694,-0.415507,-0.566209,-0.391421,0.490873,0.534978,0.113025,-0.992057,-0.660193,0.88967,0.69866,-0.677526,-0.0457768,0.1949,-0.227888,0.266206,0.188508,-0.41377,0.350821,-0.29873,-0.882213,-0.436025,-0.30014,-0.833151,-0.208512,-0.815569,-0.239953,0 +-0.255055,0.0292313,-0.058088,0.0173593,0.433783,0.794002,0.738872,0.193782,-0.0481715,-0.00341578,-0.844831,-1.61789,-0.68249,0.0907845,0.870376,1.25602,1.32555,1.51487,1.84384,1.66362,1.51634,1.46522,1.03817,0.0319747,-0.674176,-0.962225,-0.831056,-0.313775,0.312283,0.229546,-0.696639,-0.70035,0.0696338,-0.104363,-0.580673,-1.09968,-1.37011,-1.19854,-1.41756,-1.1094,-0.495303,-0.501358,-1.17374,-0.479215,-0.196086,-0.409378,-0.130564,-0.104524,0.21336,-0.023713,-0.746867,-0.313494,-0.638657,-1.14246,-0.958061,-0.369873,-0.694874,0.33246,-0.0228664,-1.17415,0 +-0.759602,-0.956815,-0.414598,0.0947321,0.293375,0.374412,0.581884,0.67997,0.490738,0.0642846,-0.889291,-1.24808,0.0347236,0.481727,0.920515,1.20659,1.10407,1.15047,1.28257,1.12793,1.36701,1.40504,0.893473,-0.135308,-0.688874,-0.676002,-0.0356383,0.652121,0.745998,0.069183,-0.978892,-0.765535,-0.623301,-0.92515,-0.956929,-1.09551,-1.14628,-1.2023,-1.18749,-0.875996,-0.335758,-0.330669,-1.02913,-0.314913,0.0294654,0.134904,-0.129414,-0.827087,-0.596008,-0.879914,-1.01334,-0.842869,-1.10606,-1.22464,-1.12737,-0.927743,-1.006,-0.270337,-0.864102,-0.259829,0 +-0.350745,-0.777809,-1.10159,-0.191117,-0.0738478,0.875212,0.486396,-0.166749,-0.0963186,-0.548739,-1.18694,-1.52437,-1.06841,-0.213822,0.524754,1.00457,1.24211,1.37913,1.53413,1.51247,1.1913,1.13226,0.552113,-0.666012,-1.35356,-1.56333,-1.81169,-1.37242,-0.272941,0.172468,-0.201762,-0.363635,0.126773,-0.0727948,-0.321346,-0.647611,-1.05291,-0.944049,-0.87153,-1.1844,-0.729654,-0.522101,-0.829117,-0.273649,0.0182538,-0.628136,-0.572183,-0.264737,-0.195496,-0.514016,0.110859,-0.178555,-1.19104,-0.854819,-0.619443,-0.892876,-0.936859,-0.625833,-0.459662,-0.995263,0 +-1.06407,-0.987154,-0.932448,0.032404,0.235771,0.393023,0.738872,0.0293705,0.964607,1.03143,0.681868,0.543141,-0.306503,-1.04131,-0.535478,-0.594827,-0.846426,-1.08981,-1.48073,-1.80027,-1.75845,-1.15355,-0.480363,0.00562769,0.470249,0.8175,0.966165,1.07626,1.09022,1.51381,1.76793,1.73309,1.45647,1.16228,0.972974,1.1474,1.08495,0.722827,0.445062,0.631324,0.96632,0.953644,1.33645,2.08585,1.80552,1.18688,1.16899,1.42872,1.30921,0.342185,-0.263876,-0.406913,0.267815,-0.553482,-0.760534,-0.247839,-0.314613,-0.533095,-1.25236,-0.716991,0 +-0.39424,-0.62611,-0.427609,-0.659653,-0.0504463,-0.359869,0.0235218,-0.0587071,0.257605,0.474207,-0.129709,0.381795,0.160289,-0.551261,-1.11768,-0.934823,-0.89497,-0.895954,-1.17142,-1.57031,-2.16028,-1.6022,-0.854101,-0.327683,0.070129,0.243368,0.718666,0.893701,0.877112,1.48482,2.15533,2.30523,1.74411,1.12898,1.03356,1.14929,1.37547,1.19049,1.26385,1.74124,1.72314,1.03365,1.7595,2.7168,2.00535,1.81852,2.18334,2.11123,1.57343,1.53501,0.768727,-0.0332357,-0.822784,-0.074083,0.128338,0.170563,0.0829329,-0.919503,-0.508195,-0.577855,0 +-0.803097,0.208237,-0.388575,0.374134,0.581392,-0.0451768,0.628818,0.905449,1.08202,0.634902,0.560546,0.663079,-0.196544,-0.655836,-0.982352,-0.732803,-0.539991,-0.477645,-1.04815,-1.66397,-2.13895,-1.9547,-1.29139,-0.990959,-0.416548,0.34833,0.907954,1.01554,1.21842,1.89841,1.99224,1.91693,1.66227,1.30066,1.39438,1.56804,1.68184,1.20129,0.739926,0.967154,0.84593,0.694055,1.70626,2.42946,1.65713,0.797151,0.363958,0.712565,1.17292,0.415365,-0.680248,0.309302,0.182833,0.0491911,-1.0145,0.25773,-0.107198,-0.30125,-1.0097,-0.577855,0 +-0.246356,-0.498682,-0.706051,-0.0492673,-0.0108439,0.127396,0.0656013,0.433353,1.093,0.830564,0.441484,-0.0130016,-0.158236,-0.705084,-0.870877,-0.329192,-0.199043,-0.243255,-0.801631,-1.29885,-1.73246,-1.91484,-1.76826,-1.22766,-0.401441,0.2303,0.563571,0.677417,1.08856,1.89841,2.15019,1.65149,1.08458,0.84486,1.1227,1.48512,1.85315,1.89199,1.52556,1.45299,0.900281,0.342603,0.956579,2.10761,1.58326,0.595565,-0.111013,1.18519,1.15067,0.151918,0.443956,0.900957,0.636069,-0.361722,-0.492461,-1.03234,-0.366467,-0.4249,-0.847925,-0.876003,0 +-0.146316,0.147557,0.282808,0.305358,0.0575602,0.34565,0.127102,0.447445,0.856487,0.648294,0.109921,0.0705269,-0.343392,-0.517213,-0.940488,-1.11406,-0.897246,-0.894042,-1.31871,-1.86195,-2.11994,-1.50919,-0.657838,-0.148272,0.317142,0.826352,1.18843,1.27188,1.2101,1.60124,1.78008,1.54739,1.30394,1.01957,0.946346,1.05275,0.977412,0.548626,-0.0647974,0.585427,0.837164,0.739691,1.24868,1.81276,1.30759,1.01516,1.00109,1.03139,1.01438,0.444636,-0.330495,-0.448432,-0.638657,-1.23834,-0.67588,-0.0560719,-0.815867,-0.254881,-0.508195,-0.299582,0 +0.0581124,-0.0648223,-0.583745,-0.670399,-0.532876,-0.644106,-0.450681,-0.441551,0.637714,0.776999,-0.126695,0.0848053,-0.222792,-0.478301,-0.994522,-1.09515,-1.24161,-1.05846,-1.2753,-1.55737,-2.16377,-1.73429,-0.971618,-0.430562,-0.0723628,0.200371,0.61934,0.904241,0.935385,1.39648,1.87869,1.93756,1.46809,0.937404,0.898109,1.13566,1.54178,1.35436,1.23924,1.68303,1.58054,1.29324,1.84295,2.7243,2.59495,2.38669,3.05047,2.9876,2.52465,1.60819,0.91862,0.682979,-0.525348,-0.539785,-0.097407,0.118262,-0.0726286,-0.579464,-0.394951,-0.876003,0 +-0.324647,-0.704994,-0.240246,-0.414639,-0.482473,-0.879279,-0.719342,-0.570732,-0.277926,0.020391,-0.0129082,-0.296427,-0.771876,-0.77622,-0.755507,-0.781373,-0.464899,-0.311316,-0.286492,-0.559471,-0.378019,0.100925,0.49855,0.737908,0.959376,0.80654,0.475237,-0.0679797,-0.438186,-0.272834,0.283302,0.63713,0.521906,0.0962925,-0.229887,-0.574538,-0.911611,-0.821029,-0.283308,0.345868,0.920151,0.800143,0.919167,0.660397,0.0637597,0.137144,0.534165,0.683727,0.694531,0.129964,0.36901,-0.116275,-0.567839,-1.34792,-0.943952,-0.579074,-0.850436,-0.88859,-0.928813,-0.657361,0 +-0.955331,-1.08424,-0.909028,-1.02717,-0.59768,-0.305728,-0.0574002,-0.409843,0.165534,0.175135,0.0843002,0.26971,-0.43065,-1.37267,-0.977484,-0.419886,0.0231982,0.288999,0.313535,0.198945,0.256925,0.637107,1.001,1.29705,1.3252,0.616006,-0.393454,-1.64605,-2.61259,-1.48733,-0.331673,0.247423,0.598899,0.834049,0.510276,-0.0270618,-0.528971,-0.787222,-0.693205,0.0772034,-0.185563,-0.213321,0.173089,0.136731,-0.16377,-0.111479,-0.0569607,-0.0740833,-0.354032,-0.53597,-0.571991,-0.583371,-0.511184,-0.389117,-0.83108,-0.317573,-0.712159,-0.672202,-1.09059,-0.557978,0 +-0.559523,-0.56543,-0.614972,-0.328669,-4.32719e-05,0.673877,0.436224,0.159725,0.559158,0.550091,1.00288,0.890819,0.846999,0.208128,-1.03054,-1.13727,-0.270722,0.350942,0.551143,0.626505,0.699485,0.789911,0.890275,0.463982,0.157502,-0.548276,-1.67451,-0.971478,-0.00488674,0.722865,1.41325,1.88973,2.822,2.38005,1.09183,0.0214008,-0.995808,0.109135,1.5562,2.80079,2.78853,1.56113,0.106898,-0.313412,0.555092,0.864346,0.87458,0.94167,1.94613,2.11313,-1.11327,-0.593751,-1.14855,-1.07397,-0.139734,-1.08464,0.100217,0.440654,0.0580216,-0.637484,0 +-0.307249,-0.96895,-0.713858,-0.111595,-0.419469,-0.332798,-0.656223,0.56958,0.378395,-0.202797,0.142324,0.343958,-0.0773633,-0.652188,-1.23354,-0.480922,0.0432985,0.675954,1.05969,0.782605,0.778998,0.879405,1.18727,1.13897,1.18434,0.441068,-0.835534,-1.25648,-1.06753,-0.106582,1.0581,1.95022,2.54357,2.02977,1.06019,0.320128,-0.872013,-0.774075,0.175314,1.17313,1.33509,0.544703,-0.162179,-0.993878,-1.04025,-0.613204,-0.198417,0.191871,0.680625,0.0860564,0.0525669,-0.469192,-0.794457,-1.29313,-0.252607,-0.422174,-1.07514,-0.146687,-0.0875769,-0.538101,0 +0.519164,-0.325745,0.431137,-0.0299241,-0.473472,-1.11784,-0.981529,-0.271268,-0.458689,0.161743,-0.746116,-0.833294,-0.422846,-0.875323,-1.18145,-1.11277,-1.23516,-1.46606,-1.15397,-1.01102,-1.26236,-1.12932,-1.1383,-1.47399,-1.34826,-1.44868,-1.27395,-0.134172,1.1793,1.89841,1.62774,0.894121,0.521906,-0.00879242,-0.39544,-0.697209,-0.117571,0.658499,1.45122,1.75412,1.21587,0.420242,0.141432,0.747425,1.52325,1.98277,2.62956,2.47331,2.05738,0.89835,0.169151,0.859437,-0.978584,-1.23834,-0.393698,0.867899,0.515048,-0.455813,0.0903768,-0.418842,0 +-0.672611,-0.265065,-0.838766,-0.98204,-0.919899,-1.34117,-1.51885,-1.43037,-1.09051,-0.899144,-0.949575,-1.01249,-1.16276,-1.18115,-1.26615,-1.23742,-1.07967,-0.674946,-0.538054,-0.137621,-0.108837,-0.0241321,-0.237733,-0.873025,-0.543116,0.155267,0.841601,1.29001,0.76015,-0.166831,-0.792437,-1.64765,-1.24554,0.0591019,1.02276,1.34087,1.80271,1.92345,1.77672,0.89607,-0.314135,-0.63945,0.188917,1.40688,1.41971,1.39146,1.74172,1.40309,1.12008,0.525134,0.0692218,-0.552232,-0.950257,-1.15616,-0.802861,-0.422174,-0.193621,-0.687658,-0.589083,-0.637484,0 +-1.20326,-0.601838,-0.388575,-0.739175,-0.426669,-0.386939,-0.343864,-1.43742,-0.516972,-0.45128,-0.182458,0.051965,-0.268904,-0.992059,-1.51393,-0.788251,-0.180081,0.0469612,0.143373,0.239683,0.515634,0.787176,0.8551,0.699851,0.896091,1.24199,1.21244,1.14203,0.968267,0.202819,-1.33685,-0.677839,-0.255285,0.423656,1.51169,2.08712,1.89942,1.31962,0.630419,-0.0604872,-0.127706,-0.321187,0.486053,1.16456,0.668527,0.462668,-0.431877,-0.88957,-0.640509,-0.601832,-0.96338,-0.271974,-0.45453,-0.27954,-0.802861,-0.927743,-1.12699,-1.07407,-0.767037,-0.359212,0 +-0.703058,-0.802081,-0.00604275,0.182851,-0.583279,-1.17874,-1.34892,-1.05927,-0.390269,-0.52642,-0.251785,-0.0808238,-0.440581,-0.925179,-1.19751,-0.96792,-0.420147,-0.155693,0.161978,0.115184,0.222017,0.426073,0.266313,0.120216,0.409823,0.901386,1.19779,1.29001,1.02404,0.351404,-1.09245,-1.24012,-0.708526,0.354897,1.25738,1.65096,1.62473,1.45531,0.728373,0.207058,0.359697,0.235922,0.761606,1.13905,0.576196,0.0804011,-0.610135,-0.97929,-0.632165,-0.64574,-1.13826,-0.521092,-0.100439,-1.25204,-0.816971,-0.422174,-1.16156,-1.08952,-0.750859,-0.776621,0 +-0.68566,-0.644314,-0.677426,-0.378102,-0.554477,-0.510447,-0.675644,-1.04752,-1.19272,-0.619415,0.0338121,-0.126515,-0.149014,-0.908155,-1.23305,-1.15404,-0.685244,-0.474586,-0.245017,-0.176456,0.161897,0.605843,0.602877,0.443072,0.748292,0.978948,0.990182,0.718735,0.332679,-0.434556,-1.72331,-0.675026,0.262842,0.866483,1.60431,2.27984,2.15159,1.4154,0.511369,-0.229522,-0.146407,0.331342,1.34509,1.80151,1.31089,0.685905,-0.161615,-0.868742,-0.648853,-0.770145,-0.955053,-0.417293,-0.836948,-0.854819,-1.08504,-1.29384,-0.625736,-0.857678,-0.847925,-0.478472,0 +-0.48993,-0.753537,-0.0789061,0.202194,-0.28086,-0.402166,1.41214,2.48615,2.953,2.88836,2.93424,1.43126,0.680997,-0.0618228,-0.762809,-1.44546,-0.900659,-0.0493951,0.737198,0.939085,0.953928,0.966945,0.851902,1.03483,0.806268,0.457508,0.680808,0.620079,-0.261287,-0.931046,-0.728883,0.116582,1.12477,1.24055,0.671583,0.507163,0.592688,0.229338,0.253174,0.350346,-0.168031,-0.706421,-0.424782,0.0947176,-0.260718,-0.295146,-0.392775,-0.102922,-0.456941,0.10801,-0.621955,-0.116275,-0.666984,1.06278,0.25532,0.763299,0.0483637,1.1671,1.3037,0.396098,0 +-0.485581,0.180931,0.0980477,0.341895,1.55345,-0.268506,-1.00581,-0.325289,1.17831,0.621511,0.687896,0.380368,0.212786,-0.230238,-0.73993,-1.06463,-0.514581,-0.00159932,0.617425,0.781463,0.337214,-0.722889,-1.61397,-1.60614,-0.726845,0.494603,1.21244,0.968746,0.873366,0.866467,0.339846,0.37498,1.28409,0.946053,0.43541,-0.102406,0.071248,0.195531,0.0507372,-0.190901,0.441515,0.622935,0.710524,-0.0335732,-0.620808,-0.603498,-0.602084,-0.622014,-0.774013,-0.638422,-0.322168,-0.126655,0.0978516,-0.156266,-0.929843,-0.997476,-0.90229,-0.455813,-0.103754,-0.856127,0 +0.162501,-0.510818,-0.136156,0.189299,0.730801,0.738169,1.35388,0.301824,0.635179,0.438497,0.524375,0.470321,-0.297281,-0.546397,-0.680541,-0.419886,0.099807,0.54442,0.60192,0.0812988,-0.60182,-0.56813,-0.329269,-0.604536,0.147295,1.26517,1.03496,-0.358465,-0.544742,-0.819608,-2.1322,-1.19041,-0.961779,-1.12278,-0.836913,-0.916427,-0.831165,-0.144418,0.195909,0.743827,0.564826,0.01782,-0.883077,-0.891096,-0.508692,-0.583339,-0.697539,-1.23884,-1.14393,-0.587196,-0.472062,-0.406913,0.621906,-0.690453,-1.09915,-0.509341,-1.07514,-0.579464,-0.427307,0.177456,0 +-0.437736,-0.64128,-0.383371,-0.511355,-0.520275,-0.601809,-1.03817,-0.287709,0.543109,0.782207,1.82802,1.95384,1.17758,0.288384,-0.162109,0.0447602,0.0986693,-0.241343,-0.372155,-0.237754,0.457842,1.228,1.41111,1.2983,1.29744,0.911502,0.494776,0.00706593,-0.784492,-1.14532,-1.1789,-0.199967,-0.00881161,-0.313236,-0.957315,-0.729013,-0.17926,-0.0138854,1.21814,1.33937,0.197813,-1.38384,0.478859,0.934985,1.423,1.51763,0.971184,-0.0885026,0.224486,0.459272,-0.297185,-0.977808,0.409451,0.377922,1.11597,0.867899,0.549617,0.657043,0.559528,0.0581964,0 +0.0102674,-0.792979,-0.836164,-0.915413,-0.459071,-0.0807065,0.175655,-0.271268,1.01698,1.03441,1.4098,1.81463,1.77633,0.870845,0.0165439,-0.356271,-0.331402,-0.494087,-0.201604,0.269761,0.369795,0.809452,0.791145,0.74669,0.973257,1.25885,1.21244,0.254548,-0.732463,-0.854036,-0.558784,0.132996,0.0352534,-0.405347,-1.22475,-0.364786,0.180871,-0.106385,-0.198416,-0.267583,-1.37426,-0.538696,0.714841,1.87954,1.57865,0.727716,0.108647,-0.655658,-1.13281,-1.06286,-0.99669,-0.81173,-0.0437847,-0.416511,-1.11326,-0.491907,-1.09242,-1.13589,0.0256664,-0.438718,0 +1.49346,0.984937,0.0381957,-0.442579,-1.02071,0.362569,-0.32768,0.669401,1.33627,1.35208,1.74362,2.23441,1.96716,0.837405,-0.0730257,-0.125882,-0.0700978,-0.247843,0.0898818,0.596808,0.625014,0.906371,0.886678,1.04947,1.3252,1.12269,1.13998,0.176973,-0.941828,-1.30976,-0.824681,-0.328463,-0.34971,-0.505675,-1.18152,-0.0471284,0.421376,0.0429293,-0.723847,-1.10268,-0.977446,-0.0959725,1.43574,1.93955,0.851211,-0.136864,-0.95975,-0.81427,-0.57932,-0.865278,-0.0556897,-0.894769,-1.16271,-0.306934,-0.294934,0.222863,0.134787,0.0851584,-0.637616,-0.279706,0 +-0.39424,-0.665552,-0.245451,-0.449027,-0.639082,-1.01971,-0.863383,-0.522582,-0.0346565,0.363357,0.430181,0.432484,0.61715,0.0220808,-0.235614,-0.76418,-0.894591,-0.875306,-0.573714,-0.0527184,0.433794,0.811015,0.957029,1.16824,1.17699,1.26517,1.07933,0.726745,0.614052,0.242683,0.14311,-0.156823,-0.779224,-0.49227,-0.130324,0.169439,0.473061,0.525619,0.254681,-0.0341804,-0.567771,-0.947638,-0.346361,-0.428199,-0.865485,-0.233177,-0.49168,-1.38143,-0.796264,-0.382293,-0.297185,-0.832489,-0.709475,0.377922,0.227102,-0.823142,-0.383751,0.394285,0.041844,-0.577855,0 +-0.411638,0.0292313,-0.14136,-0.994935,-0.901898,-0.705015,-0.761422,-0.904252,-0.357327,-0.288353,-0.471822,-0.0229964,0.289402,0.20144,-0.215656,-0.743119,-1.13693,-1.00913,-0.642709,-0.648943,-0.701503,-0.322315,-0.0086939,0.207622,0.44861,0.415355,0.74309,1.11378,1.06941,0.462842,0.496861,0.510979,0.428933,0.191864,-0.588391,-0.925135,-0.777812,-0.776892,0.0341605,0.508746,0.0680732,-0.41957,-0.906099,-1.41476,-1.10423,-0.683386,-0.51008,-0.219878,-0.418002,-1.0775,-0.580318,-0.00209595,-0.14293,-0.923304,-0.492461,-0.178106,-0.643021,-0.533095,-0.524372,-0.220076,0 +0.445222,0.108115,0.0199799,0.0259563,-0.27906,0.626504,-0.423168,-0.641194,-0.136863,0.353685,0.540953,0.643804,0.473139,0.59907,0.0730117,-0.658872,-0.786504,-0.869953,-0.64581,-0.400706,0.148709,0.181821,0.214749,0.373231,0.404515,-0.0976545,0.143066,0.376813,1.33122,1.89841,1.42119,0.547558,0.598899,0.413277,-0.315558,-0.360242,-0.581073,-1.14407,-0.487754,0.0648896,0.328138,0.651383,0.55728,-0.911352,-0.527158,-0.776712,-0.527331,0.0877323,0.19111,-1.12872,-0.355477,0.122463,-0.950257,0.0628882,-0.859298,-0.35244,0.394056,-0.177599,-0.427307,0.435852,0 +0.0798601,-0.495648,-0.0138495,-0.747772,0.38158,1.32187,-0.180402,0.415738,0.864934,1.74787,2.15657,2.21942,1.87706,0.658046,-0.465866,-0.860032,-0.706482,-0.689476,0.0623612,0.482589,0.818949,0.991566,0.451783,0.371977,0.162402,0.121966,0.677551,1.083,0.80219,-0.0359135,-0.318588,-0.0475545,0.0328323,-0.378968,-1.01829,-0.897875,-0.656934,-0.467933,0.961953,1.15074,-0.81907,-0.222804,0.683185,1.7655,1.7488,0.294679,-0.516981,0.509094,0.73347,-0.843324,0.735417,0.724498,-0.681148,-0.772636,-0.196171,-0.788275,-1.09242,-0.363075,-0.20082,-0.220076,0 +0.571359,-0.19225,0.704375,-0.926159,0.572392,-0.123004,-0.415075,-0.0293479,0.576051,0.456352,0.79264,1.27776,0.673193,0.592382,-0.115377,-0.263428,-0.506237,-0.563295,-1.02335,-0.080131,0.275931,0.0301896,-0.258119,0.0328111,-0.314476,0.595772,1.17621,0.947244,0.659422,0.409388,0.274423,1.3795,0.90348,-0.630221,-1.38027,-0.775961,-0.249703,0.640187,1.25481,0.63916,1.25853,2.60541,2.66026,2.64253,2.49074,1.48329,1.49676,2.21857,2.09076,1.11057,1.71805,0.433861,-1.02108,-0.224751,0.396411,-0.125806,-0.383751,-0.904047,-0.589083,-0.95551,0 +-0.855292,-0.231692,0.26199,-0.274938,-0.250259,-0.0113389,-0.326061,0.0540322,0.685861,1.23677,1.40829,1.42554,1.8948,0.813085,0.0637627,-0.124163,-0.278307,-0.639386,-0.382233,0.457842,0.604845,0.166971,-0.306485,-0.305936,-0.110333,0.680922,1.13876,1.02861,0.838402,0.119919,0.16741,1.17222,0.873942,-0.340913,-1.31582,-0.261803,-0.0200354,0.227459,1.23472,0.672743,0.0926186,0.954237,1.32134,2.01833,2.05217,0.258095,0.361658,1.79881,1.48721,0.342185,1.63478,0.48576,-1.24769,-0.101477,0.56572,-0.735975,-0.625736,-0.76494,-0.783214,-0.637484,0 +-0.850942,0.0595712,0.634114,0.320403,0.242972,-0.192371,-0.424786,0.930111,0.647005,0.646806,1.25457,1.88888,1.53796,0.706078,0.181566,-0.145225,-0.414079,-0.603444,-0.270212,0.621937,0.797616,0.726992,0.0780452,0.0967968,0.40574,0.712116,1.21244,1.26513,0.987414,0.304744,0.388446,0.946176,0.38729,-0.55238,-1.39917,-0.186458,-0.19635,0.345784,1.51853,1.04384,-0.163355,1.13441,1.68395,2.08585,2.19067,0.455202,0.202951,1.56009,1.18961,-0.514016,1.24339,1.06704,-0.412039,0.473802,1.08776,-1.22411,0.532333,-0.672202,-0.589083,-0.935633,0 +-0.0984712,-0.00414256,0.173513,0.361239,1.00982,1.78883,1.69213,1.38107,1.53308,2.85116,3.25148,2.26797,1.73234,0.223936,-0.584157,-0.399254,-0.463761,-0.42029,0.349196,0.721688,1.11257,0.744187,0.255521,0.272444,0.182408,0.529169,0.771585,1.21412,0.731847,-0.435462,-0.860664,-0.757563,-0.866869,-0.484918,-0.868557,-0.262181,-0.737381,-0.00261634,1.37386,0.566397,-1.00024,0.514476,1.57531,1.97782,1.01873,-0.512411,0.00284195,1.39507,1.57343,0.700765,1.54318,0.340441,1.30176,0.487499,-0.167952,-0.648808,-0.608451,-0.811309,-0.394951,-0.160446,0 +0.210346,0.730082,-0.149167,-0.605922,-0.559877,-0.0316416,0.112536,0.589544,0.732318,1.51352,2.1739,2.02666,2.00121,0.577182,-0.122678,-0.305122,-0.431904,-0.689859,0.153063,0.876265,1.03189,0.947405,0.254721,0.077141,0.21752,0.755956,1.21244,1.21243,1.06691,0.108141,-0.0517564,0.459862,0.200376,-0.486215,-1.21626,-0.605585,-0.848671,0.263614,1.43615,1.16641,-0.334005,0.940605,0.958018,1.63646,1.92555,0.220018,-0.327222,0.720576,1.07557,-0.440837,1.40161,0.0705635,-1.24769,-0.580876,0.0860112,-0.701108,-0.366467,-0.440357,-0.750859,-0.14057,0 +-0.359444,-0.586668,-0.0710993,-0.46837,-0.0972492,0.902283,0.356921,0.0634272,1.07104,1.3625,0.861967,0.832992,0.858349,0.209952,0.0627891,-0.336499,-0.696242,-1.20146,-0.619453,-0.457816,-0.465677,-1.0027,-0.835714,-0.778928,-0.223429,0.108477,-0.161831,0.315681,0.649432,1.25378,1.97589,1.22802,0.328698,-0.269559,-0.972365,-1.02282,-0.919114,-0.740267,0.174309,1.3528,1.80905,1.35962,2.19189,2.16538,3.33821,3.20872,3.27128,2.95876,2.96132,2.23754,-0.888433,-0.583371,1.33009,-0.074083,-0.760534,-0.892876,-0.280044,0.116071,-0.152287,-0.458595,0 +0.332134,-0.319677,-0.872596,0.0581949,0.0125575,-0.62042,-0.400509,0.146807,0.324335,0.34327,0.433949,0.308976,-0.0539527,0.13456,-0.198618,-0.53766,-0.826705,-0.991928,-0.861324,-0.90822,-1.00327,-1.14066,-0.900468,-0.816567,-0.79462,-0.283973,0.534262,1.0615,1.48981,1.18493,0.223954,0.18974,0.497694,-0.0278201,-0.766293,-0.881973,-0.678609,-0.779709,-1.11968,-0.485873,0.481839,0.987426,1.06018,-0.0830889,0.0248488,0.43355,0.707823,0.901617,1.25636,0.1446,-0.080672,-0.303114,-1.17687,-1.25204,-0.506571,0.170563,-1.19613,0.100615,0.494817,-0.259829,0 +-0.881389,-0.334847,-0.495268,-0.648907,-0.950501,-0.339566,0.437843,-0.14561,-0.178253,0.0270866,0.484437,0.422489,0.00705659,-0.254558,-0.648413,-1.00274,-1.02505,-0.800745,-0.693487,-0.742983,-1.06106,-1.2282,-1.02158,-0.604954,-0.140955,0.298589,0.705232,1.29001,1.40906,0.525356,-0.0335315,0.295257,0.574687,-0.0823086,-0.801796,-1.02206,-0.862009,-0.979265,-0.841391,-0.269262,0.123008,1.02476,0.949385,-0.65402,-0.338539,-0.383993,0.299555,0.75422,0.54712,-0.206662,0.319045,-0.396533,-0.0579483,-0.224751,-0.958061,-0.666241,-0.988713,-0.162143,-0.314063,-0.935633,0 +-0.581271,-0.441037,-0.75029,-0.0965507,0.424783,0.641731,0.397382,-0.151482,-0.0701333,-0.11873,0.000655736,0.154769,0.224136,0.0123529,-0.475115,-0.876796,-0.645043,-0.544177,-0.572164,-0.513022,-0.706933,-0.980037,-0.753371,-0.264534,0.190573,0.251377,0.685693,1.29001,1.4128,0.624111,0.375361,-0.0930439,-0.201536,-0.332696,-0.764749,-0.9293,-0.820327,-0.996168,-0.799698,-0.301166,-0.370823,-0.00351612,-0.61328,-0.604505,0.00242559,-0.277974,0.378908,0.22872,-0.081461,-0.784781,0.518903,-0.137035,0.0128698,-0.717848,-0.915734,-0.0560719,-0.764013,-0.517638,-0.928813,-0.876003,0 +-0.58997,-0.529022,-0.406791,0.122672,-0.522075,-0.451231,0.238774,-0.66703,-0.626781,-0.38358,0.0873144,0.20046,0.115596,-0.00588705,-0.00633531,-0.813611,-0.921518,-0.878365,-1.01598,-0.944771,-0.771319,-0.951509,-0.629059,-0.181729,0.312242,0.415776,0.73617,1.25417,1.16639,0.530792,0.524432,0.318236,-0.121637,-0.219827,-0.672518,-0.985713,-0.852839,-0.831359,-0.453094,-0.3521,-0.266213,-0.0402616,-0.921928,-0.738047,-0.345134,0.206579,0.838928,0.925649,-0.023053,-0.360339,0.235771,0.163983,-0.666984,-0.37542,-0.0268615,-0.770842,-0.383751,-0.363075,-0.508195,-0.816374,0 +0.101608,-0.401595,-0.706051,-0.128789,0.269973,0.0191151,-0.313114,-0.163226,-0.45531,-0.408874,-0.174922,0.0241222,-0.0333798,-0.0989106,-0.640624,-0.988552,-0.75844,-0.805333,-0.798143,-0.87167,-0.893886,-0.89367,-0.494753,0.0779775,0.454734,0.564157,0.886379,1.29001,1.06941,0.292966,0.430971,-0.0166031,-0.569067,-0.751738,-0.79485,-1.10801,-0.754053,-0.776422,-0.404871,-0.394639,-0.218875,0.2377,-0.561479,-1.09966,-0.518585,0.169248,0.751525,0.320042,-0.582101,-0.448155,-0.188929,-0.271974,-0.638657,-0.89591,-0.294934,-1.31128,-0.418321,-0.687658,-1.26854,-0.200199,0 +-1.02492,-0.356085,-0.565529,0.0474487,0.331177,0.169693,-0.827778,-0.413366,-0.0904058,-0.166343,0.0910821,0.149772,0.142554,-0.199838,-0.643545,-1.02294,-0.808501,-0.730389,-0.879929,-0.869767,-0.87682,-0.875302,-0.54192,0.0558125,0.300402,0.355918,0.81392,1.29001,1.02696,0.317881,0.485178,0.0340448,-0.592794,-0.996072,-0.940721,-1.15382,-0.778646,-0.945927,-0.428983,-0.596697,-0.539135,-0.00292345,-0.783072,-1.09216,-0.862847,0.0438169,0.669871,0.529922,-0.00914631,-1.17263,0.202461,-0.645651,-0.737802,-0.484997,-0.351371,0.0310952,-0.712159,-0.857678,-0.734681,-1.15428,0 +-0.385541,-0.799047,-0.151769,-0.883174,-0.387067,-0.290501,-0.317969,-0.582475,-0.544002,-0.249667,-0.122173,0.156197,-0.445547,-0.753116,-0.565659,-0.859173,-1.07777,-0.865365,-1.04273,-0.960761,-0.847342,-1.02068,-0.663834,-0.0817775,0.43187,0.588606,0.878645,1.19262,1.04735,0.549366,0.680045,0.318236,-0.130354,-0.442538,-0.911007,-1.08415,-0.599414,-0.541651,-0.262211,-0.537367,-0.265628,0.21992,-0.25427,-0.862587,-0.909013,0.249136,0.819378,0.268774,-0.509786,-0.199344,0.402319,-0.00209595,-0.185421,-0.854819,-0.67588,-0.701108,-0.86772,-0.672202,-1.07441,-0.975386,0 +0.436523,-0.838489,-0.445825,-0.605922,-0.615681,-0.938496,-0.266179,0.401645,0.274499,0.288961,0.241039,0.390362,0.0921859,-0.408381,-0.991601,-0.712601,-0.795606,-0.879895,-0.700464,-0.495128,-0.395473,-0.116753,0.243129,0.382432,0.867103,1.14335,1.16359,1.21075,1.26671,1.23793,0.659951,-0.465869,-0.166671,-0.358211,-1.00131,-1.2905,-1.00206,-0.641664,-0.80673,-1.15809,-1.06745,-0.398826,-0.0348349,-0.382434,-0.793599,-0.659494,-0.359424,-0.163803,-0.064773,-0.755509,-0.596973,-0.531472,-0.383712,-1.14246,-0.196171,-0.701108,-0.124482,-0.548551,-0.928813,-1.01514,0 +-0.707407,-0.738367,-0.33653,-0.352311,0.0269584,-0.437696,-0.898989,-0.281837,-0.00255842,0.120826,0.0534045,0.451046,0.335514,-0.0295989,-0.463919,-0.618038,-0.764887,-0.605738,-0.0581869,0.189046,0.558688,0.576533,0.38463,0.814021,1.04267,1.19604,1.21244,1.11926,0.957861,0.476885,-0.0671775,-0.520737,-0.511928,-0.892284,-1.12171,-1.33707,-1.2013,-1.16896,-1.10109,-0.969469,-1.3018,-0.775171,0.00329637,0.485592,0.485844,0.505225,0.682522,0.433793,0.0742937,0.10801,0.360682,-0.105895,-0.199585,-0.512391,-1.04272,-0.96261,-0.418321,-0.965872,-0.896457,-0.716991,0 +-1.05102,-1.11458,-0.438018,-0.191117,0.370779,-0.364944,-0.547788,-0.150308,0.166379,0.148352,0.121224,0.700917,0.408583,-0.213822,-0.691251,-0.743548,-0.706103,-0.374024,0.453464,0.622317,0.874802,0.791475,0.757968,1.1214,1.12514,1.18129,1.20186,1.29001,1.08856,0.271675,-0.555045,-0.695191,-1.03248,-1.02894,-0.832282,-1.02547,-1.20797,-1.153,-1.32463,-1.50344,-1.35615,-1.01639,-0.40032,0.0662085,0.152134,0.491786,0.622719,0.292806,0.10767,-0.455473,1.00189,0.319682,-0.723639,-1.36161,-0.929843,-0.35244,-0.936859,-0.254881,-1.0097,-0.736867,0 +0.323435,0.111149,0.170911,-0.620967,-0.28086,-1.34286,-0.419931,-0.419238,-0.304956,-0.175271,-0.104088,0.104081,-0.159655,-0.410205,-0.801752,-0.826076,-0.67235,-0.450497,0.0716639,0.401113,0.649838,0.658601,0.587688,1.00472,1.12024,1.19562,1.21244,1.06698,0.755988,0.200554,-0.403638,-0.554033,-0.733222,-0.794118,-0.902131,-1.24469,-1.12127,-0.796613,-1.02625,-1.02432,-1.46485,-0.861701,-0.0967084,0.245516,-0.00812652,0.282734,0.397309,0.0108298,0.0826377,-0.0749387,0.0442395,-0.0228558,-1.13438,-1.19725,-0.478352,-1.15438,-0.919574,-0.965872,-0.847925,-0.756744,0 +-0.233307,-0.201352,-0.0424744,-0.300729,0.0647607,-0.473225,-0.544551,-0.240734,-0.157136,-0.0257346,0.21994,0.426772,-0.24975,-0.636988,-0.862601,-0.881094,-0.902176,-0.639004,-0.0046961,0.203894,0.591657,0.73559,0.528929,0.862115,0.840564,1.04176,1.21244,1.17997,0.842981,0.1548,-0.347094,-0.574668,-0.631049,-0.871527,-1.04955,-1.35448,-1.27466,-1.00227,-1.09808,-1.13626,-1.48004,-0.939933,-0.290962,-0.0650832,-0.0622061,0.329024,0.565216,0.247946,-0.117618,-0.25057,0.210788,-0.396533,-0.511184,-0.348025,-0.774643,-0.980043,-0.86772,-1.0277,-0.718504,-0.100816,0 +-0.763951,1.09113,-0.185599,-0.674698,-1.21692,-0.847133,-0.173928,-0.327637,-0.0608418,0.140169,0.611034,0.271138,-0.0539527,-0.400477,-0.639164,-0.857024,-0.706103,-0.309022,0.455402,0.620414,0.715,0.704325,0.638452,1.02312,1.05042,1.08054,1.21244,1.21328,0.942044,0.258991,-0.489622,-0.538558,-0.647513,-0.700277,-0.619264,-0.980034,-1.22756,-1.26569,-0.913725,-0.916295,-1.43446,-1.3714,-0.711846,-0.299158,-0.275227,0.0333643,-0.0500604,-0.311199,-0.551506,-1.08482,0.344027,0.0705635,-0.0579483,-0.128871,-0.83108,-0.980043,-0.712159,-0.548551,-0.362596,-0.597731,0 +-0.698708,0.00799339,-0.284485,-0.990637,-0.0558467,0.499612,0.661187,0.650611,0.701065,0.8261,0.834839,0.882252,0.228393,-0.632124,-0.884507,-0.71475,-0.531647,0.0201956,0.557732,0.580056,0.744478,0.657038,0.928648,1.36898,1.27008,1.04344,0.998324,1.00121,0.793033,0.182887,-0.594766,-0.735522,-1.03151,-0.796713,-0.657082,-0.954667,-1.29925,-1.30466,-0.925279,-0.924691,-1.19602,-1.02409,-0.594574,-0.168616,0.0743118,0.544049,0.850429,0.618039,0.31627,-0.155436,-0.197256,0.163983,-0.440366,-1.06028,-0.788752,-0.195539,-0.660305,-1.08952,-1.04206,0.396098,0 +0.188599,-0.383391,-0.104929,0.0667919,-0.401468,0.0766394,0.795518,0.394599,0.0717739,0.429569,0.623844,0.750177,0.271667,-0.608412,-0.692224,-0.425904,-0.489171,-0.211901,0.213531,0.497057,0.728575,0.472579,0.692814,1.05993,0.83934,0.765229,0.9279,1.27104,0.897091,0.117654,-0.519063,-0.90341,-1.22375,-1.25078,-1.14602,-1.4268,-1.22381,-1.15534,-1.18749,-1.11108,-1.18024,-1.04484,-0.36075,0.086465,-0.104415,0.302892,0.533015,0.196677,-0.0508663,-0.49938,-0.255548,-0.147415,-0.964421,-0.772636,-0.436025,-0.631375,-0.573882,-0.88859,-1.20383,-0.677238,0 +-0.0854225,-0.0193125,0.129275,0.664282,0.674998,0.0969421,0.212879,1.16146,1.12594,1.42424,1.19127,0.575981,0.136879,-0.733052,-0.712183,-0.748706,-0.785746,-0.705536,-1.01327,-1.44353,-1.27555,-0.0276493,0.617667,0.663467,0.688274,0.630338,0.87376,1.29001,0.614052,-0.198541,0.666961,0.991665,0.380995,-0.8032,-1.1329,-1.29277,-0.804488,-0.66561,-0.6922,-1.12171,-0.695758,-1.30265,-1.31475,-0.562491,-0.879994,-0.765513,-0.671087,0.207892,0.591622,0.517816,-0.122309,-0.448432,-0.879439,-0.909607,-0.704098,0.275163,-0.418321,-0.440357,-0.233175,0.753877,0 +-0.455134,-0.1164,-0.703449,-0.777861,-0.646283,0.988569,1.3118,0.406343,0.462864,0.447424,0.56356,0.307548,-0.324948,-1.19878,-0.682002,-0.681223,-0.541508,-0.63518,-1.16831,-1.48122,-0.760459,0.248649,0.659637,0.722016,0.883843,0.970096,1.20715,1.29001,0.700629,0.176545,0.465552,0.5424,-0.00590622,-1.10721,-1.18731,-1.22689,-1.11252,-0.93231,-0.794675,-1.07022,-0.98855,-1.03535,-0.351397,-0.601504,-0.705885,-0.38922,0.340957,0.718973,0.94207,0.627585,0.352355,-0.188934,-0.128766,1.22714,-0.845189,0.327463,-0.22819,0.548848,1.83756,1.82721,0 +0.136404,-0.859727,-0.365155,0.0538965,0.0143576,-0.148382,-0.368141,-0.38753,-0.633539,0.0531252,0.546228,0.658796,0.182281,-0.950715,-0.957526,-0.96749,-0.856666,-0.800745,-1.13498,-1.23184,-1.09325,-0.114799,0.732386,0.969594,1.27947,1.22808,0.98774,1.29001,1.11187,0.726037,1.23661,1.27867,0.548054,-0.822228,-1.15683,-0.966026,-1.03332,-1.01918,-0.748461,-1.54878,-0.777576,-1.161,-0.947109,-0.335169,-0.67159,-1.13957,-0.49973,0.545943,0.355208,-0.184708,-0.913416,-0.75983,-0.199585,0.350528,-0.421916,-0.335007,-0.764013,-0.734027,-0.281708,0.0383198,0 +1.00196,0.159693,-0.672222,-0.530698,-0.721887,0.211991,0.0639829,-0.199631,-0.44095,0.33211,0.268167,-0.0915326,-0.606584,-1.20547,-1.22623,-0.980815,-0.924173,-0.835158,-1.19622,-1.61257,-1.13514,-0.138638,0.464174,0.73038,1.09003,1.25927,1.08991,1.29001,0.919568,0.529886,1.24876,1.36683,0.496242,-0.971422,-1.09122,-0.909612,-1.07209,-0.918694,-0.667587,-1.55997,-0.819654,-1.45496,-1.38742,-0.624011,-0.700609,-0.634109,-0.190366,0.145409,0.043699,0.225098,-0.0473623,0.267782,-1.10606,-0.80003,-0.436025,0.118262,1.06816,0.904344,-0.039044,-0.677238,0 +0.0494133,-0.0951622,0.134479,0.148463,-1.05311,0.521607,0.400618,-0.264222,0.139349,0.201917,0.405314,0.221164,-0.819407,-1.63714,-1.2311,-1.00617,-0.792572,-0.718154,-0.860549,-0.509215,-0.157321,0.292028,0.310282,0.374486,1.01572,1.26517,1.2039,0.572016,0.254427,0.603273,0.863696,0.267588,-0.769055,-1.32473,-1.21548,-1.31927,-0.861176,-0.738859,-0.958935,-1.26668,-1.4029,-0.839179,-0.657167,-0.444704,-0.43087,-0.463881,0.0384935,0.0637003,-0.0842423,0.269005,-0.988363,-0.500332,-0.865275,0.227254,-0.802861,-0.823142,-0.764013,-0.00757955,-0.702326,-0.339335,0 +-0.137617,-0.0648223,-0.786721,-0.573683,-0.968502,-1.19736,-0.910318,0.0610784,0.0531909,0.201917,0.271181,-0.0429861,-0.757688,-1.59884,-0.924911,-0.8927,-0.751992,-0.5155,-0.517122,-0.410605,-0.151503,0.451085,0.636453,0.882607,1.09329,1.26517,0.958024,0.279423,0.292304,1.15458,1.20436,0.0828169,-1.18985,-1.07391,-0.881678,-0.749458,-0.409761,-0.790509,-1.15484,-1.31202,-1.19543,-0.418977,0.0284774,-0.209129,-0.35173,-0.101773,-0.26857,-1.39905,-1.01599,-0.64574,0.169151,0.122463,0.310306,-0.854819,-0.760534,-0.369873,-0.660305,-0.672202,-0.297886,0.992396,0 diff --git a/data/cylinder-bands.arff b/data/cylinder-bands.arff new file mode 100755 index 0000000..d2880f5 --- /dev/null +++ b/data/cylinder-bands.arff @@ -0,0 +1,550 @@ +@relation cylinder-bands +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'f35' real +@attribute 'clase' {0,1} +@data +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,0.922276,-0.587603,-0.727275,1.08799,-0.0444493,0.266108,-0.538358,1.12552,-0.210141,-0.152213,-0.00621123,-0.516206,-0.0893423,0.192315,0.106361,0.118535,0.294997,0.28194,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,0.289548,0.922276,-0.587603,0.399771,-0.16605,0.19017,0.266108,-0.538358,0.167385,0.273572,0.167348,0.216845,-0.516206,-0.0893423,0.192315,-0.731433,0.118535,0.294997,0.28194,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-1.35789,-1.22016,0.289548,1.44549,-1.30165,1.89874,0.460969,0.19017,-2.73368,0.215785,0.152645,0.152644,0.0874579,0.354928,-0.516206,-0.0893423,0.710554,-0.172904,0.790377,0.294997,0.194359,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-1.35789,-1.22016,-0.76937,0.698039,-1.30165,0.399771,0.460969,-0.396378,-1.48377,0.215785,0.0199803,-0.773667,0.218187,0.24871,-0.516206,-0.0893423,0.192315,0.944154,0.790377,0.294997,0.519108,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,0.548548,-0.587603,0.399771,1.08799,0.19017,0.266108,0.215785,-0.805486,0.757285,0.356179,0.641715,1.55753,-0.0893423,-0.153177,-1.0107,0.230508,0.294997,0.411375,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,-1.22016,-0.76937,0.548548,-1.30165,0.027846,0.962584,-0.279068,-0.983802,0.0649564,0.462194,-0.773667,0.0874579,0.12125,1.55753,-0.0893423,0.192315,-0.452169,0.790377,0.294997,0.194359,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,1.34846,0.548548,-0.587603,0.399771,0.774478,-0.396378,0.266108,0.215785,-0.805486,1.96657,0.719317,0.110628,1.97227,-0.0893423,0.192315,-1.0107,-0.32936,0.294997,0.411375,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,1.34846,0.548548,-0.587603,-0.727275,0.774478,-0.396378,0.266108,0.0649564,-0.805486,1.96657,0.719317,0.110628,1.97227,-0.0893423,0.192315,0.385625,-0.32936,0.294997,0.411375,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,0.548548,-0.706612,1.15489,-2.04711,-0.982926,0.266108,2.47821,-0.805486,-0.331069,0.552273,0.354928,0.105914,-0.0893423,1.05605,0.106361,0.790377,0.294997,0.14398,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,1.34846,1.66973,-0.944628,0.771696,0.460969,-0.396378,1.26604,0.366613,2.5406,-0.0892129,-0.51535,-0.494811,-0.516206,-0.0893423,1.05605,0.106361,0.566429,0.294997,0.4106,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-1.35789,-1.22016,-0.76937,1.66973,-0.944628,-0.727275,0.460969,-1.21754,0.266108,0.215785,1.47929,-0.0892129,-0.297468,-0.0593199,-0.516206,-0.0893423,1.05605,0.106361,0.566429,0.294997,0.405949,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,0.548548,-0.11157,1.15489,-0.793068,0.19017,0.266108,0.969927,0.742264,-0.210141,0.000304978,0.0362757,-0.516206,-0.0893423,0.192315,0.106361,0.566429,0.294997,0.28194,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,0.548548,-0.11157,0.399771,-0.16605,-0.982926,1.26604,0.215785,0.668561,-0.451998,-0.188526,0.376171,-0.516206,-0.0893423,0.710554,0.106361,0.566429,0.294997,0.4106,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,-0.198908,-0.706612,0.399771,-0.479559,-0.982926,-0.233856,-0.161286,-0.805486,-0.693854,0.501434,0.42928,-0.516206,-0.0893423,-0.671416,0.106361,0.790377,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,0.548548,-0.944628,0.027846,0.460969,-0.396378,1.26604,-0.538358,1.52351,-0.451998,-0.22484,-0.186781,-0.516206,-0.0893423,0.192315,0.106361,0.566429,0.294997,0.14398,0.111585,1 +0.142908,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-0.499573,-0.626915,1.24403,-1.35789,-1.22016,1.34846,-3.18873,-0.706612,-0.35535,-0.16605,1.01134,1.26604,-2.04664,-0.805486,-0.935711,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.14398,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-0.499573,-0.626915,0.0167788,-1.35789,0.614558,1.34846,-0.946364,-0.706612,-0.727275,-0.793068,-1.56947,-2.73368,-2.04664,-0.805486,-0.451998,0.719317,0.110628,-0.516206,-0.0893423,0.192315,-0.452169,0.00656096,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-0.499573,-0.626915,-1.21047,-1.35789,0.614558,1.34846,-0.946364,-0.706612,-0.727275,0.14746,-1.56947,-2.73368,-2.04664,0.0642017,-0.451998,0.450595,-0.12305,-0.516206,-0.0893423,0.192315,2.34048,0.00656096,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,0.614558,-0.76937,1.296,-1.53967,0.027846,0.711776,-1.68678,0.266108,-2.04664,0.815966,-0.935711,0.167348,-0.250511,-0.516206,-0.0893423,0.192315,0.106361,-0.105413,0.294997,0.14398,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,0.614558,1.34846,1.296,-1.53967,0.771696,0.774478,-1.45216,0.266108,-2.04664,0.182125,-0.935711,0.261764,0.0681409,-0.516206,-0.0893423,-2.22613,1.22342,-0.105413,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,-1.56184,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,0.548548,-0.706612,-0.35535,0.460969,-0.982926,0.51609,0.215785,-0.805486,1.48285,0.450595,0.503632,-0.516206,-0.0893423,-1.18966,0.106361,-0.32936,0.294997,0.467954,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,-1.56184,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,-0.198908,-0.706612,-0.727275,-0.16605,-0.279068,0.51609,0.215785,-0.805486,1.48285,0.719317,0.110628,-0.516206,-0.0893423,-2.39888,0.106361,-0.32936,0.294997,0.467954,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,-0.946364,-0.944628,-0.727275,0.649074,-0.982926,0.51609,-0.161286,-0.628601,0.999141,0.399756,0.450523,1.14278,-0.0893423,-0.671416,0.106361,-0.32936,0.294997,-0.347794,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,-0.252581,0.614558,1.34846,-0.198908,-1.18264,-0.727275,0.335565,-0.748307,1.26604,0.215785,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,0.294997,0.467954,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,1.53192,1.34846,-0.198908,-1.06364,-0.727275,-0.479559,-0.513688,1.26604,-0.161286,0.373752,0.757285,0.356179,-0.208024,-0.516206,-0.0893423,-0.153177,-0.731433,0.230508,0.294997,0.467954,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,1.53192,1.34846,0.17482,-1.06364,-0.727275,-0.793068,-0.982926,1.26604,-0.538358,0.373752,0.152644,0.356179,-0.208024,-0.516206,-0.0893423,-0.671416,-0.731433,0.230508,0.294997,0.467954,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,1.53192,1.34846,0.548548,-0.706612,0.399771,-0.16605,-0.279068,1.26604,0.215785,0.373752,0.878213,0.356179,-0.208024,-0.516206,-0.0893423,0.192315,0.106361,0.230508,0.294997,0.467954,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,1.53192,1.34846,0.548548,-0.706612,0.399771,-0.040646,-0.748307,1.26604,-0.161286,0.0642017,0.878213,0.450595,-0.12305,-0.516206,-0.0893423,0.192315,0.106361,0.230508,0.294997,0.467954,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.67237,-0.903656,0.852732,0.614558,1.34846,-0.572636,-1.06364,-2.98137,-0.16605,-0.396378,0.266108,0.215785,-0.805486,0.757285,0.450595,0.503632,-0.516206,-0.0893423,-0.671416,-0.452169,-0.32936,0.294997,0.467954,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.67237,-0.903656,0.852732,0.614558,-0.76937,-0.946364,-0.706612,-0.35535,1.08799,-0.982926,0.266108,0.592856,-0.805486,0.999141,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.106361,0.00656096,0.294997,0.394324,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,-1.22016,1.34846,-0.385772,-0.82562,-0.727275,0.460969,1.36327,0.266108,0.0649564,2.14261,0.636357,-0.551664,-0.154916,-0.516206,-0.0893423,0.0195689,-0.452169,0.230508,0.294997,0.467954,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,-1.22016,1.34846,-0.385772,-0.82562,-0.727275,0.774478,1.48057,0.266108,0.215785,2.3932,0.636357,-0.660605,-0.176159,-0.516206,-0.0893423,0.537808,-0.452169,0.230508,0.294997,0.467954,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,1.34846,0.17482,-0.82562,0.027846,-0.730366,-0.0444493,-0.233856,-0.387529,0.31479,-0.669669,0.123772,0.163737,-0.516206,-0.0893423,0.192315,-0.731433,0.118535,0.294997,1.00119,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,-0.198908,-0.82562,-0.727275,-0.793068,-1.10024,-0.233856,-0.538358,0.447454,-0.669669,0.0438814,0.195602,0.313288,-0.0893423,0.192315,-0.172904,0.118535,0.294997,0.669469,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.67237,-0.903656,0.852732,0.614558,1.34846,-0.198908,-0.468595,0.771696,1.08799,-0.0444493,0.266108,0.592856,-0.805486,1.48285,0.450595,0.503632,1.14278,-0.0893423,0.192315,0.106361,-0.32936,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,0.614558,1.34846,-0.946364,-1.06364,-0.727275,0.0847577,-1.68678,0.766072,-2.04664,-0.805486,-0.875247,0.75563,0.0575192,-0.516206,-0.0893423,-2.39888,0.944154,0.118535,0.294997,0.467954,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-0.252581,0.614558,-0.76937,0.17482,-1.53967,-2.98137,-0.16605,0.19017,-0.233856,0.215785,0.226347,-0.451998,0.399756,-0.165537,-0.516206,-0.0893423,0.192315,1.50268,-0.32936,0.294997,0.14398,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,1.34846,-0.198908,-0.944628,0.027846,0.460969,2.06712,1.26604,0.0649564,-0.805486,-0.693854,0.450595,0.503632,0.313288,-0.0893423,1.05605,-0.452169,0.790377,0.294997,0.136229,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,-1.22016,1.34846,-0.7595,-0.944628,-0.727275,-0.16605,0.424789,1.26604,0.291199,0.31479,-0.693854,0.123772,0.163737,1.14278,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.136229,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-1.35789,-1.22016,1.34846,-0.385772,-0.82562,0.399771,-0.16605,0.776718,0.266108,0.517442,-0.805486,-0.935711,0.719317,0.110628,-0.516206,-0.0893423,0.710554,0.106361,-0.553308,0.294997,0.136229,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,-0.76937,-0.572636,-0.82562,0.399771,0.460969,0.19017,1.26604,0.366613,0.226347,-0.935711,0.399756,-0.165537,-0.516206,-0.0893423,1.05605,0.106361,-0.553308,0.294997,0.136229,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,1.34846,-0.946364,-1.06364,-0.727275,0.0847577,-1.68678,0.766072,-2.04664,-0.805486,-0.875247,0.661215,0.195602,-0.516206,-0.0893423,-2.39888,0.944154,0.118535,0.294997,0.467954,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.548548,-0.944628,-0.727275,0.460969,0.424789,0.766072,0.215785,-0.805486,1.16844,0.218187,0.843528,4.46076,-0.0893423,-0.671416,0.106361,-0.32936,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,0.548548,-0.944628,0.399771,0.649074,0.19017,0.51609,0.215785,-0.805486,1.16844,0.218187,0.843528,4.46076,-0.0893423,-1.53515,1.50268,-0.32936,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,-1.22016,1.34846,1.296,-0.944628,0.027846,0.335565,-2.50795,0.266108,-0.236701,-0.628601,-0.742226,0.399756,0.450523,-0.516206,-0.0893423,-1.70789,2.06121,0.00656096,0.294997,0.136229,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,-1.22016,1.34846,0.735412,-0.944628,-0.35535,0.83718,-2.39064,0.266108,-0.538358,0.359011,-0.742226,0.261764,-0.0486982,-0.516206,-0.0893423,-1.18966,-0.731433,0.00656096,0.294997,0.136229,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,0.548548,-0.944628,0.399771,1.08799,1.01134,0.51609,0.592856,-0.805486,1.241,0.450595,0.503632,-0.516206,-0.0893423,-1.88064,-0.731433,-0.32936,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,1.34846,-1.32009,-1.53967,-0.727275,-1.42009,-0.396378,-0.233856,-0.161286,-0.805486,-0.451998,0.356179,0.641715,-0.516206,-0.0893423,0.192315,-0.312536,-0.32936,0.294997,0.136229,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,1.34846,-1.32009,-1.53967,-0.35535,-0.793068,-0.982926,-0.233856,-0.161286,-0.805486,-0.451998,0.450595,0.503632,1.55753,-0.0893423,-1.18966,-0.172904,-0.32936,0.294997,0.136229,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,1.53192,1.34846,-0.198908,-0.587603,0.771696,0.398267,-0.0444493,-0.73382,0.517442,-0.451715,0.515428,0.610375,0.0150322,-0.516206,-0.0893423,0.0195689,0.944154,0.230508,0.294997,0.14398,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,-1.22016,1.34846,0.17482,-1.18264,0.771696,1.08799,-0.0444493,0.266108,-0.840015,1.27292,-1.66128,-0.152213,-0.112429,-0.516206,-0.0893423,0.192315,0.106361,1.91011,0.294997,-0.340431,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,-1.22016,1.34846,0.361684,-1.18264,-0.35535,0.774478,-0.748307,0.266108,-0.538358,1.27292,-1.17757,-0.152213,-0.112429,1.14278,-0.0893423,0.192315,0.106361,1.91011,0.294997,-0.340431,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.198908,-0.587603,-0.727275,-0.16605,-1.21754,0.266108,0.0649564,-0.805486,-0.210141,0.450595,0.503632,-0.516206,-0.0893423,-2.39888,0.106361,0.00656096,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,-0.198908,-0.587603,0.027846,0.774478,-1.21754,0.766072,-0.161286,-0.805486,-0.210141,0.450595,0.503632,-0.516206,-0.0893423,-2.39888,0.106361,0.00656096,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-0.252581,0.614558,1.34846,-0.198908,-1.89669,-0.35535,1.71501,0.776718,-0.233856,0.215785,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,0.192315,-0.172904,-0.32936,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.548548,-0.944628,-0.727275,1.08799,0.659408,-2.73368,0.592856,-0.805486,1.241,0.218187,0.843528,-0.516206,-0.0893423,-0.671416,-0.452169,-0.32936,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,-1.22016,1.34846,-0.572636,-1.53967,1.52682,-2.04711,-1.9214,0.266108,1.42241,-0.112684,-0.935711,0.450595,0.00441051,-0.516206,-0.0893423,-0.671416,0.106361,-0.553308,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,1.34846,-0.572636,-1.53967,1.89874,0.460969,-0.982926,0.266108,1.72407,-0.805486,-0.935711,0.719317,0.110628,-0.516206,-0.0893423,0.710554,1.50268,-0.553308,0.294997,0.136617,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,0.548548,-0.587603,-0.727275,-0.416857,-2.15602,-0.233856,-0.161286,0.742264,-0.0892129,0.000304978,0.0362757,0.313288,-0.0893423,0.0195689,-0.452169,-0.553308,0.294997,-0.340431,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,-0.3028,-0.76937,-0.198908,-0.468595,0.771696,5.79063,-0.0444493,0.766072,0.215785,0.491675,0.757285,0.167348,-0.016833,6.11974,-0.0893423,-0.153177,0.106361,0.790377,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.21252,1.24403,0.852732,-0.3028,0.289548,-0.198908,-0.468595,0.963294,-0.52345,-0.279068,0.266108,-0.840015,0.255828,0.515428,-0.0795852,0.503632,-0.101459,-0.0893423,0.537808,1.22342,0.790377,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,-0.3028,-0.76937,-0.198908,-1.42066,-0.35535,-0.16605,-0.161759,0.266108,-0.538358,0.580118,0.515428,-0.0360087,0.216845,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.14398,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,-0.3028,-0.76937,-0.198908,-1.42066,-0.727275,-0.16605,0.0728602,0.266108,-0.538358,0.93389,0.515428,-0.261154,0.291197,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.14398,0.111585,1 +0.142908,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,-0.3028,1.34846,-3.18873,-0.944628,0.027846,-0.667665,-1.21754,0.266108,-0.689186,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.66489,0.790377,0.294997,0.394324,0.111585,0 +0.142908,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,-0.3028,-0.76937,-3.18873,-0.349587,-0.35535,-0.793068,0.19017,0.266108,0.215785,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,-4.12634,-2.68628,0.790377,0.294997,0.643892,0.111585,0 +0.142908,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.21252,-0.903656,0.852732,-0.3028,1.34846,-3.18873,-1.30165,0.027846,0.711776,-0.748307,1.26604,-0.0858721,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,-0.3028,1.34846,-0.198908,-1.30165,0.963294,2.02852,0.776718,-0.483838,0.215785,-0.805486,0.273572,0.719317,0.110628,1.14278,-0.0893423,-1.01691,1.22342,0.790377,0.294997,0.394324,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,1.34846,-0.012044,-1.18264,0.399771,-0.793068,-0.982926,-0.233856,-0.538358,-0.466455,-0.0892129,0.356179,0.376171,1.14278,-0.0893423,0.192315,-0.731433,0.230508,0.294997,-0.340431,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,0.614558,-0.76937,-0.572636,-1.42066,-0.727275,0.586373,0.659408,1.26604,0.215785,-0.805486,0.757285,0.719317,0.110628,1.14278,-0.0893423,-0.671416,-0.172904,-0.32936,0.294997,-0.561555,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.24403,-1.35789,-1.22016,-0.76937,-0.572636,-0.706612,0.399771,-0.730366,-1.56947,1.26604,-2.04664,-0.805486,-0.693854,0.501434,0.42928,-0.516206,-0.0893423,0.365061,0.106361,0.790377,0.294997,0.643892,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,0.548548,-0.944628,0.771696,-0.780528,-1.21754,0.266108,2.17656,0.285309,0.0317153,0.0438814,0.312441,-0.516206,1.14696,1.05605,0.944154,0.790377,0.294997,0.643892,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,-1.22016,-0.76937,1.8566,-0.706612,-0.727275,0.14746,0.19017,-0.73382,0.517442,1.59721,-0.251257,-0.660605,0.397415,1.97227,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.643892,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,-0.76937,0.922276,-1.65868,0.027846,0.460969,-0.396378,-0.233856,-0.538358,0.0199803,0.152644,0.218187,0.259332,-0.516206,-0.0893423,-2.74437,-0.591801,0.00656096,0.294997,0.643892,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,1.34846,-0.012044,-1.18264,-0.727275,-0.793068,0.19017,-0.233856,-0.538358,0.285309,-0.0892129,0.0438814,0.312441,-0.516206,-0.0893423,-0.49867,-0.172904,0.230508,0.294997,-0.340431,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,-0.76937,0.735412,-0.706612,-0.727275,0.0220559,-0.748307,0.266108,-2.04664,1.02233,-0.451998,-0.0795852,-0.0380764,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.643892,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.55084,-1.35789,-1.22016,-0.76937,-0.572636,-0.706612,-0.727275,-0.040646,-1.80409,1.26604,-2.04664,-0.805486,-0.693854,0.501434,0.42928,-0.516206,-0.0893423,-0.153177,-0.172904,0.790377,0.294997,0.643892,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,-0.76937,0.735412,-0.706612,-0.35535,0.460969,-1.21754,0.266108,-2.04664,-0.805486,-0.451998,0.450595,0.503632,1.14278,-0.0893423,-0.153177,-0.452169,0.790377,0.294997,0.643892,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,0.473802,-0.944628,0.963294,-0.479559,-0.513688,0.266108,-0.312115,0.535897,0.273572,0.30534,-0.250511,0.313288,-0.0893423,-2.91712,-2.12776,0.230508,0.294997,0.14398,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,-0.76937,0.735412,-1.65868,-0.35535,-0.793068,-0.630997,0.266108,-2.04664,0.609599,-0.451998,0.0438814,0.0787627,-0.516206,-0.0893423,-0.153177,0.106361,0.790377,0.294997,0.643892,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.24403,-1.35789,-1.22016,-0.76937,0.735412,-0.944628,0.027846,-0.103348,-0.279068,-0.73382,0.291199,0.167385,-0.331069,0.167348,0.216845,-0.516206,-0.0893423,0.192315,1.50268,0.790377,0.294997,0.643892,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,1.53192,-0.76937,-0.198908,-0.82562,-0.727275,0.523671,-0.0444493,1.01605,0.215785,0.0199803,0.0317153,0.218187,0.259332,-0.516206,-0.0893423,-0.671416,0.106361,0.230508,0.294997,0.14398,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,0.289548,0.735412,-1.65868,-0.727275,-0.16605,-1.45216,0.266108,-2.04664,1.155,-0.451998,0.218187,0.609849,-0.516206,-0.0893423,0.0195689,-0.452169,0.790377,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,-0.76937,-0.198908,-0.944628,0.963294,0.774478,-0.748307,-0.233856,-0.538358,0.535897,0.515428,0.30534,-0.250511,1.14278,-0.0893423,0.192315,-1.28996,0.230508,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,-0.76937,-0.198908,-0.944628,0.963294,0.523671,-0.982926,-0.233856,-0.538358,0.830706,0.515428,0.218187,-0.335485,1.14278,-0.0893423,-1.01691,-0.172904,0.230508,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,-0.198908,-0.944628,0.027846,0.460969,0.19017,-0.483838,0.215785,0.0199803,0.273572,0.218187,0.259332,-0.516206,-0.0893423,-0.325924,0.944154,-0.32936,0.294997,0.14398,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,0.17482,-0.706612,-2.98137,-0.354155,-0.396378,-0.233856,0.215785,1.40558,-0.12791,-0.188526,-0.154916,0.313288,-0.0893423,-1.53515,-1.0107,0.118535,0.294997,0.14398,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,0.289548,1.296,-0.230579,0.771696,-0.228752,-0.161759,0.266108,-0.0104578,-0.805486,-0.331069,0.450595,0.503632,-0.516206,-0.0893423,0.192315,-0.731433,0.00656096,0.294997,0.152505,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,0.922276,-0.230579,0.027846,-1.7336,-0.982926,-0.233856,0.215785,0.0199803,-0.0892129,0.218187,0.259332,-0.516206,-0.0893423,0.192315,-0.172904,0.118535,0.294997,0.4106,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,1.34846,0.17482,-0.706612,-2.98137,-0.103348,-0.396378,-0.233856,-0.538358,1.40558,-0.0892129,-0.188526,-0.154916,-0.516206,-0.0893423,-1.3624,-0.172904,0.118535,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,0.922276,-0.230579,-0.727275,0.210161,-0.513688,0.266108,-0.236701,-0.805486,-0.331069,0.450595,0.503632,-0.516206,-0.0893423,0.192315,2.06121,0.00656096,0.294997,0.152505,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,0.614558,1.34846,-0.198908,-0.230579,-0.35535,0.0220559,-0.513688,1.26604,0.517442,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,-0.325924,0.106361,0.230508,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,0.614558,1.34846,-0.198908,-0.230579,-0.35535,0.962584,-0.0444493,1.01605,0.215785,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,0.0195689,-0.172904,0.230508,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,-0.012044,-0.587603,0.399771,-0.793068,-0.161759,-0.233856,1.12076,1.52351,0.152644,-0.22484,-0.197402,2.80177,-0.0893423,-1.53515,-0.452169,0.118535,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-1.21047,0.852732,0.614558,1.34846,-0.572636,-0.82562,-0.727275,0.14746,2.53636,0.766072,0.215785,-0.805486,0.999141,0.0438814,1.09845,-0.516206,-0.0893423,-4.12634,-2.68628,-0.32936,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.21252,-0.903656,0.852732,-1.22016,-0.76937,-0.0494167,-0.82562,0.399771,-0.16605,0.19017,2.26596,-0.538358,1.65617,-1.17757,-0.261154,-0.229268,-0.516206,-0.0893423,0.192315,-2.12776,0.790377,0.294997,0.669469,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.21252,1.24403,0.852732,-1.22016,-0.76937,0.17482,-0.82562,0.399771,0.14746,-0.396378,2.26596,-0.538358,1.27292,-1.17757,-0.152213,-0.112429,-0.516206,-0.0893423,0.192315,1.50268,0.790377,0.294997,0.669469,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,0.548548,-0.944628,0.399771,0.460969,-0.982926,0.51609,0.215785,-0.30431,1.48285,0.30534,0.354928,-0.516206,-0.0893423,0.192315,-0.452169,-0.32936,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.324311,-0.944628,0.027846,0.460969,0.19017,-0.483838,0.215785,0.535897,1.48285,-0.152213,0.418658,-0.516206,-0.0893423,0.192315,0.385625,-0.32936,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,-0.572636,-0.349587,-0.35535,0.460969,-0.279068,0.51609,0.215785,0.506416,0.273572,-0.22484,0.546119,-0.516206,-0.0893423,0.192315,0.66489,-0.32936,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,-0.572636,-0.349587,-0.35535,0.460969,0.894027,-0.483838,0.215785,1.56773,0.273572,-0.580715,0.301819,-0.516206,-0.0893423,0.192315,1.50268,-0.32936,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,-0.252581,0.614558,1.34846,-0.572636,-0.944628,-0.35535,-0.793068,-0.396378,2.26596,-0.538358,0.31479,-4.3217,0.123772,0.163737,-0.516206,-0.0893423,0.192315,2.89901,0.00656096,0.294997,0.4106,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,-0.252581,0.614558,1.34846,-0.385772,-0.944628,-0.35535,-0.793068,0.19017,2.26596,-0.538358,0.115793,-4.3217,-0.0360087,0.556741,-0.516206,-0.0893423,1.05605,1.50268,0.00656096,0.294997,0.4106,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,-0.76937,-0.198908,-0.82562,-0.727275,-0.16605,-1.21754,0.266108,-2.04664,-0.805486,-0.0892129,0.450595,0.503632,-0.516206,-0.0893423,0.537808,-0.731433,0.230508,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,-0.76937,-0.198908,-0.82562,-0.35535,0.14746,-1.21754,0.266108,-2.04664,0.0199803,-0.0892129,0.218187,0.259332,-0.516206,-0.0893423,-1.53515,-1.28996,0.230508,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,-0.252581,0.614558,-0.76937,0.361684,2.03058,1.52682,-0.793068,-0.0444493,0.266108,-0.387529,-0.805486,0.273572,0.719317,0.110628,-0.516206,-0.0893423,-0.49867,2.06121,0.00656096,0.294997,0.136617,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,-0.198908,1.07851,-0.35535,-0.16605,-0.0444493,1.26604,0.0649564,-0.805486,1.43448,0.537748,0.376171,0.728035,-0.0893423,0.192315,0.106361,-0.32936,0.294997,0.4106,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-0.499573,-0.626915,1.24403,-1.35789,-1.22016,-0.76937,0.922276,0.483471,0.399771,0.649074,2.53636,1.26604,-2.04664,-0.805486,-0.331069,0.450595,0.503632,-0.516206,-0.0893423,-4.12634,-2.68628,0.790377,0.294997,0.4106,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-0.252581,0.614558,-0.76937,-0.198908,0.483471,1.89874,0.14746,1.59788,0.266108,-0.387529,0.609599,-0.572926,0.0438814,0.0787627,-0.101459,-0.0893423,0.8833,0.944154,0.00656096,0.294997,0.4106,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-0.252581,0.614558,-0.76937,-0.198908,0.126446,-2.98137,0.460969,0.894027,0.266108,-0.0858721,0.609599,0.454964,0.0438814,0.0787627,-0.101459,-0.0893423,0.8833,0.944154,0.00656096,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,-0.012044,0.126446,1.52682,-0.85577,-0.279068,-0.233856,-0.161286,-0.805486,0.0317153,-0.188526,1.43834,-0.516206,-0.0893423,0.192315,-0.172904,0.790377,0.294997,0.4106,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,0.548548,0.602479,0.027846,-0.040646,-0.279068,-0.233856,-0.161286,-0.30431,-0.0650273,0.30534,0.354928,0.313288,-0.0893423,0.192315,-0.452169,0.118535,0.294997,0.136617,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.17482,0.721488,0.027846,-0.793068,-0.279068,0.266108,-0.538358,-0.30431,0.0317153,0.261764,0.418658,0.313288,-0.0893423,-0.671416,-0.452169,0.118535,0.294997,0.136617,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,0.324311,1.91157,1.52682,0.460969,-0.513688,0.51609,0.819099,-0.805486,0.273572,0.450595,0.503632,0.313288,-0.0893423,0.192315,0.385625,0.00656096,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.324311,1.91157,0.771696,0.460969,0.424789,-0.483838,0.215785,-0.584379,0.273572,-0.152213,-0.229268,-0.516206,-0.0893423,0.192315,0.385625,0.00656096,0.294997,0.136617,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,-0.76937,0.548548,0.126446,0.399771,1.08799,-1.10024,0.266108,-2.04664,-0.805486,-0.210141,0.450595,0.503632,-0.516206,-0.0893423,-0.325924,-0.172904,0.790377,0.294997,0.4106,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,0.548548,0.483471,-0.35535,-1.2069,-0.513688,-0.233856,-2.04664,-0.0979435,-0.367348,0.501434,-0.0805634,-0.101459,-0.0893423,1.05605,2.89901,0.790377,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,0.548548,0.483471,-0.35535,-0.880851,-0.982926,-0.233856,1.49783,0.698042,-0.367348,-0.115899,0.24871,-0.516206,-0.0893423,1.05605,0.106361,0.790377,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,-0.76937,0.548548,0.126446,0.027846,0.210161,-0.865616,0.266108,-2.04664,2.23105,-0.210141,-0.428197,-0.399215,-0.516206,-0.0893423,0.192315,-1.0107,0.790377,0.294997,0.4106,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,1.34846,-0.946364,1.43554,0.399771,-1.42009,1.8325,1.26604,0.140371,-0.805486,0.0317153,0.261764,0.779797,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,0.294997,0.669469,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,1.34846,0.548548,1.07851,0.027846,-1.04388,0.894027,1.766,0.0649564,-0.805486,-0.693854,0.83552,-0.0593199,-0.516206,-0.0893423,0.192315,0.106361,0.00656096,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,0.922276,0.245455,0.399771,-0.667665,-0.748307,-0.233856,-0.161286,2.5406,-0.0892129,-0.51535,-0.494811,-0.101459,-0.0893423,0.0195689,-0.172904,0.118535,0.294997,0.136617,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,-0.572636,0.602479,0.399771,0.0220559,0.19017,0.266108,-0.538358,-0.805486,0.273572,1.76515,-1.4189,-0.516206,-0.0893423,0.192315,0.804522,0.00656096,0.294997,0.4106,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,0.922276,0.602479,-0.35535,-0.16605,0.659408,-0.233856,-0.161286,1.65617,0.152644,-0.0360087,-0.54792,1.14278,-0.0893423,-0.671416,-1.0107,0.118535,0.294997,0.136617,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.922276,-0.230579,-0.727275,-0.16605,-0.0444493,-0.233856,-0.538358,1.71513,0.273572,-0.362832,-0.133672,-0.516206,-0.0893423,0.192315,-0.312536,0.118535,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,0.548548,-0.11157,-0.727275,0.272863,1.36327,0.266108,1.72407,-0.805486,-0.887339,0.719317,0.110628,-0.516206,-0.0893423,1.05605,1.08379,0.790377,0.294997,0.394324,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,0.548548,-0.11157,-0.727275,0.14746,-0.513688,0.266108,2.32738,-0.0979435,-0.887339,0.501434,-0.0805634,0.728035,-0.0893423,1.05605,0.106361,0.790377,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,-0.572636,0.602479,-0.35535,0.460969,0.424789,-0.483838,0.0649564,0.0199803,0.757285,0.261764,0.18498,-0.516206,-0.0893423,-1.18966,-1.56923,-0.32936,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,-0.572636,0.602479,-0.727275,-0.16605,0.19017,0.51609,0.969927,0.462194,0.757285,0.0874579,0.12125,2.80177,-0.0893423,-1.18966,0.106361,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,-0.198908,-0.11157,-0.727275,0.460969,-1.21754,0.51609,0.215785,-0.805486,1.48285,0.450595,0.503632,2.80177,-0.0893423,0.192315,1.50268,0.00656096,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,-0.198908,-0.11157,-0.35535,0.460969,-0.982926,-0.483838,0.215785,-0.805486,1.48285,0.450595,0.503632,2.80177,-0.0893423,-1.53515,-1.28996,0.00656096,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,-0.76937,-3.18873,0.959504,-0.35535,-0.667665,0.19017,1.26604,-0.538358,0.0199803,-4.3217,0.218187,0.259332,-0.516206,-0.0893423,-0.671416,4.29533,0.00656096,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,1.34846,-0.385772,0.959504,-0.35535,0.460969,-0.396378,0.266108,-0.538358,-0.171646,-4.3217,0.123772,0.514254,-0.516206,-0.0893423,0.192315,1.50268,0.00656096,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-1.35789,-1.22016,1.34846,-0.198908,0.364463,-0.727275,0.335565,-0.279068,-0.73382,0.819099,0.0199803,-0.123073,0.218187,0.259332,-0.516206,-0.0893423,0.192315,1.50268,0.230508,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,-1.22016,1.34846,-0.198908,0.364463,-0.727275,0.0847577,-0.0444493,-0.73382,0.517442,0.0347207,-0.123073,0.30534,0.0468975,-0.516206,-0.0893423,0.192315,0.385625,0.230508,0.294997,0.136617,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,0.922276,-0.706612,0.027846,0.14746,0.0728602,-0.233856,-0.538358,1.65617,0.152644,0.123772,-0.229268,1.14278,-0.0893423,0.192315,0.106361,0.118535,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.698039,1.55455,1.52682,0.14746,0.424789,-0.233856,0.215785,-0.805486,0.0317153,1.3657,-0.834707,1.14278,-0.0893423,0.192315,-0.172904,0.118535,0.294997,0.136617,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-0.198908,0.602479,-0.35535,0.774478,0.0728602,-0.73382,0.0649564,-0.805486,1.241,0.552273,0.354928,-0.516206,-0.0893423,0.192315,1.50268,-0.32936,0.294997,0.394324,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,0.17482,0.364463,0.771696,0.14746,-0.279068,0.51609,0.215785,0.0199803,1.12007,0.218187,0.259332,0.313288,-0.0893423,0.192315,0.944154,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,1.53192,-0.76937,0.361684,2.03058,1.52682,0.460969,0.19017,0.266108,0.215785,-0.805486,1.12007,0.450595,0.503632,-0.516206,-0.0893423,-1.53515,0.106361,0.230508,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,1.53192,-0.76937,0.361684,2.03058,0.963294,0.460969,0.19017,0.266108,0.215785,-0.805486,1.12007,-0.0360087,1.21529,-0.516206,-0.0893423,-1.53515,-0.591801,0.230508,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.17482,0.364463,1.15489,0.14746,-0.513688,-0.483838,0.969927,0.742264,1.12007,0.000304978,0.0362757,0.313288,-0.0893423,0.192315,2.34048,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.21252,-0.903656,0.852732,0.614558,1.34846,-0.385772,2.2686,0.771696,-0.228752,-1.68678,0.266108,0.0649564,-0.30431,-0.693854,0.356179,0.280576,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.428426,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,1.34846,-0.385772,2.2686,1.52682,-0.16605,-1.56947,0.266108,-0.161286,-0.0095007,-0.693854,0.123772,0.397415,-0.516206,-0.0893423,-0.153177,-0.172904,0.790377,0.294997,0.4106,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,0.361684,1.07851,1.52682,-0.479559,-0.513688,0.51609,-0.538358,0.462194,-0.451998,0.0874579,0.12125,-0.516206,-0.0893423,-0.671416,1.50268,0.230508,0.294997,0.669469,0.111585,1 +-0.88764,-0.185139,0.312177,3.63314,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,0.614558,-0.76937,-0.198908,1.31653,0.399771,0.460969,0.659408,1.01605,0.0649564,-0.805486,0.999141,0.450595,0.503632,1.14278,-0.0893423,0.192315,-1.0107,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,0.614558,-0.76937,-0.198908,1.31653,0.027846,0.460969,0.659408,1.01605,0.366613,-0.805486,0.999141,0.450595,0.503632,1.14278,-0.0893423,-1.70789,0.106361,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-0.198908,1.55455,-0.727275,0.14746,0.776718,1.26604,-0.0858721,-0.805486,1.48285,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,-0.198908,1.55455,-0.35535,-0.16605,0.424789,0.266108,0.291199,-0.805486,1.48285,0.537748,0.376171,0.728035,-0.0893423,0.192315,0.106361,-0.32936,0.294997,0.4106,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,0.548548,2.14959,1.15489,1.08799,0.424789,0.266108,1.72407,-0.805486,-0.210141,0.719317,0.110628,-0.516206,-0.0893423,1.05605,0.106361,0.790377,0.294997,0.394324,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,0.548548,1.07851,1.52682,0.460969,-0.279068,-0.483838,0.0649564,0.0199803,-0.451998,0.218187,0.259332,-0.516206,-0.0893423,-2.39888,-1.28996,0.230508,0.294997,0.669469,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,0.548548,1.31653,1.52682,0.0847577,2.30174,0.266108,-0.161286,0.757004,-0.0892129,-0.326518,0.514254,-0.516206,-0.0893423,0.710554,0.944154,0.00656096,0.294997,0.669469,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,0.614558,1.34846,0.548548,1.31653,1.52682,-0.228752,2.06712,0.266108,-0.0858721,0.815966,0.3945,-0.188526,0.269954,-0.516206,-0.0893423,0.710554,-0.452169,0.00656096,0.294997,0.669469,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,-0.76937,0.548548,2.03058,1.15489,-1.16928,-0.982926,-2.73368,-2.04664,2.20157,-0.210141,-0.457248,-0.335485,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.394324,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,1.53192,1.34846,-0.572636,2.03058,1.52682,-0.103348,1.36327,0.766072,0.215785,0.0789422,-0.693854,0.501434,-0.208024,-0.101459,-0.0893423,0.192315,0.106361,0.230508,0.294997,0.428426,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,-3.18873,0.602479,0.399771,0.473509,0.659408,-1.73375,0.215785,-0.0242412,1.10556,0.000304978,0.599228,1.55753,-0.0893423,1.05605,-0.452169,-0.32936,0.294997,0.669469,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,0.289548,-0.7595,0.602479,1.15489,-0.147239,0.0728602,-1.48377,0.0649564,-0.0242412,1.10556,0.000304978,0.599228,-0.516206,-0.0893423,-1.01691,-1.28996,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,0.614558,-0.76937,-0.198908,0.602479,0.399771,1.08799,0.424789,0.266108,0.215785,-0.805486,1.84564,0.000304978,1.16218,-0.516206,-0.0893423,-0.671416,0.106361,0.00656096,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,0.614558,-0.76937,-0.946364,0.602479,0.208173,1.08799,-0.748307,0.266108,0.215785,-0.805486,1.84564,0.000304978,1.16218,-0.516206,-0.0893423,-0.671416,0.106361,0.00656096,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,-0.946364,2.14959,0.399771,0.460969,2.30174,0.266108,0.592856,-0.805486,0.636357,0.719317,0.110628,-0.516206,-0.0893423,0.624181,0.106361,0.00656096,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,-0.76937,0.17482,2.14959,0.027846,0.210161,-0.748307,0.266108,-0.462943,0.0199803,1.54574,0.218187,0.259332,-0.516206,-0.0893423,0.796927,0.385625,-0.32936,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,-0.76937,0.17482,2.14959,0.027846,0.523671,-0.279068,0.266108,-0.387529,0.0199803,1.54574,0.218187,0.259332,-0.516206,-0.0893423,0.537808,-0.731433,-0.32936,0.294997,0.14398,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,1.24403,0.852732,0.614558,-0.76937,-0.7595,2.14959,-0.727275,0.14746,1.8325,0.266108,0.215785,-0.731784,0.636357,0.000304978,0.599228,-0.516206,-0.0893423,0.192315,0.106361,0.00656096,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-3.18873,1.79256,-0.727275,-0.16605,0.424789,0.51609,0.215785,0.226347,0.273572,0.399756,-0.165537,1.55753,-0.0893423,0.192315,-0.172904,-0.32936,0.294997,0.136617,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,-1.35789,-1.22016,-0.76937,0.17482,1.67355,0.399771,0.649074,-0.0444493,0.266108,0.366613,-0.30431,-0.210141,0.30534,0.354928,1.14278,-0.0893423,0.192315,0.106361,0.118535,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,-1.22016,-0.76937,-0.198908,2.03058,0.399771,-0.793068,1.12865,0.266108,0.366613,-0.805486,-0.108561,0.537748,0.376171,0.728035,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.136617,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,-0.198908,1.55455,-0.727275,0.774478,0.424789,-0.483838,0.215785,-0.466455,0.273572,0.356179,0.397415,-0.516206,-0.0893423,-1.88064,-0.452169,-0.32936,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,-0.76937,-0.198908,1.67355,0.027846,0.586373,0.0728602,-0.233856,0.215785,-0.805486,-0.693854,0.719317,0.110628,1.14278,-0.0893423,0.192315,0.106361,0.566429,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,-0.76937,0.548548,1.79256,-0.35535,0.460969,1.01134,1.26604,-2.04664,0.830706,-0.621297,0.218187,-0.335485,-0.516206,-0.0893423,0.192315,0.106361,0.118535,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,-1.22016,1.34846,-0.572636,1.31653,1.52682,-0.479559,1.8325,1.26604,0.592856,-0.805486,0.273572,0.777419,0.025654,-0.516206,-0.0893423,0.192315,0.106361,0.230508,0.294997,0.428426,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.198908,1.31653,-2.98137,0.460969,0.19017,0.51609,0.969927,-0.805486,1.12007,0.719317,0.110628,-0.516206,-0.0893423,0.192315,-0.731433,-0.32936,0.294997,0.669469,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,-1.22016,-0.76937,-0.012044,0.840496,1.52682,-0.16605,-0.279068,1.26604,-0.538358,-0.0095007,0.515428,0.123772,0.397415,-0.516206,-0.0893423,0.192315,0.106361,0.230508,0.294997,0.152505,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.24403,-1.35789,-1.22016,-0.76937,0.548548,1.55455,-0.35535,1.71501,-1.68678,1.26604,-2.04664,-0.805486,-1.17757,0.719317,0.110628,-0.516206,-0.0893423,1.05605,0.106361,0.790377,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.55084,-1.35789,0.614558,-0.76937,0.548548,1.55455,-0.727275,0.460969,0.894027,0.266108,-2.04664,-0.805486,-1.17757,0.450595,0.49301,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,0.614558,-0.76937,1.296,1.79256,-0.727275,-0.479559,0.776718,-1.73375,-2.04664,-0.805486,-4.3217,0.697528,0.142493,-0.516206,-0.0893423,0.192315,0.106361,0.118535,0.294997,0.394324,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,-0.198908,1.55455,-0.35535,0.0847577,1.12865,-0.483838,-0.236701,-0.156905,0.116365,0.210925,0.376171,0.313288,-0.0893423,-0.671416,0.944154,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.198908,1.55455,-0.727275,0.460969,-0.279068,0.51609,-0.312115,-0.0979435,0.116365,0.501434,-0.0805634,0.728035,-0.0893423,-0.671416,-0.731433,-0.32936,0.294997,0.394324,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-1.35789,-1.22016,-0.76937,0.361684,1.43554,0.399771,0.711776,0.659408,-0.73382,-0.0104578,2.24579,0.0317153,-0.820385,0.163737,1.55753,-0.0893423,0.365061,-1.84849,0.790377,-1.07452,-0.361358,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,-1.24747,0.752658,1.24403,-1.35789,-1.22016,-0.76937,0.548548,-0.11157,0.399771,-0.479559,0.659408,-1.73375,-0.236701,2.24579,-0.693854,-0.820385,0.163737,-0.516206,-0.0893423,1.05605,-1.0107,0.790377,-1.07452,0.15018,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,-0.76937,0.548548,-0.349587,-0.35535,-1.42009,0.19017,1.26604,-2.04664,1.98046,-0.210141,-0.391883,-0.261133,-0.516206,-0.0893423,0.537808,-1.0107,0.790377,-1.07452,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,-1.24747,0.2928,1.24403,-1.35789,-1.22016,1.34846,0.698039,0.364463,2.65386,0.460969,0.424789,0.766072,-0.387529,1.52351,-2.14499,-0.22484,-0.186781,-0.516206,-0.0893423,0.192315,0.106361,1.91011,0.294997,-0.361358,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.21252,-0.903656,-0.252581,0.614558,-0.76937,-0.198908,-1.18264,-0.35535,-0.793068,0.0728602,0.266108,-0.538358,-0.805486,-0.621297,0.661215,0.195602,1.55753,-0.0893423,1.22879,2.34048,0.00656096,-1.07452,-0.345857,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,0.614558,-0.76937,0.17482,-1.06364,-0.35535,-0.16605,-0.279068,0.266108,0.215785,-0.805486,1.04751,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,-0.683231,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,0.17482,-1.06364,-0.35535,0.460969,0.659408,-0.233856,0.0649564,-0.805486,1.04751,0.123772,0.98161,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,-1.22016,1.34846,0.922276,0.364463,0.027846,-0.16605,-0.982926,-0.233856,2.47821,-0.30431,-0.451998,0.30534,0.354928,-0.516206,-0.0893423,-2.39888,-1.56923,1.35025,0.294997,0.15018,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,1.34846,1.10914,0.364463,0.027846,0.14746,0.19017,-0.233856,2.10114,-0.805486,-0.451998,0.719317,0.110628,-0.516206,-0.0893423,1.05605,-1.28996,1.35025,0.294997,0.15018,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.24403,-1.35789,-1.22016,-0.76937,-0.198908,0.364463,-0.35535,0.203891,1.24596,1.26604,-2.04664,-0.628601,-0.210141,0.399756,0.450523,-0.516206,-0.0893423,0.192315,-1.0107,0.790377,-1.07452,0.15018,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,-1.22016,-0.76937,-0.198908,-1.53967,0.399771,0.460969,1.59788,-0.233856,-0.161286,-0.643341,0.273572,0.0874579,0.928501,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,-1.07452,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-1.21047,-1.35789,0.614558,1.34846,0.548548,1.07851,0.399771,-0.793068,-0.396378,-0.233856,0.442028,-0.805486,0.515428,0.915411,-0.176159,-0.516206,-0.0893423,-4.12634,-2.68628,0.230508,0.294997,-0.345857,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,-1.24747,0.752658,1.24403,0.852732,-1.22016,-0.76937,0.17482,-0.230579,-0.727275,0.460969,-0.748307,-1.23378,0.819099,1.40558,-0.331069,-0.188526,-0.154916,-0.516206,-0.0893423,0.192315,-2.12776,0.566429,-1.07452,-0.345857,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,-0.76937,1.296,-0.944628,1.15489,-0.16605,1.8325,1.26604,-2.04664,0.594859,-0.693854,0.000304978,0.153115,-0.516206,9.80109,0.192315,0.106361,0.790377,-0.683231,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,0.361684,-1.18264,0.771696,1.71501,-0.513688,-0.73382,0.215785,1.80358,0.273572,-0.609765,0.174358,0.313288,-0.0893423,0.192315,0.106361,0.790377,-1.07452,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,0.361684,0.126446,0.027846,-0.604963,2.30174,0.266108,2.10114,0.919149,-0.451998,0.0438814,-0.144294,-0.516206,-0.0893423,1.05605,0.106361,0.790377,-1.07452,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-0.252581,0.614558,1.34846,-0.385772,0.364463,0.399771,-0.479559,0.19017,1.26604,-0.538358,0.801225,1.48285,0.123772,-0.176159,-0.516206,-0.0893423,0.192315,-1.56923,-0.32936,0.294997,0.15018,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,0.614558,1.34846,0.735412,0.364463,0.027846,-0.416857,0.424789,-2.73368,0.366613,0.742264,1.48285,0.000304978,0.0362757,-0.516206,-0.0893423,0.192315,-1.28996,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,-0.76937,0.17482,0.483471,0.399771,-0.16605,-0.396378,0.266108,-0.161286,-0.805486,1.241,0.523223,0.397415,-0.516206,-0.0893423,-0.671416,3.7368,-0.32936,-1.07452,-0.369108,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.21252,1.24403,0.852732,0.614558,-0.76937,-0.198908,-0.349587,0.399771,-0.16605,0.424789,1.26604,0.592856,-0.805486,-0.16177,0.486909,0.450523,-0.516206,-0.0893423,-1.53515,1.50268,-0.105413,-1.07452,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.21252,-0.903656,0.852732,0.614558,-0.76937,-0.198908,-0.349587,0.771696,-0.16605,-0.396378,1.26604,0.215785,-0.805486,-0.16177,0.661215,0.195602,-0.516206,-0.0893423,0.192315,5.69165,0.00656096,-1.07452,0.14243,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,0.548548,0.126446,-0.727275,-0.793068,0.19017,0.266108,2.47821,-0.156905,-0.210141,0.167348,0.450523,-0.516206,-0.0893423,0.192315,0.106361,0.790377,-1.07452,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,-0.76937,0.922276,0.364463,-0.35535,-1.27587,0.0728602,1.26604,-2.04664,1.98046,-0.210141,-0.391883,-0.261133,-0.516206,-0.0893423,-0.671416,-1.0107,0.790377,-1.07452,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.55084,-1.35789,-1.22016,-0.76937,-0.198908,0.364463,0.027846,-0.52972,1.01134,1.26604,-2.04664,-0.142165,-0.210141,0.261764,0.301819,-0.516206,-0.0893423,0.192315,0.106361,0.790377,-1.07452,-0.353607,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,2.23032,0.364463,-0.727275,-0.479559,0.424789,0.266108,1.72407,-0.481196,0.273572,0.298077,0.546119,-0.516206,-0.0893423,1.05605,-0.172904,0.790377,-1.07452,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,-0.76937,0.361684,0.364463,-0.727275,0.51113,-1.10024,1.26604,-2.04664,-0.319051,-0.210141,0.210925,0.49301,-0.516206,-0.0893423,0.192315,-0.172904,0.790377,-1.66146,0.15018,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,-1.22016,-0.76937,1.296,-0.11157,0.399771,-0.16605,-0.748307,0.266108,0.215785,1.53825,-0.210141,-0.609765,0.354928,-0.101459,-0.0893423,1.05605,-1.28996,0.790377,-1.07452,-0.105589,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,10.6241,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.548548,-0.349587,0.771696,0.335565,-0.982926,-2.73368,0.215785,-0.805486,0.273572,0.450595,0.503632,1.55753,-0.0893423,0.192315,0.66489,-0.32936,-1.07452,-0.105589,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,-1.22016,-0.76937,0.548548,-0.349587,-0.35535,0.14746,-1.21754,0.51609,0.215785,-0.805486,0.273572,0.348917,0.652336,3.63126,-0.0893423,-1.53515,0.106361,-0.32936,-1.07452,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-1.35789,0.614558,-0.76937,-0.198908,0.364463,-0.35535,-0.16605,0.19017,0.266108,0.0649564,-0.805486,0.0317153,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.66489,-0.32936,-1.07452,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,0.614558,-0.76937,-0.198908,0.364463,0.399771,-0.16605,1.12865,0.266108,0.0649564,-0.805486,0.0317153,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.66489,-0.32936,-1.07452,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,-0.198908,0.364463,0.771696,-0.730366,0.19017,-2.73368,-0.538358,2.85015,0.152644,-0.820385,-0.271755,0.728035,-0.0893423,0.192315,-0.452169,0.790377,0.294997,0.15018,0.111585,1 +1.17346,5.3908,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,0.289548,0.548548,1.67355,-2.98137,1.08799,2.53636,-0.233856,1.8749,0.0199803,-0.331069,0.210925,0.259332,-0.516206,-0.0893423,1.05605,-1.0107,1.35025,-7.53083,-7.85617,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.735412,1.31653,1.89874,-0.479559,1.94981,0.266108,-0.538358,-0.805486,0.3945,0.450595,0.503632,-0.516206,-0.0893423,-0.671416,0.106361,0.566429,-0.683231,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,0.548548,0.602479,-0.727275,-0.604963,3.12291,0.266108,3.23236,-0.805486,-0.451998,0.210925,0.854149,-0.516206,-0.0893423,1.05605,0.106361,1.35025,-0.683231,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-0.496098,-0.499573,-0.626915,0.32359,-1.35789,1.53192,1.34846,0.361684,1.31653,0.771696,-0.16605,0.659408,-2.73368,-2.04664,0.0199803,-4.3217,0.261764,0.18498,-0.516206,-0.0893423,0.192315,0.106361,0.230508,0.294997,-0.361358,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-0.496098,-0.499573,-0.626915,-1.21047,-1.35789,1.53192,1.34846,0.361684,1.31653,-2.98137,-0.16605,0.19017,-2.73368,-2.04664,0.0199803,-4.3217,0.261764,0.18498,-0.516206,-0.0893423,0.192315,0.106361,0.230508,0.294997,-0.345857,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-0.252581,0.614558,-0.76937,-0.946364,0.840496,1.89874,0.398267,0.307479,-0.233856,0.215785,-0.805486,0.878213,0.719317,0.110628,3.63126,-0.0893423,0.192315,0.106361,-0.32936,-0.683231,-0.880647,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-0.252581,0.614558,-0.76937,-0.946364,0.840496,0.771696,0.649074,-0.0444493,-0.233856,0.215785,-0.805486,0.878213,0.450595,0.503632,3.63126,-0.0893423,0.192315,0.106361,-0.32936,-0.683231,-0.880647,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.946364,0.00743802,0.399771,0.460969,-0.982926,0.51609,-0.538358,-0.805486,1.12007,0.450595,0.503632,-0.516206,-0.0893423,-1.53515,-1.0107,-0.32936,-0.683231,0.15018,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,10.6241,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,-0.946364,0.00743802,0.771696,0.460969,-0.279068,0.766072,-0.161286,2.00994,1.12007,-0.718707,0.18498,0.728035,-0.0893423,-2.05339,-1.28996,-0.32936,-0.683231,0.15018,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,-0.76937,-0.946364,0.840496,2.28194,-0.16605,2.30174,0.266108,0.215785,-0.805486,1.241,0.450595,0.503632,1.97227,-0.0893423,-0.239551,0.106361,-0.32936,-0.683231,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,-0.76937,-0.946364,0.840496,2.28194,-0.16605,2.06712,0.266108,0.215785,-0.805486,1.241,0.450595,0.503632,1.97227,-0.0893423,1.05605,-0.591801,-0.32936,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,1.24403,0.852732,0.614558,-0.76937,0.735412,0.364463,1.89874,0.649074,1.36327,0.266108,0.819099,-0.805486,0.0317153,0.719317,0.216845,-0.516206,-0.0893423,0.8833,0.385625,0.00656096,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,0.959648,0.364463,-0.35535,-0.16605,0.424789,0.266108,0.819099,-0.805486,0.0317153,0.450595,0.503632,-0.516206,-0.0893423,-0.671416,0.106361,0.00656096,-0.683231,-0.105589,0.111585,1 +1.17346,5.3908,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,0.289548,-0.198908,0.364463,-2.98137,-0.416857,0.776718,-2.73368,-0.538358,2.3932,0.152644,-0.660605,-0.176159,-0.516206,-0.0893423,0.192315,-0.452169,0.790377,-7.53083,-7.85617,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,2.44927,-0.76937,0.548548,0.245455,0.399771,0.460969,-1.56947,0.266108,-2.04664,1.52351,-1.17757,-0.22484,-0.186781,-0.516206,-0.0893423,0.192315,0.106361,-0.553308,-0.683231,-0.609376,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.32359,-1.35789,2.44927,-0.76937,0.548548,0.245455,0.399771,0.774478,1.36327,0.266108,-2.04664,0.860187,-1.17757,-0.0795852,0.0681409,-0.516206,-0.0893423,0.192315,-0.731433,-0.553308,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,0.548548,0.959504,1.15489,-1.42009,1.59788,-0.233856,1.64866,-0.805486,-1.17757,0.450595,0.503632,-0.516206,-0.0893423,1.05605,0.385625,0.790377,-0.683231,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,1.24403,-1.35789,-1.22016,-0.76937,1.10914,0.483471,0.771696,-0.793068,0.894027,0.266108,0.215785,1.11078,-0.210141,-0.188526,0.0575192,-0.516206,-0.0893423,0.8833,-0.172904,0.118535,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,-0.76937,0.922276,0.483471,0.399771,-1.42009,0.894027,0.266108,0.0649564,1.21396,-0.210141,-0.261154,0.0893844,-0.516206,-0.0893423,1.05605,-0.452169,0.118535,-0.683231,-0.105589,0.111585,1 +0.142908,5.3908,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-1.35789,0.614558,0.289548,-3.18873,1.07851,-2.98137,0.14746,0.19017,-2.73368,0.215785,1.11078,-0.0892129,0.123772,-0.409837,-0.516206,-0.0893423,0.624181,0.106361,0.00656096,-7.53083,-7.85617,0.111585,1 +0.142908,5.3908,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,0.614558,0.289548,-3.18873,1.07851,-2.98137,-0.16605,-0.0444493,-0.233856,0.517442,1.40558,-0.0892129,-0.188526,-0.154916,-0.516206,-0.0893423,0.192315,0.106361,0.00656096,-7.53083,-7.85617,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,-1.63512,-0.499573,-0.626915,0.32359,-1.35789,-1.22016,-0.76937,0.548548,0.959504,1.52682,-0.16605,1.36327,0.266108,-2.04664,-0.805486,-0.693854,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.106361,0.790377,-0.683231,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.922276,-0.230579,-0.35535,0.210161,0.19017,1.26604,0.215785,4.4716,0.3945,-0.791334,-1.48263,-0.101459,-0.0893423,0.537808,0.106361,0.790377,-0.29194,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,0.614558,-0.76937,1.66973,-0.230579,0.771696,-1.10658,0.424789,-0.233856,0.215785,-0.805486,-1.05664,1.13329,-0.494811,-0.101459,-0.0893423,0.192315,0.106361,0.566429,-0.29194,0.14243,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,1.66973,1.67355,1.52682,-0.793068,2.53636,0.266108,0.969927,0.226347,-1.41942,0.399756,-0.165537,-0.516206,-0.0893423,0.192315,0.106361,0.790377,-0.683231,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-0.496098,0.996225,-0.167058,0.32359,0.852732,0.614558,1.34846,0.548548,0.840496,0.399771,0.460969,-9.19459,0.766072,-0.236701,-0.805486,0.999141,0.450595,0.503632,-0.516206,-0.0893423,-2.05339,-1.0107,-0.32936,0.686288,-0.59,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,1.24403,-1.35789,0.614558,-0.76937,1.66973,0.840496,1.52682,-0.16605,-0.513688,-0.233856,0.366613,-0.805486,0.0317153,0.356179,0.641715,-0.101459,-0.0893423,0.192315,0.106361,0.566429,-0.29194,0.14243,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-0.496098,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,0.548548,0.840496,0.771696,0.14746,-0.396378,0.51609,-0.236701,-0.805486,0.999141,0.450595,0.503632,-0.516206,-0.0893423,-1.53515,-1.0107,-0.32936,0.686288,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,-1.22016,1.34846,1.48287,-0.468595,-1.0992,1.08799,-0.396378,0.266108,0.215785,1.3024,-0.210141,-0.362832,0.174358,-0.516206,-0.0893423,1.05605,-1.28996,0.790377,0.294997,-0.345857,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,1.34846,-0.198908,-0.468595,-0.727275,-0.16605,-0.396378,0.266108,-0.161286,-0.805486,0.757285,0.617638,0.259332,-0.516206,-0.0893423,0.0195689,0.385625,0.00656096,0.294997,-0.345857,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,0.17482,-0.468595,-0.727275,-0.793068,0.19017,0.266108,-0.538358,1.8478,0.0317153,-0.551664,0.0575192,-0.516206,-0.0893423,0.192315,-0.452169,0.790377,0.294997,-0.345857,0.111585,1 +1.17346,5.3908,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,0.614558,0.289548,0.548548,0.959504,0.771696,-0.479559,-0.865616,-0.233856,-0.538358,0.830706,-0.331069,0.210925,-0.335485,-0.516206,-0.0893423,0.192315,0.106361,0.790377,-7.53083,-7.85617,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,-0.76937,1.296,0.840496,0.771696,-0.103348,1.71519,1.26604,-0.161286,-0.805486,-0.331069,0.254501,-0.271755,-0.516206,-0.0893423,0.192315,0.106361,0.790377,-0.683231,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,-0.76937,0.548548,0.840496,1.15489,-1.10658,2.53636,0.266108,0.592856,-0.805486,-0.0892129,0.210925,0.854149,0.728035,-0.0893423,0.537808,-1.28996,0.790377,-0.683231,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,-0.198908,0.602479,0.399771,0.774478,0.19017,-2.73368,1.347,2.18683,-0.935711,-0.609765,-0.101807,-0.516206,-0.0893423,1.05605,-1.0107,0.790377,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,-1.22016,1.34846,-0.946364,0.602479,1.89874,0.460969,-0.982926,-2.73368,2.47821,2.40794,-0.935711,-0.522613,-0.388594,-0.516206,-0.0893423,1.05605,-0.172904,0.790377,0.294997,-0.353607,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,-1.24747,0.2928,1.24403,-1.35789,-1.22016,-0.76937,-0.385772,0.602479,0.399771,-0.793068,0.424789,-0.233856,0.0649564,-0.805486,-0.210141,0.450595,0.503632,0.313288,-0.0893423,0.192315,-1.28996,0.790377,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,1.34846,0.548548,0.602479,0.771696,-0.416857,-0.513688,0.266108,-2.04664,0.300049,-0.935711,0.0874579,0.238089,-0.516206,9.80109,0.0195689,-0.452169,0.790377,0.294997,-0.353607,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,1.34846,1.10914,0.602479,2.65386,-0.918472,-0.630997,0.266108,-2.04664,-0.156905,-0.935711,0.00756772,0.684202,-0.516206,-0.0893423,-0.671416,-1.28996,0.790377,0.294997,-0.353607,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,1.34846,0.17482,0.483471,-0.727275,-0.793068,-0.630997,0.266108,0.215785,-0.805486,0.757285,0.617638,0.259332,-0.516206,-0.0893423,0.192315,-0.452169,0.00656096,0.294997,-0.353607,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,-0.946364,0.602479,-0.727275,-0.354155,1.01134,0.766072,-0.538358,-0.805486,0.878213,0.450595,0.503632,4.46076,-0.0893423,-1.53515,-1.0107,-0.32936,0.294997,-0.353607,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.198908,0.602479,0.771696,0.0220559,0.894027,0.51609,0.366613,-0.805486,0.878213,0.450595,0.503632,4.46076,-0.0893423,-0.325924,-0.452169,-0.32936,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.55084,-1.35789,-1.22016,1.34846,0.922276,0.602479,1.52682,-0.16605,1.01134,0.266108,-2.04664,-0.805486,-1.2985,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,-0.353607,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.24403,-1.35789,-1.22016,1.34846,0.922276,0.602479,1.52682,-0.16605,1.71519,0.266108,-2.04664,-0.805486,-1.2985,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,-0.353607,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,-1.63512,-1.24747,0.752658,-0.903656,-1.35789,-1.22016,1.34846,1.296,0.602479,0.399771,0.460969,1.01134,-0.233856,-0.0858721,0.742264,-0.814782,-0.152213,0.269954,0.728035,-0.0893423,1.05605,0.944154,0.790377,0.294997,-0.59,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,1.296,0.245455,0.399771,1.71501,2.88829,-0.233856,1.72407,2.45216,-0.451998,-0.842173,0.0468975,-0.516206,-0.0893423,1.05605,-0.731433,0.790377,-0.683231,0.297441,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,1.10914,0.245455,1.15489,-0.479559,-0.982926,-0.233856,2.32738,2.17209,-0.451998,-0.769546,0.142493,0.728035,-0.0893423,1.05605,0.106361,0.790377,-0.683231,0.297441,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,1.34846,1.48287,1.19752,0.399771,-0.793068,0.776718,0.266108,1.72407,-0.28957,-0.306884,0.30534,0.344306,0.313288,-0.0893423,1.05605,0.106361,-0.105413,0.294997,-0.59,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,1.66973,1.19752,1.15489,-0.291453,0.19017,-1.23378,1.347,2.06891,-0.306884,-0.740495,0.174358,-0.516206,-0.0893423,1.05605,0.106361,-0.105413,-0.683231,0.297441,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,0.614558,1.34846,0.548548,1.19752,0.027846,-0.667665,1.12865,1.26604,0.140371,-0.805486,1.36193,0.000304978,1.16218,-0.516206,-0.0893423,0.192315,0.385625,-0.32936,0.294997,-0.59,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.55084,0.852732,0.614558,-0.76937,0.548548,1.19752,0.771696,-1.42009,-0.748307,1.26604,1.04534,-0.805486,1.36193,0.450595,0.503632,-0.516206,-0.0893423,-0.671416,0.106361,-0.32936,-0.683231,0.297441,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-1.54663,-0.903656,0.852732,0.614558,-0.76937,0.17482,1.19752,1.52682,-0.793068,-0.0444493,0.266108,-0.538358,2.96808,0.757285,-0.718707,-0.505433,-0.516206,-0.0893423,0.192315,-0.452169,-0.32936,-0.683231,0.297441,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,0.548548,1.19752,0.771696,-1.35738,-0.982926,0.266108,-0.161286,2.3932,0.757285,-0.791334,0.0150322,1.55753,-0.0893423,0.192315,-0.452169,-0.32936,-0.683231,0.297441,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-0.496098,0.996225,1.21252,-0.903656,-0.252581,0.614558,-0.76937,-0.7595,0.364463,0.027846,0.14746,-0.0444493,1.26604,-0.161286,-0.805486,0.273572,0.450595,0.503632,3.63126,-0.0893423,0.192315,-1.28996,-0.32936,-0.683231,-0.624878,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-0.496098,0.996225,1.21252,1.24403,-0.252581,0.614558,-0.76937,-0.7595,0.364463,2.65386,0.14746,-0.0444493,1.26604,-0.161286,-0.805486,0.273572,0.450595,0.503632,3.63126,-0.0893423,-1.70789,-0.452169,-0.32936,-0.683231,0.14243,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,1.34846,-0.198908,0.364463,-0.727275,-0.16605,-0.748307,0.266108,0.592856,-0.805486,1.72471,0.428807,0.535497,-0.516206,-0.0893423,-0.49867,0.385625,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,1.34846,-0.198908,0.364463,1.15489,-0.16605,-0.0444493,0.266108,-0.538358,-0.805486,1.72471,0.617638,0.259332,-0.516206,-0.0893423,0.192315,-0.731433,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.17482,0.364463,-0.727275,-0.16605,0.19017,0.51609,-0.538358,-0.805486,0.515428,0.450595,0.503632,-0.516206,-0.0893423,-1.53515,-1.0107,0.00656096,-0.683231,0.754725,0.111585,1 +0.142908,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-3.18873,0.00743802,-1.0992,0.460969,-0.396378,-0.73382,0.215785,-0.805486,0.0317153,0.450595,0.503632,-0.516206,-0.0893423,-0.49867,0.106361,-0.32936,-0.683231,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,-1.22016,-0.76937,-0.198908,0.364463,1.52682,-0.040646,1.12865,0.766072,-2.04664,0.0642017,1.241,-0.22484,0.864771,2.80177,-0.0893423,0.192315,0.106361,0.00656096,-0.683231,0.754725,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,-1.22016,-0.76937,-0.198908,0.364463,0.771696,-0.354155,1.36327,0.766072,-2.04664,-0.805486,1.241,0.000304978,1.16218,1.14278,-0.0893423,1.05605,0.385625,0.00656096,-0.683231,0.754725,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,-1.22016,-0.76937,1.10914,0.364463,1.15489,0.586373,0.0728602,-0.73382,-0.312115,1.9952,-0.693854,-0.362832,-0.324863,1.55753,-0.0893423,1.05605,0.106361,-0.105413,-0.683231,-0.624878,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,1.296,0.245455,0.771696,0.774478,1.12865,0.266108,2.10114,2.45216,-0.572926,-0.842173,0.0468975,-0.516206,-0.0893423,1.05605,-0.452169,0.790377,-0.683231,0.289691,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-1.35789,-1.22016,-0.76937,0.922276,0.364463,0.399771,0.335565,0.0728602,-0.73382,0.215785,1.02233,-0.693854,-0.0795852,-0.0380764,-0.516206,-0.0893423,1.05605,-1.28996,-0.105413,-0.683231,-0.624878,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,1.296,0.245455,0.399771,-0.354155,-0.982926,0.266108,1.72407,2.17209,-0.572926,-0.769546,0.142493,0.728035,-0.0893423,1.05605,0.106361,0.790377,-0.683231,0.754725,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,0.17482,0.245455,0.399771,-0.040646,-0.0444493,1.26604,-2.04664,1.155,0.878213,-0.115899,-0.0805634,0.313288,-0.0893423,0.192315,0.385625,-0.32936,-0.683231,0.754725,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-0.572636,0.245455,0.027846,-0.354155,0.19017,1.26604,-2.04664,0.00523978,0.878213,0.218187,0.259332,-0.516206,-0.0893423,0.192315,-1.56923,-0.32936,-0.683231,0.754725,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,-0.572636,0.483471,2.65386,-0.16605,-0.982926,-0.73382,0.366613,-0.805486,0.3945,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.944154,-0.32936,-0.683231,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,-0.572636,0.483471,-0.35535,-0.16605,-0.982926,-0.73382,0.592856,-0.805486,0.515428,0.450595,0.503632,-0.516206,-0.0893423,0.192315,1.50268,-0.32936,-0.683231,-0.105589,0.111585,0 +0.142908,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,0.852732,-1.22016,-0.76937,-3.18873,0.364463,0.771696,1.08799,1.8325,-1.73375,-0.0858721,-0.805486,0.273572,0.30534,0.716067,-0.516206,-0.0893423,0.192315,-0.172904,-0.32936,-0.683231,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,-0.903656,0.852732,-1.22016,1.34846,-3.18873,0.364463,-0.727275,-0.793068,0.19017,-1.48377,0.517442,-0.30431,0.273572,0.30534,0.354928,-0.516206,-0.0893423,0.192315,0.944154,-0.32936,0.294997,0.4137,0.111585,1 +-0.88764,-0.185139,0.312177,3.63314,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,0.614558,-0.76937,-0.946364,-0.11157,-0.727275,0.210161,0.659408,1.26604,-2.04664,-0.805486,1.48285,0.450595,0.503632,1.14278,-0.0893423,0.192315,-0.172904,0.00656096,-0.683231,-0.353607,0.111585,1 +-0.88764,-0.185139,0.312177,3.63314,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,0.614558,-0.76937,-0.946364,-0.11157,0.771696,0.335565,1.59788,1.26604,-2.04664,-0.805486,1.48285,0.428807,0.503632,0.313288,-0.0893423,1.05605,1.22342,0.00656096,-0.683231,-0.353607,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,0.17482,-0.11157,-0.727275,-0.479559,-0.982926,0.266108,1.12076,-0.0242412,-0.210141,0.000304978,0.599228,-0.516206,-0.0893423,1.05605,-0.452169,0.790377,1.27323,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,0.248326,-1.08677,-0.903656,-0.252581,-1.22016,-0.76937,-0.198908,-0.11157,0.027846,-1.10658,-0.396378,0.266108,1.347,-0.805486,-0.210141,0.450595,0.503632,-0.516206,-0.0893423,1.05605,-1.0107,0.790377,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.548548,-0.11157,-0.727275,0.586373,-0.396378,0.266108,-0.161286,-0.319051,0.152644,0.167348,0.567362,0.313288,-0.0893423,0.537808,-0.172904,0.790377,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,2.44927,-0.76937,0.17482,0.364463,0.771696,-0.291453,-0.982926,0.266108,1.72407,1.11078,-0.887339,0.123772,-0.409837,-0.516206,-0.0893423,1.05605,-0.172904,-0.553308,-0.683231,0.429201,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,2.44927,-0.76937,0.17482,0.364463,-0.35535,-0.604963,-1.33485,0.266108,1.347,1.00759,-0.887339,-0.0795852,-0.0380764,-0.516206,-0.0893423,1.05605,-1.0107,-0.553308,-0.683231,0.429201,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,-0.252581,0.614558,1.34846,0.17482,0.364463,0.027846,-0.793068,1.36327,0.266108,0.215785,-0.805486,0.515428,0.450595,0.503632,-0.516206,-0.0893423,1.05605,0.106361,0.00656096,0.294997,0.15018,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,-0.946364,0.364463,-0.35535,0.335565,-1.21754,0.266108,-0.161286,0.137904,0.515428,0.0438814,0.418658,1.14278,-0.0893423,-0.153177,-0.452169,0.230508,-0.683231,0.429201,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,-0.946364,0.364463,2.65386,-1.04388,-0.982926,0.51609,0.215785,-0.805486,0.515428,0.450595,0.503632,-0.516206,-0.0893423,-0.153177,-0.172904,-0.32936,-0.683231,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,-0.76937,-0.946364,0.364463,0.771696,0.962584,-0.865616,0.266108,-0.161286,1.8478,0.515428,-0.551664,0.0468975,-0.516206,-0.0893423,0.192315,-0.172904,0.230508,-0.683231,0.429201,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.946364,0.364463,-1.0992,-0.416857,-0.982926,0.51609,0.215785,-0.805486,0.515428,0.450595,0.503632,-0.516206,-0.0893423,-1.53515,-1.0107,-0.32936,-0.683231,0.429201,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-0.252581,0.614558,-0.76937,0.17482,0.364463,-1.0992,1.71501,1.36327,-0.73382,-0.0858721,0.417973,0.213108,-0.0360087,0.333684,-0.516206,-0.0893423,1.05605,0.106361,0.00656096,-0.683231,0.429201,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-0.252581,0.614558,-0.76937,0.17482,0.364463,1.15489,-0.16605,2.53636,0.266108,0.442028,-0.466455,0.515428,0.30534,0.471767,-0.516206,-0.0893423,0.624181,-0.172904,0.00656096,-0.683231,0.429201,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,0.614558,-0.76937,0.17482,0.602479,0.399771,0.14746,-0.0444493,0.266108,-2.04664,0.830706,-1.05664,0.210925,-0.335485,-0.516206,-0.0893423,-0.325924,-0.172904,-0.553308,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,0.614558,1.34846,0.17482,0.602479,-0.35535,0.460969,-1.68678,0.266108,-2.04664,0.830706,-1.05664,0.210925,-0.335485,-0.516206,-0.0893423,0.192315,-1.28996,-0.553308,0.294997,0.15018,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.67237,-0.903656,0.852732,0.614558,-0.76937,0.17482,0.602479,0.771696,-0.228752,0.776718,1.26604,0.215785,1.74462,-0.451998,-0.326518,-0.197402,-0.516206,-0.0893423,0.710554,0.106361,0.790377,-0.683231,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.67237,1.55084,0.852732,0.614558,-0.76937,-0.946364,0.602479,1.15489,-0.354155,0.542098,1.26604,0.215785,0.786485,-0.451998,0.0874579,-0.101807,-0.516206,14.7463,0.365061,0.66489,0.790377,-0.683231,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,0.614558,-0.76937,1.10914,0.721488,1.15489,0.0220559,0.659408,1.26604,0.215785,1.9952,1.48285,-0.362832,-0.335485,-0.516206,-0.0893423,1.05605,0.106361,0.00656096,0.294997,-0.59,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.55084,0.852732,0.614558,-0.76937,1.10914,0.721488,-2.98137,-0.667665,-0.0444493,1.26604,0.215785,0.742264,1.48285,0.000304978,0.0362757,-0.516206,-0.0893423,0.192315,0.106361,0.00656096,0.294997,-0.59,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,-0.496098,-1.24747,0.2928,-1.21047,-0.252581,-1.22016,1.34846,0.361684,-0.230579,1.15489,-0.16605,0.659408,0.266108,0.0649564,-0.481196,-0.451998,0.123772,0.747932,-0.516206,-0.0893423,1.05605,-0.172904,0.118535,-1.66146,0.522208,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,1.10914,0.00743802,0.771696,-0.040646,-0.982926,-0.233856,-0.161286,0.830706,0.152644,-0.152213,0.206223,0.728035,-0.0893423,0.192315,-0.452169,0.118535,-1.66146,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,1.10914,0.00743802,0.027846,0.210161,0.307479,0.266108,-0.161286,0.63908,0.152644,-0.261154,0.503632,-0.516206,-0.0893423,0.537808,-1.0107,0.118535,-1.66146,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.198908,0.483471,3.02579,0.0847577,0.19017,0.51609,0.215785,0.698042,1.48285,-0.115899,0.24871,-0.516206,-0.0893423,-1.18966,-0.731433,-0.32936,1.27323,-0.59,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.17482,0.483471,0.399771,0.523671,0.424789,0.266108,0.215785,-0.805486,1.48285,0.450595,0.503632,-0.516206,-0.0893423,-0.671416,-0.452169,-0.32936,1.27323,-0.59,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,1.34846,-0.198908,0.364463,0.399771,-0.16605,-0.982926,-2.73368,-2.04664,0.668561,-4.3217,-0.188526,0.376171,-0.516206,-0.0893423,0.192315,-0.452169,3.02985,-1.66146,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,-0.76937,-0.012044,0.364463,0.399771,-0.16605,-0.982926,-2.73368,-2.04664,1.16974,-0.693854,-0.326518,0.216845,0.313288,-0.0893423,0.192315,0.106361,3.02985,1.27323,-0.59,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,0.614558,-0.76937,0.735412,0.483471,0.771696,-0.793068,-0.982926,-0.233856,2.10114,0.359011,-0.451998,0.356179,-0.214397,1.14278,-0.0893423,1.05605,-0.452169,0.790377,1.27323,-0.59,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,0.614558,-0.76937,0.735412,0.483471,1.89874,-0.793068,0.19017,-2.73368,2.10114,0.653821,-0.451998,-0.22484,0.439902,-0.516206,-0.0893423,1.05605,-1.28996,0.790377,1.27323,-0.59,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-1.21047,-0.252581,0.614558,-0.76937,-0.572636,2.50661,1.15489,-0.040646,-0.748307,1.26604,0.66827,-0.805486,0.999141,0.915411,-0.176159,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,0.294997,-0.601626,-1.43251,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-1.21047,-0.252581,0.614558,-0.76937,-0.572636,0.602479,0.027846,-0.16605,-0.982926,1.26604,0.442028,-0.805486,1.36193,0.915411,-0.176159,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,0.294997,-0.59,-1.43251,0 +-0.88764,5.3908,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.752658,-0.903656,0.852732,0.614558,0.289548,-3.18873,-0.587603,-2.98137,0.460969,-0.748307,-0.73382,0.366613,-0.805486,-0.275442,0.450595,0.503632,-0.516206,-0.0893423,0.192315,1.50268,-0.32936,-7.53083,-7.85617,-15.3293,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-1.21047,-0.252581,0.614558,-0.76937,-0.198908,1.07851,-0.727275,0.14746,-0.630997,0.266108,0.0649564,-0.805486,0.152644,0.915411,-0.176159,-0.516206,-0.0893423,0.710554,0.106361,-0.32936,0.294997,-0.105589,-1.43251,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,1.34846,1.296,-0.11157,-0.35535,-0.479559,-0.982926,0.266108,1.347,1.49403,-0.331069,-0.493562,0.216845,0.313288,-0.0893423,0.192315,0.106361,0.790377,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,-0.903656,-1.35789,-1.22016,-0.76937,1.296,-0.11157,0.027846,-0.228752,1.12865,-1.23378,0.366613,0.712783,-0.210141,-0.0795852,0.174358,1.55753,-0.0893423,1.05605,0.944154,0.790377,0.294997,0.15018,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,1.296,-0.11157,0.399771,-0.479559,-2.15602,0.266108,0.969927,1.9952,-0.331069,-0.362832,-0.335485,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.15018,0.111585,1 +1.17346,-0.185139,0.312177,7.5247,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,-1.35789,-1.22016,-0.76937,1.66973,-0.11157,0.027846,-0.16605,0.894027,-1.73375,0.0649564,0.742264,-0.210141,0.000304978,0.0362757,0.313288,-0.0893423,0.192315,-1.0107,0.790377,0.294997,0.15018,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,1.34846,0.922276,-0.468595,1.15489,-1.42009,-0.982926,-2.73368,-2.04664,1.27292,-0.451998,-0.152213,-0.12305,-0.516206,-0.0893423,0.192315,-1.28996,0.790377,-0.683231,0.378822,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,1.34846,1.66973,-0.468595,1.15489,-2.04711,-1.21754,-2.73368,-2.04664,-0.805486,-0.451998,0.450595,0.503632,-0.516206,-0.0893423,0.710554,-0.452169,0.790377,-0.683231,0.378822,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.55084,-1.35789,-1.22016,1.34846,0.922276,-0.468595,-0.35535,0.14746,-0.513688,-2.73368,-2.04664,-0.805486,-0.451998,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.106361,0.790377,-0.683231,0.378822,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-0.499573,-0.626915,1.24403,-1.35789,-1.22016,-0.76937,0.922276,-0.468595,-0.727275,-0.793068,-0.865616,-2.73368,-2.04664,-0.805486,-0.451998,0.719317,0.110628,-0.516206,-0.0893423,0.192315,-0.731433,0.790377,0.294997,-0.857395,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-1.35789,-1.22016,-0.76937,1.66973,1.07851,0.027846,-0.479559,0.19017,-1.73375,0.819099,1.52351,0.273572,-0.22484,-0.197402,-0.516206,-0.0893423,0.8833,-0.731433,0.790377,0.294997,0.15018,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,-1.22016,-0.76937,1.296,1.07851,0.027846,-0.793068,-0.279068,-1.23378,0.215785,0.712783,0.273572,-0.0795852,0.174358,1.55753,-0.0893423,0.365061,0.385625,0.790377,0.294997,0.15018,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-1.21047,-0.252581,0.614558,-0.76937,-0.198908,-0.230579,0.027846,-0.793068,0.424789,-0.233856,0.215785,-0.805486,0.878213,0.915411,-0.176159,-0.101459,-0.0893423,0.192315,-0.172904,-0.32936,0.294997,-0.59,-1.43251,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-1.21047,0.852732,-1.22016,-0.76937,0.922276,-0.11157,-1.4824,-0.793068,0.19017,-0.233856,0.366613,0.373752,0.515428,0.537748,-0.473568,-0.516206,-0.0893423,0.192315,-0.172904,0.230508,0.294997,-0.605501,-1.43251,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-1.21047,0.852732,-1.22016,-0.76937,0.922276,-0.349587,1.15489,-0.479559,-0.279068,-0.73382,0.215785,0.373752,0.515428,0.537748,-0.473568,-0.516206,-0.0893423,0.192315,0.106361,0.230508,0.294997,-0.605501,-1.43251,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.922276,-0.11157,0.027846,1.08799,1.24596,1.26604,-0.387529,0.727523,-0.331069,-0.0360087,0.110628,-0.205146,-0.0893423,0.192315,0.385625,0.118535,0.294997,-0.605501,-1.43251,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,2.44927,1.34846,0.922276,-0.11157,-0.727275,1.08799,-0.0444493,-1.73375,0.366613,0.62434,0.273572,-0.028746,0.174358,-0.516206,-0.0893423,1.05605,-0.172904,0.230508,0.294997,-0.340431,-1.43251,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.012044,-0.349587,-0.727275,0.460969,-0.982926,0.51609,0.592856,-0.805486,0.636357,1.02435,-0.335485,0.313288,-0.0893423,-1.18966,0.106361,-0.32936,0.294997,-0.605501,-1.43251,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,-0.012044,-0.349587,-0.727275,-0.16605,-0.279068,0.766072,0.215785,-0.274829,0.636357,0.552273,-0.0274547,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,0.294997,-0.605501,-1.43251,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.21252,1.24403,0.852732,2.44927,1.34846,-0.572636,-0.349587,-0.35535,-0.479559,-0.279068,0.266108,-0.538358,-0.805486,1.05961,0.719317,0.110628,1.14278,-0.0893423,0.537808,0.66489,0.00656096,0.294997,0.378822,-1.43251,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.21252,-0.903656,0.852732,2.44927,1.34846,-0.572636,-0.349587,0.399771,-0.479559,-0.513688,0.266108,-0.538358,-0.805486,1.05961,0.719317,0.110628,1.14278,-0.0893423,-0.671416,0.66489,0.00656096,0.294997,0.378822,-1.43251,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-0.252581,0.614558,-0.76937,-0.946364,-0.349587,-0.35535,-0.16605,1.12865,0.266108,0.592856,0.32953,-4.3217,0.370705,-0.197402,-0.516206,-0.0893423,0.710554,-0.452169,-0.32936,0.294997,-0.105589,-1.43251,1 +1.17346,-0.185139,0.312177,3.63314,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,0.361684,-0.230579,1.89874,-0.479559,1.12865,-0.233856,-0.161286,4.27998,0.515428,-0.660605,-1.53574,-0.516206,-0.0893423,0.192315,-0.731433,0.790377,0.294997,-0.340431,-1.43251,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,-1.21047,-1.35789,-1.22016,1.34846,1.296,-0.349587,1.15489,-0.793068,-0.279068,1.26604,-2.04664,0.0199803,-0.451998,0.218187,0.24871,-0.516206,-0.0893423,0.192315,-0.731433,0.790377,0.294997,-0.340431,-1.43251,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-0.499573,-0.626915,0.0167788,-1.35789,-1.22016,1.34846,1.296,-0.349587,1.52682,0.460969,-0.748307,1.26604,-2.04664,1.43507,-0.451998,-0.580715,0.397415,-0.516206,9.80109,-0.49867,-0.731433,0.790377,0.294997,-0.340431,-1.43251,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,0.852732,-1.22016,1.34846,0.361684,0.126446,0.399771,-0.040646,-0.279068,0.266108,0.215785,1.7741,-0.210141,-0.282942,-0.282376,-0.516206,-0.0893423,0.192315,-0.452169,0.230508,0.294997,1.00274,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,-1.22016,1.34846,-0.012044,0.126446,0.771696,0.962584,0.19017,-0.233856,0.969927,-0.805486,-0.210141,0.123772,0.98161,0.728035,-0.0893423,1.05605,0.106361,0.118535,0.294997,0.467954,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,2.44927,1.34846,0.361684,0.245455,0.399771,-0.16605,-0.748307,0.266108,-0.161286,2.43742,-0.693854,-0.486299,-0.462946,-0.516206,-0.0893423,0.192315,-0.452169,0.230508,0.294997,1.00274,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,2.44927,1.34846,0.361684,0.840496,0.771696,-0.793068,0.776718,0.266108,0.0649564,1.62669,0.0317153,-0.297468,-0.154916,-0.516206,-0.0893423,0.192315,-1.28996,0.230508,0.294997,1.00274,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,2.44927,-0.76937,0.922276,-0.349587,-0.35535,1.71501,-0.279068,-1.73375,-0.236701,0.668561,-0.451998,0.537748,-0.686002,-0.516206,-0.0893423,1.05605,-0.172904,0.230508,0.294997,-0.605501,-1.43251,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,1.34846,-0.946364,0.126446,0.771696,0.774478,0.19017,-0.233856,0.969927,-0.805486,0.0317153,0.399756,0.577984,-0.101459,-0.0893423,0.192315,-1.56923,0.230508,0.294997,0.467954,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,-0.012044,0.126446,-0.35535,1.71501,-0.982926,-0.233856,1.347,-0.805486,-0.210141,0.450595,0.503632,-0.516206,-0.0893423,1.05605,-0.731433,0.118535,0.294997,0.136617,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,0.361684,0.364463,0.399771,-0.793068,-1.56947,-0.233856,-0.161286,1.56773,-0.693854,-0.580715,0.301819,1.14278,-0.0893423,0.192315,0.106361,0.118535,0.294997,1.00197,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,0.248326,-1.08677,0.630402,-1.35789,2.44927,1.34846,1.296,-0.587603,0.771696,-9.57133,0.19017,-0.233856,1.72407,1.02233,-0.957478,-0.0795852,-0.0380764,0.313288,-0.0893423,0.537808,0.106361,0.622416,0.294997,1.00197,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,-5.21327,0.642925,0.248326,-1.08677,-0.903656,-1.35789,2.44927,1.34846,1.296,-0.587603,0.771696,-9.57133,-0.982926,-0.233856,1.72407,1.9952,-0.957478,-0.362832,-0.335485,-0.516206,-0.0893423,0.537808,-0.731433,0.622416,0.294997,1.00197,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-0.252581,-1.22016,1.34846,-0.572636,-0.11157,0.399771,-0.793068,-0.513688,-1.73375,0.0649564,-0.805486,1.72471,0.450595,0.503632,-0.516206,-0.0893423,0.192315,-0.731433,-0.32936,0.294997,1.00197,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,-1.22016,1.34846,-0.198908,-0.11157,0.399771,-1.42009,-0.513688,-1.73375,-0.161286,-0.805486,1.72471,0.450595,0.503632,0.313288,-0.0893423,0.192315,-1.28996,-0.32936,0.294997,1.00197,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.21252,-0.903656,0.852732,0.614558,1.34846,-0.946364,0.245455,0.771696,-0.793068,0.776718,0.266108,0.215785,1.40558,1.21681,-0.188526,-0.154916,-0.516206,-0.0893423,-0.671416,1.50268,0.00656096,0.294997,0.723723,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.21252,1.24403,0.852732,0.614558,1.34846,-0.946364,0.245455,0.399771,-0.16605,0.19017,0.266108,0.215785,1.40558,1.21681,-0.188526,-0.154916,-0.516206,-0.0893423,0.192315,0.106361,0.00656096,0.294997,0.723723,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,-0.946364,0.364463,0.771696,0.649074,0.19017,0.51609,0.215785,-0.805486,0.757285,0.537748,0.376171,0.728035,-0.0893423,0.192315,0.66489,-0.32936,0.294997,1.00197,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,-0.946364,0.364463,-2.98137,-0.228752,-0.748307,2.26596,0.215785,-0.274829,0.757285,0.552273,-0.0380764,0.105914,-0.0893423,0.192315,0.66489,-0.32936,0.294997,1.00197,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-0.572636,-0.944628,1.15489,-1.42009,-0.396378,0.266108,-2.04664,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.385625,-0.32936,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.735412,-0.944628,0.027846,-0.16605,-0.865616,0.266108,0.0649564,0.285309,-0.693854,0.0438814,0.312441,-0.516206,-0.0893423,0.192315,0.106361,0.118535,0.294997,-0.237349,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.67237,-0.903656,0.852732,-1.22016,-0.76937,1.66973,-0.944628,-0.727275,0.460969,-0.0444493,0.266108,0.215785,0.963371,0.757285,-0.457248,0.556741,-0.516206,-0.0893423,-0.671416,0.106361,0.790377,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.67237,1.24403,0.852732,-1.22016,-0.76937,1.66973,-1.06364,-0.35535,1.4015,2.53636,1.766,-0.161286,1.7741,1.12007,-0.297468,-0.261133,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,1.67237,-0.903656,0.852732,-1.22016,-0.76937,1.66973,-1.06364,-0.727275,1.08799,0.19017,1.26604,-0.387529,1.40558,1.12007,-0.188526,-0.154916,-0.101459,-0.0893423,0.192315,0.106361,0.790377,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,0.614558,-0.76937,-0.385772,-0.944628,-0.727275,0.460969,-0.279068,1.01605,-2.04664,-0.805486,0.95077,0.719317,0.110628,0.313288,-0.0893423,0.8833,0.66489,0.00656096,0.294997,-0.355932,0.111585,0 +0.142908,5.3908,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,0.289548,-3.18873,-1.06364,-2.98137,0.523671,-0.630997,-0.233856,0.215785,-0.805486,0.515428,0.67574,0.174358,-0.516206,-0.0893423,0.710554,0.106361,-0.32936,-7.53083,-7.85617,-15.3293,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-0.572636,-0.944628,1.15489,-1.42009,-0.396378,0.266108,-2.04664,-0.805486,0.515428,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.385625,-0.32936,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-0.572636,-1.06364,0.399771,0.398267,-0.0444493,-1.23378,0.366613,-0.805486,0.878213,0.719317,0.110628,-0.516206,-0.0893423,-1.18966,-0.172904,-0.32936,0.294997,0.0238459,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,-0.198908,-0.944628,-0.35535,0.14746,0.776718,0.266108,-0.161286,-0.112684,0.515428,0.399756,0.0787627,-0.516206,-0.0893423,0.192315,0.106361,0.00656096,0.294997,-0.355932,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,-0.198908,-0.944628,0.027846,1.21339,-0.0444493,1.01605,-2.04664,-0.658082,0.95077,0.414281,0.450523,0.313288,-0.0893423,0.0195689,-0.452169,0.00656096,0.294997,-0.355932,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.548548,-0.944628,0.027846,1.08799,-0.748307,-0.233856,0.215785,1.3024,-0.451998,-0.362832,0.174358,-0.516206,-0.0893423,0.192315,0.106361,0.118535,0.294997,-0.355932,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,1.34846,0.548548,-1.06364,-0.727275,1.08799,-0.630997,-0.983802,-0.538358,1.9215,0.0317153,-0.457248,-0.144294,0.313288,-0.0893423,0.192315,0.106361,0.118535,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,0.614558,-0.76937,-0.198908,-0.944628,-0.727275,-1.10658,-0.279068,0.266108,1.8749,-0.156905,-0.147258,0.174611,0.439902,-0.516206,-0.0893423,1.05605,0.106361,0.790377,0.294997,-0.355932,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,-1.22016,-0.76937,-0.198908,-0.944628,0.027846,0.711776,0.0728602,-1.48377,0.592856,-0.731784,1.48285,0.501434,0.376171,-0.308832,-0.0893423,0.365061,0.385625,0.230508,0.294997,-0.355932,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,0.852732,-1.22016,-0.76937,-0.198908,0.00743802,-0.35535,-0.16605,-0.982926,-1.73375,-0.236701,-0.731784,-4.3217,0.501434,0.376171,-0.516206,-0.0893423,1.05605,0.106361,0.230508,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-1.21047,0.852732,0.614558,-0.76937,-0.7595,-0.944628,-0.727275,-1.42009,0.19017,0.266108,0.0649564,-0.805486,-0.693854,0.719317,0.110628,-0.516206,-0.0893423,-4.12634,-2.68628,-0.32936,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,-1.22016,-0.76937,-0.198908,-0.944628,-0.35535,0.210161,0.307479,-0.73382,0.517442,-0.805486,1.48285,0.719317,0.110628,1.55753,-0.0893423,-4.12634,-0.172904,0.230508,0.294997,-0.355932,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,0.630402,0.852732,-1.22016,-0.76937,-0.385772,-0.944628,-0.727275,0.335565,0.19017,-0.73382,0.366613,-0.805486,1.48285,0.719317,0.110628,1.55753,-0.0893423,0.192315,-0.172904,0.230508,0.294997,-0.355932,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,-0.252581,0.614558,-0.76937,0.17482,-1.06364,0.027846,-0.228752,-0.396378,1.26604,-0.161286,0.742264,-0.306884,0.000304978,0.0468975,-0.516206,-0.0893423,0.192315,0.106361,-0.32936,0.294997,0.0238459,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,-0.252581,0.614558,-0.76937,0.17482,-1.06364,-0.727275,-0.793068,0.19017,-2.73368,-0.538358,0.31479,-4.3217,0.123772,0.174358,-0.516206,-0.0893423,-4.12634,-2.68628,-0.32936,0.294997,0.0238459,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.67237,-0.903656,0.852732,-1.22016,-0.76937,0.17482,-0.944628,-0.727275,0.460969,0.19017,0.266108,0.215785,-0.348532,0.999141,-0.115899,1.00285,-0.516206,-0.0893423,0.192315,0.944154,0.230508,0.294997,0.152505,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,0.996225,1.67237,1.24403,0.852732,-1.22016,-0.76937,0.548548,-0.944628,-0.727275,0.14746,-0.748307,0.266108,0.215785,-0.0537221,0.999141,-0.14495,0.832906,-0.516206,-0.0893423,0.192315,0.944154,0.230508,0.294997,-0.355932,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,-0.198908,-0.706612,-0.35535,-1.04388,1.36327,0.266108,1.347,-0.805486,-0.969571,0.719317,0.110628,-0.516206,-0.0893423,1.05605,-0.731433,0.790377,0.294997,-0.355932,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,-0.198908,-1.06364,-0.727275,-0.16605,-1.56947,0.266108,2.10114,-0.805486,-0.331069,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,-0.355932,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.548548,-0.944628,0.027846,-0.793068,-0.513688,-0.233856,-0.538358,-0.481196,0.0317153,0.261764,0.546119,-0.516206,-0.0893423,1.05605,0.106361,0.566429,0.294997,-0.347794,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,0.614558,-0.76937,0.548548,-0.468595,-0.727275,0.586373,-0.513688,0.266108,0.0649564,0.786485,0.515428,0.0584069,-0.0699416,-0.516206,-0.0893423,0.192315,0.944154,-0.32936,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,0.548548,-0.468595,0.027846,0.460969,1.59788,0.266108,0.592856,-0.805486,0.0317153,1.11877,-0.473568,-0.101459,-0.0893423,0.365061,0.66489,-0.32936,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-1.21047,-0.252581,0.614558,-0.76937,-0.7595,-0.468595,0.027846,0.523671,1.12865,-1.48377,0.0649564,-0.805486,0.972537,0.719317,0.110628,-0.516206,-0.0893423,0.0195689,-0.452169,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,0.614558,-0.76937,-0.7595,-0.468595,-0.727275,2.96904,0.0728602,-1.48377,0.140371,-0.805486,0.972537,0.399756,0.577984,1.55753,-0.0893423,0.192315,0.804522,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,-1.22016,-0.76937,2.04346,-0.944628,0.399771,1.77771,-0.0444493,-0.73382,0.0649564,1.31714,0.817749,-0.326518,0.110628,1.55753,-0.0893423,1.05605,-0.172904,0.00656096,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,-1.22016,-0.76937,2.04346,-0.944628,-0.35535,0.460969,-0.161759,0.536088,0.0649564,1.53825,0.817749,-0.442722,0.12125,0.728035,-0.0893423,-1.10328,-1.0107,0.00656096,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-0.252581,0.614558,-0.76937,-0.198908,-0.468595,-0.727275,0.793289,-0.0444493,0.51609,-0.236701,-0.805486,0.972537,0.450595,0.503632,-0.516206,-0.0893423,-0.671416,-0.452169,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,-0.7595,-0.706612,-0.35535,-0.793068,1.8325,-0.233856,-0.161286,-0.805486,0.0317153,1.02435,-0.335485,-0.516206,-0.0893423,-0.49867,0.106361,-0.32936,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-1.21047,-0.252581,0.614558,1.34846,-0.198908,-0.468595,0.027846,-0.16605,1.12865,-0.73382,0.517442,-0.805486,-0.210141,0.719317,0.110628,-0.516206,-0.0893423,-4.12634,-2.68628,-0.32936,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,1.34846,-0.198908,-0.587603,0.399771,-0.16605,-0.982926,0.266108,1.72407,-0.805486,0.0317153,0.0947206,1.0241,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,1.34846,-0.198908,-0.11157,-0.35535,-0.793068,-0.982926,0.266108,1.347,-0.805486,0.0317153,0.552273,0.354928,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,0.17482,-1.18264,-0.727275,-0.16605,-0.0444493,0.266108,-0.538358,1.34662,0.0317153,-0.297468,0.0468975,-0.516206,-0.0893423,0.192315,0.106361,0.118535,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,-0.252581,-1.22016,-0.76937,0.17482,-1.06364,-0.727275,-0.793068,-0.396378,1.26604,-0.538358,0.845447,0.0317153,-0.115899,0.142493,2.80177,-0.0893423,0.192315,0.106361,0.230508,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,-0.252581,-1.22016,1.34846,0.17482,-1.06364,0.771696,-0.793068,-0.396378,1.26604,-0.538358,-0.805486,0.0317153,0.457858,0.49301,2.80177,-0.0893423,1.05605,2.89901,0.230508,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,-1.87734,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,1.53192,-0.76937,0.17482,-1.18264,0.771696,0.335565,-0.0444493,1.26604,0.969927,-0.805486,1.241,0.719317,0.110628,1.14278,-0.0893423,0.192315,1.22342,0.230508,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,-1.87734,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,1.53192,-0.76937,0.17482,-1.18264,-0.727275,-0.416857,-0.513688,1.26604,0.366613,2.29001,1.241,-0.362832,-0.537298,1.14278,-0.0893423,0.192315,0.385625,0.230508,0.294997,-0.355932,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.17482,-1.06364,1.52682,-0.291453,-0.748307,-0.233856,-0.538358,-0.805486,0.0317153,0.450595,0.503632,-0.516206,-0.0893423,0.192315,-0.172904,0.118535,0.294997,0.378822,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,0.852732,2.44927,-0.76937,0.548548,-1.06364,0.027846,0.460969,1.12865,0.266108,0.442028,0.889668,-0.331069,-0.0360087,-0.00621123,-0.516206,-0.0893423,0.192315,0.106361,0.566429,0.294997,0.378822,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,0.852732,2.44927,-0.76937,0.548548,-1.06364,0.399771,1.08799,1.12865,0.266108,0.215785,-0.805486,-0.451998,0.719317,-0.951546,1.55753,-0.0893423,0.365061,0.106361,0.566429,0.294997,0.378822,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,2.44927,-0.76937,0.548548,-1.06364,-0.35535,-0.16605,1.36327,1.26604,0.592856,-0.805486,-0.331069,0.210925,0.854149,-0.516206,-0.0893423,0.192315,0.106361,0.566429,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,0.289548,0.548548,-1.06364,1.15489,0.14746,-0.630997,-0.233856,-0.538358,-0.274829,0.0317153,0.552273,-0.0274547,-0.516206,-0.0893423,0.192315,-0.172904,0.118535,0.294997,0.378822,0.111585,1 +1.17346,-0.185139,0.312177,3.63314,-0.141001,-0.877564,2.5409,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,-0.76937,0.17482,-0.944628,0.399771,2.96904,0.659408,-0.233856,0.442028,-0.805486,-1.41942,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,-1.28996,0.790377,0.294997,0.378822,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,-1.14449,-0.147265,0.263873,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,0.17482,-1.06364,0.399771,-0.16605,-0.982926,0.51609,0.969927,-0.805486,-0.693854,0.450595,0.503632,0.728035,-0.0893423,-0.671416,0.106361,-0.32936,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-0.252581,-1.22016,-0.76937,-0.198908,-1.06364,-0.727275,-1.60819,0.659408,-0.73382,0.366613,-0.805486,-0.0892129,0.719317,0.110628,-0.516206,-0.0893423,0.192315,-0.172904,0.790377,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,-0.198908,-1.06364,0.771696,0.14746,-1.68678,-0.233856,-0.538358,0.742264,-0.572926,0.000304978,0.0468975,-0.516206,-0.0893423,-0.671416,-1.0107,0.790377,0.294997,0.378822,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,-0.76937,-0.198908,-1.06364,0.771696,0.460969,-0.0444493,-0.233856,-0.538358,-0.805486,-0.572926,0.719317,0.110628,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.378822,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,-0.796872,-1.06364,-0.35535,0.460969,-0.982926,-0.233856,1.42241,-0.805486,-1.05664,0.552273,0.354928,-0.516206,-0.0893423,1.05605,0.106361,0.118535,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,-0.796872,-1.06364,-0.35535,0.460969,-0.982926,-0.233856,1.57324,-0.805486,-1.05664,0.820995,-0.0380764,-0.516206,-0.0893423,1.05605,0.106361,0.118535,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,1.8566,-0.11157,-1.0992,0.774478,-0.630997,0.766072,-0.538358,1.86254,0.0317153,-0.362832,-0.229268,-0.516206,-0.0893423,0.192315,-0.452169,0.118535,0.294997,0.724498,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-1.35789,0.614558,1.34846,0.17482,1.07851,0.399771,0.460969,1.12865,0.266108,0.442028,-0.805486,-0.693854,0.30534,0.716067,-0.516206,-0.0893423,0.8833,0.385625,0.790377,0.294997,0.14398,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,-1.63512,-1.24747,0.752658,-0.903656,-0.252581,-1.22016,-0.76937,-0.0494167,-1.06364,0.027846,-0.479559,-0.0444493,1.26604,0.0649564,-0.805486,0.0317153,0.661215,0.195602,-0.516206,-0.0893423,0.192315,2.89901,0.790377,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,-1.35789,0.614558,-0.76937,0.17482,-1.30165,0.399771,0.460969,1.24596,-0.233856,-0.387529,-0.805486,-1.17757,0.537748,0.376171,-0.101459,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,-1.35789,0.614558,-0.76937,0.17482,-1.06364,0.027846,-0.793068,1.24596,0.266108,-0.0858721,-0.805486,-0.814782,0.450595,0.503632,-0.101459,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.14398,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,1.24403,-1.35789,-1.22016,-0.76937,-0.198908,0.364463,0.399771,-0.291453,1.01134,-2.73368,0.140371,-0.805486,-1.90314,0.450595,0.503632,-0.516206,-0.0893423,0.8833,0.106361,0.790377,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,1.24403,-1.35789,0.614558,-0.76937,0.17482,-1.06364,1.15489,0.460969,0.542098,-0.233856,0.215785,-0.805486,0.3945,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,-1.22016,-0.76937,0.17482,-1.18264,0.027846,-1.23198,-0.982926,0.266108,1.72407,-0.805486,-0.210141,0.552273,0.354928,-0.516206,-0.0893423,1.05605,-0.452169,0.566429,0.294997,1.27789,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,-1.22016,-0.76937,0.17482,-1.18264,0.027846,-1.23198,-0.982926,0.266108,1.72407,-0.805486,-0.210141,0.820995,-0.0380764,-0.516206,-0.0893423,1.05605,-0.731433,0.566429,0.294997,1.27789,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,-0.252581,-1.22016,0.289548,-0.572636,-1.06364,-0.727275,0.14746,0.19017,1.26604,-0.0858721,-0.805486,0.0317153,0.719317,0.110628,0.728035,-0.0893423,0.192315,2.89901,0.790377,0.294997,-0.105589,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,-0.76937,1.66973,-0.11157,-0.727275,-0.103348,-0.396378,-0.233856,-0.538358,1.9952,0.0317153,-0.362832,-0.324863,-0.516206,-0.0893423,0.537808,-1.0107,0.118535,0.294997,0.724498,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,-1.22016,-0.76937,0.922276,-1.30165,0.399771,-0.103348,-1.10024,-0.233856,-0.538358,2.06891,-0.814782,-0.609765,-0.016833,-0.516206,-0.0893423,0.192315,-0.172904,0.118535,0.294997,0.394324,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,1.34846,1.44549,0.126446,1.89874,-0.16605,-0.0444493,0.266108,0.0649564,0.0642017,-0.935711,0.450595,-0.12305,1.14278,-0.0893423,0.192315,-0.452169,0.790377,0.294997,0.14398,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,0.614558,-0.76937,-0.385772,-1.06364,-0.727275,0.460969,-0.982926,-1.23378,0.0649564,-0.805486,1.48285,0.450595,0.503632,0.728035,-0.0893423,1.05605,-0.452169,-0.32936,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,-0.76937,-0.198908,0.364463,0.027846,4.34848,-0.161759,-0.233856,0.366613,0.115793,-1.90314,0.265395,0.110628,-0.516206,-0.0893423,1.05605,0.66489,0.790377,0.294997,0.394324,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-0.252581,0.614558,-0.76937,-0.385772,-1.30165,-0.727275,-0.793068,0.19017,-1.73375,-0.236701,-0.805486,1.48285,0.450595,0.503632,0.313288,-0.0893423,0.192315,-0.452169,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,0.614558,-0.76937,-0.385772,-0.11157,-2.98137,0.14746,1.94981,-0.233856,-0.0858721,-0.805486,1.36193,0.719317,0.110628,-0.101459,-0.0893423,0.365061,-1.0107,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,0.614558,-0.76937,-0.385772,-1.18264,-2.98137,-0.16605,0.19017,-0.73382,0.215785,-0.805486,1.47802,0.450595,0.503632,3.21652,-0.0893423,0.192315,-0.731433,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,1.24403,0.852732,0.614558,-0.76937,0.548548,-1.30165,0.399771,-0.16605,-0.748307,0.266108,0.215785,-0.805486,1.07895,0.450595,0.503632,2.80177,-0.0893423,-1.53515,0.106361,0.00656096,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.21252,-0.903656,0.852732,0.614558,-0.76937,0.548548,-1.30165,-0.35535,-0.16605,1.12865,0.266108,0.215785,-0.805486,1.07895,0.450595,0.503632,2.80177,-0.0893423,1.05605,0.106361,0.00656096,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,0.614558,0.289548,0.17482,-1.18264,-0.727275,0.523671,-0.513688,1.26604,0.215785,-0.805486,0.0317153,0.719317,0.110628,-0.101459,-0.0893423,0.192315,0.66489,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,0.614558,-0.76937,0.548548,-1.18264,-0.727275,0.272863,0.19017,1.26604,1.19617,-0.805486,0.0317153,0.719317,0.110628,-0.101459,-0.0893423,0.192315,1.50268,-0.32936,0.294997,0.394324,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.946364,-1.18264,0.771696,0.14746,-0.513688,0.51609,0.215785,-0.436974,0.273572,0.392493,0.323063,1.35015,-0.0893423,-0.844163,0.944154,-0.32936,0.294997,1.00119,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,-1.22016,-0.76937,-0.198908,-1.18264,0.027846,0.14746,-0.279068,0.266108,0.0649564,-0.274829,-0.0892129,0.552273,-0.0380764,1.14278,-0.0893423,1.05605,0.106361,0.790377,0.294997,1.27789,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,-1.22016,1.34846,0.698039,0.126446,0.027846,0.460969,-0.0444493,0.266108,0.215785,1.27292,-1.2985,-0.152213,1.79948,-0.516206,-0.0893423,1.05605,-0.172904,0.118535,0.294997,0.14398,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,0.614558,1.34846,0.17482,1.31653,-0.35535,-0.16605,-0.279068,0.266108,1.72407,-0.805486,-0.693854,0.450595,0.503632,-0.516206,-0.0893423,1.05605,0.66489,0.566429,0.294997,0.144367,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,0.289548,-0.198908,0.840496,-0.727275,1.08799,-0.396378,-2.50869,0.215785,-0.805486,0.273572,0.450595,0.503632,-0.516206,-0.0893423,0.365061,1.22342,-0.32936,0.294997,0.144367,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,0.614558,-0.76937,1.296,1.07851,-0.35535,-0.16605,0.19017,0.266108,2.17656,1.3024,-0.984082,-0.362832,0.174358,-0.516206,-0.0893423,1.05605,0.106361,0.566429,0.294997,0.390448,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-1.35789,0.614558,1.34846,0.361684,1.67355,-0.727275,-0.793068,0.19017,-0.73382,-0.0104578,0.889668,-0.149677,-0.0360087,-0.00621123,0.728035,-0.0893423,1.05605,-0.172904,0.118535,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,-0.198908,0.840496,-0.727275,0.14746,0.659408,-1.23378,-0.161286,0.521156,0.515428,0.0148305,0.18498,1.55753,-0.0893423,1.05605,0.385625,0.230508,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-0.198908,0.840496,0.027846,-0.16605,0.19017,-1.98373,-2.04664,-0.333791,0.515428,0.0874579,0.694823,-0.516206,-0.0893423,0.192315,0.106361,0.230508,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,0.614558,1.34846,0.361684,1.67355,-0.727275,0.272863,1.01134,-1.73375,-2.04664,0.0199803,-0.149677,0.218187,0.259332,0.728035,-0.0893423,1.05605,-0.312536,0.118535,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-0.252581,0.614558,-0.76937,-0.198908,1.31653,-0.727275,-0.981174,1.48057,-1.23378,0.366613,0.0199803,1.241,0.218187,0.259332,0.313288,-0.0893423,0.192315,0.106361,0.00656096,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,0.614558,-0.76937,-0.198908,1.31653,-0.727275,-0.228752,0.19017,-0.73382,0.0649564,-0.30431,1.24825,0.30534,0.354928,0.313288,-0.0893423,0.192315,-1.0107,0.00656096,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,1.34846,0.17482,0.840496,-0.727275,-0.16605,-0.396378,-0.233856,-0.538358,0.742264,0.757285,0.000304978,0.0362757,-0.516206,-0.0893423,0.192315,-0.731433,0.00656096,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,1.34846,0.17482,0.840496,-0.727275,-0.16605,-0.748307,-0.233856,-0.161286,0.742264,0.757285,0.000304978,0.0362757,1.55753,-0.0893423,0.192315,-0.452169,0.00656096,0.294997,0.136617,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,-0.0494167,0.840496,-0.35535,0.460969,-0.0444493,-0.73382,-0.161286,-0.805486,0.0317153,0.450595,0.503632,1.55753,-0.0893423,0.192315,0.106361,0.118535,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,0.614558,-0.76937,-1.13323,-1.18264,0.027846,1.45166,0.19017,0.266108,1.72407,-0.30431,-0.71804,0.30534,0.354928,-0.516206,-0.0893423,1.05605,0.106361,0.230508,0.294997,0.136617,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,0.614558,1.34846,-0.572636,-1.18264,0.027846,0.874801,-0.0444493,0.266108,1.72407,0.31479,-0.71804,0.123772,0.163737,-0.516206,-0.0893423,1.05605,0.106361,0.230508,0.294997,0.4137,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,0.614558,-0.76937,1.296,1.07851,-0.727275,-0.16605,0.19017,0.266108,1.72407,0.727523,-0.984082,-0.391883,0.641715,-0.516206,-0.0893423,1.05605,0.106361,0.566429,0.294997,0.398199,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-1.35789,0.614558,-0.76937,-0.198908,1.07851,-0.727275,-0.16605,0.19017,-0.233856,1.72407,-0.805486,-0.935711,0.450595,0.503632,-0.516206,-0.0893423,1.05605,-1.0107,0.118535,0.294997,0.134679,0.111585,1 +0.142908,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,0.614558,-0.76937,-3.18873,1.07851,-0.727275,-0.16605,0.19017,-0.233856,1.72407,0.167385,-0.935711,0.167348,0.216845,1.97227,-0.0893423,1.05605,0.385625,0.118535,0.294997,0.134679,0.111585,1 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,-0.903656,-0.252581,0.614558,-0.76937,0.17482,0.840496,-0.727275,1.08799,-0.748307,0.266108,-2.04664,-0.333791,-0.766411,0.0874579,0.694823,-0.516206,-0.0893423,1.05605,0.106361,0.118535,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.198908,1.31653,0.399771,0.523671,0.424789,0.51409,0.215785,0.0347207,0.0317153,0.30534,0.110628,3.63126,-0.0893423,-2.91712,-1.28996,-0.32936,0.294997,0.398199,0.111585,1 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,0.996225,-0.167058,1.24403,0.852732,0.614558,1.34846,-0.198908,1.31653,-0.35535,0.523671,-0.0444493,-0.483838,-0.161286,0.00523978,0.0317153,0.174611,0.323063,-0.516206,-0.0893423,-1.3624,1.50268,-0.32936,0.294997,0.144755,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,0.17482,0.721488,-0.35535,-0.16605,1.12865,-0.483838,0.215785,0.727523,0.273572,-0.0360087,0.110628,-0.516206,-0.0893423,0.192315,2.34048,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,-0.198908,0.959504,0.399771,0.711776,0.776718,0.51609,0.215785,-0.805486,0.273572,0.450595,0.503632,3.63126,-0.0893423,-0.671416,-0.452169,-0.32936,0.294997,-0.347407,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,-0.903656,0.852732,0.614558,-0.76937,-0.572636,0.959504,-0.727275,0.523671,0.424789,-2.73368,0.0649564,-0.805486,1.72471,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.944154,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,1.67237,1.24403,0.852732,0.614558,-0.76937,-0.572636,0.959504,-0.727275,0.523671,0.659408,-2.73368,0.215785,-0.805486,1.72471,0.174611,0.907258,-0.516206,-0.0893423,0.192315,0.385625,-0.32936,0.294997,-0.105589,0.111585,1 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-0.252581,0.614558,1.34846,-0.012044,-0.468595,-0.727275,0.586373,-0.0444493,0.266108,0.215785,-0.805486,0.757285,0.261764,0.779797,-0.516206,-0.0893423,0.192315,0.66489,0.00656096,0.294997,0.669469,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,-1.35789,0.614558,-0.76937,-0.198908,2.03058,-0.727275,-0.291453,1.36327,1.26604,0.215785,-0.805486,-0.838968,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.106361,0.790377,0.294997,0.137004,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,-0.198908,1.07851,-0.727275,-0.16605,0.776718,1.26604,-0.161286,0.211606,0.757285,0.101983,0.280576,-0.516206,-0.0893423,0.192315,0.66489,0.230508,0.294997,0.137004,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,0.614558,1.34846,0.548548,1.67355,-2.98137,0.460969,0.19017,-0.73382,0.0649564,1.03707,-0.572926,-0.188526,0.110628,-0.516206,-0.0893423,0.192315,1.50268,0.118535,0.294997,0.394324,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,-1.35789,0.614558,-0.76937,0.548548,1.07851,0.027846,0.460969,-0.0444493,-0.73382,0.0649564,-0.142165,-0.645483,0.029356,0.588606,-0.516206,-0.0893423,0.192315,1.50268,0.118535,0.294997,0.374947,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,-0.198908,1.43554,-0.35535,0.335565,0.19017,0.266108,0.215785,0.742264,0.515428,0.000304978,0.0468975,-0.516206,-0.0893423,1.05605,0.106361,0.00656096,0.294997,0.646217,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,1.24403,-1.35789,0.614558,-0.76937,-0.198908,1.07851,-0.727275,-0.479559,0.776718,1.26604,0.592856,-0.805486,-1.2985,0.450595,0.503632,0.520661,-0.0893423,-1.53515,0.106361,-0.32936,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.2928,-0.903656,-1.35789,0.614558,-0.76937,-0.198908,2.14959,-0.727275,-0.479559,-0.279068,-0.233856,-0.387529,-0.805486,-1.2985,0.450595,0.503632,-0.101459,-0.0893423,0.192315,0.106361,0.230508,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.2928,-0.903656,-1.35789,0.614558,-0.76937,0.17482,1.19752,-0.727275,-0.793068,2.30174,0.266108,0.215785,-0.805486,-0.451998,0.450595,0.503632,0.313288,-0.0893423,0.0195689,-0.172904,-0.32936,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,-1.63512,-1.24747,0.752658,1.24403,-1.35789,0.614558,-0.76937,0.922276,1.19752,0.208173,3.59606,-0.0444493,1.26604,0.0649564,-0.805486,-0.693854,0.450595,0.503632,0.728035,-0.0893423,0.192315,-0.731433,0.230508,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,1.24403,-0.252581,0.614558,1.34846,-0.012044,0.126446,-0.727275,0.460969,0.424789,0.266108,0.215785,-0.805486,0.878213,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.106361,0.00656096,0.294997,0.669469,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,-1.63512,-1.24747,0.752658,-0.903656,-1.35789,0.614558,1.34846,0.548548,-0.468595,-0.727275,-0.16605,0.19017,-0.233856,0.0649564,-0.805486,-0.0892129,0.465121,0.482389,-0.516206,-0.0893423,-2.39888,0.106361,0.566429,0.294997,-0.734161,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,0.614558,-0.76937,-3.18873,-0.82562,-0.727275,-0.604963,-0.0444493,-1.73375,0.366613,-0.805486,-0.331069,0.30534,0.716067,0.728035,-0.0893423,0.192315,4.29533,0.790377,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,0.614558,1.34846,-3.18873,-0.944628,-0.727275,-0.040646,-0.0444493,0.266108,0.366613,0.403233,-0.693854,-0.115899,0.461145,0.313288,-0.0893423,0.537808,2.34048,0.790377,0.294997,0.378822,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,0.614558,1.34846,0.922276,-0.82562,-0.727275,-0.16605,-0.982926,-0.233856,0.0649564,0.403233,-0.210141,-0.115899,0.461145,-0.516206,-0.0893423,0.192315,2.89901,0.790377,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,-1.35789,0.614558,-0.76937,-0.198908,-1.53967,-2.98137,0.774478,0.776718,-0.233856,0.215785,-0.171646,0.273572,0.0438814,0.641715,-0.516206,-0.0893423,1.05605,0.106361,-0.32936,0.294997,0.137004,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,-0.496098,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,-0.198908,-1.30165,-2.98137,0.272863,0.776718,-1.48377,-0.0104578,-0.171646,0.636357,0.0438814,0.641715,-0.101459,-0.0893423,0.192315,1.50268,-0.32936,0.294997,0.137004,0.111585,0 +-0.88764,-0.185139,-4.06686,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,1.34846,-0.198908,-1.30165,0.399771,-0.228752,-0.396378,-0.233856,0.0649564,-0.171646,0.515428,0.0438814,0.641715,1.14278,-0.0893423,0.192315,1.50268,-0.32936,0.294997,1.27866,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,1.34846,-0.198908,-0.468595,-0.727275,-0.479559,0.776718,0.266108,-0.161286,0.742264,0.152644,0.000304978,0.0468975,0.313288,-0.0893423,-4.12634,-2.68628,0.118535,0.294997,0.669469,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,1.34846,-0.198908,-0.230579,0.399771,1.08799,-0.396378,-0.233856,0.215785,-0.805486,-0.451998,0.450595,0.503632,-0.516206,-0.0893423,0.192315,-0.871065,0.00656096,0.294997,0.638467,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-0.252581,0.614558,1.34846,0.361684,0.840496,-0.535677,-1.35738,-0.982926,-2.73368,2.10114,0.668561,-0.306884,-0.188526,0.376171,-0.516206,-0.0893423,0.8833,0.106361,0.118535,0.294997,-0.347407,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,2.5409,-0.147265,0.263873,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,0.548548,-1.30165,-0.727275,-0.040646,-0.0444493,1.26604,-0.236701,-0.805486,0.152644,0.450595,0.503632,-0.516206,-0.0893423,0.8833,0.385625,0.790377,0.294997,0.137004,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,-0.903656,-1.35789,0.614558,1.34846,-0.198908,1.67355,-0.727275,-0.16605,0.19017,-0.233856,1.72407,0.727523,-0.355255,-0.391883,0.631093,-0.101459,-0.0893423,1.05605,1.50268,-0.105413,0.294997,0.137004,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.946364,-6.06198,0.399771,1.08799,-0.0444493,0.51609,0.215785,-0.805486,-0.210141,0.450595,0.503632,-0.516206,-0.0893423,0.192315,0.66489,-0.32936,0.294997,0.378822,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,1.13729,0.698209,-0.147265,0.263873,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,-0.946364,-1.30165,-0.727275,-0.793068,-0.630997,-0.483838,0.215785,-0.805486,0.0317153,0.450595,0.503632,-0.516206,-0.0893423,-4.12634,-2.68628,-0.32936,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-1.35789,0.614558,1.34846,0.548548,1.31653,0.027846,-2.54872,0.19017,-2.73368,1.72407,-0.805486,-0.524555,0.450595,0.503632,-0.516206,-0.0893423,1.05605,0.106361,0.566429,0.294997,0.144755,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.248326,-1.08677,0.630402,-0.252581,0.614558,-0.76937,0.17482,1.43554,0.027846,-0.16605,0.19017,0.266108,1.72407,-0.805486,-0.766411,0.450595,0.503632,0.313288,-0.0893423,1.05605,0.106361,0.118535,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,-1.63512,0.248326,-1.08677,0.630402,-1.35789,0.614558,1.34846,-0.385772,1.67355,-0.727275,0.460969,0.19017,-0.233856,1.72407,0.167385,-0.355255,0.167348,0.216845,0.728035,-0.0893423,1.05605,0.106361,-0.105413,0.294997,0.137004,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,-0.76937,-0.198908,-1.42066,-0.727275,-0.16605,0.542098,-0.233856,0.215785,-0.805486,0.515428,0.399756,0.577984,-0.101459,-0.0893423,0.192315,-1.0107,0.230508,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,0.698209,-0.147265,0.263873,0.642925,0.996225,-1.54663,0.630402,0.852732,0.614558,1.34846,-0.198908,-1.42066,-0.727275,-0.16605,-0.748307,-1.23378,0.215785,-0.805486,0.515428,0.399756,0.577984,-0.101459,-0.0893423,0.192315,-1.84849,0.230508,0.294997,0.661718,0.111585,0 +1.17346,-0.185139,0.312177,-0.258424,-0.141001,-0.877564,-1.14449,-0.147265,0.263873,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,-0.76937,-0.198908,0.959504,-0.163752,-0.16605,0.19017,0.266108,0.969927,1.155,-0.0892129,-0.115899,-0.0805634,-0.516206,-0.0893423,-0.325924,-0.731433,0.118535,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,0.698209,-0.147265,-1.56184,-0.496098,-1.24747,0.2928,-0.903656,-0.252581,0.614558,-0.76937,-0.946364,-0.11157,-0.35535,0.523671,0.0728602,-0.233856,-0.161286,-0.805486,-0.935711,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,0.359446,0.111585,0 +1.17346,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,0.698209,-0.147265,-1.56184,0.642925,0.996225,-1.54663,0.630402,-0.252581,0.614558,1.34846,-0.198908,-1.30165,0.399771,-0.479559,-0.748307,-0.233856,0.517442,-0.805486,-0.403626,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.944154,-3.68857,0.294997,0.0494228,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,0.698209,-0.147265,-1.56184,-1.63512,0.996225,-1.54663,0.630402,-0.252581,0.614558,1.34846,0.17482,-1.77769,-2.98137,-0.793068,-0.279068,-0.233856,-0.538358,-0.805486,-0.210141,-3.8199,-3.87252,-0.516206,-0.0893423,-0.671416,-0.172904,-3.68857,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,0.698209,-0.147265,-1.56184,-0.496098,-1.24747,0.752658,1.24403,0.852732,0.614558,-0.76937,-0.198908,-1.30165,0.399771,0.14746,-0.396378,0.266108,-0.161286,-0.805486,-1.66128,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,0.122356,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,1.13729,0.698209,-0.147265,-1.56184,0.642925,0.996225,-0.167058,1.24403,0.852732,0.614558,-0.76937,-0.572636,-1.06364,-0.727275,-0.16605,-0.0444493,-0.483838,0.969927,-0.805486,-0.0892129,-3.8199,-3.87252,-0.516206,-0.0893423,-0.153177,0.106361,-3.68857,0.294997,0.126929,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,1.13729,0.698209,-0.147265,-1.56184,0.642925,-1.24747,0.2928,-0.903656,0.852732,0.614558,-0.76937,0.922276,0.00743802,-0.163752,0.711776,-0.0444493,-0.73382,0.140371,-0.805486,0.0317153,-3.8199,-3.87252,-0.516206,-0.0893423,-1.53515,0.106361,-3.68857,0.294997,-0.105589,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,1.13729,0.698209,-0.147265,-1.56184,0.642925,0.996225,-1.54663,-0.903656,0.852732,0.614558,-0.76937,-0.572636,-0.349587,0.027846,0.460969,-0.748307,0.266108,-0.538358,-0.805486,-0.331069,-3.8199,-3.87252,-0.516206,-0.0893423,-1.53515,0.385625,-3.68857,0.294997,-1.39761,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,1.13729,0.698209,-0.147265,-1.56184,0.642925,-1.24747,0.752658,-0.903656,0.852732,0.614558,-0.76937,0.361684,-0.11157,-0.727275,1.08799,-0.982926,-0.73382,0.215785,-0.805486,0.515428,-3.8199,-3.87252,-0.516206,-0.0893423,-0.325924,-0.731433,-3.68857,0.294997,0.144367,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,1.13729,0.698209,-0.147265,-1.56184,0.642925,0.996225,-0.167058,1.55084,0.852732,0.614558,1.34846,-0.198908,0.126446,-2.98137,-1.10658,0.776718,0.266108,0.215785,-0.805486,0.273572,-3.8199,-3.87252,-0.516206,-0.0893423,-4.12634,-2.68628,-3.68857,0.294997,-0.539621,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,0.698209,-0.147265,-1.56184,0.642925,0.996225,1.21252,-0.903656,-0.252581,0.614558,1.34846,0.361684,0.245455,-0.35535,1.08799,0.19017,-0.233856,-0.538358,-0.805486,0.152644,-3.8199,-3.87252,-0.516206,-0.0893423,-0.671416,1.50268,-3.68857,0.294997,0.336194,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,0.698209,-0.147265,-1.56184,0.642925,-1.24747,0.752658,1.24403,-0.252581,0.614558,-0.76937,0.548548,0.602479,0.399771,-0.16605,0.19017,-1.98373,-0.0858721,-0.805486,0.3945,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,1.50268,-3.68857,0.294997,0.115845,0.111585,0 +1.17346,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,-1.14449,-0.147265,-1.56184,-0.496098,0.996225,-0.167058,-0.903656,0.852732,0.614558,1.34846,0.922276,0.602479,0.399771,3.59606,0.19017,0.766072,0.592856,-0.805486,-0.331069,-3.8199,-3.87252,-0.516206,-0.0893423,-0.49867,-1.0107,-3.68857,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,-1.14449,-0.147265,-1.56184,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,0.922276,0.364463,0.399771,1.4015,0.424789,0.51609,0.0649564,-0.805486,-0.451998,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,0.122278,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,-1.14449,-0.147265,-1.56184,0.642925,0.996225,-0.167058,-0.903656,0.852732,0.614558,-0.76937,-0.198908,0.721488,0.399771,0.460969,0.894027,0.51609,0.215785,-0.805486,-0.210141,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,0.122278,0.111585,0 +-0.88764,-0.185139,-1.87734,3.63314,-0.141001,1.13729,0.698209,-0.147265,-1.56184,0.642925,-1.24747,0.752658,-1.21047,-0.252581,0.614558,-0.76937,-0.572636,0.602479,0.027846,-0.103348,0.307479,0.266108,0.366613,-0.805486,0.515428,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,0.122278,0.111585,0 +0.142908,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,0.698209,-0.147265,-1.56184,0.642925,0.996225,-1.54663,0.630402,-0.252581,0.614558,-0.76937,0.548548,1.79256,0.399771,-0.291453,0.19017,-0.233856,0.215785,-0.805486,0.128458,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,-0.105589,0.111585,0 +1.17346,-0.185139,-1.87734,3.63314,-0.141001,-0.877564,-1.14449,-0.147265,-1.56184,0.642925,-1.24747,0.2928,1.24403,-1.35789,0.614558,1.34846,0.548548,1.91157,0.399771,-0.479559,0.894027,0.266108,-0.387529,-0.805486,-1.17757,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,2.89901,-3.68857,0.294997,0.109102,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.248326,0.752658,-0.903656,-0.252581,0.614558,-0.76937,-3.18873,1.31653,0.771696,-0.479559,0.659408,-2.73368,-0.312115,-0.805486,-1.41942,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,-2.68628,-3.68857,0.294997,0.14398,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.996225,-1.54663,-0.903656,-0.252581,0.614558,-0.76937,-3.18873,1.43554,-0.35535,0.14746,0.0728602,-0.233856,0.592856,-0.805486,-0.0650273,-3.8199,-3.87252,-0.516206,-0.0893423,0.0195689,0.106361,-3.68857,0.294997,0.378822,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.248326,0.752658,1.24403,-0.252581,0.614558,-0.76937,-3.18873,1.91157,0.399771,-0.103348,0.19017,0.266108,0.0649564,-0.805486,-0.016656,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,0.378822,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.996225,-1.54663,0.630402,-0.252581,0.614558,1.34846,-3.18873,-0.11157,0.771696,0.272863,0.424789,-2.73368,0.215785,-0.805486,0.152644,-3.8199,-3.87252,-0.516206,-0.0893423,-4.12634,-2.68628,-3.68857,0.294997,0.14398,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.996225,-1.54663,0.630402,-0.252581,0.614558,1.34846,-3.18873,1.07851,0.399771,-0.16605,0.424789,-0.73382,-0.387529,-0.805486,0.0317153,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,-0.353607,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.996225,-1.54663,0.630402,-0.252581,0.614558,1.34846,-3.18873,1.07851,0.027846,-0.291453,0.19017,-0.233856,-0.161286,-0.805486,0.152644,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.106361,-3.68857,0.294997,-0.345857,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.996225,-1.54663,0.630402,-0.252581,0.614558,0.289548,-3.18873,0.602479,0.399771,-0.730366,0.424789,-0.233856,0.969927,-0.805486,0.0317153,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,-0.172904,-3.68857,0.294997,-0.345857,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.248326,0.752658,-0.903656,-0.252581,0.614558,1.34846,-3.18873,0.602479,1.15489,-0.103348,-0.0444493,-0.73382,0.140371,-0.805486,-1.1292,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,-2.68628,-3.68857,0.294997,-0.345857,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.248326,0.752658,-0.903656,-0.252581,0.614558,1.34846,-3.18873,-0.468595,-0.727275,-0.16605,0.776718,-0.73382,-0.236701,-0.805486,-0.766411,-3.8199,-3.87252,-0.516206,-0.0893423,-1.01691,2.06121,-3.68857,0.294997,-0.345857,0.111585,0 +0.142908,5.3908,-1.87734,3.63314,7.07827,1.13729,0.698209,5.23843,-1.56184,-0.496098,0.996225,-1.54663,0.630402,-0.252581,0.614558,1.34846,-3.18873,0.483471,1.15489,0.14746,-0.279068,0.266108,0.215785,-0.805486,-0.0892129,-3.8199,-3.87252,-0.516206,-0.0893423,0.192315,0.66489,-3.68857,0.294997,-0.345857,0.111585,0 diff --git a/data/datasets.txt b/data/datasets.txt new file mode 100644 index 0000000..dbc890f --- /dev/null +++ b/data/datasets.txt @@ -0,0 +1,49 @@ +balance-scale +balloons +breast-cancer-wisc-diag +breast-cancer-wisc-prog +breast-cancer-wisc +breast-cancer +cardiotocography-10clases +cardiotocography-3clases +conn-bench-sonar-mines-rocks +cylinder-bands +dermatology +echocardiogram +fertility +haberman-survival +heart-hungarian +hepatitis +ilpd-indian-liver +ionosphere +iris +led-display +libras +low-res-spect +lymphography +mammographic +molec-biol-promoter +musk-1 +oocytes_merluccius_nucleus_4d +oocytes_merluccius_states_2f +oocytes_trisopterus_nucleus_2f +oocytes_trisopterus_states_5b +parkinsons +pima +pittsburg-bridges-MATERIAL +pittsburg-bridges-REL-L +pittsburg-bridges-SPAN +pittsburg-bridges-T-OR-D +planning +post-operative +seeds +statlog-australian-credit +statlog-german-credit +statlog-heart +statlog-image +statlog-vehicle +synthetic-control +tic-tac-toe +vertebral-column-2clases +wine +zoo diff --git a/data/dermatology.arff b/data/dermatology.arff new file mode 100755 index 0000000..e0e872b --- /dev/null +++ b/data/dermatology.arff @@ -0,0 +1,403 @@ +@relation dermatology +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'clase' {0,1,2,3,4,5} +@data +-0.102754,0.292103,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.21399,1 +1.40156,1.71756,1.59865,0.556866,0.403209,-0.468061,-0.292096,-0.452018,0.391917,0.530978,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,0.0613546,-0.696489,0.774207,1.26422,0.867519,1.32002,2.54246,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.71245,0 +-0.102754,-1.13336,0.496757,1.43537,0.403209,2.66566,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,0.684774,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,1.81074,1.61975,-0.230501,-0.234804,0.18438,2.21117,-0.591685,2 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,1.63517,-0.378625,-0.464892,-0.338387,3.00883,-0.393916,-1.23943,0.0613546,-0.696489,1.86405,1.26422,0.867519,1.32002,2.54246,-0.478317,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.280021,0 +-0.102754,1.71756,0.496757,0.556866,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,0.684774,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,1.77537,2.66393,0.925919,2.66715,-0.230501,-0.234804,0.18438,2.21117,0.591345,2 +-0.102754,1.71756,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,4.51846,0.556198,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.342286,1 +-0.102754,-1.13336,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-0.333979,1.46484,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.0898,4 +-0.102754,0.292103,1.59865,1.43537,2.60581,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,1.77537,1.61667,1.81074,1.61975,-0.230501,-0.234804,1.56159,2.21117,1.33852,2 +-0.102754,0.292103,-0.605141,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.840744,3 +-0.102754,0.292103,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.342626,3 +1.40156,1.71756,0.496757,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,1.94512,1.86405,1.26422,0.867519,1.32002,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.965273,0 +-0.102754,0.292103,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.903009,1 +1.40156,1.71756,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,1.47693,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.840744,1 +-0.102754,1.71756,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,0.530978,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,0.774207,0.317994,0.867519,2.28627,-0.440041,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.58792,0 +-0.102754,0.292103,1.59865,1.43537,-0.698093,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,-0.843723,2.66715,-0.230501,-0.234804,-1.19283,2.21117,1.83664,2 +-1.60707,-1.13336,-1.70704,-0.321638,2.60581,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.280021,3 +-0.102754,0.292103,-0.605141,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,0.571475,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.342626,1 +1.40156,1.71756,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,2.73936,2.63392,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,1.72799,2.28627,2.54246,3.4705,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.155492,0 +-0.102754,-1.13336,1.59865,1.43537,2.60581,2.66566,-0.292096,-0.452018,1.40923,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,1.61667,-0.843723,2.66715,-0.230501,-0.234804,0.18438,2.21117,-0.778479,2 +-1.60707,-1.13336,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,1.46484,1.94512,0.774207,-0.628233,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.15207,4 +-0.102754,-1.13336,-0.605141,0.556866,-0.698093,-0.468061,4.96564,-0.452018,0.391917,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,-1.34213,1.94512,0.774207,-0.628233,0.007053,-0.612489,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,1.98959,3.85749,-1.19283,-0.501529,-1.71245,5 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,0.571475,0.0613546,0.624314,0.774207,-0.628233,0.867519,0.353765,2.54246,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.964933,1 +-0.102754,0.292103,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,0.778225,-0.333979,1.46484,0.624314,0.774207,-0.628233,0.867519,0.353765,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,1.98959,-0.234804,0.18438,-0.501529,0.404551,4 +-0.102754,0.292103,0.496757,1.43537,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,4.51846,-0.670118,-0.393916,-1.23943,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,2.66393,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.52908,2 +-0.102754,-2.55882,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.840744,4 +-0.102754,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,1.94512,0.774207,1.26422,0.867519,1.32002,1.05121,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.155832,0 +-1.60707,-1.13336,-1.70704,-0.321638,-0.698093,-0.468061,4.96564,-0.452018,0.391917,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,-0.477848,0.0410982,-0.475051,4.20968,3.85749,-1.19283,-0.501529,-1.58792,5 +-1.60707,0.292103,0.496757,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,0.778225,-0.333979,0.0613546,0.624314,-0.315638,-0.628233,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-1.15207,4 +1.40156,0.292103,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,1.47693,1.46484,3.26592,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,1.98959,1.81134,0.18438,-0.501529,0.466815,1 +-1.60707,-1.13336,0.496757,1.43537,1.50451,1.62109,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,2.66393,-0.843723,2.66715,1.98959,-0.234804,0.18438,2.21117,0.902668,2 +1.40156,0.292103,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,1.86405,1.26422,0.867519,1.32002,1.05121,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.902668,0 +1.40156,0.292103,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,1.78251,-0.393916,0.571475,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.58792,1 +-0.102754,1.71756,1.59865,1.43537,2.60581,-0.468061,-0.292096,-0.452018,2.42655,2.73936,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,1.94512,0.774207,2.21045,1.72799,2.28627,1.05121,3.4705,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.0935672,0 +-0.102754,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,2.63392,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,0.624314,0.774207,1.26422,0.007053,1.32002,-0.440041,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,-2.21057,0 +-0.102754,-1.13336,-1.70704,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,-2.21057,3 +-0.102754,0.292103,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-0.333979,-2.74562,0.624314,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,-2.21057,1 +-0.102754,-1.13336,0.496757,1.43537,1.50451,2.66566,-0.292096,1.94564,-0.625399,-0.573215,2.63392,0.684774,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,0.624314,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,-2.57003,2.21117,-2.21057,2 +-0.102754,-1.13336,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,1.47693,0.0613546,0.624314,-1.40548,-0.628233,-0.853413,-0.612489,2.54246,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.2766,1 +-0.102754,-1.13336,0.496757,1.43537,1.50451,0.576514,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,1.94512,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,0.569412,-0.843723,2.66715,-0.230501,-0.234804,0.18438,2.21117,-0.591685,2 +1.40156,1.71756,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,1.94512,1.86405,1.26422,0.867519,0.353765,-0.440041,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.653609,0 +-1.60707,-1.13336,-0.605141,-1.20014,-0.698093,-0.468061,1.46048,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,0.571475,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.964933,1 +-1.60707,-1.13336,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.64984,3 +1.40156,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,0.624314,-0.315638,0.317994,0.007053,0.353765,-0.440041,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.2766,0 +-0.102754,-1.13336,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0313025,1 +-3.11139,-1.13336,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-1.23943,0.0613546,1.94512,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.342626,4 +-0.102754,-1.13336,-0.605141,-0.321638,0.403209,1.62109,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,1.56159,2.21117,0.778139,2 +-0.102754,-1.13336,-0.605141,1.43537,2.60581,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.653609,3 +-0.102754,-1.13336,-0.605141,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,2.42655,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,1.81134,-1.19283,0.402705,-1.46339,5 +-1.60707,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-2.57003,1.30694,1.0272,1 +-0.102754,-2.55882,-0.605141,-1.20014,-0.698093,1.62109,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,1.94512,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,2.66393,-0.843723,1.61975,-0.230501,-0.234804,0.18438,1.30694,1.52532,2 +1.40156,-1.13336,-0.605141,0.556866,1.50451,1.62109,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,1.61667,-0.843723,2.66715,-0.230501,-0.234804,0.18438,2.21117,-0.218097,2 +-1.60707,-1.13336,-0.605141,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,0.572351,-0.230501,-0.234804,-1.19283,-0.501529,-0.0313025,3 +-0.102754,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,-0.315638,0.317994,0.867519,1.32002,1.05121,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.342286,0 +1.40156,-1.13336,-0.605141,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,-1.34213,-0.696489,0.774207,1.26422,0.867519,2.28627,-0.440041,3.4705,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.778139,0 +-3.11139,-1.13336,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-0.333979,0.0613546,0.624314,-1.40548,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.964933,4 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,-0.696489,0.774207,0.317994,1.72799,1.32002,-0.440041,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.02754,0 +-1.60707,-1.13336,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,1.47693,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.840744,1 +-0.102754,-1.13336,-0.605141,1.43537,-0.698093,2.66566,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,0.684774,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,2.66393,-0.843723,0.572351,-0.230501,-0.234804,0.18438,1.30694,-0.404891,2 +-1.60707,-1.13336,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.65395,3 +1.40156,1.71756,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,1.47693,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.155832,1 +-0.102754,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,1.46048,-0.452018,0.391917,0.530978,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,0.624314,-0.315638,0.317994,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,1.98959,1.81134,-1.19283,-0.501529,-1.71245,5 +-0.102754,-1.13336,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,0.530978,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,1.94512,0.774207,1.26422,0.867519,1.32002,-0.440041,0.837955,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.280021,0 +-1.60707,-1.13336,-1.70704,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-0.333979,1.46484,-0.696489,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.155832,4 +1.40156,1.71756,0.496757,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,1.94512,1.86405,1.26422,0.867519,1.32002,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.404551,0 +-0.102754,0.292103,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,1.47693,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.0309622,1 +1.40156,0.292103,0.496757,0.556866,-0.698093,1.62109,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,-1.19283,2.21117,1.52532,2 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,1.72799,2.28627,1.05121,3.4705,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.0309622,0 +-1.60707,-1.13336,-1.70704,-0.321638,2.60581,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.903009,3 +1.40156,1.71756,1.59865,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,0.571475,0.0613546,1.94512,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.280021,4 +1.40156,1.71756,1.59865,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,1.94512,0.774207,1.26422,0.867519,1.32002,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.903009,0 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.0935672,1 +-0.102754,-1.13336,0.496757,-1.20014,-0.698093,-0.468061,4.96564,-0.452018,2.42655,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,6.42976,5.90364,-2.57003,-0.501529,-1.40113,5 +-1.60707,-1.13336,-0.605141,-0.321638,0.403209,-0.468061,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,1.0272,2 +-1.60707,-1.13336,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,0.778225,-0.333979,-1.34213,0.624314,0.774207,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.778139,4 +-0.102754,-1.13336,0.496757,0.556866,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-2.74562,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.15207,3 +1.40156,0.292103,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,0.571475,-1.34213,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.65395,1 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-0.333979,0.0613546,-0.696489,1.86405,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,-0.155832,1 +-0.102754,-1.13336,0.496757,0.556866,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,1.78251,-0.393916,0.571475,0.0613546,1.94512,0.774207,1.26422,0.867519,0.353765,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.64984,0 +-3.11139,-2.55882,-1.70704,-1.20014,-0.698093,-0.468061,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,0.684774,-0.338387,-0.670118,-0.393916,1.47693,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,1.81074,2.66715,-0.230501,-0.234804,1.56159,2.21117,1.0272,2 +-0.102754,0.292103,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.52942,4 +1.40156,0.292103,0.496757,0.556866,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,-0.315638,0.317994,0.867519,0.353765,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.280021,0 +1.40156,0.292103,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,3.00883,-0.393916,0.571475,0.0613546,-0.696489,1.86405,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.280361,1 +-0.102754,-1.13336,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,1.47693,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.52942,1 +1.40156,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,0.571475,-1.34213,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.58792,1 +-1.60707,-1.13336,0.496757,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.21399,4 +-0.102754,0.292103,0.496757,1.43537,2.60581,-0.468061,-0.292096,-0.452018,-0.625399,1.63517,-0.378625,-0.464892,2.09004,1.78251,-0.393916,-0.333979,-1.34213,0.624314,-0.315638,0.317994,0.007053,0.353765,1.05121,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.342626,0 +1.40156,1.71756,0.496757,0.556866,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,-0.464892,4.51846,1.78251,-0.393916,-0.333979,0.0613546,0.624314,-0.315638,0.317994,0.867519,0.353765,2.54246,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.404551,0 +-0.102754,-1.13336,0.496757,-0.321638,0.403209,-0.468061,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,2.66393,-0.843723,2.66715,-0.230501,-0.234804,1.56159,2.21117,0.778139,2 +-3.11139,-1.13336,0.496757,-0.321638,0.403209,-0.468061,1.46048,-0.452018,1.40923,2.73936,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,1.46484,0.624314,0.774207,2.21045,1.72799,2.28627,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.840744,0 +-1.60707,-1.13336,-0.605141,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.280361,3 +1.40156,0.292103,-0.605141,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,2.63392,-0.464892,2.09004,1.78251,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.902668,1 +-0.102754,-1.13336,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,0.571475,-2.74562,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.466815,1 +-1.60707,-1.13336,-0.605141,1.43537,-0.698093,-0.468061,1.46048,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-0.333979,1.46484,0.624314,-0.315638,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.342626,4 +1.40156,1.71756,1.59865,1.43537,2.60581,-0.468061,-0.292096,-0.452018,2.42655,2.73936,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,0.774207,1.26422,0.867519,1.32002,2.54246,2.15423,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.404551,0 +-0.102754,-1.13336,-0.605141,1.43537,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,-0.843723,1.61975,-0.230501,-0.234804,1.56159,2.21117,-0.840744,2 +-0.102754,-1.13336,-1.70704,0.556866,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.0898,3 +-0.102754,0.292103,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0313025,1 +-1.60707,-1.13336,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,0.0613546,-0.696489,-1.40548,-0.628233,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.52532,4 +-0.102754,0.292103,0.496757,0.556866,1.50451,-0.468061,-0.292096,-0.452018,1.40923,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-2.74562,1.94512,0.774207,1.26422,0.867519,1.32002,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.467156,0 +-0.102754,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,3.21306,-0.452018,1.40923,-0.573215,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,1.98959,1.81134,-1.19283,-0.501529,-1.40113,5 +-0.102754,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,0.571475,0.0613546,0.624314,-0.315638,-0.628233,0.007053,-0.612489,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.965273,1 +-1.60707,-1.13336,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,0.0613546,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.77437,4 +1.40156,1.71756,1.59865,0.556866,1.50451,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,-1.34213,-0.696489,-0.315638,0.317994,0.007053,0.353765,1.05121,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.466815,0 +-0.102754,1.71756,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.965273,1 +-1.60707,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,4.51846,-0.670118,-0.393916,0.571475,1.46484,-0.696489,-0.315638,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0935672,1 +-0.102754,0.292103,0.496757,0.556866,1.50451,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,0.774207,1.26422,0.867519,0.353765,-0.440041,2.15423,-0.463197,-0.537035,0.569412,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.217756,0 +-1.60707,-1.13336,-1.70704,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-2.74562,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.52532,3 +-1.60707,-1.13336,-0.605141,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,0.391917,0.530978,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,-1.34213,1.94512,-0.315638,0.317994,0.007053,1.32002,-0.440041,3.4705,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.155492,0 +-0.102754,0.292103,1.59865,0.556866,0.403209,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.52908,2 +1.40156,0.292103,-0.605141,0.556866,1.50451,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,3.26592,0.774207,1.26422,0.867519,2.28627,-0.440041,3.4705,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,0.402705,0.0309622,0 +-0.102754,0.292103,0.496757,1.43537,1.50451,-0.468061,-0.292096,-0.452018,2.42655,2.73936,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,0.867519,1.32002,2.54246,2.15423,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.342286,0 +-0.102754,0.292103,0.496757,1.43537,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,0.925919,2.66715,-0.230501,-0.234804,1.56159,2.21117,-1.0898,2 +-1.60707,-1.13336,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,0.0613546,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.217756,4 +-0.102754,0.292103,1.59865,0.556866,2.60581,2.66566,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,1.61667,0.925919,1.61975,-0.230501,-0.234804,0.18438,1.30694,0.280021,2 +-1.60707,-1.13336,-0.605141,0.556866,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,1.56159,2.21117,0.715874,2 +-0.102754,0.292103,0.496757,1.43537,-0.698093,-0.468061,1.46048,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-0.333979,0.0613546,1.94512,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.21433,4 +-0.102754,0.292103,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.52942,1 +-0.102754,0.292103,1.59865,0.556866,1.50451,1.62109,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,1.95037,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,1.81074,1.61975,-0.230501,-0.234804,0.18438,1.30694,1.0272,2 +-0.102754,0.292103,-1.70704,0.556866,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,-2.74562,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.65395,3 +-1.60707,-1.13336,-0.605141,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,0.624314,-0.315638,1.26422,0.867519,0.353765,-0.440041,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-2.57003,1.30694,-2.21057,0 +1.40156,1.71756,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.155832,1 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-0.333979,1.46484,1.94512,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.653609,4 +-1.60707,-1.13336,0.496757,-1.20014,-0.698093,-0.468061,4.96564,-0.452018,2.42655,-0.573215,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,0.624314,-0.315638,0.317994,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,4.20968,3.85749,0.18438,-0.501529,-1.77471,5 +-0.102754,1.71756,1.59865,1.43537,2.60581,-0.468061,-0.292096,-0.452018,1.40923,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,1.86405,2.21045,1.72799,2.28627,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.342626,0 +1.40156,0.292103,0.496757,0.556866,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,2.73936,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,1.46484,0.624314,1.86405,2.21045,1.72799,1.32002,-0.440041,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.404891,0 +-0.102754,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,0.571475,1.46484,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.778479,1 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,3.21306,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,1.94512,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,4.20968,3.85749,0.18438,-0.501529,-1.71245,5 +-0.102754,0.292103,0.496757,0.556866,2.60581,1.62109,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,-0.843723,2.66715,-0.230501,-0.234804,1.56159,2.21117,0.52908,2 +-1.60707,-1.13336,-1.70704,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-1.23943,1.46484,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.15207,4 +-0.102754,-1.13336,-1.70704,0.556866,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.21433,3 +-1.60707,-1.13336,0.496757,0.556866,1.50451,-0.468061,3.21306,-0.452018,0.391917,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,0.774207,2.21045,1.72799,2.28627,2.54246,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.21399,0 +-0.102754,0.292103,0.496757,1.43537,1.50451,-0.468061,-0.292096,-0.452018,0.391917,0.530978,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,-1.34213,0.624314,-0.315638,0.317994,0.007053,0.353765,1.05121,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.280021,0 +1.40156,0.292103,0.496757,-0.321638,2.60581,2.66566,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,1.86405,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,1.81074,2.66715,-0.230501,-0.234804,0.18438,1.30694,-0.0935672,2 +-0.102754,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-1.23943,1.46484,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.404891,4 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,0.778225,-1.23943,0.0613546,-0.696489,-1.40548,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0935672,4 +-1.60707,-1.13336,-0.605141,-0.321638,0.403209,-0.468061,1.46048,-0.452018,1.40923,2.73936,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,1.94512,-0.315638,1.26422,0.867519,1.32002,2.54246,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.65395,0 +-0.102754,0.292103,-1.70704,0.556866,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-2.74562,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,2.14796,3 +1.40156,1.71756,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,4.51846,-0.670118,-0.393916,0.571475,1.46484,-0.696489,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.093227,1 +-0.102754,1.71756,0.496757,1.43537,2.60581,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,1.86405,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,1.61667,0.925919,1.61975,-0.230501,-0.234804,0.18438,1.30694,0.342286,2 +1.40156,1.71756,1.59865,1.43537,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,-0.315638,0.317994,0.867519,0.353765,1.05121,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.218097,0 +-0.102754,0.292103,-0.605141,0.556866,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.965273,1 +-0.102754,1.71756,-0.605141,0.556866,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,-1.34213,-0.696489,-1.40548,1.26422,0.007053,1.32002,2.54246,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.02754,0 +1.40156,0.292103,0.496757,1.43537,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,0.571475,0.0613546,0.624314,0.774207,2.21045,1.72799,2.28627,4.03371,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.58758,0 +-0.102754,-1.13336,-0.605141,1.43537,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,1.47693,-2.74562,1.94512,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,3.4705,-0.463197,1.77537,-0.477848,0.925919,1.61975,-0.230501,-0.234804,1.56159,1.30694,-0.52942,2 +-1.60707,-1.13336,0.496757,1.43537,1.50451,2.66566,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,0.925919,2.66715,-0.230501,-0.234804,0.18438,2.21117,0.0309622,2 +-0.102754,0.292103,1.59865,1.43537,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,0.684774,-0.338387,-0.670118,-0.393916,1.47693,1.46484,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,1.61667,0.0410982,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.280021,2 +1.40156,0.292103,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.0272,1 +-1.60707,-1.13336,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,1.95037,-1.23943,1.46484,-0.696489,-0.315638,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.52942,4 +-0.102754,0.292103,0.496757,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.342626,3 +-0.102754,1.71756,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.591345,1 +-1.60707,0.292103,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0935672,1 +-0.102754,1.71756,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,1.63517,2.63392,-0.464892,-0.338387,0.556198,-0.393916,0.571475,-1.34213,-0.696489,-0.315638,1.26422,0.867519,0.353765,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.52942,0 +1.40156,1.71756,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,0.571475,-1.34213,-0.696489,0.774207,0.317994,0.007053,0.353765,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.653609,0 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-0.333979,1.46484,-0.696489,-0.315638,1.26422,0.867519,0.353765,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.0272,0 +-1.60707,-2.55882,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,1.46484,0.624314,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.467156,4 +-0.102754,-1.13336,-0.605141,-0.321638,-0.698093,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,1.61667,0.925919,1.61975,-0.230501,-0.234804,1.56159,2.21117,0.280021,2 +-0.102754,1.71756,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.21399,1 +1.40156,1.71756,0.496757,0.556866,-0.698093,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,1.81074,2.66715,-0.230501,-0.234804,0.18438,2.21117,-0.218097,2 +-0.102754,0.292103,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.155832,1 +1.40156,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.715874,1 +-0.102754,-1.13336,0.496757,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.0313025,3 +-0.102754,-1.13336,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.58758,1 +1.40156,0.292103,0.496757,0.556866,-0.698093,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,0.569412,0.0410982,0.572351,-0.230501,-0.234804,0.18438,1.30694,-0.840744,2 +-0.102754,0.292103,-1.70704,-1.20014,-0.698093,-0.468061,3.21306,-0.452018,0.391917,0.530978,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,1.98959,3.85749,-1.19283,-0.501529,-1.58792,5 +1.40156,0.292103,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,-0.965273,1 +1.40156,0.292103,0.496757,1.43537,0.403209,-0.468061,-0.292096,-0.452018,0.391917,0.530978,2.63392,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,1.72799,1.32002,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.21399,0 +-0.102754,1.71756,0.496757,0.556866,0.403209,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,1.86405,2.21045,1.72799,1.32002,2.54246,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.96117,0 +-0.102754,0.292103,1.59865,1.43537,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,2.21117,0.964933,2 +-0.102754,0.292103,0.496757,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.965273,3 +-0.102754,0.292103,1.59865,1.43537,0.403209,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,0.925919,1.61975,-0.230501,-0.234804,1.56159,2.21117,-0.840744,2 +-1.60707,-1.13336,0.496757,1.43537,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,0.684774,-0.338387,-0.670118,-0.393916,-0.333979,1.46484,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,1.61667,0.925919,2.66715,-0.230501,-0.234804,0.18438,2.21117,0.591345,2 +-0.102754,1.71756,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,0.867519,0.353765,4.03371,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.21399,0 +1.40156,0.292103,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,-0.573215,-0.378625,-0.464892,-0.338387,3.00883,-0.393916,-1.23943,-1.34213,-0.696489,-0.315638,1.26422,0.867519,-0.612489,2.54246,-0.478317,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.27626,0 +1.40156,1.71756,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,1.72799,-0.612489,4.03371,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.0898,0 +1.40156,0.292103,0.496757,0.556866,-0.698093,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,1.86405,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,1.81074,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.280021,2 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,1.72799,1.32002,4.03371,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.342626,0 +1.40156,0.292103,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,1.46484,-0.696489,0.774207,1.26422,0.867519,2.28627,4.03371,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.155832,0 +-0.102754,0.292103,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,1.47693,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.280021,1 +-1.60707,0.292103,0.496757,0.556866,-0.698093,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,1.61667,0.925919,1.61975,-0.230501,-0.234804,0.18438,1.30694,0.404551,2 +-0.102754,0.292103,0.496757,0.556866,-0.698093,1.62109,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,1.46484,-0.696489,1.86405,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,2.66393,1.81074,2.66715,-0.230501,-0.234804,0.18438,1.30694,0.0309622,2 +-0.102754,1.71756,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,3.00883,-0.393916,-1.23943,1.46484,-0.696489,0.774207,1.26422,0.867519,-0.612489,2.54246,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.52942,0 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,-0.315638,-0.628233,0.867519,1.32002,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.27626,0 +-1.60707,1.71756,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,-0.628233,1.72799,2.28627,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.52532,0 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,3.00883,-0.393916,-1.23943,1.46484,-0.696489,1.86405,-0.628233,1.72799,2.28627,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.965273,0 +-0.102754,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,4.96564,-0.452018,1.40923,-0.573215,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,6.42976,5.90364,0.18438,-0.501529,-1.77471,5 +-0.102754,0.292103,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.342626,1 +1.40156,0.292103,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.02754,1 +-0.102754,1.71756,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,1.47693,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.0272,1 +1.40156,0.292103,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,2.63392,-0.464892,-0.338387,1.78251,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.21399,1 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,0.867519,-0.612489,2.54246,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.778479,0 +-0.102754,-1.13336,0.496757,1.43537,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,-0.333979,1.46484,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,2.66715,-0.230501,-0.234804,1.56159,1.30694,0.902668,2 +-0.102754,1.71756,1.59865,1.43537,-0.698093,2.66566,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,2.66715,-0.230501,-0.234804,0.18438,1.30694,0.155492,2 +1.40156,0.292103,0.496757,0.556866,-0.698093,1.62109,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,1.86405,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,-0.843723,1.61975,-0.230501,-0.234804,1.56159,2.21117,-0.65395,2 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,1.86405,2.21045,0.867519,1.32002,2.54246,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.0898,0 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,2.73936,2.63392,-0.464892,-0.338387,3.00883,-0.393916,-1.23943,1.46484,-0.696489,0.774207,2.21045,0.867519,2.28627,2.54246,-0.478317,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0313025,0 +-0.102754,0.292103,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.840744,1 +1.40156,0.292103,1.59865,1.43537,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,1.0272,2 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,-0.333979,-1.34213,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.902668,1 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,1.78251,-0.393916,0.571475,-2.74562,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.155832,1 +1.40156,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,0.571475,-2.74562,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.52908,1 +-1.60707,-1.13336,-1.70704,0.556866,-0.698093,-0.468061,1.46048,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-0.333979,0.0613546,0.624314,-1.40548,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.0898,4 +-1.60707,-1.13336,-1.70704,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,0.778225,0.571475,-1.34213,1.94512,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.65395,4 +-0.102754,0.292103,-1.70704,0.556866,-0.698093,-0.468061,1.46048,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-0.333979,0.0613546,0.624314,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.0272,4 +-1.60707,-1.13336,-1.70704,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,0.571475,-1.34213,1.94512,-1.40548,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.0313025,4 +-0.102754,0.292103,-1.70704,0.556866,-0.698093,-0.468061,1.46048,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,0.778225,-0.333979,0.0613546,1.94512,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,0.402705,0.280021,4 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,1.46484,1.94512,-0.315638,1.26422,0.867519,1.32002,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.21399,0 +-0.102754,1.71756,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,1.40923,2.73936,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,3.26592,-0.315638,1.26422,0.867519,1.32002,1.05121,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.965273,0 +1.40156,0.292103,0.496757,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,2.42655,1.63517,-0.378625,-0.464892,-0.338387,3.00883,-0.393916,-1.23943,1.46484,1.94512,0.774207,1.26422,0.867519,1.32002,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.52532,0 +-0.102754,1.71756,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,2.73936,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,1.94512,0.774207,1.26422,0.867519,2.28627,2.54246,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.155832,0 +-0.102754,1.71756,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,1.46484,1.94512,1.86405,1.26422,0.867519,2.28627,2.54246,0.837955,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.52942,0 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,1.46484,0.624314,0.774207,2.21045,1.72799,1.32002,4.03371,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.902668,0 +-0.102754,1.71756,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,0.624314,0.774207,2.21045,1.72799,1.32002,2.54246,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,2.14796,0 +-0.102754,0.292103,0.496757,1.43537,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,1.77537,1.61667,0.0410982,2.66715,-0.230501,-0.234804,0.18438,2.21117,-0.467156,2 +-0.102754,0.292103,0.496757,0.556866,0.403209,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,1.77537,1.61667,0.925919,1.61975,-0.230501,-0.234804,1.56159,2.21117,-0.342626,2 +1.40156,0.292103,1.59865,0.556866,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,0.61917,1.61667,0.925919,0.572351,-0.230501,-0.234804,0.18438,2.21117,1.08946,2 +-0.102754,1.71756,0.496757,1.43537,2.60581,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,1.77537,1.61667,0.0410982,1.61975,-0.230501,-0.234804,0.18438,1.30694,-0.52942,2 +-0.102754,0.292103,1.59865,0.556866,1.50451,1.62109,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,1.77537,2.66393,0.925919,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.902668,2 +1.40156,0.292103,0.496757,1.43537,2.60581,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,1.77537,1.61667,0.925919,1.61975,-0.230501,-0.234804,0.18438,1.30694,0.404551,2 +1.40156,0.292103,-0.605141,-1.20014,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.591345,3 +-0.102754,0.292103,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0313025,3 +1.40156,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.342626,3 +-0.102754,0.292103,0.496757,-0.321638,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.404551,3 +-1.60707,-1.13336,-0.605141,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-0.333979,1.46484,-0.696489,-0.315638,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.0898,4 +-0.102754,-1.13336,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,1.46484,-0.696489,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.65395,4 +-0.102754,-1.13336,1.59865,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-1.23943,0.0613546,-0.696489,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.0309622,4 +-0.102754,-1.13336,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,0.778225,-1.23943,-1.34213,-0.696489,-0.315638,-0.628233,0.007053,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.280021,4 +-1.60707,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-1.23943,0.0613546,-0.696489,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0313025,4 +-1.60707,-1.13336,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,0.0613546,-0.696489,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.02754,4 +-0.102754,-1.13336,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-1.23943,0.0613546,-0.696489,0.774207,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.902668,4 +-0.102754,0.292103,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.715874,1 +1.40156,0.292103,-1.70704,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,-0.464892,4.51846,1.78251,-0.393916,1.47693,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.342626,1 +-0.102754,1.71756,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,1.63517,-0.378625,-0.464892,4.51846,1.78251,-0.393916,0.571475,1.46484,-0.696489,1.86405,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.404551,1 +1.40156,0.292103,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,1.63517,-0.378625,-0.464892,4.51846,1.78251,-0.393916,0.571475,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.21399,1 +-0.102754,0.292103,0.496757,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,1.40923,-0.573215,2.63392,-0.464892,-0.338387,1.78251,-0.393916,-0.333979,0.0613546,0.624314,0.774207,1.26422,0.867519,1.32002,1.05121,0.837955,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.52532,0 +1.40156,0.292103,1.59865,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,0.391917,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,0.571475,-1.34213,1.94512,-0.315638,0.317994,0.007053,0.353765,1.05121,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.83664,0 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,2.63392,-0.464892,-0.338387,0.556198,-0.393916,0.571475,-1.34213,1.94512,0.774207,1.26422,0.007053,1.32002,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.715874,0 +1.40156,0.292103,1.59865,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,1.63517,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,3.26592,0.774207,1.26422,0.867519,1.32002,-0.440041,-0.478317,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.0313025,0 +-0.102754,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,1.63517,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,1.94512,0.774207,0.317994,0.867519,1.32002,-0.440041,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.0272,0 +-0.102754,0.292103,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,3.26592,0.774207,1.26422,0.007053,0.353765,-0.440041,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.52532,0 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,4.20968,3.85749,0.18438,-0.501529,-1.77471,5 +1.40156,0.292103,-1.70704,-1.20014,-0.698093,-0.468061,3.21306,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,4.20968,5.90364,1.56159,-0.501529,-1.71245,5 +-0.102754,0.292103,0.496757,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,0.774207,2.21045,1.72799,2.28627,-0.440041,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.65395,0 +1.40156,0.292103,0.496757,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,1.94512,0.774207,1.26422,0.867519,1.32002,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.52532,0 +-0.102754,0.292103,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,1.46484,-0.696489,1.86405,1.26422,0.867519,1.32002,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.902668,0 +-0.102754,-1.13336,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,1.63517,2.63392,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,0.867519,1.32002,-0.440041,2.15423,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.155832,0 +1.40156,1.71756,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,2.73936,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,1.46484,-0.696489,1.86405,2.21045,1.72799,2.28627,-0.440041,0.837955,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.52942,0 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,2.73936,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,0.867519,1.32002,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.21399,0 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,0.867519,1.32002,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.64984,0 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,2.63392,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,0.0613546,-0.696489,-0.315638,0.317994,0.867519,1.32002,1.05121,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.02754,0 +-0.102754,-1.13336,-0.605141,0.556866,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,2.09004,-0.670118,-0.393916,1.47693,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,0.925919,2.66715,-0.230501,-0.234804,0.18438,2.21117,0.902668,2 +-0.102754,0.292103,0.496757,0.556866,2.60581,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,1.46484,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,1.81074,1.61975,-0.230501,-0.234804,1.56159,1.30694,0.280021,2 +-0.102754,0.292103,0.496757,0.556866,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,2.09004,-0.670118,-0.393916,1.47693,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,0.925919,2.66715,-0.230501,-0.234804,0.18438,2.21117,1.64984,2 +-0.102754,0.292103,0.496757,0.556866,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,2.09004,-0.670118,-0.393916,0.571475,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,1.81074,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.0309622,2 +-0.102754,-1.13336,0.496757,0.556866,-0.698093,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,2.09004,-0.670118,-0.393916,1.47693,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,1.81074,1.61975,-0.230501,-0.234804,1.56159,1.30694,-0.52942,2 +1.40156,-1.13336,0.496757,1.43537,-0.698093,2.66566,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,1.83444,2.09004,-0.670118,-0.393916,0.571475,1.46484,0.624314,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,2.66393,0.925919,2.66715,-0.230501,-0.234804,0.18438,1.30694,0.715874,2 +-0.102754,-1.13336,0.496757,0.556866,-0.698093,1.62109,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,0.684774,2.09004,-0.670118,-0.393916,0.571475,1.46484,0.624314,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,0.925919,1.61975,-0.230501,-0.234804,0.18438,1.30694,0.902668,2 +-0.102754,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.0313025,3 +1.40156,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,-0.393916,1.47693,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.65395,3 +-1.60707,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,0.571475,0.0613546,1.94512,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.52532,3 +-0.102754,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.840744,3 +-1.60707,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,1.94512,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0313025,3 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,1.94512,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.0309622,3 +-0.102754,-1.13336,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-0.333979,1.46484,1.94512,0.774207,0.317994,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-2.21057,4 +-1.60707,-1.13336,-0.605141,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,0.571475,1.46484,0.624314,0.774207,1.26422,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-2.21057,4 +-1.60707,-1.13336,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,0.571475,1.46484,1.94512,-0.315638,0.317994,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-2.21057,4 +-1.60707,-1.13336,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-0.333979,1.46484,0.624314,-0.315638,-0.628233,0.867519,-0.612489,1.05121,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-2.21057,4 +-0.102754,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,1.40923,-0.573215,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,1.98959,3.85749,0.18438,-0.501529,-1.58792,5 +1.40156,0.292103,-1.70704,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,0.391917,-0.573215,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,0.624314,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,1.98959,3.85749,0.18438,-0.501529,-1.46339,5 +-0.102754,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,-1.34213,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,1.98959,3.85749,0.18438,-0.501529,-1.71245,5 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,0.624314,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0313025,3 +-0.102754,0.292103,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.64984,3 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.778139,3 +1.40156,1.71756,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,0.624314,1.86405,2.21045,1.72799,1.32002,1.05121,-0.478317,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.342626,0 +-0.102754,0.292103,1.59865,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,1.63517,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,-0.696489,1.86405,2.21045,1.72799,1.32002,1.05121,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.33852,0 +-1.60707,0.292103,0.496757,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,1.40923,1.63517,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,1.72799,2.28627,2.54246,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.64984,0 +-0.102754,0.292103,1.59865,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,1.72799,1.32002,1.05121,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.0309622,0 +1.40156,0.292103,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,0.530978,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,1.86405,1.26422,1.72799,1.32002,2.54246,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-1.0898,0 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.65395,1 +1.40156,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,2.63392,-0.464892,-0.338387,0.556198,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-1.21433,1 +-0.102754,0.292103,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.902668,3 +-1.60707,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.21399,3 +-0.102754,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.52942,3 +1.40156,1.71756,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,0.624314,0.774207,1.26422,1.72799,1.32002,1.05121,-0.478317,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.21399,0 +-0.102754,1.71756,1.59865,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,-0.696489,0.774207,1.26422,0.867519,2.28627,-0.440041,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.840744,0 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,2.14796,1 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.840744,1 +-0.102754,1.71756,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.591345,1 +-0.102754,-1.13336,0.496757,-0.321638,-0.698093,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,1.56159,2.21117,0.280021,2 +-0.102754,0.292103,1.59865,-0.321638,-0.698093,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,2.66393,0.925919,2.66715,-0.230501,-0.234804,1.56159,2.21117,-0.467156,2 +1.40156,0.292103,0.496757,-0.321638,-0.698093,1.62109,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,0.0410982,1.61975,-0.230501,-0.234804,1.56159,2.21117,0.0309622,2 +-0.102754,0.292103,1.59865,0.556866,0.403209,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,0.925919,1.61975,-0.230501,-0.234804,1.56159,2.21117,-0.52942,2 +-0.102754,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,0.391917,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,0.624314,0.774207,2.21045,1.72799,1.32002,-0.440041,2.15423,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.404551,0 +-0.102754,1.71756,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,2.42655,1.63517,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,1.46484,-0.696489,0.774207,1.26422,1.72799,2.28627,-0.440041,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.52942,0 +-0.102754,0.292103,1.59865,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,0.624314,1.86405,2.21045,0.867519,1.32002,2.54246,0.837955,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.902668,0 +-0.102754,-1.13336,1.59865,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,-0.696489,0.774207,1.26422,1.72799,2.28627,-0.440041,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0935672,0 +-0.102754,-1.13336,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-0.333979,0.0613546,0.624314,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-1.71245,4 +-0.102754,-1.13336,-0.605141,1.43537,-0.698093,-0.468061,1.46048,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,-1.23943,0.0613546,-0.696489,-1.40548,-0.628233,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.02754,4 +-1.60707,-1.13336,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,3.12251,-1.23943,1.46484,1.94512,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,0.0309622,4 +-0.102754,-1.13336,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,2.14796,4 +-0.102754,0.292103,-0.605141,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-1.23943,0.0613546,0.624314,-1.40548,-0.628233,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.0272,4 +-0.102754,0.292103,1.59865,1.43537,0.403209,1.62109,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,-0.65395,2 +1.40156,0.292103,0.496757,0.556866,-0.698093,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,1.61667,-0.843723,2.66715,-0.230501,-0.234804,1.56159,2.21117,0.0309622,2 +-0.102754,0.292103,0.496757,1.43537,0.403209,1.62109,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,0.714096,-0.537035,1.61667,-0.843723,2.66715,-0.230501,-0.234804,-1.19283,1.30694,0.902668,2 +-0.102754,-1.13336,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0935672,3 +1.40156,-1.13336,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,2.73936,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,0.867519,1.32002,-0.440041,3.4705,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.15207,0 +-0.102754,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,1.40923,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,0.624314,-0.315638,2.21045,0.867519,1.32002,-0.440041,2.15423,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.716214,0 +-0.102754,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.840744,3 +-0.102754,-1.13336,0.496757,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.21399,3 +-0.102754,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.46339,3 +-0.102754,1.71756,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,1.72799,1.32002,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.466815,0 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,-0.696489,0.774207,1.26422,1.72799,1.32002,-0.440041,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.902668,0 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,1.72799,1.32002,-0.440041,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.0309622,0 +-0.102754,0.292103,1.59865,1.43537,1.50451,2.66566,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,-0.843723,2.66715,-0.230501,-0.234804,0.18438,2.21117,-0.591685,2 +1.40156,-1.13336,0.496757,1.43537,1.50451,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,1.56159,2.21117,-1.21433,2 +-0.102754,0.292103,0.496757,1.43537,1.50451,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,-0.218097,2 +-0.102754,-1.13336,0.496757,1.43537,2.60581,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,2.9841,-0.338387,-0.670118,-0.393916,1.47693,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.964933,2 +-0.102754,0.292103,1.59865,0.556866,1.50451,2.66566,-0.292096,0.746812,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,1.46484,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,2.66393,-0.843723,2.66715,-0.230501,-0.234804,1.56159,1.30694,1.27626,2 +-0.102754,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,0.624314,0.774207,2.21045,0.867519,2.28627,1.05121,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.715874,0 +-0.102754,0.292103,1.59865,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,0.530978,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,1.94512,1.86405,2.21045,1.72799,1.32002,-0.440041,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.964933,0 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,-0.696489,1.86405,1.26422,1.72799,2.28627,-0.440041,2.15423,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.40079,0 +-0.102754,0.292103,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,1.94512,0.774207,1.26422,1.72799,1.32002,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.52942,0 +-0.102754,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.218097,3 +-0.102754,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.52942,3 +-0.102754,1.71756,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,0.391917,-0.573215,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,1.94512,0.774207,1.26422,0.867519,1.32002,2.54246,2.15423,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.64984,0 +-0.102754,0.292103,1.59865,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,2.42655,-0.573215,-0.378625,-0.464892,-0.338387,1.78251,-0.393916,-1.23943,-1.34213,0.624314,0.774207,1.26422,0.867519,2.28627,-0.440041,2.15423,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.08946,0 +1.40156,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.653609,3 +-0.102754,-1.13336,0.496757,1.43537,1.50451,1.62109,-0.292096,3.14447,-0.625399,-0.573215,-0.378625,1.83444,2.09004,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,0.0410982,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.093227,2 +-1.60707,-1.13336,0.496757,1.43537,1.50451,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,0.774207,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,1.89139,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.840404,2 +-0.102754,-1.13336,-1.70704,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,0.571475,-1.34213,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.0898,3 +-0.102754,0.292103,0.496757,0.556866,1.50451,-0.468061,-0.292096,-0.452018,-0.625399,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,1.72799,2.28627,2.54246,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.653609,0 +-0.102754,-1.13336,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,0.774207,2.21045,0.867519,2.28627,-0.440041,-0.478317,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,-0.155832,0 +-1.60707,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.840744,3 +-0.102754,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,1.77537,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.52908,3 +-1.60707,-2.55882,-1.70704,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,3.12251,0.571475,1.46484,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,0.0309622,4 +-0.102754,-2.55882,-0.605141,1.43537,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,0.571475,1.46484,-0.696489,-0.315638,-0.628233,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,1.71211,4 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,-0.696489,1.86405,1.26422,1.72799,1.32002,-0.440041,0.837955,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.27626,0 +-0.102754,1.71756,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,1.72799,1.32002,1.05121,-0.478317,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.52532,0 +-0.102754,-1.13336,-1.70704,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,1.95037,0.571475,1.46484,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.404551,4 +1.40156,-1.13336,-1.70704,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,0.778225,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.218097,4 +-0.102754,-1.13336,0.496757,0.556866,1.50451,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,2.09004,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,1.61667,-0.843723,1.61975,-0.230501,-0.234804,0.18438,2.21117,0.964933,2 +-0.102754,0.292103,1.59865,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,0.867519,2.28627,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.155832,0 +-1.60707,-1.13336,-1.70704,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-0.333979,0.0613546,-0.696489,-0.315638,-0.628233,1.72799,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,2.02343,4 +-0.102754,-2.55882,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,1.95037,0.571475,-1.34213,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.902668,4 +-0.102754,0.292103,0.496757,-1.20014,-0.698093,-0.468061,1.46048,-0.452018,0.391917,-0.573215,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,0.624314,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,6.42976,3.85749,0.18438,-0.501529,-1.65019,5 +-0.102754,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,3.21306,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,4.20968,5.90364,-1.19283,-0.501529,-1.21433,5 +-0.102754,0.292103,0.496757,-0.321638,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.0313025,3 +-0.102754,0.292103,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,-0.393916,-1.23943,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.280021,3 +-0.102754,0.292103,-1.70704,-0.321638,-0.698093,-0.468061,3.21306,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,4.20968,3.85749,0.18438,-0.501529,-0.840744,5 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,4.96564,-0.452018,0.391917,-0.573215,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-0.333979,1.46484,0.624314,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,6.42976,3.85749,0.18438,-0.501529,-1.58792,5 +-0.102754,0.292103,-0.605141,-1.20014,-0.698093,-0.468061,3.21306,-0.452018,1.40923,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-0.315638,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,4.20968,3.85749,0.18438,-0.501529,-1.77471,5 +-1.60707,0.292103,0.496757,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,0.624314,1.86405,2.21045,1.72799,1.32002,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.65395,0 +-0.102754,0.292103,0.496757,1.43537,1.50451,-0.468061,-0.292096,-0.452018,1.40923,2.73936,2.63392,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,1.94512,0.774207,1.26422,0.867519,1.32002,-0.440041,2.15423,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-1.65019,0 +1.40156,0.292103,0.496757,1.43537,1.50451,-0.468061,-0.292096,-0.452018,1.40923,2.73936,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,1.46484,-0.696489,0.774207,1.26422,1.72799,1.32002,-0.440041,3.4705,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,1.21399,0 +-1.60707,-1.13336,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.591345,4 +-0.102754,-2.55882,-0.605141,0.556866,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,3.12251,-0.333979,0.0613546,-0.696489,-1.40548,-0.628233,0.867519,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,1.27626,4 +-0.102754,1.71756,0.496757,1.43537,1.50451,-0.468061,-0.292096,-0.452018,2.42655,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,1.46484,1.94512,1.86405,1.26422,0.867519,1.32002,-0.440041,3.4705,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,0.0309622,0 +-0.102754,0.292103,0.496757,0.556866,1.50451,-0.468061,-0.292096,-0.452018,2.42655,-0.573215,2.63392,-0.464892,-0.338387,-0.670118,-0.393916,-1.23943,0.0613546,1.94512,0.774207,1.26422,1.72799,2.28627,-0.440041,2.15423,-0.463197,2.93158,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,-2.57003,-0.501529,2.45929,0 +-0.102754,0.292103,0.496757,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,0.530978,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,0.867519,2.28627,2.54246,0.837955,-0.463197,0.61917,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.591345,0 +-0.102754,1.71756,0.496757,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,1.40923,1.63517,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,1.26422,0.867519,1.32002,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.716214,0 +-0.102754,0.292103,-1.70704,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.925919,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,0.280021,1 +-0.102754,0.292103,-0.605141,-0.321638,-0.698093,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,2.09004,0.556198,-0.393916,0.571475,0.0613546,0.624314,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,1.81074,-0.475051,-0.230501,-0.234804,-1.19283,-0.501529,-0.65395,1 +-0.102754,-1.13336,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-0.333979,-1.34213,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,-0.537035,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,-0.65395,3 +1.40156,0.292103,-0.605141,-1.20014,0.403209,-0.468061,-0.292096,-0.452018,-0.625399,-0.573215,-0.378625,-0.464892,-0.338387,-0.670118,-0.393916,0.571475,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,-0.463197,0.61917,-0.477848,0.0410982,-0.475051,-0.230501,-0.234804,0.18438,-0.501529,0.0309622,3 +1.40156,0.292103,0.496757,0.556866,2.60581,1.62109,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,4.51846,-0.670118,-0.393916,1.47693,1.46484,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,2.66393,-0.843723,2.66715,-0.230501,-0.234804,0.18438,2.21117,-0.467156,2 +-0.102754,-1.13336,1.59865,-0.321638,1.50451,2.66566,-0.292096,1.94564,-0.625399,-0.573215,-0.378625,1.83444,-0.338387,-0.670118,-0.393916,1.47693,0.0613546,-0.696489,-1.40548,-0.628233,-0.853413,-0.612489,-0.440041,-0.478317,3.06868,-0.537035,1.61667,-0.843723,0.572351,-0.230501,-0.234804,0.18438,2.21117,0.902668,2 +1.40156,0.292103,0.496757,-1.20014,-0.698093,-0.468061,-0.292096,-0.452018,2.42655,2.73936,-0.378625,-0.464892,-0.338387,0.556198,-0.393916,-1.23943,0.0613546,-0.696489,0.774207,2.21045,0.867519,2.28627,-0.440041,2.15423,-0.463197,1.77537,-0.477848,-0.843723,-0.475051,-0.230501,-0.234804,1.56159,-0.501529,-0.0313025,0 diff --git a/data/echocardiogram.arff b/data/echocardiogram.arff new file mode 100755 index 0000000..1d3fe11 --- /dev/null +++ b/data/echocardiogram.arff @@ -0,0 +1,144 @@ +@relation echocardiogram +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'clase' {0,1} +@data +0.7254,-0.471791,0.475037,-0.235488,0.1346,-0.0198545,-0.7887,1.05391,-0.62609,-0.471791,0 +0.793939,-0.471791,1.51437,-0.614347,-0.201157,-0.0198545,0.713663,-0.747281,-0.62609,-0.471791,0 +-0.371225,-0.471791,0.475037,-0.86692,-0.657786,-0.0198545,-0.7887,1.05391,-0.62609,-0.471791,0 +-0.0285295,-0.471791,0.41441,0.1512,0.136615,0.349597,0.177105,0.127083,-0.62609,-0.471791,0 +-0.234147,-0.471791,-0.391071,1.40623,0.906841,0.719049,1.89409,-0.821602,-0.62609,-0.471791,1 +0.519783,-0.471791,0.475037,-0.740634,-0.060139,-0.389306,-0.7887,0.428739,-0.62609,-0.471791,0 +0.108549,-0.471791,0.215205,2.54281,0.691957,1.55031,1.08925,0.428739,-0.62609,-0.471791,0 +-0.0285295,-0.471791,1.08131,-0.361775,0.571084,-0.0198545,-0.7887,1.05391,-0.62609,-0.471791,0 +-0.988076,-0.471791,1.16792,-1.37207,0.463642,0.349597,-0.488227,1.06702,-0.62609,-0.471791,0 +-0.439764,-0.471791,-0.564292,0.269657,0.0607336,0.257234,-0.380915,0.747882,-0.62609,-0.471791,0 +1.13663,-0.471791,-0.650903,0.648516,-0.11386,0.719049,0.928287,-0.196432,-0.62609,2.1034,1 +0.108549,2.1034,2.12064,-0.235488,-0.536914,0.349597,-0.488227,1.06702,-0.62609,-0.471791,0 +0.862478,-0.471791,1.08131,-0.614347,-0.268308,-0.0198545,-0.7887,1.05391,-0.62609,-0.471791,0 +-0.0285295,-0.471791,-0.477682,-0.109202,-0.449617,-0.0198545,-0.7887,1.05391,-0.62609,-0.471791,0 +0.108549,-0.471791,-0.737514,1.53252,0.940417,-0.450265,2.06579,-1.7528,-0.62609,2.1034,1 +-0.371225,2.1034,0.388426,0.151327,-0.0735692,-0.0198545,-0.7887,1.05391,-0.62609,-0.471791,0 +0.588322,2.1034,0.475037,0.0170843,0.168176,0.719049,0.584889,0.109596,-0.62609,2.1034,1 +0.144806,2.1034,-1.17057,1.15366,0.537509,1.8274,1.35753,0.428739,-0.62609,2.1034,1 +0.382705,-0.471791,-0.997346,0.774802,0.953176,-1.12821,-0.0740041,-1.4424,-0.62609,-0.471791,1 +0.382705,2.1034,0.128594,0.52223,0.671811,2.38158,1.89409,0.428739,-0.62609,2.1034,1 +0.588322,-0.471791,-0.477682,0.143371,0.665096,0.996137,0.552696,0.428739,-0.62609,2.1034,1 +1.68495,2.1034,-0.217849,1.02738,0.712102,-0.0512579,0.0268689,-0.213919,-0.62609,2.1034,1 +0.862478,-0.471791,0.215205,0.235939,1.11501,-1.22057,0.284417,-1.74406,-0.62609,2.1034,1 +0.7254,-0.471791,-0.30446,-1.37207,0.168176,-1.12821,-0.7887,-0.825974,-0.62609,2.1034,1 +0.245627,-0.471791,-0.131238,-0.626976,-0.617496,-0.758757,-0.552614,-0.519946,0.67578,-0.471791,0 +-0.439764,-0.471791,0.82148,-0.488061,-0.369035,-0.758757,0.642838,-1.43803,0.67578,-0.471791,0 +-1.74201,-0.471791,0.82148,-0.740634,-0.154151,-0.0198545,-0.7887,1.05391,0.67578,-0.471791,0 +-0.371225,-0.471791,-1.77684,-0.488061,-2.95436,-2.23656,-0.7887,5.42573,0.67578,-0.471791,0 +0.999556,-0.471791,-1.77684,-1.37207,-2.95436,-2.60601,-0.7887,-3.31791,0.67578,-0.471791,1 +-0.371225,2.1034,0.0419831,-0.841663,-0.160866,-0.0198545,0.413191,-0.519946,0.67578,-0.471791,0 +0.314166,-0.471791,-0.477682,-1.37207,0.436781,-0.758757,-0.7887,-0.213919,0.67578,-0.471791,1 +-0.576842,2.1034,-0.30446,0.80006,0.61809,-0.0198545,-0.42384,0.428739,0.67578,-0.471791,1 +-4.14087,-0.471791,-1.77684,0.143371,-2.95436,-1.49766,3.50377,-2.70586,0.67578,-0.471791,1 +-0.919537,-0.471791,1.68759,-0.725479,-0.872671,-0.389306,-0.7887,0.428739,0.67578,-0.471791,0 +0.177088,-0.471791,-1.77684,-0.109202,-2.95436,-0.0198545,-0.42384,0.428739,0.67578,-0.471791,0 +0.0400095,-0.471791,3.50641,0.282286,-0.221302,-0.20458,0.552696,-0.821602,0.67578,-0.471791,0 +0.177088,2.1034,-1.77684,-1.37207,0.611375,-1.68239,-0.7887,-1.75717,0.67578,-0.471791,0 +0.314166,-0.471791,-1.25718,1.60829,-2.95436,1.36559,1.67947,-0.196432,0.67578,2.1034,1 +0.519783,-0.471791,2.64031,-1.37207,-0.34889,0.164871,0.649276,-0.519946,0.67578,-0.471791,0 +1.34225,-0.471791,1.7742,-0.690119,-0.0265633,-2.60601,-0.7887,-3.31791,0.67578,-0.471791,0 +-0.439764,-0.471791,1.25453,-0.197602,-0.516769,-0.574032,-0.312236,-0.519946,0.67578,-0.471791,0 +0.656861,2.1034,0.561648,-0.77852,0.0607336,1.45795,1.35753,0.11834,0.67578,-0.471791,0 +1.27371,-0.471791,-0.477682,0.837946,-0.0869995,-0.20458,-0.14483,-0.196432,0.67578,-0.471791,0 +-0.302686,-0.471791,1.08131,-1.37207,-0.543629,-0.0198545,-0.7887,1.05391,0.67578,-0.471791,0 +0.451244,2.1034,2.03403,-0.235488,-0.295169,0.626686,0.177105,0.428739,0.67578,-0.471791,1 +0.245627,-0.471791,-0.997346,-1.37207,-2.95436,-0.389306,1.35753,-1.44677,0.67578,-0.471791,0 +1.41079,-0.471791,-0.737514,-1.37207,-2.95436,-0.943483,-0.252141,-0.825974,0.67578,-0.471791,1 +-0.0970686,-0.471791,-1.51701,1.31783,1.26946,0.534323,-0.123367,0.739138,0.67578,-0.471791,1 +0.177088,2.1034,-1.77684,-1.37207,-2.95436,1.64268,2.0014,-0.196432,0.67578,2.1034,1 +-0.302686,2.1034,-1.4304,0.395943,0.403206,-2.60601,-2.93493,-3.31791,0.67578,2.1034,1 +0.0400095,2.1034,0.561648,-1.37207,-2.95436,-0.943483,0.284417,-1.44677,0.67578,2.1034,1 +-0.234147,-0.471791,0.301815,0.496972,0.577799,0.719049,0.0268689,0.232007,0.67578,-0.471791,0 +-0.165608,-0.471791,0.82148,-0.184974,-0.61078,-0.0198545,-0.7887,1.05391,0.67578,-0.471791,0 +-0.0285295,-0.471791,-1.69023,1.73458,0.83969,4.59829,3.50377,0.739138,0.67578,2.1034,1 +0.382705,-0.471791,0.734869,0.598002,1.17545,-0.0198545,-0.7887,1.05391,0.67578,-0.471791,0 +0.177088,-0.471791,-0.477682,0.269657,0.114455,-0.20458,-0.617001,0.428739,0.67578,-0.471791,0 +-0.234147,-0.471791,-0.650903,0.976861,-0.0198481,-0.328346,0.00540654,-0.511203,0.67578,-0.471791,0 +0.656861,-0.471791,-0.910736,-0.134459,0.60466,1.64268,2.0014,-0.196432,0.67578,-0.471791,0 +0.519783,-0.471791,0.734869,-1.37207,0.00701245,-0.0198545,-0.430279,0.428739,0.67578,-0.471791,0 +1.27371,-0.471791,-0.30446,0.130742,0.503933,-0.666395,-0.681388,-0.196432,0.67578,-0.471791,0 +0.862478,-0.471791,-0.737514,-1.37207,1.5985,0.473363,0.0483312,0.428739,0.67578,-0.471791,0 +0.793939,-0.471791,-0.157222,0.143371,0.416636,-0.20458,-0.402378,0.113968,0.67578,-0.471791,0 +-0.0970686,-0.471791,-0.650903,0.699031,0.376345,0.687645,0.00540654,0.739138,0.67578,-0.471791,1 +0.451244,2.1034,-0.824125,-0.0713161,0.188321,-0.574032,-0.7887,0.113968,0.67578,-0.471791,0 +-0.645381,-0.471791,-0.391071,0.294914,0.577799,-0.574032,-0.7887,0.11834,0.67578,-0.471791,0 +-0.71392,-0.471791,-0.564292,0.0675989,0.235327,-0.758757,2.43065,-2.0938,0.67578,-0.471791,1 +0.656861,2.1034,0.388426,-0.147088,0.785969,-1.59002,-0.574076,-1.75717,0.67578,-0.471791,0 +0.314166,-0.471791,1.34115,-0.260746,0.926987,-0.389306,-0.7887,0.428739,0.67578,-0.471791,0 +1.20517,-0.471791,-1.25718,0.661145,0.819544,-0.080814,-0.00103216,-0.196432,0.67578,-0.471791,0 +1.75349,-0.471791,0.171899,0.168628,0.537509,1.8274,1.74386,0.11834,0.67578,2.1034,1 +-0.302686,-0.471791,0.388426,0.0170843,0.215182,-0.574032,-0.7887,0.113968,0.67578,-0.471791,0 +-0.0285295,-0.471791,-0.737514,-0.0839448,-0.060139,0.164871,0.649276,-0.519946,0.67578,-0.471791,0 +-0.0970686,-0.471791,0.734869,-0.424918,0.235327,-0.20458,-0.617001,0.428739,0.67578,-0.471791,0 +-0.71392,-0.471791,-1.25718,2.42915,1.04114,1.36559,2.19456,-0.506831,0.67578,-0.471791,0 +-0.439764,-0.471791,0.102611,0.88846,0.0943093,0.44196,-0.402378,1.05391,0.67578,-0.471791,0 +0.519783,-0.471791,0.128594,1.36835,0.302479,0.164871,-0.466765,0.739138,0.67578,-0.471791,1 +-4.14087,-0.471791,0.475037,1.07789,0.248758,1.27323,1.57216,-0.196432,0.67578,2.1034,1 +0.245627,-0.471791,-0.0446277,-0.475432,0.12117,-0.0198545,-0.7887,1.05391,0.67578,-0.471791,0 +0.177088,-0.471791,-0.0446277,-0.740634,0.537509,-1.12821,-0.7887,-0.825974,0.67578,-0.471791,0 +0.314166,-0.471791,-1.25718,1.60829,1.57164,-0.389306,-0.595539,0.113968,0.67578,-0.471791,0 +-0.439764,2.1034,-1.17057,0.749545,-0.160866,0.719049,0.284417,0.428739,0.67578,-0.471791,0 +0.108549,-0.471791,0.388426,-0.614347,0.0540184,-0.574032,-0.7887,0.11834,0.67578,-0.471791,0 +1.20517,-0.471791,-1.34379,-0.109202,0.0271579,0.164871,-0.0160558,0.11834,0.67578,2.1034,1 +0.0400095,-0.471791,-1.77684,-1.37207,-2.95436,2.56631,2.06579,0.428739,0.67578,2.1034,1 +-0.576842,-0.471791,-0.564292,1.78509,1.21574,-0.481669,-0.466765,-0.196432,0.67578,-0.471791,0 +0.862478,-0.471791,-1.34379,0.496972,-0.174296,0.257234,0.0912559,0.11834,0.67578,-0.471791,1 +0.656861,2.1034,-0.391071,1.05263,0.571084,-0.574032,-0.7887,0.11834,0.67578,-0.471791,1 +-0.371225,-0.471791,0.648259,-0.677491,0.0540184,1.45795,0.992674,0.428739,0.67578,-0.471791,0 +-0.0285295,-0.471791,-0.217849,-0.273374,0.10774,-0.112217,-0.70285,0.739138,0.67578,-0.471791,1 +0.451244,-0.471791,-0.434376,0.0549702,0.510648,-0.20458,-0.7887,0.739138,0.67578,-0.471791,1 +0.245627,-0.471791,0.82148,-0.538576,-0.0265633,-0.0198545,-0.209217,0.11834,0.67578,-0.471791,0 +-0.0970686,-0.471791,1.20257,-0.22286,-0.241448,-0.943483,-0.7887,-0.506831,0.67578,-0.471791,0 +-0.988076,-0.471791,0.57897,0.711659,0.644951,-0.26554,-0.659926,0.428739,0.67578,-0.471791,0 +0.0400095,-0.471791,-0.0446277,-0.184974,-0.254878,0.288638,0.112718,0.11834,0.67578,2.1034,1 +0.177088,-0.471791,0.388426,-0.664862,-0.355605,0.719049,0.284417,0.428739,0.67578,-0.471791,0 +0.931017,-0.471791,-0.0446277,-0.765891,0.10774,-0.296943,-0.70285,0.428739,0.67578,-0.471791,1 +-0.0970686,-0.471791,2.5537,-0.22286,-0.657786,0.719049,0.284417,0.428739,0.67578,-0.471791,0 +0.314166,2.1034,-0.391071,-0.298632,0.718817,0.349597,0.177105,0.11834,0.67578,2.1034,1 +-0.165608,-0.471791,-0.30446,2.27761,1.56493,2.21163,1.379,0.739138,0.67578,2.1034,1 +-0.508303,-0.471791,-0.30446,-1.37207,0.195036,-0.758757,-0.7887,-0.213919,0.67578,-0.471791,0 +0.382705,-0.471791,-0.0446277,-1.37207,-0.11386,-0.389306,-0.7887,0.428739,0.67578,-0.471791,0 +0.656861,-0.471791,1.51437,-1.37207,0.101024,-0.758757,-0.7887,-0.196432,0.67578,-0.471791,0 +0.108549,-0.471791,0.457715,0.118113,0.315909,-0.574032,-0.7887,0.11834,0.67578,-0.471791,0 +0.177088,-0.471791,0.82148,-0.50069,-0.590635,0.748605,0.305879,0.428739,0.67578,2.1034,1 +-0.0970686,-0.471791,-0.30446,0.433829,0.732248,-0.112217,0.284417,-0.506831,0.67578,-0.471791,0 +-0.234147,-0.471791,0.197883,-0.147088,-0.0735692,-0.574032,-0.7887,0.11834,0.67578,-0.471791,0 +-0.234147,-0.471791,-1.46504,-0.488061,-0.187727,-0.112217,-0.295066,0.11834,0.67578,-0.471791,0 +1.20517,-0.471791,0.215205,3.67939,1.22917,-0.0198545,0.0697935,-0.196432,0.67578,2.1034,1 +0.108549,-0.471791,0.475037,-0.412289,0.0137276,-0.0198545,-0.7887,1.05391,0.67578,2.1034,1 +0.108549,-0.471791,0.128594,0.155999,-0.322029,-0.574032,-0.7887,0.113968,-1.92796,-0.471791,0 +0.382705,-0.471791,0.301815,0.345429,-0.013133,1.45795,1.78678,-0.196432,-1.92796,-0.471791,0 +0.0400095,-0.471791,0.561648,-0.235488,-0.228017,-0.389306,-0.7887,0.428739,-1.92796,-0.471791,0 +-0.0970686,2.1034,1.68759,-0.210231,0.644951,-0.389306,-0.7887,0.428739,-1.92796,-0.471791,0 +-0.234147,-0.471791,0.734869,-0.184974,0.248758,-0.943483,-0.7887,-0.519946,-1.92796,-0.471791,0 +0.108549,2.1034,-0.131238,2.27761,1.49777,0.996137,1.25022,-0.196432,-1.92796,-0.471791,0 +-4.14087,-0.471791,0.475037,-1.37207,-0.013133,-0.943483,-0.7887,-0.519946,-1.92796,-0.471791,0 +-0.439764,-0.471791,1.94742,-0.197602,0.262188,-0.758757,-0.7887,-0.196432,-1.92796,-0.471791,0 +0.108549,2.1034,0.301815,2.23972,0.980708,1.36559,1.25022,0.11834,-1.92796,-0.471791,1 +-4.14087,-0.471791,0.215205,1.04,0.732248,-0.389306,-0.359453,-0.213919,-1.92796,-0.471791,0 +0.245627,-0.471791,-0.477682,-0.538576,-0.154151,-0.0198545,-0.209217,0.11834,-1.92796,-0.471791,0 +-0.234147,2.1034,-0.737514,-1.37207,-1.39645,0.44196,0.0161377,0.428739,-1.92796,-0.471791,0 +0.0400095,-0.471791,-0.217849,-1.37207,0.0540184,-0.574032,0.0161377,-0.825974,-1.92796,-0.471791,0 +0.0400095,2.1034,-0.131238,0.294914,0.430066,0.903774,0.77805,0.11834,-1.92796,-0.471791,0 +-0.850998,-0.471791,-0.477682,0.143371,-0.496623,-0.758757,-0.7887,-0.196432,-1.92796,-0.471791,0 +-4.14087,-0.471791,-0.997346,-0.513318,0.376345,-0.20458,-0.617001,0.428739,-1.92796,-0.471791,0 +0.0400095,-0.471791,-0.564292,1.84824,0.510648,-0.0198545,-0.209217,0.11834,-1.92796,-0.471791,0 +0.245627,-0.471791,0.301815,0.257028,0.215182,-0.389306,-0.7887,0.428739,-1.92796,-0.471791,1 +0.245627,-0.471791,0.648259,-0.690119,0.718817,-0.574032,-0.574076,-0.196432,-1.92796,-0.471791,0 +0.588322,-0.471791,-0.0446277,-0.488061,0.436781,0.0725084,-0.337991,0.428739,-1.92796,-0.471791,0 +-0.234147,-0.471791,-0.564292,0.661145,-0.0265633,0.164871,-0.0160558,0.11834,-1.92796,-0.471791,0 +0.108549,-0.471791,-0.477682,-1.37207,0.0741639,0.257234,0.0891096,0.11834,-1.92796,-0.471791,0 diff --git a/data/fertility.arff b/data/fertility.arff new file mode 100755 index 0000000..fde4253 --- /dev/null +++ b/data/fertility.arff @@ -0,0 +1,112 @@ +@relation fertility +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'clase' {0,1} +@data +-0.315165,0.173098,-2.57398,1.1225,0.975283,-0.327162,-0.191044,0.432779,2.53869,0 +-0.315165,2.23379,0.384618,-0.881962,0.975283,-0.327162,-0.191044,1.66929,-0.519327,1 +-0.315165,-1.39303,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,0.500013,0 +-0.315165,0.667664,-2.57398,1.1225,0.975283,-0.327162,1.00298,-0.803732,-0.14378,0 +-0.315165,0.00824276,0.384618,1.1225,-1.01509,-0.327162,-0.191044,-0.803732,0.500013,1 +-0.315165,0.00824276,0.384618,-0.881962,0.975283,-0.327162,-0.191044,0.432779,0.500013,0 +-0.315165,0.00824276,-2.57398,-0.881962,-1.01509,-2.04907,-0.191044,-0.803732,0.178116,0 +-0.315165,2.72836,0.384618,1.1225,0.975283,-0.327162,-1.38507,-0.803732,-0.14378,0 +1.35417,-0.23904,-2.57398,-0.881962,0.975283,-0.327162,-0.191044,-0.803732,-0.841223,0 +1.35417,-0.486323,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,-0.841223,0 +1.35417,0.00824276,0.384618,1.1225,-1.01509,-2.04907,-0.191044,0.432779,-0.519327,0 +1.35417,0.914947,0.384618,1.1225,0.975283,-0.327162,-1.38507,0.432779,-1.48502,0 +1.35417,0.667664,0.384618,1.1225,0.975283,-0.327162,-0.191044,1.66929,-0.841223,0 +1.35417,1.16223,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,-0.14378,0 +1.35417,2.23379,0.384618,1.1225,0.975283,-0.327162,-3.77311,-0.803732,-0.841223,0 +1.35417,1.16223,0.384618,1.1225,-1.01509,-0.327162,1.00298,1.66929,0.500013,0 +1.35417,-0.23904,0.384618,-0.881962,0.975283,-0.327162,1.00298,-0.803732,-0.14378,0 +1.35417,0.173098,0.384618,-0.881962,0.975283,-0.327162,-0.191044,-0.803732,-0.841223,1 +1.35417,0.667664,0.384618,1.1225,0.975283,-0.327162,1.00298,1.66929,-0.841223,0 +1.35417,0.00824276,0.384618,-0.881962,-1.01509,-0.327162,-0.191044,1.66929,-0.14378,1 +1.35417,0.00824276,-2.57398,-0.881962,0.975283,-0.327162,-0.191044,-0.803732,-0.841223,0 +1.35417,0.667664,0.384618,-0.881962,-1.01509,-0.327162,-1.38507,0.432779,-0.841223,0 +1.35417,0.00824276,0.384618,1.1225,-1.01509,-0.327162,-0.191044,-0.803732,-0.841223,0 +1.35417,0.173098,0.384618,-0.881962,0.975283,-2.04907,1.00298,-0.803732,0.178116,1 +1.35417,-0.898461,0.384618,-0.881962,0.975283,-0.327162,1.00298,-0.803732,1.19746,0 +1.35417,0.00824276,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,-0.841223,0 +1.35417,0.00824276,0.384618,-0.881962,0.975283,-0.327162,-1.38507,-0.803732,-0.14378,1 +1.35417,0.914947,0.384618,1.1225,-1.01509,1.39474,-1.38507,-0.803732,-0.14378,1 +1.35417,-0.733606,-2.57398,-0.881962,0.975283,-0.327162,1.00298,-0.803732,-1.16312,0 +1.35417,0.00824276,-2.57398,-0.881962,0.975283,-0.327162,-1.38507,0.432779,0.500013,1 +1.35417,-0.486323,0.384618,-0.881962,0.975283,-0.327162,1.00298,-0.803732,1.19746,0 +1.35417,-0.898461,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,0.178116,0 +1.35417,-0.23904,-2.57398,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,1.19746,0 +1.35417,-0.733606,0.384618,1.1225,0.975283,-0.327162,-0.191044,0.432779,0.178116,0 +1.35417,-0.898461,0.384618,1.1225,0.975283,-0.327162,1.00298,-0.803732,1.19746,0 +-1.15611,0.914947,0.384618,1.1225,-1.01509,1.39474,-1.38507,-0.803732,-0.14378,0 +-1.15611,0.914947,0.384618,-0.881962,0.975283,-0.327162,1.00298,-0.803732,-0.841223,0 +-1.15611,-0.898461,0.384618,-0.881962,0.975283,-0.327162,1.00298,-0.803732,1.19746,0 +-1.15611,0.00824276,-2.57398,-0.881962,0.975283,-0.327162,-1.38507,0.432779,0.500013,1 +-1.15611,0.173098,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,-0.519327,0 +-1.15611,-1.14574,0.384618,1.1225,0.975283,-0.327162,-0.191044,1.66929,0.500013,0 +-1.15611,-0.898461,0.384618,1.1225,-1.01509,-0.327162,-0.191044,1.66929,0.500013,0 +-1.15611,-0.733606,0.384618,-0.881962,0.975283,-2.04907,-0.191044,1.66929,0.500013,0 +-1.15611,-0.898461,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,0.178116,0 +-1.15611,-1.14574,0.384618,1.1225,-1.01509,1.39474,1.00298,0.432779,-0.519327,0 +-1.15611,-1.14574,0.384618,-0.881962,-1.01509,1.39474,1.00298,0.432779,0.178116,0 +-0.315165,-0.898461,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,1.19746,0 +-0.315165,0.420381,0.384618,1.1225,-1.01509,-0.327162,-1.38507,1.66929,-1.16312,0 +-0.315165,-0.23904,0.384618,1.1225,0.975283,-0.327162,-0.191044,-0.803732,-0.519327,0 +-0.315165,0.667664,0.384618,1.1225,0.975283,-0.327162,-1.38507,-0.803732,-1.16312,0 +-0.315165,0.00824276,0.384618,-0.881962,0.975283,-0.327162,-0.191044,-0.803732,-1.16312,0 +-0.315165,-1.14574,0.384618,1.1225,-1.01509,1.39474,1.00298,-0.803732,1.84125,0 +-0.315165,-1.14574,0.384618,1.1225,-1.01509,-0.327162,-0.191044,0.432779,0.500013,0 +-0.315165,-0.733606,0.384618,1.1225,0.975283,-2.04907,-0.191044,0.432779,-1.16312,0 +-0.315165,-0.486323,0.384618,-0.881962,0.975283,-0.327162,1.00298,-0.803732,1.19746,0 +-0.315165,-0.733606,0.384618,-0.881962,0.975283,-0.327162,-0.191044,1.66929,-1.16312,0 +-0.315165,-1.14574,0.384618,1.1225,-1.01509,-0.327162,-0.191044,0.432779,1.84125,0 +-0.315165,0.173098,0.384618,1.1225,0.975283,-2.04907,1.00298,-0.803732,1.84125,0 +-0.315165,-0.898461,0.384618,1.1225,-1.01509,-0.327162,-2.57909,1.66929,1.19746,0 +1.35417,-0.733606,-2.57398,-0.881962,-1.01509,1.39474,-0.191044,1.66929,0.178116,0 +1.35417,-0.898461,-2.57398,-0.881962,-1.01509,1.39474,-0.191044,0.432779,3.18248,0 +-1.15611,-0.23904,0.384618,-0.881962,-1.01509,1.39474,1.00298,1.66929,-0.841223,0 +-1.15611,-0.486323,0.384618,1.1225,0.975283,-0.327162,-1.38507,-0.803732,-0.14378,0 +-1.15611,-0.898461,0.384618,-0.881962,-1.01509,1.39474,1.00298,-0.803732,0.500013,0 +-1.15611,-1.14574,0.384618,-0.881962,-1.01509,1.39474,-0.191044,-0.803732,-0.519327,0 +-0.315165,-0.898461,-2.57398,-0.881962,0.975283,-0.327162,1.00298,-0.803732,0.821909,0 +-0.315165,-1.39303,0.384618,1.1225,-1.01509,-2.04907,-0.191044,0.432779,2.53869,0 +-0.315165,-1.39303,0.384618,-0.881962,-1.01509,1.39474,1.00298,-0.803732,0.339064,0 +-0.315165,-1.39303,0.384618,-0.881962,-1.01509,1.39474,-0.191044,0.432779,-0.519327,0 +-0.315165,-1.39303,0.384618,-0.881962,0.975283,-2.04907,-0.191044,-0.803732,0.500013,0 +-0.315165,-1.39303,0.384618,1.1225,-1.01509,-2.04907,-0.191044,0.432779,2.53869,1 +0.513226,0.173098,0.384618,-0.881962,-1.01509,1.39474,1.00298,-0.803732,-0.519327,0 +1.35417,-0.898461,0.384618,-0.881962,-1.01509,1.39474,-1.38507,0.432779,0.500013,0 +-1.15611,-1.39303,0.384618,-0.881962,-1.01509,1.39474,-0.191044,-0.803732,0.178116,0 +-1.15611,-1.14574,0.384618,-0.881962,-1.01509,1.39474,-0.191044,-0.803732,1.19746,0 +-1.15611,0.914947,0.384618,-0.881962,0.975283,1.39474,1.00298,1.66929,-0.841223,0 +-1.15611,0.667664,0.384618,-0.881962,0.975283,1.39474,-1.38507,0.432779,0.821909,0 +-1.15611,0.420381,0.384618,1.1225,0.975283,1.39474,-0.191044,-0.803732,-1.16312,0 +-1.15611,-1.14574,0.384618,1.1225,-1.01509,1.39474,-0.191044,-0.803732,-0.14378,0 +-1.15611,2.72836,0.384618,-0.881962,0.975283,1.39474,-1.38507,0.432779,-0.841223,0 +-0.315165,2.06893,0.384618,1.1225,-1.01509,1.39474,1.00298,-0.803732,1.19746,0 +-1.15611,1.16223,0.384618,1.1225,0.975283,1.39474,-0.191044,0.432779,-1.16312,0 +-0.315165,2.06893,0.384618,-0.881962,-1.01509,1.39474,-1.38507,-0.803732,-1.16312,0 +-0.315165,1.57437,0.384618,1.1225,0.975283,1.39474,1.00298,-0.803732,-0.841223,0 +-0.315165,0.914947,0.384618,-0.881962,-1.01509,1.39474,1.00298,1.66929,-1.86056,1 +-0.315165,1.82165,0.384618,1.1225,-1.01509,-0.327162,-1.38507,1.66929,-0.519327,0 +-0.315165,0.667664,0.384618,1.1225,0.975283,-0.327162,-1.38507,1.66929,-0.841223,0 +-0.315165,0.667664,0.384618,1.1225,0.975283,1.39474,-0.191044,1.66929,-0.841223,0 +-0.315165,1.32709,0.384618,1.1225,0.975283,-0.327162,1.00298,-0.803732,-0.519327,0 +-0.315165,1.16223,0.384618,1.1225,0.975283,-0.327162,1.00298,1.66929,-0.14378,0 +-0.315165,1.16223,0.384618,1.1225,0.975283,1.39474,-0.191044,-0.803732,-0.14378,0 +0.513226,0.914947,0.384618,-0.881962,-1.01509,-0.327162,1.00298,1.66929,-1.86056,0 +0.513226,0.667664,0.384618,1.1225,-1.01509,-0.327162,-0.191044,-0.803732,-0.14378,0 +0.513226,0.667664,0.384618,-0.881962,0.975283,-0.327162,-0.191044,-0.803732,0.178116,1 +1.35417,-0.733606,0.384618,-0.881962,-1.01509,-0.327162,-1.38507,1.66929,0.500013,0 +-1.15611,0.00824276,0.384618,-0.881962,-1.01509,-0.327162,1.00298,-0.803732,0.500013,0 +-1.15611,-0.486323,0.384618,-0.881962,-1.01509,-0.327162,-0.191044,0.432779,0.500013,0 +-1.15611,0.00824276,0.384618,1.1225,0.975283,-0.327162,1.00298,-0.803732,-0.519327,0 +-1.15611,-0.23904,0.384618,-0.881962,0.975283,-0.327162,1.00298,0.432779,-1.16312,0 +-1.15611,0.173098,-2.57398,1.1225,0.975283,-0.327162,-1.38507,-0.803732,-1.16312,0 diff --git a/data/haberman-survival.arff b/data/haberman-survival.arff new file mode 100755 index 0000000..4ee29d6 --- /dev/null +++ b/data/haberman-survival.arff @@ -0,0 +1,312 @@ +@relation haberman-survival +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'clase' {0,1} +@data +-2.07874,0.353006,-0.420903,0 +-2.07874,-0.262492,-0.142725,0 +-2.07874,0.660755,-0.559991,0 +-1.98617,-1.18574,-0.281814,0 +-1.98617,0.660755,-0.00363631,0 +-1.80105,-1.49349,0.830896,0 +-1.80105,-0.877989,-0.559991,0 +-1.70848,-1.18574,-0.559991,1 +-1.70848,0.968503,0.691807,1 +-1.70848,-1.49349,3.61267,0 +-1.70848,-0.877989,-0.420903,0 +-1.70848,-0.57024,0.830896,0 +-1.70848,1.27625,0.41363,0 +-1.70848,-0.877989,-0.559991,0 +-1.61592,0.353006,1.24816,0 +-1.61592,0.0452572,-0.559991,0 +-1.52336,-0.877989,-0.420903,0 +-1.52336,1.89175,-0.559991,0 +-1.43079,-0.877989,-0.559991,0 +-1.43079,0.0452572,-0.559991,0 +-1.43079,-1.49349,-0.559991,0 +-1.43079,-1.18574,0.274541,0 +-1.43079,-0.877989,1.52634,0 +-1.43079,0.0452572,-0.559991,0 +-1.33823,1.89175,2.36087,1 +-1.33823,-1.18574,-0.281814,0 +-1.33823,-0.877989,-0.559991,0 +-1.33823,-0.877989,-0.559991,0 +-1.33823,-0.262492,-0.142725,0 +-1.33823,0.353006,-0.420903,0 +-1.33823,0.968503,-0.559991,0 +-1.33823,0.968503,0.969985,0 +-1.33823,-0.877989,-0.420903,0 +-1.33823,1.27625,0.135452,0 +-1.24567,0.968503,-0.559991,1 +-1.24567,0.0452572,-0.559991,0 +-1.24567,1.27625,-0.559991,0 +-1.24567,-1.49349,-0.559991,0 +-1.24567,-1.18574,-0.281814,0 +-1.24567,0.0452572,-0.00363631,0 +-1.15311,-1.49349,-0.281814,0 +-1.15311,-1.49349,-0.559991,0 +-1.15311,0.660755,-0.559991,0 +-1.06054,-0.877989,2.63905,1 +-1.06054,0.353006,-0.559991,1 +-1.06054,1.27625,-0.559991,1 +-1.06054,-1.49349,-0.559991,0 +-1.06054,-1.18574,0.552719,0 +-1.06054,-1.18574,-0.559991,0 +-1.06054,0.353006,-0.559991,0 +-1.06054,1.89175,0.552719,0 +-1.06054,0.660755,-0.559991,0 +-1.06054,0.660755,-0.559991,0 +-0.967979,1.89175,-0.420903,1 +-0.967979,-1.18574,-0.559991,1 +-0.967979,-1.49349,-0.559991,0 +-0.967979,-0.877989,-0.420903,0 +-0.967979,-1.18574,-0.281814,0 +-0.967979,-0.57024,-0.00363631,0 +-0.967979,-0.262492,2.22178,0 +-0.967979,0.660755,-0.559991,0 +-0.967979,0.0452572,-0.420903,0 +-0.875416,-1.49349,6.67262,1 +-0.875416,-1.18574,-0.281814,1 +-0.875416,0.353006,-0.559991,1 +-0.875416,0.353006,-0.559991,1 +-0.875416,0.0452572,1.38725,0 +-0.875416,0.353006,-0.281814,0 +-0.875416,0.353006,-0.142725,0 +-0.875416,-0.877989,-0.559991,0 +-0.875416,0.0452572,-0.281814,0 +-0.875416,0.660755,-0.559991,0 +-0.875416,0.968503,-0.00363631,0 +-0.782853,0.353006,0.274541,1 +-0.782853,-1.49349,0.691807,1 +-0.782853,0.0452572,2.0827,1 +-0.782853,-0.57024,-0.559991,0 +-0.782853,0.0452572,-0.420903,0 +-0.782853,-0.57024,-0.559991,0 +-0.782853,1.27625,1.66543,0 +-0.69029,0.660755,0.274541,1 +-0.69029,0.968503,-0.559991,1 +-0.69029,1.27625,-0.420903,1 +-0.69029,-0.877989,-0.559991,0 +-0.69029,1.27625,-0.559991,0 +-0.69029,-1.18574,1.38725,0 +-0.69029,0.353006,-0.559991,0 +-0.69029,1.584,-0.559991,0 +-0.69029,1.27625,-0.420903,0 +-0.597727,-1.49349,-0.281814,1 +-0.597727,1.89175,-0.142725,1 +-0.597727,-0.262492,0.135452,1 +-0.597727,0.660755,2.22178,1 +-0.597727,-0.262492,-0.559991,0 +-0.597727,-1.49349,-0.142725,0 +-0.597727,0.0452572,-0.559991,0 +-0.505164,0.0452572,2.63905,1 +-0.505164,-0.262492,-0.559991,1 +-0.505164,0.660755,-0.559991,1 +-0.505164,-0.57024,-0.559991,0 +-0.505164,0.0452572,0.274541,0 +-0.505164,0.968503,-0.559991,0 +-0.505164,1.27625,-0.559991,0 +-0.505164,-1.49349,-0.142725,0 +-0.505164,-0.877989,-0.00363631,0 +-0.505164,1.584,-0.00363631,0 +-0.505164,0.968503,1.10907,0 +-0.412601,-1.49349,0.969985,1 +-0.412601,-1.49349,0.969985,1 +-0.412601,1.27625,0.41363,1 +-0.412601,-0.57024,0.552719,0 +-0.412601,-0.262492,-0.281814,0 +-0.412601,0.353006,-0.559991,0 +-0.412601,0.968503,-0.559991,0 +-0.320038,0.0452572,-0.559991,1 +-0.320038,0.353006,0.830896,1 +-0.320038,-0.57024,-0.420903,0 +-0.320038,-0.262492,-0.559991,0 +-0.320038,0.968503,-0.559991,0 +-0.320038,-0.877989,-0.420903,0 +-0.320038,-0.262492,-0.420903,0 +-0.320038,0.0452572,-0.142725,0 +-0.320038,-0.57024,-0.559991,0 +-0.320038,1.27625,-0.420903,0 +-0.227475,0.0452572,1.24816,1 +-0.227475,0.353006,-0.559991,1 +-0.227475,-1.18574,-0.559991,0 +-0.227475,-0.57024,0.274541,0 +-0.227475,-0.57024,-0.559991,0 +-0.227475,0.0452572,-0.420903,0 +-0.227475,-1.49349,-0.420903,0 +-0.227475,-1.18574,-0.281814,0 +-0.227475,-0.57024,-0.559991,0 +-0.227475,0.353006,-0.559991,0 +-0.227475,0.660755,-0.00363631,0 +-0.227475,0.968503,-0.420903,0 +-0.134912,-1.18574,1.24816,1 +-0.134912,-1.18574,-0.142725,1 +-0.134912,0.353006,0.41363,0 +-0.134912,-1.18574,-0.420903,0 +-0.134912,0.660755,-0.559991,0 +-0.134912,0.968503,-0.420903,0 +-0.0423491,1.89175,-0.142725,1 +-0.0423491,-1.18574,-0.281814,1 +-0.0423491,-0.262492,-0.142725,1 +-0.0423491,0.968503,-0.00363631,1 +-0.0423491,-0.57024,-0.559991,0 +-0.0423491,0.0452572,-0.00363631,0 +-0.0423491,1.89175,-0.559991,0 +-0.0423491,-0.877989,-0.00363631,0 +-0.0423491,-0.877989,0.135452,0 +-0.0423491,-0.262492,-0.559991,0 +-0.0423491,-0.262492,-0.420903,0 +-0.0423491,0.353006,-0.559991,0 +-0.0423491,0.660755,-0.559991,0 +-0.0423491,1.584,-0.559991,0 +0.0502139,-1.49349,-0.00363631,1 +0.0502139,0.660755,-0.420903,1 +0.0502139,-1.18574,-0.142725,1 +0.0502139,-0.877989,0.691807,1 +0.0502139,0.0452572,2.77814,1 +0.0502139,0.660755,1.10907,1 +0.0502139,-1.49349,-0.420903,0 +0.0502139,-0.877989,-0.420903,0 +0.0502139,-0.877989,-0.281814,0 +0.0502139,-0.57024,-0.420903,0 +0.0502139,0.0452572,-0.559991,0 +0.142777,-0.877989,0.969985,1 +0.142777,0.660755,2.63905,1 +0.142777,0.660755,0.135452,1 +0.142777,1.584,0.41363,1 +0.142777,-1.18574,0.41363,0 +0.142777,-0.877989,-0.142725,0 +0.142777,0.968503,-0.559991,0 +0.142777,1.27625,5.83809,0 +0.142777,-0.262492,-0.559991,0 +0.142777,1.89175,0.41363,0 +0.142777,0.0452572,2.0827,0 +0.142777,-1.49349,-0.420903,0 +0.142777,-0.262492,-0.559991,0 +0.23534,0.0452572,0.274541,1 +0.23534,1.584,1.52634,1 +0.23534,-1.49349,-0.420903,0 +0.23534,-1.49349,-0.559991,0 +0.23534,-1.49349,-0.420903,0 +0.23534,0.968503,1.94361,0 +0.23534,0.968503,-0.559991,0 +0.23534,1.89175,-0.142725,0 +0.23534,1.89175,2.49996,0 +0.23534,1.27625,-0.420903,0 +0.327903,0.660755,0.691807,1 +0.327903,0.968503,-0.142725,1 +0.327903,-0.877989,-0.559991,0 +0.327903,0.968503,-0.281814,0 +0.327903,0.968503,-0.420903,0 +0.327903,1.27625,-0.559991,0 +0.327903,-0.877989,-0.559991,0 +0.420466,-0.57024,0.135452,1 +0.420466,-0.262492,1.38725,1 +0.420466,0.353006,-0.420903,1 +0.420466,0.353006,0.691807,0 +0.420466,1.89175,-0.559991,0 +0.420466,-0.57024,-0.559991,0 +0.420466,-0.262492,-0.559991,0 +0.420466,0.0452572,-0.559991,0 +0.420466,0.353006,-0.559991,0 +0.420466,0.353006,-0.559991,0 +0.420466,1.27625,-0.559991,0 +0.513029,-1.18574,-0.559991,0 +0.513029,-0.877989,-0.142725,0 +0.513029,-0.57024,-0.420903,0 +0.513029,1.27625,-0.559991,0 +0.513029,-1.49349,-0.559991,0 +0.513029,-1.49349,-0.142725,0 +0.513029,-0.57024,-0.281814,0 +0.605592,-0.262492,4.30812,1 +0.605592,-0.877989,-0.559991,0 +0.605592,0.0452572,-0.559991,0 +0.605592,0.353006,-0.420903,0 +0.605592,0.353006,-0.00363631,0 +0.605592,0.353006,-0.559991,0 +0.605592,0.353006,0.41363,0 +0.605592,1.27625,-0.142725,0 +0.698155,-1.18574,1.80452,1 +0.698155,0.660755,-0.559991,1 +0.698155,-0.57024,-0.420903,0 +0.698155,1.27625,-0.281814,0 +0.698155,-0.57024,2.91723,0 +0.698155,0.353006,-0.559991,0 +0.790718,-0.262492,0.135452,1 +0.790718,0.660755,-0.559991,1 +0.790718,1.584,-0.420903,1 +0.790718,-1.18574,-0.559991,0 +0.790718,-1.18574,-0.559991,0 +0.790718,0.353006,-0.559991,0 +0.790718,0.660755,0.552719,0 +0.790718,1.584,-0.559991,0 +0.790718,-1.18574,-0.559991,0 +0.883281,-1.18574,1.24816,1 +0.883281,-1.49349,-0.559991,1 +0.883281,0.660755,2.0827,1 +0.883281,-0.262492,0.274541,0 +0.883281,0.968503,-0.559991,0 +0.883281,0.968503,-0.559991,0 +0.883281,-1.49349,-0.559991,0 +0.975844,-0.877989,-0.420903,1 +0.975844,-0.57024,-0.559991,0 +0.975844,-0.262492,-0.559991,0 +0.975844,0.0452572,-0.559991,0 +0.975844,0.0452572,-0.559991,0 +0.975844,0.968503,-0.559991,0 +0.975844,-0.57024,0.691807,0 +0.975844,-0.57024,3.33449,0 +1.06841,-1.49349,-0.559991,0 +1.06841,0.660755,2.49996,0 +1.06841,0.968503,-0.559991,0 +1.06841,-0.57024,-0.559991,0 +1.06841,1.584,-0.559991,0 +1.16097,-1.49349,-0.559991,1 +1.16097,-0.57024,-0.281814,1 +1.16097,-0.262492,2.49996,1 +1.16097,0.968503,1.52634,1 +1.16097,-1.49349,-0.559991,0 +1.16097,0.353006,-0.559991,0 +1.16097,1.27625,-0.559991,0 +1.16097,-1.18574,-0.281814,0 +1.16097,0.353006,-0.559991,0 +1.16097,1.27625,-0.420903,0 +1.25353,-1.49349,-0.559991,1 +1.25353,-0.57024,1.24816,1 +1.25353,-1.49349,-0.559991,0 +1.25353,-1.49349,-0.420903,0 +1.25353,1.584,-0.559991,0 +1.3461,0.353006,0.552719,1 +1.3461,0.0452572,-0.420903,1 +1.3461,0.968503,-0.559991,0 +1.3461,0.968503,-0.559991,0 +1.3461,-0.57024,-0.559991,0 +1.3461,0.660755,-0.559991,0 +1.43866,1.27625,-0.559991,0 +1.43866,1.584,-0.559991,0 +1.53122,1.27625,0.552719,1 +1.53122,-0.877989,-0.559991,0 +1.53122,0.660755,-0.559991,0 +1.53122,0.968503,-0.559991,0 +1.62378,-1.49349,-0.559991,1 +1.62378,-1.49349,-0.00363631,1 +1.62378,0.968503,1.38725,0 +1.62378,1.27625,-0.559991,0 +1.62378,1.584,-0.559991,0 +1.62378,-1.18574,0.552719,0 +1.62378,0.0452572,-0.559991,0 +1.71635,1.584,-0.281814,0 +1.80891,0.0452572,-0.559991,1 +1.80891,-1.49349,-0.559991,0 +1.80891,0.353006,-0.559991,0 +1.80891,1.27625,-0.142725,0 +1.90147,-0.262492,-0.559991,0 +1.90147,1.584,-0.559991,0 +1.99404,0.660755,-0.142725,1 +1.99404,0.0452572,-0.559991,0 +2.0866,-0.262492,-0.420903,0 +2.17916,1.27625,-0.559991,0 +2.27173,0.660755,-0.142725,0 +2.36429,0.660755,-0.420903,1 +2.8271,-1.49349,-0.281814,1 diff --git a/data/heart-hungarian.arff b/data/heart-hungarian.arff new file mode 100755 index 0000000..f7bc959 --- /dev/null +++ b/data/heart-hungarian.arff @@ -0,0 +1,309 @@ +@relation heart-hungarian +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'clase' {0,1} +@data +-2.53802,0.61562,-1.01852,-0.110957,-1.05946,-0.269712,3.87243,1.86058,-0.657776,-0.644974,-0.7211,-0.310615,0 +-2.41001,0.61562,-1.01852,-0.631236,0.125732,-0.269712,-0.472969,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +-2.41001,0.61562,-1.01852,0.409321,-2.46889,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,0 +-2.282,-1.61885,-2.05467,1.97016,0.0616677,-0.269712,1.69973,1.25836,-0.657776,-0.644974,-0.7211,3.15726,0 +-2.15399,-1.61885,-1.01852,-1.67179,-0.130526,-0.269712,1.69973,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-2.02597,-1.61885,-1.01852,-1.41165,-0.354753,-0.269712,-0.472969,1.05763,-0.657776,-0.644974,-0.7211,-0.310615,0 +-2.02597,0.61562,-1.01852,-1.15152,-0.0664617,-0.269712,-0.472969,1.82043,-0.657776,-0.644974,-0.7211,-0.310615,0 +-2.02597,0.61562,-1.01852,-0.371097,0.243184,-0.269712,-0.472969,0.656151,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.89796,0.61562,0.0176215,-0.631236,0.712992,-0.269712,-0.472969,1.86058,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.76995,-1.61885,-1.01852,-0.110957,-0.749818,-0.269712,-0.472969,2.06131,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.76995,0.61562,-1.01852,0.9296,-0.183914,-0.269712,1.69973,1.17807,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.76995,0.61562,-1.01852,-1.77585,-0.119849,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.64194,-1.61885,-2.05467,-0.631236,-0.760496,-0.269712,1.69973,1.86058,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.64194,-1.61885,1.05377,0.409321,-0.685754,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.64194,0.61562,-1.01852,-0.631236,0.819767,-0.269712,3.87243,1.65984,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.64194,0.61562,-1.01852,0.9296,0.349959,-0.269712,-0.472969,1.17807,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.51393,0.61562,-1.01852,-0.631236,-0.696431,-0.269712,-0.472969,1.65984,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.51393,0.61562,0.0176215,-1.04746,1.16144,-0.269712,-0.472969,1.82043,-0.657776,0.455562,1.43122,1.42332,0 +-1.51393,0.61562,0.0176215,-0.110957,-0.237301,-0.269712,-0.472969,1.57954,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.51393,0.61562,0.0176215,0.9296,-0.760496,-0.269712,-0.472969,1.33866,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.38592,-1.61885,-1.01852,-0.631236,0.307249,-0.269712,-0.472969,-0.347535,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.38592,-1.61885,0.0176215,-0.110957,-0.215946,-0.269712,-0.472969,0.134235,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.38592,-1.61885,1.05377,-0.110957,-0.621689,-0.269712,1.69973,1.82043,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.38592,0.61562,-1.01852,-0.110957,0.55283,-0.269712,1.69973,-1.63225,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.38592,0.61562,0.0176215,-0.110957,-0.397463,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.38592,0.61562,1.05377,-0.631236,-0.0878166,-0.269712,-0.472969,1.17807,-0.657776,-0.644974,-0.7211,1.42332,0 +-1.38592,0.61562,1.05377,-0.110957,0.894509,-0.269712,-0.472969,0.776594,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.25791,-1.61885,-1.01852,-0.631236,0.467411,-0.269712,-0.472969,-0.387682,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.25791,0.61562,-1.01852,0.409321,0.702315,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.25791,0.61562,0.0176215,0.669461,0.648927,-0.269712,-0.472969,-0.347535,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.1299,-1.61885,0.0176215,-1.15152,-0.525592,-0.269712,1.69973,1.65984,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.1299,0.61562,-1.01852,-0.631236,-2.46889,-0.269712,1.69973,0.294824,-0.657776,1.5561,0.355059,-0.310615,0 +-1.1299,0.61562,-1.01852,-0.631236,-0.333398,-0.269712,-0.472969,0.856889,1.5151,0.455562,1.43122,-0.310615,0 +-1.1299,0.61562,-1.01852,-0.631236,-0.290688,-0.269712,-0.472969,0.254677,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.1299,0.61562,-1.01852,-0.110957,-2.46889,-0.269712,-0.472969,-0.749009,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.1299,0.61562,-1.01852,3.01072,0.104378,-0.269712,-0.472969,-1.31107,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.1299,0.61562,0.0176215,-0.631236,1.15077,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.1299,0.61562,0.0176215,1.44988,-0.899303,3.69505,-0.472969,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.1299,0.61562,1.05377,-1.15152,0.446056,-0.269712,-0.472969,-0.26724,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.1299,0.61562,1.05377,-0.110957,0.809089,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.00188,0.61562,-1.01852,-0.110957,0.467411,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.00188,0.61562,-1.01852,0.409321,0.616895,-0.269712,-0.472969,1.33866,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.00188,0.61562,0.0176215,-0.110957,-0.173236,-0.269712,-0.472969,-0.0263553,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.00188,0.61562,0.0176215,-0.110957,0.531475,-0.269712,-0.472969,1.13792,-0.657776,-0.644974,-0.7211,-0.310615,0 +-1.00188,0.61562,0.0176215,0.409321,-2.46889,-0.269712,-0.472969,1.98102,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.873873,-1.61885,-1.01852,-1.15152,0.200475,-0.269712,1.69973,0.134235,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.873873,-1.61885,-1.01852,-0.371097,-0.504237,-0.269712,-0.472969,1.65984,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.873873,-1.61885,-1.01852,-0.110957,0.147087,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.873873,0.61562,-1.01852,-0.631236,0.63825,-0.269712,1.69973,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.873873,0.61562,-1.01852,-0.631236,0.68096,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.873873,0.61562,-1.01852,-0.371097,0.403346,-0.269712,-0.472969,0.214529,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.873873,0.61562,1.05377,-1.04746,0.200475,-0.269712,-0.472969,0.134235,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.745862,-1.61885,0.0176215,-0.891376,-0.215946,-0.269712,1.69973,-0.0665028,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.745862,0.61562,-1.01852,-0.631236,-0.376108,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.745862,0.61562,-1.01852,-0.631236,-0.354753,-0.269712,-0.472969,0.656151,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.745862,0.61562,-1.01852,0.9296,0.392669,-0.269712,-0.472969,-0.10665,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.745862,0.61562,0.0176215,-0.631236,-0.0344293,-0.269712,-0.472969,0.535709,1.5151,1.00583,1.43122,-0.310615,0 +-0.745862,0.61562,0.0176215,1.44988,-0.899303,-0.269712,-0.472969,0.294824,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.745862,0.61562,1.05377,0.409321,1.35364,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.61785,-1.61885,-2.05467,-1.67179,-0.0878166,-0.269712,-0.472969,0.134235,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.61785,-1.61885,-1.01852,-0.631236,-0.32272,-0.269712,-0.472969,1.05763,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.61785,-1.61885,-1.01852,-0.631236,-0.173236,-0.269712,1.69973,1.4591,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.61785,-1.61885,-1.01852,-0.631236,0.189797,-0.269712,1.69973,1.49925,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.61785,-1.61885,-1.01852,-0.631236,0.371314,-0.269712,-0.472969,-0.829304,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.61785,-1.61885,-1.01852,0.9296,-0.482882,-0.269712,-0.472969,0.616004,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.61785,-1.61885,0.0176215,0.9296,-2.46889,-0.269712,-0.472969,1.4591,-0.657776,-0.644974,-0.7211,1.42332,0 +-0.61785,0.61562,-1.01852,0.513377,-0.258656,-0.269712,-0.472969,-0.0263553,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.489839,-1.61885,1.05377,-0.631236,-0.141204,-0.269712,1.69973,-0.949747,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.489839,0.61562,-1.01852,-0.631236,-0.504237,-0.269712,-0.472969,0.134235,-0.657776,0.455562,1.43122,-0.310615,0 +-0.489839,0.61562,-1.01852,-0.110957,-0.173236,-0.269712,-0.472969,-0.146798,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.489839,0.61562,1.05377,0.9296,1.93022,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.361828,-1.61885,-1.01852,-0.110957,0.0616677,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.361828,-1.61885,-1.01852,2.49044,-2.46889,-0.269712,-0.472969,1.65984,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.361828,-1.61885,1.05377,-0.00690166,0.702315,-0.269712,-0.472969,0.214529,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.361828,0.61562,-1.01852,0.409321,-0.0771391,3.69505,-0.472969,-0.668715,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.361828,0.61562,0.0176215,0.149182,-2.46889,-0.269712,-0.472969,-1.15048,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.361828,0.61562,1.05377,-0.631236,-0.0664617,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.361828,0.61562,1.05377,0.409321,-0.0771391,-0.269712,-0.472969,0.214529,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.233816,-1.61885,1.05377,-0.110957,0.0723452,-0.269712,-0.472969,-1.95343,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.233816,0.61562,-1.01852,0.409321,0.467411,-0.269712,-0.472969,1.05763,1.5151,-0.644974,-0.7211,-0.310615,0 +-0.233816,0.61562,0.0176215,-0.631236,-0.0130744,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.233816,0.61562,0.0176215,0.9296,-0.728463,-0.269712,-0.472969,-0.909599,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.233816,0.61562,1.05377,-1.15152,0.0723452,-0.269712,1.69973,0.0539396,1.5151,0.455562,1.43122,1.42332,0 +-0.233816,0.61562,1.05377,-1.15152,0.0937001,-0.269712,1.69973,0.0539396,-0.657776,-0.644974,-0.7211,1.42332,0 +-0.233816,0.61562,1.05377,2.49044,0.520798,-0.269712,1.69973,-0.749009,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.105805,-1.61885,-1.01852,0.409321,0.275217,-0.269712,-0.472969,-0.146798,-0.657776,0.455562,0.355059,-0.310615,0 +-0.105805,-1.61885,0.0176215,-0.110957,-2.46889,-0.269712,-0.472969,0.254677,-0.657776,1.5561,1.43122,-0.310615,0 +-0.105805,0.61562,-2.05467,-1.15152,0.189797,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.105805,0.61562,-1.01852,1.44988,0.339281,-0.269712,-0.472969,1.41895,-0.657776,-0.644974,-0.7211,-0.310615,0 +-0.105805,0.61562,1.05377,0.409321,0.478088,3.69505,-0.472969,-0.548272,1.5151,-0.644974,-0.7211,-0.310615,0 +0.022206,-1.61885,-1.01852,-6.87458,0.819767,-0.269712,1.69973,-5.5667,-0.657776,1.5561,0.355059,-0.310615,0 +0.022206,-1.61885,-1.01852,-0.631236,-2.46889,3.69505,1.69973,0.375119,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.022206,-1.61885,-1.01852,-0.631236,0.563508,-0.269712,-0.472969,-0.749009,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.022206,-1.61885,0.0176215,-0.631236,-0.386785,-0.269712,-0.472969,-0.548272,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.022206,-1.61885,1.05377,-1.25557,-0.728463,-0.269712,-0.472969,1.4591,-0.657776,1.5561,0.355059,-0.310615,0 +0.022206,-1.61885,1.05377,-0.631236,0.243184,-0.269712,1.69973,-1.15048,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.022206,-1.61885,1.05377,0.9296,-0.0451068,-0.269712,-0.472969,-0.347535,1.5151,0.455562,1.43122,-0.310615,0 +0.022206,0.61562,-1.01852,-1.67179,-2.46889,-0.269712,-0.472969,-1.55196,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.022206,0.61562,-1.01852,-0.110957,0.147087,-0.269712,-0.472969,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.022206,0.61562,-1.01852,0.409321,0.0723452,-0.269712,-0.472969,-0.829304,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.022206,0.61562,0.0176215,-1.15152,-0.215946,-0.269712,-0.472969,-0.0263553,-0.657776,-0.644974,-0.7211,3.15726,0 +0.150217,-1.61885,-1.01852,-1.15152,-2.46889,-0.269712,-0.472969,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.150217,-1.61885,-1.01852,-1.15152,-2.46889,-0.269712,-0.472969,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.150217,-1.61885,-1.01852,-0.423125,-0.32272,-0.269712,-0.472969,1.01748,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.150217,-1.61885,0.0176215,-0.110957,-0.258656,-0.269712,1.69973,-0.146798,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.150217,0.61562,-1.01852,-1.67179,0.232507,-0.269712,-0.472969,1.41895,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.150217,0.61562,0.0176215,0.409321,-0.472205,-0.269712,-0.472969,1.33866,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.150217,0.61562,1.05377,-0.631236,0.702315,-0.269712,-0.472969,-0.26724,-0.657776,0.455562,1.43122,-0.310615,0 +0.150217,0.61562,1.05377,0.409321,-2.46889,-0.269712,-0.472969,-0.347535,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.278229,-1.61885,-1.01852,-1.15152,-0.312043,-0.269712,-0.472969,0.254677,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.278229,-1.61885,1.05377,-0.631236,1.03332,-0.269712,-0.472969,-1.15048,1.5151,0.455562,1.43122,-0.310615,0 +0.278229,0.61562,-1.01852,-0.631236,-0.675076,-0.269712,-0.472969,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.278229,0.61562,-1.01852,0.409321,-0.162559,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,1.42332,0 +0.278229,0.61562,-1.01852,1.97016,-0.237301,-0.269712,1.69973,-0.909599,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.278229,0.61562,1.05377,0.409321,-1.0915,-0.269712,-0.472969,-0.146798,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.278229,0.61562,1.05377,0.9296,-0.173236,-0.269712,-0.472969,0.0539396,1.5151,-0.644974,-0.7211,-0.310615,0 +0.40624,-1.61885,-1.01852,1.44988,-0.397463,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.40624,-1.61885,0.0176215,-1.15152,-0.440172,-0.269712,-0.472969,-0.749009,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.40624,-1.61885,0.0176215,-0.110957,-0.119849,-0.269712,-0.472969,0.856889,1.5151,1.5561,0.355059,-0.310615,0 +0.40624,-1.61885,0.0176215,0.9296,-0.333398,-0.269712,-0.472969,-0.749009,-0.657776,-0.094706,0.355059,-0.310615,0 +0.40624,0.61562,-1.01852,-0.371097,-0.461527,-0.269712,-0.472969,0.254677,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.40624,0.61562,-1.01852,-0.110957,-0.0771391,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.40624,0.61562,1.05377,-0.110957,-0.557624,-0.269712,-0.472969,-1.55196,-0.657776,-0.644974,-0.7211,3.73524,0 +0.534251,-1.61885,-1.01852,-0.631236,-0.226623,-0.269712,-0.472969,0.375119,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.534251,-1.61885,-1.01852,0.409321,-2.46889,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.534251,-1.61885,0.0176215,-0.371097,0.435378,-0.269712,-0.472969,0.0137922,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.534251,-1.61885,1.05377,-0.110957,-0.546947,-0.269712,-0.472969,0.0539396,1.5151,1.00583,1.43122,-0.310615,0 +0.534251,0.61562,-1.01852,-0.631236,0.563508,-0.269712,-0.472969,-0.829304,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.534251,0.61562,-1.01852,0.409321,-1.40114,-0.269712,-0.472969,-0.0263553,1.5151,-0.644974,-0.7211,-0.310615,0 +0.534251,0.61562,-1.01852,1.44988,-0.376108,-0.269712,-0.472969,1.05763,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.534251,0.61562,0.0176215,0.409321,0.296572,-0.269712,1.69973,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.662262,-1.61885,-1.01852,-0.995432,2.52816,-0.269712,-0.472969,-0.467977,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.662262,-1.61885,-1.01852,0.409321,-0.162559,-0.269712,-0.472969,0.134235,1.5151,1.5561,1.43122,-0.310615,0 +0.662262,-1.61885,0.0176215,-0.631236,0.456733,-0.269712,-0.472969,-0.347535,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.662262,0.61562,-1.01852,-0.631236,-2.46889,-0.269712,-0.472969,-0.26724,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.662262,0.61562,-1.01852,0.409321,0.947896,-0.269712,-0.472969,0.937184,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.662262,0.61562,0.0176215,-0.631236,-0.386785,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.662262,0.61562,1.05377,-0.423125,0.307249,-0.269712,1.69973,-1.07019,1.5151,2.65663,1.43122,-0.310615,0 +0.662262,0.61562,1.05377,-0.110957,-0.525592,-0.269712,-0.472969,0.375119,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.662262,0.61562,1.05377,0.409321,0.125732,-0.269712,-0.472969,0.656151,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,-1.61885,-1.01852,-0.631236,-0.109171,-0.269712,-0.472969,-0.0263553,-0.657776,0.455562,0.355059,-0.310615,0 +0.790274,-1.61885,-1.01852,-0.631236,-0.0130744,3.69505,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,-1.61885,-1.01852,-0.631236,0.446056,-0.269712,-0.472969,0.455414,-0.657776,1.00583,1.43122,-0.310615,0 +0.790274,-1.61885,-1.01852,-0.110957,0.232507,-0.269712,1.69973,0.656151,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,-1.61885,-1.01852,0.409321,0.830444,-0.269712,1.69973,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,-1.61885,-1.01852,0.9296,-0.0130744,-0.269712,-0.472969,-0.347535,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,-1.61885,-1.01852,1.44988,0.862476,-0.269712,-0.472969,-0.347535,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,0.61562,-2.05467,-0.631236,-0.643044,-0.269712,-0.472969,-0.0665028,-0.657776,1.5561,0.355059,-0.310615,0 +0.790274,0.61562,-1.01852,-1.15152,-0.247978,-0.269712,-0.472969,0.134235,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,0.61562,-1.01852,-0.631236,0.0723452,-0.269712,-0.472969,0.616004,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,0.61562,-1.01852,-0.631236,0.157765,-0.269712,-0.472969,-1.15048,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,0.61562,-1.01852,1.44988,-0.386785,-0.269712,1.69973,-0.347535,-0.657776,0.455562,0.355059,-0.310615,0 +0.790274,0.61562,-1.01852,1.44988,0.787734,-0.269712,-0.472969,1.4591,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,0.61562,0.0176215,-0.631236,-0.151881,-0.269712,-0.472969,-0.0665028,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,0.61562,0.0176215,0.9296,-2.46889,-0.269712,-0.472969,-0.668715,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.790274,0.61562,1.05377,0.9296,1.42838,-0.269712,1.69973,-0.186945,-0.657776,0.455562,0.355059,-0.310615,0 +0.918285,-1.61885,-1.01852,-1.15152,1.20415,-0.269712,1.69973,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.918285,-1.61885,-1.01852,-0.527181,0.947896,-0.269712,-0.472969,0.656151,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.918285,-1.61885,-1.01852,-0.110957,1.73803,-0.269712,3.87243,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.918285,0.61562,-1.01852,-0.631236,0.264539,3.69505,-0.472969,-0.0665028,-0.657776,-0.644974,-0.7211,3.73524,0 +0.918285,0.61562,-1.01852,0.409321,-0.376108,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,3.73524,0 +0.918285,0.61562,-1.01852,0.669461,1.01196,-0.269712,-0.472969,0.656151,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.918285,0.61562,0.0176215,-1.15152,0.488766,-0.269712,-0.472969,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.918285,0.61562,0.0176215,-0.631236,-0.119849,-0.269712,3.87243,-0.186945,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.918285,0.61562,1.05377,-0.631236,0.414024,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +0.918285,0.61562,1.05377,0.409321,-0.0237519,-0.269712,-0.472969,-1.15048,1.5151,-0.094706,1.43122,-0.310615,0 +1.0463,-1.61885,0.0176215,-0.110957,-0.130526,-0.269712,1.69973,1.01748,-0.657776,-0.644974,-0.7211,3.73524,0 +1.0463,0.61562,-1.01852,-0.110957,-0.504237,-0.269712,-0.472969,-1.55196,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.0463,0.61562,0.0176215,-0.110957,-2.46889,-0.269712,-0.472969,-0.989894,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.0463,0.61562,0.0176215,-0.110957,0.478088,-0.269712,-0.472969,-0.42783,1.5151,0.455562,0.355059,3.15726,0 +1.0463,0.61562,1.05377,-0.631236,-1.5613,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.17431,-1.61885,-2.05467,-0.110957,0.819767,-0.269712,-0.472969,-1.63225,-0.657776,0.455562,1.43122,-0.310615,0 +1.17431,-1.61885,1.05377,2.49044,1.23619,-0.269712,1.69973,-0.508125,1.5151,0.235455,1.43122,-0.310615,0 +1.17431,0.61562,-1.01852,0.409321,0.307249,3.69505,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,3.15726,0 +1.30232,0.61562,-1.01852,-0.110957,-0.0130744,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.30232,0.61562,-1.01852,-0.110957,0.211152,-0.269712,-0.472969,-1.15048,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.30232,0.61562,0.0176215,0.409321,-0.557624,-0.269712,-0.472969,0.856889,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.30232,0.61562,1.05377,0.149182,-0.098494,-0.269712,-0.472969,-1.55196,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.43033,-1.61885,-1.01852,-0.110957,-0.461527,-0.269712,-0.472969,-0.58842,-0.657776,0.455562,1.43122,-0.310615,0 +1.43033,0.61562,-1.01852,0.409321,0.59554,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.43033,0.61562,0.0176215,-0.110957,0.926541,-0.269712,-0.472969,-0.749009,1.5151,0.455562,1.43122,1.42332,0 +1.43033,0.61562,0.0176215,2.49044,-0.194591,-0.269712,-0.472969,-1.55196,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.43033,0.61562,1.05377,0.409321,-2.46889,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.55834,0.61562,0.0176215,-0.631236,0.157765,-0.269712,3.87243,-0.146798,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.68635,-1.61885,1.05377,-0.110957,0.670282,-0.269712,1.69973,-0.749009,1.5151,0.455562,1.43122,-0.310615,0 +1.68635,0.61562,1.05377,-0.371097,0.648927,-0.269712,1.69973,-0.949747,1.5151,-0.644974,-0.7211,-0.310615,0 +1.81436,-1.61885,-2.05467,1.44988,-0.40814,-0.269712,-0.472969,-0.909599,-0.657776,-0.644974,-0.7211,-0.310615,0 +1.81436,0.61562,-1.01852,0.409321,0.424701,-0.269712,-0.472969,0.535709,-0.657776,0.455562,0.355059,-0.310615,0 +-2.15399,0.61562,1.05377,-0.631236,0.414024,-0.269712,-0.472969,0.575857,1.5151,1.00583,1.43122,-0.310615,1 +-1.89796,-1.61885,1.05377,-1.67179,0.157765,-0.269712,-0.472969,0.455414,1.5151,0.455562,1.43122,-0.310615,1 +-1.76995,0.61562,-2.05467,0.409321,-0.803206,-0.269712,-0.472969,1.65984,-0.657776,-0.644974,-0.7211,-0.310615,1 +-1.64194,0.61562,-1.01852,-1.15152,0.275217,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,1 +-1.51393,0.61562,-1.01852,-0.631236,0.381991,-0.269712,-0.472969,0.856889,-0.657776,2.65663,1.43122,-0.310615,1 +-1.38592,0.61562,1.05377,0.409321,-0.258656,-0.269712,-0.472969,-0.347535,1.5151,1.00583,1.43122,-0.310615,1 +-1.25791,0.61562,1.05377,-1.15152,-0.376108,-0.269712,-0.472969,1.09777,-0.657776,-0.644974,-0.7211,-0.310615,1 +-1.25791,0.61562,1.05377,-0.631236,0.542153,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,1 +-1.25791,0.61562,1.05377,-2.08802,-1.21963,-0.269712,-0.472969,-0.186945,1.5151,2.10637,1.43122,-0.310615,1 +-1.00188,0.61562,1.05377,-0.631236,2.5068,-0.269712,-0.472969,0.535709,1.5151,0.455562,1.43122,3.15726,1 +-0.873873,0.61562,1.05377,-1.15152,0.616895,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,3.15726,1 +-0.873873,0.61562,1.05377,-0.631236,0.0616677,-0.269712,-0.472969,-0.0263553,1.5151,0.455562,1.43122,-0.310615,1 +-0.61785,0.61562,1.05377,0.9296,0.168442,-0.269712,-0.472969,-0.347535,1.5151,1.5561,1.43122,-0.310615,1 +-0.233816,0.61562,1.05377,-1.15152,-0.312043,-0.269712,-0.472969,0.455414,1.5151,-0.644974,-0.7211,-0.310615,1 +-0.233816,0.61562,1.05377,-0.735292,-0.482882,-0.269712,-0.472969,-0.58842,-0.657776,-0.644974,-0.7211,3.73524,1 +-0.233816,0.61562,1.05377,-0.631236,0.488766,-0.269712,-0.472969,-0.548272,1.5151,0.455562,1.43122,-0.310615,1 +-0.105805,0.61562,0.0176215,0.409321,-0.40814,-0.269712,-0.472969,0.254677,1.5151,0.455562,1.43122,-0.310615,1 +-0.105805,0.61562,1.05377,0.9296,-0.0557842,-0.269712,-0.472969,-1.63225,1.5151,1.00583,1.43122,3.73524,1 +0.022206,0.61562,1.05377,-1.35963,0.339281,3.69505,-0.472969,-1.15048,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.022206,0.61562,1.05377,-0.631236,0.307249,-0.269712,-0.472969,-0.949747,-0.657776,1.5561,1.43122,-0.310615,1 +0.022206,0.61562,1.05377,1.44988,0.392669,-0.269712,-0.472969,-1.43152,1.5151,0.455562,1.43122,-0.310615,1 +0.150217,-1.61885,0.0176215,1.44988,-0.546947,-0.269712,-0.472969,0.696299,-0.657776,0.455562,1.43122,-0.310615,1 +0.150217,0.61562,0.0176215,-0.891376,0.360636,-0.269712,-0.472969,1.4591,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.150217,0.61562,1.05377,-0.110957,-0.269333,-0.269712,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.278229,-1.61885,0.0176215,0.409321,0.606218,-0.269712,-0.472969,0.0539396,1.5151,-0.644974,-0.7211,3.73524,1 +0.278229,0.61562,1.05377,0.669461,0.349959,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.40624,-1.61885,1.05377,1.44988,0.766379,-0.269712,-0.472969,0.455414,1.5151,0.455562,1.43122,-0.310615,1 +0.534251,0.61562,1.05377,-0.110957,-0.0664617,-0.269712,-0.472969,-0.749009,1.5151,1.5561,1.43122,-0.310615,1 +0.790274,0.61562,1.05377,-0.371097,-0.162559,-0.269712,-0.472969,0.0539396,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.790274,0.61562,1.05377,-0.371097,-0.0771391,-0.269712,-0.472969,-0.668715,-0.657776,1.5561,1.43122,-0.310615,1 +0.918285,0.61562,1.05377,0.409321,-0.32272,-0.269712,-0.472969,-0.347535,1.5151,2.65663,1.43122,-0.310615,1 +1.17431,0.61562,-1.01852,0.409321,0.360636,-0.269712,1.69973,0.254677,1.5151,0.455562,1.43122,-0.310615,1 +1.30232,0.61562,0.0176215,-0.110957,-0.194591,-0.269712,1.69973,0.0539396,-0.657776,-0.644974,-0.7211,3.15726,1 +1.43033,-1.61885,1.05377,-0.110957,1.14009,3.69505,1.69973,-0.347535,1.5151,1.00583,1.43122,-0.310615,1 +1.55834,0.61562,1.05377,-1.67179,0.17912,-0.269712,-0.472969,-0.548272,-0.657776,0.455562,1.43122,-0.310615,1 +1.94238,0.61562,1.05377,0.9296,-0.0878166,-0.269712,-0.472969,-0.949747,-0.657776,-0.644974,-0.7211,-0.310615,1 +2.1984,0.61562,1.05377,0.409321,0.798412,3.69505,-0.472969,-2.07388,1.5151,1.00583,1.43122,-0.310615,1 +-2.02597,0.61562,1.05377,-0.735292,3.17948,-0.269712,-0.472969,-0.347535,-0.657776,-0.644974,-0.7211,-0.310615,1 +-1.25791,0.61562,1.05377,-1.15152,-2.46889,-0.269712,-0.472969,0.455414,1.5151,0.455562,1.43122,-0.310615,1 +-1.1299,0.61562,1.05377,-1.15152,0.520798,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,3.15726,1 +-1.00188,-1.61885,1.05377,0.9296,1.71667,-0.269712,-0.472969,-0.347535,-0.657776,1.5561,1.43122,3.15726,1 +-0.61785,0.61562,-2.05467,-0.631236,0.63825,-0.269712,1.69973,0.656151,-0.657776,-0.644974,-0.7211,-0.310615,1 +-0.361828,0.61562,1.05377,-0.110957,-0.130526,-0.269712,1.69973,-0.347535,1.5151,0.455562,1.43122,-0.310615,1 +-0.233816,0.61562,1.05377,-0.631236,-0.00239698,-0.269712,-0.472969,-0.949747,1.5151,-0.644974,-0.7211,-0.310615,1 +-0.233816,0.61562,1.05377,-0.110957,-0.098494,-0.269712,-0.472969,-1.07019,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.022206,0.61562,1.05377,-0.527181,0.467411,3.69505,1.69973,0.455414,1.5151,1.5561,2.50738,-0.310615,1 +0.022206,0.61562,1.05377,1.44988,-0.40814,-0.269712,-0.472969,-1.47166,1.5151,2.65663,1.43122,-0.310615,1 +0.022206,0.61562,1.05377,1.44988,1.04399,-0.269712,-0.472969,-1.87314,1.5151,1.00583,1.43122,-0.310615,1 +0.022206,0.61562,1.05377,1.44988,1.32161,-0.269712,-0.472969,-1.59211,1.5151,1.5561,1.43122,-0.310615,1 +0.278229,0.61562,1.05377,-0.110957,0.0189579,-0.269712,-0.472969,-0.708862,1.5151,1.5561,1.43122,3.73524,1 +0.534251,0.61562,1.05377,-0.631236,-0.525592,-0.269712,-0.472969,0.455414,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.534251,0.61562,1.05377,1.97016,-2.46889,-0.269712,-0.472969,-0.508125,1.5151,1.00583,1.43122,-0.310615,1 +0.662262,0.61562,1.05377,-0.631236,0.157765,-0.269712,-0.472969,-0.909599,1.5151,-0.644974,-0.7211,-0.310615,1 +0.790274,0.61562,0.0176215,-0.631236,0.0616677,-0.269712,-0.472969,0.455414,1.5151,1.00583,-0.7211,3.73524,1 +0.790274,0.61562,1.05377,-0.110957,0.115055,-0.269712,-0.472969,-1.91329,1.5151,0.455562,1.43122,-0.310615,1 +0.790274,0.61562,1.05377,-0.110957,3.96961,3.69505,-0.472969,-0.548272,1.5151,0.455562,1.43122,-0.310615,1 +0.790274,0.61562,1.05377,0.409321,-2.46889,-0.269712,-0.472969,-0.829304,1.5151,-0.644974,-0.7211,-0.310615,1 +0.790274,0.61562,1.05377,3.531,-0.354753,-0.269712,-0.472969,0.134235,1.5151,1.5561,1.43122,-0.310615,1 +0.918285,0.61562,1.05377,0.409321,0.392669,-0.269712,-0.472969,-0.42783,1.5151,1.00583,1.43122,-0.310615,1 +1.0463,0.61562,1.05377,0.9296,-0.194591,3.69505,-0.472969,-0.548272,1.5151,0.455562,1.43122,-0.310615,1 +1.17431,0.61562,1.05377,0.9296,0.253862,-0.269712,-0.472969,-1.87314,1.5151,2.65663,1.43122,-0.310615,1 +1.30232,0.61562,0.0176215,1.44988,-0.215946,3.69505,1.69973,-1.87314,-0.657776,-0.644974,-0.7211,-0.310615,1 +1.30232,0.61562,1.05377,-0.110957,0.339281,-0.269712,-0.472969,0.0539396,1.5151,1.5561,1.43122,-0.310615,1 +-0.873873,0.61562,1.05377,-0.110957,-0.632366,-0.269712,1.69973,-0.347535,-0.657776,1.5561,1.43122,-0.310615,1 +-0.61785,0.61562,1.05377,-0.631236,-0.600334,-0.269712,-0.472969,-0.749009,1.5151,0.455562,1.43122,3.73524,1 +-0.489839,0.61562,-1.01852,0.9296,0.606218,-0.269712,-0.472969,0.455414,1.5151,2.65663,1.43122,-0.310615,1 +-0.489839,0.61562,1.05377,-0.110957,0.627572,-0.269712,-0.472969,-1.55196,1.5151,1.5561,1.43122,-0.310615,1 +-0.233816,0.61562,-2.05467,0.409321,0.435378,3.69505,-0.472969,1.4591,-0.657776,1.5561,1.43122,-0.310615,1 +-0.105805,-1.61885,0.0176215,0.149182,0.17912,3.69505,-0.472969,1.25836,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.022206,-1.61885,1.05377,0.305266,-0.183914,-0.269712,-0.472969,-1.23078,1.5151,1.00583,1.43122,-0.310615,1 +0.150217,0.61562,1.05377,-0.110957,1.17212,-0.269712,-0.472969,-0.749009,1.5151,0.455562,1.43122,-0.310615,1 +0.150217,0.61562,1.05377,0.409321,0.0296354,-0.269712,-0.472969,0.0539396,1.5151,0.455562,1.43122,-0.310615,1 +0.40624,0.61562,0.0176215,0.149182,-0.760496,-0.269712,-0.472969,0.455414,-0.657776,1.5561,1.43122,-0.310615,1 +0.534251,0.61562,1.05377,-1.04746,1.1828,-0.269712,1.69973,-1.71255,1.5151,0.455562,1.43122,-0.310615,1 +0.534251,0.61562,1.05377,-0.110957,0.712992,-0.269712,-0.472969,-1.15048,1.5151,0.455562,1.43122,-0.310615,1 +0.534251,0.61562,1.05377,0.409321,1.8448,-0.269712,-0.472969,-0.58842,1.5151,1.5561,1.43122,-0.310615,1 +0.534251,0.61562,1.05377,1.44988,0.157765,-0.269712,1.69973,-2.27461,1.5151,3.75717,1.43122,-0.310615,1 +0.662262,0.61562,0.0176215,0.669461,3.06203,-0.269712,-0.472969,-0.347535,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.662262,0.61562,1.05377,2.49044,0.574185,-0.269712,1.69973,-0.749009,1.5151,1.00583,1.43122,-0.310615,1 +0.790274,0.61562,1.05377,0.409321,-0.162559,-0.269712,-0.472969,-1.35122,-0.657776,1.00583,1.43122,-0.310615,1 +0.918285,0.61562,-2.05467,0.409321,0.68096,-0.269712,-0.472969,-0.10665,-0.657776,-0.644974,-0.7211,-0.310615,1 +0.918285,0.61562,-1.01852,1.44988,0.648927,3.69505,-0.472969,0.174382,1.5151,1.5561,1.43122,-0.310615,1 +0.918285,0.61562,1.05377,0.669461,0.17912,-0.269712,-0.472969,-1.71255,1.5151,1.5561,1.43122,-0.310615,1 +1.0463,-1.61885,-1.01852,-0.631236,0.510121,-0.269712,-0.472969,0.455414,-0.657776,0.455562,1.43122,-0.310615,1 +1.0463,0.61562,1.05377,0.9296,-0.0130744,-0.269712,1.69973,-0.58842,1.5151,1.00583,1.43122,-0.310615,1 +1.0463,0.61562,1.05377,1.97016,1.67396,-0.269712,1.69973,-0.668715,1.5151,1.5561,1.43122,-0.310615,1 +1.30232,0.61562,-1.01852,0.20121,-0.717786,-0.269712,1.69973,-1.59211,1.5151,1.5561,1.43122,-0.310615,1 +1.43033,0.61562,1.05377,-0.110957,-2.46889,-0.269712,-0.472969,-0.548272,-0.657776,-0.644974,-0.7211,-0.310615,1 +1.43033,0.61562,1.05377,0.409321,0.349959,3.69505,3.87243,-0.789157,1.5151,-0.644974,-0.7211,-0.310615,1 +2.1984,0.61562,1.05377,1.97016,0.339281,3.69505,-0.472969,-1.07019,1.5151,1.5561,1.43122,-0.310615,1 +2.32641,0.61562,1.05377,0.409321,-2.46889,-0.269712,-0.472969,-1.79284,1.5151,0.455562,1.43122,-0.310615,1 +-0.873873,0.61562,1.05377,-0.631236,1.11874,-0.269712,-0.472969,-0.829304,1.5151,2.65663,1.43122,-0.310615,1 +-0.61785,0.61562,1.05377,0.409321,0.606218,-0.269712,-0.472969,-0.146798,1.5151,1.5561,1.43122,-0.310615,1 +-0.489839,0.61562,1.05377,0.149182,2.77374,-0.269712,-0.472969,-0.146798,-0.657776,-0.644974,-0.7211,-0.310615,1 +-0.105805,-1.61885,1.05377,-0.631236,-0.280011,-0.269712,-0.472969,-1.63225,1.5151,1.5561,1.43122,3.15726,1 +-0.105805,0.61562,1.05377,1.44988,0.63825,-0.269712,1.69973,0.776594,1.5151,2.65663,1.43122,-0.310615,1 +0.150217,0.61562,1.05377,-0.215013,-0.205269,-0.269712,-0.472969,-1.71255,1.5151,-0.644974,-0.7211,-0.310615,1 +0.150217,0.61562,1.05377,0.9296,-0.098494,-0.269712,-0.472969,-0.668715,-0.657776,1.5561,1.43122,-0.310615,1 +0.278229,0.61562,1.05377,0.409321,-0.00239698,-0.269712,1.69973,0.0539396,1.5151,4.85771,1.43122,-0.310615,1 +0.278229,0.61562,1.05377,0.409321,1.17212,-0.269712,1.69973,-0.548272,1.5151,2.10637,1.43122,-0.310615,1 +0.534251,0.61562,1.05377,0.409321,0.371314,-0.269712,-0.472969,-0.186945,1.5151,1.5561,1.43122,-0.310615,1 +0.534251,0.61562,1.05377,1.44988,1.06535,-0.269712,-0.472969,-1.79284,1.5151,2.10637,-0.7211,-0.310615,1 +0.790274,-1.61885,0.0176215,-0.110957,0.670282,-0.269712,1.69973,-1.55196,1.5151,-0.644974,1.43122,-0.310615,1 +1.0463,0.61562,1.05377,1.18974,1.1828,3.69505,-0.472969,0.455414,1.5151,2.65663,1.43122,-0.310615,1 +1.30232,-1.61885,-1.01852,2.49044,1.72735,-0.269712,-0.472969,-1.15048,1.5151,0.455562,1.43122,3.73524,1 +2.1984,0.61562,1.05377,-0.110957,0.467411,-0.269712,1.69973,-0.949747,1.5151,0.455562,1.43122,-0.310615,1 diff --git a/data/hepatitis.arff b/data/hepatitis.arff new file mode 100755 index 0000000..88e9141 --- /dev/null +++ b/data/hepatitis.arff @@ -0,0 +1,177 @@ +@relation hepatitis +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'clase' {0,1} +@data +-0.891303,2.93793,-0.965749,0.426643,1.34477,0.803631,0.509525,-1.22205,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.00997967,-0.733599,0.437499,-0.996996,-0.904553,1 +0.700309,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,-1.22205,0.843212,0.508413,0.712425,0.41075,0.390582,-0.387099,0.79567,-0.465525,0.0582354,-0.996996,-0.904553,1 +2.92857,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,0.167263,-0.577223,0.437499,-0.996996,-0.904553,1 +-0.811722,-0.338179,-2.90979,-2.32876,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.638387,-0.353828,0.437499,1.27432,-0.904553,1 +-0.57298,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-1.37958,1.29929,0.437499,-0.996996,-0.904553,1 +-0.57298,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.387099,0.15115,-0.621902,0.437499,1.13236,-0.904553,1 +0.77989,-0.338179,-0.965749,0.426643,-0.698754,0.803631,-1.81331,0.49993,0.843212,-1.46169,-1.09784,0.41075,0.390582,-1.12481,-1.37958,-0.934654,-2.59661,-0.996996,-0.904553,0 +-1.44837,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-1.37958,-0.934654,-2.59661,-0.996996,-0.904553,1 +-0.175077,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.551035,-1.37958,-0.398507,0.74091,-0.996996,-0.904553,1 +-0.891303,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-1.37958,0.405713,0.361647,-0.996996,-0.904553,1 +-0.175077,-0.338179,-0.965749,-2.32876,1.34477,0.803631,0.509525,-1.22205,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.0592283,-0.122771,-0.599562,0.74091,1.41627,-0.904553,1 +-0.732141,-0.338179,0.978291,-2.32876,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.305131,-0.428918,1.84661,0.209941,0.53614,-0.904553,1 +-0.0159161,-0.338179,0.978291,-2.32876,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.387099,-0.0744317,-0.26447,0.361647,0.479357,-0.904553,1 +-0.891303,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,0.678481,-0.461144,0.673787,1.12017,1.21753,-0.904553,1 +0.461567,-0.338179,-0.965749,-2.32876,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-1.12481,-1.37958,-0.26447,-2.59661,-0.996996,-0.904553,1 +-0.254658,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,0.712425,-1.71146,0.390582,0.514546,-0.219449,0.0594518,-0.396881,0.309008,-0.904553,1 +1.9736,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.141196,0.263941,-0.342658,0.665058,-0.996996,-0.904553,1 +-0.0954967,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.633002,-0.380579,0.919521,0.437499,0.791662,-0.904553,1 +-0.254658,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.525596,-0.465525,0.513352,1.41627,1.09839,1 +-0.254658,-0.338179,-0.965749,-2.32876,1.34477,0.803631,0.509525,-1.22205,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.251675,-0.621902,0.589205,0.763271,-0.904553,1 +-1.52795,2.93793,0.978291,-2.32876,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.387099,-0.606161,-0.71126,0.589205,0.820054,-0.904553,1 +-1.13004,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,-1.22205,-0.750664,-1.46169,-1.09784,0.41075,0.390582,-0.141196,0.763444,0.159979,0.513352,0.110269,-0.904553,1 +-0.811722,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.00997967,-0.71126,0.437499,1.84214,-0.904553,1 +0.0636645,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.387099,-0.412805,-0.230961,0.968469,0.3374,-0.904553,1 +-1.28921,2.93793,-0.965749,-2.32876,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.796938,-0.6545,-0.733599,0.665058,0.990402,-0.904553,1 +-1.13004,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.469067,0.15115,-0.420847,0.285794,1.84214,-0.904553,1 +0.620729,-0.338179,-0.965749,-2.32876,-0.698754,-1.17356,-1.81331,0.49993,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.633002,-0.00997967,-0.398507,0.209941,-0.996996,-0.904553,1 +1.33695,2.93793,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,-1.09784,0.41075,0.390582,0.0227394,1.44019,-0.320319,-0.548587,0.0250943,-0.904553,1 +1.5757,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,-1.22205,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.0592283,-0.122771,-0.655411,0.285794,1.84214,-0.904553,1 +0.77989,-0.338179,-0.965749,-2.32876,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.122771,-0.28681,0.892616,0.479357,-0.904553,1 +-0.175077,-0.338179,-0.965749,-2.32876,-0.698754,-1.17356,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,0.760449,3.13206,0.159979,0.285794,0.13866,-0.904553,0 +1.65528,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,-2.94403,-2.34454,0.508413,0.712425,0.41075,0.390582,-0.305131,-1.37958,-0.26447,-2.59661,-0.996996,-0.904553,0 +-0.0159161,2.93793,0.978291,-2.32876,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.0744317,-0.342658,1.19603,1.10397,-0.904553,1 +-1.20962,2.93793,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.71497,0.79567,-0.610732,0.285794,0.706488,-0.904553,1 +-0.4934,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.387099,-0.445031,0.092961,0.665058,1.07558,-0.904553,1 +-0.334238,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,-1.09784,0.41075,0.390582,-0.633002,-0.300014,-0.621902,0.589205,-0.996996,-0.904553,0 +-1.44837,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,-1.46169,0.712425,0.41075,0.390582,-0.0592283,1.74634,0.740805,0.513352,1.55823,-0.904553,1 +-1.68711,2.93793,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,-1.22205,-0.750664,-1.46169,-1.09784,0.41075,0.390582,0.760449,1.03737,-0.175113,0.361647,-0.996996,-0.904553,1 +0.0636645,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.00997967,-0.778278,0.437499,1.84214,-0.904553,1 +1.89402,-0.338179,0.978291,0.426643,-0.698754,-1.17356,0.509525,0.49993,-0.750664,-1.46169,-1.09784,-1.71146,0.390582,-0.878906,1.52076,-0.342658,-0.396881,1.10397,1.09839,1 +0.85947,-0.338179,-0.965749,-2.32876,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.17111,-0.320319,0.437499,-0.400777,-0.904553,1 +-1.44837,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,-2.94403,-2.34454,-3.43179,-2.9081,-3.83367,-3.93372,2.64571,-0.477257,-0.755938,0.892616,-0.996996,-0.904553,1 +-0.652561,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.638387,0.0706215,0.74091,0.706488,-0.904553,1 +1.17779,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.235562,-0.733599,0.74091,1.84214,-0.904553,1 +-0.57298,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-1.12481,-1.37958,0.0259426,-2.59661,-0.996996,-0.904553,1 +-1.05046,-0.338179,0.978291,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.187223,0.294016,0.74091,-0.996996,-0.904553,1 +-0.334238,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.633002,-0.0905447,-0.0410758,0.285794,-0.996996,-0.904553,1 +-1.05046,2.93793,0.978291,0.426643,-0.698754,-1.17356,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,0.35061,1.698,3.75663,-0.0934702,0.309008,-0.904553,1 +-0.413819,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,-1.46169,0.712425,0.41075,0.390582,-0.469067,-0.00997967,-0.443186,0.589205,1.41627,-0.904553,1 +-0.254658,-0.338179,0.978291,-2.32876,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,-1.09784,0.41075,0.390582,-0.551035,0.63454,-0.208622,0.589205,1.18914,-0.904553,1 +-0.175077,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.387099,-0.00997967,-0.26447,0.437499,-0.996996,-0.904553,1 +-0.175077,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.00997967,-0.71126,0.437499,-0.996996,-0.904553,1 +0.222826,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.633002,0.392845,0.684957,0.74091,0.990402,-0.904553,1 +-0.0954967,-0.338179,0.978291,-2.32876,-0.698754,0.803631,0.509525,0.49993,-0.750664,-1.46169,0.712425,0.41075,0.390582,-0.141196,-0.00997967,-0.588392,0.437499,1.84214,-0.904553,1 +-0.891303,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.573935,-0.0634152,0.589205,1.10397,-0.904553,1 +-0.334238,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.469067,0.102811,-0.27564,-2.59661,-0.996996,-0.904553,1 +-0.57298,-0.338179,-0.965749,0.426643,-2.74228,-3.15074,-4.13615,-2.94403,-2.34454,-3.43179,-2.9081,-3.83367,-3.93372,-1.12481,-1.37958,-0.934654,-2.59661,-0.996996,-0.904553,1 +-0.891303,-0.338179,0.978291,-2.32876,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.541709,-0.510204,0.361647,0.479357,-0.904553,1 +1.81444,-0.338179,0.978291,-2.32876,-0.698754,-1.17356,0.509525,-1.22205,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.0905447,-0.510204,0.665058,1.10397,-0.904553,1 +0.302406,2.93793,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,-1.46169,0.712425,0.41075,0.390582,-0.305131,-0.00997967,-0.0969244,-2.59661,-0.996996,-0.904553,1 +-0.334238,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.960647,-0.28681,0.816763,1.84214,-0.904553,1 +-0.732141,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,0.263941,-0.219791,0.437499,1.55823,-0.904553,1 +-0.732141,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,-1.09784,0.41075,-1.77157,1.74406,2.08471,-0.331489,-0.0176174,-0.173646,-0.904553,1 +-0.413819,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,-1.22205,-0.750664,-1.46169,0.712425,0.41075,0.390582,-0.551035,1.26295,-0.443186,-0.245176,0.167051,-0.904553,1 +0.620729,-0.338179,0.978291,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.469067,0.280054,-0.454356,0.0582354,0.876837,-0.904553,1 +-1.13004,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.469067,-1.37958,-0.510204,0.589205,-0.996996,-0.904553,1 +1.17779,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.380579,-0.566053,-0.321029,-0.996996,-0.904553,1 +1.25737,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,-1.09784,-1.71146,0.390582,2.23587,-1.37958,-0.398507,-0.62444,1.07558,-0.904553,0 +-0.175077,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.831743,-0.767108,0.437499,0.53614,-0.904553,1 +0.222826,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,0.186675,-0.283901,-0.175113,0.209941,-0.996996,-0.904553,1 +-1.36879,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.469067,-0.0583187,-0.499035,0.665058,-0.996996,-0.904553,1 +-0.57298,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,-1.22205,-0.750664,0.508413,-1.09784,0.41075,0.390582,1.17029,0.666766,1.09824,-2.59661,-0.996996,-0.904553,0 +0.77989,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,-2.94403,-2.34454,-3.43179,-2.9081,-3.83367,-3.93372,-0.387099,-0.154997,2.09234,0.74091,-0.996996,-0.904553,1 +-0.413819,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.305131,-1.37958,-0.432016,0.437499,0.621314,-0.904553,1 +0.700309,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,0.104707,0.231715,0.182319,1.42359,-0.996996,-0.904553,1 +-0.732141,-0.338179,-0.965749,-2.32876,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.49337,-0.432016,0.513352,0.592923,-0.904553,1 +1.33695,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,-1.22205,-0.750664,-1.46169,-1.09784,0.41075,0.390582,0.514546,1.31129,1.76842,-0.0934702,-0.996996,-0.904553,0 +-0.57298,2.93793,-0.965749,-2.32876,1.34477,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.633002,-0.896195,-0.666581,0.437499,1.16075,-0.904553,1 +-0.57298,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,-1.22205,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.305131,-0.219449,-0.420847,0.74091,0.621314,-0.904553,1 +-1.05046,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.00997967,-0.588392,1.12017,-0.996996,-0.904553,1 +-1.44837,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.469067,-1.37958,-0.778278,1.04432,-0.996996,-0.904553,1 +-0.413819,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-0.380579,1.56737,0.589205,1.84214,-0.904553,1 +-0.891303,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,0.231715,-0.588392,0.437499,1.84214,-0.904553,1 +2.05318,2.93793,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,-3.43179,-2.9081,-3.83367,-3.93372,0.104707,1.50464,-0.163943,-0.396881,-0.996996,-0.904553,1 +1.65528,2.93793,0.978291,0.426643,-0.698754,-1.17356,0.509525,0.49993,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.0592283,0.892348,0.807824,0.361647,0.649705,-0.904553,1 +-1.05046,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,0.186675,-0.670613,0.439223,0.437499,0.309008,-0.904553,1 +0.222826,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,-1.46169,0.712425,0.41075,-1.77157,-0.387099,0.79567,-0.320319,-2.59661,0.167051,1.09839,0 +-0.891303,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,0.49993,-0.750664,0.508413,-1.09784,-1.71146,-1.77157,0.924384,1.27906,-0.219791,-0.472734,-0.996996,1.09839,0 +-0.254658,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,-0.750664,0.508413,-1.09784,-1.71146,-1.77157,-0.141196,0.521749,-0.755938,-0.472734,-0.996996,1.09839,0 +-0.254658,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,-1.22205,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.633002,-0.154997,-0.733599,0.74091,1.38788,1.09839,1 +0.700309,2.93793,-0.965749,0.426643,-0.698754,0.803631,0.509525,-1.22205,-0.750664,-1.46169,-1.09784,0.41075,0.390582,-0.387099,2.32641,0.372204,-0.0176174,0.167051,1.09839,1 +0.0636645,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,-1.46169,-1.09784,0.41075,-1.77157,2.64571,-1.37958,-0.320319,-0.0934702,-0.996996,1.09839,0 +-0.652561,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,-2.94403,-2.34454,0.508413,0.712425,0.41075,0.390582,-0.305131,-1.37958,-0.26447,0.437499,-0.996996,1.09839,1 +0.85947,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,0.104707,-1.37958,-0.163943,-0.396881,-0.996996,1.09839,1 +1.41653,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,-0.750664,-1.46169,-1.09784,0.41075,0.390582,0.104707,0.344506,0.818993,0.134088,0.0818772,1.09839,0 +-0.0954967,-0.338179,-0.965749,-2.32876,-0.698754,-1.17356,-1.81331,-1.22205,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.633002,-0.735065,-0.163943,0.589205,0.905228,1.09839,1 +-0.891303,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.469067,0.989026,0.495071,0.361647,1.84214,1.09839,1 +0.222826,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,-1.22205,-0.750664,0.508413,-1.09784,0.41075,0.390582,1.33422,0.457297,-0.208622,0.0582354,-0.996996,1.09839,1 +0.461567,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,-1.09784,0.41075,-1.77157,0.514546,-0.0260927,-0.67775,0.589205,0.876837,1.09839,0 +1.49612,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,-1.22205,-0.750664,-1.46169,-1.09784,0.41075,0.390582,-1.12481,-1.37958,-0.487865,-2.59661,-0.996996,1.09839,1 +0.541148,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,-0.750664,0.508413,-1.09784,-1.71146,-1.77157,2.80964,0.602314,0.818993,-0.548587,-0.116863,1.09839,0 +-1.52795,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.551035,-1.37958,-0.666581,-2.59661,-0.996996,1.09839,1 +-1.13004,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,0.842417,1.3274,1.60087,-0.321029,0.876837,1.09839,1 +0.77989,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,-0.750664,-1.46169,-1.09784,0.41075,-1.77157,2.64571,2.08471,2.07,0.361647,0.450965,1.09839,1 +0.461567,-0.338179,0.978291,0.426643,-0.698754,-1.17356,0.509525,0.49993,-0.750664,0.508413,0.712425,-1.71146,-1.77157,0.268643,0.00613334,-0.71126,-1.0037,0.309008,1.09839,0 +-1.28921,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.633002,-1.37958,-0.554883,2.25797,-0.996996,1.09839,1 +-0.4934,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,-2.94403,-2.34454,-1.46169,-1.09784,-1.71146,0.390582,0.104707,0.844009,-0.28681,-0.62444,-0.996996,1.09839,0 +0.302406,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,0.760449,-1.37958,6.30333,-2.59661,-0.996996,1.09839,1 +1.01863,-0.338179,-0.965749,-2.32876,1.34477,0.803631,0.509525,-1.22205,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.305131,1.11793,1.57853,0.134088,0.905228,1.09839,1 +-0.652561,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,0.712425,-1.71146,0.390582,-0.551035,-0.364466,-0.0410758,-0.321029,-0.116863,1.09839,0 +-2.72166,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,-0.750664,-1.46169,0.712425,0.41075,0.390582,-0.551035,2.74534,-0.655411,0.589205,-0.996996,1.09839,1 +0.0636645,-0.338179,-0.965749,-2.32876,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,-1.09784,0.41075,0.390582,-0.71497,-0.380579,-0.175113,0.285794,-0.173646,1.09839,0 +0.85947,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.00997967,-0.599562,0.437499,-0.996996,1.09839,1 +0.302406,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,-1.46169,0.712425,0.41075,0.390582,-0.141196,-0.0744317,-0.208622,-0.321029,-0.996996,-0.904553,1 +-0.413819,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.223164,0.892348,-0.0969244,-0.0934702,-0.996996,1.09839,1 +2.21234,2.93793,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,1.49816,0.537862,0.584429,-2.59661,-0.996996,1.09839,1 +-1.36879,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-1.37958,-0.554883,0.513352,-0.996996,1.09839,1 +0.700309,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,0.860122,-0.029906,0.361647,0.763271,1.09839,1 +1.5757,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,-2.94403,-2.34454,0.508413,-1.09784,0.41075,0.390582,-1.12481,-1.37958,-0.934654,-2.59661,-0.996996,1.09839,0 +1.01863,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,-1.22205,-0.750664,0.508413,0.712425,0.41075,0.390582,1.49816,-0.00997967,-0.621902,0.285794,-0.996996,1.09839,1 +1.17779,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,-1.22205,-0.750664,0.508413,-1.09784,0.41075,0.390582,1.25226,0.0705853,0.774314,0.437499,-0.996996,1.09839,0 +-1.68711,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,-1.09784,-1.71146,0.390582,-0.305131,1.1985,0.383374,-0.396881,-0.343994,1.09839,1 +0.0636645,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,-1.46169,0.712425,0.41075,0.390582,0.104707,-0.00997967,-0.487865,-2.59661,-0.996996,1.09839,1 +-0.334238,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,-1.09784,0.41075,0.390582,-0.387099,-1.37958,1.64555,0.665058,-0.996996,1.09839,1 +0.700309,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,-0.750664,-1.46169,-1.09784,0.41075,0.390582,-0.305131,-0.00997967,-0.0969244,0.437499,1.04719,1.09839,1 +-0.57298,2.93793,0.978291,0.426643,-0.698754,-1.17356,-1.81331,-1.22205,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.551035,-0.251675,-0.666581,0.513352,1.84214,1.09839,1 +-1.05046,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,-2.94403,-2.34454,0.508413,-1.09784,-1.71146,0.390582,-0.305131,-1.37958,-0.71126,0.437499,-0.996996,1.09839,1 +0.700309,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,-1.46169,0.712425,-1.71146,-1.77157,1.17029,1.11793,-0.0969244,-0.776145,-0.0884713,1.09839,0 +1.01863,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,0.712425,-1.71146,0.390582,-0.141196,-0.00997967,0.092961,-0.245176,0.876837,1.09839,1 +1.25737,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,0.508413,-1.09784,-1.71146,0.390582,2.64571,-0.0583187,-0.320319,-0.0934702,-0.145254,1.09839,0 +1.01863,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.305131,-0.00997967,-0.599562,0.816763,-0.996996,1.09839,1 +-0.811722,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,-1.46169,0.712425,0.41075,0.390582,5.43261,-1.37958,0.193489,-0.927851,-0.996996,1.09839,0 +0.541148,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,0.49993,-0.750664,0.508413,-1.09784,0.41075,0.390582,0.514546,1.16627,2.17053,0.285794,-0.996996,1.09839,1 +2.45108,-0.338179,0.978291,-2.32876,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.305131,0.47341,-0.353828,-0.0176174,0.422574,1.09839,1 +-0.254658,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.796938,2.53587,-0.387337,0.285794,1.55823,1.09839,0 +-1.28921,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,-1.22205,-0.750664,-1.46169,-1.09784,-1.71146,-1.77157,-0.0592283,1.53687,1.08707,0.816763,0.621314,1.09839,1 +0.77989,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,-1.22205,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.469067,-1.37958,-0.566053,0.816763,-0.996996,1.09839,1 +-0.254658,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,-0.750664,0.508413,-1.09784,0.41075,-1.77157,0.186675,0.715105,0.629108,0.0582354,0.592923,1.09839,1 +0.461567,-0.338179,0.978291,0.426643,-0.698754,-1.17356,0.509525,0.49993,-0.750664,0.508413,-1.09784,-1.71146,-1.77157,-0.305131,1.29517,-0.599562,-0.62444,-0.116863,1.09839,0 +0.302406,-0.338179,0.978291,-2.32876,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.0592283,-0.00997967,-0.443186,0.589205,1.41627,1.09839,1 +-0.413819,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,-1.22205,-0.750664,0.508413,-1.09784,0.41075,-1.77157,0.268643,3.37375,-0.26447,-0.548587,-0.996996,1.09839,1 +1.01863,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,-2.94403,-2.34454,-1.46169,0.712425,-1.71146,0.390582,2.07193,0.553975,-0.621902,0.0582354,0.223834,1.09839,0 +0.77989,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,-1.46169,-1.09784,0.41075,-1.77157,-0.305131,-1.37958,-0.71126,-0.321029,0.791662,1.09839,1 +0.620729,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,0.49993,0.843212,-1.46169,-1.09784,0.41075,0.390582,0.0227394,-0.00997967,-0.152773,0.0582354,-0.00329707,1.09839,0 +0.302406,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,-1.09784,-1.71146,0.390582,0.432578,-1.37958,0.338695,-0.776145,-0.996996,1.09839,0 +-0.811722,-0.338179,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.141196,-0.17111,0.997709,0.589205,0.53614,1.09839,1 +-0.0159161,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,-1.46169,-1.09784,0.41075,-1.77157,2.31784,-0.33224,0.405713,-0.0176174,-0.996996,1.09839,0 +2.29192,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,-1.81331,-2.94403,-2.34454,-3.43179,-2.9081,-3.83367,-3.93372,0.268643,0.376732,4.96296,-0.472734,-0.00329707,1.09839,0 +-1.68711,-0.338179,-0.965749,0.426643,1.34477,0.803631,0.509525,0.49993,-2.34454,0.508413,0.712425,0.41075,0.390582,-0.387099,0.0544723,0.763145,0.437499,-0.996996,1.09839,1 +-0.413819,-0.338179,0.978291,0.426643,1.34477,0.803631,0.509525,0.49993,0.843212,0.508413,0.712425,0.41075,0.390582,-0.633002,0.553975,-0.599562,0.437499,-0.996996,1.09839,1 +0.381987,-0.338179,0.978291,0.426643,-0.698754,-1.17356,-1.81331,0.49993,0.843212,0.508413,-1.09784,-1.71146,-1.77157,5.10474,-1.37958,1.76842,-0.0934702,0.422574,1.09839,0 +0.222826,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,-0.750664,0.508413,0.712425,0.41075,0.390582,-0.387099,0.650653,0.651447,0.665058,-0.996996,1.09839,1 +1.5757,-0.338179,-0.965749,0.426643,-0.698754,-1.17356,0.509525,-1.22205,-0.750664,0.508413,-1.09784,0.41075,0.390582,-0.469067,-0.17111,-0.71126,0.513352,-0.996996,1.09839,1 +0.939051,2.93793,-0.965749,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,-1.46169,-1.09784,0.41075,-1.77157,0.104707,-0.0744317,-0.722429,0.513352,0.365791,1.09839,1 +0.143245,-0.338179,0.978291,0.426643,-0.698754,0.803631,0.509525,0.49993,0.843212,-1.46169,-1.09784,-1.71146,0.390582,-0.141196,0.231715,-0.722429,-0.245176,0.195443,1.09839,0 diff --git a/data/ilpd-indian-liver.arff b/data/ilpd-indian-liver.arff new file mode 100755 index 0000000..b85bbce --- /dev/null +++ b/data/ilpd-indian-liver.arff @@ -0,0 +1,595 @@ +@relation ilpd-indian-liver +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'clase' {0,1} +@data +1.25102,-0.418518,-0.49354,-0.426349,-0.354361,-0.31812,0.291869,0.198798,-0.123691,0 +1.06572,1.22412,1.4292,1.68118,-0.0915207,-0.0343031,0.936762,0.0730938,-0.611552,0 +1.06572,0.644365,0.930709,0.820883,-0.113424,-0.145061,0.476124,0.198798,-0.154182,0 +0.818653,-0.370206,-0.386721,-0.44693,-0.365313,-0.311198,0.291869,0.324502,0.181222,0 +1.68339,0.0968192,0.182978,-0.393419,-0.294127,-0.176212,0.752507,-0.932539,-1.64826,0 +0.0774473,-0.241371,-0.279903,-0.339907,-0.337934,-0.331965,1.02889,1.58154,1.09596,0 +-1.1579,-0.38631,-0.457934,-0.562186,-0.354361,-0.338887,0.476124,0.450206,0.181222,0 +-0.972594,-0.38631,-0.422328,-0.364605,-0.365313,-0.342348,0.199741,0.57591,0.486135,0 +-1.7138,-0.38631,-0.422328,-0.364605,-0.321506,-0.314659,0.844634,1.20443,0.791048,1 +0.633352,-0.418518,-0.457934,-0.00237233,-0.151755,-0.179673,0.291869,0.324502,0.181222,0 +0.756886,-0.434623,-0.49354,-0.331674,-0.162707,-0.176212,-0.537279,-0.555427,-0.428604,0 +1.68339,-0.0964324,-0.0662654,-0.125861,-0.272223,-0.186595,0.844634,-0.178314,-1.03843,0 +1.18926,-0.38631,-0.422328,0.0799532,-0.107948,-0.179673,0.476124,0.324502,-0.123691,1 +1.80693,-0.354101,-0.386721,-0.315209,-0.321506,-0.276586,1.48953,1.20443,0.181222,0 +1.00395,-0.418518,-0.457934,-0.599232,-0.151755,-0.238513,-0.629407,-0.555427,-0.215165,0 +-1.21966,-0.434623,-0.49354,-0.442814,0.056327,-0.196979,-0.905789,-1.05824,-0.733517,1 +-0.41669,-0.241371,-0.244297,0.211674,0.477967,1.14596,1.02889,1.58154,1.09596,0 +-0.725526,-0.27358,-0.351115,-0.516907,-0.359837,-0.300814,0.752507,0.450206,-0.0627085,1 +-0.293156,-0.38631,-0.422328,0.0099765,0.828421,0.467568,0.291869,-0.0526103,-0.428604,0 +-0.293156,-0.38631,-0.422328,0.0099765,0.828421,0.467568,0.291869,-0.0526103,-0.428604,0 +0.386283,-0.176954,-0.173084,1.31484,-0.348885,-0.283508,0.752507,-0.681131,-1.19089,0 +0.386283,-0.0642238,-0.0662654,0.787953,-0.321506,-0.262741,0.476124,-0.932539,-1.34334,0 +1.06572,0.563844,0.53904,1.03493,0.193223,-0.151983,-0.0766413,-0.0526103,-0.123691,0 +-0.293156,-0.225267,-0.173084,-0.245233,-0.354361,-0.190056,-2.01132,-1.93817,-1.03843,0 +1.12749,-0.38631,-0.457934,-0.397535,-0.157231,-0.224668,-0.445152,0.953023,2.77298,1 +-0.663759,0.129028,0.182978,-0.00648861,4.34939,2.1497,-1.36643,-0.555427,0.486135,0 +-0.663759,0.129028,0.182978,-0.00648861,4.34939,2.1497,-1.36643,-0.555427,0.486135,0 +-0.663759,0.467218,0.53904,-0.208186,8.75744,2.56158,0.660379,1.07873,0.791048,0 +-1.5285,-0.354101,-0.351115,-0.669209,-0.332458,-0.276586,-2.37983,-1.56106,0.0287654,1 +2.4246,-0.418518,-0.457934,-0.422233,-0.370789,-0.307737,-0.445152,0.0730938,0.486135,1 +0.756886,0.112923,0.147372,-0.414,-0.195562,0.0037699,-1.18217,-2.06388,-1.64826,0 +0.44805,-0.38631,-0.457934,-0.553953,-0.25032,-0.228129,-1.45855,-0.304019,1.40087,0 +0.756886,-0.370206,-0.422328,-0.426349,-0.337934,-0.300814,-1.18217,-0.304019,0.791048,1 +-0.41669,-0.112537,-0.101872,0.491581,-0.1189,-0.183134,-0.813662,-0.178314,-0.428604,1 +-0.41669,-0.112537,-0.101872,0.491581,-0.1189,-0.183134,-0.813662,-0.178314,-0.428604,1 +-0.910827,-0.321893,-0.386721,0.787953,0.116561,-0.103527,0.383997,0.198798,-0.123691,0 +-1.7138,-0.418518,-0.457934,-0.599232,-0.343409,-0.255819,0.660379,0.953023,0.730065,1 +0.0774473,1.75556,2.24814,0.343395,-0.233893,-0.11391,-2.01132,-1.43536,-0.428604,0 +0.200982,-0.305788,-0.315509,-0.113512,-0.233893,-0.151983,-0.629407,-1.18395,-1.00794,0 +0.139214,-0.0964324,-0.0662654,-0.0641165,0.231554,-0.127755,-0.260896,0.198798,0.486135,0 +0.0156802,-0.144745,-0.137478,-0.504558,-0.261272,-0.207362,-1.2743,-0.681131,0.181222,0 +1.06572,-0.434623,-0.49354,-0.537488,-0.211989,0.000308716,-1.45855,-0.681131,0.486135,1 +-0.169621,0.563844,0.610253,1.39716,-0.305079,-0.217746,-0.353024,-1.05824,-1.03843,1 +0.324516,-0.112537,-0.101872,0.512162,1.78669,1.61322,-0.0766413,0.0730938,0.181222,0 +2.48637,-0.370206,-0.422328,-0.339907,-0.348885,-0.328504,0.476124,0.57591,0.181222,1 +-0.601991,-0.241371,-0.315509,-0.0641165,-0.179134,0.235669,0.0154863,0.0730938,-0.123691,1 +-1.46673,0.0968192,0.111766,-0.578651,-0.244844,-0.28697,0.291869,0.953023,1.21793,0 +-0.293156,-0.354101,-0.422328,-0.249349,8.48365,2.94231,-1.45855,-0.429723,1.09596,0 +-0.787293,-0.434623,-0.49354,-0.471628,-0.228417,-0.283508,-0.445152,-0.178314,0.181222,0 +0.633352,2.43194,2.6042,-0.34814,-0.0915207,0.235669,-0.260896,-1.68676,-1.64826,0 +0.0156802,-0.418518,-0.457934,-0.496326,-0.326982,-0.331965,-0.721534,-0.806835,-0.733517,0 +-0.663759,-0.434623,-0.49354,-0.533372,-0.359837,-0.314659,0.107614,0.324502,0.181222,0 +-0.41669,-0.0320152,0.0405532,-0.154675,-0.00390729,1.02482,0.291869,0.953023,1.09596,0 +-0.41669,-0.354101,-0.422328,-0.38107,0.0289478,0.138756,-0.168769,0.450206,0.791048,0 +-0.169621,0.902034,1.07313,-0.0764653,-0.272223,-0.169289,-0.629407,-1.43536,-1.34334,0 +-0.169621,0.902034,1.07313,-0.0764653,-0.272223,-0.169289,-0.629407,-1.43536,-1.34334,0 +-0.725526,-0.402414,-0.457934,-0.38107,-0.299603,-0.300814,1.3974,1.07873,0.181222,1 +0.200982,-0.38631,-0.457934,-0.475744,-0.310554,-0.193518,-0.905789,-0.555427,-0.123691,1 +0.386283,-0.402414,-0.457934,0.314581,-0.211989,-0.31812,-1.18217,-1.43536,-1.03843,0 +1.18926,-0.354101,-0.351115,-0.599232,-0.332458,-0.297353,-0.905789,0.0730938,1.37038,1 +-0.84906,-0.402414,-0.457934,-0.545721,-0.326982,-0.325043,-0.445152,-0.178314,0.181222,0 +0.818653,-0.370206,-0.351115,-0.545721,-0.239368,-0.231591,0.660379,0.57591,0.181222,0 +0.818653,-0.370206,-0.351115,-0.545721,-0.239368,-0.231591,0.660379,0.57591,0.181222,0 +0.756886,-0.418518,-0.457934,-0.339907,-0.25032,-0.0446867,-1.2743,-1.30965,-0.733517,0 +0.756886,-0.321893,-0.386721,-0.129977,-0.222941,-0.0827597,0.0154863,-0.806835,-1.03843,0 +0.756886,-0.305788,-0.279903,0.738557,-0.102472,-0.0758373,-0.813662,-0.806835,-0.428604,0 +0.571585,-0.176954,-0.101872,-0.393419,-0.140803,-0.051609,-0.445152,0.701614,2.0107,0 +-0.478457,-0.241371,-0.244297,-0.311093,-0.151755,-0.179673,-0.0766413,0.827319,1.40087,0 +1.31279,-0.418518,-0.457934,-0.212302,-0.294127,-0.290431,-0.168769,0.701614,1.40087,0 +0.942188,-0.402414,-0.457934,-0.311093,-0.310554,-0.321581,-0.168769,-0.178314,-0.123691,1 +-1.59027,-0.418518,-0.457934,-0.430465,0.467015,0.993668,-0.905789,-0.178314,0.791048,0 +1.86869,-0.402414,-0.457934,-0.422233,-0.332458,-0.280047,-1.91919,-1.68676,-1.03843,0 +1.86869,-0.402414,-0.457934,-0.352256,-0.294127,-0.297353,-1.91919,-1.43536,-0.428604,0 +0.44805,-0.434623,-0.49354,-0.492209,-0.321506,-0.325043,0.107614,0.57591,0.791048,0 +1.43632,-0.418518,-0.49354,-0.599232,-0.332458,-0.304275,-0.629407,-0.304019,0.181222,0 +-0.972594,-0.418518,-0.49354,-0.529256,-0.157231,-0.238513,-1.18217,-0.806835,-0.123691,1 +-0.84906,-0.38631,-0.457934,0.936139,0.592959,-0.321581,-1.09004,-1.05824,-0.733517,0 +1.43632,-0.434623,-0.49354,5.47228,0.0782303,0.0591488,-1.73494,-1.30965,-0.428604,0 +1.55986,-0.305788,-0.315509,-0.595116,-0.376264,-0.297353,-0.260896,0.827319,1.94972,1 +0.818653,-0.0803281,-0.0662654,1.56181,-0.179134,-0.106988,-1.64281,-1.93817,-1.34334,0 +0.818653,-0.144745,-0.137478,2.5703,-0.113424,0.111067,-1.64281,-1.68676,-1.03843,0 +-0.972594,-0.370206,-0.422328,-0.887372,-0.305079,-0.290431,-1.2743,-0.304019,1.09596,0 +0.262749,-0.418518,-0.49354,-0.586884,-0.365313,-0.338887,-0.997917,-0.429723,0.181222,1 +-0.725526,-0.209163,-0.173084,-0.134093,0.620339,0.145678,-0.997917,-0.178314,0.943505,0 +-0.787293,-0.434623,-0.49354,-0.220535,-0.195562,-0.273125,0.936762,1.45584,1.21793,0 +-1.8991,-0.305788,-0.351115,-0.0888141,-0.124376,-0.224668,0.199741,0.953023,1.40087,0 +-1.96087,-0.434623,-0.49354,0.121116,-0.288651,-0.186595,0.660379,0.57591,0.181222,1 +0.818653,-0.402414,-0.457934,0.0305579,-0.261272,-0.176212,-0.260896,-0.0526103,0.181222,0 +-1.65203,-0.434623,-0.457934,1.01846,-0.261272,-0.262741,0.936762,0.0730938,-0.733517,0 +0.942188,0.112923,0.147372,-0.216419,0.209651,0.830993,0.568252,0.198798,-0.428604,0 +0.942188,0.386697,0.467828,-0.315209,1.81407,2.56158,0.752507,0.0730938,-0.489587,0 +0.942188,0.563844,0.610253,0.0717207,1.77027,2.36776,0.291869,-0.178314,-0.733517,0 +0.942188,0.853721,0.895103,0.0305579,1.81407,2.56158,0.844634,-0.178314,-1.03843,0 +0.942188,0.402801,0.432222,-0.356372,0.76271,1.00405,0.476124,-0.178314,-0.733517,0 +0.942188,0.306175,0.325403,-0.504558,0.247981,0.318738,0.291869,-0.304019,-0.733517,0 +1.86869,-0.38631,-0.457934,-0.0353025,-0.305079,-0.300814,-1.91919,-1.18395,0.181222,0 +-0.354923,0.0807149,0.00494701,0.0305579,0.116561,1.80012,0.568252,0.198798,-0.428604,0 +-0.354923,0.531635,0.53904,-0.311093,0.598435,2.9077,-2.2877,-1.81247,-0.733517,0 +-1.65203,-0.434623,-0.49354,-0.105279,0.089182,0.176829,-0.537279,-0.0526103,0.486135,0 +-1.65203,-0.418518,-0.49354,0.0881858,1.24458,1.02136,0.383997,0.701614,0.486135,0 +-1.09613,-0.434623,-0.457934,-0.533372,-0.294127,-0.283508,-2.56409,-1.93817,-0.550569,1 +-1.09613,-0.418518,-0.457934,-0.195837,-0.326982,-0.300814,-1.09004,-1.05824,-0.733517,1 +-1.7138,-0.38631,-0.457934,-0.274047,-0.244844,-0.224668,0.383997,1.33014,1.85824,0 +0.633352,-0.402414,-0.457934,-0.26993,-0.365313,-0.300814,-0.353024,0.198798,0.791048,1 +1.12749,-0.450727,-0.49354,-0.496326,-0.326982,-0.283508,-0.905789,-0.806835,-0.428604,0 +-0.540224,0.322279,0.289797,-0.599232,-0.266748,-0.0619926,-1.2743,-0.681131,0.181222,1 +-0.540224,0.322279,0.289797,-0.599232,-0.266748,-0.0619926,-1.2743,-0.681131,0.181222,1 +-0.540224,-0.402414,-0.457934,-0.545721,-0.283175,-0.245435,-0.445152,-1.18395,-1.34334,1 +-0.540224,-0.402414,-0.457934,-0.545721,-0.283175,-0.245435,-0.445152,-1.18395,-1.34334,1 +-0.540224,-0.38631,-0.49354,0.804418,-0.305079,-0.262741,-0.537279,-0.429723,-0.123691,1 +-1.28143,-0.418518,-0.457934,-0.422233,-0.38174,-0.34581,-0.905789,-1.05824,-0.703026,1 +0.200982,-0.0159109,0.0405532,-0.138209,-0.261272,0.0210758,-0.721534,-1.18395,-0.977448,0 +-1.09613,-0.337997,-0.386721,-0.459279,-0.0969966,-0.245435,-0.353024,0.198798,0.486135,1 +1.80693,-0.434623,-0.49354,-0.0764653,-0.310554,-0.0412255,-1.36643,-1.43536,-1.03843,0 +0.324516,0.402801,0.53904,1.52477,0.549153,0.606016,-0.721534,-1.05824,-0.824991,1 +0.324516,0.644365,0.752678,5.30762,0.0398994,-0.158906,-0.813662,-1.05824,-1.03843,1 +0.200982,-0.418518,-0.49354,5.51344,-0.0367623,0.135295,-1.09004,-1.43536,-1.03843,0 +-0.787293,1.514,1.67844,-0.397535,10.5097,9.81622,-0.721534,0.198798,1.09596,0 +-0.787293,2.02934,1.96329,-0.0435351,6.95041,5.15747,-0.813662,-0.429723,0.181222,0 +-0.787293,2.36753,2.39056,0.0305579,6.40283,3.25382,-0.997917,-0.681131,-0.123691,0 +-0.787293,3.17274,3.49436,0.0387904,2.19738,0.571404,0.568252,0.450206,-0.123691,0 +-0.787293,3.12443,3.10269,-0.00237233,1.32125,0.0106923,0.107614,-0.429723,-0.733517,0 +0.818653,-0.257475,-0.244297,-0.422233,-0.113424,-0.0896821,-0.537279,0.450206,1.40087,1 +1.18926,-0.402414,-0.457934,-0.463395,-0.348885,-0.31812,-0.168769,-0.0526103,-0.123691,0 +-1.03436,-0.434623,-0.49354,-0.467512,-0.244844,-0.280047,0.383997,1.20443,1.40087,1 +0.942188,-0.241371,-0.351115,-0.368721,-0.195562,-0.293892,-2.37983,-1.81247,-0.733517,1 +0.200982,0.402801,0.361009,2.10516,0.286312,-0.0758373,-0.445152,-0.429723,-0.428604,0 +1.18926,-0.0481195,-0.0306592,-0.175256,-0.190086,-0.241974,0.0154863,0.0730938,-0.123691,0 +0.818653,-0.257475,-0.244297,6.60837,-0.107948,-0.0931432,1.3974,0.953023,0.0287654,0 +0.0156802,-0.0803281,0.0761595,-0.113512,-0.129852,-0.155445,-1.2743,-1.05824,-0.428604,0 +0.0156802,-0.0159109,-0.0306592,0.911441,-0.168183,-0.179673,-0.445152,-0.555427,-0.428604,0 +1.55986,-0.418518,-0.457934,-0.220535,-0.343409,-0.283508,-0.629407,-0.806835,-0.581061,1 +-1.65203,-0.402414,-0.457934,-0.376954,-0.255796,-0.273125,0.0154863,0.450206,0.669083,1 +0.509817,-0.38631,-0.386721,-0.216419,-0.348885,-0.331965,0.107614,-0.304019,-0.428604,0 +-1.65203,-0.241371,-0.279903,-0.463395,-0.25032,-0.255819,0.291869,0.57591,0.486135,0 +1.31279,1.28854,1.4648,3.37297,6.40283,16.6798,0.476124,-0.932539,-1.34334,0 +0.0774473,0.225654,0.254191,0.0799532,-0.102472,-0.068915,-0.0766413,-0.806835,-1.03843,0 +-1.65203,-0.402414,-0.457934,-0.0353025,-0.047714,0.104144,-0.905789,-0.806835,-0.428604,0 +-1.65203,-0.402414,-0.457934,-0.0353025,-0.047714,0.104144,-0.905789,-0.806835,-0.428604,0 +-1.83733,-0.402414,-0.457934,0.368093,-0.305079,-0.151983,-0.353024,0.701614,1.70579,0 +0.942188,-0.434623,-0.49354,-0.430465,-0.332458,-0.307737,-0.260896,0.198798,0.486135,1 +1.31279,0.145132,0.218584,-0.541605,-0.359837,-0.276586,0.568252,-1.18395,-1.64826,0 +-0.910827,-0.27358,-0.386721,0.170511,0.0179961,0.100683,-0.813662,-0.555427,-0.123691,0 +-0.910827,-0.27358,-0.386721,0.170511,0.0179961,0.100683,-0.813662,-0.555427,-0.123691,0 +0.0156802,0.032402,0.00494701,-0.418116,-0.0969966,-0.0792985,-0.813662,-0.304019,0.181222,0 +1.25102,-0.402414,-0.457934,-0.368721,-0.343409,-0.304275,-0.997917,-0.304019,0.486135,1 +1.31279,-0.0642238,-0.0662654,-0.504558,-0.326982,-0.248896,-0.905789,-1.68676,-1.64826,0 +1.25102,-0.418518,-0.49354,0.417488,-0.332458,-0.276586,-1.09004,-0.429723,0.486135,0 +0.324516,-0.38631,-0.457934,-0.364605,-0.332458,-0.290431,0.660379,1.70725,2.19365,0 +0.942188,-0.402414,-0.457934,-0.0188374,-0.326982,-0.28697,0.568252,1.07873,0.791048,0 +0.695119,-0.354101,-0.351115,-0.455163,-0.277699,-0.235052,0.383997,0.827319,0.791048,1 +0.324516,-0.27358,-0.244297,-0.298744,-0.343409,-0.311198,-0.537279,-0.304019,0.0592567,0 +0.0774473,-0.402414,-0.457934,-0.44693,-0.332458,-0.241974,-0.445152,-0.304019,-0.123691,0 +0.44805,-0.434623,-0.49354,-0.463395,-0.299603,-0.28697,0.0154863,0.57591,0.791048,1 +-0.663759,0.418905,0.361009,-0.00237233,-0.195562,0.426034,-0.813662,-0.555427,-0.123691,0 +-0.663759,0.869826,0.895103,0.0305579,-0.124376,0.0972218,-0.629407,-0.932539,-0.733517,0 +-0.787293,-0.38631,-0.422328,0.705627,-0.0586657,-0.0966044,-0.260896,-0.0526103,0.181222,0 +1.68339,-0.418518,-0.49354,-0.389302,-0.332458,-0.25928,-0.629407,-1.43536,-1.34334,0 +1.68339,-0.418518,-0.49354,-0.389302,-0.332458,-0.25928,-0.629407,-1.43536,-1.34334,0 +0.324516,-0.337997,-0.386721,-0.0353025,-0.244844,-0.269664,0.660379,0.953023,0.486135,0 +0.942188,1.24022,1.21556,1.89111,0.324643,0.830993,-0.905789,-1.30965,-1.03843,0 +0.942188,1.32075,1.25116,3.126,0.100134,0.26682,-0.260896,-0.429723,-0.428604,0 +0.942188,0.402801,0.432222,1.26956,-0.206513,-0.151983,-0.997917,-1.68676,-1.34334,0 +-0.354923,-0.225267,-0.20869,-0.455163,-0.211989,-0.165828,0.844634,1.45584,1.33989,0 +-0.354923,-0.225267,-0.20869,-0.455163,-0.211989,-0.165828,0.844634,1.45584,1.33989,0 +0.200982,0.193445,0.289797,-0.0353025,-0.370789,-0.124294,0.476124,-0.932539,-1.28236,0 +0.633352,11.547,0.752678,0.170511,-0.222941,-0.151983,-0.260896,-0.806835,-1.03843,0 +0.139214,-0.0481195,0.00494701,0.00586022,-0.0915207,-0.148522,-0.813662,-1.68676,-1.43482,0 +0.942188,3.14053,3.95724,2.76377,-0.151755,-0.238513,0.383997,0.198798,-0.123691,0 +0.942188,0.902034,0.895103,2.71437,-0.261272,-0.269664,0.291869,-0.0526103,-0.428604,0 +1.68339,-0.257475,-0.244297,-0.372837,-0.288651,-0.252358,-0.260896,-0.178314,-0.0322172,0 +-0.046087,-0.225267,-0.315509,0.0305579,1.62789,1.70321,0.107614,0.198798,0.181222,0 +0.633352,1.73946,2.17693,1.89111,-0.25032,-0.162367,-1.36643,-1.93817,-1.43482,0 +-0.84906,-0.434623,-0.49354,-0.475744,-0.179134,-0.262741,-0.445152,0.701614,2.0107,0 +-0.84906,-0.434623,-0.49354,-0.475744,-0.179134,-0.262741,-0.445152,0.701614,2.0107,0 +-0.84906,-0.402414,-0.457934,-0.38107,-0.206513,-0.273125,0.752507,1.07873,0.791048,0 +0.633352,-0.402414,-0.457934,0.787953,0.17132,-0.0377643,-0.721534,-0.681131,-0.428604,0 +1.86869,1.85219,2.67541,3.00251,-0.0531899,-0.235052,-1.09004,-1.18395,-0.733517,0 +1.86869,1.17581,1.25116,1.11725,-0.239368,-0.280047,-1.2743,-1.68676,-1.34334,0 +1.86869,0.757095,1.10874,0.39279,-0.277699,-0.293892,-0.905789,-1.68676,-1.40433,0 +1.86869,-0.0803281,-0.0662654,-0.167023,-0.31603,-0.280047,-3.48536,-2.8181,-1.34334,0 +1.86869,-0.0642238,-0.0662654,-0.298744,-0.261272,-0.252358,-3.20898,-2.06388,0.181222,0 +1.25102,-0.225267,-0.244297,-0.496326,-0.244844,-0.231591,-2.47196,-2.18958,-1.09941,1 +-0.293156,-0.434623,-0.49354,-0.492209,-0.332458,-0.321581,-0.997917,-0.806835,-0.428604,0 +1.18926,-0.354101,-0.386721,-0.368721,-0.343409,-0.314659,0.383997,1.20443,1.40087,0 +-0.41669,-0.289684,-0.386721,0.0305579,-0.113424,-0.0239196,-0.445152,-0.178314,0.181222,1 +0.942188,-0.0159109,0.111766,1.89111,-0.00938313,0.12145,1.21314,0.0730938,-0.764009,0 +0.942188,-0.193058,-0.173084,-0.409884,0.182271,0.474491,-2.2877,-1.93817,-1.03843,0 +0.942188,-0.225267,-0.244297,1.3313,-0.211989,-0.248896,-1.82706,-1.68676,-1.03843,0 +0.200982,-0.402414,-0.457934,-0.298744,-0.266748,-0.283508,-1.18217,-0.806835,-0.123691,1 +0.942188,0.483322,0.610253,0.0964183,0.204175,0.0141534,0.107614,0.701614,1.00449,0 +0.942188,0.402801,0.53904,-0.138209,0.14394,-0.0204584,0.107614,0.450206,0.547118,0 +0.942188,-0.16085,-0.315509,-0.0764653,-0.00938313,-0.203901,0.107614,0.450206,0.486135,0 +0.262749,-0.321893,-0.386721,-0.34814,-0.277699,-0.293892,-0.445152,-0.0526103,0.36417,1 +0.262749,-0.209163,-0.315509,-0.335791,-0.179134,-0.269664,-0.721534,-0.178314,0.486135,1 +0.942188,-0.144745,-0.173084,3.4306,-0.277699,-0.193518,-1.18217,-1.56106,-1.34334,0 +0.942188,-0.209163,-0.137478,1.53712,-0.157231,-0.0204584,-0.445152,-1.30965,-1.25187,0 +-1.1579,-0.434623,-0.457934,-0.611581,-0.376264,-0.269664,-0.721534,-0.932539,-0.581061,0 +-0.231388,-0.38631,-0.457934,-0.500442,-0.321506,-0.31812,-0.353024,-0.178314,-0.123691,1 +-2.33147,3.84912,3.67239,4.64902,3.88394,3.25382,-0.353024,-1.43536,-1.64826,0 +0.262749,-0.434623,-0.49354,-0.298744,-0.168183,-0.196979,-1.36643,-0.932539,-0.123691,0 +0.262749,-0.434623,-0.49354,-0.298744,-0.168183,-0.196979,-1.36643,-0.932539,-0.123691,0 +-0.41669,-0.402414,-0.457934,-0.599232,-0.337934,-0.300814,-0.353024,-0.0526103,0.272696,1 +-1.46673,-0.370206,-0.422328,-0.611581,-0.294127,-0.307737,-0.0766413,0.450206,0.791048,1 +-1.46673,-0.418518,-0.457934,-0.640395,-0.294127,-0.290431,-0.0766413,0.198798,0.181222,1 +0.0156802,-0.128641,-0.101872,-0.525139,-0.288651,-0.304275,1.02889,1.07873,0.486135,0 +-0.293156,0.0485063,0.111766,-0.0229537,-0.168183,-0.17275,0.476124,-0.304019,-0.733517,0 +-0.293156,0.0968192,0.0761595,0.244604,4.76007,4.81135,0.199741,0.827319,1.09596,0 +1.55986,-0.38631,-0.422328,-0.290512,-0.151755,-0.051609,-0.353024,-0.429723,-0.7945,0 +0.0156802,-0.38631,-0.422328,-0.418116,-0.31603,-0.266202,0.107614,0.953023,-2.86791,0 +-1.03436,-0.402414,-0.422328,-0.414,-0.332458,-0.331965,-2.19558,-0.932539,1.40087,0 +-0.169621,-0.0964324,-0.0662654,-0.294628,-0.113424,0.242592,0.476124,0.0730938,-0.428604,0 +-1.40496,-0.0964324,-0.173084,-0.537488,0.00704439,0.0591488,-0.905789,-0.0526103,0.791048,1 +-2.2697,-0.38631,-0.457934,0.454534,-0.305079,-0.179673,0.936762,0.324502,-0.428604,0 +-0.41669,-0.257475,-0.173084,-0.455163,-0.343409,-0.262741,0.660379,0.57591,0.181222,0 +1.31279,-0.434623,-0.457934,-0.784465,-0.348885,0.131834,-1.36643,0.198798,2.92544,1 +0.633352,-0.38631,-0.457934,-0.718604,-0.244844,-0.325043,-0.260896,0.0730938,0.181222,1 +0.262749,-0.354101,-0.351115,-0.541605,-0.277699,-0.273125,0.476124,1.45584,1.70579,0 +-2.39324,-0.434623,-0.49354,-0.00648861,-0.233893,-0.276586,-1.55068,-1.43536,-0.733517,1 +-0.478457,-0.402414,-0.457934,-0.681558,-0.217465,-0.245435,-0.0766413,0.324502,0.486135,0 +-0.478457,-0.402414,-0.457934,-0.591,-0.294127,-0.221207,-1.36643,-0.806835,0.181222,0 +0.139214,-0.38631,-0.457934,-0.405767,-0.233893,-0.297353,0.752507,1.45584,1.40087,0 +0.139214,-0.38631,-0.457934,-0.105279,-0.222941,-0.283508,1.3974,1.07873,0.181222,0 +0.324516,-0.354101,-0.422328,-0.475744,-0.332458,-0.314659,0.568252,1.70725,2.31561,1 +1.55986,-0.257475,-0.351115,0.450418,-0.135327,-0.228129,-0.721534,-0.0526103,0.486135,0 +-1.1579,-0.434623,-0.457934,-0.702139,-0.195562,-0.203901,1.30527,1.07873,0.181222,0 +-1.1579,-0.321893,-0.386721,-0.483977,-0.233893,-0.165828,1.3974,1.07873,0.181222,0 +1.43632,-0.418518,-0.457934,-0.430465,-0.343409,-0.328504,-0.0766413,0.827319,1.40087,0 +1.25102,-0.370206,-0.422328,-0.364605,-0.299603,-0.335426,-1.09004,-0.681131,-0.123691,1 +0.0774473,-0.434623,-0.457934,-0.00237233,-0.299603,-0.307737,-0.445152,-0.178314,0.181222,0 +1.00395,-0.289684,-0.315509,-0.389302,-0.107948,-0.0862209,0.199741,0.827319,1.09596,1 +1.00395,-0.402414,-0.49354,-0.0353025,0.0234719,0.419112,1.85804,1.45584,0.181222,0 +0.324516,-0.0964324,0.0405532,-0.549837,0.373926,0.159523,1.30527,-0.0526103,-1.03843,0 +-0.725526,-0.209163,-0.0306592,7.48925,-0.179134,-0.0723761,-0.260896,-0.178314,-0.123691,0 +-0.293156,-0.38631,-0.457934,-0.0229537,-0.266748,-0.28697,1.12102,0.450206,-0.428604,0 +0.942188,-0.289684,-0.315509,0.285767,0.817469,0.651011,-1.82706,-1.43536,-0.428604,0 +-1.40496,-0.402414,-0.457934,0.0387904,-0.129852,-0.241974,1.30527,0.827319,-0.123691,1 +-0.601991,-0.38631,-0.422328,-0.545721,-0.332458,-0.325043,1.3974,1.07873,0.181222,0 +-0.601991,-0.38631,-0.457934,-0.414,-0.222941,-0.25928,0.752507,1.95866,2.62053,1 +-0.293156,-0.38631,-0.422328,-0.389302,-0.0641415,-0.214285,0.291869,-0.0526103,-0.428604,0 +0.200982,-0.418518,-0.457934,-0.516907,-0.266748,-0.276586,1.3974,1.07873,0.181222,1 +0.386283,-0.402414,-0.457934,-0.249349,-0.310554,-0.221207,0.0154863,-0.0526103,-2.86791,0 +-0.972594,-0.402414,-0.457934,-0.352256,-0.277699,-0.300814,1.58165,1.20443,0.181222,0 +-1.03436,-0.38631,-0.457934,0.104651,-0.305079,-0.300814,1.85804,2.96429,2.62053,0 +0.571585,-0.402414,-0.457934,-0.298744,-0.332458,-0.314659,-0.168769,-0.806835,-1.03843,0 +0.571585,-0.38631,-0.457934,-0.00237233,-0.359837,-0.31812,-0.353024,-0.429723,-0.428604,0 +0.633352,-0.241371,2.67541,-0.0764653,-0.321506,-0.106988,-0.353024,-0.555427,-0.733517,0 +0.633352,-0.38631,-0.457934,-0.414,-0.305079,-0.283508,-0.537279,-0.555427,-0.428604,0 +-0.293156,-0.418518,-0.49354,-0.364605,-0.239368,-0.280047,-1.36643,-0.681131,0.181222,0 +-0.725526,-0.337997,-0.422328,0.853813,-0.288651,-0.293892,0.476124,-0.178314,-0.733517,0 +-0.725526,-0.193058,-0.0662654,0.77972,-0.233893,-0.304275,0.0154863,-0.178314,-0.428604,0 +-0.725526,-0.38631,-0.244297,1.60298,-0.239368,-0.241974,-0.537279,-0.681131,-0.428604,0 +1.25102,-0.354101,-0.422328,-0.134093,-0.179134,-0.241974,0.476124,0.953023,0.791048,1 +-0.601991,-0.434623,-0.457934,-0.455163,-0.376264,-0.328504,-1.18217,-0.555427,-2.86791,1 +-0.41669,-0.418518,-0.49354,-0.570419,0.0508511,-0.307737,0.568252,1.33014,1.40087,1 +-0.41669,-0.257475,-0.279903,2.33979,0.0453753,-0.214285,-0.445152,-0.178314,0.181222,0 +0.324516,-0.38631,-0.422328,2.51267,-0.31603,-0.321581,-0.260896,0.450206,0.791048,0 +-0.046087,-0.402414,-0.457934,0.18286,0.36845,-0.0827597,-0.813662,-0.178314,0.486135,0 +-0.540224,-0.402414,-0.457934,-0.44693,-0.272223,-0.262741,-0.0766413,0.827319,1.40087,1 +-0.169621,4.38056,4.52694,-0.0229537,-0.0860449,0.0695324,-1.18217,-1.30965,-1.03843,0 +-0.169621,2.10986,2.63981,-0.187605,-0.135327,-0.0792985,-0.997917,-1.43536,-1.34334,0 +-0.725526,-0.289684,1.96329,0.882627,0.680573,0.104144,0.936762,0.953023,0.181222,0 +-1.65203,-0.402414,-0.457934,-0.257581,-0.140803,-0.193518,0.383997,1.07873,1.09596,0 +-0.41669,-0.402414,-0.457934,-0.434581,-0.305079,-0.307737,0.476124,-0.178314,-0.733517,0 +-0.41669,-0.402414,-0.457934,-0.179372,-0.140803,-0.0619926,0.844634,1.45584,1.33989,1 +-2.51677,-0.38631,-0.457934,0.236372,-0.277699,-0.262741,1.3974,1.07873,0.181222,1 +1.06572,-0.337997,-0.386721,-0.393419,-0.233893,-0.193518,-0.168769,0.827319,1.70579,0 +-0.107854,-0.38631,-0.422328,-0.619814,-0.376264,-0.280047,0.844634,0.450206,2.62053,0 +-0.293156,1.80387,1.74965,0.277534,-0.168183,-0.120833,-0.721534,-1.30965,-1.34334,0 +-1.1579,-0.434623,-0.49354,-0.743302,-0.359837,-0.311198,-3.39323,-1.93817,1.09596,0 +-0.478457,-0.418518,-0.457934,-0.228768,0.0837062,-0.193518,2.77931,2.21006,0.181222,0 +-2.51677,-0.402414,-0.457934,0.697395,0.390353,0.419112,0.0154863,0.0730938,-0.123691,1 +-1.46673,2.44805,2.85345,0.368093,1.6936,1.35017,1.58165,1.20443,0.181222,0 +-0.910827,-0.418518,-0.457934,-0.117628,-0.359837,-0.31812,2.87144,1.95866,0.791048,0 +-0.725526,-0.241371,-0.244297,-0.389302,-0.305079,-0.304275,1.3974,1.07873,0.181222,0 +-1.1579,-0.225267,-0.244297,-0.455163,-0.321506,-0.314659,1.58165,1.20443,0.181222,1 +-0.601991,-0.38631,-0.457934,-0.414,-0.305079,-0.311198,-0.0766413,0.57591,0.791048,1 +0.942188,-0.209163,-0.244297,-0.414,-0.195562,-0.241974,-0.445152,-0.429723,-0.428604,0 +0.0156802,-0.176954,-0.244297,-0.335791,-0.305079,-0.311198,1.3974,1.07873,0.181222,0 +0.200982,-0.370206,-0.0306592,-0.603349,-0.343409,-0.331965,1.67378,1.33014,0.181222,0 +0.818653,-0.402414,-0.457934,-0.689791,-0.135327,-0.214285,-0.445152,-0.178314,0.181222,0 +0.324516,-0.418518,-0.457934,-0.405767,-0.343409,-0.328504,0.844634,1.33014,1.09596,1 +0.324516,-0.418518,-0.457934,-0.422233,-0.376264,-0.331965,0.476124,0.324502,-0.123691,0 +-1.65203,-0.321893,-0.279903,0.104651,-0.387216,-0.307737,-0.445152,-1.30965,-1.34334,1 +-1.65203,-0.38631,-0.422328,0.0387904,-0.277699,-0.214285,1.3974,1.07873,0.181222,0 +-1.96087,-0.289684,-0.351115,1.17077,-0.283175,-0.297353,1.30527,0.953023,-0.123691,0 +-0.663759,-0.402414,-0.457934,-0.405767,-0.359837,-0.338887,1.95017,1.95866,0.791048,0 +-0.107854,-0.321893,-0.315509,-0.55807,-0.359837,-0.311198,1.3974,1.07873,0.181222,1 +0.324516,-0.370206,-0.351115,-0.212302,-0.354361,-0.245435,0.936762,0.701614,-0.123691,0 +0.756886,0.193445,0.289797,0.100535,0.215126,-0.0169972,0.476124,1.07873,1.09596,0 +0.0156802,-0.370206,-0.422328,-0.167023,-0.179134,-0.228129,1.95017,1.45584,0.181222,0 +0.942188,-0.418518,-0.457934,-0.47986,-0.266748,-0.331965,1.21314,1.33014,0.486135,1 +0.0156802,-0.434623,-0.457934,-0.187605,-0.321506,-0.297353,0.568252,0.324502,-0.123691,0 +-1.3432,-0.354101,-0.351115,-0.409884,-0.239368,-0.238513,1.12102,1.45584,0.791048,1 +-1.40496,-0.144745,-0.173084,0.203442,-0.305079,-0.307737,1.67378,1.70725,0.486135,0 +-1.40496,-0.434623,-0.457934,-0.364605,-0.014859,-0.238513,1.3974,0.953023,-0.123691,0 +1.80693,-0.38631,-0.422328,-0.232884,-0.354361,-0.314659,1.30527,1.07873,0.181222,0 +-1.21966,-0.38631,-0.422328,-0.541605,-0.310554,-0.293892,0.383997,1.58154,2.31561,1 +-0.84906,-0.354101,-0.422328,-0.414,-0.299603,-0.328504,1.30527,0.827319,-0.123691,0 +-1.28143,-0.38631,-0.457934,-0.393419,-0.222941,-0.25928,0.844634,1.20443,0.791048,1 +0.818653,-0.402414,-0.457934,-0.455163,-0.266748,-0.293892,1.58165,1.58154,0.486135,1 +0.386283,-0.38631,-0.457934,-0.0435351,-0.326982,-0.276586,0.199741,0.0730938,-0.428604,0 +0.324516,-0.257475,-0.315509,0.573906,-0.288651,-0.269664,0.291869,0.450206,0.181222,0 +0.324516,-0.418518,-0.457934,-0.34814,-0.343409,-0.321581,1.76591,1.33014,0.181222,1 +0.633352,-0.402414,-0.457934,-0.55807,-0.326982,-0.321581,0.383997,0.827319,1.40087,0 +0.571585,-0.305788,-0.279903,-0.393419,-0.244844,-0.325043,1.30527,0.701614,-0.123691,1 +0.200982,-0.27358,-0.173084,1.22428,-0.0367623,0.0106923,0.752507,-0.932539,-1.64826,0 +-0.910827,-0.402414,-0.457934,-0.47986,-0.326982,-0.217746,-1.73494,-1.05824,0.181222,0 +0.0156802,-0.402414,-0.457934,-0.516907,-0.321506,-0.31812,1.58165,1.20443,0.181222,0 +0.200982,-0.354101,-0.279903,0.973185,0.532725,0.484874,1.3974,1.33014,0.486135,0 +0.386283,-0.402414,-0.457934,-0.475744,-0.179134,-0.304275,1.48953,1.83295,1.09596,0 +0.571585,3.20495,3.95724,1.16665,-0.206513,-0.217746,0.660379,0.450206,-0.123691,0 +-1.09613,-0.321893,-0.315509,-0.759767,-0.305079,-0.193518,1.85804,2.08436,-2.86791,1 +-0.910827,-0.402414,-0.457934,-0.545721,-0.305079,-0.304275,1.30527,1.70725,1.09596,1 +-1.1579,-0.209163,-0.20869,-0.393419,-0.310554,-0.155445,1.21314,1.45584,0.791048,0 +-1.40496,-0.38631,-0.422328,-0.459279,-0.343409,-0.307737,0.199741,0.701614,0.791048,1 +-0.046087,-0.38631,-0.457934,-0.44693,-0.283175,-0.0966044,0.568252,0.701614,0.181222,1 +-0.601991,-0.418518,-0.457934,-0.38107,-0.211989,-0.276586,0.291869,0.324502,0.181222,0 +-0.41669,0.0646106,0.254191,-0.306977,0.538201,0.422573,1.21314,1.70725,1.09596,0 +-1.8991,-0.38631,-0.422328,0.0799532,-0.326982,-0.325043,1.48953,1.33014,0.181222,1 +-0.910827,-0.418518,-0.457934,-0.936767,-0.272223,-0.28697,-0.629407,0.324502,1.40087,0 +-0.910827,-0.402414,-0.457934,-0.38107,-0.277699,-0.179673,-1.18217,-0.429723,0.486135,0 +-0.540224,-0.257475,-0.351115,-0.352256,-0.244844,-0.262741,0.568252,0.953023,0.791048,0 +-2.02264,-0.402414,-0.457934,0.047023,-0.18461,-0.148522,0.199741,0.450206,0.486135,1 +0.942188,-0.112537,-0.101872,-0.492209,-0.211989,-0.252358,-0.997917,-0.555427,0.181222,0 +-0.169621,-0.402414,-0.457934,-0.545721,-0.294127,-0.300814,0.199741,-0.0526103,-0.428604,1 +-0.540224,-0.337997,-0.386721,0.277534,0.43416,-0.068915,1.67378,1.58154,0.486135,1 +-1.28143,0.000193362,0.0405532,-0.47986,-0.38174,-0.266202,1.02889,0.953023,0.181222,1 +-0.107854,-0.402414,-0.457934,-0.405767,-0.283175,-0.311198,-0.445152,-0.304019,-0.123691,1 +-1.46673,-0.418518,-0.457934,-0.327558,-0.365313,-0.300814,0.752507,1.20443,0.791048,1 +-1.1579,-0.209163,-0.20869,-0.549837,-0.146279,-0.145061,-0.353024,-0.555427,-0.428604,0 +-1.1579,-0.257475,-0.315509,-0.331674,-0.102472,-0.186595,-0.997917,-1.18395,-1.03843,0 +-1.1579,0.612157,0.645859,-0.134093,-0.00390729,0.0106923,-0.260896,-0.304019,-0.428604,0 +-0.540224,-0.418518,-0.457934,-0.570419,-0.326982,-0.293892,-0.537279,-0.0526103,0.486135,1 +-1.96087,-0.418518,-0.457934,0.244604,-0.348885,-0.297353,0.844634,1.07873,0.486135,0 +-1.96087,-0.418518,-0.49354,-0.44693,-0.310554,-0.314659,2.22655,2.21006,0.791048,0 +1.86869,0.54774,0.752678,0.689162,0.642242,0.114528,-0.260896,0.0730938,0.181222,0 +1.86869,-0.128641,-0.101872,0.347511,0.0234719,-0.145061,-0.0766413,-0.304019,-0.428604,0 +1.86869,-0.241371,-0.244297,0.470999,-0.00938313,-0.207362,-0.353024,-0.304019,-0.123691,0 +1.86869,-0.305788,-0.386721,-0.311093,-0.168183,-0.276586,-0.537279,-0.681131,-0.733517,0 +1.86869,-0.38631,-0.457934,-0.34814,-0.201038,-0.266202,-0.260896,-0.304019,-0.428604,0 +-0.540224,-0.402414,-0.457934,1.47949,-0.0586657,0.0972218,0.107614,-0.0526103,-0.428604,0 +-0.601991,-0.402414,-0.457934,-0.38107,-0.244844,-0.269664,0.476124,1.07873,1.09596,1 +1.55986,-0.0320152,0.0405532,-0.38107,-0.222941,-0.283508,-0.813662,-1.43536,-1.34334,0 +-0.478457,-0.402414,-0.457934,-0.393419,-0.113424,-0.241974,1.58165,2.33577,1.70579,1 +0.942188,-0.0642238,-0.0662654,-0.249349,-0.266748,-0.228129,-0.813662,-1.43536,-1.34334,0 +0.0774473,-0.434623,-0.457934,-0.722721,-0.365313,-0.342348,0.383997,0.324502,-0.123691,0 +-0.41669,-0.418518,-0.457934,-0.306977,1.46909,-0.0169972,0.476124,0.450206,0.181222,0 +1.55986,-0.321893,-0.386721,0.277534,-0.337934,-0.331965,-0.353024,-0.429723,-0.428604,0 +0.262749,-0.402414,-0.457934,-0.545721,-0.337934,-0.328504,0.107614,0.57591,0.791048,1 +-0.478457,-0.241371,-0.244297,-0.599232,-0.102472,-0.179673,-0.721534,-0.304019,0.181222,0 +-0.478457,-0.321893,-0.386721,-0.393419,-0.217465,-0.248896,-1.09004,-1.30965,-1.03843,0 +-1.1579,-0.418518,-0.457934,-0.603349,-0.244844,-0.266202,1.58165,1.45584,0.486135,0 +0.200982,-0.305788,-0.244297,1.36012,0.160368,0.228747,0.660379,0.953023,0.486135,0 +0.200982,-0.402414,-0.457934,-0.578651,-0.305079,-0.300814,0.936762,0.953023,0.181222,0 +-1.59027,-0.305788,-0.244297,-0.463395,-0.370789,-0.290431,1.3974,1.83295,1.09596,1 +-0.725526,-0.418518,-0.457934,-0.142326,-0.326982,-0.276586,1.85804,0.953023,-0.428604,0 +-0.725526,-0.193058,-0.279903,-0.352256,-0.168183,-0.248896,0.291869,-0.178314,-0.733517,0 +-0.478457,-0.418518,-0.457934,-0.471628,-0.288651,-0.262741,-0.813662,-0.681131,-0.428604,0 +1.49809,-0.402414,-0.457934,-0.595116,-0.211989,-0.138139,1.76591,2.21006,1.40087,1 +-1.28143,-0.418518,-0.457934,-0.298744,-0.18461,-0.290431,0.107614,0.198798,0.181222,0 +1.25102,-0.418518,-0.457934,-0.44693,-0.31603,-0.283508,0.291869,-0.304019,-0.733517,1 +0.633352,-0.354101,-0.422328,-0.311093,-0.326982,-0.328504,-0.260896,-0.304019,-0.428604,1 +-0.169621,-0.38631,-0.457934,-0.516907,-0.299603,-0.280047,1.85804,1.58154,0.181222,1 +-1.46673,-0.402414,-0.457934,-0.442814,-0.261272,-0.183134,0.291869,0.450206,0.181222,1 +-0.293156,-0.418518,-0.457934,-0.471628,-0.288651,-0.231591,-1.09004,-0.932539,-0.428604,1 +-1.77557,-0.418518,-0.457934,0.524511,-0.288651,-0.25928,0.660379,1.20443,1.09596,1 +0.942188,-0.176954,-0.173084,-0.0805816,-0.195562,-0.20044,-0.353024,-0.304019,-0.123691,1 +-0.169621,-0.402414,-0.457934,-0.44693,-0.321506,-0.311198,0.660379,0.953023,0.486135,0 +0.818653,-0.402414,-0.457934,-0.660977,-0.310554,-0.293892,0.476124,1.07873,1.09596,0 +0.571585,3.10832,3.52996,1.10079,-0.277699,-0.252358,1.21314,0.324502,-0.428604,0 +-0.725526,-0.402414,-0.457934,-0.640395,-0.277699,-0.280047,0.660379,1.58154,1.70579,1 +0.200982,-0.418518,-0.457934,0.145814,-0.283175,-0.321581,2.04229,2.96429,2.31561,0 +-1.21966,-0.418518,-0.49354,-0.619814,-0.266748,-0.293892,1.02889,1.45584,1.09596,1 +0.695119,-0.418518,-0.49354,-0.599232,-0.299603,-0.300814,0.476124,1.07873,1.09596,1 +0.139214,0.032402,0.0405532,-0.34814,-0.266748,-0.273125,0.291869,0.324502,0.181222,0 +-0.725526,-0.418518,-0.49354,-0.504558,-0.25032,-0.266202,0.476124,0.701614,0.486135,0 +-1.5285,-0.434623,-0.457934,-0.364605,-0.376264,-0.335426,-0.353024,-0.178314,-0.123691,1 +0.324516,-0.418518,-0.49354,-0.405767,-0.332458,-0.238513,0.752507,0.198798,-0.428604,0 +1.68339,-0.418518,-0.457934,-0.434581,-0.354361,-0.304275,0.752507,0.701614,0.181222,1 +0.324516,-0.257475,-0.244297,0.166395,-0.244844,-0.196979,0.752507,0.324502,-0.123691,0 +-0.354923,-0.434623,-0.457934,-0.422233,-0.288651,-0.231591,1.48953,0.198798,-1.03843,0 +0.818653,-0.418518,-0.49354,-0.488093,-0.294127,-0.304275,0.199741,0.0730938,-0.123691,0 +0.942188,-0.305788,-0.279903,-0.541605,-0.387216,-0.338887,-1.45855,-0.806835,0.181222,1 +-0.663759,0.0646106,0.218584,0.820883,0.187747,-0.0654538,0.0154863,-0.429723,-0.733517,0 +0.324516,-0.402414,-0.457934,-0.570419,-0.283175,-0.276586,0.844634,1.20443,1.09596,0 +-0.41669,-0.0964324,-0.0306592,-0.763884,-0.305079,-0.307737,0.936762,1.33014,0.791048,1 +0.386283,-0.402414,-0.457934,-0.537488,-0.255796,-0.311198,0.383997,0.701614,0.486135,0 +0.0774473,-0.402414,-0.457934,-0.537488,-0.272223,-0.241974,0.752507,0.827319,0.486135,0 +1.68339,-0.434623,-0.49354,-0.776232,-0.272223,-0.25928,-0.168769,0.0730938,0.181222,0 +1.68339,-0.402414,-0.457934,-0.586884,-0.31603,-0.25928,-0.445152,-0.178314,0.181222,0 +1.86869,-0.38631,-0.457934,-0.529256,-0.305079,-0.311198,0.383997,0.701614,0.486135,0 +-0.231388,0.676574,1.00192,-0.582767,0.0727545,-0.0619926,-0.168769,-0.0526103,-0.123691,0 +-0.231388,-0.0964324,-0.0662654,1.19135,0.335595,-0.145061,1.3974,1.07873,0.181222,0 +0.200982,-0.370206,-0.422328,0.0799532,-0.239368,-0.186595,-0.537279,-0.806835,-0.733517,0 +0.0156802,-0.402414,-0.457934,-0.619814,-0.310554,-0.311198,-0.168769,0.0730938,0.181222,1 +1.80693,-0.370206,-0.422328,-0.475744,-0.277699,-0.269664,-0.0766413,0.324502,0.486135,0 +2.054,-0.370206,-0.422328,-0.570419,-0.288651,-0.138139,-0.168769,-0.0526103,-0.123691,0 +-0.41669,-0.402414,-0.457934,-0.339907,-0.305079,-0.207362,0.568252,0.701614,0.181222,0 +-1.09613,-0.370206,-0.457934,-0.352256,0.308216,0.12145,-0.445152,-0.178314,0.181222,0 +1.31279,-0.418518,-0.457934,-0.529256,-0.310554,-0.311198,-0.0766413,0.0730938,0.181222,1 +0.324516,0.644365,0.788284,-0.817395,-0.201038,0.436418,0.291869,-1.93817,-1.95317,0 +-0.169621,-0.450727,-0.49354,-0.529256,0.406781,-0.00661365,1.48953,1.07873,-0.123691,0 +1.25102,-0.418518,-0.457934,-0.376954,-0.337934,-0.304275,-0.168769,0.57591,1.09596,1 +-1.40496,-0.402414,-0.457934,-0.38107,-0.332458,-0.290431,0.291869,0.953023,1.09596,0 +-0.84906,-0.402414,-0.457934,-0.311093,-0.359837,-0.307737,1.02889,1.07873,0.486135,0 +0.0156802,-0.418518,-0.457934,-0.455163,-0.343409,-0.179673,0.199741,0.701614,0.791048,1 +-2.02264,-0.370206,-0.457934,1.76351,0.417732,-0.00661365,0.660379,0.701614,0.181222,0 +0.200982,-0.144745,-0.137478,1.08432,0.330119,-0.127755,0.936762,0.57591,-0.123691,0 +0.200982,0.273966,0.396615,1.08844,1.11316,0.277203,0.0154863,0.198798,0.181222,0 +-1.65203,-0.305788,-0.315509,-0.311093,1.9674,2.56158,-1.36643,-1.56106,-1.03843,0 +-1.3432,-0.16085,-0.244297,0.899092,-0.288651,-0.228129,0.383997,-0.304019,-0.733517,1 +1.25102,0.257862,0.432222,-0.414,-0.261272,-0.134677,0.568252,-0.304019,-0.733517,0 +0.200982,-0.418518,-0.457934,-0.339907,-0.359837,-0.276586,-1.73494,-1.30965,-0.428604,1 +1.25102,-0.305788,-0.315509,-0.125861,-0.288651,-0.297353,-1.18217,-1.18395,-0.733517,1 +1.55986,-0.321893,-0.422328,1.64414,0.0672786,-0.241974,-2.65621,-0.555427,-0.733517,0 +1.55986,-0.434623,-0.49354,2.35214,-0.0258107,0.242592,-0.168769,-0.555427,-0.581061,0 +-2.0844,-0.418518,-0.49354,1.24074,-0.299603,-0.280047,0.568252,1.33014,1.40087,1 +0.324516,0.145132,0.289797,0.656232,-0.0641415,-0.207362,0.476124,-0.178314,-0.733517,0 +0.633352,0.789304,0.859496,4.36088,-0.157231,-0.155445,0.199741,-0.304019,-0.733517,0 +0.633352,1.22412,1.28677,4.36088,-0.179134,-0.183134,-0.0766413,-1.05824,-1.34334,0 +-1.1579,-0.370206,-0.422328,-0.525139,-0.179134,-0.134677,0.568252,0.701614,0.181222,1 +-0.231388,-0.337997,-0.351115,-0.183489,-0.255796,-0.235052,0.383997,0.324502,0.089748,0 +0.509817,-0.27358,-0.20869,-0.463395,-0.201038,-0.176212,0.0154863,0.953023,1.70579,1 +-0.787293,-0.418518,-0.49354,-0.208186,-0.376264,-0.328504,0.476124,-0.178314,-0.733517,0 +0.818653,-0.466831,-0.49354,-0.784465,-0.1189,0.0556876,-2.01132,-0.806835,1.40087,0 +0.0156802,-0.321893,-0.315509,-0.512791,-0.173658,-0.235052,-0.813662,-0.806835,-0.428604,1 +1.25102,-0.38631,-0.457934,-0.496326,-0.261272,-0.151983,0.476124,-0.178314,-0.581061,0 +0.44805,-0.434623,-0.49354,-0.397535,-0.387216,-0.338887,0.383997,0.198798,-0.123691,1 +1.74516,-0.225267,-0.279903,6.00739,0.116561,0.107605,-0.905789,-1.43536,-1.34334,0 +0.509817,-0.418518,-0.49354,-0.44693,-0.332458,-0.266202,-1.55068,-1.56106,-1.03843,0 +0.139214,-0.402414,-0.457934,-0.224651,-0.387216,-0.335426,0.199741,-0.304019,-0.550569,1 +-0.972594,-0.418518,-0.457934,-0.516907,-0.140803,-0.0792985,0.936762,1.83295,1.94972,0 +-0.231388,-0.38631,-0.457934,-0.368721,-0.272223,-0.297353,1.02889,0.827319,0.181222,1 +-0.910827,-0.418518,-0.457934,-0.397535,-0.266748,-0.255819,0.936762,0.57591,-0.0627085,1 +-1.7138,-0.450727,-0.49354,-0.34814,-0.288651,-0.307737,0.568252,1.70725,2.31561,1 +-1.3432,-0.370206,-0.422328,-0.323442,-0.217465,-0.103527,-0.260896,-0.0526103,0.181222,0 +-0.601991,-0.27358,-0.279903,-0.549837,-0.359837,-0.228129,-1.18217,-0.806835,-0.123691,0 +1.25102,-0.402414,-0.457934,-0.529256,-0.277699,-0.068915,-2.47196,-2.18958,-1.34334,0 +-0.169621,-0.402414,-0.457934,-0.504558,-0.305079,-0.31812,-0.260896,-0.0526103,0.181222,0 +0.262749,-0.402414,-0.457934,-0.38107,-0.31603,-0.311198,0.476124,1.45584,1.70579,0 +-0.169621,-0.16085,-0.137478,0.00586022,-0.283175,-0.245435,-2.19558,-1.68676,-0.733517,0 +-0.169621,0.66047,0.752678,0.0305579,-0.157231,-0.0273808,-1.73494,-1.56106,-0.733517,0 +-0.169621,-0.418518,-0.457934,-0.570419,-0.25032,-0.100066,-0.260896,0.0730938,0.36417,0 +1.00395,-0.402414,-0.457934,-0.525139,-0.343409,-0.314659,-0.168769,-0.429723,-0.428604,1 +-1.7138,-0.38631,-0.457934,-0.0476514,-0.222941,-0.221207,0.752507,1.07873,0.791048,1 +0.571585,-0.402414,-0.457934,-0.451046,-0.25032,-0.311198,-0.905789,-0.555427,0.0592567,0 +0.0156802,3.22105,4.02845,5.18414,1.88526,1.38824,1.12102,0.450206,-0.428604,0 +0.200982,-0.402414,-0.457934,-0.611581,-0.299603,-0.293892,-0.445152,-0.681131,-0.733517,0 +0.200982,-0.38631,-0.457934,-0.483977,-0.299603,-0.28697,-0.260896,-0.0526103,0.181222,0 +1.25102,0.740991,1.00192,-0.0353025,-0.168183,-0.131216,-0.445152,-0.178314,0.181222,0 +-0.601991,-0.402414,-0.457934,-0.0476514,-0.332458,-0.293892,0.660379,0.0730938,-0.428604,0 +0.818653,-0.38631,-0.457934,3.33181,-0.305079,-0.255819,0.568252,0.450206,-0.123691,0 +0.0774473,-0.418518,-0.457934,-0.274047,-0.222941,-0.300814,0.568252,-0.178314,-0.733517,0 +-1.03436,-0.434623,-0.457934,-0.541605,-0.359837,-0.325043,0.476124,0.450206,0.181222,1 +-1.46673,-0.434623,-0.49354,-0.430465,-0.305079,-0.304275,0.291869,0.324502,0.181222,0 +-0.787293,-0.418518,-0.457934,-0.418116,-0.321506,-0.231591,0.844634,-0.0526103,-0.733517,1 +1.00395,-0.402414,-0.457934,-0.405767,-0.288651,-0.25928,0.383997,0.324502,-0.123691,1 +-1.1579,0.563844,0.610253,-0.619814,-0.239368,-0.314659,-2.65621,-2.8181,-1.95317,0 +1.25102,-0.354101,-0.351115,1.62767,-0.354361,-0.221207,-0.721534,-2.06388,-1.80071,0 +-1.40496,-0.176954,-0.173084,-0.311093,0.428684,-0.203901,-0.905789,-0.806835,-0.428604,0 +-1.03436,-0.402414,-0.457934,0.0758369,-0.140803,-0.300814,0.291869,1.20443,1.73628,0 +-0.41669,-0.418518,-0.457934,-0.743302,-0.321506,-0.31812,-0.0766413,-0.806835,-0.916465,0 +-1.21966,-0.402414,-0.49354,-0.660977,-0.31603,-0.235052,1.3974,1.07873,0.181222,0 +0.0156802,-0.418518,-0.457934,-0.521023,-0.326982,-0.196979,-1.82706,-2.18958,-1.4958,1 +0.0156802,-0.434623,-0.49354,-0.0846979,-0.31603,-0.235052,-1.2743,-1.43536,-1.34334,1 +-1.03436,-0.434623,-0.49354,-0.632163,-0.321506,-0.325043,-1.45855,-1.56106,-1.03843,1 +-1.03436,-0.370206,-0.422328,-0.825628,-0.343409,-0.00661365,0.291869,-0.0526103,-0.428604,1 +1.31279,-0.370206,-0.422328,-0.414,-0.277699,-0.193518,-1.09004,-1.30965,-1.03843,0 +1.31279,-0.402414,-0.457934,-0.516907,-0.321506,-0.269664,-1.91919,-1.43536,-0.428604,0 +1.31279,-0.354101,-0.351115,-0.508674,-0.370789,-0.186595,0.568252,1.20443,1.27891,0 +0.262749,-0.434623,-0.49354,-0.434581,-0.348885,-0.290431,0.107614,-0.304019,-0.733517,1 +-0.169621,-0.418518,-0.457934,-0.385186,-0.0915207,-0.266202,-0.629407,-0.932539,-0.733517,1 +-0.169621,-0.370206,-0.422328,-0.562186,-0.233893,-0.307737,0.291869,0.953023,1.09596,1 +-0.601991,-0.209163,-0.137478,-0.265814,-0.261272,0.0868383,-0.445152,-0.555427,-0.428604,1 +-0.41669,-0.176954,-0.173084,0.0799532,0.209651,-0.235052,1.30527,1.20443,0.181222,1 +-0.41669,-0.38631,-0.422328,0.0799532,-0.359837,-0.293892,-0.905789,-0.555427,0.181222,0 +0.633352,-0.434623,-0.457934,-0.290512,-0.310554,-0.269664,-1.2743,-0.932539,-0.184674,0 +-0.725526,0.612157,0.788284,-0.389302,2.964,1.33979,0.383997,0.57591,0.455644,0 +-0.725526,0.0162977,0.0405532,-0.430465,3.82371,2.54082,0.752507,0.0730938,-0.733517,0 +-2.33147,-0.450727,-0.49354,0.252837,-0.288651,-0.203901,1.30527,1.33014,0.486135,1 +0.0156802,-0.16085,-0.0662654,-0.0353025,0.280836,0.893294,0.752507,1.07873,0.791048,0 +0.0156802,-0.354101,-0.386721,-0.817395,0.056327,0.270281,0.660379,0.827319,0.516626,0 +-0.910827,-0.402414,-0.457934,-0.44693,-0.190086,-0.183134,1.21314,1.45584,0.791048,1 +1.06572,0.273966,0.218584,-0.772116,-0.343409,-0.241974,-1.36643,-1.30965,2.3766,0 +-1.40496,0.54774,0.610253,2.30274,0.401305,0.477952,-0.260896,-0.429723,-0.428604,0 +-0.169621,-0.402414,-0.457934,-0.393419,-0.343409,-0.328504,0.199741,-0.178314,-0.428604,0 +-0.787293,-0.418518,-0.457934,-0.0600002,0.116561,0.277203,-0.445152,-0.304019,-0.0322172,0 +0.942188,-0.418518,-0.457934,-0.492209,-0.272223,-0.290431,0.476124,0.450206,0.181222,1 +1.25102,-0.402414,-0.49354,-0.595116,-0.348885,-0.280047,-0.537279,0.0730938,0.730065,1 +0.509817,-0.402414,-0.457934,-0.401651,0.0837062,-0.183134,0.199741,0.57591,0.669083,0 +-1.09613,-0.370206,-0.422328,-0.455163,-0.135327,0.0037699,0.291869,0.953023,2.77298,1 +-0.601991,-0.370206,-0.422328,2.11751,0.286312,-0.0239196,1.30527,0.198798,-0.733517,0 +1.25102,-0.418518,-0.457934,-0.105279,-0.277699,-0.283508,-1.18217,-1.68676,-1.28236,1 +-1.21966,-0.418518,-0.457934,-0.434581,0.63129,1.00751,0.0154863,0.953023,1.70579,0 +-0.787293,-0.418518,-0.457934,-0.516907,-0.272223,-0.280047,-0.353024,-0.178314,0.0592567,1 +-1.28143,-0.370206,-0.457934,-0.418116,-0.157231,-0.273125,1.3974,2.08436,1.70579,0 +1.37456,-0.176954,-0.137478,-0.38107,-0.211989,-0.245435,0.660379,-0.178314,-0.733517,0 +1.43632,-0.241371,-0.351115,-0.574535,-0.343409,-0.304275,0.0154863,1.07873,2.0107,0 +0.633352,0.0485063,0.0405532,0.240488,-0.222941,-0.138139,0.660379,-0.304019,-1.03843,0 +1.55986,-0.0964324,-0.101872,0.306348,-0.102472,-0.190056,-0.445152,-0.932539,-1.03843,0 +-0.540224,-0.0803281,0.00494701,0.0593718,-0.288651,-0.117372,-0.537279,-0.806835,-0.733517,0 +-0.169621,-0.402414,-0.457934,-0.673325,-0.283175,-0.276586,-1.45855,-0.555427,0.791048,0 +0.509817,2.6574,3.1739,-0.216419,-0.228417,0.3845,1.48953,-0.806835,-1.64826,0 +-0.787293,4.38056,5.55952,-0.298744,-0.228417,-0.106988,-0.905789,-0.555427,-0.123691,0 +-0.787293,4.71875,4.49133,-0.294628,0.0782303,0.432957,-0.629407,-0.0526103,0.486135,0 +0.695119,2.31921,2.6042,-0.212302,-0.206513,0.259897,-0.813662,-0.932539,-0.733517,0 +0.324516,-0.38631,-0.422328,-0.397535,0.598435,-0.127755,0.936762,0.953023,0.181222,0 +0.0774473,2.43194,2.49738,0.656232,0.209651,0.415651,0.936762,0.198798,-0.733517,0 +0.0774473,2.68961,3.03148,-0.150558,0.324643,1.48862,-0.997917,-0.178314,0.791048,0 +-0.478457,-0.402414,-0.457934,-0.352256,-0.272223,-0.255819,2.50293,1.83295,0.181222,1 +0.0156802,-0.176954,0.0405532,0.121116,-0.239368,-0.214285,0.291869,0.324502,0.181222,0 +0.695119,-0.370206,-0.422328,-0.393419,-0.321506,-0.283508,-0.629407,-0.681131,-0.428604,1 +1.49809,-0.38631,-0.457934,-0.311093,-0.266748,-0.297353,0.383997,-0.178314,-0.733517,0 +0.262749,-0.370206,-0.422328,-0.249349,-0.179134,-0.179673,1.76591,1.33014,0.181222,0 +0.262749,0.0968192,0.218584,-0.418116,-0.0860449,0.246053,0.383997,-0.178314,-0.733517,0 +0.942188,-0.38631,-0.422328,-0.504558,-0.354361,-0.297353,0.199741,-0.178314,-0.428604,0 +-1.03436,-0.38631,-0.457934,-0.311093,-0.168183,-0.283508,1.3974,1.07873,0.181222,0 +0.0156802,-0.0642238,-0.0306592,-0.331674,-0.0367623,-0.145061,0.660379,0.57591,0.181222,0 +-0.601991,3.70418,3.77921,-0.751535,0.477967,1.80012,2.50293,-1.43536,-1.95317,0 +1.06572,-0.241371,-0.20869,-0.274047,-0.0641415,0.156062,1.95017,1.07873,-0.428604,0 +0.633352,0.177341,0.503434,-0.249349,-0.365313,-0.293892,0.568252,-1.30965,-1.64826,0 +0.0774473,-0.402414,-0.457934,-0.434581,-0.310554,-0.328504,1.30527,0.701614,-0.428604,0 +0.324516,-0.434623,-0.457934,-0.632163,-0.359837,-0.325043,-1.55068,-0.681131,0.486135,0 +-0.972594,-0.402414,-0.457934,-0.553953,-0.376264,-0.328504,0.291869,0.701614,0.486135,1 +0.509817,-0.38631,-0.457934,-0.331674,-0.25032,-0.269664,1.3974,0.953023,-0.123691,1 +0.0774473,0.982556,1.32238,-0.0929304,-0.326982,-0.162367,-0.0766413,-0.429723,-0.428604,0 +-0.293156,0.032402,0.0405532,0.0305579,-0.0696174,0.311815,0.568252,0.324502,-0.123691,0 +0.0156802,-0.257475,-0.244297,0.100535,-0.376264,-0.248896,-0.168769,-1.30965,-1.34334,0 +0.633352,0.000193362,0.00494701,-0.315209,-0.146279,0.145678,-1.2743,-1.68676,-1.34334,0 +-1.40496,-0.354101,-0.422328,-0.628046,-0.365313,-0.307737,0.476124,0.827319,0.486135,1 +-0.293156,4.42888,5.98679,-0.0229537,0.160368,0.263359,1.30527,-0.555427,-1.34334,0 +1.06572,-0.418518,-0.457934,-0.529256,-0.376264,-0.321581,1.58165,0.0730938,-1.03843,1 +0.0774473,-0.305788,-0.386721,0.0305579,2.34523,1.7759,-2.65621,-2.6924,-1.95317,0 +-0.354923,-0.27358,-0.244297,-0.249349,0.0398994,-0.124294,1.3974,1.07873,0.181222,1 +0.942188,2.62519,2.85345,0.722092,-0.190086,-0.20044,-0.353024,-1.43536,-1.64826,0 +0.0774473,2.01323,2.0345,-0.261698,-0.0750932,0.381039,0.383997,-0.681131,-1.03843,0 +-2.14617,-0.402414,-0.49354,0.429837,-0.305079,-0.120833,1.02889,0.57591,-0.123691,0 +0.44805,-0.241371,-0.244297,-0.796814,0.0234719,-0.110449,-0.0766413,-0.555427,-0.733517,0 +1.25102,-0.418518,-0.457934,0.475116,-0.310554,-0.224668,0.660379,0.450206,-0.123691,1 +-0.169621,-0.402414,-0.457934,-0.726837,-0.326982,-0.300814,0.476124,-0.178314,-0.733517,1 +-0.169621,-0.402414,-0.457934,-0.38107,-0.283175,-0.314659,0.107614,-0.178314,-0.428604,1 +1.06572,-0.418518,-0.457934,-0.483977,-0.190086,-0.217746,0.752507,1.20443,0.791048,1 +-0.293156,-0.337997,-0.315509,-0.356372,-0.31603,-0.28697,1.02889,1.07873,0.486135,0 +0.571585,0.354488,0.610253,0.244604,-0.0750932,-0.235052,0.476124,0.0730938,-0.428604,0 +0.0156802,-0.418518,-0.457934,-0.566302,-0.217465,-0.235052,-1.82706,-1.18395,-0.123691,1 +0.0156802,2.72182,3.63678,-0.422233,-0.18461,-0.269664,-0.997917,-1.05824,-0.733517,0 +0.324516,3.92964,3.31633,0.368093,-0.228417,0.82407,0.568252,-1.05824,-1.64826,0 +-0.169621,1.25633,1.64283,-0.315209,-0.113424,0.263359,0.383997,-0.429723,5.66966,0 +-0.293156,-0.193058,-0.173084,1.96521,-0.0367623,0.107605,1.21314,2.21006,2.0107,0 +0.0774473,0.000193362,0.00494701,-0.488093,-0.305079,-0.238513,-0.813662,-0.932539,-0.733517,0 +-0.972594,-0.337997,-0.386721,-0.537488,-0.332458,-0.304275,-0.260896,-0.178314,-0.123691,1 +0.0156802,-0.434623,-0.49354,-0.389302,-0.283175,-0.276586,-0.629407,-0.304019,0.181222,0 +0.0774473,1.11139,0.966315,-0.241116,-0.124376,0.104144,0.476124,-0.555427,-1.03843,0 +1.74516,-0.241371,-0.20869,-0.290512,-0.332458,-0.231591,0.0154863,-0.178314,-0.428604,0 +0.633352,-0.402414,-0.457934,-0.00237233,0.319167,-0.0792985,0.476124,-0.178314,-0.733517,0 +0.386283,-0.418518,-0.49354,-0.455163,-0.305079,-0.28697,-0.353024,-0.0526103,0.181222,0 +0.386283,-0.0642238,-0.101872,-0.418116,-0.00390729,0.0522265,-0.260896,-0.0526103,0.181222,0 +0.386283,0.112923,0.361009,-0.0641165,1.6498,0.761769,0.936762,1.07873,0.486135,0 +-1.1579,6.36139,6.48528,0.409255,-0.0312865,0.0972218,0.936762,-0.681131,-1.34334,0 +1.31279,1.91661,2.21253,0.269302,1.31577,1.56476,0.0154863,-1.18395,-1.64826,0 +1.31279,2.14207,2.17693,0.100535,0.833896,0.948673,0.383997,-1.43536,-1.64826,0 +1.31279,2.2548,2.49738,0.401023,0.505346,0.889833,1.21314,-0.681131,-1.34334,0 +1.18926,-0.305788,-0.351115,0.0305579,-0.272223,-0.0931432,0.660379,-0.681131,-1.34334,0 +-0.41669,-0.434623,-0.49354,-0.516907,-0.321506,-0.262741,-0.537279,-0.304019,-0.123691,1 +-0.107854,3.09222,3.67239,-0.607465,-0.321506,0.114528,0.107614,-1.30965,-1.46531,0 +0.324516,-0.370206,-0.422328,-0.409884,-0.321506,-0.273125,1.21314,1.07873,0.181222,1 +0.44805,-0.0964324,-0.0306592,-0.162907,-0.332458,-0.241974,-0.445152,-1.81247,-1.67875,0 +-1.5285,2.15817,2.46178,-0.372837,0.056327,-0.0308419,0.383997,0.450206,0.242205,0 +-1.77557,0.708783,0.930709,-0.0929304,0.72438,0.201057,0.568252,1.07873,0.791048,0 +-1.77557,-0.112537,-0.101872,-0.224651,0.275361,-0.068915,-0.997917,-0.681131,-0.123691,0 +2.7952,-0.354101,-0.422328,-0.311093,-0.190086,0.0833771,0.383997,-0.178314,-0.733517,0 +-0.787293,1.98102,2.85345,-0.644512,-0.146279,0.0522265,-0.813662,1.07873,4.75492,0 +-0.787293,0.0646106,0.0405532,1.32307,-0.168183,-0.0758373,-0.260896,-1.56106,-1.64826,0 +-0.787293,1.41737,1.60723,0.92379,-0.179134,-0.0619926,0.107614,-0.932539,-1.34334,0 +-0.787293,3.49483,4.34891,1.10902,-0.217465,-0.0758373,1.30527,-0.806835,4.75492,0 +-0.787293,1.8844,2.39056,-0.00648861,-0.124376,-0.103527,-1.09004,-1.18395,-0.733517,0 +-0.787293,1.514,2.46178,-0.414,-0.288651,-0.217746,-0.997917,-0.681131,-0.123691,0 +0.942188,-0.450727,-0.49354,0.862046,-0.332458,-0.262741,-0.537279,-1.93817,-1.73973,1 +-0.293156,-0.434623,-0.49354,-0.792697,-0.25032,-0.273125,-0.445152,0.0730938,0.486135,0 +0.44805,-0.402414,-0.457934,-0.187605,-0.179134,-0.210823,-0.0766413,0.0730938,0.181222,0 +-0.84906,-0.321893,-0.351115,-0.438698,-0.283175,-0.269664,0.291869,0.324502,0.181222,0 +-0.41669,-0.370206,-0.422328,-0.306977,-0.326982,-0.297353,0.752507,1.58154,1.70579,1 diff --git a/data/ionosphere.arff b/data/ionosphere.arff new file mode 100755 index 0000000..4d2a10a --- /dev/null +++ b/data/ionosphere.arff @@ -0,0 +1,387 @@ +@relation ionosphere +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'clase' {0,1} +@data +0.347937,0.711357,-0.233923,0.483517,-0.201447,0.576236,-0.953318,0.9627,-0.297086,0.667701,-0.672148,0.316222,-1.09698,0.400107,-0.989074,0.746919,-0.768584,0.355648,-0.573895,0.382099,-0.588684,0.0115682,-0.789002,0.297303,-0.866328,-0.253506,-0.712953,-0.287879,-0.616159,0.122762,-1.05355,-0.311776,-0.99817,1 +0.347937,0.720619,-0.527058,0.633404,-1.03611,-1.3372,-2.02656,0.9627,-0.468813,0.0577774,-1.68238,-0.0907786,-1.59735,-1.31889,-2.28261,-0.529042,-1.24557,-0.0451878,-1.88022,-0.767766,-0.890248,-0.899412,-0.568643,-1.03631,-0.382508,-1.44578,-0.208122,-0.987775,-0.173282,-0.907767,-0.115049,-0.931276,-0.0831668,0 +0.347937,0.720619,-0.176746,0.767382,-0.240965,0.913227,-0.460836,0.745075,-0.350036,0.451888,-0.205289,0.729089,-0.172052,0.309041,-0.148662,0.737518,-0.267378,0.632255,-0.11824,0.610294,-0.546767,0.118215,-0.119847,0.309698,-0.650967,0.0933723,-0.276192,0.0912591,-0.28691,0.440689,-0.463431,0.403867,-0.847381,1 +0.347937,0.720619,-1.12357,0.767382,1.9186,0.328963,-2.14952,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,-2.05898,0.161502,0.257259,-0.784446,-2.17062,-1.00302,-1.69957,1.91387,-0.600356,0.108835,1.04394,1.92359,-0.0494199,1.94452,1.0793,-0.340732,-0.167448,1.95452,-1.28799,2.1043,0 +0.347937,0.720619,-0.154908,0.654659,-0.109761,0.752993,-0.675776,0.512107,-0.713723,0.0919214,-0.723076,0.262444,-0.203151,-0.000320368,-0.754198,0.238586,-0.431159,0.146392,-0.296884,-0.454022,-0.702566,-0.562113,-0.893693,-0.628013,-1.1414,-0.791819,-0.840911,-0.61494,-1.16947,-0.716703,-1.15258,-0.756593,-1.43369,1 +0.347937,-1.24163,-0.113928,-1.3471,-0.510794,-1.13208,-0.456266,-0.71941,-0.237626,-0.777862,-0.440689,-0.644182,-0.188763,-0.597216,-0.494212,-0.62357,-0.197968,-0.758686,-0.0580171,-0.521976,0.0547973,-0.575197,0.125671,-0.624089,0.109808,-1.11204,0.294109,-0.793622,0.0693482,-0.61684,0.00738697,-0.669176,0.225542,0 +0.347937,0.672157,-0.340689,0.663527,-0.702869,0.767202,-0.773616,0.686523,-0.939887,0.570505,-1.28195,0.613078,-1.21456,0.615968,-1.4955,0.31957,-1.36332,0.0305467,-1.37241,0.0435279,-1.49357,-0.0720401,-1.4032,-0.290802,-1.46541,-0.784671,-1.37369,-0.577172,-1.56709,-0.691418,-1.57599,-0.933074,-1.75991,1 +-2.8659,-1.28859,-0.100517,-1.15621,-0.25149,0.913227,-2.14952,-1.00943,-0.374796,-2.61968,-2.33428,-0.644182,-0.188763,-0.527182,-0.155185,1.00005,2.02032,-2.17062,-1.88022,-0.552115,-0.0160101,-0.600356,0.108835,1.04394,2.10658,0.887941,1.94452,-0.657153,0.054938,1.13299,1.95452,-0.66843,-0.0309181,0 +0.347937,0.647384,-0.263577,0.767382,-0.562529,0.913227,-0.638484,0.9627,-1.12242,0.797729,-1.19384,0.874817,-1.01055,0.85744,-1.16705,0.972623,-0.702456,0.775996,-1.22559,0.683413,-1.18531,0.553018,-1.1088,0.786455,-1.14694,0.0661156,-1.14101,-0.215486,-1.20337,0.172579,-1.40972,0.0757397,-1.59859,1 +0.347937,-1.32604,-0.292143,-1.15621,-0.25149,-1.1166,-0.229209,-0.783228,-0.928892,-1.6554,-1.08476,-0.644182,-0.188763,-1.04272,0.686972,-1.21886,0.309599,0.443725,0.472329,-0.552115,-0.0160101,-0.600356,0.108835,-0.940728,0.113918,-0.649337,0.084719,-0.657153,0.054938,-0.326455,0.476375,-0.825471,0.781851,0 +0.347937,0.720619,0.050241,0.767382,-0.650526,0.913227,-0.753837,0.9627,-1.26571,0.929584,-1.14897,0.902493,-1.23699,0.862327,-1.44272,0.825783,-1.33087,0.541894,-1.32147,0.606326,-1.4889,0.444434,-1.41819,0.280984,-1.61279,-0.134696,-1.44623,0.0426905,-1.59229,-0.0744619,-1.72738,-0.228471,-1.93463,1 +0.347937,0.720619,-1.32856,0.767382,-2.42158,0.913227,-2.14952,0.9627,0.37372,0.929584,-1.14432,0.963054,1.83196,1.00462,-2.33683,1.00005,-0.583626,1.0229,-1.7569,1.08769,1.91387,1.05591,2.00473,1.04394,-0.664104,0.887941,-1.01434,1.0793,-1.91367,1.13299,-1.93975,1.24485,-2.16613,0 +0.347937,0.720619,-0.47013,0.767382,-0.472166,0.913207,-0.521038,0.9627,-0.773204,0.824082,-1.02371,0.894505,-0.790635,0.908403,-0.905931,0.910829,-0.558503,0.865415,-0.78949,0.858823,-0.929,0.77413,-0.862241,0.768718,-0.786996,0.427348,-0.934798,0.484098,-1.29934,0.58554,-1.24924,0.569977,-1.46634,1 +0.347937,0.720619,-2.06459,0.767382,0.232007,0.618741,-0.995335,0.9627,-0.624666,0.929584,0.396974,0.963054,-0.0317126,1.00462,-0.477348,1.00005,-2.00576,1.0229,-1.88022,0.461793,0.288969,1.05591,1.2909,1.04394,-0.194561,0.887941,0.77956,1.0793,-1.25407,1.13299,1.7292,1.24485,-0.432893,0 +0.347937,0.720619,0.0666647,0.767382,-0.177273,0.913227,-0.336035,0.9627,-0.193666,0.929584,0.0838078,0.963054,0.222009,1.00462,0.123738,1.00005,0.219878,1.0229,0.568115,1.08769,0.847767,1.05591,0.90037,1.04394,0.533962,0.887941,0.79445,1.00295,1.01249,1.13299,0.640051,1.24485,0.966483,1 +0.347937,-0.26526,-2.22985,0.767382,0.328098,-1.18805,-2.14952,0.9627,-2.44155,-0.0698011,-2.33428,-0.644182,-0.188763,-2.05898,-0.902724,-1.22772,0.0802131,1.0229,-1.88022,-0.552115,-0.0160101,-0.600356,0.108835,-0.965794,1.9539,-0.279193,0.60824,-0.657153,0.054938,1.13299,0.458889,-0.66843,-0.0309181,0 +0.347937,0.713487,0.0460048,0.767382,-0.278312,0.868795,-0.181239,0.886023,-0.327013,0.9167,-0.155533,0.791449,0.0203008,0.915955,-0.0402345,0.818971,0.23113,0.801017,0.21256,0.786507,0.212295,0.785409,0.38264,0.721159,0.403754,0.490347,0.374378,0.716557,0.35769,0.732666,0.317566,0.688869,0.225628,1 +-2.8659,-1.28859,-0.100517,-3.0798,-2.42158,0.913227,1.6911,-2.98156,1.69196,-2.61968,1.70762,0.963054,-2.20948,1.00462,2.02646,-2.23609,-2.00576,-2.17062,1.97278,1.08769,-1.94589,-2.25662,2.00473,-2.41358,2.10658,0.887941,-1.69167,-2.39361,2.02354,-2.36667,-1.93975,1.24485,-2.16613,0 +0.347937,0.0588862,-0.0432496,0.125403,-0.142312,0.0444022,0.13106,-0.836358,0.329574,0.28399,-0.0681675,0.353895,0.0998971,0.677377,0.0842717,0.326496,0.372667,-0.344006,0.840464,0.331543,0.395557,0.251296,0.537781,0.15947,0.606549,-0.154921,0.574006,0.0970415,0.553113,0.0946944,0.509593,1.24485,0.674471,1 +-2.8659,0.720619,-2.36586,-1.15621,-0.25149,-1.1166,-0.229209,0.9627,1.69196,0.929584,-2.33428,-1.79938,1.83196,-0.527182,-0.155185,-2.23609,2.02032,1.0229,1.97278,-2.19192,1.91387,1.05591,1.17527,-2.41358,2.10658,0.887941,1.94452,1.0793,-1.91367,1.13299,1.95452,1.24485,2.1043,0 +0.347937,0.720619,-0.114381,0.767382,-0.464896,0.913227,-0.376093,0.9627,-0.593975,0.929584,-0.537108,0.963054,-0.986726,1.00462,-0.49587,0.87261,-0.634556,0.806909,-0.619014,0.951472,-0.866549,0.990654,-0.779693,0.730581,-0.653956,0.552434,-0.641375,0.658802,-0.697679,0.790865,-0.782664,0.754169,-0.992597,1 +-2.8659,0.720619,2.16482,-1.15621,-0.25149,-1.1166,-0.229209,-2.98156,-2.44155,-0.84505,-0.313329,-0.644182,-0.188763,-2.05898,-2.33683,-2.23609,-2.00576,-2.17062,1.97278,-2.19192,1.91387,-0.600356,0.108835,-0.68482,0.139995,0.887941,-1.69167,-2.39361,2.02354,-2.36667,1.95452,-2.58171,2.1043,0 +0.347937,0.641677,0.0600499,0.767382,-0.158263,0.913227,-0.0503704,0.76882,-0.48111,0.739042,-0.261188,0.693842,-0.312876,0.813661,0.0592919,0.620515,0.0129173,0.627002,-0.0557246,0.529517,-0.168567,0.462271,-0.00357232,0.277699,-0.0115304,0.075298,0.0863371,0.20524,0.0303108,0.280999,0.0070949,0.328369,-0.0348042,1 +-2.8659,-3.2978,2.16482,-1.15621,-0.25149,-1.1166,-0.229209,-2.98156,1.69196,0.929584,1.70762,-0.644182,-0.188763,-0.527182,-0.155185,1.00005,-2.00576,-2.17062,1.97278,1.08769,1.91387,-0.600356,0.108835,-2.41358,-1.82659,0.887941,-1.69167,1.0793,2.02354,-2.36667,1.95452,-0.66843,-0.0309181,0 +0.347937,0.720619,-0.240561,0.767382,-0.187646,0.913227,-0.32774,0.9627,-0.410075,0.929584,-0.550305,0.71382,-0.293881,0.903394,-0.29913,0.501199,-0.141261,0.475708,-0.346087,1.00422,-0.625043,0.738769,-0.49129,0.783447,-0.545125,0.355768,-0.403986,0.612092,-0.704471,0.334299,-0.504399,0.560028,-0.87405,1 +0.347937,0.720619,1.2093,0.767382,-2.42158,0.913227,-2.14952,0.9627,-2.44155,0.929584,-2.33428,0.963054,-2.20948,1.00462,-2.33683,1.00005,-2.00576,1.0229,-1.88022,1.08769,-1.2279,1.05591,-1.78706,1.04394,-1.82659,0.887941,-1.69167,1.0793,-1.91367,1.13299,-1.93975,1.24485,-2.16613,0 +0.347937,0.720619,-0.297919,0.767382,-0.626113,0.641942,-1.79962,0.860484,0.887018,0.849247,-1.14964,0.777997,-0.830059,0.819835,-0.666409,0.693442,-1.24443,-0.378337,-1.88022,0.928367,0.1973,0.432442,-1.38033,0.27272,-1.48968,-0.116777,-1.44774,0.048716,-1.71039,-0.0396752,-1.78647,-0.92368,-2.16613,1 +-2.8659,-3.2978,-2.36586,-1.15621,-0.25149,-3.14642,1.6911,0.9627,-1.14983,-0.84505,-0.313329,-0.644182,-0.188763,-0.527182,-0.155185,1.00005,-2.00576,-2.17062,-1.88022,1.08769,-1.94589,-0.600356,0.108835,1.04394,-1.82659,-2.98649,1.94452,-2.39361,-1.91367,-0.61684,0.00738697,-2.58171,2.1043,0 +0.347937,0.720619,0.0893181,0.767382,0.125824,0.913227,-0.484763,0.926649,0.958673,0.929584,0.654786,0.963054,1.00575,1.00462,1.3885,1.00005,1.67361,1.0229,1.87837,1.08769,1.91387,1.02348,2.00473,0.899135,2.10658,0.57603,1.94452,0.642098,2.02354,0.509317,1.95452,0.335639,2.1043,1 +-2.8659,-3.2978,-2.36586,0.767382,1.9186,0.913227,-2.14952,-2.98156,1.69196,0.929584,-2.33428,-2.25142,-2.20948,-0.527182,-0.155185,1.00005,2.02032,-2.17062,-1.88022,1.08769,-1.94589,1.05591,-1.78706,1.04394,2.10658,0.887941,-1.69167,1.0793,-1.91367,-2.36667,1.95452,1.24485,-2.16613,0 +0.347937,0.720619,-0.423011,0.767382,-0.60426,0.913227,-0.683477,0.9627,-0.530092,0.929584,-0.818768,0.963054,-0.717404,1.00462,-0.634601,1.00005,-0.769872,1.0229,-0.843027,1.08769,-0.701486,1.05591,-1.02227,1.04394,-0.796947,0.865082,-0.776932,1.0793,-1.43766,1.13299,-1.46778,1.24485,-1.83383,1 +0.347937,0.720619,-2.36586,0.767382,1.9186,0.913227,-2.14952,0.9627,-2.44155,0.929584,-2.33428,0.963054,-0.225944,1.00462,-2.33683,1.00005,2.02032,1.0229,-1.60247,1.08769,1.91387,1.05591,-1.78706,-0.68482,0.139995,0.887941,1.94452,1.0793,-1.50304,1.13299,1.95452,1.24485,2.1043,0 +0.347937,0.483693,-0.432141,0.640578,-0.491437,0.752871,-0.545099,0.732098,-0.726888,0.724827,-0.956172,0.726292,-0.824543,0.730669,-0.938918,0.687455,-0.669744,0.627593,-0.859595,0.60485,-0.926008,0.495264,-0.840722,0.374855,-0.805659,0.051141,-0.866783,0.214183,-1.12335,0.206894,-1.10982,0.138763,-1.27118,1 +0.347937,0.143032,-0.159303,-0.362015,-0.752065,0.873017,-0.411119,0.956961,-0.586349,0.929584,-0.534643,0.303525,1.83196,0.755331,-2.33683,0.713166,-0.352308,0.715686,-0.498087,-0.977054,1.77357,0.259793,0.212275,0.447394,-0.261032,0.754738,-0.624576,0.450897,-0.376206,0.890396,-1.69352,-1.11204,-2.16613,0 +0.347937,0.720619,-0.460684,0.234817,0.349322,0.57715,-1.35044,0.9627,-0.957765,0.929584,-1.32103,0.640996,-0.441899,0.649805,0.164163,1.00005,0.799149,1.0229,0.55854,1.0279,-0.0525042,0.93333,-1.62283,1.04394,0.43111,0.887941,-0.0841459,1.0793,-0.164148,1.13299,1.04661,1.24485,-1.26417,1 +0.347937,0.040723,-2.36586,0.767382,1.9186,0.913227,-1.52198,0.585885,-1.21071,0.929584,-2.33428,0.963054,-1.99478,1.00462,1.44599,-0.333418,1.43617,1.0229,1.54965,1.08769,1.62956,1.05591,-1.78706,1.04394,1.81862,0.887941,-0.029403,1.00953,-0.658681,1.13299,1.27824,1.24485,0.710684,0 +0.347937,0.720619,-0.0907085,0.767382,-0.277726,0.913227,-0.28605,0.9627,-0.519758,0.891234,-0.439759,0.963054,-0.320999,0.962659,-0.327906,0.879681,-0.267801,0.930036,-0.229726,1.08095,-0.29098,0.970033,-0.148343,0.86188,-0.270058,0.676145,-0.199177,0.830017,-0.310277,0.849117,-0.384007,0.936179,-0.474317,1 +-2.8659,0.720619,2.16482,0.767382,-2.42158,-1.1166,-0.229209,-1.00943,-0.374796,-2.61968,-2.33428,-0.644182,-0.188763,-0.527182,-0.155185,-2.23609,2.02032,1.0229,1.97278,-2.19192,1.91387,-2.25662,2.00473,1.04394,-1.82659,0.887941,1.94452,-2.39361,2.02354,1.13299,1.95452,-0.66843,-0.0309181,0 +0.347937,0.544633,-0.00204307,0.65564,-0.202012,0.805748,-0.126568,0.836128,-0.347494,0.786034,-0.185039,0.846786,0.0550775,0.882807,-0.0196835,0.820428,0.263379,0.763333,0.324451,0.775849,0.212662,0.675648,0.378469,0.624799,0.3622,0.375547,0.367906,0.495628,0.356134,0.624229,0.216782,0.580137,0.2135,1 +0.347937,0.720619,-0.0447674,0.761072,-0.146002,0.863395,-0.0920411,0.208261,-2.44155,0.770506,-0.0880536,0.777611,0.895152,0.730071,0.153233,0.626745,0.313041,1.0229,0.836206,0.527697,0.299931,0.39569,0.421961,0.256418,0.462319,-0.102616,0.417667,0.097875,0.358812,0.0542558,0.293168,1.24485,2.1043,0 +0.347937,0.720619,0.0475905,0.767382,0.198717,0.913227,0.275467,0.825656,0.290967,0.694853,0.475629,0.568863,0.823255,0.691439,0.986271,0.449162,1.23032,0.346179,1.25996,0.231827,1.27962,0.0713097,1.41397,-0.0904047,1.55755,-0.512434,1.44247,-0.322087,1.44639,-0.417849,1.42272,-0.534691,1.49456,1 +0.347937,-3.2978,-2.36586,0.767382,1.9186,0.913227,-0.505253,-1.00943,-0.374796,-2.61968,1.70762,0.963054,1.83196,-0.25273,-2.33683,-2.23609,-2.00576,-0.434143,-1.88022,1.08769,-1.94589,-2.25662,2.00473,-2.41358,-1.82659,0.887941,-1.69167,-2.39361,-1.91367,1.13299,1.95452,-0.66843,-0.0309181,0 +0.347937,0.538424,0.0986287,0.508236,0.114995,0.913227,0.089524,0.0789285,1.03378,0.400867,0.428743,-0.382428,0.674873,0.35544,0.850246,0.20828,1.00611,-0.0686602,0.296093,0.068125,1.03504,-0.0823753,1.16724,-0.25512,1.25165,-0.688449,1.15556,-0.437752,1.15934,-0.495629,1.0795,-0.436215,1.41545,1 +0.347937,-2.58023,-2.36586,0.767382,1.54658,0.913227,-2.14952,0.9627,-0.858271,0.929584,1.63003,0.963054,-0.950151,1.00462,-2.33683,1.00005,0.285865,1.0229,-1.88022,1.08769,-0.0814911,-1.99636,2.00473,0.244386,1.82564,0.887941,1.94452,1.0793,-1.91367,1.13299,-1.93975,1.24485,-2.16613,0 +0.347937,0.70103,-0.231567,0.7634,-0.533797,0.886089,-0.602324,0.950354,-0.908907,0.80071,-0.92224,0.844938,-0.95593,0.848556,-1.11066,0.756077,-1.04079,0.822238,-1.05327,0.743594,-1.17083,0.637289,-1.1162,0.495609,-1.20671,0.2147,-1.20395,0.402258,-1.42846,0.341228,-1.55574,0.272807,-1.80838,1 +-2.8659,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,0.9627,1.69196,0.929584,1.70762,-0.644182,-0.188763,-0.527182,-0.155185,-1.2248,-2.00576,-2.17062,-1.88022,-0.552115,-0.0160101,-0.600356,0.108835,-2.41358,-1.82659,-2.98649,-1.69167,-2.39361,2.02354,1.13299,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,-0.185015,0.767382,-0.411708,0.905128,-0.441191,0.959505,-0.580045,0.910791,-0.592502,0.909597,-0.627159,0.932437,-0.702755,0.858242,-0.685204,0.872504,-0.573125,0.923562,-0.685506,0.855072,-0.604835,0.805592,-0.705442,0.561946,-0.657574,0.756895,-0.78355,0.746612,-0.926791,0.768729,-1.10177,1 +0.347937,0.612082,-0.161342,-3.0798,0.315577,-1.85531,0.45517,0.356427,-1.68568,0.929584,-0.381091,-1.1106,-0.199877,-1.3674,0.181922,0.869326,-0.924151,1.0229,-0.925135,-1.03971,-0.623036,-1.82374,0.817159,0.765122,-0.779071,-0.0378935,-0.930434,1.0793,-1.15365,-0.785419,0.406102,-0.785465,0.864014,0 +0.347937,0.68377,-0.0807183,0.730891,-0.334344,0.863801,-0.338647,0.882769,-0.518869,0.911909,-0.404413,0.878079,-0.413104,0.903042,-0.434217,0.906477,-0.225889,0.698473,-0.323604,0.895407,-0.351559,0.82829,-0.246436,0.844904,-0.247206,0.535619,-0.257847,0.706763,-0.41485,0.728974,-0.442304,0.753576,-0.541277,1 +0.347937,-1.28859,-0.100517,0.767382,0.870968,-1.1166,-0.229209,-0.792675,-2.44155,-0.84505,-0.313329,-0.644182,-0.188763,-2.05898,-0.644178,-1.51946,-1.66952,0.65469,1.26281,-0.552115,-0.0160101,0.284885,0.785062,-2.24592,1.02158,0.887941,-1.69167,-2.39361,1.66079,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.401838,-0.516479,-0.316676,-0.188145,0.779685,-0.234336,0.724999,-0.0896875,0.594551,-0.349483,0.77917,0.922452,0.877691,-1.40932,0.595532,-0.586968,0.810151,-0.34102,1.08769,1.91387,0.17163,-0.200006,0.872201,0.0853635,0.759271,0.105373,0.412191,-0.580882,0.861121,-0.493144,1.1171,-0.0613449,1 +-2.8659,0.720619,2.16482,0.767382,-2.42158,-1.1166,-0.229209,-1.00943,-0.374796,0.929584,1.70762,0.963054,1.83196,-2.05898,-2.33683,1.00005,-2.00576,-2.17062,1.97278,-0.552115,-0.0160101,1.05591,-1.78706,1.04394,-1.82659,0.887941,1.94452,-2.39361,-1.91367,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,2.16482,0.767382,1.9186,0.730746,1.6911,-1.54132,1.69196,-2.32069,1.70762,-2.25142,1.83196,-2.05898,1.42707,-2.23609,-1.15583,-2.17062,-0.763848,-2.19192,-1.94589,-1.47549,-1.78706,0.871302,-1.82659,0.887941,-1.69167,1.0793,-1.91367,1.13299,-0.667997,1.24485,0.713097,1 +0.347937,-2.65355,-2.36586,-3.0798,1.9186,0.913227,0.986673,-0.940111,-2.44155,-2.61968,-2.33428,0.963054,1.83196,0.831262,-2.33683,-2.23609,2.02032,0.764866,1.97278,1.08769,-1.94589,-2.25662,-1.78706,-1.01079,2.10658,0.887941,-1.69167,-2.39361,-1.91367,-2.36667,1.95452,1.24485,0.686749,0 +0.347937,0.6334,0.0839493,0.719042,-0.374469,0.855682,-0.392128,0.885728,-0.510396,0.83583,-0.287481,0.8897,-0.528143,0.922082,-0.58054,0.994063,-0.642286,0.868704,-0.645368,0.947126,-0.543177,0.892603,-0.456273,1.04219,-0.661331,0.64083,-0.502381,0.941411,-0.547829,0.852162,-0.753184,0.903634,-0.91005,1 +0.347937,-1.12116,-0.569103,-3.0798,1.9186,-3.14642,1.6911,0.408038,0.600153,-2.30279,-1.58093,-2.25142,-2.20948,-2.05898,2.02646,-0.662566,1.19803,-1.24631,-0.765023,-1.77587,-1.94589,-2.25662,-0.778461,-2.41358,0.60824,0.887941,-1.69167,-2.39361,-0.711125,-2.36667,-1.93975,-2.58171,1.28134,0 +0.347937,0.720619,-0.151691,0.767382,-0.349014,0.913227,-0.357524,0.9627,-0.55665,0.929584,0.821898,0.963054,-0.446163,1.00462,-0.472003,1.00005,0.659646,1.0229,-0.293532,1.07923,-0.381704,0.983051,-0.271879,1.04394,-1.67485,0.641527,-0.269792,0.782716,-0.385439,0.756411,-0.435879,0.747243,-0.521612,1 +-2.8659,-3.2978,2.16482,0.767382,-2.42158,-3.14642,1.6911,-1.00943,-0.374796,0.929584,1.70762,-2.25142,-0.567648,1.00462,2.02646,-2.23609,-2.00576,1.0229,-1.88022,-2.19192,-1.94589,1.05591,2.00473,1.04394,-1.82659,0.887941,1.94452,1.0793,2.02354,-0.61684,0.00738697,-2.58171,-2.16613,0 +0.347937,0.720619,0.0311442,0.662065,-0.0905123,0.912253,0.0248673,0.9627,-0.414292,0.83812,-0.171195,0.894152,0.107151,0.925912,0.0896821,0.852741,0.412284,0.970865,0.359629,1.08269,0.259153,0.903269,0.419951,0.899878,0.581121,0.663669,0.55497,0.880791,0.498091,0.753699,0.583272,0.930573,0.634543,1 +0.347937,-0.943247,-2.36586,-3.0798,1.9186,-1.1166,-0.229209,-1.00943,-0.374796,-2.61968,1.70762,-0.644182,-0.188763,-1.467,-1.63233,0.684866,0.734913,0.256122,0.323218,-0.552115,-0.0160101,-2.25662,-0.404629,-2.15067,2.03284,0.887941,1.94452,-2.39361,1.38784,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,0.120829,0.767382,0.0131963,0.913227,0.204282,0.935129,-0.18389,0.83961,0.0749156,0.850419,0.30203,0.839809,0.463157,0.765899,0.545184,0.761928,0.684514,0.815368,0.595724,0.639012,0.859551,0.632371,0.821576,0.276788,0.903591,0.432716,0.961106,0.376907,0.923184,0.369562,1.05597,1 +0.347937,-1.2551,-0.907545,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,-0.338894,-1.35509,-0.24889,1.67434,1.0229,-0.768472,-0.552115,-0.0160101,-0.462339,-1.78706,-0.8685,-0.187776,0.887941,-1.26746,-2.39361,0.426099,-0.61684,0.00738697,1.24485,-0.613661,0 +0.347937,0.720619,0.280082,0.754917,0.102973,0.803942,0.411156,0.800176,0.0924967,0.777108,0.436584,0.709914,0.758935,0.713742,0.918727,0.651728,0.979799,0.465489,1.14395,0.375244,1.10469,0.320296,1.33586,0.150359,1.22626,-0.210131,1.38326,-0.0375165,1.55397,-0.0232793,1.30893,-0.245576,1.64917,1 +0.347937,-0.00639301,2.16482,-0.755466,-2.42158,0.913227,1.6911,0.720502,0.264265,-2.03203,1.70762,-0.739347,0.998856,-0.500314,-0.0451432,-1.45189,-2.00576,-0.346258,-0.017079,-0.0163086,-0.862457,-2.25662,2.00473,0.714106,-1.82659,0.887941,0.014795,1.0793,2.02354,-0.256129,-1.93975,1.24485,2.1043,0 +0.347937,0.720619,-1.03966,0.767382,1.40062,0.650568,0.127834,0.9627,-0.579921,0.820338,0.656524,0.407786,-0.513695,1.00462,-0.136009,0.961426,-1.00177,0.70395,-0.425651,0.89198,-0.384521,1.05591,-0.124587,0.933174,0.349988,0.750205,-0.00536774,1.0793,-0.484204,0.152561,0.393874,0.314651,-0.146262,1 +0.347937,0.414878,0.139563,0.767382,0.597667,0.913227,-2.14952,0.310674,-0.200693,0.929584,0.233095,0.963054,1.03575,1.00462,0.61945,1.00005,0.0610691,0.359033,-0.782593,1.08769,1.20939,0.875874,0.612858,0.888918,-0.515528,0.887941,0.416267,-0.00283943,0.0166093,1.13299,0.444792,1.24485,0.767844,0 +0.347937,0.720619,0.53482,0.767382,-0.197737,0.913227,-0.0801159,0.9627,-0.285574,0.907614,0.35896,0.963054,-0.0778456,1.00462,-0.0595421,0.931282,-0.487886,0.773345,-0.120705,1.08769,0.0640801,1.0548,0.627854,1.04394,-0.628076,0.818472,0.0869008,0.84917,0.514804,1.03812,-0.421392,0.868984,-0.187408,1 +-2.8659,0.720619,-2.36586,0.767382,-2.42158,0.913227,-2.14952,0.9627,-2.44155,0.929584,1.70762,0.963054,1.83196,1.00462,-2.33683,1.00005,2.02032,1.0229,1.97278,1.08769,1.91387,1.05591,-1.78706,1.04394,-1.82659,0.887941,-1.69167,1.0793,1.34683,-0.61684,0.00738697,1.24485,-2.16613,0 +0.347937,0.720619,1.43502,0.407843,1.52844,-0.243386,1.6911,-0.602798,1.28979,-1.62362,1.70762,-1.91607,1.36905,-2.05898,0.723318,-1.24981,-1.17304,-2.1372,-0.778682,-1.75053,-1.48926,-1.22429,-1.73949,0.030297,-1.82659,-0.239945,-1.56979,-0.209617,-1.91367,1.02048,-0.678434,1.22219,0.0426613,1 +0.347937,0.720619,2.16482,0.767382,-2.42158,0.913227,-2.14952,0.9627,1.69196,0.929584,1.70762,0.963054,1.83196,1.00462,-2.33683,1.00005,2.02032,1.0229,1.97278,1.08769,1.91387,1.05591,2.00473,1.04394,2.10658,0.887941,1.03548,-0.657153,0.054938,1.13299,-1.93975,1.24485,-2.16613,0 +0.347937,0.720619,-0.0205735,0.767382,0.145225,0.913227,0.28866,0.9627,0.143297,0.929584,0.26826,0.963054,0.592105,1.00462,0.535828,1.00005,1.32987,1.0229,1.08363,1.08769,1.16637,1.05591,1.23608,0.864024,1.48369,0.684572,1.42408,0.829444,1.37684,0.684843,1.67435,0.69943,1.58836,1 +-2.8659,0.720619,-2.36586,0.767382,1.9186,-3.14642,-2.14952,0.9627,-2.44155,-0.84505,-0.313329,-0.644182,-0.188763,-2.05898,2.02646,1.00005,-2.00576,1.0229,-1.88022,-1.78197,1.91387,1.05591,-1.78706,1.04394,-1.82659,0.887941,-1.69167,-2.39361,-1.91367,-0.61684,0.00738697,1.24485,-2.16613,0 +0.347937,0.641999,0.0947549,0.705057,0.166882,0.832562,0.297935,0.924125,0.349642,0.803,0.621986,0.7423,0.872459,0.741453,1.12749,0.567086,1.39758,0.527955,1.45533,0.341136,1.31214,0.200267,1.55345,0.0173141,1.60882,-0.402226,1.64992,-0.224012,1.74914,-0.376133,1.69818,-0.495316,1.81145,1 +0.347937,0.106685,0.780451,-1.15621,-0.25149,-1.78516,1.11195,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,-0.211096,-0.683273,-0.277708,0.398696,0.167501,1.55232,-0.552115,-0.0160101,-0.600356,0.108835,0.584311,0.678467,0.42669,1.28077,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,0.0143353,0.767382,-0.0165339,0.913227,0.145213,0.9627,0.213257,0.929584,0.390487,0.963054,0.584385,0.921515,0.780324,0.824101,1.02167,0.638179,1.17908,0.77029,1.14119,0.717668,1.29866,0.467274,1.39747,0.10176,1.38882,0.203052,1.4858,0.206054,1.40327,-0.0297584,1.57568,1 +-2.8659,0.720619,2.16482,-1.15621,-0.25149,0.913227,-2.14952,0.9627,-2.44155,0.929584,1.70762,0.963054,1.83196,1.00462,-2.33683,1.00005,2.02032,1.0229,1.97278,1.08769,-1.94589,-2.25662,-1.78706,1.04394,-1.82659,0.887941,-1.69167,1.0793,2.02354,-0.61684,0.00738697,1.24485,-2.16613,0 +0.347937,0.720619,-0.00813683,0.767382,0.00853062,0.913227,0.0810939,0.9627,0.202262,0.906567,0.310922,0.846449,0.571816,0.868561,0.711995,0.70781,0.934465,0.681499,0.951623,0.749891,1.07017,0.564513,1.2109,0.474777,1.3145,0.0918031,1.23528,0.279699,1.25445,0.176044,1.24647,0.105338,1.30696,1 +-2.8659,0.720619,2.16482,0.767382,-2.42158,0.913227,1.6911,0.9627,1.69196,0.929584,1.70762,0.963054,1.83196,1.00462,2.02646,1.00005,-2.00576,-2.17062,1.97278,-2.19192,1.91387,-2.25662,2.00473,1.04394,-1.82659,0.887941,1.94452,-2.39361,2.02354,-2.36667,-1.93975,-2.58171,2.1043,0 +0.347937,0.720619,0.44697,0.767382,0.802958,0.913227,1.1721,0.9627,1.69196,0.929584,1.70762,0.963054,1.83196,1.00462,1.52747,1.00005,2.02032,1.0229,1.97278,0.669015,1.91387,0.884437,2.00473,0.43244,2.10658,-0.308193,1.94452,-0.469286,2.02354,-0.920786,1.95452,-2.22551,2.1043,1 +-2.8659,0.720619,2.16482,0.767382,-2.42158,0.913227,1.6911,-2.98156,1.69196,-0.84505,-0.313329,0.963054,1.83196,-0.527182,-0.155185,-0.61802,0.00728077,-2.17062,1.97278,-2.19192,1.91387,1.05591,2.00473,1.04394,-1.82659,0.887941,1.94452,1.0793,2.02354,1.13299,-1.93975,-2.58171,2.1043,0 +0.347937,0.720619,-0.25012,0.767382,1.1143,0.913227,-0.0456848,0.9627,0.0443414,0.929584,-2.33428,0.963054,-1.00835,1.00462,-0.500997,1.00005,0.105819,1.0229,-1.13925,1.08769,-0.528838,1.05591,-1.78706,1.04394,-1.00145,0.887941,-1.353,1.0793,-1.91367,1.13299,-1.52219,1.24485,-1.0612,1 +-2.8659,0.720619,-2.36586,0.767382,1.9186,0.913227,1.6911,0.9627,1.69196,0.929584,1.70762,0.963054,-2.20948,1.00462,-2.33683,1.00005,2.02032,1.0229,-1.88022,1.08769,1.91387,1.05591,2.00473,1.04394,-1.82659,0.887941,1.94452,1.0793,-1.91367,1.13299,1.95452,1.24485,-2.16613,0 +0.347937,0.565448,0.0762697,0.626556,0.101172,0.704196,0.243533,0.649348,0.352639,0.55338,0.53943,0.492391,0.760633,0.557269,1.07692,0.360249,1.29965,0.244433,1.29704,0.102217,1.27653,-0.0333829,1.40454,-0.275226,1.63747,-0.685757,1.46973,-0.488821,1.4534,-0.568982,1.50808,-0.745401,1.45325,1 +0.347937,0.0816505,-0.492738,0.427522,0.223934,-0.169825,0.401843,-0.50072,0.830203,0.929584,-0.620391,-0.627145,0.710923,-0.510945,0.692797,-0.315749,0.836008,-0.40513,0.746624,-0.481194,0.577333,-0.601731,0.581595,-0.734297,0.521612,-1.13285,0.389705,-0.740139,0.258669,-0.69707,0.144933,-0.745209,0.0670028,0 +0.347937,0.215343,-0.164196,0.107206,-0.363857,0.519868,-0.175229,0.685556,-0.322817,0.281168,-0.13694,0.506567,-0.0303385,0.59221,-0.0422198,0.652974,-0.552565,0.47962,0.0177906,0.738379,0.118175,-0.0270394,-0.24454,0.445527,0.195276,0.132601,0.00575902,0.272719,-0.361501,0.415981,-0.266244,0.409913,0.0322628,1 +0.347937,-0.501402,-0.244208,0.718599,-0.157568,0.913227,1.6911,-0.302995,-0.0586036,0.121735,-0.0493929,0.345345,-1.84757,0.358748,1.32637,0.462705,-0.203041,0.170902,-0.176555,0.523171,0.269458,0.777807,0.971883,0.127954,0.46287,-0.0940534,0.392414,-0.0934477,0.00351808,0.0676595,0.270659,-0.0100517,0.241428,0 +0.347937,0.0685706,0.0020572,0.32459,-0.480782,0.453635,-0.156736,0.292924,-0.468379,0.300086,-0.290451,0.429323,-0.470896,0.576861,-0.204578,0.627586,0.181992,0.414329,-0.106392,0.691661,-0.474821,0.624652,-0.170183,0.782997,-0.156842,0.382056,0.0209583,0.50266,0.0995072,0.895278,0.080872,0.732243,-0.0147973,1 +0.347937,0.172648,-0.213784,0.560423,-0.176361,0.913227,1.16737,0.299354,-0.49692,0.0100042,-0.653212,0.670682,0.00439775,0.343155,2.02646,0.198377,0.446485,0.493065,0.238934,1.08769,-0.594975,1.03332,-1.78706,0.30529,0.783601,0.0545892,0.393196,0.0768986,0.216009,0.239301,0.292506,1.24485,2.1043,0 +0.347937,-0.130341,-0.136061,-0.379232,-0.25149,-0.336514,0.0192984,-0.220579,-0.496362,0.157104,-0.0280113,0.105867,-0.0223566,0.277762,-0.274957,0.321091,0.0388653,0.227651,0.0462836,0.200261,0.112655,0.360925,0.264962,0.176169,0.147704,-0.107769,0.308945,0.146392,0.217053,0.172299,0.465529,0.156901,0.337513,1 +0.347937,-0.446088,0.182242,-0.482951,0.0197717,-0.646042,0.307613,-1.08114,0.541147,-0.76489,0.418133,-0.95102,0.490927,-0.731677,0.440883,-0.573895,0.821655,-1.1291,0.291469,-0.880535,0.0819894,-0.909018,0.798257,-0.926897,0.0455597,-1.24244,-0.00291331,-2.39361,-1.91367,-0.667865,-0.137947,-0.678493,-0.165736,0 +0.347937,0.485642,-0.598802,0.767382,0.537838,0.556039,0.139606,0.668576,-0.252837,0.762023,-0.400068,0.72507,0.316417,0.666042,0.39725,0.501781,1.17363,0.560321,0.798697,0.647829,0.516155,1.05591,0.769951,0.296422,1.16339,0.303115,1.09429,0.747657,1.20823,0.136043,1.38836,0.333382,1.12605,1 +0.347937,0.410337,-0.294884,-1.76685,-1.99956,-1.29849,-1.31293,0.581053,-0.280221,0.743496,-0.328748,-0.941424,1.10381,-0.833833,-1.64012,0.768682,-0.221078,0.67128,-0.256736,-0.666229,0.964564,-1.16561,1.64326,0.679721,0.0668775,0.323862,-0.333335,0.695268,-0.222812,-0.990499,-1.51469,-1.02227,-1.30921,0 +0.347937,0.135337,-0.661937,0.0815835,-0.157134,-0.198771,0.50552,0.276733,0.00261365,0.0422671,0.231458,0.285218,-0.654398,0.24538,0.670042,0.00810814,-0.850454,0.00236385,-0.456282,-0.110073,0.210539,0.28154,0.0359381,-0.14365,-0.0994173,-0.0820233,0.0489025,0.182388,-0.0326255,0.509142,-0.483623,0.296532,0.28473,1 +0.347937,-2.37718,0.236135,-1.80534,1.34081,-0.0608441,-0.496746,-0.380539,-0.515563,-0.476938,-0.619906,0.117133,-0.00734265,0.33594,-0.492903,-0.352511,0.917193,-0.0350164,0.1119,0.275396,0.121417,-1.65667,-1.05922,1.04394,1.43077,-0.248275,-0.602922,-0.920574,0.274359,-0.574861,1.09428,0.338567,-0.222618,0 +0.347937,-0.701861,0.207161,-0.284225,0.113259,-0.0654924,-0.238983,0.0285405,0.0568039,0.0859586,-0.649574,0.117133,-0.284828,0.323241,-0.0699921,0.70336,-0.443861,0.103886,-0.0354771,0.0214069,0.111767,-0.13357,-0.287084,0.209482,0.0775365,-0.0735189,0.0655017,-0.0557319,0.248786,0.622006,-0.0289856,0.0884438,-0.0998001,1 +0.347937,0.30184,0.281215,-1.15621,-0.25149,0.0310866,-0.0972067,-0.231071,1.69196,-0.164318,1.69867,-0.683383,0.886564,-0.163763,0.125374,-0.661077,1.92212,-1.38818,1.68231,-0.719375,0.732843,-1.30546,0.558635,-2.26791,1.72723,-1.71076,1.73086,-2.39361,1.42117,-2.36667,0.257789,-0.66843,-0.0309181,0 +0.347937,0.522029,0.275688,0.369179,0.559669,0.364972,0.740835,0.169587,1.13387,-0.0588338,1.32671,-0.251824,1.57923,-0.428565,1.70004,-0.822075,1.76659,-1.03275,1.5801,-1.31684,1.25625,-1.54666,1.12892,-1.86312,0.925668,-2.44105,0.596132,-1.91381,0.275776,-1.86753,-0.100192,-1.9637,-0.455911,1 +0.347937,0.674689,0.331007,0.434274,0.752373,0.340229,0.898626,-0.0634397,1.36702,-0.287655,1.55894,-0.478814,1.7096,-0.730207,1.68372,-1.13613,1.85171,-1.40649,1.57833,-1.67168,0.939437,-1.88244,0.74466,-2.16076,0.491012,-2.66325,0.101736,-2.0874,-0.325416,-1.79428,-0.648059,-1.81531,-1.09212,1 +0.347937,-3.2978,-2.36586,-1.15621,-0.25149,-0.0851614,-1.73669,0.185404,0.305145,-2.61968,-1.14935,-0.644182,-0.188763,-0.527182,-0.155185,1.00005,-0.530401,0.00867106,-1.17739,1.03961,-1.94589,-2.25662,-1.78706,1.04394,-1.03227,-2.98649,-1.69167,-2.39361,-1.91367,1.13299,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.199913,0.0121606,0.364851,-0.196304,0.478338,-0.156371,0.296711,-0.169195,0.35817,0.316237,0.576257,-0.0402804,0.616994,0.0289889,0.525648,-0.150803,0.441889,0.0462836,0.596093,0.203128,0.528936,0.339849,0.473723,0.443735,0.193604,0.373833,0.48382,0.400212,0.428842,0.293558,0.430844,0.291798,1 +0.347937,0.720619,-2.36586,-1.15621,-0.25149,0.465469,-2.1354,0.585668,0.764956,-1.58883,-2.23026,-0.644182,-0.188763,-0.527182,-0.155185,0.547945,-1.5469,0.600224,-1.11528,-0.552115,-0.0160101,-0.295901,-1.78706,-2.41358,-1.82659,-2.98649,-1.69167,1.0793,-1.91367,1.13299,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.720619,-0.0618027,0.694574,-0.319674,0.913227,-0.29519,0.9627,-0.479601,0.912299,-0.456654,0.949762,-0.370668,1.00462,-0.498292,1.00005,-0.279718,0.995918,-0.181294,1.08769,-0.373405,1.05591,-0.256541,1.02615,-0.294287,0.819945,-0.241611,0.985517,-0.282146,1.07063,-0.431907,0.996332,-0.528337,1 +-2.8659,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-0.552115,-0.0160101,-0.600356,0.108835,-0.68482,0.139995,0.887941,-1.69167,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.634304,-0.37451,0.0617705,-0.526874,0.839443,-0.579511,0.904049,-0.199949,0.787667,-0.336044,0.698551,-0.688265,1.00462,-0.840111,0.988286,-0.419805,1.00179,-0.358628,1.08769,-0.540263,0.942059,-0.639246,1.04394,-0.238239,0.670837,-0.447457,0.756808,-0.412172,0.942173,-0.612913,0.661891,-0.91859,1 +0.347937,-0.717794,-0.821303,-1.15621,-0.25149,0.267378,-2.14952,-0.404342,1.60583,0.297708,-0.1832,-0.0840925,-1.90331,-0.527182,-0.155185,0.338113,-0.71711,0.145897,-1.50806,-0.552115,-0.0160101,-0.600356,0.108835,-0.265735,0.490107,0.887941,-0.307445,-0.551907,-0.89954,-0.331827,-1.35709,-0.66843,-0.0309181,0 +0.347937,0.609912,-1.21758,0.767382,-0.331609,0.890859,-1.90087,0.767124,1.00873,0.929584,-0.517525,0.963054,-0.441212,1.00462,-0.482802,1.00005,-0.348644,1.0229,-0.348475,1.08769,-0.468606,1.05591,-0.394922,1.04394,-0.447071,0.887941,-0.479073,1.0793,-0.672087,1.13299,-0.785877,1.24485,-0.986191,1 +0.347937,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,0.258684,1.70762,-0.644182,-0.188763,-0.527182,-0.155185,-0.0260493,-1.44112,0.321892,-1.88022,-0.552115,-0.0160101,-0.600356,0.108835,-0.68482,0.139995,0.887941,0.325981,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.709549,-0.0886017,0.461185,-0.496992,0.674459,-0.544734,0.944182,-0.504113,0.867188,-0.464819,0.725521,-0.128828,0.807948,-0.610014,0.90104,-0.253951,0.995726,-0.125849,0.921677,-0.0145627,0.854442,-0.00268126,0.929284,-0.250805,0.647319,-0.197304,0.98022,-0.271476,0.787453,-0.493826,0.796873,-0.624379,1 +0.347937,-1.08496,0.144389,-1.15621,-0.25149,-1.1166,-0.229209,0.0699158,1.32887,-0.293476,1.70762,-0.644182,-0.188763,-0.527182,-0.155185,-0.016713,-2.00576,-0.0452037,-1.88022,-0.552115,-0.0160101,-0.600356,0.108835,-1.42072,-1.82659,0.887941,-1.69167,0.30493,-0.410617,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,-1.39684,0.751031,-1.84371,0.700461,-2.10055,0.9627,-1.11507,0.929584,-0.782774,0.366609,-1.93471,1.00462,-1.41039,1.00005,-1.59516,0.651991,-1.66738,1.03195,-1.94589,0.561018,-1.31111,0.386075,-1.37239,-0.00749857,-1.29144,0.749723,-1.91367,1.13299,-1.93975,-0.0859323,-1.65607,1 +0.347937,0.0356597,-1.52494,-1.15621,-0.25149,-1.1166,-0.229209,0.514493,1.69196,0.929584,-0.8798,-0.644182,-0.188763,-0.527182,-0.155185,0.387141,-0.450222,0.768874,-1.88022,1.08769,-1.94589,-0.600356,0.108835,-0.68482,0.139995,0.887941,-1.58148,-0.880792,-1.77945,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.445036,0.33692,0.400361,0.641481,0.247506,0.842035,0.0665435,1.07115,-0.193671,1.33441,-0.328891,1.54241,-0.589388,1.72722,-0.896991,1.53286,-1.11836,1.3129,-1.34249,1.0665,-1.59793,0.886075,-1.70883,0.646333,-2.27046,0.286746,-1.65112,-0.0989281,-1.5769,-0.380541,-1.48946,-0.713204,1 +0.347937,-0.444722,-1.48237,-1.15621,-0.25149,0.913227,-2.14952,0.765487,1.69196,-0.0819573,0.980078,-0.644182,-0.188763,-0.527182,-0.155185,0.466087,-0.5765,0.767421,-1.88022,-0.552115,-0.0160101,-0.600356,0.108835,-0.321781,1.47728,0.887941,0.526408,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,0.429459,0.60203,0.87724,0.467072,1.15618,-0.0695139,1.36586,-0.354559,1.54049,-0.492025,1.59448,-0.863871,1.83892,-1.17088,1.52747,-1.39396,1.2894,-1.61023,0.844988,-1.82768,0.661715,-1.90944,0.210616,-2.43886,-0.0907093,-1.78519,-0.499874,-1.51365,-0.859187,-1.38461,-1.16939,1 +0.347937,0.546883,1.74768,-2.55991,1.9186,-1.91769,0.841075,-0.902838,0.239649,-1.17511,-0.520294,-0.694939,-0.370022,-0.505722,-0.229426,-0.600092,-0.00352924,-0.568399,0.0481523,-0.551328,-0.0145627,-0.600406,0.109195,-0.684872,0.140035,-1.04929,0.126426,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,-0.858037,-0.316268,-0.515018,-0.0964801,-0.729955,0.136572,-0.539867,-0.177959,-0.126749,-0.26521,-0.14671,-0.28499,-0.0530602,-0.259075,-0.155721,-0.232371,-0.041611,0.138024,-0.0445625,-0.0160101,-0.245435,-0.116871,-0.0674122,0.0463464,-0.620976,0.0847918,-0.326393,0.054938,-0.319421,-0.0322178,-0.387293,-0.0709961,1 +0.347937,0.720619,-0.434746,0.767382,-0.144765,0.0480559,-0.260682,0.283774,-0.340922,0.667755,-0.379595,0.515133,-0.188763,0.527491,-0.512822,-0.299713,-0.289723,0.472946,-0.284612,0.550047,0.0472708,1.05591,-0.450605,-0.146347,-0.537023,-0.0344646,-0.243102,-0.0878216,-0.00961251,-0.129179,-0.854455,0.27252,-0.170924,0 +0.347937,0.684092,-0.100517,0.548612,-0.183544,0.634106,-0.141412,0.568274,-0.374796,0.381063,-0.221477,0.631047,-0.018295,0.654109,0.0537942,0.396946,0.519699,0.514845,0.291469,0.606801,0.22731,0.535909,0.364648,0.603881,0.586942,0.201798,0.400741,0.511013,0.108622,0.445571,0.327983,0.457343,0.333712,1 +0.347937,-0.499252,1.08609,-2.67246,-0.00535796,-1.45411,-1.6959,0.305329,-0.350202,0.612688,0.50467,-1.72473,0.432185,-1.0602,-1.54419,0.133233,0.318818,0.300559,0.160949,-1.40203,0.851685,-1.38958,-0.793496,-0.129146,1.52129,-0.0424847,0.832721,0.33511,0.828324,-1.57734,-0.575099,-0.181673,-1.22316,0 +0.347937,0.457192,-0.261606,0.767382,-0.305612,0.913227,-0.361499,0.721666,-0.370208,0.637763,-0.443558,0.963054,-0.336013,1.00462,-0.591513,0.787904,0.114636,0.831292,-0.0264996,1.08769,-0.238449,1.05591,-0.245071,0.77501,0.209927,0.887941,-0.131053,0.770595,-0.233797,1.13299,-0.296542,1.24485,-0.975152,1 +0.347937,-0.411851,-0.388827,-0.037025,-0.567129,-0.747533,-1.52106,-0.328159,-0.449943,-0.328791,-0.423571,-0.176621,0.399085,0.0298407,-1.0675,-0.294406,-0.0293162,0.00678688,0.151374,-0.343417,0.931389,0.423515,0.419079,-0.11905,0.461808,-0.253118,-0.00133156,-0.0572947,-0.0524493,-0.394139,-0.70067,-0.111838,-0.652073,0 +0.347937,0.720619,-2.19489,0.767382,1.38632,-0.120825,-0.337898,0.218496,-0.374796,0.929584,-0.31442,0.0836226,-0.0362592,0.426576,-0.278666,0.981895,0.00556969,0.26971,0.0462836,0.314194,0.129638,0.976244,0.106712,1.04394,1.69842,0.736683,0.124099,0.981019,-1.91367,1.13299,0.852367,0.161856,-0.272646,1 +0.347937,0.194407,1.78726,-2.62179,-0.768188,-0.439995,-0.503544,-0.117279,-0.670052,-2.03911,-0.0544857,-0.108442,-0.188763,-0.0895323,-0.31102,-1.23635,1.03721,-0.193671,0.0921535,0.1897,0.075891,-0.324306,-0.387699,-1.67462,-0.0612654,-0.567122,-0.80224,1.0793,0.054938,-1.7834,-0.0853357,-0.167342,0.0199213,0 +0.347937,-0.409561,-0.00612068,-0.0341204,-0.477548,-0.313131,-0.229209,-0.352061,-0.503968,0.00530145,-0.313329,-0.1754,0.0217355,0.302547,-0.109742,0.0898854,-0.454047,-0.00833447,-0.395212,-0.00551872,0.144807,-0.186289,0.464315,-0.000526704,-0.22874,-0.196668,-0.0565472,0.0663757,-0.109106,0.40389,-0.601094,-0.0306768,-0.164369,1 +0.347937,0.720619,2.16482,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,0.00223134,-2.11395,-1.47197,0.730443,-1.98988,0.468131,0.428256,2.02032,-0.57386,0.0462836,-0.552115,-0.0160101,0.427026,0.49372,-2.41358,-1.82659,0.887941,-1.69167,1.0793,2.02354,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.624519,0.0488818,0.644541,0.0312732,0.730462,0.138569,0.664533,-1.40739,0.752529,0.925916,0.608449,0.50491,0.579603,0.673576,0.452252,0.829485,0.950602,1.19952,0.321213,0.834837,0.17433,0.952715,0.0142887,1.00921,-0.383377,0.912227,0.911387,2.02354,-0.207292,0.778843,-0.311948,0.763189,1 +0.347937,-0.0862792,0.81314,0.436697,1.49589,0.42609,1.12862,0.647356,-0.601808,0.881864,-0.152037,0.895936,-1.92107,0.881489,1.77434,0.92646,-0.0975179,0.842038,0.395654,1.06283,-1.35909,0.83513,-1.51699,-0.190327,-0.45122,0.887941,0.436885,0.436085,0.895079,0.91876,1.5847,0.900056,1.43858,0 +0.347937,0.63788,0.128939,0.767382,-0.293112,0.878984,-0.180145,0.903023,-0.567335,0.911039,-0.368218,0.930588,-0.251325,1.00462,-0.27175,1.00005,-0.0969744,0.924543,0.0762792,1.04866,-0.195181,1.02095,0.00801157,0.898149,-0.168268,0.804195,-0.000749771,0.92264,0.0806677,1.13299,-0.202845,1.11367,-0.177992,1 +0.347937,-1.28859,-0.100517,-1.80392,1.60151,-1.1166,-0.229209,0.348756,-2.44155,0.877729,0.320946,-1.06284,-1.38527,-0.990413,1.27521,0.905473,0.337238,-0.57386,0.0462836,-0.552115,-0.0160101,-0.899196,-1.78706,-0.68482,0.139995,0.887941,-1.69167,-0.657153,0.054938,-0.539025,1.2123,-0.66843,-0.0309181,0 +0.347937,0.658997,-0.080673,0.767382,-0.233196,0.885987,-0.243861,0.920654,-0.433574,0.92639,-0.384264,0.963054,-0.214446,1.00462,-0.211493,1.00005,-0.0163724,0.998712,0.0467652,1.08769,-0.0664187,1.05591,0.018894,0.975114,0.0509678,0.872211,0.0632837,1.02756,0.00615601,1.13299,-0.0676752,1.21462,-0.118718,1 +0.347937,-1.28859,-0.100517,0.746588,-0.744166,-0.732573,-0.333001,-1.00943,-0.374796,0.809672,-0.16586,0.963054,-0.592907,1.00462,-0.00188131,1.00005,-0.221219,-0.57386,0.0462836,1.08769,-0.422849,1.05591,-0.680273,-0.68482,0.139995,0.887941,-0.192977,-0.657153,0.054938,1.13299,-0.497817,-0.115129,-0.365634,0 +0.347937,-0.000244826,-0.0687347,-0.499379,-0.304418,-0.0458437,-0.162651,-0.62463,-0.122756,-0.0764027,-0.217233,-0.291378,-0.0901922,-0.0788556,-0.155185,-0.0260493,0.00728077,-0.0675744,0.187246,-0.112172,0.219339,-0.207854,0.219043,-0.305341,0.331856,-0.675315,0.228985,-0.354836,0.16329,-0.275413,0.00738697,-0.341776,0.125315,1 +0.347937,0.720619,2.16482,0.767382,-2.42158,-1.1166,-0.229209,-1.00943,-0.374796,0.929584,1.70762,0.963054,-2.20948,1.00462,2.02646,1.00005,-2.00576,-0.57386,0.0462836,-0.552115,-0.0160101,1.05591,-0.417806,-0.68482,0.139995,0.887941,-1.69167,1.0793,2.02354,1.13299,-1.93975,-0.66843,-0.0309181,0 +0.347937,-0.591515,0.361793,-0.253294,0.279966,-0.288103,0.162688,-0.0837329,0.553134,-0.301799,0.882749,-0.447376,0.924695,-0.527182,0.957888,-0.717078,1.1165,-0.899728,1.10782,-1.02062,0.850469,-1.07357,0.727901,-1.74323,0.581475,-1.95161,0.397232,-1.68486,0.416512,-1.22393,0.00738697,-1.17604,-0.553832,1 +0.347937,-1.28859,-0.100517,0.767382,-2.42158,-1.1166,-0.229209,-1.00943,-0.374796,0.929584,1.70762,0.963054,-0.700854,1.00462,0.352875,1.00005,-2.00576,-0.57386,0.0462836,-0.552115,-0.0160101,1.05591,2.00473,-0.68482,0.139995,0.887941,-1.69167,-0.657153,0.054938,1.13299,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.513791,0.765635,0.597644,0.562294,0.390852,1.06982,-0.110376,1.23605,-0.505775,1.48473,-0.679638,1.54964,-0.842549,1.64146,-1.2248,1.36904,-1.37224,0.967035,-1.75785,0.721881,-2.02523,0.276129,-1.96868,-0.105828,-2.36513,-0.312299,-1.61476,-0.784613,-1.38883,-0.980493,-1.21708,-1.23983,1 +0.347937,-3.2978,0.536156,-0.728748,0.0747401,-2.65303,-1.59232,-1.61525,1.0976,-2.61968,1.70762,-1.95728,0.49802,-1.7386,-0.212213,-2.20436,-1.66368,-1.53401,-0.998804,-0.627136,-1.61795,0.958489,-1.67554,-2.41358,-0.708332,0.391723,0.293255,-2.39361,0.157876,-0.296603,0.0582852,-1.43759,-1.06097,0 +0.347937,-0.752794,-0.327051,-0.1303,-0.25149,-0.439995,-0.485243,-0.28631,-0.133668,0.160582,-0.279639,0.507676,-0.0203763,0.545076,-0.300635,0.244945,0.409888,0.0914633,0.0141688,-0.0328379,0.369967,0.559031,0.108835,-0.252631,0.402201,-0.15401,0.225313,0.037429,0.120552,0.199754,0.0722851,0.128776,-0.137679,1 +0.347937,-1.82439,0.805619,-1.68141,0.0123717,-1.47746,-0.314547,-0.887317,-0.516968,-0.765884,-0.261289,-0.658406,-0.133678,-0.551476,-0.158807,-0.619525,-0.0104943,-0.566355,0.043336,-0.549852,-0.011417,-0.602244,0.110769,-0.686013,0.139012,-1.04891,0.125644,-0.656702,0.0550365,-0.61684,0.00767905,-0.668583,-0.0308754,0 +0.347937,0.720619,-0.957677,0.0915284,0.393678,0.200049,-0.696304,0.696186,0.0162129,0.929584,-0.85953,0.18115,-0.188763,0.425014,-0.273103,-0.0932477,-0.427978,0.573143,-0.294052,0.467221,0.0883001,0.65304,0.365046,-0.0774217,-0.444672,0.133027,-0.276519,0.358291,-0.398372,0.660065,-1.15036,0.314058,-0.550287,1 +0.347937,0.610736,-0.180167,-3.0798,-0.972025,-3.14642,-0.259223,0.908782,-0.350574,0.811731,-0.352798,-2.25142,0.142757,-2.05898,-0.163715,0.924211,-0.0634976,0.898164,-0.00638692,-2.17911,0.210153,-2.14663,0.767961,0.969651,0.132306,0.540036,0.37656,0.90972,-0.075797,-2.36667,-0.357701,-2.58171,-0.764898,0 +0.347937,0.624217,-0.0494566,0.647292,-0.279093,0.781817,-0.205896,0.897718,-0.410634,0.875209,-0.30282,0.89338,-0.250678,0.932008,-0.164021,0.991636,-0.0462459,1.01921,0.0808065,0.982481,-0.111945,0.953471,0.0639025,0.992972,0.0524624,0.814617,0.0964821,1.03414,0.092499,1.05309,-0.0590104,1.16522,-0.0136443,1 +0.347937,0.720619,-0.225768,0.767382,-2.42158,-0.101684,-0.442574,-0.297275,-0.83407,0.929584,-0.832955,-0.376304,-0.413285,1.00462,-0.911342,1.00005,-0.774844,1.0229,-0.779453,-0.552115,-0.498481,1.05591,-0.845424,1.04394,-0.406284,0.887941,-0.911563,1.0793,-0.491901,1.13299,-1.22235,1.24485,-1.43877,0 +0.347937,-0.665052,-0.334867,-0.691892,-0.475986,-0.696625,-0.361652,-0.863395,-0.487041,-0.780294,-0.387881,-0.616747,-0.236917,-0.515831,-0.187517,-0.613473,-0.0106956,-0.572615,0.036208,-0.552164,-0.0217805,-0.60082,0.105688,-0.685356,0.138225,-1.04976,0.125554,-0.657466,0.0544656,-0.61705,0.00715332,-0.668583,-0.0310462,1 +0.347937,-0.0279116,-0.278188,0.239337,-0.25149,0.117212,-0.379818,0.227982,-0.617949,0.372828,-0.551093,0.427314,-0.466107,0.463983,-0.369073,0.270333,-0.229553,0.302795,-0.369243,0.412484,-0.394422,0.503827,-0.337249,0.0948141,-0.361288,-0.0339997,-0.322062,0.330248,-0.562672,0.137985,-0.412591,0.23194,-0.617056,0 +0.347937,-0.786288,0.277047,-0.258526,0.327209,-0.730199,0.231012,-0.856276,0.0372938,-0.826061,-0.0117628,-0.682225,0.0171081,-0.583629,-0.017371,-0.678957,0.0768916,-0.625436,0.0757976,-0.592684,-0.00912043,-0.628943,0.103659,-0.703784,0.129395,-1.06131,0.115772,-0.662259,0.0447013,-0.618397,-0.000557347,-0.667951,-0.0371316,1 +0.347937,-2.60713,0.253442,-1.03598,-0.25149,-1.1166,-0.109189,0.22315,-0.245624,-0.512306,-0.313329,-0.694408,0.000679619,-0.431445,-0.155185,-0.365197,-0.307256,0.124724,-0.676154,-0.552115,-0.196937,-0.600356,0.108835,-0.630796,-0.781844,-0.988737,0.126426,-1.90523,0.116457,-0.671522,0.00738697,-0.66843,0.169258,0 +0.347937,0.720619,-0.125006,0.767382,-0.310147,0.913227,-0.35376,0.866756,-0.408319,0.9104,-0.378868,0.94568,-0.0139908,1.00462,-0.296686,0.92133,0.192259,0.988381,0.0358612,1.08769,0.109162,1.05591,0.190813,1.00656,0.320705,0.859967,0.149171,1.0793,-0.00890381,1.13299,0.0600181,1.24485,-0.18096,1 +0.347937,0.424683,0.0224,0.767382,-0.076385,0.913227,1.6911,0.794536,-0.390813,0.640692,-0.234997,0.963054,0.359924,1.00462,2.02646,0.699008,0.100907,0.874372,0.270297,1.08769,0.961862,1.05591,-1.78706,0.708903,0.21622,0.887941,1.42842,0.810083,0.192288,1.13299,1.70757,1.24485,2.1043,0 +0.347937,0.527213,-0.136853,0.767382,-0.0774267,0.913227,-0.198407,0.825597,-0.363739,0.815706,-0.345745,0.963054,-0.188763,1.00462,-0.0151893,1.00005,0.104168,0.886284,0.128699,1.03507,0.0252701,1.03819,0.078425,0.979228,0.245169,0.829321,0.207368,0.865736,0.0760021,1.13299,0.184401,1.20392,0.106099,1 +0.347937,-1.70048,0.550768,-0.713782,-0.0344806,-0.543171,0.380489,-0.373419,0.348567,-0.201124,-1.01292,-0.495513,0.366935,-0.672703,0.302959,-0.759601,0.480344,-1.11975,0.651359,-1.33922,-0.170401,-0.105,0.737816,-1.6875,-0.331986,-0.425685,-0.391277,-1.47329,0.41913,-1.09111,-0.600665,0.105395,0.0342059,0 +0.347937,-0.0830644,-0.0250136,0.062059,-0.10681,0.30428,-0.101182,0.37106,-0.374796,0.278879,-0.313329,0.641607,-0.188763,0.596131,-0.155185,0.514629,0.208584,0.490654,0.238934,0.650404,-0.0803331,0.669454,0.108835,0.410053,0.402201,0.22797,0.31129,0.38472,0.317412,0.433059,0.331916,0.543306,0.324958,1 +0.347937,-1.17073,-0.119501,-1.02725,-0.233304,-1.1166,-0.250658,-0.998408,-0.455627,-0.815307,-0.465748,-0.653167,-0.0815233,-0.428764,-0.228314,-0.61802,0.198459,-0.676452,0.19158,-0.62999,0.0325072,-0.554097,0.0982371,-0.670333,0.150989,-0.849064,0.111191,-0.603792,0.0494456,-0.53864,0.00738697,-0.577568,-0.10249,0 +0.347937,0.613187,0.54993,0.239433,1.20785,-0.151131,1.35418,-0.984445,1.46687,-1.28642,1.39387,-1.40993,0.944438,-1.68953,0.755497,-1.69331,0.15238,-1.61856,-0.329866,-1.4126,-0.865159,-1.11133,-0.935593,-0.756027,-1.1342,-0.737674,-0.899345,-0.0189711,-0.769927,0.189115,-0.431401,0.295403,-0.158604,1 +0.347937,-1.17889,-0.0679645,-1.20595,-0.151709,-1.08743,-0.140913,-1.16245,-0.356981,-0.814455,-0.446893,-0.704228,-0.10167,-0.654827,-0.255497,-0.771462,0.16925,-0.638098,0.145922,-0.519139,0.0283579,-0.662234,0.0870513,-0.630174,0.123043,-1.03258,0.15777,-0.612249,0.0775573,-0.571589,0.0297596,-0.756402,-0.0431956,0 +0.347937,0.166359,-0.125074,0.37697,-0.227966,0.507263,-0.225426,0.548848,-0.352392,0.546689,-0.333235,0.695449,-0.123069,0.77673,-0.118643,0.678038,-0.00858196,0.689387,-0.0106638,0.693498,0.048641,0.638167,0.213431,0.570447,0.110929,0.462548,0.137553,0.62937,-0.0439843,0.834751,0.0649444,0.843347,-0.0140927,1 +0.347937,-1.2112,-0.0423435,-1.14797,-0.25149,-1.07606,-0.267557,-0.967228,-0.477989,-0.93112,-0.339278,-0.621247,-0.234876,-0.527182,-0.226765,-0.694199,-0.0501512,-0.601197,0.114983,-0.517023,-0.00775022,-0.51529,0.0655708,-0.596031,0.176456,-0.971903,0.154952,-0.622476,0.0689742,-0.661776,-0.028713,-0.695732,0.0117221,0 +0.347937,-0.342453,0.41487,-0.341991,0.477618,-0.595723,0.685223,-0.972908,0.647647,-0.882601,0.777336,-1.19268,0.442046,-1.15935,0.554721,-1.45273,0.145737,-1.37224,-0.177961,-0.795052,-0.296808,-0.845732,-0.613405,-1.08727,0.145207,-0.980039,-0.45062,-0.381526,-0.372111,-0.181692,-0.466527,-0.157202,0.0594655,1 +0.347937,-1.11387,-0.0849772,-0.887694,-0.340876,-0.902936,-0.387404,-0.761219,-0.50248,-0.430833,-0.336448,-0.445576,-0.0315509,-0.30285,-0.449728,-0.147777,-0.0894456,-0.270587,0.187361,-0.36075,-0.0160101,-0.414639,0.104493,-0.423726,-0.0625044,-0.885251,0.151389,-0.462445,-0.0756986,-0.448664,-0.135202,-0.44515,-0.177501,0 +0.347937,0.606757,0.773315,-0.227826,1.14896,-0.678722,1.2593,-2.11266,0.966506,-2.15251,0.536439,-1.8665,-0.188763,-1.48771,-0.833217,-1.23921,-1.24396,-0.778198,-1.28853,0.266295,-1.2438,0.58356,-0.605158,0.591987,0.0321476,0.114953,0.678837,0.133299,1.24618,-0.568859,1.06817,-1.08116,1.04645,1 +0.347937,-1.24891,-0.0845468,-1.07753,-0.269849,-1.07364,-0.207548,-0.987186,-0.284438,-0.840046,-0.310479,-0.612439,-0.251466,-0.557435,-0.0228687,-0.684199,0.0612301,-0.612151,0.0381345,-0.480423,-0.0650099,-0.56998,0.108835,-0.68482,0.115039,-1.01375,0.105918,-0.64736,0.024405,-0.646465,-0.0393054,-0.654941,-0.0309181,0 +0.347937,0.434026,-0.0988184,0.419731,-0.374664,0.456943,-0.309516,0.65341,-0.188024,0.685714,-0.0718456,0.771005,-0.312512,0.672859,-0.0786096,0.736612,-0.129525,0.760555,-0.227087,0.892964,0.00705199,0.898814,0.151303,0.692756,0.101804,0.546661,0.0595566,0.873098,-0.0715054,0.676916,-0.0304264,0.844762,-0.227059,1 +0.347937,0.720619,-2.36586,0.767382,1.9186,-3.14642,1.6911,0.9627,-2.44155,0.929584,-2.33428,-2.25142,-2.20948,-2.05898,2.02646,1.00005,2.02032,1.0229,1.97278,-2.19192,1.91387,1.05591,-1.78706,1.04394,-1.82659,0.887941,1.94452,1.0793,2.02354,-2.36667,1.95452,-2.58171,2.1043,0 +0.347937,0.423437,0.788674,-0.408182,1.40715,-0.936794,1.67003,-1.85005,1.45932,-2.19784,0.696741,-2.14039,0.0288283,-1.843,-0.832454,-1.68643,-1.10516,-0.881397,-1.61172,-0.0856888,-1.56949,0.470404,-0.559088,0.660394,-0.318692,0.33967,0.514463,-0.000252108,1.20283,-0.2727,1.29863,-0.883004,1.35554,1 +0.347937,0.720619,2.16482,0.767382,0.860682,0.152044,-2.14952,0.9627,1.69196,-0.800684,-0.250174,0.963054,1.83196,-0.527182,-0.155185,1.00005,-2.00576,1.0229,1.97278,1.08769,1.91387,-0.0827728,2.00473,1.04394,2.10658,0.887941,1.94452,1.0793,2.02354,-2.26824,1.95452,-0.66843,-0.0309181,0 +0.347937,0.720619,1.1432,0.0507483,1.9186,-1.07679,1.6911,-1.97617,1.52986,-2.30651,0.875473,-2.25142,0.0489749,-1.9989,-0.882391,-1.66501,-1.37421,-0.949563,-1.6158,0.0266379,-1.94589,0.633728,-1.26662,0.908349,-0.284178,0.749895,0.524153,0.602628,1.17435,-0.205122,1.76363,-0.893527,1.89496,1 +0.347937,-1.28859,-0.100517,-3.0798,-2.42158,-3.14642,1.6911,-1.00943,-0.374796,-2.61968,1.70762,0.963054,1.83196,1.00462,-2.33683,-0.61802,0.00728077,-0.57386,0.0462836,-2.19192,-1.94589,-2.25662,2.00473,1.04394,1.00038,0.887941,-1.69167,-0.657153,0.054938,-2.36667,-1.93975,-2.58171,2.1043,0 +0.347937,-0.395617,0.90629,-0.123336,1.71815,-1.56766,1.6911,-1.6668,1.46232,-2.61968,0.360314,-2.25142,-0.413285,-2.05898,-0.639989,-1.69674,-1.55842,0.313238,-1.88022,-0.916513,-1.51704,0.687855,-0.31247,-0.108574,0.139995,0.735288,0.944916,0.34051,1.71551,-0.227992,1.95452,-1.73137,2.1043,1 +-2.8659,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-0.552115,-0.0160101,-0.600356,0.108835,-0.68482,0.139995,0.887941,0.126426,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,-0.100517,0.767382,-0.25149,-0.101684,0.730945,0.469667,-0.374796,0.773434,-0.0689152,0.787335,0.0983815,0.804287,0.198851,0.595532,0.51054,0.623712,1.00953,0.677739,-0.0160101,1.05591,-0.365138,0.179558,1.12329,0.38318,0.606186,0.645189,0.547089,0.601656,0.573498,0.622899,0.615902,1 +-2.8659,-3.2978,2.16482,0.767382,1.9186,-1.1166,-0.229209,0.9627,-2.44155,0.929584,-2.33428,0.963054,-2.20948,-2.05898,-2.33683,-0.61802,0.00728077,-2.17062,-1.88022,-0.552115,-0.0160101,-0.600356,0.108835,-2.41358,-1.82659,0.887941,-1.69167,1.0793,2.02354,-2.36667,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.720619,-0.100517,0.767382,-0.25149,0.236626,-0.0158432,0.9627,-0.604433,0.732405,-0.537876,0.963054,-0.637808,0.664219,-0.155185,0.640482,0.00728077,1.0229,-0.16777,0.723293,-0.23044,0.503827,-0.101817,0.467689,0.139995,0.700941,0.0291216,1.0793,0.27367,0.938568,-0.208959,1.24485,-0.0309181,1 +-2.8659,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-2.25142,-2.20948,-0.527182,-0.155185,1.00005,1.51706,-0.57386,0.0462836,-0.552115,-0.0160101,-2.25662,2.00473,-0.68482,0.139995,0.887941,-1.69167,-2.39361,-1.91367,1.13299,1.95452,-0.66843,-0.0309181,0 +0.347937,0.720619,0.929193,0.767382,-1.2379,0.913227,-0.0546335,0.9627,-0.562684,0.929584,-0.313329,0.963054,-0.739875,1.00462,-0.551851,1.00005,0.190286,1.0229,0.0462836,1.08769,-0.717793,1.05591,0.281191,1.04394,-0.0387873,0.887941,0.0370849,1.0793,0.949767,1.13299,-0.523656,1.24485,-0.419143,1 +0.347937,-0.0404491,-1.54209,-1.15621,-0.25149,-1.1166,-0.229209,-0.329638,0.220181,-0.0854533,0.482803,-0.765946,0.85987,0.0298407,0.530701,-1.48835,0.670677,-0.380316,-0.238318,-0.521057,-1.04674,-1.55397,0.446361,-0.180594,-0.396353,-0.550287,-0.920362,0.092683,0.532167,-0.298685,-0.0368715,-0.342311,-0.920598,0 +0.347937,0.720619,0.166,0.767382,0.259111,0.913227,0.561497,0.9627,-0.25323,0.929584,0.16218,0.963054,0.0489749,1.00462,0.871473,1.00005,-0.111126,1.0229,-0.180369,1.08769,0.665123,1.05591,0.889487,1.04394,-0.0913739,0.887941,0.494137,1.0793,0.170731,1.13299,0.69461,1.24485,0.471476,1 +0.347937,-1.28859,-0.100517,-3.0798,-1.61357,0.913227,0.751377,-0.852075,-0.858499,-2.61968,-1.04431,-0.439002,-1.38186,1.00462,-2.33683,-0.61802,0.00728077,0.751118,-0.107432,-0.962067,1.91387,-0.318443,-1.23241,-0.68482,0.139995,-1.42023,-0.724607,-1.04508,-0.908418,0.686225,1.76811,-1.96091,0.945835,0 +0.347937,0.553192,0.560214,0.446777,-0.613179,0.321189,0.250868,0.716183,-0.547018,0.781704,-0.229116,0.695176,0.0638272,0.557836,-0.155185,0.797791,0.091164,1.0229,0.206819,0.541094,-0.176827,0.641844,0.424823,0.755804,-0.105828,0.574034,0.226476,1.0793,0.465057,0.622619,0.00738697,0.686802,0.0580562,1 +0.347937,-0.915078,-0.478082,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-0.458739,-0.574135,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-0.552115,-0.0160101,-0.685289,-0.0157439,-0.549061,0.316477,-0.713982,-0.071692,-0.440096,0.244219,-0.571974,-0.0862314,-0.346482,0.386537,0 +0.347937,0.720619,-0.28589,0.767382,-0.497274,0.897923,-0.801499,0.9627,-1.05837,0.870347,-1.00613,0.734634,-1.14386,0.880601,-1.20608,0.56453,-1.3057,0.514031,-1.17789,0.799905,-1.52742,0.374009,-1.30901,0.474017,-1.75375,-0.104747,-1.43112,0.00167536,-1.59658,-0.194833,-1.72257,-0.109351,-1.94452,1 +0.347937,0.720619,2.16482,-3.0798,1.9186,-3.14642,-1.81262,-0.326108,0.0603174,-0.0277777,-0.171499,-0.27762,-0.0735415,0.010295,0.600731,0.560048,-0.0721738,-0.209686,1.06868,-0.552115,-0.0160101,-1.09434,-0.19883,1.04394,-1.17107,0.887941,-1.69167,1.0793,-0.428571,-0.00285876,0.400222,0.917582,0.137657,0 +0.347937,0.720619,0.444909,0.763823,-0.243482,0.512216,-0.807855,0.763889,-0.860193,0.408605,-0.799912,0.542842,-0.805871,0.567931,-0.942277,0.145612,-1.22448,0.0723979,-1.01443,0.448839,-0.774995,0.28038,-0.510761,-0.270506,-0.885424,-0.483453,-0.753352,-0.435286,-0.715633,-0.342869,-0.992059,-0.317286,-1.02599,1 +-2.8659,-3.2978,2.16482,0.767382,-2.42158,-1.1166,-0.229209,-1.00943,-0.374796,0.929584,-2.33428,0.963054,1.83196,-0.527182,-0.155185,1.00005,-2.00576,-0.57386,0.0462836,-0.552115,-0.0160101,1.05591,2.00473,-2.41358,2.10658,0.887941,-1.69167,-2.39361,2.02354,-2.36667,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.564845,-0.541081,0.698498,-0.635032,0.649838,-0.663237,0.601839,-0.934266,0.56172,-0.897564,0.485737,-1.19183,0.443028,-1.24529,-0.0152244,-1.41652,-0.141616,-1.3429,0.112105,-1.06147,-0.0453577,-1.02284,-0.429828,-1.11078,-0.868882,-0.95696,-0.781518,-1.02638,-0.649037,-1.04551,-0.811103,-1.05364,1 +0.347937,-3.2978,-2.36586,-2.13135,1.9186,0.913227,-2.14952,0.9627,0.737509,-0.84505,-0.313329,-0.259121,-2.20948,1.00462,2.02646,-0.61802,0.00728077,1.0229,1.97278,1.08769,1.91387,-0.600356,0.108835,-1.92136,2.10658,-0.403543,-1.69167,1.0793,-1.91367,0.604403,-1.93975,0.241697,2.1043,0 +0.347937,0.402702,0.883999,-0.194413,1.40125,-0.915318,1.56551,-1.75419,1.44779,-2.12923,0.923107,-2.15309,0.203439,-1.85539,-0.712093,-1.63528,-1.31351,-0.974728,-1.60384,-0.285729,-1.68532,0.25224,-1.1591,0.609931,-0.428408,0.460533,0.270656,0.456523,0.898032,-0.0667801,1.22332,-0.676504,1.45111,1 +0.347937,0.720619,2.16482,-1.15621,-0.25149,0.913227,-2.14952,-2.98156,-2.44155,0.929584,1.70762,0.963054,-2.20948,-0.527182,-0.155185,1.00005,-2.00576,1.0229,1.97278,-0.552115,-0.0160101,1.05591,-1.78706,-2.41358,-1.82659,0.887941,1.94452,-2.39361,2.02354,-2.36667,1.95452,-0.66843,-0.0309181,0 +0.347937,0.720619,1.33906,0.767382,1.9186,0.448865,1.6911,-1.6668,1.69196,-2.61968,1.70762,-0.644182,1.83196,-2.05898,2.02646,-2.23609,0.00728077,-2.17062,-1.23806,-2.19192,-1.80185,-2.25662,-0.523122,-1.26107,-1.82659,-0.676652,-1.69167,1.0793,-1.91367,-0.61684,-1.93975,1.24485,-1.4544,1 +-2.8659,-3.2978,2.16482,-3.0798,-2.42158,-1.1166,-0.229209,-2.98156,1.69196,0.929584,-2.33428,-2.25142,-2.20948,-2.05898,2.02646,-0.61802,0.00728077,-2.17062,-1.88022,-2.19192,1.91387,-0.600356,0.108835,1.04394,-1.82659,0.887941,1.94452,1.0793,-1.91367,1.13299,1.95452,-0.66843,-0.0309181,0 +0.347937,0.720619,0.0544998,0.767382,0.056902,0.913227,0.195333,0.9627,-0.63314,0.929584,0.484845,0.963054,0.801007,1.00462,1.13168,-1.2248,2.02032,1.0229,0.0462836,1.08769,1.7595,1.05591,2.00473,1.04394,2.10658,0.887941,1.94452,1.0793,0.547089,1.13299,1.95452,1.24485,2.1043,1 +-2.8659,-3.2978,-2.36586,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,1.00462,-2.33683,-0.61802,0.00728077,-2.17062,-1.88022,-0.552115,-0.0160101,1.05591,2.00473,1.04394,-1.82659,0.887941,-1.69167,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.0163312,-0.279389,-0.0354477,-0.563549,-1.38309,-0.639847,-0.421815,-0.283797,-0.168985,-0.845626,-0.179193,-0.835333,-0.474197,-0.568541,-0.290054,-0.585377,-0.331216,-0.513403,-0.39612,-0.624406,-0.491771,-0.399169,-0.632888,-0.354091,-1.05017,-0.295554,-0.70251,-0.361008,-0.699379,-0.361596,-0.642868,-0.611718,1 +0.347937,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,0.929584,-0.986971,-0.376304,0.337473,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-0.876666,-0.438172,-0.876406,1.82699,-2.41358,1.12329,-0.968551,1.49,-1.0551,-1.91367,-0.835569,-0.519956,-1.04711,-2.03268,0 +0.347937,0.720619,0.016125,0.755128,-0.0318114,0.834917,0.054152,0.87421,-0.922403,0.32667,0.79215,0.648454,0.322136,0.602993,0.442148,0.462446,0.585304,0.37805,0.610825,0.308684,0.547516,0.154603,0.648709,-0.0102077,0.675419,-0.41135,0.591005,-0.181694,0.518899,-0.224405,0.423646,-0.322394,0.376545,1 +0.347937,0.720619,-0.316268,-3.0798,-2.42158,-3.14642,-2.14952,0.9627,0.281315,0.598597,1.22643,-2.25142,-2.20948,-2.05898,2.02646,0.148362,2.02032,1.0229,1.97278,0.576711,-1.94589,-2.25662,-1.78706,0.748958,0.857958,0.887941,1.94452,1.0793,1.05487,-2.36667,-0.626212,-2.58171,1.52418,0 +0.347937,0.593416,-0.104822,0.0125843,0.686076,0.757215,-0.999809,0.827076,-0.0270029,0.862095,-0.130211,0.957847,-0.0236297,0.87573,-0.043987,0.75132,-0.502501,0.821376,-0.232712,0.839604,0.488326,0.643186,0.0398057,0.776791,0.0890803,0.641779,0.0845736,1.05402,0.239692,0.753576,-0.191104,0.973947,-0.345328,1 +0.347937,0.720619,-2.36586,0.767382,1.9186,0.913227,1.6911,0.9627,-1.40817,0.929584,1.70762,0.963054,1.83196,1.00462,2.02646,-0.61802,0.00728077,1.0229,1.97278,1.08769,1.91387,1.05591,-1.78706,1.04394,2.10658,0.887941,1.26274,1.0793,-1.42152,-1.92921,1.95452,1.24485,2.1043,0 +0.347937,0.720619,0.421825,0.767382,-1.95521,0.913227,-0.42894,0.9627,-0.0562268,0.929584,0.248899,0.932838,-0.327405,1.00462,-0.0109787,0.932123,-0.37427,0.760779,-0.254886,1.04506,0.055936,1.04968,0.284053,1.04394,0.115354,0.815063,0.0428482,0.925887,0.131418,1.13299,-0.259799,1.17832,-0.281101,1 +0.347937,-0.547674,-2.36586,-3.0798,-2.42158,-1.2721,1.6911,0.9627,1.58947,0.478774,-1.09564,-2.25142,-1.79146,-0.675414,2.02646,0.169721,0.943383,-0.0668079,-0.482753,-0.787313,-0.405615,-0.798711,0.239557,-0.632594,0.270557,-0.982577,0.104864,-0.664151,0.022023,-0.630156,0.00948988,-0.668143,-0.0239787,0 +0.347937,0.315703,0.766315,0.398129,-0.619624,0.913227,-0.37617,0.926235,-0.527694,0.401045,0.10426,0.958955,-0.146227,0.977257,-0.100928,1.00005,-0.255904,0.953652,0.194952,1.08769,-0.012324,0.895352,0.692846,1.04394,-0.145966,0.887941,0.119263,0.656267,0.210615,1.13299,-0.357701,1.24485,-0.153479,1 +-2.8659,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,0.963054,1.83196,1.00462,2.02646,1.00005,-2.00576,-0.57386,0.0462836,1.08769,1.91387,1.05591,-1.78706,1.04394,2.10658,0.887941,0.126426,1.0793,2.02354,1.13299,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.720619,-0.744508,0.767382,-0.801521,0.804084,-0.903121,0.9627,-1.00652,0.800675,-1.30474,0.815478,-1.08029,0.632741,-1.44015,0.510551,-1.16066,0.378178,-1.06298,0.570479,-1.38575,0.30173,-1.54679,0.16597,-1.30216,-0.361486,-1.25631,-0.199563,-1.48528,-0.326298,-1.41685,-0.400686,-1.52557,1 +0.347937,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-2.68574,-2.44155,-0.84505,-0.313329,0.963054,-2.20948,-0.527182,-0.155185,-2.23609,-2.00576,-2.17062,-1.88022,1.08769,-1.94589,-1.59412,-1.78706,1.04394,2.10658,-2.98649,-0.237193,1.0793,-1.91367,-0.61684,1.95452,-0.66843,-0.0309181,0 +0.347937,0.720619,0.105425,0.679954,-0.448773,0.45191,-0.229209,0.9627,-0.374796,0.848927,-0.313329,0.963054,-0.0969213,0.86536,-0.254341,1.00005,0.00728077,1.0229,0.0462836,0.864087,0.159436,0.679491,0.281191,0.886774,0.229377,0.724072,0.179097,1.00038,0.233904,0.894385,-0.169627,0.983953,0.0661273,1 +-2.8659,-1.28859,-0.100517,-3.0798,1.9186,0.913227,1.6911,-2.98156,-2.44155,-0.84505,-0.313329,-2.25142,-2.20948,-2.05898,-0.836948,-2.23609,-2.00576,1.0229,-1.88022,1.08769,-1.94589,-0.600356,0.108835,1.04394,-1.82659,-2.98649,-1.69167,-0.657153,0.054938,1.13299,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.543327,-0.300411,0.710809,0.131466,0.555025,-0.0597607,0.788679,-0.435579,0.877392,-0.669965,0.915785,0.108404,0.914515,-0.0910231,1.00005,0.00728077,1.0229,0.0462836,0.701861,0.211041,0.861051,0.164593,0.789705,0.197833,0.745807,0.173697,0.977164,-0.176668,1.08153,0.121918,1.07602,0.0946751,1 +0.347937,-3.2978,2.16482,-3.0798,0.079319,-0.54106,1.6911,-2.98156,1.69196,-2.61968,-2.33428,0.963054,1.83196,-2.05898,-0.667347,-0.16009,-2.00576,1.0229,1.97278,-1.06705,-1.94589,-2.25662,-1.78706,1.04394,-1.82659,-2.98649,0.0613747,1.0793,-1.91367,-2.36667,-0.62187,-0.382605,2.1043,0 +0.347937,-0.336868,-0.338967,0.455395,-0.213383,0.571304,-0.178993,0.33992,-0.483569,0.369172,-0.313329,0.639292,-0.0871612,0.672445,-0.02961,0.744573,0.960816,1.0229,0.147675,0.637564,0.131259,0.564016,0.26318,0.0430725,0.554021,0.218032,0.289473,0.256778,-0.359512,0.435684,0.193027,0.430136,0.176603,1 +0.347937,-1.30147,-1.23319,-1.15621,-0.25149,-1.15563,1.6911,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,-0.527182,-0.155185,-0.61802,0.00728077,-0.0723168,1.83695,-1.13025,1.41903,-1.17367,-1.42246,-0.68482,0.139995,-2.2414,-0.805931,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,0.929193,0.767382,0.932187,0.544165,0.992798,0.9627,-0.562684,0.929584,-0.313329,0.670826,-1.10728,0.447593,0.439814,1.00005,-1.27374,1.0229,-0.479131,0.938616,-0.893239,1.05591,0.255767,1.04394,-0.0387873,0.887941,0.287637,1.0793,0.770801,1.13299,1.24647,0.72304,0.551419,1 +-2.8659,-3.2978,-2.36586,0.767382,-2.42158,-3.14642,1.6911,-1.00943,-0.374796,0.929584,-2.33428,0.963054,-2.20948,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-2.19192,1.91387,1.05591,-1.78706,-2.41358,2.10658,0.887941,1.94452,-0.657153,0.054938,1.13299,0.980956,-0.66843,-0.0309181,0 +0.347937,-0.375304,0.105425,0.0678875,-0.0542067,-0.563002,0.119942,0.245554,-0.374796,-0.199722,-0.497053,0.086387,-0.372467,0.217455,-0.184485,0.411655,-0.35873,0.151949,0.0462836,0.0441838,-0.191456,-0.148642,0.453546,-0.0561753,-0.0387873,-0.382059,0.0942822,-0.18357,0.054938,0.0194691,0.00738697,-0.113866,-0.0700352,1 +0.347937,-3.2978,-1.4524,-1.15621,-0.25149,-3.14642,1.0097,-2.7271,1.69196,-0.84505,-0.313329,-0.644182,-0.188763,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-2.19192,-1.94589,-0.600356,0.108835,-0.168977,0.599922,0.887941,1.0648,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,0.223109,0.767382,1.29858,0.913227,1.14245,0.9627,-0.670052,0.67606,-0.602041,0.963054,-0.137558,1.00462,-0.155185,0.075436,-0.280302,1.0229,0.115965,1.08769,-0.567397,1.05591,0.108835,-0.190897,-0.421879,0.887941,0.215349,1.0793,0.156951,1.13299,1.12004,1.24485,-0.0309181,1 +-2.8659,0.720619,2.16482,0.767382,-2.42158,0.913227,1.6911,0.9627,1.69196,0.929584,1.70762,0.963054,-2.20948,1.00462,2.02646,1.00005,-2.00576,1.0229,-1.88022,1.08769,1.91387,1.05591,2.00473,1.04394,-1.82659,0.887941,1.94452,1.0793,2.02354,1.13299,1.95452,1.24485,2.1043,0 +0.347937,0.460065,0.963558,-0.118528,1.53148,-0.9059,1.60036,-1.75949,1.44221,-2.1572,0.863388,-2.12443,0.149324,-1.78964,-0.69933,-1.57888,-1.26782,-0.957275,-1.55042,-0.243455,-1.53481,0.253565,-0.979975,0.512758,-0.348565,0.289283,0.317036,0.259661,0.837694,-0.162338,1.10894,-0.797365,1.19794,1 +-2.8659,0.720619,-2.36586,0.767382,1.9186,0.913227,-2.14952,0.9627,1.69196,0.929584,-2.33428,0.963054,-2.20948,1.00462,-2.33683,1.00005,2.02032,1.0229,1.97278,1.08769,1.91387,1.05591,-1.78706,1.04394,2.10658,0.887941,1.94452,1.0793,2.02354,1.13299,1.95452,1.24485,-2.16613,0 +0.347937,0.573083,-0.0059621,0.560903,0.0906469,0.631041,0.150839,0.640749,0.380106,0.585642,0.499052,0.580869,0.63068,0.492781,0.899856,0.354456,1.04907,0.278684,1.05153,0.242125,1.03022,0.104319,1.16454,-0.108453,1.22701,-0.526653,1.11209,-0.269802,1.10712,-0.366404,0.963899,-0.447006,0.963472,1 +-2.8659,0.720619,2.16482,0.767382,-2.42158,0.913227,-2.14952,0.9627,1.69196,-0.84505,-0.313329,0.963054,-2.20948,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-2.19192,1.91387,1.05591,2.00473,-0.68482,0.139995,0.887941,1.94452,-0.657153,0.054938,-2.36667,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.590764,0.208588,0.646503,0.298824,0.623064,0.515467,0.549321,0.599202,0.438933,0.898068,0.4047,1.32678,0.251431,1.4502,0.0555661,1.67291,-0.166063,1.70215,-0.327265,1.63626,-0.592174,1.79369,-0.812074,1.70894,-1.45599,1.54462,-1.23312,1.46158,-1.29109,1.26062,-1.57569,1.16128,1 +-2.8659,0.720619,-2.36586,-3.0798,1.9186,-3.14642,1.6911,0.9627,1.69196,0.929584,1.70762,-2.25142,-2.20948,-2.05898,-2.33683,1.00005,2.02032,1.0229,-1.88022,-2.19192,-1.94589,-2.25662,-1.78706,1.04394,0.139995,0.887941,-1.69167,1.0793,-1.91367,-2.36667,1.95452,-2.58171,2.1043,0 +0.347937,0.331375,0.19554,0.249186,0.276342,0.194975,0.13638,-0.281262,0.567168,-0.0501381,0.625179,-0.242373,0.969272,-0.141292,0.654531,-0.371831,1.05158,-0.730471,1.15402,-0.608885,0.811621,-0.747035,0.951066,-0.943148,0.926749,-1.43556,0.762324,-1.07099,0.636483,-1.08289,0.472675,-1.12467,0.634286,1 +-2.8659,0.720619,-2.36586,0.767382,1.9186,0.913227,-2.14952,0.9627,1.69196,0.929584,-2.33428,0.963054,1.83196,1.00462,-2.33683,1.00005,-2.00576,1.0229,1.97278,1.08769,1.91387,1.05591,-1.78706,1.04394,-1.82659,0.887941,-1.69167,1.0793,2.02354,1.13299,-1.93975,1.24485,2.1043,0 +0.347937,0.669726,0.195834,0.654274,0.18331,0.685542,0.390052,0.745943,0.301259,0.67315,0.600483,0.517817,0.867751,0.544249,1.12806,0.329327,1.35386,0.206462,1.4025,0.173417,1.29938,-0.0158761,1.54255,-0.22096,1.63873,-0.723571,1.55438,-0.526971,1.63846,-0.66867,1.52035,-0.865287,1.55431,1 +-2.8659,-1.28859,-0.100517,0.767382,1.9186,-1.1166,-0.229209,0.9627,1.69196,-0.84505,-0.313329,0.963054,-2.20948,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-0.552115,-0.0160101,-0.600356,0.108835,-0.68482,0.139995,0.887941,-1.69167,-0.657153,0.054938,-2.36667,1.95452,-0.66843,-0.0309181,0 +0.347937,0.566071,0.2495,0.505754,0.394264,0.356691,0.477273,0.382656,0.799739,0.17446,0.954189,0.0512689,1.32023,-0.0415257,1.32172,-0.308516,1.55366,-0.499036,1.51372,-0.749941,1.4694,-0.906418,1.46112,-1.19119,1.4322,-1.80088,1.19098,-1.4698,1.04182,-1.54681,0.800495,-1.74428,0.718435,1 +-2.8659,-1.28859,-0.100517,0.767382,1.9186,0.913227,1.6911,-1.00943,-0.374796,-0.84505,-0.313329,-2.25142,-2.20948,-0.527182,-0.155185,-2.23609,-2.00576,-0.57386,0.0462836,-0.552115,-0.0160101,1.05591,2.00473,-0.68482,0.139995,0.887941,1.94452,-0.657153,0.054938,-2.36667,1.95452,-0.66843,-0.0309181,0 +0.347937,0.495668,0.763438,0.111938,1.25523,-0.524943,1.45859,-1.14208,1.48807,-1.54775,1.31234,-1.68204,0.952985,-1.79796,0.431807,-1.89532,-0.157889,-1.57631,-0.549814,-1.31687,-1.08912,-0.872795,-1.11094,-0.519516,-1.06071,-0.460245,-0.753388,0.0934644,-0.532454,0.206089,-0.176832,0.138055,0.237179,1 +-2.8659,0.720619,-2.36586,0.767382,1.9186,0.913227,1.6911,0.9627,1.69196,0.929584,1.70762,0.963054,-2.20948,1.00462,2.02646,1.00005,2.02032,1.0229,-1.88022,1.08769,-1.94589,1.05591,-1.78706,1.04394,-1.82659,0.887941,1.94452,1.0793,-1.91367,1.13299,1.95452,1.24485,2.1043,0 +0.347937,0.188641,-0.967984,0.385568,-0.0284477,0.483433,0.0639455,0.086679,-0.26625,0.929584,0.115617,0.512176,0.396317,0.526664,0.56312,0.185707,0.355274,0.453386,-0.00852534,0.389117,0.804731,0.279453,0.95956,0.949372,1.27175,-0.193529,1.00275,-0.440565,2.02354,-0.00317373,0.975523,-0.0831963,1.03308,1 +-2.8659,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-0.552115,-0.0160101,-0.600356,0.108835,-0.68482,0.139995,0.887941,1.94452,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.613107,-0.0803106,0.715195,-0.257132,0.891346,-0.222065,0.87989,-0.341769,0.824065,-0.241989,0.91826,-0.0934052,0.983553,-0.11465,0.907447,0.150911,0.999766,0.0326825,1.05112,0.0800981,0.995589,0.243405,0.927659,0.299309,0.795787,0.205623,1.03542,0.0710412,1.09528,0.144874,1.24485,-0.0364697,1 +-2.8659,0.720619,2.16482,-3.0798,-2.42158,-3.14642,-2.14952,-1.00943,-0.374796,-0.84505,-0.313329,-2.25142,-2.20948,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-2.19192,1.91387,1.05591,2.00473,-0.68482,0.139995,0.887941,-1.69167,-0.657153,0.054938,-2.36667,-1.93975,-2.58171,-2.16613,0 +0.347937,-0.274622,-0.48336,0.218043,-0.218656,0.325858,-0.185848,0.3329,-0.3483,-0.23076,-0.200277,0.465614,-0.0999927,0.515987,-0.0448378,0.466459,0.121863,0.438536,-0.0435298,0.505609,0.116303,0.444367,0.248771,0.767905,0.49526,0.111795,0.277401,0.00665899,0.188016,0.37122,0.183525,0.376832,0.168639,1 +0.347937,0.0923195,2.16482,0.612975,-1.90265,0.543252,-0.145714,0.491104,-0.153612,0.695137,1.17704,0.48196,0.179554,0.635759,0.143961,0.894519,-0.497669,0.555626,0.407098,0.51184,0.458394,0.396733,1.57673,1.04394,-0.918934,0.679923,0.530335,0.576946,1.11495,1.13299,-0.119605,0.412993,0.479675,0 +0.347937,0.244356,-0.276716,0.767382,-0.894488,0.913227,-1.8757,0.568274,-0.248497,-0.0365977,-1.17785,0.963054,-0.44299,1.00462,-1.97727,0.179025,0.0445622,0.739031,-0.0678808,1.05842,-0.40079,1.05591,0.526633,0.518912,-0.380777,0.735831,-0.319899,0.712719,0.0950385,0.914123,-0.520385,1.24485,-1.24878,1 +0.347937,-0.514623,0.25206,-0.362823,-0.0910549,-0.579525,0.234066,-0.549018,-0.101365,-0.499795,0.197809,-0.250184,0.558197,-0.390102,0.345654,-0.680979,0.7514,-0.493096,0.52604,-0.143754,0.171729,-0.471465,0.676863,-0.727935,0.700119,-1.16597,0.603786,-0.913906,0.346016,-0.780257,0.613492,-1.03322,0.583895,0 +0.347937,-0.132491,-0.172442,0.290293,-0.367741,0.131908,-0.25206,0.0548882,-0.305084,0.250006,-0.11283,0.306128,-0.236876,0.433224,-0.129224,0.528107,0.059197,0.38926,0.0768571,0.231991,-0.0696223,0.378945,0.18031,0.179558,0.21803,0.138064,0.103936,0.414344,-0.210666,0.587902,-0.0196588,0.527369,-0.0987112,1 +0.347937,-1.15992,-0.446458,-1.24148,-0.123216,-0.946618,-0.276506,-1.03858,0.0120794,-0.731403,-0.313329,-0.446251,-0.387845,-0.436638,-0.155185,-0.586144,-0.0522246,-0.778374,-0.352309,-0.439018,0.0125136,-0.486123,0.164878,-0.548559,0.459684,-0.505324,0.0368667,-0.759795,-0.129323,-0.53927,0.112902,-0.527057,-0.262311,0 +0.347937,-0.0457534,0.145272,0.203654,-0.401986,0.311547,-0.196986,0.45533,-0.370166,0.415455,0.00541522,0.506406,-0.193289,0.694488,-0.0111969,0.735803,-0.325977,0.522797,-0.128257,0.473223,-0.0419092,0.409337,0.331508,0.54697,-0.046988,0.303773,0.0960094,0.442214,0.149628,0.76306,-0.0927933,0.579276,-0.13123,1 +0.347937,-0.779939,0.71385,-1.15621,-0.25149,-1.71783,-2.14952,-1.00943,-0.374796,-0.710267,-0.461707,-0.644182,-0.188763,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-0.539669,1.29826,-0.931609,0.747201,-0.864265,0.841989,-0.941372,-1.69167,-0.657153,0.054938,-0.506093,-1.93975,-0.66843,-0.0309181,0 +0.347937,0.481584,-0.119931,0.571522,-0.304982,0.793569,-0.264197,0.749217,-0.63841,0.613841,-0.534259,0.783895,-0.164939,0.863414,-0.454484,0.791933,-0.115696,0.875714,0.000856716,0.890848,-0.297329,0.771877,-0.126881,0.873463,-0.243627,0.660221,-0.144525,0.807582,-0.198264,0.930432,-0.353651,1.08695,-0.390211,1 +0.347937,-0.430497,-1.23319,-1.15621,-0.25149,-1.1166,-0.229209,-0.0932189,0.680116,0.201239,-0.271232,-0.644182,-0.188763,-0.527182,-0.155185,-0.351718,-0.90698,0.370897,-0.306902,-0.552115,-0.0160101,-0.600356,0.108835,1.02233,-0.663022,-2.98649,-1.69167,-1.14192,-1.43382,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.496653,-0.0635697,0.613629,-0.22317,0.759813,-0.203112,0.749295,-0.58608,0.753949,-0.483654,0.85119,-0.209637,0.898829,-0.349744,0.773924,-0.0945185,0.854461,-0.0312388,0.897768,-0.250028,0.872181,-0.116947,0.749701,-0.138041,0.625506,-0.0882548,0.828142,-0.201985,0.84469,-0.235071,0.992027,-0.292162,1 +0.347937,-1.28859,-0.100517,0.767382,0.0282133,0.678661,-0.267615,-1.00943,-0.374796,0.929584,-1.1711,0.963054,0.206409,1.00462,-0.271532,1.00005,-1.63447,-0.57386,0.0462836,1.08769,-0.0932055,1.05591,-0.245071,-0.68482,0.139995,0.887941,-1.69167,-0.657153,0.054938,1.13299,0.236721,1.06628,-0.234959,0 +0.347937,0.341743,-0.0163827,0.481594,-0.254593,0.486965,-0.215498,0.559813,-0.463377,0.709015,-0.313329,0.731146,-0.324434,0.796735,-0.148946,0.722664,-0.102007,0.719518,-0.182142,0.70819,-0.17868,0.795645,0.0140405,0.646322,0.0051463,0.531454,-0.0311847,0.776656,-0.150368,0.808031,-0.0899699,0.903194,-0.354254,1 +0.347937,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-2.25142,1.83196,1.00462,1.04847,-0.61802,0.00728077,-0.57386,0.0462836,-0.552115,-0.0160101,-0.600356,0.108835,-0.68482,0.139995,0.887941,1.94452,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,-0.286597,-0.0593335,-0.326814,-0.460035,-0.0885106,-0.309017,-0.0208022,-0.176181,-0.0522322,-0.192597,0.253363,-0.430199,0.264573,-0.23451,0.23514,-0.112978,0.309549,0.0262672,0.244355,-0.0811823,0.212722,0.0891368,0.338966,0.139995,-0.0183857,0.0667926,0.0915543,0.121418,0.337606,-0.0988294,0.459658,-0.213927,1 +-2.8659,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-1.00943,-0.374796,-0.84505,-0.313329,-0.644182,-0.188763,-0.527182,-0.155185,-0.61802,0.00728077,-0.57386,0.0462836,-0.552115,-0.0160101,-0.600356,0.108835,-0.68482,0.139995,0.887941,-1.69167,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.720619,1.03215,0.767382,0.291033,-0.60914,1.6911,-0.677108,1.50967,-1.08172,1.3126,-1.19236,1.03969,-1.19842,0.670697,-1.32452,0.343639,-1.15949,0.0593453,-0.986287,-0.190182,-0.868307,-0.136948,-0.819352,-0.110627,-1.08974,-0.0597834,-0.639216,-0.083573,-0.577924,-0.0732635,-0.6254,-0.0739854,1 +0.347937,-1.28859,-0.100517,-1.15621,-0.25149,0.913227,1.6911,-2.98156,-2.44155,-0.84505,-0.313329,0.963054,-0.413285,-0.527182,-0.155185,-0.61802,0.00728077,-2.17062,1.97278,1.08769,1.91387,1.05591,-1.78706,-0.68482,0.139995,0.887941,-1.69167,-0.657153,0.054938,-0.61684,0.00738697,1.24485,2.1043,0 +0.347937,0.460387,0.760924,0.0767937,1.25047,-0.480307,1.43426,-1.087,1.50058,-1.59347,1.29021,-1.77826,0.853121,-1.76869,0.340811,-1.93086,-0.245134,-1.65126,-0.687751,-1.18072,-1.22915,-0.815886,-1.23274,-0.415964,-1.16623,-0.302595,-0.811131,0.255754,-0.533616,0.367248,-0.108234,0.316143,0.324488,1 +0.347937,-1.28859,-0.100517,-1.15621,-0.25149,-1.1166,-0.229209,-2.98156,1.69196,-0.84505,-0.313329,0.963054,0.565633,-0.710998,-0.416982,-0.61802,0.00728077,-2.17062,-1.88022,-0.552115,-0.0160101,1.05591,-1.78706,-0.68482,0.139995,0.887941,0.538535,-0.657153,0.054938,-0.61684,0.00738697,-0.66843,-0.0309181,0 +0.347937,0.483111,0.884702,-0.0102679,1.43369,-0.717289,1.58619,-1.48477,1.53786,-1.95466,1.12674,-2.03353,0.49125,-1.94232,-0.271641,-1.86969,-0.892687,-1.32354,-1.36555,-0.719982,-1.6027,-0.163367,-1.36181,0.283006,-0.959525,0.348368,-0.31779,0.601395,0.243904,0.40046,0.765116,-0.00358481,1.20016,1 +0.347937,-0.628886,-0.0434308,-0.86313,0.210262,-0.813766,1.19188,-1.51639,1.53331,-1.02805,0.078331,-1.63025,0.3323,-1.96788,-0.27319,-0.830262,-0.281167,-1.05792,-0.813224,-0.739201,-1.66793,-0.556167,-0.323163,-0.201771,0.0161985,-0.395717,-0.0894912,-0.176902,-0.16966,-0.353,0.266278,-0.435067,0.406117,1 +0.347937,0.387633,0.785706,-0.1167,1.45375,-0.8664,1.48758,-1.66459,1.35255,-2.08882,0.890428,-2.0364,0.253957,-1.82066,-0.682357,-1.58423,-1.23867,-0.882898,-1.64493,-0.34814,-1.73484,0.246145,-1.26481,0.683369,-0.405419,0.558769,0.284928,0.499187,1.02111,0.0400821,1.3706,-0.744635,1.66538,1 +0.347937,-0.0361494,-0.179578,-0.019655,-0.241052,0.1096,-0.372483,0.236502,-0.354893,0.263298,-0.464111,0.433116,-0.0428669,0.43687,-0.338967,0.474323,0.191393,0.498335,0.0462836,0.414796,0.179063,0.228771,0.168158,0.455208,0.416872,0.122024,0.163134,0.235107,0.14258,0.463384,-0.011364,0.505787,-0.226205,1 +0.347937,0.207246,-0.154659,0.205155,-0.179681,0.349809,0.0955538,0.553049,-0.215222,0.600106,0.574554,0.381026,-0.177629,0.556902,0.318034,1.00005,0.129392,0.400629,0.145441,0.554147,0.0655854,0.261267,-0.365138,0.576791,-0.170903,0.14651,0.255948,-0.120901,0.225025,0.361596,0.152605,0.485162,0.432231,1 +0.347937,-0.0521628,0.328153,0.347212,-0.212862,0.456233,-0.178378,0.273972,-0.587837,0.530966,-0.151653,0.544546,-0.0865145,0.580644,-0.0291736,0.492218,-0.172342,0.411215,0.360457,0.533977,0.13014,0.457634,0.261284,0.355096,-0.00220874,0.0898659,0.285819,0.299234,0.560712,0.317378,0.18666,0.299861,0.168126,1 +0.347937,0.0840415,0.0212446,0.475054,-0.247106,0.595377,-0.223429,0.653075,-0.170167,0.500353,-0.230429,0.672016,-0.176942,0.709561,-0.140503,0.6865,-0.243282,0.670577,-0.0218375,0.700123,0.00153253,0.635799,0.127377,0.691822,0.056553,0.322739,0.146353,0.42353,0.283257,0.548968,0.0305579,0.563855,-0.00471907,1 +0.347937,-0.283985,-0.100517,-0.411856,-0.0250407,-0.119344,-0.103966,-0.083378,-0.455668,-0.212357,-0.56815,0.0895533,-0.0921119,0.24538,-0.0982662,-0.0411459,0.401131,0.0995588,0.331078,0.139457,-0.0663608,-0.0674689,-0.105476,0.134455,0.122886,-0.239732,0.25202,0.0147856,0.13197,-0.000601474,0.295232,0.188393,0.340417,1 +0.347937,0.315362,0.11281,0.346673,0.196764,0.337326,0.309783,0.35765,0.477781,0.324736,0.699611,0.286375,1.04012,0.226615,1.11987,-0.0783291,1.37335,-0.101426,1.27054,-0.39471,1.29832,-0.566138,1.47835,-0.836051,1.38255,-1.28029,1.22994,-0.97364,1.15765,-1.06333,1.01408,-1.1915,0.875843,1 +0.347937,0.720619,0.121531,0.767382,0.293225,0.880547,0.405338,0.575472,0.720996,0.485518,0.905242,0.27093,1.26498,0.32007,1.46095,-0.141466,1.66186,-0.236352,1.58319,-0.392906,1.56962,-0.629076,1.62308,-0.946623,1.62666,-1.49172,1.38431,-1.20784,1.25476,-1.32186,1.06901,-1.4876,0.919978,1 +0.347937,0.507844,0.203605,0.517334,0.433022,0.484854,0.603974,0.240663,0.864739,0.113306,1.12187,-0.00612549,1.35024,-0.155476,1.57972,-0.470226,1.60962,-0.720108,1.51545,-0.883372,1.27558,-1.10159,1.29585,-1.38586,1.13291,-1.94456,0.867356,-1.53083,0.591422,-1.54115,0.380692,-1.60226,0.0965968,1 +0.347937,0.612745,0.295872,0.59322,0.467744,0.610703,0.730177,0.443595,0.94466,0.2058,1.1789,0.13851,1.50084,-0.0606119,1.8228,-0.327431,1.88804,-0.585054,1.84003,-0.861711,1.70898,-1.14731,1.67279,-1.48928,1.64408,-2.18377,1.33246,-1.83671,1.08972,-1.93483,0.834687,-2.2222,0.526202,1 +0.347937,0.555201,0.311729,0.49981,0.519826,0.362597,0.649275,0.182229,1.06914,0.0489397,1.20081,-0.0639699,1.46409,-0.287241,1.66775,-0.611613,1.72259,-0.83557,1.54612,-1.14238,1.45443,-1.31399,1.34846,-1.60348,1.19971,-2.21796,0.871337,-1.77736,0.593115,-1.76665,0.273502,-1.894,0.0842553,1 +0.347937,0.251007,0.377605,0.0736391,0.575575,-0.133979,0.778953,-0.713612,0.0855318,-0.600985,0.890449,-0.768373,0.711368,-0.527182,0.905877,-1.06284,0.853038,-1.47022,0.755582,-1.15214,0.348043,-1.27169,0.252695,-1.3501,0.0764942,-1.70681,-0.100582,-1.13537,-0.333153,-0.966141,-0.472544,-0.895995,-0.612081,1 +0.347937,-0.104362,-1.48072,0.487115,0.948527,0.530119,-0.0893142,0.107248,-0.0394654,-0.263307,0.175175,0.164756,0.0588158,0.451744,0.278263,0.544628,0.867149,0.293262,0.314202,0.517563,0.520787,0.540381,0.246951,0.21192,0.66415,-0.0997875,0.629803,0.145367,0.617447,0.144057,0.578366,0.112589,0.608408,1 +0.347937,0.720619,0.157392,0.19067,-0.515026,0.539618,-0.0433805,0.393878,-0.351256,0.151709,-0.470558,0.465936,0.0643122,0.370972,-0.0682468,0.241677,-0.0614846,0.535092,0.371631,0.63963,0.123154,-0.0692245,0.220351,0.23697,0.875126,-0.0982959,0.452793,-0.393559,0.693711,0.155554,0.375338,0.406201,0.293207,1 +0.347937,0.416083,0.0533898,0.393474,-0.30138,0.446997,-0.29256,0.306473,-0.511615,0.212313,-0.468254,0.436845,-0.305379,0.457151,-0.295639,0.016247,0.0984713,0.563898,0.073139,0.365684,-0.171153,0.284587,-0.0514246,0.128352,-0.30882,-0.106645,-0.0395298,0.256448,-0.113122,0.157933,-0.179947,0.139414,-0.24034,1 +0.347937,0.720619,0.0810043,0.705346,-0.26195,0.845898,-0.243073,0.72565,-0.455875,0.929584,-0.284651,0.901754,-0.217781,0.942532,-0.19164,0.97573,0.0274514,0.881622,-0.124173,1.00596,-0.0616326,0.967068,0.0597125,1.0122,0.179386,0.767291,0.0712651,1.0793,-0.0600875,1.00655,-0.0600619,1.09611,-0.109345,1 +0.347937,-0.325415,-0.380763,-0.333219,-0.519952,0.306371,-0.981489,0.43409,-0.225659,-0.378516,-0.750843,0.151159,0.134128,0.167657,-0.41384,0.0659056,0.131807,0.224522,-0.480036,0.343858,0.342118,0.0997147,0.265189,0.53601,0.525211,-0.0148794,-0.0998725,-0.388628,-0.462588,0.212983,0.0876869,0.199452,-1.13154,1 +0.347937,-0.0125412,-0.199921,0.315915,-0.187081,0.130365,0.46264,0.279514,-0.384344,0.294318,-0.145307,0.632703,-1.06612,0.583631,1.04395,0.346091,0.286227,0.440244,0.468958,0.485538,-0.506278,0.574782,0.400025,0.43308,0.594179,0.283045,0.448302,0.413597,0.204965,0.543579,0.393719,0.652746,0.753154,1 +0.347937,-0.281735,-0.181979,0.019567,-0.222237,0.078483,-0.199002,0.15168,-0.323706,0.339376,-0.322403,0.507965,-0.284121,0.491724,-0.135572,0.309182,0.057043,0.459549,-0.0965856,0.38018,0.257204,0.352461,0.0406588,0.119345,0.237224,0.0469566,0.141407,0.170094,-0.015853,0.338691,0.213044,0.492432,-0.203657,1 +0.347937,0.148417,-0.115174,0.126192,-0.342785,0.164365,-0.328642,0.528713,-0.207575,0.349527,-0.117115,0.396101,0.131683,0.394868,-0.197553,0.261708,-0.0839299,0.175437,-0.146983,0.509249,0.271292,0.0482214,0.519921,0.221515,0.0317936,-0.175494,0.127153,-0.112045,-0.0788483,0.24392,-0.200567,-0.0863915,-0.141479,1 +0.347937,0.0806459,0.134398,0.325668,-0.17647,0.206545,-0.072742,0.193332,-0.385006,0.557124,-0.0738059,0.31619,-0.0889798,0.429716,0.0549068,0.648475,-0.345625,0.604982,-0.163011,0.245519,0.00305713,0.409768,0.263312,0.467689,-0.112515,0.186146,0.0818646,0.671982,0.0986804,0.45467,-0.132028,0.314191,-0.131081,1 +0.347937,-0.069442,-0.161953,0.134886,-0.16321,-0.0432049,-0.313837,-0.0133476,-0.297727,0.406209,-0.470902,0.287468,-0.229865,0.28804,0.0149173,0.418645,0.246107,0.335481,0.000567741,0.320589,-0.00292551,0.584289,0.0445644,0.229363,0.073328,0.0600134,0.140062,0.361174,0.0482645,0.415264,-0.0454194,0.291443,0.113849,1 +0.347937,-0.29373,0.119424,-0.586594,-0.125082,-0.407152,-0.229209,0.120245,-0.424956,0.18871,-0.26428,-0.105838,-0.0906772,0.275893,-0.144604,0.14388,-0.207712,0.116006,0.0556271,0.0210133,0.0964056,-0.286792,0.59661,-0.14773,-0.155957,-0.341281,0.195787,0.0256211,0.398971,-0.158139,0.00738697,0.0467344,-0.072384,1 +0.347937,0.696951,-0.0509744,0.634692,0.488511,0.586507,0.447162,0.463869,0.63597,0.460797,0.735119,0.241019,1.02729,0.133482,1.28987,-0.103474,1.42532,-0.120715,1.37312,-0.428884,1.40624,-0.495382,1.4603,-0.969874,1.51098,-1.37,1.22656,-0.938616,1.15352,-1.22433,0.867924,-1.30905,0.76904,1 +0.347937,0.678526,0.257633,0.577177,0.513185,0.548651,0.703312,0.40577,0.966278,0.198914,1.17698,0.00432154,1.49159,-0.142088,1.69493,-0.541971,1.72792,-0.768554,1.58265,-0.981416,1.54245,-1.227,1.46773,-1.56707,1.28699,-2.16486,0.963479,-1.732,0.661189,-1.76742,0.364589,-1.89549,0.032455,1 +0.347937,0.714612,0.39054,0.61284,0.769104,0.444379,0.969351,0.041951,1.23975,-0.192446,1.47099,-0.481739,1.49474,-0.631758,1.79245,-1.07543,1.45814,-1.27176,1.2347,-1.46662,0.91265,-1.67693,0.782521,-1.8026,0.45284,-2.34045,0.167824,-1.78363,-0.210075,-1.57251,-0.439462,-1.57152,-0.778926,1 +0.347937,0.606717,0.351622,0.692977,0.633973,0.517696,0.85709,0.10851,1.08908,-0.102614,1.36871,-0.404077,1.61956,-0.448034,1.88862,-1.01836,1.697,-1.25745,1.50183,-1.37613,1.19138,-1.68546,1.0649,-1.87509,0.747908,-2.54281,0.410395,-1.96655,-0.0316609,-1.9327,-0.34156,-1.94902,-0.764727,1 +0.347937,0.599504,0.535635,0.392012,0.894774,0.0640915,1.17552,-0.319955,1.28917,-0.653443,1.51367,-0.96587,1.61645,-1.13577,1.63732,-1.57001,1.27282,-1.79227,0.823973,-1.88465,0.348506,-1.94718,0.0276151,-1.98611,-0.388683,-2.27431,-0.717862,-1.46325,-1.15469,-1.0786,-1.37187,-0.839419,-1.55275,1 +0.347937,0.516383,0.695908,0.139003,1.09902,-0.225544,1.58266,-1.08128,1.28915,-1.25034,1.20913,-1.04819,0.797673,-1.40608,0.464728,-1.69808,0.220481,-1.33007,-0.0730246,-1.88128,-0.132015,-1.15019,-0.793458,-0.907777,-0.91449,-0.910609,-0.817621,-0.23483,-0.800972,0.0233537,-0.577864,0.150549,0.253001,1 +0.347937,-0.704453,0.126583,-0.707858,0.123784,-1.04029,0.430148,-0.772184,0.169091,-0.733851,0.117194,-0.720124,0.0692225,-0.624191,0.0173171,-0.720412,0.0897549,-0.66058,0.0734087,-0.620429,-0.0214138,-0.64799,0.0865394,-0.71516,0.110398,-1.06644,0.0996093,-0.662016,0.0303305,-0.61516,-0.0110719,-0.662881,-0.044733,1 +0.347937,-0.114026,-0.905302,0.767382,0.515377,0.413404,-0.240039,0.617952,0.0253479,0.0456034,-0.871757,0.416224,-0.0596187,0.541047,0.164687,0.552945,-0.851662,0.641724,0.133188,0.545194,0.379404,0.803727,-0.668044,0.436278,0.0475853,0.0517609,-0.065765,0.260043,-0.207792,-0.343831,-0.230514,0.188087,-0.251037,1 +0.347937,0.39129,0.198847,0.232066,-0.120004,0.219617,-0.0695351,-0.538329,-0.106924,-0.0671036,0.09753,0.150082,0.0675857,0.158251,0.139489,-0.143084,0.0661017,0.195109,0.349823,-0.0136849,0.266062,-0.11184,0.386356,-0.227806,0.425741,-0.591298,0.386669,-0.198225,0.372612,-0.288449,0.272821,-0.349773,0.250887,1 +0.347937,0.601674,0.169806,0.493039,-0.228964,0.611271,-0.199521,0.508439,-0.380542,0.653788,-0.092722,0.694469,-0.127596,0.739308,-0.0786969,0.592911,0.0463941,0.703854,0.0926159,0.773865,0.0785735,0.728947,0.210303,0.65213,0.183654,0.482249,0.239785,0.83514,0.237054,0.745632,0.145439,0.809941,0.129394,1 +0.347937,0.461652,-0.00251879,0.381625,0.145572,0.893112,0.333288,0.754739,-0.547101,0.72724,-0.354313,0.809499,-0.728781,0.842398,0.280358,0.816302,-0.0861644,0.774639,0.027192,1.05296,-0.672634,0.707333,-0.367053,0.813337,-0.0407932,0.616091,0.0735559,0.710722,-0.0257944,0.711895,0.432097,1.01981,0.165372,1 +0.347937,0.216629,-0.0427739,0.74803,-0.0389944,0.423127,0.0180694,0.456118,-0.564689,0.855795,-0.263169,0.92964,-0.19824,0.945028,0.0672331,0.862222,0.0828904,0.560257,0.0979716,0.779751,-0.171327,1.05591,0.108835,0.555804,0.116259,0.544492,0.172824,0.600649,0.0338149,0.965166,0.222857,0.725144,0.0278002,1 +0.347937,-0.337491,0.341836,-1.0367,-0.64955,0.148309,-0.20989,-0.110889,-0.466518,0.157778,-0.277457,0.0738506,0.367239,0.569554,-0.239091,0.281966,0.257421,0.0875192,0.268563,0.313161,0.0388372,0.247371,-0.0930963,0.143755,0.0934462,-0.148199,0.185678,0.272719,0.550003,-0.057716,-0.27489,-0.0061486,-0.0372384,1 +0.347937,-0.0853348,0.232238,0.187766,-0.553914,0.61123,-0.496823,0.587581,-0.324202,0.0506256,-0.256237,0.439416,-0.2801,0.710372,-0.455117,0.213862,-0.485551,0.728205,-0.229456,0.599766,-0.0232858,-0.0482727,0.226665,0.285375,-0.511831,0.141028,-0.179687,0.258497,0.0141485,0.325637,-0.601327,0.621502,-0.501391,1 +0.347937,0.413471,-0.177471,0.506004,-0.435796,0.546905,-0.229209,0.443497,-0.532758,0.432243,-0.587935,0.560393,-0.424723,0.659884,-0.562803,0.64621,-0.420107,0.416069,-0.150046,0.746496,-0.319214,0.880081,0.0444317,0.783343,-0.37358,0.386492,-0.297409,0.49311,-0.383923,0.653731,-0.728475,0.590832,-0.561327,1 +0.347937,0.474933,-0.285188,0.448527,-0.0922701,0.604349,-0.150937,0.512541,-0.419727,0.524506,-0.428664,0.679168,-0.402919,0.513444,-0.167031,0.806577,-0.413927,0.758224,0.109107,0.86489,-0.131379,1.01091,-0.421806,0.785556,-0.22874,0.572271,-0.0592198,0.833941,-0.00925816,0.757356,-0.204267,0.844514,-0.0425123,1 +0.347937,0.21237,-0.400471,-0.122182,0.117339,0.359634,-0.0470482,0.362482,-0.603524,0.34037,-0.788615,0.769302,-0.576135,0.601982,-0.0646471,0.40206,-0.000670725,0.442256,-0.182161,0.747414,-0.504194,0.499455,-0.434452,0.4768,-0.0659852,0.148835,-0.092491,0.386092,-0.357465,0.0402046,0.14207,0.499952,-0.0604481,1 +0.347937,-0.348581,0.155647,-0.0216748,-0.237059,0.00857586,-0.0972067,-0.0648991,-0.663501,0.0953819,-0.28645,0.382167,-0.515837,0.512127,-0.227747,0.264556,-0.264982,0.272313,-0.0434142,0.233253,-0.392569,0.24063,-0.147584,0.0319739,-0.256803,-0.00453463,-0.081837,0.382411,-0.00179715,0.322103,-0.221441,0.409109,-0.125615,1 +0.347937,0.481845,0.521885,0.231181,0.679067,0.132943,0.993298,-0.243752,1.49566,-0.670586,1.62937,-0.967188,1.61372,-1.0746,1.53559,-1.67161,1.25959,-1.8316,0.923515,-1.89439,0.352501,-1.99068,-0.044334,-2.03902,-0.378319,-2.358,-0.701009,-1.60755,-1.14312,-1.15075,-1.29135,-1.03792,-1.64508,1 +0.347937,0.582928,0.56282,0.381067,0.958466,0.100324,1.14565,-0.492674,1.54007,-0.762778,1.6419,-1.01766,1.73355,-1.38386,1.61234,-1.80453,1.26311,-2.02684,0.743677,-2.0649,0.100555,-2.15092,-0.267272,-2.12301,-0.782453,-2.31166,-1.13817,-1.37297,-1.63265,-0.854642,-1.82201,-0.476968,-2.05559,1 +0.347937,0.484356,0.593447,0.252475,1.00317,-0.424243,0.89469,-0.896685,1.69196,-1.00899,1.54833,-1.64715,1.26608,-1.59587,0.555113,-1.93548,0.836551,-2.17062,0.0313532,-1.84712,-0.808903,-1.87404,-0.753378,-1.67439,-1.18952,-1.66163,-1.36216,-0.708882,-1.65462,-0.172522,-1.59174,-0.664718,-1.77509,1 +0.347937,0.388678,0.556273,0.175993,0.783687,-0.117233,1.08392,-0.57574,1.41834,-0.988724,1.4047,-1.21568,1.38095,-1.33498,1.11944,-1.75633,0.63718,-1.78454,0.122168,-1.72007,-0.31161,-1.56621,-0.633748,-1.3279,-0.901393,-1.37763,-0.980123,-0.510857,-1.15552,-0.176512,-0.936352,0.108189,-0.785481,1 +0.347937,0.577363,0.65076,0.308952,1.10154,-0.115791,1.38896,-0.583609,1.59261,-1.09272,1.63016,-1.40283,1.50036,-1.61088,1.27357,-2.03341,0.747072,-2.03991,0.154071,-2.02505,-0.521119,-1.82548,-0.916255,-1.56228,-1.32974,-1.48172,-1.43936,-0.521536,-1.66088,0.0134672,-1.51249,0.468191,-1.31781,1 +0.347937,0.386428,0.612068,0.104532,1.00002,-0.406929,1.12801,-0.668391,1.25684,-1.1818,1.30113,-1.31487,1.15585,-1.57525,0.886417,-1.82712,0.399662,-1.7264,-0.0478645,-1.56929,-0.560141,-1.41466,-0.904765,-1.14427,-1.15823,-1.07891,-1.1409,-0.262839,-1.21339,0.137338,-0.989664,0.568734,-0.673084,1 +0.347937,0.689577,-0.162497,0.730025,-0.34055,0.913227,-0.375824,0.937457,-0.344704,0.845786,-0.365954,0.938945,-0.339469,0.995149,-0.311151,0.957915,-0.184602,0.979216,-0.189212,1.07611,-0.117368,0.977702,-0.0601647,0.998158,-0.0240379,0.823102,-0.108327,0.965895,-0.238699,1.08281,-0.299385,1.1832,-0.432338,1 +0.347937,0.601112,-0.1352,0.655236,-0.229767,0.811614,-0.257476,0.881409,-0.396704,0.834482,-0.388306,0.917617,-0.224469,0.959504,-0.239986,0.92667,-0.074529,0.946738,-0.0444738,0.993057,-0.0580623,0.936908,0.0250936,0.906482,0.0519708,0.746427,0.0204856,0.911596,-0.0922939,0.992848,-0.133664,1.09272,-0.189351,1 +0.347937,0.660986,-0.426364,0.600491,-0.256438,0.843706,-0.558023,0.935682,0.00269632,0.783727,-0.308721,0.860303,-0.359453,0.871717,-0.160159,0.785785,-0.16737,0.975511,-0.36277,1.08769,0.182266,0.923558,0.00928182,0.913691,0.274687,0.772541,-0.0417843,1.02776,-0.340574,0.877307,-0.161547,1.17932,-0.498914,1 +0.347937,-0.232911,-0.177312,0.669567,-0.0675745,-0.050086,-0.554682,-0.407774,-0.409827,0.0572982,-0.587349,0.39099,0.393488,0.744991,-0.931696,0.259572,0.0414017,0.319242,0.111592,0.42065,0.572759,0.831337,0.205241,0.0184032,0.439979,0.254219,0.12159,0.490679,-0.0117977,0.836413,-0.289629,0.790846,-0.248048,1 +0.347937,-0.61886,-0.666852,-0.301288,0.230748,-0.327218,0.090849,-0.187704,-0.0877448,0.0422671,-0.537876,0.238367,-0.359373,0.366361,0.572021,0.280915,0.0632029,-0.174669,-0.328305,0.222234,-0.123234,0.273788,0.0561672,-0.0125243,0.303871,-0.244498,-0.132762,-0.319517,-0.218481,0.0292682,-0.280965,-0.508996,-1.09852,1 +0.347937,-0.259734,2.16482,0.767382,0.916236,0.328192,1.32303,-0.109706,0.584735,-0.257983,1.70762,-0.302661,1.83196,-0.79396,2.02646,-1.15329,1.99459,-1.55399,1.97278,-1.41587,1.3677,-2.06615,1.01685,-2.41358,0.831743,-2.98649,0.3004,-2.39361,-0.274075,-2.36667,-0.814811,-2.42679,-1.4307,1 +0.347937,0.229649,1.02395,0.450951,0.926892,-0.00189803,1.15462,-0.314748,1.0883,-0.606025,1.6015,-0.801981,1.70623,-1.1032,1.63863,-1.47142,1.43978,-1.66538,1.35609,-1.70265,0.465612,-1.91124,0.165617,-2.39608,-0.432263,-2.41215,-0.469765,-1.75654,-0.322739,-1.21408,-1.16974,-1.0436,-1.37516,1 +0.347937,0.394906,0.871404,0.23095,1.01552,-0.190489,1.27084,-0.684622,1.33507,-1.07597,1.44382,-1.38636,1.39744,-1.43761,0.980795,-1.88772,0.541319,-1.91537,0.121956,-1.56947,-0.621048,-1.38563,-0.818351,-1.32961,-1.19327,-1.14718,-1.01336,-0.402068,-0.848868,0.0322254,-0.755248,0.256047,-0.550053,1 +0.347937,0.593195,0.694776,0.29137,1.17296,-0.191585,1.47172,-0.707242,1.60466,-1.23148,1.63286,-1.55283,1.49646,-1.73349,1.11115,-2.12451,0.531073,-2.06909,-0.0773592,-1.97921,-0.806278,-1.67824,-1.17021,-1.32098,-1.53064,-1.13796,-1.53206,-0.18258,-1.63338,0.342541,-1.34807,0.763238,-0.974106,1 +0.347937,0.568643,0.735937,0.228315,1.23329,-0.521797,1.57738,-1.2285,1.20683,-1.40592,1.5551,-1.71486,1.40288,-1.93866,0.767954,-2.1441,0.20023,-2.17062,0.107758,-1.64145,-1.2951,-1.3624,-1.37326,-0.91796,-1.59222,-0.666385,-1.42145,0.192043,-1.32795,0.606048,-0.889231,0.786924,-0.312638,1 +0.347937,0.720619,0.266354,0.767382,-0.372103,0.913227,-0.202843,0.9627,-0.630081,0.929584,-0.343865,0.963054,-0.223742,1.00462,-0.294243,1.00005,-0.136792,1.0229,0.159947,1.08769,-0.211083,1.05591,0.0579304,1.04394,-0.311888,0.887941,0.00237736,1.0793,0.218312,1.13299,-0.26899,1.24485,-0.189757,1 +0.347937,0.63139,-0.104029,0.506177,-0.538897,0.811371,-0.238061,0.623671,-1.43237,0.79544,-0.103797,0.963054,-0.476655,0.993341,-0.210642,0.932948,-0.305102,0.767629,1.23569,1.08769,-0.330986,0.848745,-0.0522209,0.797432,0.107271,0.580543,0.094264,0.774155,0.0181842,0.79412,-0.0307185,0.838487,-0.0744551,1 +0.347937,0.30628,0.567577,0.0761205,0.883728,-0.277893,1.07963,-0.729843,1.35193,-1.14374,1.27861,-1.33386,1.27278,-1.40283,0.749563,-1.83863,0.344565,-1.69123,-0.143592,-1.4982,-0.469591,-1.27341,-0.617045,-0.986263,-0.893251,-1.01977,-0.759115,-0.326706,-0.694293,-0.0742519,-0.44433,-0.00697131,-0.202504,1 +0.347937,0.481222,0.697607,0.159316,1.16185,-0.409892,1.30289,-0.894417,1.50268,-1.37361,1.43459,-1.65087,1.21746,-1.70829,0.702396,-2.00637,0.176537,-1.87747,-0.416404,-1.61109,-0.981377,-1.25899,-1.18676,-0.877524,-1.34543,-0.719154,-1.17359,0.0491501,-1.07994,0.37402,-0.708478,0.532439,-0.315008,1 +0.347937,0.511441,0.789444,0.115843,1.30672,-0.517372,1.51489,-1.10384,1.57653,-1.6565,1.39649,-1.89236,0.993582,-1.94898,0.393127,-2.11121,-0.301016,-1.78842,-0.886219,-1.38728,-1.48652,-0.847057,-1.57075,-0.311737,-1.54543,-0.0181145,-1.12066,0.642514,-0.745418,0.838006,-0.129477,0.802154,0.565362,1 +0.347937,0.720619,-0.645354,0.767382,-0.690998,0.656292,-0.423678,0.738035,-0.348631,0.929584,-0.0831023,0.840984,-0.0608716,0.771935,-0.238022,0.406072,-0.731685,0.820785,0.0218941,0.983907,0.106132,1.05591,0.588799,0.387441,-0.606817,0.590326,0.0257036,1.0793,-0.0696549,0.313458,0.0566885,0.929999,-0.0849817,1 +0.347937,0.214098,-0.0814886,0.446373,-0.215488,0.56081,-0.181796,0.697547,-0.340054,0.228675,-0.194456,0.627029,-0.0931627,0.659057,-0.0372239,0.428968,0.39636,0.767964,0.127235,0.61682,0.121436,0.540729,0.252487,0.462849,0.305248,0.185274,0.277256,0.408076,0.0880303,0.401335,0.177898,0.390187,0.158924,1 +0.347937,0.419499,-0.0595374,0.617553,-0.219893,0.751775,-0.187346,0.820016,-0.209249,0.709476,-0.0835469,0.82099,-0.101468,0.86274,-0.0457105,0.795186,0.0644913,0.956893,0.0462836,0.908903,0.119989,0.864281,0.254762,0.762511,0.353429,0.634611,0.289146,0.86393,0.2279,0.873982,0.20471,0.94366,0.197507,1 +0.347937,0.720619,-0.127226,0.767382,-0.258933,0.913227,-0.259261,0.9627,-0.407141,0.929584,-0.370097,0.963054,-0.232956,1.00198,-0.222532,0.992412,-0.0579014,1.01195,-0.0202192,1.08769,-0.0909089,1.05591,0.0133011,1.04394,0.0430228,0.88488,0.0259399,1.06888,-0.0691628,1.11649,-0.119119,1.22516,-0.173294,1 +0.347937,0.509753,-0.172283,0.527414,-0.131158,0.700197,-0.202593,0.822107,-0.317506,0.77496,-0.333336,0.867568,-0.220771,0.880249,-0.0817512,0.897513,0.00728077,0.931201,0.0729849,0.931827,-0.000725438,0.868968,0.0750503,0.85908,0.186722,0.674886,0.155716,0.872994,0.0588359,0.911236,0.088349,0.991013,0.0198145,1 +0.347937,0.521125,-0.0603529,0.767382,-0.289965,0.711686,-0.215594,0.661989,-0.257528,0.929584,-0.241666,0.928852,-0.167263,0.966596,-0.0778242,1.00005,-0.0569552,0.858692,-0.015191,0.860905,0.13454,1.05591,0.283636,0.872287,0.230655,0.777616,0.18546,0.986941,0.103799,1.13299,0.0281045,1.12272,0.0145192,1 +0.347937,-0.497082,-0.649681,0.0490171,-0.22393,-0.19394,-0.0546335,0.245554,-0.186908,-0.468615,-0.742012,0.2812,0.117417,0.0762542,-0.155185,0.290623,0.0990954,0.248713,0.104657,0.739855,0.334881,-0.0984576,-0.17843,0.154076,0.256594,-0.151143,0.238094,-0.0783405,-0.00471069,0.11557,0.132199,0.0852869,0.4867,1 +0.347937,0.453173,0.713872,0.229046,1.19524,-0.361481,1.36559,-0.838921,1.4004,-1.27306,1.42713,-1.47614,1.17678,-1.57974,0.750719,-1.86424,0.206531,-1.68197,-0.216722,-1.36362,-0.830556,-1.13926,-0.984696,-0.733986,-1.03905,-0.751719,-0.839475,-0.0961218,-0.675178,0.19139,-0.375829,0.115172,0.00794275,1 +0.347937,0.510918,0.758432,0.138579,1.25538,-0.387564,1.47403,-1.09212,1.55441,-1.53494,1.39263,-1.72543,1.06566,-1.79367,0.507074,-2.01199,-0.100719,-1.7485,-0.614024,-1.40117,-1.22109,-0.988386,-1.29138,-0.565346,-1.31245,-0.399707,-1.00618,0.252993,-0.773569,0.454355,-0.330305,0.480934,0.153991,1 +0.347937,0.530689,0.830832,0.100935,1.37089,-0.509252,1.61246,-1.27255,1.6469,-1.77205,1.36937,-1.92446,0.924372,-2.00737,0.17625,-2.12284,-0.507131,-1.72134,-1.09765,-1.23339,-1.66037,-0.637622,-1.66928,-0.0569706,-1.53884,0.259082,-1.00005,0.835799,-0.498693,0.934456,0.198206,0.775999,0.957707,1 +0.347937,0.720619,2.16482,-0.45025,-0.117855,-0.852861,1.55117,-1.55346,1.5596,-1.40454,0.448265,-2.04556,0.557813,-1.94956,-0.348631,-1.24771,-0.681902,-1.31719,-1.54331,-0.640976,-1.8223,-0.176087,-0.278742,0.590863,-0.763653,0.606483,0.00223191,1.0793,2.02354,0.0598202,0.0121769,-0.32867,1.67277,1 +0.347937,0.720619,1.06647,-0.28184,0.471867,-0.993568,0.469092,-1.64257,1.13521,-1.65171,0.666528,-1.56956,-0.188763,-1.40913,-0.419622,-1.15737,-0.96874,-0.719022,-1.58831,0.242945,-1.12716,0.353256,-0.695478,1.04394,-0.634723,0.364137,0.350616,1.02669,1.18838,-0.192646,0.715444,-0.494494,0.680813,1 +0.347937,0.481724,-0.100517,0.667682,-0.311037,0.783278,-0.252636,0.770299,-0.336995,0.756451,-0.276365,0.865045,-0.170273,0.939238,-0.148531,1.00005,0.0625185,0.930403,0.0227803,0.937714,0.0310597,0.914515,0.212882,1.03866,0.235926,0.687749,0.166897,0.920486,0.0729508,1.13299,0.114246,1.19818,-0.0569677,1 +0.347937,0.371499,0.0842437,0.364928,-0.428482,0.718892,-0.263256,0.822836,-0.352806,0.577177,-0.134172,0.877565,-0.20309,0.917701,-0.155185,0.891024,0.414176,0.943624,0.0326247,0.948127,-0.00232724,0.732872,0.243292,0.890681,0.453804,0.685056,0.274874,0.691378,0.187583,1.00268,0.359527,1.10237,-0.0309181,1 +0.347937,0.207628,0.140469,0.550131,-0.230179,0.68065,-0.200961,0.710938,-0.404103,0.45132,-0.0983402,0.764673,-0.12992,0.809081,-0.0814021,0.931201,0.164318,0.943624,0.128256,0.851509,0.0755243,0.806328,0.207004,0.823242,0.363164,0.566925,0.235767,0.635951,-0.0148687,0.812948,0.139792,0.877001,0.122241,1 +0.347937,0.471035,-0.0160882,0.57408,-0.244046,0.69421,-0.219415,0.693208,-0.374796,0.841403,-0.162707,0.754451,-0.168677,0.794805,-0.130075,0.738748,-0.117749,0.79479,0.0941378,0.828306,0.0149259,0.782395,0.141994,0.689592,0.054488,0.541392,0.163388,0.766532,0.226128,0.796272,0.0523269,0.863876,0.0212024,1 +0.347937,0.67065,-0.0844335,0.740047,-0.209086,0.913227,-0.191686,0.948698,-0.341749,0.853932,-0.266665,0.917376,-0.116987,1.00462,-0.07381,0.965569,0.0501786,1.00021,0.155786,1.04109,0.0765471,0.964717,0.213223,1.01629,0.209849,0.840285,0.244184,0.989858,0.215793,1.11745,0.128441,1.22445,0.181472,1 +0.347937,0.720619,-0.0754854,0.767382,-0.22751,0.913227,-0.184657,0.951814,-0.404475,0.919788,-0.317795,0.936422,-0.141882,1.00462,-0.135899,0.960714,0.0228415,0.989387,0.0782057,1.05507,-0.00321499,1.02481,0.14863,0.994268,0.126957,0.849836,0.155516,1.04285,0.0853923,1.10786,0.0482574,1.21948,0.0280565,1 +0.347937,0.720619,-0.130918,0.767382,-0.217506,0.913227,-0.23351,0.9627,-0.245335,0.889886,-0.222911,0.898331,-0.13,1.00462,-0.0136403,0.981943,0.0748383,1.0229,0.115233,1.08402,0.165322,0.985503,0.248809,1.04394,0.337972,0.887728,0.285746,1.06376,0.222289,1.13299,0.203405,1.24485,0.184034,1 +0.347937,0.487953,0.731406,0.134963,1.21076,-0.312522,1.42992,-0.961627,1.55105,-1.4688,1.37847,-1.6136,1.00027,-1.73206,0.690811,-1.96563,-0.00564293,-1.6807,-0.588749,-1.41308,-1.05668,-1.05379,-1.18276,-0.670886,-1.23217,-0.545057,-0.97676,0.116768,-0.799102,0.331727,-0.412065,0.408478,0.0293589,1 +0.347937,0.522652,0.846078,0.0774093,1.39181,-0.498718,1.59793,-1.41271,1.62032,-1.82967,1.3275,-1.95982,0.840775,-2.01281,0.0705055,-2.09784,-0.625054,-1.6942,-1.21482,-1.08266,-1.73359,-0.503216,-1.67656,0.0841823,-1.47564,0.386299,-0.877728,0.895499,-0.313683,0.92114,0.403805,0.681483,1.14029,1 +0.347937,-0.62979,0.149621,-0.849011,0.384521,-0.832014,1.20113,-1.50505,1.52647,-1.13792,0.225537,-1.66822,0.313689,-2.02298,-0.162537,-0.993849,-0.393495,-1.06122,-0.895505,-0.788674,-1.75273,-0.445578,-0.439381,-0.195461,-0.225004,-0.282157,-0.0826187,-0.118765,0.165455,-0.241623,0.407329,-0.41251,0.533248,1 +0.347937,0.0343739,0.887556,-0.296729,1.37183,-1.00863,1.40509,-1.64105,1.32281,-2.05629,0.745809,-1.99765,-0.0450695,-1.79568,-0.781818,-1.37903,-1.43657,-0.64985,-1.61054,-0.170172,-1.48882,0.338134,-0.879455,0.599645,-0.226675,0.398949,0.557552,0.127464,1.21781,-0.257267,1.50209,-1.02302,1.55674,1 +0.347937,-0.897477,0.0291733,-1.07546,0.295178,-1.33088,0.709169,-1.37075,-0.753446,-1.59013,-0.189909,-1.37419,-0.00366493,-0.778581,-0.821327,-0.784762,-0.791794,-0.275233,-0.291952,0.00561556,-0.246689,-0.126233,-0.195095,-0.310631,0.625586,-0.973472,0.691709,-0.723434,0.57339,-0.910707,0.334389,-1.24534,-0.748094,1 +0.347937,0.680475,-0.0988184,0.767382,-0.25149,0.892564,-0.230649,0.858591,-0.325318,0.888768,-0.270282,0.929109,-0.126666,0.991901,-0.104178,0.901817,0.122286,0.919944,0.147984,1.0506,0.0905967,1.05591,0.227158,0.94289,0.299427,0.824187,0.258329,1.00465,0.214159,1.10132,0.165611,1.19218,0.153052,1 +0.347937,0.364065,-0.272049,0.391551,-0.246477,0.659784,-0.252521,0.702793,-0.530092,0.447452,-0.550467,0.715925,-0.087141,0.746063,-0.316605,0.592264,0.142255,0.676789,0.16877,0.87063,-0.0617484,0.705511,-0.00514591,0.602256,0.0933872,0.436899,0.0767739,0.628623,-0.0952665,0.609058,-0.0747822,0.832326,-0.00499664,1 +0.347937,-0.578415,-0.412409,0.178513,-0.304071,0.267642,-0.29784,0.0893808,-0.501261,0.252313,-0.524861,0.353895,-0.320656,0.382108,-0.314205,0.0659541,-0.524342,0.355664,0.142454,0.263459,-0.18528,0.165518,-0.0615866,0.0932583,0.128904,-0.290933,-0.0378935,-0.0391835,-0.147946,-0.052834,-0.160787,-0.11467,-0.208141,1 +0.347937,0.239333,-0.0757799,0.504523,-0.245891,0.625419,-0.221835,0.568037,-0.327178,0.601348,-0.0694407,0.691367,-0.173729,0.726058,-0.136554,0.721369,-0.133108,0.648159,0.121051,0.710191,0.00614495,0.64302,0.132192,0.648707,0.134037,0.32394,0.151425,0.491703,0.0716515,0.543264,0.0362825,0.553906,0.00164387,1 +0.347937,0.0508896,-0.131462,0.717445,-0.103251,-0.110006,0.733576,0.483137,-0.380438,0.311373,-0.597696,0.00134816,-1.17704,0.073405,1.12638,0.624269,0.64805,0.680429,0.264729,0.227465,-0.883396,1.05591,0.121784,0.363774,0.277008,0.28074,0.437103,0.863426,0.208233,0.351307,0.486188,-0.401833,0.995842,1 +0.347937,0.389261,0.0874605,0.262228,-0.570623,0.59554,-0.336112,0.774184,-0.470321,0.741313,-0.0479782,0.660845,-0.0529099,0.68764,-0.349984,1.00005,-0.0350131,0.969236,0.173779,0.884437,0.00628004,0.683598,0.234305,0.964032,0.0573593,0.567893,0.128662,1.0793,0.307215,0.899565,-0.201229,1.06397,-0.122882,1 +0.347937,0.622429,-0.0910256,0.674722,-0.310581,0.78003,-0.266079,0.856008,-0.341604,0.86765,-0.247021,0.869368,-0.0406441,0.922281,-0.184114,0.954307,0.010099,0.940415,0.162606,0.967493,0.146332,0.942026,0.300074,0.9492,0.166761,0.762448,0.215968,0.960512,0.215734,1.02916,0.00670548,1.08189,0.0696931,1 +0.347937,0.614151,-0.101288,0.636712,-0.321519,0.815329,-0.295094,0.875611,-0.324243,0.825307,-0.277639,0.844038,-0.0940316,0.912003,-0.187059,0.916509,0.047622,0.923648,0.0731197,0.946766,0.132147,0.881506,0.225395,0.940003,0.202789,0.742437,0.172642,0.94247,0.0990741,1.00104,0.0159933,1.10512,-0.0432383,1 +0.347937,0.531914,-0.138054,0.731256,-0.294653,0.825762,-0.299223,0.681592,-0.372523,0.747223,-0.380323,0.787238,-0.217781,0.860749,-0.254013,0.860588,-0.0105145,0.715894,-0.202774,0.902868,0.00743797,0.925976,0.0648504,0.889212,0.0987166,0.677695,-0.0146582,0.78381,-0.28441,1.06338,-0.065767,1.00383,-0.377741,1 +0.347937,0.413411,0.206051,0.260285,-0.384972,0.667071,-0.0705912,0.744345,-0.563677,0.552208,-0.17837,0.652343,-0.195856,0.686951,-0.17818,0.769701,-0.0846949,0.818039,-0.0214329,0.787967,-0.199156,0.575626,0.192141,0.809983,-0.157235,0.522717,0.0387575,0.700877,0.0410987,0.708606,-0.122643,0.972474,-0.162255,1 diff --git a/data/iris.arff b/data/iris.arff new file mode 100644 index 0000000..f69eb6c --- /dev/null +++ b/data/iris.arff @@ -0,0 +1,157 @@ +@relation iris +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'clase' {0,1,2} +@data +-0.897674,1.02861,-1.33679,-1.30859,0 +-1.1392,-0.12454,-1.33679,-1.30859,0 +-1.38073,0.33672,-1.39347,-1.30859,0 +-1.50149,0.10609,-1.28012,-1.30859,0 +-1.01844,1.25924,-1.33679,-1.30859,0 +-0.535384,1.95113,-1.16677,-1.04652,0 +-1.50149,0.797981,-1.33679,-1.17756,0 +-1.01844,0.797981,-1.28012,-1.30859,0 +-1.74302,-0.355171,-1.33679,-1.30859,0 +-1.1392,0.10609,-1.28012,-1.43963,0 +-0.535384,1.48987,-1.28012,-1.30859,0 +-1.25996,0.797981,-1.22344,-1.30859,0 +-1.25996,-0.12454,-1.33679,-1.43963,0 +-1.86378,-0.12454,-1.50682,-1.43963,0 +-0.0523308,2.18176,-1.45015,-1.30859,0 +-0.173094,3.10428,-1.28012,-1.04652,0 +-0.535384,1.95113,-1.39347,-1.04652,0 +-0.897674,1.02861,-1.33679,-1.17756,0 +-0.173094,1.7205,-1.16677,-1.17756,0 +-0.897674,1.7205,-1.28012,-1.17756,0 +-0.535384,0.797981,-1.16677,-1.30859,0 +-0.897674,1.48987,-1.28012,-1.04652,0 +-1.50149,1.25924,-1.5635,-1.30859,0 +-0.897674,0.567351,-1.16677,-0.915491,0 +-1.25996,0.797981,-1.05341,-1.30859,0 +-1.01844,-0.12454,-1.22344,-1.30859,0 +-1.01844,0.797981,-1.22344,-1.04652,0 +-0.776911,1.02861,-1.28012,-1.30859,0 +-0.776911,0.797981,-1.33679,-1.30859,0 +-1.38073,0.33672,-1.22344,-1.30859,0 +-1.25996,0.10609,-1.22344,-1.30859,0 +-0.535384,0.797981,-1.28012,-1.04652,0 +-0.776911,2.41239,-1.28012,-1.43963,0 +-0.414621,2.64302,-1.33679,-1.30859,0 +-1.1392,0.10609,-1.28012,-1.43963,0 +-1.01844,0.33672,-1.45015,-1.30859,0 +-0.414621,1.02861,-1.39347,-1.30859,0 +-1.1392,0.10609,-1.28012,-1.43963,0 +-1.74302,-0.12454,-1.39347,-1.30859,0 +-0.897674,0.797981,-1.28012,-1.30859,0 +-1.01844,1.02861,-1.39347,-1.17756,0 +-1.62225,-1.73895,-1.39347,-1.17756,0 +-1.74302,0.33672,-1.39347,-1.30859,0 +-1.01844,1.02861,-1.22344,-0.784457,0 +-0.897674,1.7205,-1.05341,-1.04652,0 +-1.25996,-0.12454,-1.33679,-1.17756,0 +-0.897674,1.7205,-1.22344,-1.30859,0 +-1.50149,0.33672,-1.33679,-1.30859,0 +-0.656147,1.48987,-1.28012,-1.30859,0 +-1.01844,0.567351,-1.33679,-1.30859,0 +1.39683,0.33672,0.533509,0.263815,1 +0.672249,0.33672,0.420157,0.394849,1 +1.27607,0.10609,0.64686,0.394849,1 +-0.414621,-1.73895,0.136778,0.132781,1 +0.793012,-0.585801,0.476833,0.394849,1 +-0.173094,-0.585801,0.420157,0.132781,1 +0.551486,0.567351,0.533509,0.525883,1 +-1.1392,-1.50832,-0.259953,-0.260321,1 +0.913776,-0.355171,0.476833,0.132781,1 +-0.776911,-0.816431,0.0801018,0.263815,1 +-1.01844,-2.43084,-0.146601,-0.260321,1 +0.0684325,-0.12454,0.250129,0.394849,1 +0.189196,-1.96958,0.136778,-0.260321,1 +0.309959,-0.355171,0.533509,0.263815,1 +-0.293857,-0.355171,-0.0899257,0.132781,1 +1.03454,0.10609,0.363481,0.263815,1 +-0.293857,-0.12454,0.420157,0.394849,1 +-0.0523308,-0.816431,0.193454,-0.260321,1 +0.430722,-1.96958,0.420157,0.394849,1 +-0.293857,-1.27769,0.0801018,-0.129287,1 +0.0684325,0.33672,0.590184,0.787951,1 +0.309959,-0.585801,0.136778,0.132781,1 +0.551486,-1.27769,0.64686,0.394849,1 +0.309959,-0.585801,0.533509,0.00174712,1 +0.672249,-0.355171,0.306805,0.132781,1 +0.913776,-0.12454,0.363481,0.263815,1 +1.1553,-0.585801,0.590184,0.263815,1 +1.03454,-0.12454,0.703536,0.656917,1 +0.189196,-0.355171,0.420157,0.394849,1 +-0.173094,-1.04706,-0.146601,-0.260321,1 +-0.414621,-1.50832,0.023426,-0.129287,1 +-0.414621,-1.50832,-0.0332498,-0.260321,1 +-0.0523308,-0.816431,0.0801018,0.00174712,1 +0.189196,-0.816431,0.760212,0.525883,1 +-0.535384,-0.12454,0.420157,0.394849,1 +0.189196,0.797981,0.420157,0.525883,1 +1.03454,0.10609,0.533509,0.394849,1 +0.551486,-1.73895,0.363481,0.132781,1 +-0.293857,-0.12454,0.193454,0.132781,1 +-0.414621,-1.27769,0.136778,0.132781,1 +-0.414621,-1.04706,0.363481,0.00174712,1 +0.309959,-0.12454,0.476833,0.263815,1 +-0.0523308,-1.04706,0.136778,0.00174712,1 +-1.01844,-1.73895,-0.259953,-0.260321,1 +-0.293857,-0.816431,0.250129,0.132781,1 +-0.173094,-0.12454,0.250129,0.00174712,1 +-0.173094,-0.355171,0.250129,0.132781,1 +0.430722,-0.355171,0.306805,0.132781,1 +-0.897674,-1.27769,-0.429981,-0.129287,1 +-0.173094,-0.585801,0.193454,0.132781,1 +0.551486,0.567351,1.27029,1.70519,2 +-0.0523308,-0.816431,0.760212,0.918985,2 +1.51759,-0.12454,1.21362,1.18105,2 +0.551486,-0.355171,1.04359,0.787951,2 +0.793012,-0.12454,1.15694,1.31209,2 +2.12141,-0.12454,1.61035,1.18105,2 +-1.1392,-1.27769,0.420157,0.656917,2 +1.75912,-0.355171,1.44032,0.787951,2 +1.03454,-1.27769,1.15694,0.787951,2 +1.63836,1.25924,1.32697,1.70519,2 +0.793012,0.33672,0.760212,1.05002,2 +0.672249,-0.816431,0.873564,0.918985,2 +1.1553,-0.12454,0.986915,1.18105,2 +-0.173094,-1.27769,0.703536,1.05002,2 +-0.0523308,-0.585801,0.760212,1.57416,2 +0.672249,0.33672,0.873564,1.44312,2 +0.793012,-0.12454,0.986915,0.787951,2 +2.24217,1.7205,1.66703,1.31209,2 +2.24217,-1.04706,1.78038,1.44312,2 +0.189196,-1.96958,0.703536,0.394849,2 +1.27607,0.33672,1.10027,1.44312,2 +-0.293857,-0.585801,0.64686,1.05002,2 +2.24217,-0.585801,1.66703,1.05002,2 +0.551486,-0.816431,0.64686,0.787951,2 +1.03454,0.567351,1.10027,1.18105,2 +1.63836,0.33672,1.27029,0.787951,2 +0.430722,-0.585801,0.590184,0.787951,2 +0.309959,-0.12454,0.64686,0.787951,2 +0.672249,-0.585801,1.04359,1.18105,2 +1.63836,-0.12454,1.15694,0.525883,2 +1.87988,-0.585801,1.32697,0.918985,2 +2.4837,1.7205,1.497,1.05002,2 +0.672249,-0.585801,1.04359,1.31209,2 +0.551486,-0.585801,0.760212,0.394849,2 +0.309959,-1.04706,1.04359,0.263815,2 +2.24217,-0.12454,1.32697,1.44312,2 +0.551486,0.797981,1.04359,1.57416,2 +0.672249,0.10609,0.986915,0.787951,2 +0.189196,-0.12454,0.590184,0.787951,2 +1.27607,0.10609,0.930239,1.18105,2 +1.03454,0.10609,1.04359,1.57416,2 +1.27607,0.10609,0.760212,1.44312,2 +-0.0523308,-0.816431,0.760212,0.918985,2 +1.1553,0.33672,1.21362,1.44312,2 +1.03454,0.567351,1.10027,1.70519,2 +1.03454,-0.12454,0.816888,1.44312,2 +0.551486,-1.27769,0.703536,0.918985,2 +0.793012,-0.12454,0.816888,1.05002,2 +0.430722,0.797981,0.930239,1.44312,2 +0.0684325,-0.12454,0.760212,0.787951,2 diff --git a/data/iris.csv b/data/iris.csv new file mode 100755 index 0000000..eab4b5f --- /dev/null +++ b/data/iris.csv @@ -0,0 +1,150 @@ +-0.897674,1.02861,-1.33679,-1.30859,0 +-1.1392,-0.12454,-1.33679,-1.30859,0 +-1.38073,0.33672,-1.39347,-1.30859,0 +-1.50149,0.10609,-1.28012,-1.30859,0 +-1.01844,1.25924,-1.33679,-1.30859,0 +-0.535384,1.95113,-1.16677,-1.04652,0 +-1.50149,0.797981,-1.33679,-1.17756,0 +-1.01844,0.797981,-1.28012,-1.30859,0 +-1.74302,-0.355171,-1.33679,-1.30859,0 +-1.1392,0.10609,-1.28012,-1.43963,0 +-0.535384,1.48987,-1.28012,-1.30859,0 +-1.25996,0.797981,-1.22344,-1.30859,0 +-1.25996,-0.12454,-1.33679,-1.43963,0 +-1.86378,-0.12454,-1.50682,-1.43963,0 +-0.0523308,2.18176,-1.45015,-1.30859,0 +-0.173094,3.10428,-1.28012,-1.04652,0 +-0.535384,1.95113,-1.39347,-1.04652,0 +-0.897674,1.02861,-1.33679,-1.17756,0 +-0.173094,1.7205,-1.16677,-1.17756,0 +-0.897674,1.7205,-1.28012,-1.17756,0 +-0.535384,0.797981,-1.16677,-1.30859,0 +-0.897674,1.48987,-1.28012,-1.04652,0 +-1.50149,1.25924,-1.5635,-1.30859,0 +-0.897674,0.567351,-1.16677,-0.915491,0 +-1.25996,0.797981,-1.05341,-1.30859,0 +-1.01844,-0.12454,-1.22344,-1.30859,0 +-1.01844,0.797981,-1.22344,-1.04652,0 +-0.776911,1.02861,-1.28012,-1.30859,0 +-0.776911,0.797981,-1.33679,-1.30859,0 +-1.38073,0.33672,-1.22344,-1.30859,0 +-1.25996,0.10609,-1.22344,-1.30859,0 +-0.535384,0.797981,-1.28012,-1.04652,0 +-0.776911,2.41239,-1.28012,-1.43963,0 +-0.414621,2.64302,-1.33679,-1.30859,0 +-1.1392,0.10609,-1.28012,-1.43963,0 +-1.01844,0.33672,-1.45015,-1.30859,0 +-0.414621,1.02861,-1.39347,-1.30859,0 +-1.1392,0.10609,-1.28012,-1.43963,0 +-1.74302,-0.12454,-1.39347,-1.30859,0 +-0.897674,0.797981,-1.28012,-1.30859,0 +-1.01844,1.02861,-1.39347,-1.17756,0 +-1.62225,-1.73895,-1.39347,-1.17756,0 +-1.74302,0.33672,-1.39347,-1.30859,0 +-1.01844,1.02861,-1.22344,-0.784457,0 +-0.897674,1.7205,-1.05341,-1.04652,0 +-1.25996,-0.12454,-1.33679,-1.17756,0 +-0.897674,1.7205,-1.22344,-1.30859,0 +-1.50149,0.33672,-1.33679,-1.30859,0 +-0.656147,1.48987,-1.28012,-1.30859,0 +-1.01844,0.567351,-1.33679,-1.30859,0 +1.39683,0.33672,0.533509,0.263815,1 +0.672249,0.33672,0.420157,0.394849,1 +1.27607,0.10609,0.64686,0.394849,1 +-0.414621,-1.73895,0.136778,0.132781,1 +0.793012,-0.585801,0.476833,0.394849,1 +-0.173094,-0.585801,0.420157,0.132781,1 +0.551486,0.567351,0.533509,0.525883,1 +-1.1392,-1.50832,-0.259953,-0.260321,1 +0.913776,-0.355171,0.476833,0.132781,1 +-0.776911,-0.816431,0.0801018,0.263815,1 +-1.01844,-2.43084,-0.146601,-0.260321,1 +0.0684325,-0.12454,0.250129,0.394849,1 +0.189196,-1.96958,0.136778,-0.260321,1 +0.309959,-0.355171,0.533509,0.263815,1 +-0.293857,-0.355171,-0.0899257,0.132781,1 +1.03454,0.10609,0.363481,0.263815,1 +-0.293857,-0.12454,0.420157,0.394849,1 +-0.0523308,-0.816431,0.193454,-0.260321,1 +0.430722,-1.96958,0.420157,0.394849,1 +-0.293857,-1.27769,0.0801018,-0.129287,1 +0.0684325,0.33672,0.590184,0.787951,1 +0.309959,-0.585801,0.136778,0.132781,1 +0.551486,-1.27769,0.64686,0.394849,1 +0.309959,-0.585801,0.533509,0.00174712,1 +0.672249,-0.355171,0.306805,0.132781,1 +0.913776,-0.12454,0.363481,0.263815,1 +1.1553,-0.585801,0.590184,0.263815,1 +1.03454,-0.12454,0.703536,0.656917,1 +0.189196,-0.355171,0.420157,0.394849,1 +-0.173094,-1.04706,-0.146601,-0.260321,1 +-0.414621,-1.50832,0.023426,-0.129287,1 +-0.414621,-1.50832,-0.0332498,-0.260321,1 +-0.0523308,-0.816431,0.0801018,0.00174712,1 +0.189196,-0.816431,0.760212,0.525883,1 +-0.535384,-0.12454,0.420157,0.394849,1 +0.189196,0.797981,0.420157,0.525883,1 +1.03454,0.10609,0.533509,0.394849,1 +0.551486,-1.73895,0.363481,0.132781,1 +-0.293857,-0.12454,0.193454,0.132781,1 +-0.414621,-1.27769,0.136778,0.132781,1 +-0.414621,-1.04706,0.363481,0.00174712,1 +0.309959,-0.12454,0.476833,0.263815,1 +-0.0523308,-1.04706,0.136778,0.00174712,1 +-1.01844,-1.73895,-0.259953,-0.260321,1 +-0.293857,-0.816431,0.250129,0.132781,1 +-0.173094,-0.12454,0.250129,0.00174712,1 +-0.173094,-0.355171,0.250129,0.132781,1 +0.430722,-0.355171,0.306805,0.132781,1 +-0.897674,-1.27769,-0.429981,-0.129287,1 +-0.173094,-0.585801,0.193454,0.132781,1 +0.551486,0.567351,1.27029,1.70519,2 +-0.0523308,-0.816431,0.760212,0.918985,2 +1.51759,-0.12454,1.21362,1.18105,2 +0.551486,-0.355171,1.04359,0.787951,2 +0.793012,-0.12454,1.15694,1.31209,2 +2.12141,-0.12454,1.61035,1.18105,2 +-1.1392,-1.27769,0.420157,0.656917,2 +1.75912,-0.355171,1.44032,0.787951,2 +1.03454,-1.27769,1.15694,0.787951,2 +1.63836,1.25924,1.32697,1.70519,2 +0.793012,0.33672,0.760212,1.05002,2 +0.672249,-0.816431,0.873564,0.918985,2 +1.1553,-0.12454,0.986915,1.18105,2 +-0.173094,-1.27769,0.703536,1.05002,2 +-0.0523308,-0.585801,0.760212,1.57416,2 +0.672249,0.33672,0.873564,1.44312,2 +0.793012,-0.12454,0.986915,0.787951,2 +2.24217,1.7205,1.66703,1.31209,2 +2.24217,-1.04706,1.78038,1.44312,2 +0.189196,-1.96958,0.703536,0.394849,2 +1.27607,0.33672,1.10027,1.44312,2 +-0.293857,-0.585801,0.64686,1.05002,2 +2.24217,-0.585801,1.66703,1.05002,2 +0.551486,-0.816431,0.64686,0.787951,2 +1.03454,0.567351,1.10027,1.18105,2 +1.63836,0.33672,1.27029,0.787951,2 +0.430722,-0.585801,0.590184,0.787951,2 +0.309959,-0.12454,0.64686,0.787951,2 +0.672249,-0.585801,1.04359,1.18105,2 +1.63836,-0.12454,1.15694,0.525883,2 +1.87988,-0.585801,1.32697,0.918985,2 +2.4837,1.7205,1.497,1.05002,2 +0.672249,-0.585801,1.04359,1.31209,2 +0.551486,-0.585801,0.760212,0.394849,2 +0.309959,-1.04706,1.04359,0.263815,2 +2.24217,-0.12454,1.32697,1.44312,2 +0.551486,0.797981,1.04359,1.57416,2 +0.672249,0.10609,0.986915,0.787951,2 +0.189196,-0.12454,0.590184,0.787951,2 +1.27607,0.10609,0.930239,1.18105,2 +1.03454,0.10609,1.04359,1.57416,2 +1.27607,0.10609,0.760212,1.44312,2 +-0.0523308,-0.816431,0.760212,0.918985,2 +1.1553,0.33672,1.21362,1.44312,2 +1.03454,0.567351,1.10027,1.70519,2 +1.03454,-0.12454,0.816888,1.44312,2 +0.551486,-1.27769,0.703536,0.918985,2 +0.793012,-0.12454,0.816888,1.05002,2 +0.430722,0.797981,0.930239,1.44312,2 +0.0684325,-0.12454,0.760212,0.787951,2 diff --git a/data/led-display.arff b/data/led-display.arff new file mode 100755 index 0000000..7f4a9d6 --- /dev/null +++ b/data/led-display.arff @@ -0,0 +1,1010 @@ +@relation led-display +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'clase' {0,1,2,3,4,5,6,7,8,9} +@data +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,7 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,-1.39256,2 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,7 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,5 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,5 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,-1.70392,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,-2.2085,-1.39256,4 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,-1.39256,6 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,0.828042,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,6 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,1 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,3 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,0.717382,0 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,4 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,5 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,3 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,7 +0.55397,-1.20646,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,9 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,1 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,3 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,1 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,6 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,-1.39256,2 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,3 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,5 +-1.80335,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,8 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,0.586295,0.723786,-0.836648,-2.2085,-1.39256,4 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,-2.2085,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,0.717382,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,-1.70392,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,-1.70392,-1.38024,-0.836648,-2.2085,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,9 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,-1.20646,-1.70392,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,-1.39256,5 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,0 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,0 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,9 +0.55397,-1.20646,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,2 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,7 +0.55397,-1.20646,-1.70392,0.723786,1.19405,-2.2085,0.717382,6 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,-2.2085,0.717382,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,7 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,5 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,-1.39256,0 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,-1.70392,0.723786,1.19405,0.452343,-1.39256,4 +-1.80335,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,5 +-1.80335,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,-1.39256,6 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,0 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,0.717382,1 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,5 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,-2.2085,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,1.19405,-2.2085,-1.39256,2 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,3 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,-1.39256,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,-1.39256,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,5 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,-2.2085,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,7 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,0.717382,8 +-1.80335,-1.20646,-1.70392,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,-1.70392,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,6 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,-1.39256,0 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,4 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,-2.2085,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +-1.80335,0.828042,-1.70392,-1.38024,1.19405,-2.2085,0.717382,6 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,-0.836648,-2.2085,0.717382,5 +0.55397,-1.20646,0.586295,-1.38024,1.19405,-2.2085,-1.39256,2 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,-1.39256,9 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,-1.70392,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,5 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,-1.20646,0.586295,0.723786,1.19405,-2.2085,-1.39256,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,-1.39256,0 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,3 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,-2.2085,0.717382,5 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,5 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,-1.39256,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,1 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,2 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,0.717382,7 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,0.723786,-0.836648,-2.2085,0.717382,5 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,1.19405,-2.2085,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,5 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,-1.39256,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,7 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,0 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,0 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,1 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,9 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,-1.39256,3 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,-1.38024,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,-1.38024,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,-1.38024,1.19405,-2.2085,0.717382,2 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,4 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,-2.2085,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,1 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,2 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,-1.39256,5 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,0 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,3 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,1 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,3 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,-1.38024,-0.836648,-2.2085,0.717382,9 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,4 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,0.717382,0 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,1 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,-2.2085,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,-1.70392,-1.38024,1.19405,0.452343,-1.39256,7 +-1.80335,0.828042,-1.70392,-1.38024,1.19405,-2.2085,-1.39256,4 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,-2.2085,0.717382,5 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,4 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,-1.70392,0.723786,1.19405,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,4 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,8 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,-1.39256,2 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,-1.39256,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,0.717382,0 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,6 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,0.717382,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,-1.39256,6 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,5 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,0.586295,0.723786,-0.836648,-2.2085,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,9 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,4 +-1.80335,-1.20646,-1.70392,0.723786,-0.836648,0.452343,-1.39256,3 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,5 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +-1.80335,0.828042,-1.70392,0.723786,1.19405,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,0 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,4 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,-0.836648,-2.2085,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,0.586295,-1.38024,1.19405,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,3 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,-1.39256,0 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,4 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,0.717382,2 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,0.717382,5 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,1 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,0.828042,0.586295,0.723786,-0.836648,-2.2085,-1.39256,4 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,-1.20646,0.586295,-1.38024,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,0.717382,7 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,-1.70392,-1.38024,1.19405,-2.2085,0.717382,2 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,4 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,-2.2085,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,-1.20646,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,4 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,5 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,-1.70392,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,-1.39256,8 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,0.828042,-1.70392,0.723786,1.19405,-2.2085,0.717382,6 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +-1.80335,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,-1.70392,0.723786,-0.836648,0.452343,-1.39256,4 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,-1.70392,-1.38024,1.19405,0.452343,0.717382,6 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,1 +0.55397,0.828042,0.586295,0.723786,1.19405,-2.2085,-1.39256,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,0 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,3 +0.55397,-1.20646,0.586295,0.723786,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,0.586295,0.723786,1.19405,0.452343,0.717382,2 +0.55397,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +-1.80335,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,-1.70392,0.723786,-0.836648,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,5 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,-1.70392,-1.38024,-0.836648,0.452343,-1.39256,3 +0.55397,0.828042,-1.70392,0.723786,1.19405,0.452343,0.717382,6 +0.55397,-1.20646,-1.70392,-1.38024,1.19405,-2.2085,0.717382,2 +-1.80335,-1.20646,0.586295,-1.38024,-0.836648,-2.2085,-1.39256,1 +0.55397,-1.20646,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,-0.836648,0.452343,-1.39256,7 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,0.717382,0 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,0 +-1.80335,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,-1.38024,1.19405,0.452343,-1.39256,0 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +0.55397,-1.20646,0.586295,0.723786,-0.836648,-2.2085,0.717382,9 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +-1.80335,0.828042,0.586295,0.723786,-0.836648,0.452343,-1.39256,4 +0.55397,0.828042,0.586295,0.723786,-0.836648,0.452343,0.717382,9 +-1.80335,-1.20646,0.586295,0.723786,-0.836648,0.452343,0.717382,3 +0.55397,0.828042,0.586295,-1.38024,1.19405,-2.2085,-1.39256,0 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 +0.55397,0.828042,0.586295,0.723786,1.19405,0.452343,0.717382,8 diff --git a/data/libras.arff b/data/libras.arff new file mode 100755 index 0000000..d5d1c8a --- /dev/null +++ b/data/libras.arff @@ -0,0 +1,453 @@ +@relation libras +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'f35' real +@attribute 'f36' real +@attribute 'f37' real +@attribute 'f38' real +@attribute 'f39' real +@attribute 'f40' real +@attribute 'f41' real +@attribute 'f42' real +@attribute 'f43' real +@attribute 'f44' real +@attribute 'f45' real +@attribute 'f46' real +@attribute 'f47' real +@attribute 'f48' real +@attribute 'f49' real +@attribute 'f50' real +@attribute 'f51' real +@attribute 'f52' real +@attribute 'f53' real +@attribute 'f54' real +@attribute 'f55' real +@attribute 'f56' real +@attribute 'f57' real +@attribute 'f58' real +@attribute 'f59' real +@attribute 'f60' real +@attribute 'f61' real +@attribute 'f62' real +@attribute 'f63' real +@attribute 'f64' real +@attribute 'f65' real +@attribute 'f66' real +@attribute 'f67' real +@attribute 'f68' real +@attribute 'f69' real +@attribute 'f70' real +@attribute 'f71' real +@attribute 'f72' real +@attribute 'f73' real +@attribute 'f74' real +@attribute 'f75' real +@attribute 'f76' real +@attribute 'f77' real +@attribute 'f78' real +@attribute 'f79' real +@attribute 'f80' real +@attribute 'f81' real +@attribute 'f82' real +@attribute 'f83' real +@attribute 'f84' real +@attribute 'f85' real +@attribute 'f86' real +@attribute 'f87' real +@attribute 'f88' real +@attribute 'f89' real +@attribute 'f90' real +@attribute 'clase' {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14} +@data +1.15776,-0.928219,1.16251,-0.951144,1.17859,-0.947486,1.17419,-0.93986,1.10313,-1.04577,0.928276,-1.17441,0.652756,-1.2994,0.259003,-1.32689,-0.221988,-1.14837,-0.608225,-0.78001,-0.915832,-0.308568,-1.17522,0.418315,-1.25294,1.30602,-1.2477,1.9038,-1.23979,1.89193,-1.22581,1.39229,-1.18655,0.676955,-0.997242,0.0413943,-0.698135,-0.51645,-0.308727,-0.920144,0.21575,-1.23548,0.682894,-1.37649,1.02175,-1.38702,1.25934,-1.29567,1.40202,-1.10198,1.45716,-1.04109,1.36631,-1.11729,1.09691,-1.40678,0.67179,-1.54903,0.177544,-1.43935,-0.357719,-1.09571,-0.805969,-0.602645,-1.11361,0.153015,-1.13932,0.906016,-1.023,1.48786,-0.892049,1.97981,-0.853953,2.21446,-0.87301,1.98718,-0.914243,1.46106,-0.876373,0.822918,-0.702427,0.226287,-0.422997,-0.247607,-0.0674604,-0.581063,0.314194,-0.820356,0.647092,-0.889723,0 +0.564595,-1.50848,0.577256,-1.5072,0.582269,-1.50429,0.591847,-1.49753,0.601172,-1.5065,0.549208,-1.55107,0.45427,-1.59425,0.290735,-1.62921,0.0213888,-1.64814,-0.305016,-1.56704,-0.658421,-1.37582,-0.95173,-1.08349,-1.22261,-0.629572,-1.49162,-0.0896178,-1.67405,0.515777,-1.82115,1.02112,-1.98517,1.45063,-2.10854,1.71383,-2.16673,1.64996,-2.13127,1.23977,-1.98504,0.620035,-1.65636,-0.111661,-1.29091,-0.778969,-0.861082,-1.32858,-0.419487,-1.68892,0.0105016,-1.88137,0.445007,-1.9433,0.837073,-1.79542,1.11034,-1.58126,1.3124,-1.35985,1.35822,-1.31583,1.26847,-1.39689,1.07149,-1.56345,0.77575,-1.66568,0.405742,-1.68978,-0.00176261,-1.59612,-0.356971,-1.34637,-0.678516,-0.959481,-0.960463,-0.472269,-1.20998,0.0431932,-1.39798,0.574783,-1.4736,0.958294,-1.48132,1.16837,-1.46306,1.23856,-1.42003,1.19668,0 +0.778505,-1.70604,0.791824,-1.70493,0.797316,-1.7023,0.808974,-1.69584,0.832037,-1.68084,0.825842,-1.67656,0.652756,-1.70966,0.248443,-1.70809,-0.221988,-1.58062,-0.545464,-1.20803,-0.802563,-0.765969,-1.06345,-0.0776639,-1.18214,0.696961,-1.2375,1.2529,-1.25016,1.56169,-1.28957,1.63498,-1.26419,1.25722,-1.13615,0.382102,-0.757827,-0.484588,-0.260429,-1.0491,0.335343,-1.39677,0.881717,-1.48997,1.29382,-1.56776,1.60169,-1.54244,1.71649,-1.49332,1.62863,-1.54203,1.34493,-1.68415,0.858735,-1.77926,0.222242,-1.80685,-0.289768,-1.39166,-0.647415,-0.828445,-0.93698,-0.151031,-1.06083,0.582098,-1.10878,1.05468,-1.09197,1.31608,-1.04522,1.36087,-0.975883,1.09919,-0.845239,0.507197,-0.572211,-0.112272,-0.2185,-0.602145,0.160029,-0.980129,0.526259,-1.20178,0.856978,-1.19015,1.11885,-1.07146,1.28179,-0.974615,0 +-0.00911567,-1.23688,-0.0177345,-1.23536,-0.0238062,-1.23209,-0.0299878,-1.22491,-0.0213001,-1.20768,-0.0449482,-1.26227,-0.172565,-1.38917,-0.439445,-1.47146,-0.803925,-1.39148,-1.17286,-1.1528,-1.4718,-0.738246,-1.7543,-0.353241,-2.00144,0.317935,-2.08114,1.03591,-2.11865,1.52037,-2.18265,1.53507,-2.30687,1.19771,-2.32849,0.645343,-2.22649,0.0410324,-2.01058,-0.549424,-1.66206,-1.00958,-1.21191,-1.44128,-0.656095,-1.83072,-0.132197,-2.01955,0.306987,-1.93355,0.599867,-1.70364,0.755671,-1.6032,0.761283,-1.64969,0.627918,-1.77462,0.311054,-1.82115,-0.157139,-1.77177,-0.674958,-1.53702,-1.0819,-1.14966,-1.33287,-0.684614,-1.47622,-0.329964,-1.5621,0.0267556,-1.61356,0.467624,-1.66023,0.800499,-1.66312,0.767733,-1.56208,0.433056,-1.35162,0.0922279,-1.06808,-0.260889,-0.729079,-0.658822,-0.36662,-0.996131,-0.00477194,-1.15656,0 +0.525684,-0.915844,0.528493,-0.901709,0.543151,-0.897984,0.552351,-0.90265,0.571017,-0.908812,0.528711,-0.960997,0.339338,-0.978907,0.0579377,-0.787942,-0.243158,-0.391884,-0.33637,0.0484126,-0.308393,0.66168,-0.199901,1.25874,0.213713,2.90323,-0.0991847,1.78178,-0.247266,1.20386,-0.237015,0.564233,-0.154926,-0.0967154,0.0794063,-0.779301,0.41225,-1.40852,0.89823,-1.80663,1.4956,-1.71949,1.98117,-1.18189,2.14409,-0.499615,2.05446,-0.292124,1.95501,-0.547643,1.85367,-0.992648,1.74128,-1.42507,1.49752,-1.86021,1.06647,-1.98406,0.54471,-1.7257,0.121439,-1.26863,-0.150858,-0.742845,-0.290245,-0.291428,-0.314213,0.147852,-0.333259,0.72927,-0.231547,1.48464,-0.160039,1.98604,0.117942,2.82722,0.102676,2.78107,-0.0702836,1.95214,-0.108901,1.67401,-0.220214,0.9848,-0.176215,0.429748,-0.0571385,-0.117312,0.175311,-0.634995,0 +1.34251,-1.05164,1.3673,-0.951144,1.33501,-0.910333,1.36172,-0.93986,1.39425,-0.709566,1.27657,-0.220319,0.955695,0.226132,0.4918,0.605391,0.0425044,0.85095,-0.305016,0.821603,-0.504006,0.606234,-0.535162,0.266778,-0.474067,-0.155818,-0.373583,-0.59137,-0.257582,-0.95669,-0.183862,-1.07757,-0.210438,-0.855475,-0.198419,-0.438593,-0.0414601,-0.0226228,0.23441,0.30489,0.670254,0.458676,1.18582,0.4072,1.62257,0.190572,1.87775,-0.259218,1.96583,-0.906306,1.93938,-1.47739,1.95557,-1.81373,2.01719,-1.56867,2.04226,-0.95286,1.94665,-0.341794,1.62562,0.0834375,1.13746,0.425109,0.564824,0.689419,0.0219503,0.697884,-0.293831,0.299826,-0.37512,-0.262064,-0.310089,-0.741687,-0.196925,-0.98615,-0.156142,-0.778929,-0.125853,-0.266002,0.0209374,0.212852,0.33272,0.521023,0.739133,0.637049,1.17192,0.560622,1.53052,0.323287,0 +0.749347,0.66455,0.743061,0.667744,0.728885,0.723047,0.749781,0.696098,0.791916,0.585425,0.815567,0.608272,0.75721,0.251773,0.56588,-0.0387207,0.35995,-0.13517,0.0609533,-0.0344356,-0.339265,0.0656637,-0.768841,0.211662,-0.949478,0.791688,-1.27817,1.33427,-1.47761,1.79562,-1.55539,1.92054,-1.55259,1.6887,-1.49502,1.0015,-1.17573,0.630446,-0.960504,0.320975,-0.382279,-0.0415006,0.250116,-0.160276,0.670321,-0.401007,1.00532,-0.209822,1.23941,0.267588,1.41433,0.60713,1.51629,0.745186,1.48666,0.601408,1.29671,0.239479,0.945238,-0.405427,0.511366,-0.278164,0.0347356,-0.119883,-0.532991,0.0610548,-0.843921,0.430285,-1.01312,0.543147,-1.13134,1.08584,-1.22905,1.47539,-1.262,1.57384,-1.2286,1.47442,-1.14512,1.14553,-0.887931,0.789277,-0.634927,0.613767,-0.366548,0.326069,0.00475786,0.121213,0.295396,0.104979,0 +1.05078,0.257104,1.05521,0.259939,1.08085,0.228088,0.976807,-0.0723031,0.751743,-0.560186,0.436553,-0.785224,-0.0576324,-0.55585,-0.64051,-0.248995,-0.888606,0.107946,-1.07874,0.55928,-1.08057,1.32697,-1.04312,1.49295,-1.00005,1.44139,-0.983439,0.832517,-0.784903,0.391942,-0.641019,0.107403,-0.310222,-0.126474,0.195157,-0.283793,0.686883,-0.309381,0.98272,-0.43662,1.20849,-0.0737723,1.3379,0.131553,1.30519,0.897228,1.33665,0.875956,1.29361,0.528485,1.21073,-0.184696,1.04495,-0.323744,0.772086,-0.548418,0.43055,-0.550054,-0.000487438,-0.596256,-0.435716,-0.40395,-0.816863,-0.119883,-0.934166,0.26027,-1.02725,0.608684,-1.06238,1.20157,-0.987764,1.69099,-0.994646,1.4217,-0.937842,0.787193,-0.766313,0.44771,-0.570646,0.217943,-0.146011,-0.0954548,0.277403,-0.0886258,0.594158,0.0668724,0.791673,0.0207699,0.973024,0.371812,0 +1.06048,0.417597,1.05521,0.420573,1.05148,0.339493,0.986656,-0.245825,0.781846,-0.771858,0.487769,-0.860555,0.0468221,-0.940472,-0.460618,-0.76165,-0.814537,-0.499903,-0.984628,-0.186294,-1.01878,0.148833,-1.05331,0.390758,-1.11133,0.669887,-1.06473,1.36139,-1.09504,1.32775,-1.06629,0.535677,-0.875954,0.111598,-0.453142,-0.33022,0.0898997,-0.580174,0.548223,-0.484945,0.885571,-0.428761,1.11567,-0.387309,1.38455,0.00982533,1.66792,0.316613,1.83572,0.626321,1.83223,0.542489,1.67703,0.194559,1.34594,-0.386456,0.891037,-0.775645,0.4112,-0.596256,-0.0791418,-0.624008,-0.554842,-0.431364,-0.891926,0.0150414,-1.06801,0.326251,-1.34816,0.586122,-1.55255,1.08584,-1.58539,1.27385,-1.50279,1.21384,-1.20083,0.541079,-0.793019,0.271721,-0.498416,-0.0283963,-0.109627,-0.18137,0.331291,-0.127497,0.650235,-0.00434079,0.835778,0.104979,0 +0.895188,0.158323,0.899133,0.185788,0.91467,0.153837,0.868218,0.0268524,0.771829,-0.410751,0.518489,-0.596922,0.203558,-0.466133,-0.23838,-0.433036,-0.68757,-0.256787,-0.88008,0.131261,-1.09085,0.315171,-1.24634,1.01078,-1.33384,1.25188,-1.29851,1.28002,-1.25016,1.01124,-1.03441,0.549986,-0.798305,0.0371681,-0.256294,-0.25282,0.197308,-0.197898,0.64482,-0.194789,0.945368,-0.251232,1.20922,0.293719,1.33919,0.732881,1.34767,0.875956,1.30449,0.821993,1.21073,0.477847,1.00209,-0.210331,0.653028,-0.499864,0.112618,-0.59836,-0.512264,-0.484933,-1.07081,-0.341057,-1.47197,0.0980869,-1.59915,0.85798,-1.67925,1.45605,-1.67331,1.77416,-1.60041,1.69099,-1.46351,1.38136,-1.28977,0.760524,-1.02518,0.234419,-0.579892,-0.0912522,-0.0810921,-0.0954548,0.360355,-0.075344,0.630378,-0.0627259,0.800542,0.0961019,0.990186,0.396074,0 +1.11885,-0.0886306,1.1137,-0.0242806,1.11991,-0.0936161,1.13469,0.0268524,1.1433,-0.186599,1.06143,-0.458842,0.872142,-0.658416,0.544706,-0.735359,0.148356,-0.635,-0.305016,-0.476233,-0.545205,-0.266953,-0.799305,0.101432,-0.959623,0.453301,-1.09521,0.913887,-1.11573,1.08002,-1.14072,0.921149,-1.20874,0.111598,-0.742519,-0.578007,-0.0175709,-0.946553,0.681012,-0.823426,1.12476,-1.3323,1.38464,-0.581908,1.47522,-0.00664487,1.60169,0.34952,1.65141,0.544826,1.65007,0.526363,1.60203,0.37269,1.43253,-0.418848,1.14322,-1.03339,0.722742,-1.23258,0.110263,-1.17429,-0.434725,-1.06987,-0.891926,-0.904432,-1.14954,-0.521049,-1.25947,0.056505,-1.28451,0.673198,-1.32286,1.13947,-1.34536,1.37385,-1.33026,1.36775,-1.32117,1.29339,-1.24034,0.896524,-1.10496,0.295689,-0.756256,-0.0627259,-0.242828,-0.267976,0.175311,-0.295323,0 +1.36192,0.207713,1.3673,0.198119,1.39364,0.166239,1.40121,0.126008,1.38423,0.0126465,1.35856,-0.132406,1.21689,-0.286643,0.89393,-0.656484,0.635054,-0.364864,0.343296,-0.35199,0.0107626,-0.266953,-0.291346,-0.11903,-0.494305,0.182568,-0.658176,0.439258,-0.764217,0.722248,-0.906837,1.10679,-0.986863,1.27207,-0.985631,0.98605,-0.769803,0.53486,-0.369069,-0.0497456,0.167887,-0.21896,0.636091,-0.273827,0.953704,-0.318869,1.24827,-0.407262,1.543,-0.00957936,1.70364,0.332438,1.78414,0.550822,1.80068,0.601408,1.79008,0.432773,1.66847,0.0400005,1.40275,-0.372504,1.01735,-0.571497,0.638718,-0.444695,0.195114,-0.431914,-0.224857,-0.28705,-0.528293,-0.0694978,-0.722665,0.306425,-0.882251,0.573841,-1.01595,0.847739,-1.08025,1.10522,-1.08269,1.23164,-0.966735,1.03781,-0.720036,0.727796,-0.410825,0.146323,0.0809903,-0.0163324,0 +-1.3899,-1.31092,-1.36374,-1.33418,-1.33375,-1.38054,-1.24401,-1.46037,-1.04529,-1.58121,-0.690375,-1.68915,-0.130761,-1.70966,0.55532,-1.57663,1.15354,-1.20241,1.60846,-0.586697,1.88455,0.0795552,1.9539,0.680084,1.97374,0.872908,1.93358,0.981666,1.93434,1.03876,1.91058,1.00682,1.7751,0.543072,1.46859,-0.144379,1.0809,-0.819174,0.548223,-1.40367,-0.0473682,-1.84858,-0.650452,-2.02508,-1.26828,-1.89646,-1.70039,-1.52602,-1.85069,-1.34653,-1.84336,-1.3643,-1.794,-1.47362,-1.63147,-1.60107,-1.21398,-1.88738,-0.601251,-2.09155,0.165967,-2.11762,0.962762,-1.7706,1.52538,-1.13437,1.81484,-0.40218,1.88369,0.213937,1.81702,0.535651,1.76234,0.696101,1.6183,0.573841,1.44323,0.127745,1.19914,-0.44081,0.883394,-0.993564,0.517016,-1.38733,0.0503377,-1.57889,-0.410825,-1.5234,-0.793882,-1.26576,0 +-1.79832,-1.57024,-1.77341,-1.61845,-1.73453,-1.5662,-1.54998,-1.65863,-1.17578,-1.66836,-0.64938,-1.56359,-0.120338,-1.2994,0.290735,-0.827407,0.560985,-0.202748,0.688345,0.365967,0.741744,0.828018,0.775364,1.06589,0.780169,1.08944,0.754593,0.941011,0.662623,0.570828,0.454025,0.050291,0.144542,-0.706744,-0.31423,-1.46065,-0.829495,-2.0139,-1.40704,-2.38694,-1.93718,-2.49394,-2.27623,-2.34934,-2.46995,-2.11007,-2.45136,-2.18408,-2.3169,-2.29221,-2.13272,-2.51159,-1.86899,-2.59111,-1.63147,-2.54038,-1.10435,-2.51578,-0.478901,-2.28238,0.132556,-1.8346,0.602468,-1.21,0.870931,-0.551949,0.979512,0.0140843,0.987081,0.457258,0.888474,0.673198,0.758924,0.602005,0.664364,0.373853,0.52797,-0.0189035,0.263324,-0.588671,-0.108901,-1.074,-0.616535,-1.30781,-1.10974,-1.3586,-1.40117,-1.37274,-1.54011,-1.29002,0 +-1.84693,-1.34799,-1.87093,-1.35889,-1.86164,-1.34344,-1.88554,-1.3488,-1.84844,-1.40687,-1.48945,-1.46315,-0.945604,-1.51738,-0.397098,-1.3663,0.0742872,-0.999733,0.500117,-0.490071,0.793269,0.135001,1.00904,0.666335,1.07349,0.927054,1.09,0.995257,1.09683,1.12128,1.09197,1.13535,1.0652,0.795991,0.87817,-0.00503234,0.51972,-0.866932,-0.0432115,-1.46815,-0.741121,-1.78403,-1.48088,-1.83048,-1.90309,-1.66637,-2.04274,-1.57534,-2.1651,-1.57482,-2.15411,-1.59048,-2.1154,-1.61936,-2.06455,-1.56867,-1.8389,-1.66179,-1.39126,-1.8052,-0.680825,-1.85036,0.0456297,-1.64607,0.62813,-1.11901,0.928585,-0.506214,1.09543,0.142394,1.20437,0.673198,1.21843,0.8573,1.19226,0.960512,1.16586,0.967718,1.13428,0.674999,0.994677,0.132475,0.784311,-0.433153,0.45818,-0.892043,-0.0306245,-1.17185,-0.536595,-1.16871,0 +-1.7497,-1.11341,-1.75389,-1.12411,-1.73453,-1.12069,-1.69801,-1.13812,-1.50707,-1.23259,-1.1821,-1.29996,-0.715793,-1.26096,-0.23838,-1.02456,0.127186,-0.526922,0.447843,0.0898069,0.710872,0.647848,0.907462,1.02453,0.972352,1.17066,0.957843,1.19865,0.910756,1.1488,0.804876,0.764123,0.588238,0.156204,0.195157,-0.438593,-0.304118,-0.946553,-0.83982,-1.24254,-1.39895,-1.17094,-1.94873,-0.987288,-2.16385,-0.910447,-2.16424,-0.81856,-2.15428,-0.841081,-2.11128,-0.847169,-2.08328,-0.987785,-1.9671,-1.08286,-1.63059,-1.25898,-1.14645,-1.45523,-0.569418,-1.5202,0.0237851,-1.24115,0.480343,-0.65927,0.77575,0.0735507,0.996912,0.686295,1.0512,1.01704,0.984023,1.04543,0.90516,0.880505,0.777563,0.501047,0.624667,-0.0509476,0.326978,-0.564633,-0.0543578,-0.936718,-0.502526,-1.0994,-0.897173,-0.920799,-1.1713,-0.562208,0 +-1.61357,-1.2739,-1.62712,-1.2848,-1.63679,-1.26919,-1.57957,-1.3488,-1.42678,-1.43178,-1.1616,-1.51337,-0.788922,-1.50453,-0.397098,-1.3663,0.000218511,-1.14837,0.374649,-0.78001,0.669673,-0.294676,0.897324,0.252969,1.02292,0.696961,1.05947,1.00879,1.07614,1.13507,1.0813,1.14959,1.05413,1.0043,0.912883,0.567942,0.674907,-0.0863469,0.306857,-0.775101,-0.190893,-1.31613,-0.849335,-1.60345,-1.48368,-1.66637,-1.88812,-1.54244,-2.03499,-1.50959,-2.0684,-1.47739,-2.08328,-1.44123,-2.07535,-1.48773,-2.00339,-1.54903,-1.81405,-1.58249,-1.47191,-1.69312,-0.915136,-1.73952,-0.353551,-1.67077,0.134022,-1.33868,0.514093,-0.702149,0.850168,-0.0557134,1.08714,0.440748,1.13671,0.60051,1.11042,0.674422,1.07871,0.809445,0.985423,0.561406,0.738237,0.0174,0.421959,-0.516236,0.0400945,-0.870578,-0.373629,-0.974615,0 +-1.58441,-1.4097,-1.56857,-1.396,-1.56836,-1.40529,-1.55983,-1.44795,-1.31633,-1.5065,-0.915739,-1.57618,-0.381474,-1.47889,0.195537,-1.12973,0.677395,-0.648539,0.960201,0.0345748,1.1433,0.564679,1.28338,0.900546,1.25558,1.14358,1.23229,1.15794,1.23126,1.1626,1.2727,0.949704,1.22049,0.751385,1.06341,0.180808,0.722686,-0.532415,0.186111,-1.19415,-0.513869,-1.5904,-1.22358,-1.63588,-1.77843,-1.53489,-1.98753,-1.49311,-2.0133,-1.46071,-2.00413,-1.50971,-1.98685,-1.47362,-1.89131,-1.55251,-1.65253,-1.66179,-1.17981,-1.83702,-0.49142,-1.86605,0.264019,-1.64607,0.902584,-1.10371,1.31568,-0.342714,1.49945,0.357085,1.52982,0.769451,1.46224,0.830423,1.38675,0.880505,1.33229,0.914381,1.22697,0.674999,1.0596,0.159228,0.756628,-0.472941,0.358515,-0.930951,-0.0660069,-1.18443,-0.502273,-1.21724,0 +0.632664,0.91145,0.548008,0.877812,0.464966,0.82205,0.364821,0.770465,0.129322,0.635236,-0.188376,0.545523,-0.579959,0.585057,-0.947387,0.736848,-1.11081,0.837411,-1.21464,1.02869,-1.32766,1.27153,-1.28699,1.31385,-1.17204,1.18422,-1.03425,1.0495,-0.919286,0.92866,-0.747379,0.864037,-0.487712,0.721626,-0.186868,0.676316,0.125703,0.69417,0.415497,0.804568,0.646323,0.926581,0.858315,1.10448,0.999068,1.11084,1.07155,1.48469,1.02253,1.45789,0.996379,1.20503,0.916403,0.988105,0.717959,0.876709,0.452486,0.738897,0.133022,0.64444,-0.223961,0.680922,-0.543948,0.783279,-0.786379,0.888634,-0.925394,0.965482,-1.04266,1.10139,-1.11223,1.23711,-1.08841,1.26044,-0.993432,1.1605,-0.868024,1.08776,-0.691078,0.930417,-0.414942,0.695465,-0.118871,0.573978,0.19536,0.58521,0.499883,0.761508,0.68137,0.857006,0 +0.0394979,1.24481,0.0310286,1.24851,0.0348202,1.25516,0.039105,1.26619,0.0590457,1.29516,0.036988,1.2862,-0.0367307,1.27732,-0.132568,1.23633,-0.274886,1.16164,-0.399076,1.07009,-0.514279,1.02208,-0.616469,0.955661,-0.716872,0.940562,-0.983439,1.0495,-1.33286,1.20386,-1.37466,1.17815,-1.19761,1.0043,-0.97408,0.846636,-0.745914,0.85348,-0.453559,0.981851,-0.0832339,0.991125,0.238446,1.12073,0.500233,1.25872,0.673996,1.567,0.686424,1.52312,0.664189,1.35044,0.584305,1.23102,0.436461,1.07106,0.222242,0.932261,-0.0894746,0.851212,-0.446834,0.885291,-0.740436,0.861183,-0.955232,0.827326,-1.12916,0.965482,-1.27918,1.15865,-1.27496,1.4434,-1.1447,1.30073,-1.05826,1.1605,-0.905019,0.967718,-0.728156,0.94389,-0.609699,0.950148,-0.432192,0.958294,-0.24875,0.935097,-0.0660069,1.00003,0.10671,0.954055,0 +-0.349461,0.627481,-0.349344,0.618309,-0.346403,0.636447,-0.365552,0.621732,-0.452977,0.572945,-0.608438,0.558051,-0.820248,0.559415,-1.11672,0.605391,-1.41764,0.715853,-1.65381,0.642128,-1.78063,0.744849,-2.03877,1.17606,-1.96101,1.13007,-1.79655,0.859641,-1.69474,0.653404,-1.53412,0.535677,-1.27526,0.245481,-0.916205,-0.113406,-0.49517,-0.404967,-0.0914474,-0.549424,0.311474,-0.59005,0.706296,-0.354875,0.93108,0.157702,0.950112,0.267289,0.892427,0.120869,0.760644,-0.184696,0.520001,-0.437088,0.198288,-0.516026,-0.172438,-0.453373,-0.512264,-0.262219,-0.814527,0.0205444,-1.01341,0.362812,-1.16638,0.720072,-1.34308,0.980317,-1.38753,1.02985,-1.27496,0.962017,-1.12593,0.830423,-0.937842,0.60051,-0.747863,0.261088,-0.524275,0.0163042,-0.266596,-0.162455,0.0470334,-0.260889,0.340381,-0.231176,0.570648,0.00824167,0.715693,0.481019,0 +0.282566,0.516378,0.29441,0.507056,0.308545,0.500345,0.246383,0.435842,-0.0514038,0.286556,-0.403518,0.219087,-0.694891,0.251773,-0.958001,0.39506,-1.18488,0.594295,-1.32968,0.821603,-1.44087,0.980465,-1.46983,1.03833,-1.4856,1.13007,-1.41033,1.0495,-1.33286,0.997444,-1.24708,0.864037,-1.16435,0.691867,-1.03196,0.475022,-0.901101,0.311894,-0.731181,0.143692,-0.454072,-0.0415006,-0.100726,-0.192709,0.239534,-0.269529,0.486265,-0.226311,0.762323,0.071986,0.964246,0.494042,1.09851,0.648004,1.07525,0.617639,1.07741,0.626136,0.934136,0.358094,0.63395,0.0834375,0.296757,-0.0265056,-0.00520374,-0.0309058,-0.314213,0.103284,-0.559896,0.299826,-0.738876,0.535651,-0.872715,0.790138,-0.965613,1.02721,-1.03445,1.22104,-1.03393,1.19931,-0.971405,1.09758,-0.856148,0.971575,-0.720036,0.844406,-0.534618,0.635954,-0.287823,0.420337,0 +0.107567,0.899129,0.10909,0.914861,0.113056,0.896302,0.118097,0.906777,0.129322,0.921626,-0.00400662,0.784046,-0.245694,0.482546,-0.62995,0.263602,-1.06847,0.175524,-1.48655,0.200271,-1.8321,0.259725,-2.13021,0.61122,-2.42629,1.19773,-2.53848,1.37493,-2.5529,1.35528,-2.58666,1.17815,-2.53981,0.587678,-2.31694,-0.175353,-1.98766,-0.723588,-1.57603,-0.710622,-1.06404,-0.719137,-0.428227,-0.581908,0.0468219,-0.220261,0.431054,0.184987,0.697299,0.968712,0.749896,1.07575,0.712857,1.0205,0.642169,0.779531,0.507297,0.158876,0.210907,-0.182713,-0.268547,-0.561115,-0.718591,-0.633793,-1.07137,-0.490642,-1.39401,-0.119683,-1.72257,0.299826,-2.03118,0.59067,-2.28872,1.04543,-2.33631,1.20053,-2.301,1.10106,-2.21068,0.876638,-2.01935,0.561406,-1.74084,-0.0621194,-1.33634,-0.568075,-0.879482,-0.644582,-0.373629,-0.501526,0 +0.263161,0.787974,0.265162,0.791275,0.269477,0.809701,0.266131,0.820043,0.259806,0.784617,0.190638,0.721297,0.0468221,0.508132,-0.217207,0.289894,-0.571161,0.175524,-0.953274,0.200271,-1.28646,0.370618,-1.56127,0.556104,-1.84973,0.805195,-2.24373,1.29356,-2.36679,1.72684,-2.34213,1.60642,-2.29577,1.27207,-2.13171,0.738263,-1.79661,0.216308,-1.38296,-0.243183,-0.992304,-0.59005,-0.428227,-0.549475,0.126122,-0.302399,0.552496,0.102756,0.816528,0.968712,0.889232,1.17271,0.841409,1.10152,0.717959,0.957725,0.605981,0.658364,0.42236,0.326278,0.132556,0.051991,-0.11812,0.0669388,-0.364138,0.0917083,-0.629994,0.058652,-0.855455,0.128048,-1.06433,0.288125,-1.23846,0.521376,-1.37313,0.853836,-1.51519,1.14109,-1.58062,1.32028,-1.53712,1.27183,-1.40908,1.05109,-1.17319,0.662969,-0.93251,0.246766,-0.6824,0.0321922,0 +0.739594,-0.792368,0.704081,-0.778124,0.728885,-0.774231,0.779377,-0.766338,0.822019,-0.746952,0.774626,-0.735003,0.485596,-0.773831,0.110844,-0.801116,-0.21143,-0.837675,-0.461837,-0.821463,-0.67902,-0.7798,-0.829769,-0.72524,-0.919147,-0.629572,-0.902097,-0.577779,-0.826223,-0.598918,-0.641019,-0.663541,-0.332416,-0.781109,0.0562442,-0.856701,0.483917,-0.914691,0.886186,-0.936229,1.25635,-0.945039,1.56012,-0.922422,1.7586,-0.943316,1.84463,-0.933769,1.749,-0.955259,1.50004,-0.992648,1.13064,-1.03634,0.685493,-1.06663,0.211302,-1.03339,-0.222984,-0.978051,-0.580535,-0.907027,-0.827814,-0.85183,-0.965819,-0.75123,-1.01708,-0.65488,-0.993403,-0.587631,-0.872896,-0.578393,-0.675784,-0.553554,-0.40995,-0.532835,-0.109923,-0.525606,0.198461,-0.508004,0.484625,-0.484197,0.765872,-0.433153,1.01104,-0.360774,1.18957,-0.305615,1.30751,-0.258955,1 +1.40083,-0.607179,1.40633,-0.592773,1.423,-0.600977,1.45056,-0.605237,1.48461,-0.585091,1.53271,-0.559284,1.51983,-0.543057,1.37019,-0.564493,1.11119,-0.607981,0.813813,-0.641929,0.504986,-0.613462,0.196287,-0.559894,-0.0998464,-0.494205,-0.414254,-0.442163,-0.660837,-0.406239,-0.81114,-0.420848,-0.809373,-0.409153,-0.615217,-0.469567,-0.268315,-0.500553,0.162025,-0.53327,0.586526,-0.557778,0.975323,-0.59809,1.30519,-0.647492,1.60169,-0.637609,1.85742,-0.596526,2.03583,-0.556351,2.09481,-0.53427,2.00639,-0.532257,1.76814,-0.517827,1.45707,-0.580382,1.07964,-0.608319,0.667946,-0.602645,0.279783,-0.551949,-0.0697401,-0.491316,-0.382519,-0.430137,-0.624008,-0.372102,-0.788309,-0.311727,-0.83595,-0.292814,-0.757088,-0.205583,-0.579892,-0.171919,-0.322214,-0.149078,0.000959476,-0.141639,0.304114,-0.127497,0.570648,-0.129894,0.810058,-0.125539,1 +1.35222,-0.730656,1.3673,-0.703973,1.36432,-0.712328,1.35187,-0.704339,1.37416,-0.672235,1.40978,-0.659671,1.35267,-0.671265,1.15852,-0.722241,0.899601,-0.756616,0.698778,-0.793847,0.422588,-0.793692,0.104843,-0.752798,-0.211077,-0.656645,-0.495544,-0.564247,-0.712527,-0.502549,-0.864293,-0.477959,-0.887022,-0.468671,-0.730968,-0.485087,-0.447391,-0.532415,-0.0311058,-0.581664,0.383205,-0.654594,0.753099,-0.711641,1.06712,-0.7461,1.33665,-0.752747,1.58639,-0.743245,1.80009,-0.70176,1.93413,-0.663846,1.97387,-0.645595,1.82295,-0.646736,1.54606,-0.644014,1.16875,-0.655455,0.755324,-0.680549,0.385329,-0.674563,0.0728778,-0.65488,-0.205143,-0.587631,-0.44213,-0.523374,-0.628902,-0.419173,-0.780408,-0.386127,-0.849527,-0.338926,-0.811558,-0.279476,-0.674618,-0.229456,-0.459827,-0.260889,-0.221526,-0.283015,0.0577857,-0.305615,0.329719,-0.30748,1 +0.156181,-0.0639353,0.14807,-0.0613829,0.0739381,-0.0688655,-0.0595844,-0.0598819,-0.252165,-0.037165,-0.454735,-0.00685311,-0.632186,0.0338482,-0.809842,0.066445,-0.973233,0.107946,-1.07874,0.103645,-1.16292,0.0933868,-1.2768,0.115181,-1.39456,0.196134,-1.46114,0.317232,-1.44661,0.364416,-1.37466,0.378651,-1.27526,0.379429,-1.13615,0.413075,-0.913076,0.502998,-0.586348,0.433778,-0.190893,0.313488,0.203374,0.19642,0.556969,0.108434,0.78442,0.0204533,0.892427,-0.0421914,0.996379,-0.0554126,1.07708,-0.016037,0.999456,-0.0302092,0.682729,-0.0344877,0.25543,0.024058,-0.134846,0.114884,-0.456569,0.129235,-0.701898,0.0917083,-0.935611,0.118118,-1.12152,0.128048,-1.15049,0.136793,-1.07905,0.158577,-0.956372,0.213839,-0.757088,0.287756,-0.422382,0.258248,-0.0532833,0.226287,0.341916,0.202945,0.630378,0.157619,0.809365,0.121213,0.904379,0.129241,1 +1.29385,0.0348461,1.29902,0.0374853,1.30565,0.0424856,1.31237,0.0516413,1.35408,0.074884,1.3995,0.118645,1.4676,0.162,1.5183,0.197902,1.4921,0.229562,1.31568,0.186493,1.00943,0.107278,0.683972,0.0738738,0.405948,0.101349,0.11426,0.181616,-0.216209,0.213055,-0.534713,0.292984,-0.731782,0.498401,-0.75413,0.598916,-0.626529,0.518963,-0.465603,0.417693,-0.214824,0.34576,0.144839,0.19642,0.534286,0.0919633,0.883823,0.0204533,1.1852,0.0230327,1.48935,0.122387,1.81627,0.307902,2.04966,0.471838,2.19575,0.545603,2.1914,0.564934,2.0156,0.507932,1.68335,0.300583,1.31429,0.107002,0.918368,0.0289188,0.54369,0.0707889,0.20882,0.136793,-0.13192,0.239206,-0.400661,0.347184,-0.562939,0.487742,-0.681833,0.701889,-0.646809,0.789277,-0.552023,0.706511,-0.384681,0.55929,-0.172108,0.384848,0.123871,0.201976,1 +0.788208,-0.94054,0.791824,-0.951144,0.797316,-0.947486,0.808974,-0.93986,0.842106,-0.921292,0.877059,-0.910776,0.913892,-0.863548,0.925717,-0.840525,0.867818,-0.851155,0.751052,-0.821463,0.607929,-0.793692,0.46043,-0.766607,0.314903,-0.724299,0.154931,-0.686273,-0.0404533,-0.70902,-0.258287,-0.706405,-0.487712,-0.766262,-0.684644,-0.841248,-0.829495,-0.819174,-0.863907,-0.807341,-0.812852,-0.832123,-0.673853,-0.825122,-0.474695,-0.828309,-0.253639,-0.851467,-0.0074818,-0.873694,0.235544,-0.911811,0.477132,-0.922997,0.728818,-0.920896,0.978781,-0.904554,1.23452,-0.850786,1.44733,-0.781241,1.57418,-0.742845,1.6204,-0.705217,1.63146,-0.639982,1.59796,-0.601914,1.52027,-0.537099,1.406,-0.499802,1.24785,-0.492802,1.0457,-0.458906,0.828501,-0.427337,0.605162,-0.417139,0.397233,-0.393422,0.204403,-0.360774,0.0224033,-0.343308,-0.13346,-0.331742,1 +0.982712,0.0101507,1.02596,-0.0119488,1.03197,-0.00701564,1.01625,0.0144847,1.03285,0.0250725,0.784848,0.0307855,0.49602,0.00820672,0.16375,0.105911,-0.21143,0.216024,-0.545464,0.227887,-0.823162,0.176556,-1.08377,0.211662,-1.27318,0.209642,-1.29851,0.249395,-1.19847,0.254314,-0.874956,0.292984,-0.454451,0.424036,-0.0132421,0.536969,0.460028,0.630446,0.837888,0.514412,1.14869,0.442506,1.43144,0.374767,1.55458,0.322049,1.5575,0.283707,1.4888,0.251317,1.40358,0.235475,1.20563,0.243114,0.956188,0.261323,0.67179,0.320012,0.433462,0.517175,0.0768524,0.523689,-0.270975,0.456257,-0.543578,0.336936,-0.752231,0.222217,-0.963858,0.213937,-1.23665,0.150578,-1.42598,0.185453,-1.4009,0.240508,-1.18233,0.234419,-0.848588,0.285137,-0.507717,0.400535,-0.211019,0.521023,0.0775615,0.55929,0.367267,0.560622,0.664253,0.505281,1 +1.16746,0.368206,1.18198,0.358807,1.17859,0.376592,1.18409,0.386264,1.1734,0.26165,1.1127,-0.245376,0.861665,-0.209718,0.576494,-0.143886,0.285881,-0.0946704,-0.0226737,0.0760287,-0.370138,0.135001,-0.677397,0.184105,-1.01019,0.155495,-1.32899,0.195148,-1.37423,0.18553,-1.24708,0.207317,-0.898147,0.245481,-0.487856,0.382102,-0.0892385,0.423377,0.294751,0.320975,0.706181,0.281217,1.09227,0.261286,1.36187,0.25631,1.34767,0.2508,1.337,0.186093,1.14641,0.170834,0.830664,0.162165,0.458124,0.196538,0.134554,0.207252,-0.156258,0.167265,-0.469127,0.177777,-0.729542,0.175991,-0.986939,0.183669,-1.16987,0.25195,-1.18061,0.285542,-1.06433,0.260616,-0.853953,0.292958,-0.530323,0.360547,-0.211634,0.434405,0.152137,0.47336,0.456816,0.507782,0.738237,0.547472,0.929466,0.58521,1.12767,0.610844,1.16171,0.602278,1 +1.35222,0.29412,1.35757,0.296988,1.35457,0.30234,1.34197,0.311898,1.38423,-0.111882,1.18441,-0.0821846,0.987021,-0.145642,0.618786,-0.0650122,0.296493,-0.027151,-0.043594,0.0484126,-0.328992,0.0795552,-0.535162,0.101432,-0.706726,0.114914,-0.841143,0.154492,-0.784903,0.158004,-0.534713,0.178761,-0.188245,0.200875,0.206708,0.258208,0.603301,0.232205,1.06721,0.175931,1.39987,0.184402,1.63027,0.147805,1.73598,0.0755641,1.679,0.05336,1.59721,-0.00957936,1.43572,-0.103859,1.1092,-0.113219,0.685493,-0.0302092,0.320926,0.0783425,0.0551942,0.103633,-0.201725,0.130641,-0.369248,0.207139,-0.501338,0.26027,-0.670757,0.266784,-0.816078,0.228283,-0.959059,0.191812,-0.975883,0.239206,-0.863769,0.240508,-0.627655,0.274393,-0.33898,0.352389,-0.0903457,0.400535,0.176059,0.428222,0.394735,0.44268,0.676749,0.359737,0.955863,0.311183,1 +1.18692,-0.421991,1.18198,-0.407368,1.19815,-0.402972,1.16434,-0.394505,0.992676,-0.373366,0.774626,-0.270486,0.537823,-0.0174348,0.280176,0.0533277,0.0425044,0.107946,-0.210902,0.117423,-0.411336,-0.0175056,-0.596142,-0.0501062,-0.828102,-0.101672,-1.01392,-0.0896178,-0.981346,-0.0897253,-0.715443,-0.0496232,-0.288086,0.0223207,0.148833,0.0104209,0.591326,-0.0226228,0.98272,-0.0497456,1.36401,-0.0898733,1.61859,-0.160276,1.66793,-0.187391,1.62379,-0.242729,1.4671,-0.237793,1.16785,-0.184696,0.819975,-0.161775,0.588041,-0.127386,0.40867,-0.0989422,0.233169,-0.023632,0.0434415,0.051991,-0.139964,0.0669388,-0.321898,0.0304013,-0.487376,0.0140843,-0.609156,0.0135296,-0.748427,-0.0694978,-0.797714,-0.00262183,-0.697046,0.053825,-0.424281,0.0877132,-0.144392,0.177581,0.104364,0.253099,0.360355,0.282465,0.639469,0.261242,0.915466,0.209073,1.11027,0.201976,1 +1.34251,-0.175038,1.33805,-0.147866,1.36432,-0.155519,1.37162,-0.14667,1.43442,-0.149268,1.46099,-0.107295,1.51983,-0.0687177,1.57126,-0.0387207,1.61912,-0.027151,1.49342,-0.0482734,1.22564,-0.0313372,0.927788,0.0187584,0.628462,0.0878411,0.307369,0.154492,-0.00945014,0.226788,-0.343375,0.235873,-0.720657,0.27524,-1.12454,0.320155,-1.46228,0.343756,-1.52779,0.337129,-1.32715,0.329589,-0.93115,0.309971,-0.52006,0.30565,-0.0880045,0.300124,0.328625,0.3002,0.717763,0.267796,1.00209,0.259276,1.28095,0.261323,1.48308,0.287785,1.5238,0.262714,1.42504,0.287874,1.25752,0.222679,0.82869,0.229616,0.388659,0.237051,0.0904171,0.256912,-0.135783,0.315634,-0.422614,0.279549,-0.604444,0.293846,-0.81258,0.234419,-0.941236,0.231359,-0.943549,0.293288,-0.754757,0.388491,-0.439082,0.39084,-0.0925209,0.422541,0.269676,0.383969,1 +1.07994,0.24473,1.07472,0.247554,1.0906,0.265241,1.10509,0.26232,1.08304,0.27413,1.26635,-0.245376,1.06015,-0.209718,0.766945,-0.0913036,0.444631,0.0268878,0.0923067,0.0760287,-0.102454,0.024109,-0.433581,0.0325075,-0.757295,0.0201287,-1.05459,0.0866546,-1.37423,0.0754278,-1.28957,0.150205,-0.931408,0.126445,-0.53418,0.0723678,-0.125041,0.0251358,0.282708,0.0469731,0.646323,0.0391439,0.998664,0.0180718,1.27114,-0.0395143,1.436,-0.176916,1.45623,-0.270405,1.3607,-0.216947,1.1092,-0.161775,0.837073,-0.127386,0.529234,-0.0505665,0.233169,-0.0395745,-0.0345556,-0.0265915,-0.412937,0.0513984,-0.796912,0.122362,-1.12916,0.147852,-1.32844,0.156678,-1.39938,0.123068,-1.18217,0.172044,-0.845239,0.213839,-0.516719,0.234419,-0.209255,0.244832,0.076555,0.279911,0.360355,0.335478,0.612292,0.364921,0.862438,0.347209,1.05023,0.34755,1 +-1.68163,-0.557789,-1.6661,-0.568056,-1.65635,-0.563878,-1.63882,-0.543238,-1.46695,-0.435657,-1.07966,-0.308179,-0.611285,-0.299491,-0.153687,-0.301578,0.275323,-0.324306,0.636018,-0.310596,0.906485,-0.266953,1.08016,-0.229261,1.18477,-0.223472,1.21196,-0.170988,1.09683,-0.186035,0.868692,-0.206711,0.566045,-0.245511,0.125731,-0.221846,-0.411588,-0.166036,-0.924249,-0.13031,-1.36308,-0.170587,-1.69143,-0.322442,-1.8691,-0.433876,-1.97651,-0.440169,-1.90489,-0.612867,-1.88624,-0.653244,-1.87973,-0.663846,-1.79386,-0.58081,-1.53191,-0.453373,-1.0352,-0.405427,-0.457952,-0.466843,0.0347356,-0.509201,0.374797,-0.567309,0.612803,-0.580515,0.799872,-0.544655,0.92678,-0.523374,0.974618,-0.459517,0.988521,-0.386127,0.934766,-0.325563,0.763638,-0.266002,0.50318,-0.229456,0.15762,-0.194594,-0.221526,-0.127497,-0.578823,-0.0796728,-0.853925,-0.0891193,1 +-1.66218,-0.644196,-1.65637,-0.654539,-1.65635,-0.600977,-1.58947,-0.530871,-1.3565,-0.410751,-0.926014,-0.3584,-0.444179,-0.312284,0.0367643,-0.26217,0.455189,-0.216228,0.740619,-0.1449,0.906485,-0.128338,1.00904,-0.132779,1.04316,-0.128745,1.00866,-0.116741,0.869382,-0.144776,0.656027,-0.178155,0.355293,-0.20084,-0.0942795,-0.175353,-0.650419,-0.181933,-1.23806,-0.194789,-1.65013,-0.267403,-1.82011,-0.354875,-1.85779,-0.433876,-1.91022,-0.456658,-1.9591,-0.449807,-1.88624,-0.475514,-1.72975,-0.485714,-1.47989,-0.337902,-1.11529,-0.276157,-0.690296,-0.278162,-0.246254,-0.278164,0.198485,-0.260083,0.564824,-0.214827,0.857276,-0.149416,1.06589,-0.115273,1.20437,-0.0832228,1.26531,-0.0563742,1.27562,-0.0261243,1.23058,0.00776507,1.10649,0.0431932,0.87414,0.0520391,0.553894,0.0969194,0.168183,0.118712,-0.225136,0.108684,-0.579477,0.104979,1 +-2.1095,-0.409617,-1.96846,-0.407368,-1.73453,-0.378221,-1.46114,-0.258193,-1.06538,-0.223985,-0.628883,-0.207737,-0.214314,-0.158491,0.142576,-0.104421,0.434018,-0.0406315,0.656938,-0.00681952,0.813815,-0.00361408,0.887135,0.0187584,0.840883,0.0336946,0.70378,0.0459989,0.455811,0.0341098,0.0819014,-0.0210675,-0.432257,-0.0371974,-0.985631,-0.0204856,-1.51006,-0.0226228,-1.8778,-0.114225,-2.21229,-0.106044,-2.39317,-0.0954095,-2.41326,-0.138052,-2.31885,-0.176916,-2.27351,-0.237793,-2.25056,-0.152375,-1.98685,-0.242725,-1.65314,-0.224494,-1.30172,-0.0989422,-0.846067,-0.0554482,-0.402248,-0.0423487,-0.00895351,-0.0108979,0.279783,0.0150414,0.500731,0.0438175,0.661924,0.056505,0.764005,0.054265,0.787092,0.0645396,0.729196,0.080494,0.583414,0.0877132,0.337432,0.0834978,0.0209374,0.132475,-0.330849,0.189663,-0.710945,0.22239,-1.03861,0.158906,-1.30854,0.129241,1 +-2.03168,-1.21219,-2.03674,-1.18593,-2.04738,-1.17019,-2.07307,-1.15054,-2.10946,-1.13296,-2.1246,-1.08655,-2.08429,-1.03019,-1.94215,-0.748533,-1.49171,-0.567481,-1.00555,-0.434839,-0.473134,-0.377846,-0.00687583,-0.325683,0.405948,-0.291185,0.713922,-0.238767,0.952075,-0.21356,1.14512,-0.235266,1.25375,-0.260358,1.20232,-0.268273,0.937627,-0.293485,0.512031,-0.372141,-0.0952303,-0.39649,-0.744058,-0.40356,-1.29091,-0.450346,-1.62308,-0.555378,-1.82899,-0.645409,-2.02552,-0.620993,-2.14753,-0.663846,-2.18361,-0.661756,-2.2117,-0.630588,-2.19232,-0.612198,-1.9956,-0.545426,-1.59203,-0.540349,-1.15579,-0.322081,-0.609613,-0.312981,-0.175597,-0.31568,0.132258,-0.330808,0.346348,-0.325136,0.516172,-0.346152,0.657403,-0.312258,0.782177,-0.279476,0.883394,-0.242891,0.913337,-0.194594,0.829801,-0.166349,0.605984,-0.180061,0.278279,-0.210431,1 +-1.57471,-0.718282,-1.50029,-0.72869,-1.36306,-0.650478,-1.14527,-0.592816,-0.80436,-0.5228,-0.383021,-0.458842,0.0363983,-0.402057,0.354255,-0.32787,0.613884,-0.297287,0.834733,-0.255364,0.999155,-0.225399,1.07002,-0.201703,1.01283,-0.196399,0.856218,-0.211644,0.600564,-0.254878,0.294567,-0.292378,-0.0884029,-0.305029,-0.545731,-0.299246,-0.984682,-0.293485,-1.32255,-0.307662,-1.61426,-0.380319,-1.78497,-0.468427,-1.89178,-0.565354,-1.97651,-0.62112,-1.9374,-0.580255,-1.7469,-0.620993,-1.57976,-0.501876,-1.1984,-0.451241,-0.742549,-0.437294,-0.289768,-0.405427,0.132556,-0.419639,0.504196,-0.415824,0.797037,-0.368094,1.02028,-0.268349,1.0856,-0.244075,1.0608,-0.234554,0.927737,-0.231098,0.692183,-0.239476,0.407761,-0.218947,0.0131182,-0.171919,-0.470607,-0.135644,-0.985174,-0.115132,-1.28194,-0.166349,-1.40999,-0.142422,-1.45435,-0.137644,1 +-2.12896,-0.977556,-2.10502,-0.963475,-2.04738,-0.984585,-1.89544,-0.977017,-1.58742,-0.69714,-1.03867,-0.58434,-0.527732,-0.581492,-0.10078,-0.564493,0.211812,-0.540461,0.479197,-0.490071,0.6594,-0.474847,0.816017,-0.435914,0.931928,-0.399419,1.00866,-0.360851,0.972762,-0.36498,0.772996,-0.420848,0.44401,-0.483519,-0.0132421,-0.547034,-0.590665,-0.51645,-1.16568,-0.50103,-1.6262,-0.541677,-1.92532,-0.857555,-2.12986,-0.844708,-2.27466,-0.785653,-2.32774,-0.726974,-2.272,-0.750207,-2.14753,-0.712402,-1.86965,-0.872342,-1.57578,-0.59836,-1.15761,-0.580382,-0.647415,-0.529668,-0.161809,-0.509201,0.26925,-0.475349,0.592422,-0.387282,0.858964,-0.31568,1.04165,-0.275789,1.10591,-0.244507,1.08112,-0.212807,0.971713,-0.178915,0.754393,-0.185393,0.475324,-0.17589,0.129985,-0.141639,-0.303103,-0.0886456,-0.764512,-0.0545621,-1.17986,-0.0891193,1 +-0.125798,0.33119,-0.124993,0.33409,-0.12155,0.351842,-0.138526,0.361475,-0.201974,0.373753,-0.270365,0.419971,-0.287443,0.495339,-0.312459,0.5791,-0.401853,0.648276,-0.493191,0.724917,-0.534879,0.786404,-0.565626,0.790315,-0.635919,0.791688,-0.708988,0.76468,-0.815906,0.763506,-0.896228,0.77837,-0.909215,0.810839,-0.881432,0.81573,-0.781717,0.837583,-0.694926,0.868978,-0.5856,0.813665,-0.428227,0.747784,-0.247931,0.683613,-0.0327929,0.64568,0.166009,0.593709,0.321251,0.623326,0.380759,0.648004,0.44732,0.714746,0.397674,0.706739,0.233169,0.708073,-0.0122625,0.680922,-0.29282,0.674294,-0.522458,0.704712,-0.650376,0.653316,-0.747104,0.629036,-0.825039,0.56316,-0.891477,0.588596,-0.956372,0.613873,-0.988232,0.647753,-0.93199,0.64811,-0.748839,0.601594,-0.52434,0.547472,-0.321237,0.58521,-0.0660069,0.610844,0.141033,0.66296,1 +-0.155007,-0.113326,-0.154291,-0.110817,-0.150914,-0.106018,-0.148425,-0.0846708,-0.161853,-0.0620707,-0.239593,-0.0319636,-0.350148,0.0338482,-0.450004,0.132202,-0.592331,0.202543,-0.733693,0.269341,-0.843761,0.356726,-0.94154,0.459622,-1.04052,0.534521,-1.15621,0.601998,-1.28117,0.625879,-1.36399,0.692764,-1.41949,0.691867,-1.44869,0.707289,-1.43845,0.710135,-1.35881,0.707849,-1.26736,0.603864,-1.10663,0.5045,-0.860119,0.404187,-0.56287,0.316613,-0.278508,0.251317,-0.0323795,0.21935,0.198592,0.259276,0.403996,0.390892,0.573106,0.529455,0.589232,0.533118,0.555953,0.523689,0.482351,0.487405,0.322023,0.444191,0.0627133,0.430285,-0.215025,0.442974,-0.432529,0.466907,-0.61014,0.507967,-0.752636,0.573841,-0.886521,0.607722,-1.0061,0.634695,-1.1105,0.668653,-1.13259,0.706511,-1.09161,0.662969,-1.02097,0.673593,-0.905409,0.62654,1 +0.107567,0.170644,0.10909,0.173402,0.113056,0.178587,0.108198,0.187953,0.0891494,0.211839,0.0164907,0.231669,-0.151663,0.290208,-0.386539,0.316185,-0.602889,0.351121,-0.806887,0.407362,-0.987903,0.439895,-1.11424,0.445873,-1.1619,0.439735,-1.13588,0.466381,-1.08473,0.4332,-1.01314,0.435763,-0.875954,0.468642,-0.638319,0.521449,-0.387699,0.53486,-0.115596,0.578891,0.120087,0.620035,0.296919,0.650485,0.409563,0.601404,0.431054,0.596284,0.382886,0.561097,0.203411,0.526363,-0.0156431,0.502266,-0.321382,0.471838,-0.654861,0.432773,-1.00184,0.405853,-1.28251,0.24067,-1.48287,0.284976,-1.57803,0.336936,-1.51625,0.385717,-1.31856,0.442974,-1.07393,0.480632,-0.788309,0.575129,-0.474781,0.613873,-0.193137,0.661059,0.0779809,0.728778,0.317677,0.816089,0.489381,0.86555,0.557891,0.896246,0.544088,0.899589,0.501287,0.90553,1 +-0.252234,0.541074,-0.251818,0.544158,-0.248658,0.549847,-0.247115,0.572154,-0.312424,0.572945,-0.403518,0.595744,-0.569535,0.610698,-0.756936,0.657974,-0.962675,0.675295,-1.16237,0.669685,-1.35853,0.633957,-1.55113,0.680084,-1.66764,0.723976,-1.7152,0.791803,-1.64305,0.846083,-1.49157,0.935457,-1.26419,1.0043,-1.02034,1.048,-0.745914,1.04465,-0.441516,1.04633,-0.119161,1.0395,0.0746951,1.02343,0.28484,1.04511,0.464169,1.08988,0.534627,1.09916,0.503468,1.05962,0.434318,1.0205,0.274078,0.973886,0.0139341,0.932261,-0.334232,0.883028,-0.680825,0.869534,-1.00246,0.861183,-1.26139,0.84262,-1.46532,0.92085,-1.64372,1.04413,-1.63871,1.09956,-1.56668,1.08578,-1.47502,1.10722,-1.31177,1.14109,-1.08025,1.09175,-0.823012,1.0574,-0.570462,1.03781,-0.312194,1.02584,-0.101344,1.00003,0.0981516,1.00258,1 +0.0200424,0.541074,0.0212962,0.544158,0.025066,0.537444,0.0194079,0.522576,-0.0815075,0.498228,-0.26009,0.48272,-0.485928,0.495339,-0.725149,0.500225,-0.973233,0.540256,-1.1415,0.545442,-1.30706,0.606234,-1.4089,0.556104,-1.45522,0.602175,-1.41033,0.615531,-1.31217,0.653404,-1.14072,0.692764,-0.931408,0.751385,-0.707806,0.784756,-0.47128,0.789756,-0.175938,0.788414,0.0842216,0.797495,0.296919,0.796399,0.488922,0.79862,0.607765,0.810142,0.599707,0.77304,0.589175,0.75254,0.487877,0.745186,0.274078,0.714746,-0.0189417,0.674512,-0.345392,0.64444,-0.66965,0.665165,-0.93698,0.658753,-1.11361,0.674059,-1.22085,0.638417,-1.29885,0.686295,-1.28451,0.700707,-1.21029,0.722977,-1.13234,0.787193,-0.988232,0.874407,-0.783726,0.876638,-0.563335,0.869713,-0.31241,0.878831,-0.0674604,0.883314,0.155064,0.912118,0.312557,0.929793,1 +0.175636,0.504004,0.177368,0.507056,0.181487,0.525096,0.167442,0.534998,0.0590457,0.523134,-0.167879,0.48272,-0.444179,0.444056,-0.725149,0.500225,-0.973233,0.567276,-1.15194,0.62829,-1.28646,0.689403,-1.38857,0.721391,-1.44513,0.751049,-1.47128,0.791803,-1.45692,0.804765,-1.39587,0.84979,-1.242,0.929875,-1.02034,0.939557,-0.734,0.869377,-0.369069,0.804568,-0.0115026,0.749122,0.273518,0.715351,0.488922,0.716482,0.6519,0.711493,0.74063,0.658933,0.771336,0.639451,0.766416,0.664236,0.67469,0.666193,0.463482,0.626136,0.155283,0.548992,-0.19055,0.492243,-0.500258,0.503013,-0.765259,0.582098,-0.966157,0.638417,-1.12152,0.686295,-1.2462,0.700707,-1.2947,0.763262,-1.25271,0.760524,-1.13611,0.82107,-0.894912,0.822918,-0.619001,0.856336,-0.31241,0.839043,0.00502711,0.818487,0.28768,0.799147,0.484126,0.772114,1 +1.20638,0.269425,1.20149,0.284656,1.2079,0.30234,1.21368,0.311898,1.24368,0.249224,1.30734,0.055896,1.38399,-0.158491,1.45483,-0.341044,1.53444,-0.553942,1.59797,-0.78001,1.66839,-0.95997,1.72022,-1.11105,1.78156,-1.23863,1.82176,-1.2694,1.87228,-1.19063,1.91058,-0.991901,1.95259,-0.721591,1.98953,-0.454113,1.98832,-0.197898,1.96042,0.0630581,1.92617,0.216673,1.86422,0.374767,1.82665,0.437057,1.78942,0.481147,1.749,0.544826,1.73577,0.60713,1.76271,0.550822,1.80068,0.423285,1.76814,0.368318,1.81308,0.214955,1.85961,-0.0423487,1.90168,-0.275623,1.91597,-0.506002,1.91669,-0.699448,1.92312,-0.859581,1.92233,-0.963466,1.94051,-1.03733,1.94246,-1.09283,1.95169,-1.11226,1.94041,-0.991949,1.89424,-0.779069,1.81647,-0.486166,1.71797,-0.205256,1.63171,0.0207699,1.53913,0.165609,2 +0.846574,0.269425,0.85037,0.284656,0.855993,0.289992,0.868218,0.287109,0.902313,0.249224,0.938498,0.156338,0.955695,0.0979242,0.968009,0.0270363,1.0054,-0.16219,1.01247,-0.476233,0.999155,-0.835247,1.00904,-1.15236,1.04316,-1.40107,1.04933,-1.63553,1.07614,-1.79619,1.12385,-1.77715,1.16504,-1.53993,1.19071,-1.21293,1.23609,-0.882829,1.27245,-0.484945,1.25635,-0.170587,1.24429,0.0991198,1.23714,0.272781,1.20407,0.415333,1.09843,0.577438,1.0607,0.671772,1.07708,0.69656,1.12937,0.650032,1.21996,0.513376,1.2902,0.34222,1.28022,0.177777,1.24663,-0.104342,1.17704,-0.429401,1.11191,-0.773813,1.04617,-1.07427,0.984189,-1.3486,0.946499,-1.5882,0.895919,-1.78616,0.860777,-1.84556,0.874873,-1.7179,0.911203,-1.38231,0.940972,-0.963225,0.965733,-0.529224,0.977362,-0.092201,0.973024,0.238396,2 +0.934099,0.392902,0.918648,0.420573,0.91467,0.438442,0.917563,0.44821,0.962573,0.423511,1.05121,0.307001,1.10195,0.277415,1.15852,0.263602,1.23816,0.161985,1.28433,-0.0620516,1.30804,-0.294676,1.32398,-0.49103,1.34662,-0.683718,1.3644,-0.930383,1.34501,-1.21815,1.31524,-1.54871,1.27595,-1.83746,1.21387,-2.03362,1.16448,-2.02979,1.12762,-1.7583,1.12476,-1.3645,1.15074,-0.922422,1.15779,-0.516085,1.15994,-0.209822,1.14182,0.039374,1.14641,0.235475,1.20563,0.324064,1.27015,0.342269,1.30765,0.287785,1.35693,0.119507,1.35822,-0.152378,1.30121,-0.462512,1.22981,-0.75123,1.16289,-0.967047,1.10531,-1.16016,1.07035,-1.3486,1.05902,-1.54791,1.05335,-1.66618,1.05493,-1.63227,1.04163,-1.44906,1.04104,-1.11419,1.03312,-0.75123,1.02918,-0.360774,0.995054,-0.00434079,0.930143,0.274763,2 +-0.534213,0.676871,-0.534664,0.680075,-0.522383,0.685948,-0.543234,0.658942,-0.59353,0.411085,-0.608438,0.0935888,-0.632186,-0.27385,-0.651069,-0.617076,-0.68757,-0.945694,-0.681419,-1.23564,-0.648148,-1.43126,-0.585953,-1.55191,-0.544874,-1.54995,-0.526074,-1.41854,-0.536771,-1.1631,-0.545377,-0.792011,-0.554292,-0.334788,-0.557282,0.118861,-0.507145,0.53486,-0.453559,0.933457,-0.40621,1.20086,-0.32295,1.38013,-0.304666,1.43954,-0.275736,1.43537,-0.278508,1.36006,-0.353821,1.17271,-0.379921,0.745186,-0.397172,0.261323,-0.446554,-0.324463,-0.512264,-0.866728,-0.558242,-1.30008,-0.58758,-1.59932,-0.606885,-1.79332,-0.579067,-1.85898,-0.550013,-1.83293,-0.547446,-1.74746,-0.525783,-1.60167,-0.493311,-1.37282,-0.4705,-0.978914,-0.431627,-0.467699,-0.387133,0.105663,-0.321605,0.613767,-0.303103,1.05176,-0.313592,1.20092,-0.313587,1.17242,2 +0.817416,0.0471671,0.821122,0.0498171,0.82668,0.0548342,0.828722,0.0764301,0.852123,0.08731,0.887281,0.143756,0.92437,0.238925,0.95745,0.421351,0.99484,0.364601,1.08567,-0.186294,1.15357,-0.95997,1.20207,-1.74482,1.2151,-2.40271,1.2221,-2.82885,1.24158,-2.86957,1.28331,-2.70512,1.3314,-2.43258,1.37595,-1.92525,1.41523,-1.23331,1.42932,-0.43662,1.44773,0.313488,1.44317,0.90988,1.47522,1.11084,1.48019,1.18853,1.39121,1.08289,1.28574,0.801056,1.20563,0.0487509,1.1619,-0.71038,1.16515,-1.35567,1.16779,-2.01198,1.21334,-2.65214,1.25752,-3.15661,1.25093,-3.37187,1.21382,-3.25631,1.21372,-2.93506,1.17567,-2.47638,1.19031,-1.92412,1.19226,-1.31948,1.21208,-0.738897,1.27329,-0.171919,1.28216,0.41397,1.28198,0.812537,1.36453,1.12952,1.45484,1.2762,1.38472,1.18452,2 +1.11885,0.528699,1.12348,0.55649,1.12972,0.549847,1.14459,0.559786,1.18342,0.585425,1.22535,0.595744,1.27954,0.63634,1.30667,0.631683,1.31223,0.486218,1.32612,0.172655,1.33891,-0.211507,1.36463,-0.587452,1.41743,-0.886739,1.45588,-1.1609,1.5104,-1.41083,1.5704,-1.67718,1.64199,-1.86722,1.70009,-1.9872,1.72566,-1.98203,1.70694,-1.83887,1.63912,-1.55813,1.53672,-1.24675,1.46385,-0.844708,1.40288,-0.390844,1.34782,0.0230327,1.33932,0.413205,1.38774,0.664236,1.43253,0.941493,1.43921,1.22231,1.43481,1.39209,1.43621,1.46702,1.41038,1.48408,1.38819,1.48634,1.37677,1.36685,1.38121,1.20157,1.3767,0.934508,1.34972,0.70951,1.33121,0.493834,1.36001,0.167719,1.40302,-0.185393,1.43056,-0.457385,1.44783,-0.724724,1.45515,-0.930951,1.42833,-1.07146,1.38472,-1.19298,2 +0.165883,0.91145,0.177368,0.927246,0.161928,0.933454,0.197039,0.844832,0.23972,0.647662,0.180416,0.419971,0.203558,0.110773,0.269562,-0.104421,0.307051,-0.540461,0.39557,-0.959484,0.443188,-1.38965,0.46043,-1.74482,0.446372,-1.83424,0.449665,-1.62194,0.507501,-1.24568,0.496569,-0.891987,0.499522,-0.528189,0.496145,-0.128926,0.543609,0.216308,0.584416,0.401608,0.622454,0.571593,0.694565,0.780218,0.693004,0.979366,0.6519,1.1063,0.632219,1.09916,0.653496,0.914144,0.605684,0.745186,0.577238,0.714746,0.605981,0.207252,0.655958,-0.230403,0.656243,-0.639765,0.591518,-1.10102,0.501463,-1.47149,0.459968,-1.71031,0.356482,-1.89019,0.294983,-1.84371,0.280705,-1.64195,0.275376,-1.25284,0.232109,-0.898909,0.281815,-0.561782,0.373342,-0.17589,0.45255,0.189663,0.485403,0.546358,0.455678,0.761508,0.449803,0.784271,2 +0.574298,0.973215,0.587039,0.97668,0.582269,0.982956,0.611595,0.981144,0.651362,0.958957,0.743853,0.871905,0.861665,0.738906,0.883371,0.487108,0.740851,0.134965,0.719699,-0.0896677,0.77267,-0.433292,0.775364,-0.780356,0.679031,-1.19805,0.673251,-1.63553,0.61088,-1.87871,0.56033,-2.00554,0.643693,-1.88213,0.681381,-1.38325,0.770464,-0.787312,0.910335,-0.210943,0.909502,0.0553146,0.986994,0.374767,0.965074,0.585004,0.916939,0.810142,0.849096,1.06655,0.814217,1.18884,0.79854,1.11768,0.858735,0.682424,0.737541,0.400546,0.767264,-0.103207,0.767651,-0.734105,0.744373,-1.2879,0.723144,-1.62476,0.714658,-1.84408,0.652042,-1.99036,0.591729,-1.87122,0.599518,-1.46729,0.581003,-1.02618,0.611184,-0.525606,0.596883,-0.104726,0.595908,0.253099,0.655285,0.560754,0.739133,0.701876,0.800542,0.849368,0.784338,0.954055,2 +0.253408,1.03493,0.274895,1.01373,0.269477,1.03246,0.266131,1.05551,0.269876,1.08349,0.293125,1.03515,0.370664,0.81583,0.385988,0.487108,0.391678,0.0944655,0.353729,-0.365828,0.350518,-0.86297,0.450293,-1.42793,0.567748,-1.9019,0.652915,-2.05591,0.641937,-1.7824,0.613538,-1.52015,0.577113,-1.25719,0.623506,-1.01157,0.65108,-0.75545,0.632714,-0.46879,0.586526,-0.138316,0.577617,0.147805,0.545598,0.338448,0.585669,0.563378,0.643094,0.854605,0.749896,1.0273,0.79854,1.19863,0.782946,1.07106,0.693726,0.803352,0.667118,0.437669,0.622832,0.051991,0.56973,-0.291231,0.501463,-0.64391,0.439639,-1.02651,0.386028,-1.34622,0.381146,-1.63742,0.336943,-1.73605,0.312436,-1.4795,0.269104,-1.01889,0.300354,-0.669338,0.401151,-0.323326,0.443307,-0.0488375,0.421959,0.22239,0.420341,0.497873,0.424084,0.614435,2 +0.175636,1.05962,0.177368,1.06316,0.171682,1.0819,0.18719,1.09267,0.18953,1.12082,0.200913,1.16065,0.255785,1.22604,0.290735,1.30203,0.338779,1.37774,0.385082,1.44287,0.422588,1.47942,0.46043,1.49295,0.507086,1.48197,0.530954,1.49695,0.559191,1.52037,0.592266,1.57787,0.610431,1.64403,0.623506,1.71383,0.627191,1.76144,0.608565,1.77162,0.586526,1.76558,0.554216,1.72064,0.534286,1.70242,0.497285,1.66564,0.51299,1.62088,0.482027,1.57669,0.487877,1.58736,0.512251,1.6055,0.507297,1.62511,0.54471,1.63068,0.555953,1.63994,0.547885,1.63982,0.543704,1.62425,0.541494,1.58982,0.533808,1.54512,0.543871,1.49842,0.552636,1.48886,0.553232,1.5072,0.546467,1.54106,0.559805,1.58917,0.5681,1.60695,0.553894,1.63418,0.539757,1.62194,0.526443,1.57752,0.509846,1.52419,2 +0.0978142,1.01023,0.0993071,1.01373,0.0934971,1.00771,0.0983492,1.01835,0.109236,1.04615,0.129199,1.0979,0.161754,1.16196,0.174364,1.11805,0.222425,0.810392,0.291022,0.379746,0.299046,-0.156061,0.287731,-0.683934,0.28452,-1.18449,0.276892,-1.73043,0.259369,-1.94755,0.230751,-1.94843,0.277645,-1.58454,0.322519,-0.980595,0.38836,-0.373105,0.439584,0.208171,0.443002,0.636136,0.425598,0.942314,0.443557,1.24232,0.464169,1.40246,0.51299,1.49051,0.514161,1.43128,0.455697,1.34444,0.458124,1.0549,0.496358,0.674512,0.511347,0.246772,0.511366,-0.278164,0.449613,-0.727238,0.364264,-1.11901,0.256259,-1.47245,0.188937,-1.57526,0.199219,-1.48615,0.233823,-1.26574,0.247605,-0.772798,0.287601,-0.298895,0.393049,0.164165,0.42896,0.615029,0.424868,0.945069,0.476313,1.20728,0.535265,1.36411,0.544169,1.54846,2 +0.175636,1.1584,0.157853,1.16203,0.171682,1.16856,0.147694,1.16703,0.129322,1.08349,0.170194,0.871905,0.172178,0.546622,0.237829,0.158493,0.317609,-0.324306,0.406003,-0.862858,0.443188,-1.34809,0.440103,-1.78612,0.446372,-1.91541,0.459806,-1.89317,0.486814,-1.69982,0.517841,-1.27746,0.588238,-0.796021,0.681381,-0.407687,0.746575,0.00917037,0.729311,0.385454,0.694185,0.700679,0.659493,0.974747,0.613645,1.25872,0.740284,1.45179,0.762323,1.50678,0.749896,1.43128,0.584305,1.23102,0.631366,0.860547,0.67179,0.481149,0.71164,0.0558743,0.745358,-0.40395,0.755324,-0.882978,0.754797,-1.37953,0.704494,-1.78461,0.661924,-2.10488,0.649138,-2.09129,0.646399,-1.97788,0.645834,-1.58617,0.694397,-1.04556,0.745147,-0.481115,0.725747,0.0252273,0.692163,0.335478,0.702913,0.611129,0.676749,0.912118,0.647092,1.17242,2 +-0.485599,0.652176,-0.44687,0.630641,-0.522383,0.636447,-0.513586,0.609364,-0.523254,0.610331,-0.516227,0.532941,-0.67399,0.482546,-0.725149,0.263602,-0.835708,-0.0541704,-0.911434,-0.365828,-1.01878,-0.613462,-1.11424,-0.821663,-1.22261,-1.06269,-1.2477,-1.2558,-1.4156,-1.25947,-1.53412,-1.22035,-1.07564,-1.55478,-1.32133,-1.3987,-1.33098,-0.898794,-1.20187,-0.549424,-1.1119,-0.170587,-0.861005,0.19642,-0.712772,0.552135,-0.507659,0.727911,-0.397793,0.952442,-0.225234,1.2858,-0.112071,1.57113,-0.115674,1.71884,-0.106629,1.72179,-0.122838,1.72612,-0.134846,1.65563,-0.249131,1.35949,-0.385259,0.949941,-0.589231,0.638417,-0.737221,0.342801,-0.892049,-0.000753886,-0.938359,-0.311727,-1.11381,-0.612842,-1.03445,-0.978914,-1.03393,-1.09951,-1.02702,-0.57801,-0.920661,-0.141639,-0.756256,0.339001,-0.57,0.686176,-0.407908,0.832796,2 +-0.291145,0.713888,-0.310313,0.72951,-0.297531,0.723047,-0.276711,0.733255,-0.322441,0.734859,-0.34208,0.658493,-0.454603,0.533774,-0.481792,0.408234,-0.581773,0.121485,-0.629145,-0.255364,-0.67902,-0.655076,-0.789168,-0.835471,-0.84834,-1.14391,-0.881814,-1.41854,-0.970976,-1.34205,-1.05569,-1.43448,-1.0867,-1.53993,-1.07828,-1.35228,-0.996658,-0.946553,-0.912205,-0.565509,-0.836783,-0.0576016,-0.638781,0.391019,-0.440701,0.815019,-0.24262,1.0734,-0.0616871,1.29483,0.0748233,1.49592,0.155778,1.68454,0.144161,1.70268,0.0139341,1.43175,-0.267506,1.04211,-0.469127,0.712369,-0.707697,0.331732,-0.860273,-0.107506,-0.894848,-0.476481,-1.10181,-0.788038,-1.2271,-1.05978,-0.957121,-1.49416,-1.37313,-1.06616,-1.04368,-1.41892,-1.02464,-0.938229,-0.776648,-0.44395,-0.616535,-0.0356129,-0.502526,0.520439,-0.36662,0.874479,-0.22778,1.06326,2 +-0.602282,0.763278,-0.63219,0.791275,-0.639686,0.797299,-0.651772,0.795254,-0.633651,0.734859,-0.577666,0.532941,-0.517308,0.238925,-0.418272,-0.130712,-0.338397,-0.567481,-0.221335,-1.01472,-0.123053,-1.38965,-0.108457,-1.66214,-0.0796083,-1.84775,-0.0483721,-2.00167,-0.0197667,-2.05765,-0.00313189,-2.10551,-0.0107546,-2.03086,-0.00163109,-1.73941,0.0421213,-1.34479,-0.0311058,-0.83958,-0.166962,-0.299674,-0.264477,0.228853,-0.304666,0.749351,-0.264716,1.12279,-0.311076,1.40894,-0.353821,1.51205,-0.358486,1.57113,-0.310579,1.62166,-0.358809,1.65734,-0.401016,1.43978,-0.446834,1.01108,-0.478414,0.534161,-0.448565,0.0456949,-0.395686,-0.40218,-0.382519,-0.816606,-0.37512,-1.14225,-0.366327,-1.37325,-0.372889,-1.50617,-0.368789,-1.63227,-0.366765,-1.74479,-0.359324,-1.75761,-0.330849,-1.67884,-0.312194,-1.47521,-0.260519,-1.17185,-0.202061,-0.768412,2 +-0.388372,0.602785,-0.378592,0.618309,-0.385521,0.624098,-0.395149,0.634153,-0.402787,0.647662,-0.485455,0.620855,-0.50683,0.367132,-0.481792,-0.0124293,-0.412466,-0.459403,-0.399076,-0.931868,-0.431936,-1.30648,-0.443718,-1.60703,-0.433643,-1.75303,-0.444731,-1.8118,-0.433338,-1.83745,-0.460289,-1.73429,-0.421189,-1.52502,-0.291068,-1.15098,-0.208623,-0.67576,-0.163895,-0.146464,-0.131096,0.394133,-0.077385,0.958565,0.0127691,1.09444,0.0776305,1.22144,0.0684168,1.18066,0.0748233,1.15652,0.080785,1.16624,0.0250463,1.03867,-0.106629,0.803352,-0.16736,0.310404,-0.212843,-0.152378,-0.260081,-0.602645,-0.311365,-1.01175,-0.344759,-1.29405,-0.382519,-1.46074,-0.394273,-1.60991,-0.38509,-1.6823,-0.372889,-1.70615,-0.368789,-1.6856,-0.348226,-1.63729,-0.340769,-1.47612,-0.275532,-1.18856,-0.158082,-0.827272,-0.0483157,-0.380947,0.0295064,0.0685595,2 +-0.271689,0.837364,-0.281065,0.84071,-0.336648,0.834452,-0.345804,0.745676,-0.392718,0.535613,-0.526449,0.168866,-0.590437,-0.427698,-0.661683,-1.07715,-0.761639,-1.60764,-0.775533,-1.91221,-0.833435,-2.152,-0.768841,-2.15812,-0.706726,-1.99663,-0.648034,-1.79827,-0.578091,-1.43836,-0.492169,-0.906234,-0.443383,-0.305029,-0.453142,0.227235,-0.36381,0.662308,-0.200087,1.19137,-0.143092,1.5074,-0.00718021,1.55855,-0.021225,1.55455,-0.0659084,1.46828,-0.105074,1.36006,-0.203793,1.33432,-0.304927,1.15007,-0.440496,0.795763,-0.589053,0.384467,-0.757022,-0.00775822,-0.903641,-0.466843,-1.04615,-0.914127,-1.14526,-1.25698,-1.18008,-1.45761,-1.17078,-1.58954,-1.16964,-1.66493,-1.17281,-1.6957,-1.11381,-1.66618,-1.08067,-1.49892,-0.987607,-1.18017,-0.878629,-0.872939,-0.681048,-0.459659,-0.511569,-0.0368063,-0.393134,0.372319,-0.313587,0.650802,2 +-0.281392,0.849739,-0.281065,0.828378,-0.258413,0.772549,-0.276711,0.696098,-0.28232,0.485802,-0.301085,0.206559,-0.256118,-0.158491,-0.196033,-0.525027,-0.179647,-0.905194,-0.148141,-1.26326,-0.133379,-1.50054,-0.118647,-1.66214,-0.0492774,-1.7801,-0.0280366,-1.86605,-0.0301367,-1.87871,-0.0244039,-1.80571,0.0114388,-1.70358,0.021531,-1.50714,0.0660105,-1.12183,0.0775341,-0.629988,0.0842216,-0.21896,0.0162214,0.131553,0.00145727,0.519266,0.0334954,0.793725,0.0359049,1.03394,0.0533827,1.23735,0.0486054,1.40923,0.0359054,1.54072,0.0139341,1.64119,-0.0449523,1.58299,-0.0568487,1.41981,-0.11812,1.15706,-0.205764,0.796673,-0.263285,0.460018,-0.254453,0.0994185,-0.221946,-0.275789,-0.197564,-0.634183,-0.178395,-0.946175,-0.174639,-1.19226,-0.190716,-1.3684,-0.220184,-1.44931,-0.220214,-1.48007,-0.24875,-1.41044,-0.260519,-1.37274,-0.262103,-1.2415,2 +-0.514757,0.442292,-0.515149,0.432905,-0.512578,0.438442,-0.503738,0.423421,-0.523254,0.485802,-0.516227,0.470192,-0.496406,0.495339,-0.471178,0.421351,-0.454752,0.229562,-0.461837,-0.0482734,-0.483407,-0.377846,-0.494561,-0.683934,-0.524636,-0.940885,-0.536215,-1.14731,-0.588461,-1.32825,-0.651682,-1.4916,-0.74285,-1.58454,-0.846718,-1.66201,-0.92499,-1.63155,-0.972547,-1.54878,-1.0401,-1.39677,-1.07156,-1.08459,-1.01884,-0.647492,-0.93839,-0.127591,-0.84231,0.186093,-0.707452,0.510168,-0.744143,0.809973,-0.754459,0.957725,-0.731609,1.01286,-0.712557,1.01029,-0.658532,0.963873,-0.565736,0.861183,-0.511925,0.735366,-0.497541,0.623583,-0.490922,0.428628,-0.451682,0.0267556,-0.413209,-0.378888,-0.419191,-0.692791,-0.452003,-0.925577,-0.477951,-1.08609,-0.507717,-1.141,-0.533583,-1.12226,-0.55688,-1.03463,-0.578823,-0.883106,-0.588035,-0.622838,2 +-0.349461,0.985536,-0.339611,0.97668,-0.336648,0.982956,-0.335955,0.993565,-0.342528,0.996343,-0.352302,0.959819,-0.381474,0.841472,-0.428831,0.5791,-0.655842,0.37814,-0.72326,0.158877,-0.802563,-0.114506,-0.799305,-0.422106,-0.757295,-0.737865,-0.749659,-0.98463,-0.784903,-1.19063,-0.821804,-1.2489,-0.931408,-1.2721,-1.03196,-1.21293,-1.08024,-1.08997,-1.12949,-0.710622,-1.21956,-0.380319,-1.1417,-0.192709,-0.97353,0.0262245,-0.894197,0.398844,-0.766412,0.77304,-0.696759,1.10807,-0.551287,1.42539,-0.516286,1.58927,-0.501365,1.59288,-0.501162,1.55117,-0.446834,1.49846,-0.412937,1.40624,-0.364138,1.16452,-0.324377,0.801918,-0.412065,0.514517,-0.489987,0.260616,-0.478853,0.0241963,-0.42848,-0.266145,-0.415008,-0.525606,-0.505784,-0.750006,-0.572637,-0.819316,-0.625731,-0.777737,-0.629368,-0.645834,-0.631897,-0.493918,-0.588035,-0.161906,2 +-0.106393,1.12133,-0.0957454,1.1126,-0.102042,1.11906,-0.089181,1.12988,-0.111611,1.12082,-0.178154,1.04768,-0.214314,0.892755,-0.227766,0.697383,-0.348955,0.526717,-0.440917,0.393584,-0.442209,0.259725,-0.453907,0.0600652,-0.453881,-0.128745,-0.454925,-0.306605,-0.474711,-0.447498,-0.502833,-0.577874,-0.532099,-0.602555,-0.580444,-0.578007,-0.590665,-0.548312,-0.610435,-0.420466,-0.633462,-0.186688,-0.650452,0.050505,-0.61073,0.108434,-0.496639,0.300124,-0.473692,0.593709,-0.439584,0.865697,-0.39061,1.10152,-0.364706,1.3302,-0.325933,1.4962,-0.323131,1.59886,-0.335426,1.62418,-0.303714,1.57752,-0.248004,1.53229,-0.232687,1.38168,-0.215025,1.08711,-0.231547,0.645688,-0.413209,0.292958,-0.484022,0.173864,-0.525944,-0.00559802,-0.589137,-0.212282,-0.646809,-0.363515,-0.662609,-0.393422,-0.683768,-0.386694,-0.658411,-0.305615,-0.665239,-0.234693,2 +-0.41753,1.08432,-0.417622,1.07549,-0.395275,1.06956,-0.405048,1.09267,-0.402787,1.10839,-0.383021,1.11048,-0.350148,1.11068,-0.323019,0.986589,-0.317227,0.729334,-0.503678,0.462594,-0.534879,0.273617,-0.545352,-0.00879936,-0.544874,-0.277619,-0.505738,-0.523533,-0.485028,-0.791537,-0.502833,-1.02046,-0.509906,-1.12331,-0.545731,-1.15098,-0.578751,-1.074,-0.634584,-0.887905,-0.645397,-0.638493,-0.615379,-0.306261,-0.61073,0.00982533,-0.651255,0.135662,-0.462873,0.365424,-0.396703,0.704093,-0.379921,1.05289,-0.364706,1.36259,-0.413621,1.57681,-0.401016,1.71018,-0.368837,1.67139,-0.29282,1.56198,-0.258537,1.42504,-0.283667,1.15872,-0.313545,0.686295,-0.37512,0.246831,-0.431971,0.0510725,-0.521082,-0.186138,-0.609158,-0.392263,-0.598431,-0.575256,-0.572637,-0.658445,-0.561218,-0.671711,-0.56597,-0.581063,-0.578823,-0.468861,-0.588035,-0.319585,2 +-0.271689,1.01023,-0.251818,1.0014,-0.258413,1.00771,-0.266863,1.00593,-0.272251,0.958957,-0.29081,0.758935,-0.391952,0.495339,-0.50291,0.276777,-0.549991,-0.0406315,-0.555951,-0.35199,-0.504006,-0.627353,-0.403117,-0.863029,-0.292029,-0.981466,-0.231287,-1.01175,-0.236896,-1.01174,-0.26895,-1.00621,-0.310222,-0.929904,-0.360494,-0.763848,-0.423564,-0.548312,-0.550093,-0.243183,-0.5856,-0.00922885,-0.416557,0.163986,-0.293295,0.535665,-0.275736,0.925351,-0.26769,1.24588,-0.257367,1.4474,-0.262058,1.52257,-0.256451,1.49216,-0.238189,1.48012,-0.222984,1.47159,-0.179432,1.34123,-0.172703,1.06361,-0.110805,0.674059,-0.242904,0.385717,-0.313545,0.0707889,-0.317661,-0.234554,-0.272565,-0.378888,-0.280287,-0.506166,-0.304073,-0.605612,-0.348226,-0.682754,-0.350022,-0.64501,-0.358484,-0.512672,-0.357504,-0.295947,-0.384311,-0.0294515,-0.373629,0.129241,2 +-0.213323,1.10901,-0.212787,1.12493,-0.20954,1.11906,-0.217518,1.14224,-0.212044,1.08349,-0.249868,0.947237,-0.381474,0.63634,-0.481792,0.21102,-0.602889,-0.175729,-0.744126,-0.35199,-0.751091,-0.530293,-0.728188,-0.807914,-0.787626,-0.981466,-0.861479,-1.09312,-0.919286,-1.06679,-0.99187,-1.02046,-1.05344,-1.00427,-1.15926,-0.903195,-1.16382,-0.707622,-1.11738,-0.678382,-1.0999,-0.39649,-1.03643,0.0180718,-0.996154,0.437057,-0.949409,0.875956,-0.918209,1.29483,-0.803907,1.62513,-0.765578,1.7331,-0.765318,1.68645,-0.742549,1.43175,-0.679137,0.89897,-0.625121,0.272117,-0.554842,-0.166639,-0.606885,-0.24548,-0.61983,-0.431914,-0.599273,-0.716433,-0.604855,-0.853428,-0.647665,-0.862601,-0.641456,-0.772798,-0.63688,-0.632281,-0.654,-0.481115,-0.665365,-0.484197,-0.653366,-0.0621194,-0.629368,0.481587,-0.658411,0.912118,-0.665239,1.25731,2 +-0.563371,-1.94062,-0.583427,-1.92739,-0.590814,-1.92505,-0.592578,-1.91894,-0.59353,-1.89251,-0.577666,-1.89003,-0.569535,-1.90194,-0.57699,-1.91842,-0.624059,-1.98585,-0.691852,-2.03645,-0.751091,-2.04111,-0.829769,-1.99278,-0.909055,-1.94248,-1.01392,-1.90671,-1.13641,-1.87871,-1.28957,-1.84851,-1.49714,-1.77794,-1.70336,-1.66201,-1.89216,-1.48821,-2.02263,-1.30702,-2.10463,-1.07413,-2.12421,-0.857555,-2.07318,-0.663962,-2.00962,-0.407262,-1.9374,-0.156298,-1.83267,0.0738709,-1.70831,0.275508,-1.59895,0.455677,-1.45522,0.642285,-1.31338,0.835338,-1.14881,0.99532,-0.958825,1.14152,-0.754672,1.22576,-0.56885,1.27765,-0.372687,1.27317,-0.202793,1.22333,-0.0662764,1.17981,0.071641,1.1472,0.176665,1.14109,0.291108,1.13211,0.391897,1.08421,0.470942,1.06432,0.50349,1.03878,0.517574,0.974921,0.501287,0.94195,3 +-0.0285712,-1.9036,-0.0274669,-1.90267,-0.0336109,-1.9003,-0.0200882,-1.89415,-0.0112309,-1.88008,-0.00400662,-1.86492,0.0363983,-1.86351,0.0791111,-1.86583,0.127186,-1.87783,0.155068,-1.91221,0.165231,-1.9025,0.155686,-1.9101,0.132813,-1.88833,0.0939242,-1.89317,0.021553,-1.92002,-0.0775566,-2.03409,-0.221506,-2.12014,-0.395267,-2.20394,-0.60264,-2.23686,-0.803566,-2.20959,-1.00424,-2.15512,-1.1651,-2.13856,-1.29091,-2.11007,-1.39116,-2.01955,-1.48201,-1.85199,-1.5433,-1.68744,-1.59045,-1.47362,-1.62061,-1.21243,-1.63059,-0.936781,-1.64712,-0.659888,-1.62791,-0.40395,-1.5484,-0.104342,-1.41971,0.153015,-1.27177,0.400552,-1.12152,0.614752,-0.968611,0.769451,-0.807071,0.911052,-0.678516,1.04052,-0.562939,1.19437,-0.413088,1.33375,-0.257294,1.44614,-0.100432,1.52815,0.0594279,1.5701,0.190401,1.55241,0.303999,1.51204,3 +0.0200424,-1.9283,0.0212962,-1.92739,0.025066,-1.92505,0.0292565,-1.93131,0.0389592,-1.90499,0.0472631,-1.90256,0.0782017,-1.90194,0.110844,-1.90524,0.127186,-1.94535,0.134147,-1.98122,0.113759,-1.98566,0.054052,-1.99278,-0.0290394,-1.95605,-0.139856,-1.96095,-0.267952,-1.98881,-0.439017,-2.00554,-0.643009,-2.00117,-0.869881,-1.95622,-1.05635,-1.87048,-1.22602,-1.72606,-1.35108,-1.5743,-1.4224,-1.37649,-1.43831,-1.15693,-1.43535,-0.900862,-1.42781,-0.612867,-1.40402,-0.330105,-1.36553,-0.048431,-1.33912,0.22893,-1.27978,0.465,-1.20207,0.676257,-1.08193,0.853844,-0.93698,0.985775,-0.775792,1.10321,-0.609613,1.18845,-0.431779,1.2302,-0.260252,1.22333,-0.103752,1.23357,0.0438699,1.28054,0.18589,1.32772,0.328186,1.36064,0.46607,1.3657,0.590772,1.32938,0.684779,1.27205,0.756337,1.17581,0.810058,1.09963,3 +-0.271689,-1.21219,-0.271333,-1.21065,-0.268217,-1.20734,-0.276711,-1.20012,-0.272251,-1.1952,-0.26009,-1.16188,-0.245694,-1.1584,-0.217207,-1.14285,-0.169089,-1.14837,-0.127221,-1.1528,-0.11278,-1.12631,-0.0881829,-1.1248,-0.0897012,-1.11683,-0.109326,-1.14731,-0.133516,-1.21815,-0.194525,-1.29171,-0.276961,-1.39114,-0.395267,-1.47617,-0.519059,-1.55193,-0.634584,-1.61326,-0.765052,-1.67112,-0.884407,-1.70075,-0.984842,-1.74858,-1.07091,-1.78927,-1.13509,-1.78676,-1.20042,-1.8006,-1.30122,-1.70038,-1.41491,-1.56867,-1.52097,-1.38789,-1.63602,-1.16895,-1.7282,-0.907027,-1.75584,-0.633793,-1.76806,-0.460055,-1.74034,-0.238616,-1.69298,-0.0293839,-1.65787,0.136793,-1.63232,0.333301,-1.60469,0.507197,-1.57991,0.741064,-1.57132,0.997668,-1.56493,1.15121,-1.51047,1.2896,-1.45414,1.40165,-1.3923,1.42686,-1.29994,1.48783,3 +0.379843,-1.22451,0.382204,-1.22298,0.38678,-1.21969,0.394468,-1.21248,0.410429,-1.1952,0.436553,-1.17441,0.475172,-1.1584,0.523588,-1.15602,0.571598,-1.13483,0.615151,-1.12518,0.649127,-1.09859,0.683972,-1.06968,0.719507,-1.03561,0.754593,-1.02529,0.78669,-1.03927,0.81554,-1.06332,0.843376,-1.10846,0.866618,-1.16644,0.877935,-1.20145,0.874143,-1.22639,0.849706,-1.23548,0.811573,-1.26294,0.772363,-1.33775,0.740284,-1.41088,0.708118,-1.44437,0.68563,-1.47739,0.691422,-1.52218,0.685493,-1.55251,0.682729,-1.59734,0.655958,-1.63025,0.622832,-1.66168,0.56973,-1.69276,0.501463,-1.71672,0.449804,-1.69541,0.376196,-1.6468,0.323688,-1.60991,0.252585,-1.54791,0.192063,-1.4795,0.121173,-1.41892,0.0501963,-1.34151,-0.0347281,-1.23487,-0.109627,-1.10904,-0.185305,-0.969802,-0.269387,-0.832885,-0.339307,-0.707782,3 +0.272863,-1.73074,0.274895,-1.72965,0.288986,-1.7394,0.305628,-1.733,0.320066,-1.71817,0.344341,-1.70168,0.370664,-1.69681,0.428335,-1.69491,0.476359,-1.6887,0.51055,-1.69128,0.546131,-1.66688,0.572201,-1.64833,0.598131,-1.60409,0.612297,-1.62194,0.61088,-1.65856,0.581602,-1.76284,0.521658,-1.85237,0.426718,-1.9407,0.292865,-1.98203,0.137876,-1.96783,-0.0354336,-1.88085,-0.217734,-1.79805,-0.384025,-1.71571,-0.540831,-1.59183,-0.679695,-1.44437,-0.793214,-1.28347,-0.872695,-1.0849,-0.916898,-0.904735,-0.928921,-0.646736,-0.912793,-0.373611,-0.847937,-0.105174,-0.740436,0.129235,-0.628005,0.35223,-0.497541,0.549218,-0.352973,0.700641,-0.212395,0.82447,-0.0756333,0.951395,0.053111,1.12053,0.195162,1.27438,0.328186,1.42784,0.456816,1.52657,0.590772,1.59445,0.721046,1.63487,0.827056,1.59005,0.930143,1.52419,3 +0.720139,-1.55787,0.723546,-1.5443,0.728885,-1.5538,0.730033,-1.53474,0.741725,-1.5065,0.764351,-1.50085,0.809437,-1.47889,0.841024,-1.47146,0.888988,-1.47254,0.928793,-1.45657,0.937357,-1.48671,0.907462,-1.51061,0.861121,-1.53644,0.774876,-1.63553,0.652253,-1.72735,0.517841,-1.83426,0.366361,-1.94165,0.171995,-2.03362,-0.0414601,-2.09352,-0.284578,-2.11294,-0.489938,-2.12285,-0.685584,-2.0737,-0.837495,-1.99507,-0.971505,-1.8715,-1.0917,-1.68892,-1.21111,-1.50971,-1.31191,-1.29549,-1.4041,-1.05047,-1.4771,-0.8401,-1.53588,-0.580382,-1.53874,-0.372504,-1.48287,-0.151031,-1.39859,0.0456949,-1.28194,0.25195,-1.12152,0.385715,-0.987764,0.535651,-0.872715,0.682633,-0.771119,0.813862,-0.673874,0.94105,-0.579892,1.09175,-0.470607,1.17802,-0.367679,1.27637,-0.257793,1.32389,-0.16324,1.36411,-0.0476974,1.34225,3 +0.681278,-1.54555,0.684565,-1.5443,0.689818,-1.54145,0.710285,-1.53474,0.731656,-1.51898,0.754128,-1.51337,0.778112,-1.51738,0.777559,-1.53722,0.762021,-1.56714,0.709211,-1.63605,0.649127,-1.63916,0.572201,-1.64833,0.496941,-1.65824,0.419188,-1.64906,0.311058,-1.69982,0.177598,-1.76284,0.0225068,-1.8077,-0.163706,-1.8633,-0.36381,-1.85459,-0.53805,-1.83887,-0.693259,-1.78403,-0.837604,-1.73318,-0.928165,-1.69924,-0.993601,-1.59183,-1.02668,-1.46071,-1.07183,-1.31579,-1.09768,-1.13352,-1.11175,-0.953288,-1.12629,-0.759497,-1.13535,-0.564439,-1.11534,-0.388193,-1.0571,-0.244475,-0.976352,-0.0922128,-0.894848,0.058652,-0.77665,0.213937,-0.662314,0.356869,-0.544496,0.4945,-0.437721,0.640542,-0.359564,0.794402,-0.292656,0.957306,-0.238739,1.08421,-0.183384,1.19685,-0.149038,1.28498,-0.101344,1.30131,-0.0390946,1.30583,3 +0.856277,-1.34799,0.85037,-1.34656,0.855993,-1.35579,0.878067,-1.3488,0.892296,-1.30725,0.928276,-1.31249,0.976597,-1.2994,1.02097,-1.28742,1.07947,-1.28341,1.10659,-1.27704,1.11242,-1.26492,1.10049,-1.26259,1.0634,-1.26571,1.02899,-1.33717,0.962445,-1.3971,0.879301,-1.52015,0.787921,-1.64406,0.658219,-1.73941,0.495831,-1.82272,0.3189,-1.85502,0.144018,-1.86468,-0.0305818,-1.84666,-0.191254,-1.83072,-0.308908,-1.75636,-0.386975,-1.65631,-0.450276,-1.50971,-0.487038,-1.36028,-0.516286,-1.1962,-0.523301,-0.985088,-0.523424,-0.739463,-0.502538,-0.49829,-0.445675,-0.275623,-0.385259,-0.076853,-0.314213,0.133017,-0.224857,0.299826,-0.145384,0.439397,-0.0756333,0.588596,-0.00243142,0.733855,0.0472321,0.887713,0.09652,1.03797,0.169283,1.16464,0.240572,1.24986,0.331291,1.27205,0.393781,1.26367,0.484126,1.23305,3 +0.603456,-1.87891,0.606504,-1.86557,0.601828,-1.86315,0.621444,-1.86936,0.631276,-1.85518,0.661917,-1.82723,0.684081,-1.85066,0.671746,-1.89213,0.603326,-1.99939,0.468763,-2.07785,0.350518,-2.152,0.216614,-2.13057,0.0620057,-2.06434,-0.0788492,-1.98808,-0.205893,-1.90623,-0.332711,-1.81996,-0.487712,-1.68866,-0.64993,-1.55357,-0.829495,-1.37666,-0.960504,-1.17806,-0.980308,-0.912767,-0.93115,-0.662956,-0.814813,-0.417477,-0.69539,-0.160498,-0.571284,0.071986,-0.461024,0.267796,-0.347741,0.486034,-0.234789,0.714746,-0.0847499,0.948409,0.0885572,1.10574,0.277433,1.21545,0.449613,1.21935,0.617597,1.22576,0.77575,1.18845,1.01663,1.14431,1.18522,1.12707,1.3216,1.09919,1.42381,1.09386,1.52644,1.11442,1.56978,1.18589,1.56039,1.23164,1.53998,1.24986,1.5186,1.22021,1.48136,1.18833,1.4362,1.13605,3 +0.65207,-1.60726,0.655267,-1.60607,0.660454,-1.6033,0.670788,-1.59669,0.691483,-1.59369,0.713134,-1.57618,0.746786,-1.56866,0.777559,-1.57663,0.804362,-1.5941,0.792893,-1.63605,0.731471,-1.68071,0.653456,-1.70345,0.567748,-1.72595,0.47,-1.75756,0.352432,-1.83745,0.19887,-1.91993,0.0336322,-1.94165,-0.152155,-1.97168,-0.36381,-1.93421,-0.53805,-1.82278,-0.681324,-1.67112,-0.77913,-1.50615,-0.860119,-1.33775,-0.916293,-1.11472,-0.939902,-0.873694,-0.953935,-0.604798,-0.947689,-0.291351,-0.916898,-0.013978,-0.819297,0.271706,-0.679137,0.501302,-0.49142,0.728058,-0.303714,0.876723,-0.142458,1.02654,-0.00859557,1.11415,0.129845,1.08711,0.304535,1.09956,0.449517,1.13947,0.534702,1.1472,0.6759,1.22104,0.893364,1.2665,1.06885,1.29864,1.18058,1.34261,1.26482,1.36274,1.26915,1.339,1.23891,1.29373,3 +0.681278,-1.95299,0.694298,-1.96444,0.689818,-1.96215,0.700436,-1.94373,0.71157,-1.92989,0.723356,-1.92767,0.725884,-1.96602,0.692865,-2.02353,0.645667,-2.08045,0.594231,-2.10546,0.535858,-2.11039,0.480757,-2.08926,0.426134,-2.03727,0.378517,-2.0152,0.311058,-2.01633,0.241414,-2.01985,0.166735,-2.04577,0.0677954,-2.03362,-0.0295463,-2.0139,-0.127702,-1.98398,-0.262686,-1.94539,-0.381485,-1.89535,-0.486007,-1.86359,-0.56287,-1.77278,-0.647183,-1.65631,-0.696759,-1.52584,-0.733453,-1.39267,-0.765318,-1.24482,-0.775425,-1.08177,-0.74592,-0.914418,-0.691943,-0.718348,-0.620375,-0.509201,-0.543578,-0.322081,-0.456831,-0.119683,-0.362805,0.056505,-0.260252,0.219322,-0.178802,0.386996,-0.104323,0.507197,-0.0452064,0.647753,-0.00542084,0.755667,0.030191,0.883089,0.0562291,0.9848,0.113782,1.0647,0.137373,1.08789,0.192472,1.11179,3 +0.000586947,-2.1752,-0.00795162,-2.1745,-0.014052,-2.17251,-0.0299878,-2.1792,-0.0514038,-2.16647,-0.0552234,-2.16619,-0.0472086,-2.17115,-0.0267011,-2.19445,-0.0209518,-2.21555,-0.00175342,-2.25738,-0.00978347,-2.23517,-0.0170655,-2.21324,-0.0290394,-2.15907,-0.0788492,-2.15082,-0.1232,-2.18149,-0.205134,-2.24829,-0.321348,-2.3136,-0.453142,-2.35881,-0.60264,-2.39617,-0.743224,-2.40303,-0.884645,-2.38103,-1.01302,-2.39803,-1.13225,-2.38943,-1.22552,-2.38152,-1.33021,-2.29221,-1.43615,-2.20458,-1.53689,-2.12143,-1.64228,-2.02217,-1.75121,-1.88738,-1.84742,-1.75751,-1.88419,-1.67743,-1.89775,-1.55263,-1.82083,-1.56345,-1.71996,-1.42788,-1.76195,-1.30331,-1.70572,-1.15603,-1.6792,-0.996982,-1.65099,-0.879474,-1.64462,-0.725592,-1.58062,-0.655865,-1.55563,-0.497574,-1.52891,-0.327127,-1.46318,-0.166349,-1.40999,-0.00434079,-1.32571,0.141346,3 +-0.300848,-1.60726,-0.310313,-1.61845,-0.307285,-1.6033,-0.316207,-1.62147,-0.342528,-1.63103,-0.403518,-1.63893,-0.496406,-1.68402,-0.619336,-1.73438,-0.751026,-1.7292,-0.890514,-1.66366,-1.03937,-1.55599,-1.20568,-1.41412,-1.37432,-1.21156,-1.50176,-1.01175,-1.58099,-0.874113,-1.61915,-0.763517,-1.70789,-0.662073,-1.72652,-0.59346,-1.71302,-0.468691,-1.68467,-0.307662,-1.57834,-0.0898733,-1.32886,0.0666866,-1.08688,0.28918,-0.80587,0.514053,-0.527897,0.691545,-0.289555,0.849502,-0.0477673,0.971943,0.133302,1.03867,0.342862,1.0934,0.54471,1.16937,0.73424,1.184,0.842646,1.20374,0.881464,1.21046,0.86744,1.20328,0.829418,1.17294,0.773607,1.16831,0.730805,1.17981,0.710666,1.20053,0.703622,1.2344,0.698824,1.29339,0.679383,1.31208,0.673724,1.34261,0.657602,1.32389,0.650235,1.28878,0.621372,1.2452,3 +-0.184165,-1.43439,-0.183539,-1.42071,-0.189982,-1.44244,-0.19777,-1.46037,-0.201974,-1.45669,-0.208874,-1.45062,-0.224792,-1.47889,-0.23838,-1.48464,-0.2326,-1.49956,-0.242255,-1.49797,-0.267195,-1.47282,-0.301483,-1.44168,-0.332453,-1.38756,-0.383777,-1.3643,-0.464395,-1.34205,-0.566594,-1.36313,-0.709589,-1.37623,-0.869881,-1.36773,-1.03246,-1.34479,-1.17772,-1.27478,-1.30328,-1.18704,-1.399,-1.14945,-1.44962,-1.10766,-1.50158,-1.08181,-1.53622,-1.03675,-1.53261,-1.05729,-1.53689,-1.00395,-1.53402,-0.985681,-1.55384,-0.856178,-1.5915,-0.771279,-1.54991,-0.702658,-1.50471,-0.602645,-1.43025,-0.567309,-1.3227,-0.417015,-1.24959,-0.272705,-1.12178,-0.165751,-1.04153,-0.0563742,-0.974902,0.0671883,-0.905019,0.194387,-0.857882,0.338915,-0.785901,0.440781,-0.69944,0.547472,-0.629368,0.637049,-0.543486,0.698704,-0.46795,0.735747,3 +0.000586947,-1.84184,-0.0274669,-1.85324,-0.0726783,-1.86315,-0.128677,-1.89415,-0.191957,-1.91741,-0.26009,-1.91514,-0.33967,-1.92759,-0.439445,-1.93153,-0.539433,-1.91833,-0.650066,-1.88459,-0.761364,-1.75005,-0.870423,-1.66214,-0.979862,-1.50937,-1.07492,-1.37789,-1.16742,-1.287,-1.25769,-1.20604,-1.35291,-1.12331,-1.47186,-1.04254,-1.58173,-0.930656,-1.66052,-0.823426,-1.69799,-0.719137,-1.59788,-0.922422,-1.59703,-0.811839,-1.57889,-0.71984,-1.5254,-0.580255,-1.4469,-0.378552,-1.34409,-0.129381,-1.2092,0.0993605,-1.08242,0.368318,-0.923952,0.628567,-0.747647,0.853844,-0.58758,1.04807,-0.438032,1.22576,-0.253068,1.36685,-0.0770769,1.41632,0.103504,1.41589,0.290061,1.39482,0.4884,1.40052,0.694397,1.43439,0.856334,1.5085,0.985423,1.56676,1.02392,1.60767,1.03822,1.59602,1.01274,1.55241,0.964421,1.49993,3 +0.263161,-1.80482,0.265162,-1.8038,0.249918,-1.81365,0.256283,-1.81978,0.23972,-1.80537,0.221411,-1.80212,0.182656,-1.81223,0.132017,-1.83954,0.0531169,-1.87783,-0.0226737,-1.88459,-0.143652,-1.87477,-0.271019,-1.85505,-0.393167,-1.80717,-0.556551,-1.7169,-0.74353,-1.64477,-0.949381,-1.54871,-1.18655,-1.43574,-1.37927,-1.29033,-1.51006,-1.15369,-1.55194,-1.00071,-1.51854,-0.848224,-1.4458,-0.711641,-1.37027,-0.598223,-1.30283,-0.489564,-1.23268,-0.547643,-1.15754,-0.378552,-1.07624,-0.161775,-0.992688,0.115592,-0.896045,0.368318,-0.768181,0.612624,-0.580535,0.775194,-0.391092,0.954627,-0.216351,1.10321,-0.059523,1.20328,0.0608714,1.24454,0.285382,1.30586,0.496398,1.38136,0.682894,1.46722,0.851552,1.55437,1.01384,1.64295,1.11526,1.72763,1.17139,1.76671,1.19233,1.75154,1.16305,1.70308,1.09311,1.6455,3 +-0.300848,-1.61963,-0.310313,-1.64311,-0.317089,-1.66515,-0.335955,-1.67105,-0.372631,-1.68084,-0.413794,-1.68915,-0.465027,-1.72245,-0.534698,-1.74749,-0.602889,-1.76976,-0.670932,-1.73267,-0.781964,-1.6946,-0.890749,-1.60703,-1.02029,-1.46878,-1.17655,-1.37789,-1.35354,-1.30073,-1.54472,-1.19179,-1.65244,-1.16798,-1.78439,-1.13546,-1.84438,-1.08997,-1.91399,-1.0491,-1.91325,-0.945039,-1.85518,-0.873807,-1.77843,-0.828309,-1.71141,-0.686933,-1.63381,-0.482419,-1.51117,-0.233143,-1.36553,0.0487509,-1.22006,0.342269,-1.06048,0.642285,-0.923952,0.930787,-0.792233,1.15255,-0.653114,1.34395,-0.438032,1.44033,-0.171595,1.50062,0.120014,1.48786,0.381146,1.47091,0.580756,1.48886,0.738485,1.5205,0.833055,1.55437,0.893364,1.61606,0.901949,1.6472,0.894898,1.66069,0.884155,1.64786,0.835879,1.60263,0.801455,1.5363,3 +-1.00099,-0.65657,-1.01261,-0.654539,-1.01115,-0.650478,-1.01698,-0.642394,-1.02521,-0.634849,-1.03867,-0.622033,-1.03963,-0.607133,-1.02147,-0.590784,-0.994403,-0.580961,-0.953274,-0.572919,-0.926105,-0.544184,-0.911076,-0.546145,-0.909055,-0.548352,-0.932627,-0.550656,-0.970976,-0.571392,-1.05569,-0.592182,-1.16435,-0.617467,-1.28662,-0.655407,-1.41456,-0.691726,-1.51568,-0.694467,-1.59033,-0.703036,-1.65636,-0.727822,-1.69907,-0.7461,-1.74458,-0.752747,-1.8073,-0.743245,-1.8648,-0.717886,-1.93329,-0.663846,-2.01042,-0.629364,-2.08014,-0.566203,-2.15896,-0.500876,-2.2073,-0.435397,-2.21435,-0.33792,-2.15865,-0.322081,-2.09688,-0.268349,-2.028,-0.215446,-2.00246,-0.110732,-1.96989,-0.00262183,-1.96586,0.0272137,-1.97742,0.154413,-1.99757,0.285137,-2.04717,0.387158,-1.95283,0.521023,-1.97981,0.650037,-1.914,0.736397,-1.96041,0.808534,3 +-0.592579,-0.508398,-0.59321,-0.518622,-0.590814,-0.526725,-0.592578,-0.506082,-0.59353,-0.510374,-0.587941,-0.483952,-0.569535,-0.466133,-0.545257,-0.459327,-0.52882,-0.472942,-0.514111,-0.490071,-0.524606,-0.516461,-0.545352,-0.546145,-0.605588,-0.561859,-0.708988,-0.577779,-0.836593,-0.585125,-1.02381,-0.577874,-1.23093,-0.587707,-1.43714,-0.686381,-1.67722,-0.707622,-1.8778,-0.694467,-2.04484,-0.59005,-2.18268,-0.50086,-2.25452,-0.433876,-2.32987,-0.374356,-2.47953,-0.286747,-2.56134,-0.0715382,-2.58679,0.162165,-2.63835,0.439446,-2.61734,0.706739,-2.53724,0.930787,-2.40785,1.08966,-2.19256,1.17266,-1.96862,1.28706,-1.75056,1.36685,-1.52548,1.38769,-1.34197,1.4434,-1.16341,1.51574,-1.01191,1.54717,-0.831029,1.5944,-0.672539,1.62947,-0.516971,1.6472,-0.376923,1.6474,-0.257793,1.60895,-0.154417,1.55241,-0.0648144,1.47567,3 +-0.20362,-0.780047,-0.203055,-0.778124,-0.199786,-0.78658,-0.207618,-0.766338,-0.201974,-0.746952,-0.198651,-0.722475,-0.182989,-0.709699,-0.164301,-0.682776,-0.169089,-0.689039,-0.179549,-0.697161,-0.20545,-0.710523,-0.250692,-0.711491,-0.312267,-0.710791,-0.404113,-0.726987,-0.526401,-0.750278,-0.694226,-0.720652,-0.898147,-0.706744,-1.10138,-0.655407,-1.31901,-0.564277,-1.50364,-0.452705,-1.6262,-0.364218,-1.7031,-0.371127,-1.74438,-0.318869,-1.7777,-0.226311,-1.78561,-0.107416,-1.77909,0.00922913,-1.76187,0.243114,-1.73973,0.439446,-1.6854,0.610058,-1.63602,0.803522,-1.50533,0.97963,-1.34096,1.12591,-1.12414,1.24112,-0.91523,1.33712,-0.687961,1.38769,-0.489987,1.38838,-0.338208,1.4217,-0.187684,1.44055,-0.0637037,1.44775,0.0779809,1.45472,0.178585,1.4327,0.268207,1.42213,0.295071,1.37573,0.296548,1.32642,0.278279,1.26947,3 +-1.00099,-0.65657,-1.01261,-0.654539,-1.01115,-0.650478,-1.01698,-0.642394,-1.02521,-0.634849,-1.03867,-0.622033,-1.03963,-0.607133,-1.02147,-0.590784,-0.994403,-0.580961,-0.953274,-0.572919,-0.926105,-0.544184,-0.911076,-0.546145,-0.909055,-0.548352,-0.932627,-0.550656,-0.970976,-0.571392,-1.05569,-0.592182,-1.16435,-0.617467,-1.28662,-0.655407,-1.41456,-0.691726,-1.51568,-0.694467,-1.59033,-0.703036,-1.65636,-0.727822,-1.69907,-0.7461,-1.74458,-0.752747,-1.8073,-0.743245,-1.8648,-0.717886,-1.93329,-0.663846,-2.01042,-0.629364,-2.08014,-0.566203,-2.15896,-0.500876,-2.2073,-0.435397,-2.21435,-0.33792,-2.15865,-0.322081,-2.09688,-0.268349,-2.028,-0.215446,-2.00246,-0.110732,-1.96989,-0.00262183,-1.96586,0.0272137,-1.97742,0.154413,-1.99757,0.285137,-2.04717,0.387158,-1.95283,0.521023,-1.97981,0.650037,-1.914,0.736397,-1.96041,0.808534,3 +-0.592579,-0.508398,-0.59321,-0.518622,-0.590814,-0.526725,-0.592578,-0.506082,-0.59353,-0.510374,-0.587941,-0.483952,-0.569535,-0.466133,-0.545257,-0.459327,-0.52882,-0.472942,-0.514111,-0.490071,-0.524606,-0.516461,-0.545352,-0.546145,-0.605588,-0.561859,-0.708988,-0.577779,-0.836593,-0.585125,-1.02381,-0.577874,-1.23093,-0.587707,-1.43714,-0.686381,-1.67722,-0.707622,-1.8778,-0.694467,-2.04484,-0.59005,-2.18268,-0.50086,-2.25452,-0.433876,-2.32987,-0.374356,-2.47953,-0.286747,-2.56134,-0.0715382,-2.58679,0.162165,-2.63835,0.439446,-2.61734,0.706739,-2.53724,0.930787,-2.40785,1.08966,-2.19256,1.17266,-1.96862,1.28706,-1.75056,1.36685,-1.52548,1.38769,-1.34197,1.4434,-1.16341,1.51574,-1.01191,1.54717,-0.831029,1.5944,-0.672539,1.62947,-0.516971,1.6472,-0.376923,1.6474,-0.257793,1.60895,-0.154417,1.55241,-0.0648144,1.47567,3 +-0.20362,-0.780047,-0.203055,-0.778124,-0.199786,-0.78658,-0.207618,-0.766338,-0.201974,-0.746952,-0.198651,-0.722475,-0.182989,-0.709699,-0.164301,-0.682776,-0.169089,-0.689039,-0.179549,-0.697161,-0.20545,-0.710523,-0.250692,-0.711491,-0.312267,-0.710791,-0.404113,-0.726987,-0.526401,-0.750278,-0.694226,-0.720652,-0.898147,-0.706744,-1.10138,-0.655407,-1.31901,-0.564277,-1.50364,-0.452705,-1.6262,-0.364218,-1.7031,-0.371127,-1.74438,-0.318869,-1.7777,-0.226311,-1.78561,-0.107416,-1.77909,0.00922913,-1.76187,0.243114,-1.73973,0.439446,-1.6854,0.610058,-1.63602,0.803522,-1.50533,0.97963,-1.34096,1.12591,-1.12414,1.24112,-0.91523,1.33712,-0.687961,1.38769,-0.489987,1.38838,-0.338208,1.4217,-0.187684,1.44055,-0.0637037,1.44775,0.0779809,1.45472,0.178585,1.4327,0.268207,1.42213,0.295071,1.37573,0.296548,1.32642,0.278279,1.26947,3 +-0.339759,-1.84184,-0.339611,-1.84085,-0.336648,-1.8384,-0.335955,-1.83215,-0.33251,-1.81779,-0.321582,-1.8147,-0.277019,-1.82502,-0.227766,-1.83954,-0.137361,-1.87783,-0.0226737,-1.92599,0.103433,-1.91639,0.247078,-1.92391,0.405948,-1.91541,0.571626,-1.9203,0.755633,-1.92002,0.943117,-1.94843,1.15391,-1.94165,1.37595,-1.90973,1.5943,-1.82272,1.79144,-1.67774,1.92617,-1.47749,2.00457,-1.27919,2.04204,-1.05832,2.06548,-0.785653,2.08511,-0.531302,2.10015,-0.265463,2.11624,0.0325889,2.11464,0.293715,2.09707,0.481149,2.069,0.533118,2.00443,0.649476,1.94537,0.783279,1.84208,0.873274,1.6926,0.965482,1.55854,0.986875,1.38625,1.01704,1.30284,1.03202,1.17377,1.05388,1.10115,1.07439,1.04163,1.10522,0.985423,1.1244,0.867263,1.15712,0.73009,1.18136,0.605984,1.13811,0.492685,1.06326,4 +0.214497,-1.86653,0.216349,-1.87795,0.230359,-1.8879,0.256283,-1.89415,0.289962,-1.89251,0.354564,-1.90256,0.443792,-1.91479,0.597667,-1.94465,0.772634,-1.95883,0.949713,-1.93982,1.1227,-1.87477,1.29351,-1.75857,1.47809,-1.63117,1.65913,-1.49991,1.84128,-1.36957,2.02755,-1.22035,2.1966,-1.06379,2.33678,-0.841248,2.39425,-0.643898,2.39491,-0.43662,2.32088,-0.235131,2.17999,-0.144094,2.00805,-0.105253,1.82254,-0.0124533,1.66223,0.13721,1.52148,0.300117,1.38774,0.469872,1.28095,0.617639,1.18709,0.738897,1.08991,0.819395,0.957056,0.916737,0.875384,0.939019,0.702024,0.980594,0.561876,0.965482,0.435288,0.943961,0.323688,0.906998,0.215061,0.870767,0.117942,0.840531,0.0472321,0.82107,0.0131182,0.809445,-0.00691933,0.829524,0.000959476,0.852325,-0.00401626,0.870326,-0.0129333,0.849368,-0.0219333,0.832796,4 +-1.03985,-2.07642,-1.04186,-2.07564,-1.04047,-2.07351,-1.04658,-2.06762,-1.05531,-2.05437,-1.06944,-2.04064,-1.06054,-2.03015,-1.03208,-2.0367,-0.994403,-2.05343,-0.921921,-2.07785,-0.864361,-2.05494,-0.819632,-2.00659,-0.76744,-1.96955,-0.739518,-1.96095,-0.733213,-1.98881,-0.736715,-2.07696,-0.765044,-2.17966,-0.812005,-2.25044,-0.829495,-2.33245,-0.83982,-2.38694,-0.812852,-2.4294,-0.767459,-2.52776,-0.712772,-2.61951,-0.651255,-2.6941,-0.582103,-2.73244,-0.514598,-2.73784,-0.422735,-2.75308,-0.332241,-2.75096,-0.238189,-2.70914,-0.133997,-2.6483,-0.0122625,-2.58932,0.100213,-2.5337,0.216477,-2.45233,0.31735,-2.31981,0.415574,-2.17642,0.496014,-2.03627,0.562042,-1.91071,0.645834,-1.78616,0.722119,-1.69891,0.800716,-1.57004,0.855585,-1.43593,0.913337,-1.2813,0.947599,-1.12532,0.96854,-0.958438,0.973024,-0.816936,4 +-0.164709,-0.792368,-0.164024,-0.778124,-0.150914,-0.78658,-0.158274,-0.766338,-0.151784,-0.759378,-0.147435,-0.697364,-0.120338,-0.684058,-0.0690478,-0.656484,-0.0209518,-0.648539,0.0296,-0.628151,0.0725604,-0.59963,0.125169,-0.587452,0.173289,-0.575425,0.23622,-0.618494,0.280055,-0.640176,0.337111,-0.706405,0.388555,-0.766262,0.44982,-0.856701,0.507806,-0.914691,0.584416,-1.00071,0.646323,-1.09023,0.671224,-1.16564,0.726998,-1.27201,0.7734,-1.32858,0.849096,-1.36287,0.921365,-1.3643,1.02352,-1.36028,1.15104,-1.35816,1.28572,-1.32344,1.42371,-1.29621,1.54762,-1.23718,1.63966,-1.19446,1.70482,-1.14966,1.77407,-1.05625,1.84432,-0.9741,1.89358,-0.853428,1.96863,-0.755097,2.03506,-0.652816,2.10884,-0.578943,2.19062,-0.481115,2.27451,-0.537821,2.30494,-0.486166,2.29801,-0.347786,2.27714,-0.280504,2.25103,-0.222536,4 +-0.00911567,-0.928219,-0.00795162,-0.938758,0.005507,-0.947486,0.00950838,-0.927439,0.0188728,-0.921292,0.036988,-0.898248,0.0677238,-0.863548,0.110844,-0.840525,0.148356,-0.837675,0.196908,-0.821463,0.237301,-0.7798,0.277594,-0.72524,0.304758,-0.710791,0.31751,-0.632026,0.331745,-0.626443,0.358328,-0.734961,0.39968,-0.870386,0.484593,-1.05806,0.603301,-1.31293,0.765503,-1.50039,0.909502,-1.65495,1.06887,-1.79805,1.21446,-1.83072,1.36977,-1.73988,1.52131,-1.55848,1.66076,-1.25115,1.79483,-0.906765,1.90894,-0.516026,1.99838,-0.195554,2.05789,-0.00775822,2.16042,0.24067,2.26198,0.503013,2.27485,0.781313,2.151,1.09925,2.00193,1.35906,1.82662,1.60846,1.63106,1.79791,1.42381,1.90717,1.19358,1.94103,0.96752,1.91184,0.762809,1.75444,0.590772,1.52815,0.45818,1.25907,0.393781,0.9247,0.389761,0.760009,4 +-0.0771848,-1.73074,-0.0860129,-1.71727,-0.082483,-1.72705,-0.0694329,-1.72063,-0.0614211,-1.70574,-0.0449482,-1.68915,-0.00540516,-1.69681,0.0473784,-1.69491,0.0954575,-1.70218,0.144634,-1.7189,0.216702,-1.70843,0.287731,-1.70345,0.355327,-1.67181,0.429329,-1.66265,0.538504,-1.69982,0.687962,-1.76284,0.887706,-1.8077,1.12128,-1.83233,1.36745,-1.7749,1.5983,-1.66158,1.77065,-1.49359,1.88762,-1.29537,1.94,-1.09119,1.96613,-0.835049,1.96583,-0.515031,1.97156,-0.184696,1.98769,0.145933,2.00639,0.536623,2.03126,0.255558,2.04673,0.405853,2.02672,0.633718,1.91263,0.830034,1.6837,0.980594,1.41753,1.11415,1.194,1.20157,0.984189,1.25084,0.758924,1.30073,0.553232,1.34718,0.361542,1.35438,0.207706,1.34717,0.076555,1.31208,-0.026723,1.23664,-0.103728,1.15544,-0.172108,1.10047,-0.202061,1.02684,4 +-0.835648,-1.91593,-0.837025,-1.915,-0.844979,-1.91265,-0.849201,-1.90652,-0.844481,-1.88008,-0.844025,-1.87745,-0.830671,-1.8763,-0.799228,-1.87895,-0.751026,-1.90485,-0.670932,-1.91221,-0.534879,-1.95794,-0.301483,-2.00659,-0.0188942,-2.03727,0.276892,-2.05591,0.569561,-2.04386,0.879301,-1.97698,1.15391,-1.86722,1.42227,-1.64649,1.61819,-1.36076,1.75524,-1.06519,1.83045,-0.76758,1.81742,-0.517041,1.76997,-0.318869,1.66792,-0.111173,1.55382,0.0556448,1.43572,0.203154,1.32349,0.405084,1.21602,0.585247,1.11034,0.738897,1.01202,0.835338,0.890234,0.948184,0.744373,1.04807,0.596477,1.10321,0.459968,1.14388,0.346599,1.15865,0.27583,1.11329,0.196299,1.11259,0.108701,1.1605,0.0102376,1.20774,-0.0702836,1.2262,-0.164566,1.24502,-0.257092,1.23664,-0.348414,1.20728,-0.428517,1.13811,-0.493714,1.06326,4 +-0.903717,-1.47146,-0.895571,-1.47015,-0.893851,-1.4672,-0.898546,-1.46037,-0.914758,-1.44426,-0.885019,-1.45062,-0.820248,-1.51738,-0.714589,-1.57663,-0.549991,-1.60764,-0.37821,-1.58082,-0.195124,-1.54216,-0.00687583,-1.44168,0.20362,-1.34693,0.419188,-1.24227,0.62125,-1.1631,0.783604,-1.10612,0.954286,-1.01918,1.10973,-0.887674,1.24806,-0.707622,1.35694,-0.484945,1.4238,-0.21896,1.40804,0.0666866,1.32782,0.338448,1.21515,0.596284,1.08761,0.789381,0.953498,0.914144,0.852099,1.05289,0.750424,1.15201,0.638857,1.22231,0.54471,1.31251,0.455662,1.34123,0.362291,1.32834,0.258663,1.33308,0.164568,1.35195,0.0904171,1.3018,-0.0113638,1.30586,-0.0943956,1.31419,-0.196925,1.34718,-0.285575,1.35438,-0.366765,1.37406,-0.452052,1.3657,-0.52434,1.35589,-0.602191,1.33682,-0.64072,1.28878,-0.622358,1.2452,4 +-0.787034,-1.48378,-0.788262,-1.49487,-0.786302,-1.49195,-0.789957,-1.48516,-0.794291,-1.46916,-0.782586,-1.45062,-0.747119,-1.46609,-0.682857,-1.47146,-0.571161,-1.49956,-0.430484,-1.5532,-0.298067,-1.56982,-0.149111,-1.55191,-0.00880133,-1.52287,0.144737,-1.51345,0.321428,-1.52093,0.507178,-1.52015,0.699148,-1.51017,0.87817,-1.46065,1.0451,-1.3289,1.16381,-1.12967,1.25635,-0.928868,1.3145,-0.727822,1.32782,-0.499615,1.32557,-0.242729,1.30449,0.0067619,1.275,0.235475,1.23776,0.437478,1.19436,0.585247,1.13222,0.755045,1.06765,0.851212,1.00164,0.99532,0.908179,1.07922,0.80757,1.16452,0.694276,1.23302,0.573236,1.24454,0.46726,1.26462,0.374467,1.28732,0.293906,1.33388,0.204387,1.36775,0.124305,1.41442,0.030191,1.41933,-0.0543578,1.43541,-0.130905,1.40165,-0.207491,1.35153,-0.287823,1.29373,4 +-0.8454,-1.80482,-0.846808,-1.77908,-0.854733,-1.8013,-0.85905,-1.795,-0.864568,-1.74307,-0.864522,-1.72679,-0.851573,-1.72245,-0.831015,-1.74749,-0.772197,-1.76976,-0.72326,-1.76029,-0.617223,-1.75005,-0.525025,-1.78612,-0.383074,-1.7801,-0.211004,-1.8118,-0.0301367,-1.86497,0.156326,-1.90562,0.3331,-1.91189,0.496145,-1.90973,0.639104,-1.85459,0.765503,-1.7583,0.885571,-1.65495,0.986994,-1.55483,1.06712,-1.43636,1.13784,-1.31216,1.1852,-1.21609,1.22142,-1.05729,1.25919,-0.890603,1.29181,-0.677988,1.30765,-0.405066,1.32356,-0.166771,1.29134,0.051991,1.21389,0.222679,1.10314,0.382884,0.979512,0.50465,0.878678,0.657665,0.764005,0.769451,0.646399,0.8573,0.534702,0.960512,0.417034,1.06109,0.300354,1.159,0.178585,1.21827,0.0654725,1.23664,-0.0312401,1.24613,-0.119035,1.20092,-0.184899,1.16031,4 +-0.835648,-1.48378,-0.837025,-1.48248,-0.844979,-1.47954,-0.849201,-1.47274,-0.85455,-1.45669,-0.844025,-1.45062,-0.820248,-1.45325,-0.756936,-1.48464,-0.64523,-1.52658,-0.514111,-1.59459,-0.359865,-1.63916,-0.189764,-1.64833,0.00134384,-1.63117,0.195549,-1.62194,0.424808,-1.61724,0.66669,-1.60582,0.909899,-1.58454,1.14444,-1.50714,1.35553,-1.31293,1.50177,-1.08134,1.5434,-0.832123,1.54839,-0.630523,1.50921,-0.466746,1.45809,-0.308542,1.38033,-0.140028,1.30713,0.0577454,1.19494,0.243114,1.12937,0.439446,1.04453,0.642285,0.956398,0.771705,0.856823,0.885291,0.733479,1.00132,0.617597,1.13386,0.510896,1.21818,0.386028,1.18728,0.314136,1.22333,0.196299,1.27385,0.0901711,1.32051,0.00101285,1.36775,-0.107314,1.38753,-0.183122,1.40589,-0.284727,1.3824,-0.348414,1.33682,-0.410825,1.26367,-0.476553,1.16031,4 +-0.641193,-1.86653,-0.651705,-1.86557,-0.64944,-1.86315,-0.651772,-1.85694,-0.653738,-1.83027,-0.659655,-1.8147,-0.642664,-1.81223,-0.608777,-1.81325,-0.560603,-1.8238,-0.503678,-1.82936,-0.462808,-1.7916,-0.423443,-1.74482,-0.383074,-1.71239,-0.343106,-1.70331,-0.329959,-1.72735,-0.353983,-1.7914,-0.376803,-1.86722,-0.406818,-1.92525,-0.435478,-1.99793,-0.381112,-2.06454,-0.131096,-2.1713,0.133169,-2.30073,0.364198,-2.38943,0.585669,-2.34861,0.80571,-2.19438,0.985686,-1.94601,1.15207,-1.63559,1.31348,-1.29337,1.43921,-0.936781,1.5127,-0.580382,1.49192,-0.23096,1.36675,0.0669388,1.20869,0.336936,1.03044,0.549218,0.868847,0.657665,0.744902,0.769451,0.580756,0.911052,0.432858,1.10722,0.269104,1.27438,0.115059,1.34717,-0.0347281,1.39251,-0.201823,1.39562,-0.321237,1.38866,-0.419694,1.31389,-0.485112,1.22094,4 +-0.52451,-1.9036,-0.505416,-1.915,-0.483265,-1.92505,-0.464241,-1.93131,-0.432891,-1.92989,-0.393296,-1.92767,-0.329247,-1.95323,-0.259553,-1.95783,-0.179647,-1.99939,-0.0958676,-2.02261,-0.0201097,-2.01339,0.0743788,-1.99278,0.163144,-1.95605,0.256556,-1.93383,0.362748,-1.96128,0.464688,-2.03409,0.566045,-2.09038,0.692933,-2.142,0.806267,-2.17314,0.922379,-2.17742,1.00516,-2.15512,1.0572,-2.15481,1.11242,-2.17581,1.18203,-2.13476,1.25023,-2.08027,1.33932,-1.99446,1.45205,-1.89475,1.57331,-1.77926,1.71333,-1.62956,1.83534,-1.47117,1.91531,-1.30008,1.97811,-1.1477,1.97928,-0.996392,1.97778,-0.818381,1.98226,-0.659174,1.95104,-0.537099,1.94987,-0.365421,1.97023,-0.212807,1.98868,-0.0455721,2.01457,0.0969714,2.01483,0.253099,1.99157,0.401715,1.94457,0.520439,1.87043,0.585733,1.79646,0.62654,4 +-0.670351,-1.33561,-0.661488,-1.33418,-0.659245,-1.34344,-0.651772,-1.33643,-0.653738,-1.30725,-0.618661,-1.32507,-0.590437,-1.33789,-0.534698,-1.34001,-0.444194,-1.378,-0.367723,-1.41512,-0.267195,-1.41737,-0.189764,-1.42793,-0.0998464,-1.41464,-0.00770102,-1.43214,0.0629262,-1.49341,0.135109,-1.57726,0.199997,-1.67382,0.276194,-1.73941,0.328668,-1.80676,0.403391,-1.82278,0.466933,-1.81631,0.530814,-1.84666,0.56828,-1.88006,0.618785,-1.8386,0.686424,-1.8031,0.760644,-1.71976,0.841409,-1.66799,0.934525,-1.56867,1.03359,-1.45235,1.11217,-1.31209,1.20222,-1.17429,1.25752,-1.05426,1.28258,-0.950445,1.29529,-0.803546,1.31224,-0.687803,1.30969,-0.564608,1.31219,-0.432641,1.31268,-0.306177,1.33229,-0.192278,1.3474,-0.0509476,1.35638,0.0386043,1.34649,0.149932,1.33731,0.22239,1.30454,0.322098,1.26463,0.371812,4 +-0.359214,-1.39738,-0.368859,-1.396,-0.346403,-1.41769,-0.345804,-1.42316,-0.322441,-1.41935,-0.29081,-1.41293,-0.245694,-1.42761,-0.196033,-1.43205,-0.105578,-1.44552,-0.0226737,-1.48419,0.0725604,-1.47282,0.145496,-1.48305,0.233951,-1.46878,0.31751,-1.48632,0.404121,-1.52093,0.48596,-1.59151,0.566045,-1.67382,0.658219,-1.73941,0.758489,-1.79086,0.849994,-1.82278,0.909502,-1.81631,0.951922,-1.83048,0.999068,-1.84719,1.01634,-1.82218,1.04422,-1.75415,1.10353,-1.70364,1.15207,-1.6032,1.20516,-1.48773,1.27478,-1.33959,1.34582,-1.24845,1.38051,-1.12715,1.41038,-1.00757,1.40925,-0.919792,1.3666,-0.788648,1.3615,-0.673519,1.35755,-0.537099,1.35912,-0.44605,1.35898,-0.359458,1.36924,-0.205583,1.37519,-0.0509476,1.38419,0.0654161,1.39256,0.136708,1.37357,0.24831,1.33105,0.322098,1.27324,0.383969,4 +-0.670351,-1.79245,-0.671221,-1.79142,-0.668999,-1.7889,-0.651772,-1.80736,-0.643721,-1.81779,-0.618661,-1.80212,-0.579959,-1.81223,-0.513524,-1.83954,-0.423023,-1.85081,-0.33637,-1.88459,-0.246595,-1.87477,-0.149111,-1.85505,-0.0593703,-1.82068,0.0329701,-1.82539,0.124986,-1.85124,0.220142,-1.93418,0.299838,-1.97141,0.403556,-1.9872,0.51972,-1.99793,0.632714,-1.96783,0.718116,-1.91312,0.788171,-1.84666,0.851721,-1.86359,0.8949,-1.80569,0.968325,-1.72154,1.02851,-1.60668,1.09851,-1.50602,1.1727,-1.35816,1.26384,-1.21068,1.33466,-1.05756,1.39163,-0.891338,1.36675,-0.773994,1.36707,-0.628616,1.35644,-0.506214,1.34178,-0.415853,1.33839,-0.303298,1.34972,-0.177346,1.34045,-0.0128186,1.36001,0.101076,1.3567,0.231359,1.35638,0.346911,1.32805,0.481235,1.292,0.546358,1.23377,0.54804,1.15315,0.62654,4 +-0.466144,-1.49616,-0.466385,-1.49487,-0.453952,-1.50429,-0.444493,-1.49753,-0.432891,-1.48159,-0.403518,-1.47574,-0.37105,-1.47889,-0.301845,-1.48464,-0.221988,-1.49956,-0.127221,-1.52558,-0.040709,-1.51443,0.054052,-1.4968,0.132813,-1.48229,0.23622,-1.48632,0.321428,-1.52093,0.400872,-1.59151,0.488396,-1.6589,0.577182,-1.72389,0.674907,-1.759,0.765503,-1.77439,0.849706,-1.78403,0.905119,-1.78187,0.953704,-1.83072,1.00532,-1.80569,1.06592,-1.77049,1.11427,-1.70364,1.1842,-1.61936,1.25929,-1.52012,1.35152,-1.40404,1.40145,-1.24845,1.46962,-1.12715,1.48681,-1.00757,1.49373,-0.904432,1.44808,-0.788648,1.46002,-0.659174,1.45326,-0.537099,1.45289,-0.405764,1.45158,-0.292814,1.47095,-0.192278,1.47713,-0.0643631,1.49548,0.0252273,1.48471,0.202945,1.45515,0.300149,1.41064,0.347209,1.34184,0.432494,4 +-0.592579,-1.53317,-0.583427,-1.51958,-0.590814,-1.52904,-0.592578,-1.50995,-0.59353,-1.49407,-0.598163,-1.47574,-0.569535,-1.47889,-0.50291,-1.49775,-0.412466,-1.54012,-0.263176,-1.56704,-0.123053,-1.56982,0.0337777,-1.55191,0.20362,-1.4958,0.398852,-1.48632,0.600564,-1.45215,0.804876,-1.42024,0.998673,-1.37623,1.19071,-1.30578,1.33164,-1.20145,1.42932,-1.0491,1.47167,-0.880496,1.44317,-0.727822,1.36187,-0.598223,1.34767,-0.538889,1.34782,-0.400854,1.3607,-0.216947,1.39849,-0.0808249,1.42173,0.066968,1.43921,0.22333,1.43481,0.310404,1.36933,0.445039,1.27937,0.503013,1.15592,0.597458,1.03044,0.742515,0.977198,0.815097,0.898026,0.920783,0.777687,1.00515,0.655123,1.05388,0.518697,1.12773,0.402295,1.18589,0.271313,1.21827,0.176059,1.23664,0.0866049,1.24613,0.0224033,1.22597,-0.0219333,1.19668,4 +-0.806489,-0.804742,-0.807778,-0.815173,-0.805861,-0.811331,-0.799857,-0.791127,-0.794291,-0.784284,-0.782586,-0.760113,-0.726217,-0.748189,-0.64051,-0.748533,-0.52882,-0.743078,-0.37821,-0.738615,-0.236322,-0.710523,-0.0983201,-0.656376,0.0316748,-0.575425,0.165072,-0.482877,0.290372,-0.378714,0.411536,-0.278069,0.521658,-0.156234,0.611895,0.0104209,0.686883,0.152584,0.729311,0.337129,0.73005,0.507049,0.717966,0.650485,0.704316,0.79862,0.685073,0.941769,0.664787,1.05028,0.621308,1.17271,0.594994,1.29581,0.555576,1.39499,0.496358,1.4479,0.388939,1.50341,0.299668,1.5456,0.209436,1.54637,0.100343,1.53229,0.00156884,1.51551,-0.0869085,1.48786,-0.164537,1.4434,-0.244445,1.40823,-0.326588,1.40052,-0.424281,1.40772,-0.515029,1.42784,-0.609699,1.41933,-0.681048,1.39562,-0.729079,1.36274,-0.746821,1.30131,-0.759604,1.22094,4 +-1.25381,-0.755351,-1.26621,-0.741022,-1.26532,-0.737079,-1.27361,-0.729128,-1.28623,-0.709566,-1.29481,-0.684782,-1.29035,-0.632775,-1.26488,-0.617076,-1.22717,-0.580961,-1.16237,-0.545303,-1.09085,-0.516461,-1.02285,-0.504779,-0.959623,-0.494205,-0.902097,-0.523533,-0.85728,-0.571392,-0.81114,-0.649294,-0.753918,-0.736503,-0.673093,-0.810274,-0.578751,-0.83507,-0.453559,-0.823426,-0.322482,-0.783681,-0.182601,-0.744074,-0.0325369,-0.663962,0.088707,-0.571796,0.198521,-0.417195,0.267677,-0.216947,0.327145,0.000194931,0.360671,0.22893,0.375738,0.432773,0.344474,0.59675,0.310844,0.759505,0.253068,0.876723,0.174236,0.980594,0.0830948,1.03978,-0.00810275,1.08711,-0.0879257,1.08584,-0.178802,1.11259,-0.280287,1.1472,-0.396511,1.20774,-0.533568,1.2665,-0.665365,1.29864,-0.782392,1.30288,-0.883144,1.25907,-0.967892,1.1507,-1.02549,1.0511,4 +-0.709262,-0.903523,-0.710251,-0.901709,-0.708117,-0.897984,-0.711016,-0.890282,-0.724014,-0.859001,-0.710872,-0.835445,-0.663566,-0.812265,-0.57699,-0.774824,-0.444194,-0.729597,-0.294529,-0.655767,-0.143652,-0.558016,-0.0170655,-0.463472,0.112575,-0.318258,0.205743,-0.170988,0.259369,-0.0346742,0.294567,0.0788468,0.310906,0.200875,0.287746,0.335675,0.257062,0.439273,0.210261,0.514412,0.155953,0.603864,0.121498,0.666666,0.0694456,0.749351,0.0445149,0.793725,0.144315,0.821993,0.128397,0.946465,0.112909,1.06912,0.111639,1.20063,0.101678,1.30284,0.0329331,1.37615,-0.0568487,1.41981,-0.161809,1.43739,-0.226884,1.42504,-0.303996,1.36685,-0.352973,1.25883,-0.432529,1.11329,-0.516377,1.00515,-0.622974,0.907174,-0.720094,0.834376,-0.830049,0.755667,-0.91574,0.668653,-0.985174,0.600485,-1.03726,0.546358,-1.08286,0.48529,-1.1027,0.432494,4 +-0.806489,-0.804742,-0.807778,-0.815173,-0.805861,-0.811331,-0.799857,-0.791127,-0.794291,-0.784284,-0.782586,-0.760113,-0.726217,-0.748189,-0.64051,-0.748533,-0.52882,-0.743078,-0.37821,-0.738615,-0.236322,-0.710523,-0.0983201,-0.656376,0.0316748,-0.575425,0.165072,-0.482877,0.290372,-0.378714,0.411536,-0.278069,0.521658,-0.156234,0.611895,0.0104209,0.686883,0.152584,0.729311,0.337129,0.73005,0.507049,0.717966,0.650485,0.704316,0.79862,0.685073,0.941769,0.664787,1.05028,0.621308,1.17271,0.594994,1.29581,0.555576,1.39499,0.496358,1.4479,0.388939,1.50341,0.299668,1.5456,0.209436,1.54637,0.100343,1.53229,0.00156884,1.51551,-0.0869085,1.48786,-0.164537,1.4434,-0.244445,1.40823,-0.326588,1.40052,-0.424281,1.40772,-0.515029,1.42784,-0.609699,1.41933,-0.681048,1.39562,-0.729079,1.36274,-0.746821,1.30131,-0.759604,1.22094,4 +-1.25381,-0.755351,-1.26621,-0.741022,-1.26532,-0.737079,-1.27361,-0.729128,-1.28623,-0.709566,-1.29481,-0.684782,-1.29035,-0.632775,-1.26488,-0.617076,-1.22717,-0.580961,-1.16237,-0.545303,-1.09085,-0.516461,-1.02285,-0.504779,-0.959623,-0.494205,-0.902097,-0.523533,-0.85728,-0.571392,-0.81114,-0.649294,-0.753918,-0.736503,-0.673093,-0.810274,-0.578751,-0.83507,-0.453559,-0.823426,-0.322482,-0.783681,-0.182601,-0.744074,-0.0325369,-0.663962,0.088707,-0.571796,0.198521,-0.417195,0.267677,-0.216947,0.327145,0.000194931,0.360671,0.22893,0.375738,0.432773,0.344474,0.59675,0.310844,0.759505,0.253068,0.876723,0.174236,0.980594,0.0830948,1.03978,-0.00810275,1.08711,-0.0879257,1.08584,-0.178802,1.11259,-0.280287,1.1472,-0.396511,1.20774,-0.533568,1.2665,-0.665365,1.29864,-0.782392,1.30288,-0.883144,1.25907,-0.967892,1.1507,-1.02549,1.0511,4 +-0.709262,-0.903523,-0.710251,-0.901709,-0.708117,-0.897984,-0.711016,-0.890282,-0.724014,-0.859001,-0.710872,-0.835445,-0.663566,-0.812265,-0.57699,-0.774824,-0.444194,-0.729597,-0.294529,-0.655767,-0.143652,-0.558016,-0.0170655,-0.463472,0.112575,-0.318258,0.205743,-0.170988,0.259369,-0.0346742,0.294567,0.0788468,0.310906,0.200875,0.287746,0.335675,0.257062,0.439273,0.210261,0.514412,0.155953,0.603864,0.121498,0.666666,0.0694456,0.749351,0.0445149,0.793725,0.144315,0.821993,0.128397,0.946465,0.112909,1.06912,0.111639,1.20063,0.101678,1.30284,0.0329331,1.37615,-0.0568487,1.41981,-0.161809,1.43739,-0.226884,1.42504,-0.303996,1.36685,-0.352973,1.25883,-0.432529,1.11329,-0.516377,1.00515,-0.622974,0.907174,-0.720094,0.834376,-0.830049,0.755667,-0.91574,0.668653,-0.985174,0.600485,-1.03726,0.546358,-1.08286,0.48529,-1.1027,0.432494,4 +0.661822,-0.619554,0.655267,-0.61749,0.660454,-0.613379,0.670788,-0.605237,0.701553,-0.634849,0.713134,-0.747585,0.736308,-0.914831,0.745826,-1.05086,0.730293,-1.20241,0.667425,-1.3875,0.587329,-1.54216,0.490946,-1.67589,0.375565,-1.73946,0.246362,-1.79827,0.0939293,-1.85124,-0.045676,-1.93418,-0.210438,-2.00117,-0.42998,-1.9872,-0.698135,-1.90235,-0.924249,-1.72606,-1.0521,-1.49359,-1.10663,-1.24675,-1.12088,-0.976186,-1.10402,-0.62112,-1.07001,-0.270405,-0.996816,0.0738709,-0.872695,0.437478,-0.689528,0.747139,-0.479429,1.04509,-0.256347,1.32846,-0.00114474,1.5456,0.264019,1.63982,0.511996,1.65491,0.755421,1.56008,0.967366,1.41632,1.13736,1.23711,1.2466,1.08578,1.29415,0.960512,1.34151,0.861044,1.3474,0.76914,1.33783,0.655218,1.30037,0.521023,1.22855,0.364921,1.12767,0.209073,1.03307,0.0321922,5 +0.885485,-0.298514,0.889401,-0.296168,0.895111,-0.279272,0.907714,-0.282982,0.9224,-0.298648,0.948773,-0.345818,0.976597,-0.45334,1.01036,-0.57761,1.02657,-0.743078,1.03339,-0.904252,0.999155,-1.08475,0.958252,-1.26259,0.871214,-1.41464,0.734257,-1.56769,0.548874,-1.72735,0.34772,-1.89138,0.11128,-2.03086,-0.152155,-2.142,-0.435478,-2.15724,-0.670839,-2.06454,-0.788921,-1.91312,-0.907808,-1.78187,-1.05289,-1.6335,-1.15924,-1.37797,-1.23268,-1.06937,-1.29687,-0.717886,-1.37621,-0.275119,-1.43657,0.196538,-1.43328,0.642285,-1.369,1.02624,-1.19334,1.34123,-0.947874,1.60867,-0.691365,1.88477,-0.446613,2.05065,-0.195311,2.03176,0.0556465,1.88349,0.308824,1.67699,0.525461,1.46722,0.712847,1.27438,0.865579,1.11864,0.957567,0.963525,0.968606,0.78603,0.938556,0.572278,0.888952,0.359737,0.818617,0.153504,5 +0.875732,-0.520772,0.879618,-0.506237,0.885306,-0.514377,0.897815,-0.49366,0.9224,-0.485468,0.958995,-0.47137,0.997499,-0.530264,1.02097,-0.643367,1.03713,-0.783636,1.03339,-0.931868,0.988882,-1.08475,0.917599,-1.23503,0.830738,-1.33342,0.713922,-1.45926,0.569561,-1.58972,0.400872,-1.76284,0.188929,-1.86722,-0.0363443,-1.97168,-0.280229,-1.98203,-0.562199,-1.96783,-0.84878,-1.81631,-1.08323,-1.6197,-1.22292,-1.37062,-1.30283,-1.09823,-1.34109,-0.792199,-1.36114,-0.475514,-1.35478,-0.0969869,-1.32831,0.293715,-1.21398,0.626136,-1.0463,0.867154,-0.83682,1.08966,-0.620375,1.2505,-0.416912,1.33308,-0.202141,1.39658,-0.00810275,1.44495,0.151361,1.41589,0.318229,1.36795,0.50693,1.26718,0.685125,1.1544,0.791471,1.07834,0.994677,0.896524,1.08844,0.772806,1.08358,0.637049,1.05695,0.510401,1.02446,0.371812,5 +-0.582827,-1.19981,-0.583427,-1.19826,-0.590814,-1.19494,-0.582679,-1.1877,-0.583461,-1.1703,-0.577666,-1.1493,-0.569535,-1.1584,-0.545257,-1.19543,-0.518262,-1.26993,-0.503678,-1.35989,-0.534879,-1.38965,-0.585953,-1.41412,-0.686488,-1.41464,-0.810666,-1.41854,-0.939972,-1.52093,-1.13011,-1.44879,-1.34184,-1.34647,-1.56444,-1.19741,-1.74889,-0.962518,-1.8778,-0.710622,-1.90131,-0.525507,-1.84351,-0.306261,-1.73306,-0.170921,-1.61206,-0.04536,-1.49289,0.0882569,-1.39327,0.251601,-1.30122,0.388852,-1.2092,0.569016,-1.10435,0.722818,-0.990678,0.851212,-0.847937,0.97963,-0.631269,1.15706,-0.385259,1.27177,-0.151213,1.30738,0.1003,1.24454,0.323688,1.12707,0.515112,1.01856,0.627352,0.973876,0.731344,0.914381,0.81001,0.849749,0.855585,0.7759,0.876459,0.626991,0.847935,0.481587,0.800542,0.296987,0.750016,0.0807168,5 +-0.816192,-0.619554,-0.827293,-0.61749,-0.82542,-0.600977,-0.849201,-0.555659,-0.844481,-0.572612,-0.833803,-0.596922,-0.799346,-0.619982,-0.693416,-0.669659,-0.539433,-0.662019,-0.33637,-0.710999,-0.11278,-0.738246,0.155686,-0.794105,0.456517,-0.791953,0.744399,-0.754052,1.00382,-0.667702,1.25142,-0.535071,1.45344,-0.319876,1.58434,-0.0204856,1.60622,0.295929,1.52592,0.530497,1.41187,0.636136,1.23262,0.634233,1.03306,0.650743,0.795496,0.711493,0.55632,0.756769,0.310558,0.78486,0.102164,0.793741,-0.083209,0.795763,-0.238189,0.755045,-0.378755,0.708073,-0.502538,0.570825,-0.58758,0.409568,-0.659712,0.229616,-0.701303,0.058652,-0.707675,-0.0580135,-0.691018,-0.152026,-0.657022,-0.217631,-0.604444,-0.306177,-0.553714,-0.365595,-0.49649,-0.413921,-0.442798,-0.417139,-0.386118,-0.366915,-0.321237,-0.360774,-0.234005,-0.355836,-0.142018,-0.36811,5 +-0.349461,-1.55787,-0.339611,-1.55663,-0.336648,-1.5662,-0.335955,-1.55953,-0.322441,-1.54388,-0.311307,-1.51337,-0.297921,-1.50453,-0.259553,-1.45835,-0.21143,-1.44552,-0.148141,-1.42896,-0.102454,-1.41737,-0.0576665,-1.42793,-0.0492774,-1.48229,-0.0991847,-1.66265,-0.247266,-1.82371,-0.44968,-1.94843,-0.74285,-1.94165,-1.14771,-1.75486,-1.54586,-1.26517,-1.75711,-0.646143,-1.81758,0.248945,-1.73823,1.0883,-1.52898,1.76816,-1.22552,2.47182,-0.777287,3.0394,-0.38601,3.17647,-0.62628,2.20277,-0.245592,1.76747,0.189366,1.43175,0.400099,1.02624,0.53366,0.712369,0.624313,0.409568,0.744264,-0.000252264,0.857276,-0.357548,0.947652,-0.630544,0.99379,-0.867212,1.00274,-1.09102,0.988521,-1.30618,0.897772,-1.48556,0.726608,-1.62381,0.475324,-1.69061,0.176059,-1.65234,-0.0765506,-1.50113,-0.154417,-1.30999,-0.142018,-1.21724,5 +0.477071,-1.53317,0.489462,-1.53191,0.494279,-1.5167,0.493158,-1.50995,0.510809,-1.5065,0.528711,-1.48826,0.527399,-1.53017,0.449508,-1.64233,0.307051,-1.76976,0.123714,-1.85698,-0.11278,-1.83322,-0.342136,-1.67589,-0.534781,-1.46878,-0.688705,-1.28293,-0.79522,-1.06679,-0.906837,-0.834875,-0.975795,-0.572796,-0.97408,-0.221846,-0.889187,0.136619,-0.767373,0.466018,-0.621466,0.71685,-0.439958,0.926132,-0.259301,1.11084,-0.0548889,1.20502,0.187702,1.24588,0.417706,1.2858,0.648553,1.26342,0.858735,1.13585,1.04453,0.980636,1.22342,0.835338,1.35822,0.649476,1.39948,0.471865,1.38819,0.198962,1.34622,-0.0602165,1.27281,-0.31568,1.21392,-0.537099,1.14343,-0.72822,1.07188,-0.906143,0.99021,-1.04556,0.865579,-1.15328,0.716445,-1.18125,0.563137,-1.16205,0.440093,-1.11239,0.384959,-1.05888,0.355438,-1.01103,5 +0.700733,-1.59494,0.694298,-1.60607,0.689818,-1.59095,0.700436,-1.58432,0.71157,-1.60612,0.702912,-1.66404,0.673657,-1.77374,0.597667,-1.93153,0.497529,-2.03989,0.406003,-2.1193,0.288773,-2.16583,0.165823,-2.14437,0.0215296,-2.05077,-0.180474,-2.02879,-0.392018,-1.97507,-0.587866,-1.90562,-0.765044,-1.76309,-0.939307,-1.58454,-1.09215,-1.31293,-1.21398,-1.01686,-1.25542,-0.735308,-1.22358,-0.468427,-1.09819,-0.187391,-0.93839,0.0204533,-0.777287,0.235046,-0.653878,0.445526,-0.551287,0.631842,-0.462159,0.828155,-0.34787,0.980636,-0.178462,1.08987,0.0657346,1.12111,0.362291,1.11037,0.60701,1.08785,0.796131,0.995216,0.967366,0.858073,1.0799,0.686982,1.18095,0.534844,1.24785,0.45386,1.32302,0.314425,1.38448,0.177581,1.412,0.0654161,1.42939,-0.0621194,1.40984,-0.205256,1.37525,-0.305615,1.32468,-0.428792,5 +0.700733,-1.2986,0.694298,-1.2848,0.699572,-1.28159,0.720184,-1.28685,0.751743,-1.28234,0.784848,-1.29996,0.799013,-1.40196,0.809291,-1.52405,0.772634,-1.6887,0.667425,-1.80174,0.494659,-1.84705,0.318195,-1.85505,0.132813,-1.82068,-0.0483721,-1.74402,-0.226579,-1.68609,-0.396527,-1.62007,-0.532099,-1.43574,-0.684644,-1.16644,-0.793692,-0.898794,-0.827715,-0.613903,-0.812852,-0.283504,-0.802532,0.0342534,-0.724083,0.322049,-0.618082,0.563378,-0.44118,0.756769,-0.225234,0.946465,-0.00495347,1.13384,0.219951,1.24919,0.40867,1.19008,0.70048,1.1535,1.00164,1.04252,1.26847,0.923479,1.41984,0.750726,1.47867,0.534383,1.52899,0.299826,1.54898,0.04054,1.54665,-0.137003,1.56271,-0.319483,1.59116,-0.472269,1.58831,-0.61556,1.57895,-0.752257,1.52159,-0.870481,1.42798,-0.969802,1.28684,-1.02124,1.13599,-1.0353,5 +0.963257,-1.01463,0.977144,-1.00052,0.973296,-0.996933,0.986656,-0.989384,1.01276,-0.97105,1.05121,-0.948415,1.10195,-0.953266,1.14796,-1.03768,1.16409,-1.13483,1.15886,-1.27704,1.11242,-1.44509,1.03951,-1.60703,0.931928,-1.76653,0.795211,-1.93383,0.662623,-2.07138,0.475297,-2.19118,0.266577,-2.26893,0.021531,-2.28141,-0.196647,-2.1891,-0.441516,-2.04846,-0.657393,-1.83241,-0.837604,-1.55483,-0.928165,-1.22267,-0.949409,-0.867956,-0.885697,-0.49869,-0.750333,-0.168501,-0.551287,0.162165,-0.353903,0.439446,-0.161498,0.658364,0.0551942,0.867154,0.266257,1.01108,0.482351,1.07922,0.702024,1.0419,0.908203,0.935749,1.06589,0.772184,1.22353,0.576945,1.34036,0.413872,1.39604,0.240508,1.42473,0.0611022,1.44934,-0.0912522,1.45836,-0.256268,1.46627,-0.406646,1.43702,-0.542156,1.38412,-0.669692,1.31612,-0.744149,5 +0.613209,-1.34799,0.616287,-1.34656,0.631141,-1.34344,0.631343,-1.33643,0.651362,-1.33216,0.692636,-1.32507,0.746786,-1.32504,0.788118,-1.3663,0.793804,-1.43204,0.782405,-1.51181,0.731471,-1.56982,0.663645,-1.62078,0.577893,-1.64473,0.480142,-1.68978,0.362748,-1.75487,0.220142,-1.84851,0.0336322,-1.95649,-0.163706,-2.01817,-0.387699,-1.99793,-0.574243,-1.83887,-0.729125,-1.67112,-0.814202,-1.47372,-0.860119,-1.25554,-0.894197,-1.04891,-0.874878,-0.808469,-0.803907,-0.556351,-0.66915,-0.307512,-0.494624,-0.0626016,-0.303997,0.142797,-0.133997,0.326278,0.00997302,0.492243,0.122057,0.627605,0.258663,0.689419,0.398876,0.683049,0.573236,0.643381,0.725749,0.59067,0.862093,0.4945,0.969991,0.427191,1.06415,0.32773,1.13428,0.231359,1.17088,0.132475,1.19902,0.0174,1.18324,-0.0756578,1.14536,-0.167533,1.11027,-0.246798,5 +1.40083,-0.236803,1.40633,-0.234402,1.4132,-0.229771,1.42096,-0.221036,1.46453,-0.199079,1.51221,-0.170098,1.57205,-0.145642,1.64534,-0.130712,1.70374,-0.16219,1.74436,-0.255364,1.74046,-0.391737,1.74054,-0.573703,1.7209,-0.791953,1.68966,-0.998162,1.65515,-1.21815,1.5704,-1.5059,1.50889,-1.86722,1.34123,-2.17297,1.10479,-2.444,0.801696,-2.59646,0.443002,-2.60693,0.0162214,-2.51151,-0.395336,-2.34016,-0.728562,-2.03604,-0.918209,-1.65631,-0.975376,-1.2027,-1.01199,-0.712402,-0.992688,-0.224494,-0.939917,0.22333,-0.834907,0.612624,-0.658532,0.948184,-0.391092,1.17266,-0.142458,1.36373,0.0728778,1.35195,0.317054,1.34471,0.591729,1.37466,0.880855,1.31419,1.14595,1.2272,1.38773,1.11442,1.56053,0.997668,1.67168,0.842901,1.65061,0.746299,1.63639,0.598198,1.58746,0.447651,1.51341,0.274763,5 +0.0589534,-1.64428,0.0603268,-1.64311,0.0641839,-1.62805,0.0490045,-1.65863,-0.0614211,-1.71817,-0.26009,-1.78959,-0.496406,-1.79938,-0.756936,-1.70809,-0.973233,-1.5536,-1.18329,-1.27704,-1.33793,-0.973862,-1.4089,-0.697683,-1.4148,-0.534786,-1.36966,-0.333728,-1.34323,-0.0759328,-1.28957,0.178761,-1.242,0.424036,-1.13615,0.691836,-0.972768,0.964963,-0.779416,1.22361,-0.549735,1.39449,-0.334681,1.50986,-0.100584,1.53815,0.0997265,1.46828,0.263601,1.42528,0.428454,1.36664,0.627118,1.32821,0.837073,1.21679,1.06647,1.10955,1.24568,1.01029,1.36933,0.99532,1.44312,0.892331,1.48314,0.735366,1.56015,0.534383,1.62751,0.314172,1.66384,0.0130305,1.6967,-0.29826,1.72944,-0.559504,1.71132,-0.818903,1.65318,-1.04573,1.55109,-1.20806,1.40176,-1.32103,1.18324,-1.42337,0.950849,-1.47318,0.724296,-1.47197,5 +-0.456441,-1.61963,-0.44687,-1.63078,-0.434393,-1.6528,-0.434645,-1.67105,-0.473064,-1.70574,-0.587941,-1.76448,-0.788922,-1.86351,-0.989734,-1.89213,-1.14254,-1.85081,-1.26697,-1.77413,-1.4306,-1.62526,-1.66285,-1.33145,-1.88006,-1.06269,-1.81688,-1.07953,-1.93255,-0.874113,-2.12951,-0.620738,-1.80773,1.10843,-1.70336,1.48156,-1.49815,1.80927,-1.12949,1.99729,-0.693259,2.03985,-0.358083,2.02879,0.0354514,1.96538,0.375842,1.83018,0.686424,1.68611,0.953498,1.51205,1.13064,1.31204,1.19436,1.11969,1.32959,0.835579,1.50159,0.564934,1.62562,0.303563,1.68335,-0.0108979,1.66264,-0.352735,1.58053,-0.684614,1.48956,-0.959754,1.4054,-1.21105,1.27472,-1.4807,1.13671,-1.73282,0.916269,-1.96559,0.643206,-2.08087,0.36404,-2.06592,0.0654725,-1.99692,-0.0946374,-1.87693,-0.16324,-1.73681,-0.202061,-1.66606,5 +-0.0966403,-1.50848,-0.105528,-1.51958,-0.102042,-1.54145,-0.108929,-1.53474,-0.151784,-1.55631,-0.219096,-1.63893,-0.33967,-1.72245,-0.50291,-1.76067,-0.6664,-1.76976,-0.81732,-1.73267,-0.998176,-1.61143,-1.17522,-1.40037,-1.39456,-1.11683,-1.5831,-0.82189,-1.69474,-0.667702,-1.72551,-0.592182,-1.79661,-0.632314,-1.85388,-0.392167,-2.03544,-0.0704503,-2.01058,0.337129,-1.87738,0.71685,-1.59788,1.03961,-1.23423,1.22585,-0.949409,1.45179,-0.679695,1.70245,-0.428836,1.98066,-0.122761,2.26756,0.198288,2.39908,0.474422,2.43072,0.756105,2.36238,1.02394,2.31601,1.24663,2.18488,1.44096,1.91543,1.57036,1.64928,1.70637,1.40197,1.79786,1.15458,1.88422,0.924519,1.8128,0.720549,1.81303,0.501047,1.7922,0.365804,1.81077,-0.0552081,1.78884,-0.287396,1.70893,-0.542156,1.59633,-0.857995,1.4362,-1.07166,5 +-0.213323,-1.61963,-0.212787,-1.63078,-0.219345,-1.62805,-0.217518,-1.64626,-0.212044,-1.64345,-0.219096,-1.63893,-0.214314,-1.65838,-0.248939,-1.7212,-0.327784,-1.76976,-0.409564,-1.85698,-0.524606,-1.83322,-0.636743,-1.77237,-0.76744,-1.67181,-0.922433,-1.58128,-1.09504,-1.52093,-1.31084,-1.40593,-1.56366,-1.30186,-1.83072,-1.13546,-1.98766,-1.01028,-2.04678,-1.00071,-2.06877,-0.880496,-2.0306,-0.90624,-1.93715,-0.647492,-1.86603,-0.473076,-1.79648,-0.580255,-1.7469,-0.330105,-1.71906,-0.048431,-1.57735,0.277484,-1.4771,0.610058,-1.29112,0.883028,-1.13763,1.16831,-0.904242,1.40624,-0.670245,1.60889,-0.405903,1.73848,-0.136168,1.83142,0.103504,1.89728,0.318229,1.97257,0.497689,2.05388,0.685125,2.11441,0.874873,2.12689,1.06885,2.04932,1.2359,1.91247,1.40075,1.75154,1.50792,1.5273,1.55629,1.30583,5 +-0.038324,-1.59494,-0.0372498,-1.59373,-0.0433651,-1.59095,-0.0496848,-1.59669,-0.0614211,-1.59369,-0.10644,-1.62634,-0.214314,-1.69681,-0.450004,-1.76067,-0.719298,-1.79678,-0.963707,-1.77413,-1.20412,-1.61143,-1.43936,-1.38657,-1.70812,-1.06269,-1.83716,-1.07953,-1.89118,-0.874113,-1.97,-0.663541,-2.04068,-0.334788,-2.03912,0.0104209,-1.97574,0.359653,-1.86575,0.659455,-1.79365,0.878139,-1.56275,1.20178,-1.2456,1.50528,-0.883178,1.74795,-0.462873,1.89812,-0.0216315,2.0453,0.370014,2.13798,0.717959,2.12371,1.07741,2.01184,1.42371,1.83745,1.70362,1.62418,1.91263,1.34395,2.03205,1.01125,2.06947,0.653316,1.94284,0.256912,1.87448,-0.138242,1.79987,-0.365421,1.72944,-0.54614,1.61888,-0.818903,1.44005,-1.15328,1.20799,-1.38231,0.894898,-1.59938,0.539757,-1.65665,0.172756,-1.61126,-0.13346,-1.52049,5 +-0.281392,-1.57024,-0.290848,-1.56902,-0.307285,-1.5662,-0.355704,-1.58432,-0.442908,-1.65593,-0.618661,-1.77701,-0.862051,-1.81223,-1.11672,-1.77379,-1.38592,-1.62112,-1.58061,-1.3875,-1.68801,-1.15403,-1.72383,-1.02838,-1.68788,-0.873173,-1.62372,-0.618494,-1.53967,-0.309929,-1.42781,0.050291,-1.29746,0.364518,-1.18242,0.676316,-0.996658,0.917204,-0.719075,1.12689,-0.382279,1.2815,-0.0422523,1.36395,0.262216,1.42307,0.596688,1.45179,0.91412,1.45789,1.19998,1.39896,1.46274,1.31204,1.73569,1.13585,1.97645,0.900033,2.00227,0.64444,2.11584,0.366457,2.07638,0.191531,2.0004,-0.184173,1.91669,-0.535948,1.8246,-0.91684,1.683,-1.19727,1.50912,-1.40012,1.34045,-1.59948,1.17514,-1.6856,0.884118,-1.81204,0.549544,-1.85148,0.185255,-1.79815,-0.158082,-1.68257,-0.27821,-1.53593,-0.262103,-1.45981,5 +-0.748173,-0.0515609,-0.749282,-0.0613829,-0.747235,-0.0441148,-0.750512,-0.0475142,-0.75417,-0.024739,-0.751866,0.0182574,-0.736695,0.0594897,-0.70403,0.0927365,-0.655842,0.107946,-0.608225,0.0898069,-0.576077,0.0656637,-0.565626,0.0187584,-0.58535,-0.020452,-0.627699,-0.0624945,-0.712527,-0.103458,-0.832412,-0.149599,-1.00906,-0.171081,-1.19403,-0.190873,-1.39068,-0.181933,-1.56398,-0.178704,-1.70993,-0.138316,-1.79671,-0.0630463,-1.82374,0.00982533,-1.84393,0.102756,-1.83981,0.202434,-1.85411,0.316243,-1.8583,0.550822,-1.82632,0.811924,-1.75121,1.01286,-1.31338,1.71018,-1.0931,1.74997,-0.827814,1.73326,-0.564699,1.73151,-0.334594,1.66412,-0.116505,1.53078,0.0269419,1.37466,0.130655,1.23357,0.201304,1.08055,0.18589,0.967718,0.179922,0.890112,0.169283,0.7759,0.139181,0.680004,0.0866049,0.598198,0.0224033,0.522983,-0.0390946,0.456756,5 +-0.602282,0.763278,-0.602942,0.754227,-0.600568,0.747798,-0.592578,0.758044,-0.59353,0.784617,-0.587941,0.809156,-0.559057,0.854265,-0.513524,0.907714,-0.465364,0.91847,-0.409564,0.918229,-0.370138,0.883465,-0.331999,0.762757,-0.302122,0.615741,-0.292294,0.479914,-0.309272,0.309365,-0.375255,0.150205,-0.487712,-0.00743833,-0.661482,-0.159899,-0.841409,-0.261623,-1.04499,-0.339902,-1.24343,-0.364218,-1.4224,-0.354875,-1.55167,-0.302399,-1.67829,-0.193404,-1.78561,-0.107416,-1.88624,-0.0068964,-1.96542,0.113539,-2.01042,0.212769,-2.08014,0.481149,-2.11444,0.771705,-2.08472,1.05821,-1.98512,1.3128,-1.8103,1.517,-1.63848,1.64928,-1.42696,1.68827,-1.20795,1.69099,-1.03212,1.74416,-0.83595,1.78719,-0.66465,1.82106,-0.505784,1.83117,-0.368578,1.80807,-0.247897,1.74021,-0.139995,1.62194,-0.0571385,1.46455,-0.0219333,1.31799,5 +-0.991241,0.417597,-0.993098,0.420573,-0.991596,0.426093,-0.997236,0.423421,-1.00512,0.460896,-0.997728,0.495302,-0.997831,0.546622,-0.958001,0.592217,-0.909776,0.634795,-0.83824,0.655906,-0.771691,0.633957,-0.707861,0.61122,-0.676395,0.575102,-0.698847,0.398544,-0.74353,0.295632,-0.821804,0.178761,-0.953602,0.0669271,-1.12454,-0.051459,-1.29512,-0.150071,-1.45534,-0.227028,-1.59033,-0.267403,-1.71483,-0.306261,-1.80111,-0.335268,-1.8771,-0.325031,-1.96991,-0.303018,-2.05771,-0.233143,-2.1154,-0.113219,-2.15114,0.0021832,-2.2007,0.239479,-2.27021,0.501302,-2.29641,0.759505,-2.31263,1.00132,-2.23253,1.1951,-2.02557,1.39658,-1.86052,1.48786,-1.70572,1.53966,-1.63232,1.5829,-1.51203,1.66721,-1.39498,1.76772,-1.28409,1.84459,-1.16616,1.8885,-1.04969,1.87274,-0.910368,1.81631,-0.799895,1.72819,-0.6824,1.60909,5 +-0.748173,-0.0515609,-0.749282,-0.0613829,-0.747235,-0.0441148,-0.750512,-0.0475142,-0.75417,-0.024739,-0.751866,0.0182574,-0.736695,0.0594897,-0.70403,0.0927365,-0.655842,0.107946,-0.608225,0.0898069,-0.576077,0.0656637,-0.565626,0.0187584,-0.58535,-0.020452,-0.627699,-0.0624945,-0.712527,-0.103458,-0.832412,-0.149599,-1.00906,-0.171081,-1.19403,-0.190873,-1.39068,-0.181933,-1.56398,-0.178704,-1.70993,-0.138316,-1.79671,-0.0630463,-1.82374,0.00982533,-1.84393,0.102756,-1.83981,0.202434,-1.85411,0.316243,-1.8583,0.550822,-1.82632,0.811924,-1.75121,1.01286,-1.31338,1.71018,-1.0931,1.74997,-0.827814,1.73326,-0.564699,1.73151,-0.334594,1.66412,-0.116505,1.53078,0.0269419,1.37466,0.130655,1.23357,0.201304,1.08055,0.18589,0.967718,0.179922,0.890112,0.169283,0.7759,0.139181,0.680004,0.0866049,0.598198,0.0224033,0.522983,-0.0390946,0.456756,5 +-0.602282,0.763278,-0.602942,0.754227,-0.600568,0.747798,-0.592578,0.758044,-0.59353,0.784617,-0.587941,0.809156,-0.559057,0.854265,-0.513524,0.907714,-0.465364,0.91847,-0.409564,0.918229,-0.370138,0.883465,-0.331999,0.762757,-0.302122,0.615741,-0.292294,0.479914,-0.309272,0.309365,-0.375255,0.150205,-0.487712,-0.00743833,-0.661482,-0.159899,-0.841409,-0.261623,-1.04499,-0.339902,-1.24343,-0.364218,-1.4224,-0.354875,-1.55167,-0.302399,-1.67829,-0.193404,-1.78561,-0.107416,-1.88624,-0.0068964,-1.96542,0.113539,-2.01042,0.212769,-2.08014,0.481149,-2.11444,0.771705,-2.08472,1.05821,-1.98512,1.3128,-1.8103,1.517,-1.63848,1.64928,-1.42696,1.68827,-1.20795,1.69099,-1.03212,1.74416,-0.83595,1.78719,-0.66465,1.82106,-0.505784,1.83117,-0.368578,1.80807,-0.247897,1.74021,-0.139995,1.62194,-0.0571385,1.46455,-0.0219333,1.31799,5 +-0.991241,0.417597,-0.993098,0.420573,-0.991596,0.426093,-0.997236,0.423421,-1.00512,0.460896,-0.997728,0.495302,-0.997831,0.546622,-0.958001,0.592217,-0.909776,0.634795,-0.83824,0.655906,-0.771691,0.633957,-0.707861,0.61122,-0.676395,0.575102,-0.698847,0.398544,-0.74353,0.295632,-0.821804,0.178761,-0.953602,0.0669271,-1.12454,-0.051459,-1.29512,-0.150071,-1.45534,-0.227028,-1.59033,-0.267403,-1.71483,-0.306261,-1.80111,-0.335268,-1.8771,-0.325031,-1.96991,-0.303018,-2.05771,-0.233143,-2.1154,-0.113219,-2.15114,0.0021832,-2.2007,0.239479,-2.27021,0.501302,-2.29641,0.759505,-2.31263,1.00132,-2.23253,1.1951,-2.02557,1.39658,-1.86052,1.48786,-1.70572,1.53966,-1.63232,1.5829,-1.51203,1.66721,-1.39498,1.76772,-1.28409,1.84459,-1.16616,1.8885,-1.04969,1.87274,-0.910368,1.81631,-0.799895,1.72819,-0.6824,1.60909,5 +1.15776,-0.582484,1.16251,-0.580388,1.16884,-0.576226,1.18409,-0.568027,1.21358,-0.547706,1.25613,-0.521591,1.31092,-0.491774,1.37019,-0.459327,1.40747,-0.432384,1.42023,-0.42106,1.40071,-0.405569,1.36463,-0.408356,1.32639,-0.412985,1.29325,-0.442163,1.25195,-0.475023,1.20888,-0.535071,1.15391,-0.587707,1.09812,-0.624434,1.03312,-0.659864,0.922379,-0.710622,0.801844,-0.735308,0.647822,-0.792689,0.511604,-0.877578,0.364765,-0.91728,0.231089,-0.955259,0.117649,-0.960327,0.00579153,-0.955391,-0.0940682,-0.953288,-0.194374,-0.920633,-0.300869,-0.898544,-0.402248,-0.844134,-0.478414,-0.805142,-0.543578,-0.797177,-0.589231,-0.758914,-0.618987,-0.716433,-0.662314,-0.674646,-0.703951,-0.620774,-0.752636,-0.572809,-0.803307,-0.525606,-0.857882,-0.508004,-0.91574,-0.484197,-0.966735,-0.459659,-1.01912,-0.425545,-1.0563,-0.41864,-1.09409,-0.416634,6 +1.35222,-0.607179,1.35757,-0.592773,1.36432,-0.600977,1.39131,-0.592816,1.42435,-0.572612,1.47122,-0.546701,1.53025,-0.517416,1.60299,-0.472501,1.65085,-0.459403,1.67117,-0.42106,1.67867,-0.391737,1.67956,-0.36705,1.68042,-0.345331,1.66932,-0.34726,1.65515,-0.36498,1.64482,-0.392292,1.63093,-0.424001,1.5959,-0.454113,1.5227,-0.500553,1.41728,-0.549424,1.26828,-0.606221,1.10394,-0.662956,0.942392,-0.7461,0.795496,-0.802142,0.653912,-0.841081,0.535601,-0.863365,0.434318,-0.874371,0.328206,-0.872342,0.222242,-0.856178,0.0996591,-0.834912,-0.0122625,-0.796998,-0.107226,-0.758386,-0.205764,-0.720577,-0.283667,-0.669715,-0.343091,-0.61626,-0.394273,-0.564608,-0.450733,-0.540145,-0.511841,-0.532835,-0.599933,-0.525606,-0.681833,-0.521477,-0.767346,-0.524386,-0.846905,-0.486166,-0.919411,-0.438533,-0.985584,-0.406057,-1.04265,-0.380267,6 +1.32306,-0.421991,1.32832,-0.419754,1.33501,-0.415374,1.34197,-0.406926,1.37416,-0.385845,1.42,-0.3584,1.47802,-0.325132,1.52891,-0.288461,1.55561,-0.270267,1.5457,-0.269142,1.50365,-0.266953,1.45607,-0.270568,1.40729,-0.277619,1.3644,-0.293014,1.31396,-0.323662,1.25142,-0.363736,1.17611,-0.409153,1.08657,-0.469567,0.94954,-0.51645,0.789652,-0.549424,0.598522,-0.59005,0.425598,-0.614341,0.262216,-0.663962,0.110746,-0.703422,-0.0291751,-0.710633,-0.160967,-0.717886,-0.262058,-0.69624,-0.375566,-0.677988,-0.490369,-0.662815,-0.59015,-0.612198,-0.714236,-0.592562,-0.784125,-0.571497,-0.849685,-0.567309,-0.905013,-0.535948,-0.963858,-0.516026,-1.00692,-0.495865,-1.06965,-0.472926,-1.13234,-0.479497,-1.2101,-0.445601,-1.28409,-0.44081,-1.35162,-0.470762,-1.41828,-0.446434,-1.4451,-0.412613,-1.4365,-0.393529,-1.41147,-0.380267,6 +1.17717,-0.162717,1.18198,-0.147866,1.18834,-0.143117,1.20378,-0.121881,1.22359,-0.0869765,1.26635,-0.0570741,1.31092,-0.00464171,1.35958,0.0270363,1.39691,0.0674461,1.42023,0.103645,1.43158,0.135001,1.44588,0.170296,1.44776,0.169061,1.44569,0.181616,1.45871,0.18553,1.43215,0.178761,1.40905,0.185963,1.36439,0.211782,1.28387,0.216308,1.16381,0.175931,1.00516,0.168231,0.846645,0.0991198,0.681633,0.0426947,0.530457,-0.0288711,0.382886,-0.107416,0.256985,-0.168501,0.155778,-0.194169,0.0467085,-0.208333,-0.0628139,-0.195554,-0.16736,-0.182713,-0.279722,-0.152378,-0.369248,-0.151031,-0.448565,-0.13816,-0.517922,-0.104848,-0.569727,-0.0722974,-0.624008,0.0267556,-0.685189,0.0376634,-0.761878,0.0138504,-0.840302,0.434405,-0.922745,0.540554,-0.999214,0.615029,-1.05888,0.560754,-1.09161,0.494519,-1.1182,0.472762,-1.11981,0.481019,6 +1.16746,-0.421991,1.17225,-0.419754,1.17859,-0.427723,1.19393,-0.431715,1.22359,-0.398271,1.26635,-0.370928,1.32134,-0.325132,1.38075,-0.288461,1.42864,-0.270267,1.46207,-0.241526,1.47278,-0.211507,1.49673,-0.174146,1.52872,-0.155818,1.57784,-0.143865,1.61383,-0.144776,1.66609,-0.163846,1.74184,-0.156234,1.80429,-0.144379,1.83313,-0.150071,1.83973,-0.162549,1.81851,-0.202859,1.74727,-0.241394,1.6793,-0.285999,1.62379,-0.325031,1.58639,-0.33563,1.56436,-0.362426,1.56991,-0.356138,1.58411,-0.337902,1.61464,-0.308385,1.6351,-0.278162,1.64791,-0.246717,1.61782,-0.213327,1.55704,-0.214827,1.50922,-0.194048,1.46002,-0.172532,1.41496,-0.152026,1.36848,-0.137003,1.31268,-0.106131,1.2768,-0.0856037,1.22697,-0.0778367,1.15232,-0.068643,1.07,-0.0621194,0.956689,-0.0497381,0.835879,-0.0796728,0.707135,-0.101277,6 +1.60504,-0.681265,1.60143,-0.691588,1.60874,-0.687577,1.63809,-0.667183,1.66534,-0.647329,1.70686,-0.634561,1.78102,-0.607133,1.8464,-0.57761,1.88361,-0.540461,1.91167,-0.517687,1.92575,-0.488738,1.94371,-0.463472,1.97374,-0.453566,2.01487,-0.442163,2.06872,-0.447498,2.12325,-0.449404,2.21879,-0.468671,2.30207,-0.485087,2.34653,-0.51645,2.35872,-0.53327,2.32088,-0.557778,2.2502,-0.581908,2.16677,-0.614622,2.09865,-0.686933,2.04172,-0.694362,2.01439,-0.717886,2.01981,-0.680008,2.03885,-0.661756,2.08607,-0.646736,2.11352,-0.612198,2.10472,-0.592562,2.05454,-0.571497,1.95821,-0.551949,1.84538,-0.535948,1.74574,-0.516026,1.64469,-0.537099,1.53729,-0.526678,1.44234,-0.519471,1.36001,-0.512243,1.28254,-0.494588,1.19869,-0.470762,1.09763,-0.446434,0.99291,-0.412613,0.880129,-0.406057,0.767177,-0.380267,6 +1.05078,0.232409,1.05521,0.235222,1.06129,0.252839,1.0755,0.26232,1.10313,0.286556,1.15364,0.332111,1.19598,0.37998,1.25377,0.421351,1.30167,0.486218,1.3366,0.517826,1.35951,0.564679,1.38496,0.583662,1.41743,0.575102,1.44569,0.588407,1.48971,0.598353,1.52785,0.621344,1.56435,0.647196,1.58434,0.676316,1.5585,0.678273,1.50177,0.691695,1.38794,0.652307,1.25602,0.618051,1.1351,0.585004,1.00532,0.563378,0.903302,0.528485,0.803469,0.510168,0.702112,0.502266,0.620507,0.504231,0.518294,0.529455,0.42236,0.548992,0.333137,0.570825,0.231224,0.580849,0.131996,0.566805,0.0524963,0.564116,-0.0278169,0.586122,-0.107079,0.576945,-0.178802,0.588596,-0.243227,0.640542,-0.32257,0.714396,-0.403843,0.755667,-0.498416,0.816089,-0.579657,0.825819,-0.647501,0.831475,-0.702616,0.799147,-0.73384,0.735747,6 +1.11885,0.183018,1.13322,0.185788,1.13947,0.190989,1.16434,0.200374,1.18342,0.224319,1.22535,0.25678,1.27954,0.303056,1.32785,0.355651,1.3334,0.41864,1.31568,0.49021,1.28744,0.523065,1.25286,0.542295,1.2151,0.548028,1.16115,0.561284,1.11751,0.570828,1.04942,0.592788,0.998673,0.617437,0.924494,0.645343,0.818242,0.662308,0.705162,0.659455,0.562595,0.620035,0.413867,0.585618,0.262216,0.568534,0.132842,0.530471,0.0250862,0.512214,-0.0966457,0.477847,-0.197754,0.469872,-0.332241,0.48807,-0.457493,0.497227,-0.59015,0.517175,-0.703119,0.492243,-0.805969,0.503013,-0.860273,0.428831,-0.925394,0.400552,-0.983572,0.385715,-1.01647,0.356869,-1.06965,0.386996,-1.11381,0.413827,-1.19161,0.44771,-1.27484,0.513665,-1.35162,0.574783,-1.40908,0.58726,-1.41787,0.611129,-1.37461,0.610844,-1.33426,0.553753,6 +1.13831,0.232409,1.143,0.235222,1.15903,0.240491,1.17419,0.237531,1.19349,0.27413,1.22535,0.307001,1.26911,0.354339,1.31723,0.421351,1.3334,0.472679,1.32612,0.517826,1.30804,0.550788,1.28338,0.569853,1.25558,0.588668,1.23229,0.615531,1.21058,0.639671,1.16639,0.692764,1.13178,0.736473,1.07496,0.784756,0.985343,0.85348,0.874143,0.868978,0.742047,0.878139,0.577617,0.845014,0.443557,0.847889,0.33165,0.793725,0.220214,0.740428,0.106956,0.720219,0.00579153,0.712792,-0.0940682,0.730978,-0.194374,0.771124,-0.300869,0.771705,-0.402248,0.759505,-0.489364,0.73659,-0.554111,0.704712,-0.609613,0.683049,-0.67813,0.657665,-0.738876,0.618179,-0.807071,0.575129,-0.882251,0.547172,-0.951238,0.554384,-0.987607,0.580917,-1.04558,0.628406,-1.1234,0.653498,-1.20036,0.662969,-1.25086,0.635954,-1.25706,0.614435,6 +1.08969,0.0595414,1.09424,0.0622024,1.11016,0.0795848,1.12484,0.0764301,1.16333,0.08731,1.20486,0.118645,1.26911,0.149207,1.34902,0.184785,1.3863,0.243043,1.36796,0.310735,1.31831,0.370618,1.25286,0.404507,1.20501,0.439735,1.18143,0.452791,1.15889,0.488251,1.13446,0.52143,1.07632,0.557919,1.02869,0.583396,0.94954,0.598584,0.849994,0.594976,0.73005,0.587763,0.601019,0.569367,0.454927,0.535665,0.33165,0.530471,0.220214,0.512214,0.128397,0.510168,0.0379158,0.53466,-0.0615468,0.552854,-0.172438,0.610058,-0.311971,0.628567,-0.424541,0.665165,-0.511153,0.658753,-0.575232,0.643405,-0.66054,0.653316,-0.717507,0.629036,-0.805886,0.604454,-0.891477,0.602005,-0.984143,0.653848,-1.0899,0.727759,-1.21923,0.809445,-1.34237,0.869713,-1.42752,0.905281,-1.45414,0.922165,-1.4365,0.899589,-1.39431,0.857006,6 +1.25499,-0.125647,1.25026,-0.123149,1.26658,-0.118367,1.27288,-0.10946,1.30389,-0.0745505,1.34828,-0.0445459,1.40489,-0.0302832,1.47601,0.0401536,1.4921,0.0944655,1.49342,0.117423,1.50365,0.204279,1.48654,0.252969,1.47809,0.290861,1.47622,0.317232,1.4794,0.323158,1.4747,0.335848,1.47563,0.379429,1.44543,0.397622,1.40325,0.439273,1.33279,0.417693,1.23242,0.410234,1.11567,0.358586,0.999068,0.338448,0.883823,0.283707,0.784016,0.251317,0.696322,0.235475,0.637863,0.226952,0.577238,0.261323,0.518294,0.303864,0.466825,0.310404,0.399958,0.366457,0.307651,0.393961,0.216477,0.398177,0.144187,0.41545,0.070703,0.385715,-0.00176261,0.370594,-0.0850387,0.386996,-0.169154,0.413827,-0.248629,0.461073,-0.329734,0.513665,-0.405688,0.534594,-0.459827,0.547472,-0.520613,0.546358,-0.596514,0.54804,-0.673797,0.529491,6 +1.28415,-0.199733,1.28929,-0.209685,1.29589,-0.217369,1.31237,-0.183826,1.34406,-0.174173,1.38928,-0.132406,1.43627,-0.107208,1.48657,-0.0650122,1.52388,-0.000131628,1.53526,0.0484126,1.52425,0.0933868,1.53733,0.128989,1.51857,0.155495,1.51683,0.168025,1.52077,0.199263,1.50658,0.221625,1.49782,0.215722,1.48014,0.273728,1.43911,0.264067,1.36898,0.256495,1.26828,0.265046,1.12734,0.228853,0.987756,0.190572,0.872804,0.15208,0.784016,0.153481,0.68563,0.154708,0.605684,0.178327,0.512251,0.212769,0.41961,0.239479,0.311054,0.278588,0.210553,0.287874,0.122057,0.284976,0.0264493,0.290923,-0.0493586,0.311416,-0.116505,0.342801,-0.174089,0.356869,-0.23504,0.373586,-0.289528,0.400522,-0.350292,0.421099,-0.403843,0.446471,-0.470607,0.467593,-0.542779,0.481235,-0.611281,0.494519,-0.684925,0.48529,-0.751001,0.468861,6 +0.690981,-0.138021,0.694298,-0.135534,0.689818,-0.118367,0.690537,-0.121881,0.701553,-0.0994562,0.733631,-0.0696564,0.75721,-0.0302832,0.798732,0.0138622,0.825532,0.0404267,0.845166,0.0760287,0.86534,0.0933868,0.866808,0.0876229,0.850976,0.0878411,0.856218,0.0866546,0.838379,0.0616354,0.826148,0.0359823,0.798989,0.00740905,0.750808,-0.00503234,0.686883,-0.0226228,0.596522,-0.0497456,0.478929,-0.0898733,0.355393,-0.127843,0.228163,-0.187391,0.110746,-0.226311,-0.0074818,-0.286747,-0.118086,-0.281589,-0.229934,-0.291351,-0.343044,-0.273117,-0.468433,-0.227782,-0.601251,-0.198587,-0.725412,-0.168067,-0.827814,-0.13549,-0.913046,-0.122866,-0.996703,-0.104848,-1.05255,-0.100927,-1.11223,-0.110732,-1.17281,-0.177346,-1.2157,-0.199501,-1.21933,-0.245615,-1.28409,-0.212282,-1.34237,-0.17589,-1.39989,-0.154863,-1.4451,-0.140485,-1.46306,-0.104783,-1.49723,-0.101277,6 +0.846574,-0.113326,0.840638,-0.0984318,0.836434,-0.0936161,0.838622,-0.0846708,0.852123,-0.0620707,0.866784,-0.0319636,0.903468,-0.00464171,0.925717,0.0401536,0.952499,0.0809266,0.970634,0.103645,0.957957,0.135001,0.958252,0.142738,0.952114,0.141988,0.937508,0.140901,0.921072,0.130479,0.889965,0.12165,0.854444,0.0966862,0.808743,0.0878879,0.734661,0.0728944,0.64482,0.0308185,0.526729,-0.00922885,0.402196,-0.0630463,0.28484,-0.121652,0.166015,-0.176916,0.0575982,-0.205181,-0.043072,-0.216947,-0.144195,-0.210331,-0.245592,-0.192101,-0.336873,-0.179476,-0.434379,-0.166771,-0.524831,-0.13662,-0.576686,-0.119883,-0.628005,-0.107506,-0.66054,-0.104848,-0.707675,-0.100927,-0.758028,-0.0832228,-0.807071,-0.0563742,-0.87301,-0.0261243,-0.951238,0.00776507,-1.01539,0.0566087,-1.07339,0.0654161,-1.1234,0.0704129,-1.14601,0.0668724,-1.17127,0.0207699,-1.19702,0.0079299,6 +0.86603,-0.00217025,0.869885,0.000436419,0.865747,0.00538639,0.878067,0.0268524,0.892296,0.0375523,0.928276,0.0684783,0.955695,0.110773,1.01036,0.145319,1.02657,0.202543,1.04383,0.227887,1.04035,0.245894,1.02937,0.266778,1.03307,0.263788,1.01885,0.262986,1.01414,0.268106,0.99627,0.250181,0.976479,0.245481,0.936045,0.258208,0.877935,0.264067,0.789652,0.240411,0.68225,0.200503,0.565947,0.147805,0.432245,0.0919633,0.32063,0.0369422,0.198521,0.0067619,0.0855158,-0.0068964,-0.0263881,0.000194931,-0.148196,0.0021832,-0.271122,0.0299668,-0.389857,0.0558743,-0.513714,0.0834375,-0.609425,0.0825465,-0.691365,0.0763484,-0.752231,0.0735507,-0.806195,0.0994185,-0.853743,0.0680494,-0.891477,0.0645396,-0.947083,0.080494,-1.00668,0.0611022,-1.07096,0.0834978,-1.1105,0.0922279,-1.1234,0.0836948,-1.12788,0.0798602,-1.12707,0.0835737,-1.12842,0.0807168,6 +1.21608,-0.125647,1.21128,-0.110817,1.21771,-0.106018,1.21368,-0.10946,1.23361,-0.0745505,1.25613,-0.0445459,1.29001,-0.00464171,1.32785,0.0270363,1.35457,0.0674461,1.34704,0.0898069,1.34918,0.12111,1.33417,0.142738,1.31629,0.155495,1.30344,0.154492,1.27264,0.158004,1.25142,0.150205,1.22049,0.141357,1.16761,0.149835,1.10479,0.152584,1.00687,0.143692,0.897506,0.103687,0.77644,0.050505,0.647639,0.00982533,0.530457,-0.0288711,0.426217,-0.0584622,0.331999,-0.0715382,0.252151,-0.0645929,0.176626,-0.0463704,0.101678,-0.0183393,0.0217737,0.024058,-0.0568487,0.0677482,-0.12907,0.0980869,-0.195231,0.122362,-0.263285,0.118118,-0.323428,0.128048,-0.37512,0.136793,-0.450733,0.145168,-0.521082,0.147195,-0.590661,0.167719,-0.672539,0.177581,-0.758093,0.18604,-0.828466,0.202945,-0.910368,0.209403,-0.967892,0.184016,-1.00833,0.165609,6 +1.13831,-0.162717,1.15273,-0.160251,1.15903,-0.155519,1.17419,-0.134249,1.21358,-0.111882,1.25613,-0.0821846,1.32134,-0.0559247,1.38075,-0.0124293,1.42864,0.0404267,1.46207,0.0621908,1.48305,0.0933868,1.50687,0.115181,1.53881,0.141988,1.57784,0.154492,1.61383,0.158004,1.66609,0.164514,1.71964,0.171116,1.76958,0.196261,1.79727,0.184446,1.79144,0.192016,1.72285,0.168231,1.642,0.131553,1.54321,0.0919633,1.44707,0.05336,1.35869,0.0067619,1.275,-0.0230917,1.21638,-0.032199,1.1619,-0.0302092,1.11034,-0.0344877,1.04538,-0.00775822,0.957056,0.00485509,0.86449,0.0202502,0.754797,0.0150414,0.653513,0.0289188,0.573236,0.0421592,0.486413,0.0680494,0.411992,0.104825,0.340208,0.133832,0.259879,0.181082,0.189167,0.231359,0.0951102,0.279911,0.0101552,0.308971,-0.0765506,0.339001,-0.16324,0.347209,-0.244942,0.323287,6 +1.26469,-0.261498,1.26004,-0.259119,1.24702,-0.254522,1.24328,-0.245825,1.26377,-0.223985,1.27657,-0.195209,1.29001,-0.158491,1.30667,-0.117595,1.32284,-0.0811898,1.30525,-0.0620516,1.27711,-0.0452286,1.25286,-0.022608,1.22525,-0.0069446,1.19162,-0.0082478,1.15889,-0.00714873,1.10258,-0.00682045,1.043,-0.00743833,0.970758,-0.00503234,0.877935,-0.00672624,0.753397,-0.00142107,0.610457,-0.0253996,0.472341,-0.0630463,0.330204,-0.105253,0.21015,-0.14408,0.100929,-0.17264,-0.000190952,-0.184696,-0.0906365,-0.194169,-0.180661,-0.192101,-0.260125,-0.163327,-0.356494,-0.134954,-0.435716,-0.105174,-0.500258,-0.0887346,-0.564699,-0.076853,-0.609613,-0.045382,-0.648584,-0.0580135,-0.691018,-0.0557134,-0.732071,-0.0429651,-0.780408,-0.0261243,-0.849527,-0.00559802,-0.904205,0.0297197,-0.962104,0.0520391,-1.00357,0.0704129,-0.991899,0.0409527,-1.0121,0.0333523,-1.04265,0.0200348,6 +-0.300848,0.479309,-0.300581,0.457622,-0.307285,0.500345,-0.296459,0.497787,-0.292337,0.510708,-0.280588,0.558051,-0.256118,0.597905,-0.227766,0.657974,-0.19026,0.729334,-0.169062,0.780149,-0.123053,0.786404,-0.108457,0.831622,-0.109939,0.832269,-0.0991847,0.859641,-0.1232,0.846083,-0.183862,0.878346,-0.243699,0.900116,-0.360494,0.939557,-0.459367,0.901239,-0.550093,0.868978,-0.645397,0.829766,-0.720656,0.763966,-0.79213,0.700012,-0.850005,0.64568,-0.929084,0.61005,-1.00751,0.57481,-1.06555,0.550822,-1.15507,0.536623,-1.24685,0.529455,-1.33558,0.517175,-1.40503,0.539379,-1.45013,0.534161,-1.46195,0.505498,-1.47548,0.50465,-1.49594,0.500233,-1.50469,0.508141,-1.53851,0.534844,-1.57687,0.560535,-1.63535,0.594416,-1.67326,0.621221,-1.73183,0.668653,-1.77772,0.693286,-1.79854,0.714808,-1.80789,0.686176,-1.78029,0.638698,6 +-0.320303,0.652176,-0.310313,0.680075,-0.307285,0.685948,-0.306308,0.67131,-0.312424,0.697474,-0.29081,0.746407,-0.266541,0.790189,-0.23838,0.855132,-0.19026,0.932009,-0.137708,0.973461,-0.0921806,1.02208,-0.0576665,1.03833,-0.00880133,1.03535,0.022776,1.06304,0.031923,1.06629,0.0287487,1.12104,0.0114388,1.1531,-0.0247932,1.20286,-0.077263,1.28358,-0.139746,1.27201,-0.202889,1.2493,-0.252806,1.20178,-0.304666,1.17658,-0.36412,1.12279,-0.419487,1.08289,-0.482409,1.05962,-0.529908,1.06912,-0.592076,1.07106,-0.643865,1.07732,-0.723659,1.07393,-0.781116,1.08966,-0.827814,1.09476,-0.860273,1.0419,-0.884684,0.980317,-0.904766,0.958245,-0.939906,0.879489,-0.947764,0.830423,-1.01191,0.840531,-1.05295,0.834376,-1.11733,0.822918,-1.17542,0.816089,-1.18791,0.78603,-1.23663,0.779635,-1.2862,0.761508,-1.30854,0.747852,6 +-0.232778,0.676871,-0.232302,0.680075,-0.238854,0.685948,-0.237215,0.696098,-0.232078,0.734859,-0.219096,0.758935,-0.20389,0.81583,-0.153687,0.894597,-0.105578,0.959028,-0.0645142,1.01492,-0.00978347,1.03591,0.0235881,1.05208,0.0519128,1.06242,0.0634471,1.07663,0.0629262,1.10755,0.0394122,1.16384,-0.0107546,1.19771,-0.0942795,1.24929,-0.160844,1.26769,-0.23628,1.27201,-0.298551,1.23313,-0.393155,1.20178,-0.486007,1.16018,-0.573947,1.12279,-0.636308,1.08289,-0.664626,1.07575,-0.701274,1.10152,-0.797784,1.11969,-0.885048,1.10955,-0.990678,1.10574,-1.07081,1.10542,-1.12257,1.06361,-1.16638,1.07255,-1.18008,1.02495,-1.17078,0.958245,-1.18879,0.920783,-1.20093,0.884176,-1.24347,0.907174,-1.28405,0.914381,-1.34895,0.930417,-1.38873,0.950148,-1.44596,0.958294,-1.48132,0.961017,-1.4984,0.9247,-1.51439,0.893426,6 +-0.349461,1.01023,-0.359127,1.01373,-0.346403,1.02005,-0.355704,1.03072,-0.352597,1.07106,-0.372799,1.12301,-0.37105,1.17481,-0.375925,1.2495,-0.391295,1.32376,-0.399076,1.40148,-0.401063,1.41014,-0.433581,1.41033,-0.453881,1.40081,-0.495544,1.3478,-0.567774,1.35528,-0.641019,1.30662,-0.765044,1.37626,-0.904594,1.38864,-1.06826,1.42693,-1.16568,1.38481,-1.26736,1.36221,-1.32886,1.33151,-1.38164,1.30806,-1.40224,1.28725,-1.46037,1.26222,-1.52186,1.25348,-1.63332,1.26342,-1.72893,1.29781,-1.87183,1.35122,-1.9364,1.37615,-1.97331,1.40412,-1.91959,1.45293,-1.84195,1.40968,-1.73017,1.38168,-1.69298,1.34471,-1.63871,1.30586,-1.55727,1.27385,-1.56762,1.29385,-1.55214,1.31441,-1.53429,1.34717,-1.54638,1.37908,-1.5473,1.39562,-1.52663,1.38866,-1.48075,1.339,-1.42863,1.29373,6 +-0.816192,0.899129,-0.81751,0.927246,-0.82542,0.908704,-0.819554,0.906777,-0.844481,0.971437,-0.844025,0.997458,-0.830671,1.0466,-0.799228,1.09175,-0.772197,1.14811,-0.733693,1.19439,-0.689293,1.2577,-0.65707,1.25874,-0.635919,1.2248,-0.627699,1.23931,-0.640151,1.23138,-0.683563,1.26382,-0.74285,1.28698,-0.823556,1.32669,-0.92499,1.33134,-0.984653,1.32033,-1.02817,1.2654,-1.07156,1.21803,-1.08688,1.17658,-1.10402,1.08988,-1.12421,1.03394,-1.14684,0.978786,-1.17267,0.955711,-1.22006,0.957725,-1.23591,0.964488,-1.27996,0.962603,-1.3048,0.948184,-1.30817,0.954627,-1.29305,0.934581,-1.26156,0.935749,-1.24959,0.886702,-1.2271,0.85198,-1.24782,0.817014,-1.27124,0.840531,-1.33026,0.861044,-1.39527,0.903528,-1.44435,0.923336,-1.48279,0.945069,-1.50854,0.935097,-1.51609,0.899589,-1.52295,0.869163,6 +0.175636,0.849739,0.187101,0.890144,0.191241,0.871551,0.206938,0.857199,0.209616,0.946531,0.221411,0.972347,0.245307,0.99532,0.280176,1.07858,0.264711,1.16164,0.280535,1.19439,0.268174,1.18836,0.257267,1.24499,0.244096,1.21129,0.256556,1.21219,0.207679,1.23138,0.177598,1.27806,0.144542,1.27207,0.0677954,1.28026,-0.00565714,1.31545,-0.0672982,1.33642,-0.155027,1.2815,-0.229405,1.23421,-0.293295,1.17658,-0.375139,1.12279,-0.430305,1.05028,-0.482409,1.01111,-0.540597,0.988105,-0.635401,0.990117,-0.709673,0.964488,-0.779283,0.962603,-0.803409,0.99532,-0.816863,1.00132,-0.818032,0.949941,-0.823539,0.876283,-0.806195,0.829443,-0.815437,0.755726,-0.807071,0.736386,-0.826709,0.720549,-0.849527,0.741064,-0.93199,0.728778,-1.01777,0.722277,-1.00357,0.759524,-1.00099,0.753716,-0.994406,0.736397,-0.97401,0.711484,6 +0.885485,0.701567,0.889401,0.704792,0.895111,0.562195,0.907714,0.758044,0.932469,0.560519,0.96927,0.796574,1.0184,0.63634,1.06326,0.710557,1.12181,0.756353,1.15886,0.780149,1.1845,0.869573,1.21226,0.859179,1.23534,1.06242,1.28311,1.10369,1.31396,1.10755,1.36839,1.14959,1.40905,1.21255,1.45698,1.28026,1.48683,1.29948,1.48966,1.28809,1.44773,1.23313,1.39637,1.15316,1.32782,1.06158,1.28138,0.958258,1.23941,0.838264,1.22142,0.75254,1.21638,0.664236,1.23769,0.601408,1.25284,0.513376,1.27904,0.437669,1.28022,0.33501,1.25752,0.238287,1.22981,0.137655,1.19344,0.0289188,1.16441,-0.0866431,1.13736,-0.193261,1.12467,-0.284851,1.10894,-0.372821,1.11042,-0.458906,1.10649,-0.548366,1.09671,-0.631633,1.09763,-0.711442,1.07449,-0.788421,1.03926,-0.857995,0.998744,-0.92609,7 +0.885485,0.0842367,0.889401,0.0869194,0.885306,0.0919868,0.897815,0.101219,0.9224,0.124696,0.958995,0.156338,1.00792,0.20049,1.06326,0.263602,1.11119,0.297082,1.14837,0.338351,1.17417,0.370618,1.20207,0.390758,1.22525,0.399155,1.26277,0.385011,1.30364,0.378149,1.33646,0.364404,1.38686,0.34967,1.42227,0.320155,1.46294,0.280032,1.46552,0.208171,1.43574,0.135959,1.38464,0.0342534,1.32782,-0.0723837,1.28138,-0.176916,1.25023,-0.286747,1.23211,-0.362426,1.23776,-0.420926,1.27015,-0.483633,1.29671,-0.517827,1.32356,-0.564439,1.33592,-0.608319,1.32306,-0.649401,1.29317,-0.689923,1.27491,-0.729181,1.25309,-0.730779,1.23308,-0.757175,1.22784,-0.781973,1.22008,-0.799467,1.23058,-0.818903,1.23622,-0.844088,1.2451,-0.872939,1.2451,-0.883763,1.23764,-0.892043,1.20726,-0.908217,1.17031,-0.92609,7 +0.43816,0.738583,0.450482,0.72951,0.455211,0.735449,0.483258,0.745676,0.480705,0.772191,0.518489,0.809156,0.558725,0.867113,0.608226,0.934006,0.645667,0.999528,0.688345,1.07009,0.721198,1.10519,0.755089,1.1072,0.790314,1.08944,0.825741,1.09016,0.879699,1.06629,0.84742,1.10679,0.854444,1.13819,0.889721,1.15637,0.877935,1.15613,0.862037,1.12689,0.849706,1.05567,0.811573,0.90988,0.772363,0.765751,0.729208,0.612773,0.697299,0.430648,0.674882,0.283922,0.669988,0.145933,0.67469,0.0184144,0.682729,-0.131169,0.689379,-0.246346,0.678536,-0.372504,0.678896,-0.509201,0.670371,-0.628616,0.673895,-0.714347,0.671756,-0.802322,0.668291,-0.880937,0.655805,-0.970106,0.655123,-1.06616,0.64813,-1.1789,0.652452,-1.28773,0.660828,-1.36887,0.655285,-1.42706,0.648512,-1.46228,0.632544,-1.49829,0.604211,-1.54475,7 +-0.680104,0.763278,-0.671221,0.754227,-0.668999,0.7602,-0.67152,0.782833,-0.683893,0.809523,-0.680152,0.846795,-0.653088,0.892755,-0.64051,0.947123,-0.592331,0.985989,-0.535031,1.02869,-0.483407,1.0498,-0.433581,1.02453,-0.362836,0.981201,-0.271958,0.954543,-0.267952,0.873608,-0.26895,0.806926,-0.310222,0.751385,-0.325781,0.707289,-0.375785,0.646411,-0.42941,0.562737,-0.466007,0.507049,-0.498432,0.342404,-0.52006,0.174172,-0.540831,-0.0124533,-0.549591,-0.205181,-0.568172,-0.394747,-0.583467,-0.566664,-0.592076,-0.726541,-0.610989,-0.872327,-0.623513,-0.978051,-0.625121,-1.07995,-0.609425,-1.19446,-0.585819,-1.30293,-0.579067,-1.35351,-0.550013,-1.40348,-0.537845,-1.41734,-0.516377,-1.427,-0.511841,-1.45283,-0.507495,-1.48556,-0.515029,-1.48937,-0.516971,-1.47612,-0.515144,-1.44034,-0.520613,-1.38452,-0.525795,-1.32252,-0.519434,-1.27787,7 +0.914643,0.91145,0.918648,0.914861,0.924424,0.908704,0.937311,0.919198,0.962573,0.946531,0.99999,0.98493,1.04973,1.0594,1.09505,1.13116,1.16409,1.18866,1.19022,1.24962,1.21537,1.28542,1.24272,1.3001,1.27582,1.30602,1.31358,1.32068,1.35533,1.34148,1.40027,1.39229,1.45344,1.45063,1.50331,1.51253,1.53461,1.53848,1.53796,1.54601,1.50753,1.52357,1.45484,1.49368,1.39586,1.47241,1.34767,1.45179,1.31531,1.42528,1.29644,1.39896,1.30206,1.39299,1.31348,1.41115,1.35152,1.43175,1.37919,1.45572,1.39163,1.49846,1.36675,1.49969,1.34594,1.47098,1.30551,1.44115,1.27281,1.40197,1.26183,1.34715,1.23719,1.34107,1.22932,1.34718,1.23058,1.34108,1.22697,1.34717,1.21724,1.32546,1.20822,1.2896,1.19233,1.25907,1.12767,1.18833,1.06739,1.09963,7 +0.661822,0.91145,0.66505,0.914861,0.670259,0.921052,0.680688,0.931566,0.701553,0.958957,0.733631,0.997458,0.778112,1.0594,0.830465,1.13116,0.878431,1.18866,0.91836,1.2634,0.947684,1.29925,0.978579,1.31385,1.01283,1.29251,1.04933,1.28002,1.08651,1.2727,1.11318,1.27806,1.15391,1.27207,1.17916,1.24929,1.20028,1.1721,1.2,1.07857,1.18455,0.942682,1.15074,0.812581,1.10111,0.667142,1.07155,0.514053,1.04422,0.381765,1.02851,0.251601,1.03421,0.162165,1.04278,0.0993605,1.06647,0.013888,1.08991,-0.103207,1.10193,-0.23096,1.10467,-0.369068,1.08202,-0.490642,1.0712,-0.595414,1.06589,-0.673519,1.0512,-0.757175,1.04967,-0.835725,1.04411,-0.906143,1.0457,-0.978914,1.05092,-1.0592,1.05034,-1.11419,1.03312,-1.16205,1.01104,-1.20308,0.96854,-1.25977,0.930143,-1.29002,7 +0.0881115,1.20779,0.0895746,1.21147,0.0934971,1.21806,0.0983492,1.22903,0.119253,1.25783,0.139421,1.2862,0.19308,1.30296,0.280176,1.32832,0.349392,1.33724,0.39557,1.31863,0.340245,1.29925,0.369038,1.21743,0.405948,1.11651,0.480142,1.02238,0.538504,0.914867,0.581602,0.821234,0.610431,0.721626,0.635057,0.645343,0.639104,0.550825,0.608565,0.449933,0.574591,0.329589,0.530814,0.19642,0.47761,0.0590939,0.419977,-0.0946845,0.404523,-0.254135,0.396265,-0.410872,0.412883,-0.53427,0.44732,-0.694149,0.474422,-0.807872,0.489086,-0.914418,0.489131,-1.01706,0.493302,-1.11656,0.490931,-1.24162,0.490567,-1.32378,0.484548,-1.3892,0.476861,-1.45864,0.477636,-1.52104,0.497689,-1.58617,0.518697,-1.67224,0.522727,-1.77167,0.530989,-1.83805,0.517016,-1.83788,0.485403,-1.77326,0.464546,-1.68659,0.441245,-1.6418,7 +0.457615,1.1831,0.469947,1.19908,0.484525,1.19331,0.493158,1.20424,0.50074,1.23292,0.487769,1.27367,0.548301,1.31581,0.618786,1.36779,0.666782,1.4183,0.688345,1.45671,0.710872,1.4517,0.755089,1.41033,0.790314,1.37373,0.825741,1.33427,0.879699,1.31396,0.921845,1.32093,0.954286,1.33159,0.99392,1.32669,1.00923,1.31545,1.03102,1.27201,1.01716,1.18476,0.975323,1.0883,0.942392,1.01224,0.8949,0.908862,0.87079,0.805652,0.846351,0.704093,0.852099,0.664236,0.869539,0.6338,0.891037,0.57783,0.911875,0.533118,0.912527,0.476486,0.908179,0.425109,0.902584,0.336936,0.898039,0.25195,0.888561,0.185307,0.898026,0.0955589,0.890212,0.0241963,0.895919,-0.0394876,0.906996,-0.112272,0.921196,-0.185393,0.929758,-0.242891,0.931776,-0.30062,0.911379,-0.360774,0.880129,-0.431168,0.852939,-0.489421,7 +0.515982,1.19542,0.518761,1.19908,0.523643,1.20566,0.542502,1.21661,0.550982,1.24535,0.579981,1.2862,0.62143,1.35425,0.682306,1.43349,0.730293,1.49936,0.771972,1.56718,0.813815,1.57648,0.866808,1.54806,0.921783,1.48197,0.917172,1.4563,0.921072,1.41033,0.921845,1.42084,0.943161,1.40602,0.970758,1.38864,0.985343,1.33134,0.98272,1.27201,0.957303,1.18476,0.905119,1.03961,0.851721,0.946497,0.817592,0.744329,0.80571,0.577438,0.814217,0.429401,0.841409,0.275508,0.891201,0.115592,0.945849,0.013888,0.978659,-0.0872645,0.990524,-0.183824,0.995501,-0.306772,0.976477,-0.429401,0.969348,-0.506214,0.947652,-0.587631,0.92678,-0.688431,0.91838,-0.768564,0.90516,-0.866168,0.906996,-0.952246,0.902657,-1.01884,0.892647,-1.08738,0.867263,-1.17528,0.838844,-1.24193,0.809365,-1.2974,0.767177,-1.35065,7 +0.350635,1.1831,0.352906,1.17436,0.357417,1.19331,0.364821,1.19182,0.380273,1.22044,0.40578,1.26109,0.45427,1.3286,0.502414,1.4072,0.550428,1.4588,0.625584,1.48433,0.669673,1.49331,0.724573,1.45164,0.699269,1.41431,0.683445,1.36139,0.714313,1.30022,0.751724,1.29237,0.787921,1.24231,0.843456,1.21832,0.854045,1.15613,0.862037,1.06242,0.849706,0.942682,0.811573,0.796399,0.783674,0.650743,0.751304,0.481147,0.74063,0.332812,0.739203,0.187029,0.755671,0.0811448,0.782946,-0.013978,0.814289,-0.0989422,0.845149,-0.198587,0.856823,-0.246717,0.853596,-0.291231,0.80757,-0.352735,0.77575,-0.431914,0.760444,-0.516026,0.754454,-0.564608,0.730805,-0.620774,0.719955,-0.706154,0.722119,-0.778929,0.717315,-0.870977,0.725747,-0.953317,0.728994,-1.02952,0.711956,-1.0994,0.69444,-1.17185,0.68137,-1.25361,7 +0.292319,1.19542,0.29441,1.19908,0.318349,1.19331,0.305628,1.21661,0.309997,1.25783,0.354564,1.27367,0.318436,1.34145,0.375429,1.3809,0.412848,1.43178,0.447843,1.4291,0.515259,1.41014,0.541737,1.35522,0.587986,1.27895,0.622438,1.21219,0.641937,1.1488,0.656027,1.07824,0.676954,1.03406,0.692933,0.98605,0.698796,0.933101,0.693056,0.820653,0.694185,0.684578,0.671224,0.536933,0.658951,0.354919,0.640881,0.217893,0.632219,0.071986,0.642748,-0.0877335,0.648553,-0.226563,0.663831,-0.354063,0.67179,-0.469521,0.678219,-0.548566,0.678536,-0.655455,0.667946,-0.773994,0.64925,-0.904432,0.653513,-1.04135,0.652042,-1.13153,0.649138,-1.15603,0.646399,-1.21199,0.655123,-1.29281,0.657403,-1.37889,0.661745,-1.47595,0.642272,-1.55655,0.62765,-1.6126,0.603201,-1.65665,0.570648,-1.69918,0.535566,-1.73885,7 +0.535387,1.1584,0.538226,1.16203,0.552956,1.16856,0.562251,1.17945,0.571017,1.20801,0.600425,1.24856,0.652756,1.31581,0.714038,1.36779,0.772634,1.4183,0.824246,1.4291,0.875613,1.38242,0.836344,1.35522,0.830738,1.27895,0.856218,1.19865,0.890069,1.13507,0.943117,1.10679,0.976479,1.07867,1.00553,1.03248,1.03312,0.964963,1.03102,0.852893,1.01716,0.732951,0.975323,0.618051,0.91971,0.453527,0.872804,0.316613,0.827403,0.169822,0.814217,0.04155,0.819975,-0.0645929,0.837073,-0.143548,0.858161,-0.24393,0.889614,-0.341794,0.93482,-0.482533,0.951812,-0.587105,0.955357,-0.73587,0.959131,-0.818381,0.957535,-0.902495,0.945933,-0.97725,0.937142,-0.996982,0.92369,-1.07946,0.906996,-1.16559,0.902657,-1.23395,0.883394,-1.30187,0.867263,-1.34754,0.838844,-1.38452,0.809365,-1.42296,0.758574,-1.45981,7 +0.0784089,1.02261,0.0895746,1.02611,0.0348202,1.06956,0.039105,1.06788,0.028942,1.08349,0.036988,1.11048,0.0677238,1.13632,0.110844,1.15745,0.169526,1.13462,0.207341,1.0977,0.216702,1.06363,0.247078,0.983219,0.264334,0.872908,0.297227,0.76468,0.280055,0.653404,0.262686,0.52143,0.211065,0.379429,0.160444,0.227235,0.101813,0.0569978,0.0533849,-0.13031,0.00049384,-0.315775,-0.0305818,-0.549475,-0.0552192,-0.76257,-0.076985,-0.966676,-0.0833804,-1.1672,-0.0859531,-1.33198,-0.0799469,-1.48986,-0.0724059,-1.6173,-0.0628139,-1.72624,-0.0561116,-1.8052,-0.045731,-1.8818,-0.0526426,-1.95749,-0.0474442,-2.03855,-0.0289771,-2.08195,-0.0179344,-2.10488,-0.0113638,-2.09129,-0.019395,-2.08538,-0.0209615,-2.09283,-0.0174844,-2.12555,-0.0146664,-2.14812,-0.00691933,-2.13298,0.0101552,-2.08966,0.00502711,-2.03245,-0.0218018,-2.00047,-0.0390946,-1.93291,7 +0.233952,1.03493,0.245647,1.02611,0.259672,1.00771,0.256283,0.981144,0.259806,0.971437,0.293125,0.98493,0.203558,1.0466,0.237829,1.11805,0.254153,1.13462,0.270102,1.15294,0.288773,1.00819,0.297921,0.886737,0.304758,0.737541,0.327704,0.615531,0.331745,0.515777,0.337111,0.407207,0.310906,0.290152,0.276194,0.165288,0.233173,0.0251358,0.198217,-0.146464,0.167887,-0.299674,0.15657,-0.484608,0.148804,-0.663962,0.143919,-0.835049,0.176827,-1.00414,0.181971,-1.13806,0.220027,-1.2631,0.252416,-1.35816,0.28805,-1.43627,0.333315,-1.51886,0.377665,-1.59878,0.39503,-1.67722,0.42757,-1.74737,0.449804,-1.76978,0.464833,-1.78995,0.496014,-1.80247,0.496398,-1.83009,0.497689,-1.87947,0.509473,-1.93893,0.504235,-2.01368,0.50318,-2.02573,0.489381,-2.02343,0.476313,-1.98061,0.455678,-1.92512,0.415481,-1.86011,7 +0.282566,1.10901,0.29441,1.1126,0.288986,1.11906,0.305628,1.12988,0.320066,1.1582,0.344341,1.17323,0.370664,1.21325,0.407161,1.22321,0.434018,1.22916,0.374649,1.22201,0.360844,1.22997,0.369038,1.23118,0.345234,1.15715,0.31751,1.03591,0.280055,0.846083,0.273295,0.678456,0.255452,0.52816,0.241481,0.351129,0.257062,0.168481,0.258559,-0.017506,0.263612,-0.186688,0.273518,-0.40356,0.273528,-0.614622,0.276438,-0.81856,0.274419,-1.00414,0.278425,-1.1865,0.305765,-1.36028,0.349868,-1.52012,0.386734,-1.66179,0.42236,-1.75751,0.433427,-1.8346,0.427768,-1.92634,0.417037,-2.02325,0.398876,-2.05221,0.395859,-2.09053,0.390698,-2.09129,0.383873,-2.12572,0.358738,-2.17283,0.343045,-2.24557,0.328186,-2.29599,0.308423,-2.30723,0.305085,-2.26196,0.285981,-2.17499,0.269989,-2.05068,0.235353,-1.98143,7 +-0.232778,1.03493,-0.203055,1.05078,-0.160668,1.04481,-0.18787,1.0803,-0.161853,1.05858,-0.178154,1.12301,-0.151663,1.14917,-0.111395,1.19692,-0.0844627,1.25618,-0.043594,1.27724,0.000489551,1.27153,0.0337777,1.24499,0.0721509,1.19773,0.11426,1.18506,0.145619,1.19012,0.16699,1.16384,0.177803,1.16795,0.183606,1.15637,0.161506,1.14024,0.162025,1.06242,0.132022,0.974954,0.109767,0.861266,0.0921279,0.732881,0.0776305,0.612773,0.0792915,0.495873,0.0855158,0.380884,0.112909,0.29167,0.133302,0.22893,0.15649,0.158876,0.177544,0.0876905,0.18826,0.0363016,0.209436,-0.042046,0.216477,-0.107506,0.225713,-0.194048,0.238248,-0.272705,0.237524,-0.330808,0.24318,-0.392297,0.247605,-0.452828,0.250606,-0.512243,0.25403,-0.588671,0.243504,-0.618198,0.240572,-0.684935,0.222537,-0.723593,0.208092,-0.782717,0.183914,-0.841198,7 +-0.00911567,1.05962,-0.00795162,1.05078,0.005507,1.05715,0.00950838,1.05551,0.00885553,1.09591,0.0472631,1.11048,0.0677238,1.17481,0.100284,1.2495,0.158914,1.29674,0.207341,1.33247,0.237301,1.34087,0.267404,1.31385,0.274427,1.30602,0.297227,1.3478,0.331745,1.34148,0.337111,1.33518,0.322032,1.33159,0.299356,1.34221,0.268976,1.29948,0.222366,1.28809,0.179884,1.20086,0.133169,1.07205,0.103498,0.930098,0.0776305,0.760818,0.0467235,0.61005,0.0212496,0.477847,0.00579153,0.37269,0.00338402,0.293715,0.00299437,0.207252,-0.0115893,0.119507,-0.0234379,0.0677482,-0.0198476,-0.0108979,-0.026324,-0.107506,-0.00859557,-0.208883,-0.00810275,-0.272705,-0.00176261,-0.330808,-0.00998958,-0.378888,-0.0117204,-0.426159,-0.00825968,-0.472269,-0.0146664,-0.521477,-0.0254745,-0.564633,-0.026723,-0.592191,-0.0402834,-0.645834,-0.0483157,-0.682275,-0.0562559,-0.719887,7 +-0.193867,1.24481,-0.193272,1.23618,-0.189982,1.21806,-0.18787,1.22903,-0.191957,1.22044,-0.178154,1.22345,-0.162087,1.25168,-0.111395,1.27574,-0.0632924,1.36426,-0.0122406,1.3877,0.0313619,1.38242,0.0743788,1.34141,0.12272,1.27895,0.154931,1.21219,0.186992,1.1626,0.220142,1.14959,0.22219,1.10843,0.22987,1.07897,0.233173,0.996825,0.222366,0.901217,0.21575,0.765223,0.191643,0.634233,0.171487,0.486396,0.154938,0.34952,0.133497,0.218705,0.128397,0.0900662,0.123599,-0.016037,0.122498,-0.0949941,0.123558,-0.179476,0.110818,-0.230403,0.0991455,-0.293853,0.100213,-0.369068,0.08981,-0.444695,0.0932592,-0.491316,0.1003,-0.530371,0.103504,-0.578393,0.0931302,-0.620774,0.0901711,-0.652816,0.0842266,-0.698923,0.0687354,-0.750006,0.0579998,-0.779069,0.0470334,-0.817468,0.0231607,-0.84026,0.00475786,-0.870578,-0.0133748,-0.913985,7 +0.214497,1.09664,0.216349,1.10021,0.220554,1.10666,0.226635,1.11746,0.23972,1.14572,0.262352,1.18576,0.297535,1.25168,0.354255,1.32832,0.391678,1.40476,0.437356,1.47049,0.47406,1.50714,0.511221,1.53431,0.537417,1.52261,0.571626,1.53767,0.600564,1.56169,0.634755,1.62073,0.643693,1.67379,0.658219,1.72935,0.662993,1.76144,0.64482,1.75553,0.610457,1.70103,0.565947,1.63959,0.534286,1.58741,0.497285,1.50118,0.469603,1.40894,0.439146,1.33432,0.434318,1.29581,0.414799,1.24919,0.41961,1.20616,0.4112,1.13756,0.411134,1.08966,0.39503,1.03246,0.385329,0.949941,0.36833,0.84655,0.376196,0.757838,0.361993,0.659473,0.318229,0.615472,0.284665,0.573841,0.250606,0.541079,0.216952,0.540554,0.19714,0.534594,0.185255,0.547472,0.168183,0.520439,0.128551,0.48529,0.10671,0.444599,7 +-0.534213,1.54115,-0.544447,1.54512,-0.532137,1.53976,-0.523486,1.55123,-0.523254,1.58155,-0.516227,1.62517,-0.496406,1.70038,-0.471178,1.78839,-0.412466,1.87757,-0.35729,1.93996,-0.308393,1.97844,-0.260882,1.98899,-0.231315,1.96929,-0.190668,1.98517,-0.174889,2.01583,-0.183862,2.09187,-0.199313,2.17969,-0.221581,2.27135,-0.232512,2.33496,-0.248385,2.35193,-0.262686,2.3303,-0.287878,2.30444,-0.293295,2.2776,-0.308908,2.22506,-0.332714,2.14268,-0.343129,2.06143,-0.337052,2.02464,-0.353903,1.96182,-0.369806,1.89901,-0.401016,1.82157,-0.413423,1.71852,-0.401986,1.60867,-0.395791,1.50164,-0.375305,1.35195,-0.352973,1.21591,-0.346415,1.07206,-0.403852,1.00515,-0.474781,0.960512,-0.516719,0.94105,-0.524275,0.903528,-0.535526,0.856336,-0.561218,0.839043,-0.575014,0.792567,-0.587692,0.736397,-0.596638,0.650802,7 +-0.777331,1.3189,-0.788262,1.32267,-0.796107,1.34181,-0.789957,1.34056,-0.794291,1.36988,-0.803083,1.41175,-0.788922,1.46966,-0.767495,1.51236,-0.751026,1.48582,-0.775533,1.44287,-0.781964,1.28542,-0.819632,1.13476,-0.858433,0.967635,-0.902097,0.859641,-0.939972,0.777239,-0.99187,0.678456,-1.05344,0.543072,-1.14771,0.428529,-1.21154,0.295929,-1.27432,0.175931,-1.30328,0.00687217,-1.31712,-0.192709,-1.31359,-0.351738,-1.30283,-0.538889,-1.2977,-0.66175,-1.29687,-0.750207,-1.31191,-0.841977,-1.33912,-0.937127,-1.35653,-1.03339,-1.39126,-1.10532,-1.40503,-1.17429,-1.3737,-1.21,-1.3247,-1.27227,-1.28194,-1.27921,-1.24959,-1.27468,-1.18879,-1.27979,-1.16341,-1.23887,-1.14158,-1.23948,-1.13611,-1.23224,-1.15436,-1.20706,-1.15686,-1.16781,-1.15103,-1.09576,-1.13692,-1.03463,-1.10938,-1.00866,-1.08554,-0.974615,7 +-0.816192,1.47939,-0.81751,1.4833,-0.815616,1.49026,-0.819554,1.50166,-0.814377,1.51931,-0.813305,1.56242,-0.799346,1.6363,-0.767495,1.72269,-0.729856,1.81005,-0.670932,1.88473,-0.617223,1.92299,-0.565626,1.93387,-0.524636,1.91514,-0.495544,1.91733,-0.485028,1.93325,-0.492169,1.9919,-0.520974,2.04574,-0.545731,2.11648,-0.590665,2.12789,-0.634584,2.09401,-0.645397,2.00758,-0.650452,1.91524,-0.667407,1.8339,-0.662274,1.69855,-0.668876,1.572,-0.675319,1.4474,-0.679839,1.3606,-0.689528,1.28158,-0.742549,1.23838,-0.779283,1.13756,-0.825644,1.08966,-0.827814,1.01692,-0.828565,0.934581,-0.813375,0.84655,-0.796364,0.786468,-0.796334,0.728217,-0.778952,0.70951,-0.771119,0.667211,-0.775585,0.63439,-0.765187,0.594332,-0.758093,0.561406,-0.754757,0.507741,-0.738169,0.44268,-0.729176,0.359737,-0.716723,0.274763,7 +-0.8454,1.3189,-0.856541,1.32267,-0.854733,1.32941,-0.86895,1.34056,-0.864568,1.36988,-0.864522,1.41175,-0.851573,1.48245,-0.820401,1.56494,-0.772197,1.63445,-0.712772,1.70526,-0.658421,1.74282,-0.606279,1.75478,-0.565112,1.73919,-0.536215,1.74106,-0.526401,1.7681,-0.545377,1.80631,-0.598622,1.85234,-0.673093,1.89967,-0.745914,1.90486,-0.803566,1.86833,-0.84878,1.78168,-0.837604,1.70446,-0.79213,1.62028,-0.80587,1.50118,-0.809798,1.37633,-0.878921,1.31812,-0.90482,1.26342,-0.949364,1.20063,-0.983732,1.14177,-1.01294,1.05805,-1.03734,0.99532,-1.0243,0.907871,-1.01859,0.84262,-0.986539,0.742515,-0.973689,0.672011,-0.959059,0.576945,-0.966478,0.521376,-0.984143,0.493834,-1.01595,0.51441,-1.04318,0.486776,-1.06413,0.440781,-1.08652,0.414997,-1.09161,0.377908,-1.09169,0.296987,-1.08554,0.201976,7 +-0.466144,1.47939,-0.466385,1.49568,-0.473511,1.49026,-0.474141,1.50166,-0.462994,1.53174,-0.444513,1.57494,-0.423277,1.64909,-0.386539,1.73581,-0.338397,1.82353,-0.294529,1.87089,-0.246595,1.86754,-0.199901,1.80989,-0.180746,1.69856,-0.211004,1.59191,-0.267952,1.46538,-0.311439,1.34948,-0.410064,1.27207,-0.522569,1.18734,-0.626529,1.07651,-0.707031,0.933457,-0.776987,0.845867,-0.837604,0.666666,-0.860119,0.502795,-0.872101,0.2508,-0.885697,-0.00957936,-0.911054,-0.265463,-0.936999,-0.485714,-0.981829,-0.694149,-1.0276,-0.872327,-1.06856,-1.02574,-1.08193,-1.12715,-1.07889,-1.2879,-1.05025,-1.39489,-1.02725,-1.44271,-1.00329,-1.43211,-0.997315,-1.40362,-0.994646,-1.33291,-0.993432,-1.25284,-0.997457,-1.21893,-0.996853,-1.16676,-0.999214,-1.141,-0.985174,-1.08253,-0.964722,-1.04756,-0.941379,-1.02124,-0.94829,-0.92609,7 +0.642367,-0.866454,0.635802,-0.864607,0.640946,-0.860832,0.651091,-0.865494,0.671449,-0.834095,0.702912,-0.822917,0.736308,-0.825114,0.798732,-0.801116,0.878431,-0.797116,0.887007,-0.78001,0.875613,-0.7798,0.917599,-0.739049,0.962259,-0.737865,0.957843,-0.726987,1.00382,-0.722753,1.06003,-0.763517,1.043,-0.796021,1.04024,-0.856701,1.09281,-0.866932,1.10347,-0.887905,1.04103,-0.928868,0.986994,-0.971037,0.987756,-1.00906,0.939035,-1.04891,0.859915,-1.10198,0.867791,-1.08954,0.905658,-1.0849,0.891201,-1.06663,0.869101,-1.04954,0.923035,-1.00987,0.923645,-1.00137,0.875384,-0.976423,0.849811,-0.935085,0.887822,-0.862949,0.868847,-0.830951,0.811912,-0.812193,0.84333,-0.741687,0.868147,-0.71946,0.833055,-0.68556,0.819256,-0.669338,0.864839,-0.618198,0.848824,-0.565685,0.784491,-0.555144,0.782851,-0.5065,0.758574,-0.513684,8 +0.904941,-0.891149,0.869885,-0.914041,0.846239,-0.935084,0.878067,-0.927439,0.932469,-0.859001,0.948773,-0.835445,0.945271,-0.837907,0.989183,-0.787942,1.06891,-0.756616,1.07518,-0.766231,1.0815,-0.738246,1.16147,-0.683934,1.20501,-0.656645,1.18143,-0.672741,1.25195,-0.653969,1.30458,-0.67785,1.28707,-0.766262,1.31807,-0.794821,1.40325,-0.75545,1.40517,-0.775101,1.32814,-0.848224,1.27942,-0.889989,1.30519,-0.894048,1.22617,-0.950187,1.14182,-1.02048,1.1571,-0.976453,1.1842,-0.955391,1.15104,-0.969519,1.15416,-0.936781,1.24568,-0.850786,1.24675,-0.812687,1.1811,-0.83629,1.17704,-0.781884,1.2036,-0.714347,1.17429,-0.687803,1.12781,-0.688431,1.15279,-0.607307,1.15524,-0.572809,1.11042,-0.578943,1.10649,-0.548366,1.15232,-0.470762,1.11607,-0.459659,1.03822,-0.477385,1.02157,-0.44375,1.02446,-0.392372,8 +0.467318,-0.459007,0.450482,-0.456802,0.484525,-0.440125,0.503006,-0.444083,0.50074,-0.435657,0.538986,-0.396038,0.610952,-0.363567,0.639959,-0.32787,0.677395,-0.297287,0.751052,-0.269142,0.803542,-0.23923,0.80588,-0.229261,0.861121,-0.209965,0.917172,-0.211644,0.910756,-0.21356,0.932454,-0.220958,0.987547,-0.215752,1.01708,-0.206326,1.03312,-0.213795,1.06721,-0.227028,1.04103,-0.251232,0.963592,-0.290009,0.953704,-0.318869,0.939035,-0.357938,0.881608,-0.400854,0.878484,-0.394747,0.905658,-0.3723,0.902004,-0.386456,0.880097,-0.372839,0.934136,-0.309978,0.945938,-0.293853,0.908179,-0.291231,0.902584,-0.260774,0.898039,-0.238616,0.858964,-0.244075,0.840617,-0.207045,0.871498,-0.163879,0.868147,-0.146163,0.84228,-0.112272,0.856334,-0.0509476,0.87414,-0.0283963,0.830385,-0.00910645,0.802577,0.00210122,0.791673,0.0207699,0.775736,0.0200348,8 +-0.0771848,-0.347905,-0.0762301,-0.345602,-0.0726783,-0.32872,-0.0694329,-0.320138,-0.0714903,-0.286222,-0.0552234,-0.257958,-0.015829,-0.222567,0.015591,-0.183295,0.0742872,-0.148709,0.134147,-0.103446,0.18583,-0.0867833,0.226803,-0.0776639,0.244096,-0.0610327,0.276892,-0.0624945,0.300742,-0.00714873,0.337111,0.00742658,0.377487,0.0371681,0.391945,-0.0360058,0.340644,-0.0544849,0.282708,-0.033591,0.263612,-0.0576016,0.261847,-0.0792279,0.262216,-0.20379,0.21015,-0.292124,0.15519,-0.319359,0.128397,-0.281589,0.123599,-0.242725,0.133302,-0.208333,0.145494,-0.227782,0.12192,-0.373611,0.0545592,-0.246717,0.0456297,-0.228935,0.0475695,-0.15352,0.0830948,-0.119683,0.110131,-0.229791,0.0556465,-0.0970072,0.0462488,-0.0698413,0.0901711,-0.0794622,0.102676,-0.0189035,0.124305,0.0163042,0.141474,-0.0820199,0.120742,-0.0621194,0.0503377,0.118712,0.0666542,0.0458806,0.0723875,0.104979,8 +0.768803,-0.854133,0.772359,-0.852275,0.777808,-0.860832,0.789277,-0.840705,0.812002,-0.834095,0.84634,-0.810334,0.893044,-0.773831,0.95745,-0.748533,0.99484,-0.729597,1.03339,-0.724777,1.06095,-0.6828,1.09035,-0.656376,1.12411,-0.643079,1.16115,-0.618494,1.20026,-0.626443,1.23015,-0.663541,1.28707,-0.691832,1.35278,-0.717354,1.28387,-0.882829,1.23619,-0.87182,1.28028,-0.864395,1.30276,-0.90624,1.29382,-0.992656,1.19305,-1.11472,1.09843,-1.15086,1.13571,-1.08954,1.20563,-1.0849,1.25929,-1.05047,1.20897,-1.09785,1.15663,-1.10532,1.21334,-0.96992,1.31211,-0.929667,1.31429,-0.904432,1.22398,-0.952148,1.14474,-0.91684,1.15652,-0.798409,1.19031,-0.741687,1.20155,-0.692791,1.15664,-0.68556,1.09725,-0.723116,1.10596,-0.64501,1.18058,-0.552403,1.20138,-0.529224,1.16305,-0.531611,1.05879,-0.598575,8 +0.846574,-0.421991,0.85037,-0.432085,0.82668,-0.415374,0.700436,-0.431715,0.621259,-0.423177,0.754128,-0.38351,0.861665,-0.350774,0.788118,-0.367335,0.666782,-0.337845,0.761539,-0.338212,0.999155,-0.308568,1.08016,-0.270568,0.942021,-0.291185,0.876554,-0.293014,1.06582,-0.282404,1.2727,-0.278069,1.24269,-0.334788,1.07496,-0.34574,1.06892,-0.325347,1.27245,-0.323747,1.32814,-0.331946,1.11567,-0.40356,0.885715,-0.450346,0.972208,-0.489564,1.15269,-0.515031,1.09283,-0.540156,0.884223,-0.550502,0.869539,-0.532257,1.12128,-0.469521,1.24568,-0.421301,1.06852,-0.419639,0.86449,-0.384676,0.913171,-0.352735,1.08137,-0.327815,1.07577,-0.301334,0.917179,-0.303298,0.84333,-0.271384,0.97928,-0.239476,1.10115,-0.178915,1.05092,-0.158504,0.892647,-0.149078,0.894898,-0.10185,1.02918,-0.0756578,1.06577,-0.0545621,0.92154,-0.0770144,8 +0.447913,0.33119,0.450482,0.33409,0.455211,0.339493,0.463561,0.349108,0.480705,0.373753,0.508267,0.407443,0.548301,0.444056,0.597667,0.500225,0.645667,0.567276,0.677858,0.614512,0.700599,0.592402,0.7449,0.569853,0.800407,0.534521,0.825741,0.547752,0.838379,0.570828,0.84742,0.592788,0.887706,0.676955,0.901332,0.72281,0.937627,0.726032,0.958634,0.740089,0.957303,0.684578,0.940191,0.553185,0.93108,0.469926,0.8949,0.44824,0.849096,0.44699,0.835658,0.494042,0.830664,0.53466,0.858735,0.552854,0.891037,0.561682,0.923035,0.501302,0.968231,0.460796,0.930024,0.425109,0.923704,0.428831,0.948966,0.474917,0.888561,0.514517,0.888474,0.604454,0.890212,0.628881,0.895919,0.640542,0.897772,0.621085,0.930442,0.594332,0.966868,0.601594,0.959411,0.613767,0.929466,0.650037,0.880129,0.686176,0.861498,0.723589,8 +0.710436,-0.113326,0.713813,-0.110817,0.719131,-0.118367,0.730033,-0.097092,0.751743,-0.0745505,0.784848,-0.0319636,0.809437,-0.0943592,0.841024,-0.143886,0.81492,-0.12169,0.782405,0.0484126,0.824141,-0.0313372,0.937925,-0.11903,0.952114,-0.020452,1.02899,0.181616,1.05551,0.0479023,1.177,-0.0639319,1.16504,-0.0818038,1.13283,0.118861,1.1167,0.152584,1.04312,-0.0497456,1.12476,-0.138316,0.986994,-0.176528,0.965074,0.0426947,0.905919,-0.0617778,0.892427,-0.270405,0.921365,-0.31391,0.905658,-0.113219,0.902004,-0.0787629,0.902034,-0.195554,0.945238,-0.230403,0.923645,-0.0894846,0.930024,0.00464253,0.902584,-0.168814,0.969348,-0.194048,0.918106,-0.100927,0.936332,0.0955589,0.91838,0.0376634,0.895919,-0.0261243,0.906996,0.0477391,0.930442,0.217943,0.911203,0.18604,0.922533,0.0969194,0.893245,0.144631,0.897775,0.296987,0.852939,0.262658,8 +0.535387,-0.138021,0.538226,-0.135534,0.552956,-0.130769,0.552351,-0.134249,0.571017,-0.111882,0.6107,-0.0821846,0.652756,-0.0430762,0.682306,-0.0650122,0.709123,-0.0676509,0.740619,0.00695869,0.77267,0.107278,0.816017,0.0876229,0.830738,-0.020452,0.876554,0.00528458,0.931442,0.144212,0.953726,0.0359823,0.976479,-0.00743833,1.01708,0.0413943,1.0451,0.184446,1.03102,0.0792127,0.99323,-0.0253996,0.975323,-0.0792279,0.953704,0.0262245,0.916939,0.0204533,0.859915,-0.140028,0.867791,-0.13618,0.905658,0.0325889,0.912863,0.0184144,0.891037,-0.0989422,0.911875,-0.0872645,0.93482,0.0677482,0.930024,0.113695,0.892051,-0.0309058,0.898039,-0.0305476,0.888561,-0.000754267,0.907627,0.150578,0.890212,0.172044,0.868147,0.053825,0.87005,0.0877132,0.902657,0.258248,0.901949,0.306722,0.885654,0.202945,0.893245,0.183539,0.85357,0.196545,0.835778,0.311183,8 +0.564595,-0.298514,0.548008,-0.296168,0.543151,-0.291621,0.532654,-0.270614,0.550982,-0.236411,0.559484,-0.207737,0.610952,-0.184132,0.639959,-0.26217,0.687952,-0.216228,0.761539,-0.0758895,0.803542,-0.0452286,0.826207,-0.160337,0.861121,-0.142253,0.917172,0.0188755,0.941759,-0.0621998,0.953726,-0.192402,0.976479,-0.156234,1.0518,0.0104209,1.06892,-0.134174,1.11551,-0.227028,1.06496,-0.202859,1.04547,-0.0630463,0.976386,-0.20379,0.8949,-0.357938,0.849096,-0.33563,0.835658,-0.200822,0.830664,-0.242725,0.815411,-0.354063,0.836225,-0.324463,0.911875,-0.119081,0.923645,-0.0737953,0.908179,-0.213327,0.944824,-0.230121,0.918368,-0.179149,0.918106,-0.0293839,0.888474,-0.152026,0.880855,-0.15047,0.895919,-0.0661565,0.916269,0.0877132,0.902657,0.0163042,0.892647,-0.0150194,0.876459,0.0306819,0.884155,0.170551,0.844747,0.146323,0.784338,0.0442972,8 +0.447913,-0.236803,0.450482,-0.222017,0.455211,-0.229771,0.463561,-0.208615,0.480705,-0.199079,0.508267,-0.157516,0.548301,-0.132849,0.597667,-0.0781295,0.645667,-0.0406315,0.688345,-0.0206574,0.721198,0.024109,0.755089,0.0463161,0.790314,0.047202,0.825741,0.0324079,0.859066,0.0341098,0.889965,0.00742658,0.909899,-0.111563,0.912883,-0.144379,0.94954,-0.0704503,0.958634,-0.00142107,0.945368,-0.00922885,0.893448,-0.176528,0.840351,-0.220261,0.817592,-0.14408,0.773198,-0.188911,0.728455,-0.362426,0.712857,-0.420926,0.750424,-0.273117,0.792353,-0.179476,0.811729,-0.246346,0.801062,-0.3253,0.798956,-0.306772,0.82869,-0.122866,0.82673,-0.0899497,0.78999,-0.215446,0.764005,-0.234554,0.777687,-0.137003,0.794027,-0.0128186,0.768339,-0.0322666,0.754393,-0.118141,0.762809,-0.068643,0.793507,0.110201,0.784491,0.144631,0.729777,-0.00434079,0.715693,-0.0284898,8 +0.496526,-0.0886306,0.489462,-0.0984318,0.504084,-0.0936161,0.512906,-0.0846708,0.530896,-0.0620707,0.559484,-0.0319636,0.600528,0.00820672,0.650573,0.0533277,0.687952,0.0809266,0.656938,-0.0482734,0.6594,-0.00361408,0.663645,0.101432,0.668938,0.128422,0.652915,-0.0353712,0.703943,-0.0759328,0.730452,-0.0496232,0.798989,0.141357,0.820294,0.118861,0.830156,-0.102312,0.874143,-0.13031,0.849706,-0.00922885,0.846645,0.00182014,0.760992,-0.23666,0.78442,-0.325031,0.74063,-0.319359,0.782084,-0.13618,0.766416,-0.226563,0.793749,-0.354063,0.814289,-0.308385,0.867353,-0.0713907,0.879059,-0.0109022,0.809907,-0.197787,0.82869,-0.230121,0.796131,-0.208883,0.829418,-0.000754267,0.821464,-0.0144789,0.777687,-0.163879,0.812557,-0.1328,0.814558,-0.0589352,0.874873,0.123802,0.892647,0.159228,0.867263,0.0306819,0.847935,0.0280209,0.782851,0.0333523,0.741413,0.0079299,8 +-0.913469,-0.212107,-0.915087,-0.1973,-0.91341,-0.192619,-0.918294,-0.183826,-0.924827,-0.149268,-0.926014,-0.132406,-0.914278,-0.0943592,-0.894481,-0.0518381,-0.846265,-0.0136121,-0.785966,0.0207965,-0.720219,0.0518321,-0.677397,0.0600652,-0.625826,0.0878411,-0.607363,0.100246,-0.588461,0.0891609,-0.577257,0.0645381,-0.620815,0.0223207,-0.684644,0.0413943,-0.769803,0.0569978,-0.827715,-0.162549,-0.824849,-0.267403,-0.802532,0.131553,-0.803442,-0.00664487,-0.783774,-0.0782667,-0.809798,-0.0910743,-0.825347,-0.0554126,-0.787012,-0.016037,-0.819446,0.066968,-0.863169,-0.0505665,-0.901691,-0.0713907,-0.959345,-0.0737953,-1.00246,-0.042046,-0.997472,0.0456949,-0.864302,-0.342714,-0.855455,-0.0293839,-0.853743,0.0955589,-0.788309,0.0645396,-0.789649,0.120526,-0.831029,0.194387,-0.839343,0.3255,-0.767346,0.0386043,-0.87454,0.322196,-0.82879,0.157619,-0.817586,0.184016,-0.819646,0.201976,8 +-0.359214,-0.261498,-0.349344,-0.271451,-0.346403,-0.279272,-0.355704,-0.258193,-0.312424,-0.323554,-0.29081,-0.320707,-0.37105,-0.209718,-0.386539,-0.406744,-0.253716,-0.229767,-0.305016,-0.1449,-0.349538,-0.405569,-0.230365,-0.229261,-0.281884,-0.237038,-0.3533,-0.360851,-0.309272,-0.351188,-0.396527,-0.335181,-0.498838,-0.632314,-0.464694,-0.376713,-0.566837,-0.389071,-0.622541,-0.565509,-0.633462,-0.541677,-0.650452,-0.614341,-0.769448,-0.581753,-0.772698,-0.637609,-0.679695,-0.775857,-0.793214,-0.685565,-0.787012,-0.939159,-0.754459,-0.758934,-0.797361,-0.678963,-0.823806,-0.818969,-0.847937,-0.545426,-0.718591,-0.618253,-0.733606,-0.536656,-0.680922,-0.818381,-0.599273,-0.516026,-0.604855,-0.468355,-0.619545,-0.325136,-0.604444,-0.359458,-0.581436,-0.325563,-0.626216,-0.31978,-0.646809,-0.202702,-0.64417,-0.168145,-0.656591,-0.425545,-0.649588,-0.142422,-0.622358,-0.149749,8 +-0.446688,-0.545468,-0.456653,-0.530954,-0.444147,-0.539127,-0.444493,-0.543238,-0.452977,-0.510374,-0.434238,-0.49648,-0.412799,-0.45334,-0.375925,-0.433036,-0.317227,-0.445923,-0.263176,-0.448676,-0.20545,-0.433292,-0.1593,-0.408356,-0.150415,-0.372405,-0.149997,-0.26589,-0.1232,-0.502549,-0.0988286,-0.349489,-0.13279,-0.260358,-0.117382,-0.361193,-0.136955,-0.389071,-0.163895,-0.388226,-0.202889,-0.348047,-0.299609,-0.776507,-0.259301,-0.384608,-0.187408,-0.555378,-0.170098,-0.580255,-0.1931,-0.604798,-0.229934,-0.631452,-0.278113,-0.516026,-0.303997,-0.759497,-0.323131,-0.532692,-0.268547,-0.545426,-0.227286,-0.524809,-0.237472,-0.490642,-0.242904,-0.446748,-0.234739,-0.415853,-0.212395,-0.317083,-0.150682,-0.352012,-0.122853,-0.319483,-0.137693,-0.285589,-0.162931,-0.252587,-0.192375,-0.162455,-0.229458,-0.393422,-0.221526,-0.321867,-0.198622,-0.00434079,-0.159179,-0.0891193,8 +-0.261937,-0.162717,-0.26155,-0.160251,-0.268217,-0.143117,-0.227367,-0.221036,-0.201974,-0.223985,-0.188376,-0.182626,-0.172565,-0.158491,-0.164301,-0.157004,-0.179647,-0.0811898,-0.189982,-0.310596,-0.143652,-0.0867833,-0.0779933,-0.0639148,-0.0188942,-0.0610327,0.0126345,-0.0489035,0.000866425,-0.00714873,-0.045676,-0.278069,-0.0218226,0.0223207,0.0446931,-0.0360058,0.0660105,-0.0226228,0.0533849,-0.0497456,0.00049384,-0.106044,-0.0890555,-0.111661,-0.168631,-0.499615,-0.165312,-0.407262,-0.148404,-0.221523,-0.128779,-0.281589,-0.122761,-0.275119,-0.158999,-0.273117,-0.205313,-0.276157,-0.222984,-0.182713,-0.257429,-0.30961,-0.238237,-0.0887346,-0.195231,-0.15352,-0.151213,-0.134582,-0.155883,-0.129557,-0.154936,-0.138242,-0.141277,-0.0832503,-0.150624,-0.172832,-0.146917,-0.0455721,-0.107314,0.0163042,-0.0903457,0.0654161,-0.0911883,0.0836948,-0.121861,0.0798602,-0.145594,0.108684,-0.202061,-0.0891193,8 +-0.193867,-0.409617,-0.203055,-0.407368,-0.189982,-0.415374,-0.19777,-0.394505,-0.191957,-0.373366,-0.188376,-0.345818,-0.162087,-0.312284,-0.121954,-0.288461,-0.0844627,-0.243248,-0.0331609,-0.227748,0.0107626,-0.211507,0.0743788,-0.215452,0.112575,-0.223472,0.175214,-0.211644,0.197309,-0.199827,0.188262,-0.206711,0.122349,-0.141322,0.0562442,-0.485087,0.0421213,-0.484588,0.0292358,-0.162549,0.0722251,-0.267403,0.0278919,-0.322442,-0.0665896,-0.269529,-0.132197,-0.71984,-0.148404,-0.710633,-0.0966457,-0.297784,-0.0156431,-0.3723,-0.00741912,-0.354063,-0.0518175,-0.356691,-0.189621,-0.469059,-0.19055,-0.639765,-0.227286,-0.602645,-0.152991,-0.214827,-0.11045,-0.238616,-0.106623,-0.229791,-0.135783,-0.207045,-0.178802,-0.177346,-0.224697,-0.279508,-0.220859,-0.0322666,-0.18147,-0.0778367,-0.183122,-0.0283963,-0.220214,-0.00910645,-0.24875,0.0150331,-0.269387,0.0709912,-0.304984,-0.246798,8 +0.0200424,-0.199733,0.0115637,-0.1973,0.0153118,-0.18027,-0.0200882,-0.14667,-0.0614211,-0.385845,-0.0449482,-0.3584,0.0259204,-0.0687177,0.132017,-0.0518381,0.190642,-0.0406315,0.207341,-0.0206574,0.206376,-0.00361408,0.165823,0.0325075,0.153051,-0.209965,0.23622,0.100246,0.300742,0.00658431,0.305175,-0.0210675,0.277645,-0.0520448,0.218319,-0.0204856,0.113789,-0.277519,0.12577,-0.339902,0.120087,-0.251232,0.168241,0.0180718,0.216851,-0.121652,0.21015,-0.160498,0.187702,-0.205181,0.16053,-0.200822,0.102164,-0.0969869,0.122498,-0.0626016,0.16743,-0.0989422,0.210907,-0.103207,0.210553,-0.0737953,0.187591,-0.0731942,0.110876,-0.000252264,0.0932592,-0.327815,0.1003,-0.272705,0.151361,0.0680494,0.177536,0.0107872,0.164244,0.0272137,0.121173,0.0477391,0.0872744,0.0566087,0.0579998,0.11904,0.0285943,0.163214,-0.0131065,-0.0238184,0.00475786,0.271877,0.0381092,0.165609,8 +-0.8454,0.417597,-0.846808,0.420573,-0.835174,0.426093,-0.839302,0.435842,-0.844481,0.460896,-0.844025,0.48272,-0.820248,0.533774,-0.799228,0.592217,-0.751026,0.648276,-0.681419,0.697301,-0.627549,0.730958,-0.575816,0.748949,-0.524636,0.751049,-0.505738,0.751147,-0.495398,0.763506,-0.502833,0.806926,-0.532099,0.82575,-0.568893,0.862157,-0.674246,1.01279,-0.707031,1.09465,-0.71719,1.07177,-0.708925,0.942314,-0.644725,0.78215,-0.662274,0.760818,-0.723081,0.740428,-0.750333,0.704093,-0.744143,0.664236,-0.721994,0.6338,-0.753489,0.642285,-0.74592,0.676257,-0.714236,0.728058,-0.751386,0.798886,-0.754672,0.827326,-0.752231,0.787083,-0.67813,0.686295,-0.719723,0.631963,-0.703951,0.655757,-0.632215,0.707186,-0.673874,0.82107,-0.681833,0.903528,-0.68392,0.909901,-0.662609,0.852325,-0.710945,0.818487,-0.658411,0.811729,-0.665239,0.857006,8 +-0.767578,0.368206,-0.759015,0.371139,-0.756989,0.364244,-0.750512,0.373897,-0.764187,0.398659,-0.751866,0.432553,-0.736695,0.482546,-0.70403,0.539691,-0.655842,0.594295,-0.597792,0.642128,-0.534879,0.66168,-0.494561,0.680084,-0.453881,0.683395,-0.424448,0.696901,-0.423022,0.708455,-0.460289,0.735567,-0.56536,0.751385,-0.626768,0.738263,-0.686222,0.69417,-0.743224,0.659455,-0.800918,0.813665,-0.802532,0.763966,-0.79213,0.585004,-0.81689,0.563378,-0.874878,0.577438,-0.921802,0.510168,-0.936999,0.405084,-0.960167,0.374661,-0.961796,0.416694,-0.935054,0.469485,-0.959345,0.602272,-0.915136,0.674294,-0.881338,0.643405,-0.762395,0.50465,-0.72739,0.485887,-0.681417,0.494416,-0.638308,0.548253,-0.669275,0.667211,-0.66465,0.714396,-0.681833,0.688473,-0.68392,0.628406,-0.662609,0.640273,-0.656591,0.701876,-0.693793,0.786618,-0.65668,0.796376,8 +-0.962083,0.454613,-0.96385,0.470007,-0.962282,0.463193,-0.967639,0.472999,-0.975017,0.510708,-0.977231,0.532941,-0.966506,0.585057,-0.936828,0.6448,-0.888606,0.702314,-0.827807,0.752533,-0.771691,0.786404,-0.71805,0.790315,-0.615681,0.696961,-0.587028,0.601998,-0.619464,0.612146,-0.683563,0.664209,-0.74285,0.662108,-0.788843,0.583396,-0.829495,0.614549,-0.984653,0.756174,-0.932446,0.652307,-0.919479,0.472067,-0.916795,0.502795,-0.883178,0.464658,-0.918209,0.365424,-0.932495,0.364759,-0.969123,0.356458,-0.960167,0.3585,-1.00567,0.497227,-0.957315,0.469485,-0.981638,0.413592,-0.969719,0.440716,-0.913046,0.444191,-0.854085,0.430285,-0.786481,0.514517,-0.738876,0.480632,-0.750833,0.454215,-0.743347,0.507197,-0.738591,0.541079,-0.728156,0.580917,-0.739537,0.708842,-0.69944,0.719793,-0.710945,0.650037,-0.737998,0.648483,-0.716723,0.62654,8 +-0.8454,0.417597,-0.846808,0.420573,-0.835174,0.426093,-0.839302,0.435842,-0.844481,0.460896,-0.844025,0.48272,-0.820248,0.533774,-0.799228,0.592217,-0.751026,0.648276,-0.681419,0.697301,-0.627549,0.730958,-0.575816,0.748949,-0.524636,0.751049,-0.505738,0.751147,-0.495398,0.763506,-0.502833,0.806926,-0.532099,0.82575,-0.568893,0.862157,-0.674246,1.01279,-0.707031,1.09465,-0.71719,1.07177,-0.708925,0.942314,-0.644725,0.78215,-0.662274,0.760818,-0.723081,0.740428,-0.750333,0.704093,-0.744143,0.664236,-0.721994,0.6338,-0.753489,0.642285,-0.74592,0.676257,-0.714236,0.728058,-0.751386,0.798886,-0.754672,0.827326,-0.752231,0.787083,-0.67813,0.686295,-0.719723,0.631963,-0.703951,0.655757,-0.632215,0.707186,-0.673874,0.82107,-0.681833,0.903528,-0.68392,0.909901,-0.662609,0.852325,-0.710945,0.818487,-0.658411,0.811729,-0.665239,0.857006,8 +-0.767578,0.368206,-0.759015,0.371139,-0.756989,0.364244,-0.750512,0.373897,-0.764187,0.398659,-0.751866,0.432553,-0.736695,0.482546,-0.70403,0.539691,-0.655842,0.594295,-0.597792,0.642128,-0.534879,0.66168,-0.494561,0.680084,-0.453881,0.683395,-0.424448,0.696901,-0.423022,0.708455,-0.460289,0.735567,-0.56536,0.751385,-0.626768,0.738263,-0.686222,0.69417,-0.743224,0.659455,-0.800918,0.813665,-0.802532,0.763966,-0.79213,0.585004,-0.81689,0.563378,-0.874878,0.577438,-0.921802,0.510168,-0.936999,0.405084,-0.960167,0.374661,-0.961796,0.416694,-0.935054,0.469485,-0.959345,0.602272,-0.915136,0.674294,-0.881338,0.643405,-0.762395,0.50465,-0.72739,0.485887,-0.681417,0.494416,-0.638308,0.548253,-0.669275,0.667211,-0.66465,0.714396,-0.681833,0.688473,-0.68392,0.628406,-0.662609,0.640273,-0.656591,0.701876,-0.693793,0.786618,-0.65668,0.796376,8 +-0.962083,0.454613,-0.96385,0.470007,-0.962282,0.463193,-0.967639,0.472999,-0.975017,0.510708,-0.977231,0.532941,-0.966506,0.585057,-0.936828,0.6448,-0.888606,0.702314,-0.827807,0.752533,-0.771691,0.786404,-0.71805,0.790315,-0.615681,0.696961,-0.587028,0.601998,-0.619464,0.612146,-0.683563,0.664209,-0.74285,0.662108,-0.788843,0.583396,-0.829495,0.614549,-0.984653,0.756174,-0.932446,0.652307,-0.919479,0.472067,-0.916795,0.502795,-0.883178,0.464658,-0.918209,0.365424,-0.932495,0.364759,-0.969123,0.356458,-0.960167,0.3585,-1.00567,0.497227,-0.957315,0.469485,-0.981638,0.413592,-0.969719,0.440716,-0.913046,0.444191,-0.854085,0.430285,-0.786481,0.514517,-0.738876,0.480632,-0.750833,0.454215,-0.743347,0.507197,-0.738591,0.541079,-0.728156,0.580917,-0.739537,0.708842,-0.69944,0.719793,-0.710945,0.650037,-0.737998,0.648483,-0.716723,0.62654,8 +1.03133,0.170644,1.02596,0.185788,1.05148,0.166239,1.0656,0.187953,1.09306,0.211839,1.12292,0.244197,1.17508,0.277415,1.21142,0.316185,1.17471,0.337582,1.11702,0.324514,1.01975,0.259725,0.948115,0.115181,0.891452,-0.0475253,0.856218,-0.18452,0.838379,-0.309929,0.84742,-0.406539,0.843376,-0.45376,0.855007,-0.438593,0.830156,-0.389071,0.753397,-0.291508,0.622454,-0.154417,0.472341,0.00182014,0.341575,0.174172,0.243323,0.300124,0.176827,0.398036,0.128397,0.510168,0.102164,0.61561,0.0900331,0.682424,0.0797423,0.755045,0.0773979,0.771705,0.0434415,0.759505,-0.00895351,0.674294,-0.131871,0.520791,-0.253068,0.311416,-0.362805,0.113764,-0.451682,-0.0557134,-0.516377,-0.190755,-0.567383,-0.279508,-0.609158,-0.338926,-0.626216,-0.31978,-0.637508,-0.28308,-0.653366,-0.207876,-0.692812,-0.114565,-0.764512,0.00824167,-0.845366,0.104979,9 +1.36192,0.133627,1.3673,0.136354,1.36432,0.141488,1.39131,0.163164,1.42435,0.186933,1.46099,0.206559,1.38399,0.174849,1.30667,0.132202,1.23816,0.0944655,1.14837,0.0345748,1.07123,-0.0452286,1.00904,-0.132779,1.01283,-0.128745,1.01885,-0.0489035,0.962445,0.0616354,0.858029,0.250181,0.710273,0.424036,0.542469,0.583396,0.376447,0.741997,0.282708,0.885132,0.167887,0.910411,0.0980967,0.845014,0.0241396,0.683613,-0.0880045,0.431751,-0.20261,0.169822,-0.321688,-0.0715382,-0.444169,-0.242725,-0.548752,-0.451241,-0.632925,-0.582282,-0.701398,-0.596256,-0.725412,-0.529668,-0.76228,-0.400216,-0.807445,-0.199467,-0.864302,0.0438175,-0.944144,0.385715,-1.05477,0.714492,-1.13529,1.12606,-1.18788,1.38722,-1.20083,1.5144,-1.22852,1.52198,-1.31451,1.41933,-1.43672,1.23664,-1.54476,1.05176,-1.61337,0.899589,-1.6602,0.747852,9 +0.963257,0.380527,0.967412,0.408188,0.973296,0.413691,0.986656,0.336687,1.01276,0.43599,1.05121,0.445081,1.11238,0.546622,1.14796,0.552808,1.15354,0.594295,1.12745,0.573058,1.1021,0.453787,1.07002,0.294336,1.02292,0.114914,0.998514,-0.0353712,0.983132,-0.172302,0.953726,-0.292378,0.932093,-0.364547,0.901332,-0.34574,0.84207,-0.293485,0.753397,-0.162549,0.622454,0.0230429,0.448999,0.228853,0.262216,0.420657,0.143919,0.563378,0.0575982,0.658933,-0.0109389,0.768735,-0.0156431,0.842367,-0.0398845,0.925332,-0.0518175,0.996715,-0.0672134,0.978477,-0.123728,0.90098,-0.194548,0.752198,-0.237472,0.536151,-0.283667,0.355984,-0.343091,0.185307,-0.394273,0.04054,-0.450733,-0.0698413,-0.493311,-0.159469,-0.535217,-0.192278,-0.570646,-0.198808,-0.591144,-0.17589,-0.607292,-0.115132,-0.629368,-0.0368063,-0.684925,0.058463,-0.751001,0.177766,9 +-1.87614,-0.0392399,-1.84169,-0.0984318,-1.77365,-0.18027,-1.74736,-0.344927,-1.70789,-0.410751,-1.6636,-0.58434,-1.58286,-0.709699,-1.4765,-0.879933,-1.34358,-1.02675,-1.21464,-1.09756,-1.11145,-1.15403,-1.02285,-1.13861,-0.949478,-1.03561,-0.861479,-0.90326,-0.764217,-0.736545,-0.63041,-0.506515,-0.476644,-0.334788,-0.31423,-0.25282,-0.136955,-0.0863469,-0.00695665,0.0308185,0.0602905,0.0391439,0.109767,-0.0143615,0.137492,-0.154522,0.143919,-0.242729,0.122622,-0.254135,0.235544,-0.52403,0.348579,-0.825815,0.458124,-1.09902,0.55117,-1.29121,0.611493,-1.37572,0.678536,-1.33152,0.744373,-1.19446,0.849811,-1.02705,1.02028,-0.803546,1.194,-0.516026,1.32879,-0.674646,1.49041,-0.499802,1.83133,-0.319483,1.98868,-0.152246,2.08868,-0.0509476,2.14467,-0.0015845,2.17591,-0.00910645,2.18022,-0.101577,2.20642,-0.280504,2.17383,-0.513684,9 +1.35222,0.33119,1.35757,0.33409,1.36432,0.351842,1.38146,0.349108,1.41434,0.386179,1.46099,0.419971,1.51983,0.469698,1.58182,0.526517,1.62968,0.594295,1.66073,0.683522,1.65807,0.647848,1.52719,0.48718,1.35672,-0.182892,1.26277,-0.42863,1.17957,-0.130984,1.11318,0.707011,1.05413,1.27207,0.982369,1.37318,0.806267,0.980928,0.499988,0.240411,0.287543,-0.444862,0.133169,-0.727822,0.0694456,-0.401007,-0.0327929,0.316613,-0.180972,0.870876,-0.321688,1.07575,-0.4013,0.809973,-0.494624,0.22893,-0.610989,-0.517827,-0.734818,-1.00987,-0.859113,-1.12715,-0.969719,-0.882978,-1.06083,-0.260774,-1.20047,0.549218,-1.25947,1.21591,-1.2462,1.37466,-1.24782,0.99168,-1.25271,0.293846,-1.30254,-0.392263,-1.42306,-0.91134,-1.53712,-1.04719,-1.62106,-0.83075,-1.75323,-0.321867,-1.84326,0.359737,-1.90894,1.20878,9 +1.47865,0.183018,1.48439,0.185788,1.49143,0.178587,1.4999,0.175586,1.5348,0.211839,1.5942,0.244197,1.66608,0.303056,1.72998,0.355651,1.76726,0.41864,1.79669,0.448816,1.80221,0.495341,1.83199,0.514738,1.86251,0.534521,1.89291,0.534161,1.94466,0.529569,1.99567,0.492874,2.01917,0.543072,1.89688,0.273728,1.71369,-0.404967,1.56211,-0.887905,1.41187,-1.17094,1.29109,-1.31162,1.14647,-1.1734,0.950112,-0.81856,0.708118,-0.221523,0.482027,0.251601,0.327145,0.680398,0.187429,1.00628,0.134554,1.14177,0.110818,1.05805,0.0879701,0.775194,0.0347356,0.409568,-0.026324,-0.0156121,-0.11045,-0.40218,-0.215025,-0.702149,-0.308109,-0.880937,-0.366327,-0.970106,-0.419191,-0.946175,-0.4705,-0.805598,-0.607676,-0.481115,-0.860122,-0.068643,-1.13259,0.428222,-1.35443,1.12952,-1.50727,1.47708,-1.52295,1.59698,9 +1.36192,0.726262,1.37708,0.680075,1.38388,0.661198,1.39131,0.720887,1.41434,0.784617,1.4405,0.683604,1.42579,0.610698,1.40193,0.500225,1.3334,0.310562,1.24249,0.117423,1.1639,-0.156061,1.10049,-0.311934,1.0634,-0.331765,1.01885,-0.279481,0.952075,-0.21356,0.879301,-0.0496232,0.699148,0.230634,0.484593,0.583396,0.28089,0.933101,0.12577,1.17529,0.0124284,1.34604,-0.0422523,1.38013,-0.0665896,1.3902,-0.0659084,1.33665,-0.0725057,1.27849,-0.107394,1.15652,-0.187065,0.955711,-0.299776,0.666193,-0.435557,0.384467,-0.59015,0.103633,-0.725412,-0.120931,-0.827814,-0.322379,-0.881338,-0.429401,-0.894848,-0.476481,-0.894884,-0.487396,-0.882448,-0.427061,-0.863358,-0.311727,-0.863769,-0.239476,-0.932741,-0.112272,-1.06172,0.0834978,-1.22178,0.293288,-1.34457,0.547472,-1.41787,0.857394,-1.4365,1.13811,-1.42863,1.29373,9 +1.69256,0.66455,1.68918,0.667744,1.69667,0.685948,1.69733,0.67131,1.51472,0.535613,1.4405,0.344639,1.41537,0.110773,1.43366,-0.170121,1.46037,-0.297287,1.4725,-0.28298,1.43158,-0.183784,1.29351,0.115181,1.10387,0.507448,0.937508,0.900296,0.797006,1.20386,0.751724,1.34948,0.765728,1.42087,0.739257,1.49708,0.615215,1.29948,0.379242,0.949611,0.155953,0.361861,-0.0656539,-0.144094,-0.202625,-0.532484,-0.275736,-0.62112,-0.300202,-0.629138,-0.343129,-0.588672,-0.487038,-0.210331,-0.678669,0.390892,-0.830237,0.948409,-0.890531,1.32846,-0.925935,1.5456,-0.93698,1.68651,-0.923579,1.68556,-0.91523,1.60465,-1.00329,1.21591,-1.11223,0.631963,-1.15405,0.225797,-1.24347,-0.0261243,-1.35803,-0.0989092,-1.36749,-0.037474,-1.38873,0.0386043,-1.4644,0.189663,-1.54476,0.533426,-1.63106,1.02514,-1.65164,1.37862,9 +1.65365,0.787974,1.66971,0.754227,1.65761,0.784951,1.68743,0.820043,1.72555,0.822003,1.72735,0.721297,1.68698,0.520981,1.61355,0.263602,1.56616,-0.000131628,1.52478,-0.28298,1.49332,-0.447123,1.49673,-0.422106,1.52872,-0.345331,1.47622,-0.157397,1.31396,0.226788,1.0813,0.635653,0.921025,1.0043,0.820294,1.35766,0.770464,1.57034,0.729311,1.64273,0.718116,1.65266,0.659493,1.52611,0.556969,1.14371,0.442073,0.596284,0.328625,0.0882569,0.235544,-0.281589,0.177158,-0.485714,0.165823,-0.548418,0.178426,-0.501748,0.177544,-0.469059,0.121439,-0.278164,-0.0526426,0.0980869,-0.279658,0.459484,-0.436449,0.772184,-0.530299,1.07276,-0.566549,1.27835,-0.563259,1.34107,-0.539612,1.36055,-0.535217,1.34108,-0.635461,1.17242,-0.748839,0.789277,-0.800831,0.401715,-0.82879,0.0798602,-0.852923,-0.129894,-0.853925,-0.161906,9 +1.77033,0.516378,1.78675,0.519441,1.81398,0.500345,1.73678,0.497787,1.58499,0.27413,1.50199,0.0307855,1.43627,-0.286643,1.39131,-0.590784,1.37574,-0.743078,1.37844,-0.710999,1.36978,-0.696631,1.29351,-0.49103,1.07349,0.0607678,0.896889,0.574875,0.807323,0.92866,0.794268,1.16384,0.821183,1.27207,0.797132,1.31124,0.639104,1.14024,0.391348,0.723934,0.144018,0.168231,-0.0539834,-0.354875,-0.123266,-0.811839,-0.0990811,-0.950187,-0.115892,-0.955259,-0.160967,-0.782528,-0.358486,-0.291351,-0.667866,0.390892,-0.972793,0.948409,-1.2466,1.39209,-1.29363,1.5928,-1.25359,1.56198,-1.26139,1.24112,-1.37363,0.66815,-1.39742,0.142394,-1.35152,-0.193261,-1.33222,-0.44605,-1.28053,-0.426159,-1.25632,-0.365595,-1.32117,-0.266002,-1.43509,-0.0954548,-1.62106,0.255958,-1.76227,0.662969,-1.83442,1.00003,-1.84033,1.16031,9 +1.70226,0.849739,1.68918,0.877812,1.69667,0.896302,1.73678,0.881988,1.78581,0.934052,1.79907,0.972347,1.68698,0.944037,1.67707,0.76314,1.59795,0.37814,1.51434,-0.00681952,1.49332,-0.128338,1.49673,-0.105222,1.50848,-0.0745986,1.46602,0.100246,1.35533,0.58462,1.23015,1.00682,1.10958,1.37626,1.04024,1.51253,1.0451,1.58624,1.04312,1.59433,0.969299,1.58812,0.77644,1.42881,0.47761,0.847889,0.221226,0.15208,0.0575982,-0.237793,-0.000190952,-0.281589,0.00579153,-0.258957,0.00338402,-0.208333,-0.0628139,0.126649,-0.200723,0.612624,-0.335426,1.10542,-0.412937,1.46854,-0.448565,1.62425,-0.426285,1.61955,-0.402233,1.57375,-0.461283,1.41589,-0.647665,1.00515,-0.85448,0.560535,-1.01595,0.247725,-1.09879,0.0834978,-1.10124,0.11904,-1.07732,0.163214,-1.0463,0.22239,-1.09169,0.435069,-1.25706,0.760009,9 +1.77033,0.899129,1.79649,0.877812,1.78466,0.896302,1.81577,0.906777,1.87612,0.89672,1.881,0.972347,1.76011,0.841472,1.67707,0.605391,1.60851,0.472679,1.53526,0.255503,1.48305,-0.100615,1.44588,-0.339492,1.43767,-0.358839,1.43554,-0.306605,1.36565,-0.0621998,1.18761,0.435763,1.05413,0.944787,0.924494,1.31124,0.830156,1.55438,0.753397,1.70721,0.694185,1.7333,0.636091,1.73689,0.511604,1.68602,0.265361,1.36956,0.0684168,0.642662,-0.0537646,0.00922913,-0.122761,-0.469482,-0.158999,-0.742772,-0.161498,-0.727269,-0.156258,-0.659888,-0.257429,-0.482533,-0.532997,-0.0108979,-0.796912,0.566805,-0.935611,0.950584,-0.963858,1.25883,-0.939906,1.33337,-0.91024,1.34107,-0.9286,1.30721,-1.06217,1.04772,-1.22852,0.661584,-1.34237,0.279911,-1.43672,-0.0223311,-1.40883,-0.205256,-1.34809,-0.217754,-1.29994,-0.198274,9 +-2.2845,-0.212107,-2.29034,-0.518622,-2.29174,-0.638076,-2.30995,-0.642394,-2.27005,-0.597517,-2.21681,-0.458842,-2.10519,-0.261001,-1.92098,0.00074483,-1.70331,0.283543,-1.51791,0.517826,-1.33793,0.758681,-1.18536,0.859179,-1.11133,0.872908,-1.1054,0.859641,-1.09504,0.791032,-1.04502,0.707011,-0.975795,0.572831,-0.869881,0.428529,-0.745914,0.168481,-0.622541,-0.114225,-0.525804,-0.348047,-0.439958,-0.565656,-0.372654,-0.696831,-0.330947,-0.769236,-0.311076,-0.726974,-0.246674,-0.604798,-0.112071,-0.388532,0.0683708,-0.111155,0.244178,0.207252,0.4112,0.548992,0.555953,0.838087,0.667946,1.04807,0.712611,1.17981,0.704494,1.17355,0.711184,1.11574,0.744902,1.03082,0.824568,0.911052,0.90516,0.747218,1.0272,0.594416,1.15281,0.446471,1.27291,0.293288,1.36488,0.136708,1.41889,0.00210122,1.41946,-0.092201,1.40188,-0.161906,9 +-2.09005,-0.767672,-2.05625,-0.654539,-1.9985,-0.539127,-1.91514,-0.357348,-1.81828,-0.161694,-1.76603,-0.00685311,-1.67689,0.174849,-1.55058,0.355651,-1.4282,0.472679,-1.29832,0.614512,-1.20412,0.675571,-1.15489,0.693893,-1.09109,0.642814,-1.00377,0.601998,-0.867596,0.488251,-0.789868,0.292984,-0.731782,0.00740905,-0.673093,-0.25282,-0.60264,-0.500553,-0.53805,-0.742862,-0.501872,-0.896666,-0.451629,-1.01972,-0.418019,-1.09119,-0.353043,-1.08181,-0.245996,-0.955259,-0.118086,-0.766402,0.0272261,-0.53427,0.165823,-0.273117,0.29899,0.0461153,0.433462,0.374037,0.544835,0.743815,0.657051,1.03246,0.733677,1.17981,0.806348,1.23302,0.878678,1.21591,0.974637,1.19582,1.07779,1.12606,1.17377,0.973876,1.2583,0.767733,1.33816,0.554028,1.36564,0.333534,1.35568,0.110201,1.31922,-0.0886456,1.26915,-0.255393,1.20459,-0.356005,9 +-1.98307,-0.928219,-1.98798,-0.926427,-1.97894,-0.922735,-1.99413,-0.90265,-1.98899,-0.859001,-2.01195,-0.672254,-2.03206,-0.478981,-1.94215,-0.32787,-1.68219,-0.0541704,-1.37152,0.269341,-1.10112,0.523065,-0.911076,0.776506,-0.797771,0.940562,-0.739518,1.00879,-0.712527,1.01124,-0.672954,1.00682,-0.643009,0.944787,-0.557282,0.738263,-0.411588,0.471135,-0.272535,0.127537,-0.155027,-0.267403,-0.0422523,-0.630523,0.0581337,-0.926917,0.143919,-1.11472,0.187702,-1.18347,0.214104,-1.2027,0.241462,-1.16592,0.317403,-1.00191,0.463482,-0.727269,0.633755,-0.421301,0.801062,-0.105174,0.940918,0.175991,1.03984,0.505498,1.13229,0.742515,1.194,0.872356,1.24268,0.906998,1.23719,0.924519,1.23861,0.893869,1.26757,0.847739,1.32886,0.755667,1.412,0.641841,1.49391,0.507741,1.56391,0.339001,1.60515,0.184016,1.62489,0.0200348,9 +-2.07059,-0.65657,-2.05625,-0.642154,-2.01806,-0.613379,-1.97438,-0.568027,-1.92873,-0.5228,-1.83775,-0.370928,-1.78135,-0.0687177,-1.59293,0.250485,-1.32241,0.594295,-1.04739,0.932067,-0.854034,1.11908,-0.748514,1.16231,-0.686488,1.17066,-0.617557,1.21219,-0.485028,1.19012,-0.353983,1.04968,-0.265893,0.810839,-0.198419,0.583396,-0.113128,0.327791,-0.0190624,0.0630581,0.0722251,-0.170587,0.15657,-0.387309,0.194169,-0.548955,0.19913,-0.670516,0.176827,-0.726974,0.181971,-0.717886,0.252151,-0.599058,0.360671,-0.354063,0.474422,-0.00226043,0.600334,0.358094,0.778826,0.680922,0.973656,0.923479,1.15592,1.07255,1.26475,1.15872,1.31224,1.15865,1.30969,1.11329,1.30284,1.08578,1.31268,1.06719,1.35079,1.03442,1.42156,0.984195,1.50473,0.896524,1.56766,0.759524,1.64548,0.533426,1.70243,0.522983,1.73641,0.335445,9 +-2.39149,-0.804742,-2.42691,-0.790456,-2.42862,-0.78658,-2.42841,-0.791127,-2.44074,-0.746952,-2.43196,-0.60945,-2.335,-0.376415,-2.12204,-0.117595,-1.87261,0.229562,-1.57018,0.62829,-1.29673,0.966634,-1.15489,1.14851,-1.04052,1.18422,-1.02406,1.13082,-1.05372,1.01124,-1.03441,0.906902,-0.96467,0.706714,-0.85827,0.475022,-0.710111,0.200343,-0.477708,-0.0980701,-0.27462,-0.380319,-0.124128,-0.59809,-0.0325369,-0.778969,0.000322718,-0.851467,-0.0074818,-0.792199,-0.000190952,-0.637119,0.0486054,-0.388532,0.144161,-0.0949941,0.277054,0.22333,0.433462,0.517175,0.578246,0.869534,0.68979,1.1882,0.775917,1.36373,0.816513,1.33712,0.849132,1.24454,0.907627,1.19582,0.965261,1.07231,1.02558,0.893869,1.11964,0.794402,1.19914,0.661584,1.26361,0.494405,1.33725,0.335478,1.40075,0.144631,1.39295,-0.0670904,1.39332,-0.210431,9 +-2.2748,-1.08871,-2.27087,-1.07468,-2.27223,-1.05884,-2.24085,-1.01417,-2.14958,-0.908812,-2.21681,-0.709892,-2.11561,-0.350774,-1.87869,-0.0387207,-1.66102,0.283543,-1.44471,0.55928,-1.28646,0.717126,-1.19555,0.762757,-1.14166,0.723976,-1.09521,0.683368,-1.01235,0.570828,-0.906837,0.421454,-0.798305,0.171116,-0.673093,-0.113406,-0.519059,-0.452726,-0.369069,-0.742862,-0.262686,-0.977311,-0.206003,-1.10077,-0.179943,-1.1734,-0.154293,-1.19695,-0.094199,-1.18347,-0.0109389,-1.07342,0.102164,-0.841977,0.219951,-0.564649,0.375738,-0.24393,0.555869,0.0876905,0.789944,0.413592,1.00645,0.658753,1.09261,0.781313,1.13229,0.831651,1.12503,0.714924,1.10866,0.686982,1.14343,0.655757,1.21079,0.547172,1.30452,0.434405,1.40302,0.244832,1.49548,0.105663,1.5953,-0.075344,1.66362,-0.270027,1.70243,-0.44375,1.68493,-0.513684,9 +-0.242481,0.466988,-0.232302,0.457622,-0.248658,0.475595,-0.276711,0.510209,-0.242147,0.510708,-0.249868,0.570634,-0.214314,0.623547,-0.196033,0.684266,-0.158531,0.729334,-0.116788,0.766371,-0.153925,0.772572,-0.169438,0.721391,-0.180746,0.669887,-0.180474,0.588407,-0.205893,0.543302,-0.279559,0.421454,-0.410064,0.245481,-0.557282,0.134315,-0.686222,-0.0226228,-0.803566,-0.162549,-0.89658,-0.267403,-0.966282,-0.322442,-0.996154,-0.318869,-1.0157,-0.259218,-1.03749,-0.140028,-1.05039,-0.0877335,-1.00125,-0.048431,-0.949364,0.164145,-0.994729,0.465,-1.0241,0.771705,-1.04852,1.10542,-1.03525,1.37509,-0.976352,1.517,-0.905013,1.56008,-0.825909,1.45923,-0.76758,1.30586,-0.713308,1.13947,-0.669275,0.960512,-0.63688,0.794402,-0.700324,0.688473,-0.748839,0.615029,-0.754757,0.521023,-0.756256,0.377908,-0.773381,0.259294,-0.793882,0.165609,9 +0.418704,0.553395,0.323658,0.358807,0.230359,0.153837,0.147694,-0.0598819,0.0590457,-0.248891,-0.024451,-0.396038,-0.10986,-0.427698,-0.17486,-0.314752,-0.200817,-0.0541704,-0.252743,0.227887,-0.339265,0.536956,-0.423443,0.817873,-0.474067,0.940562,-0.465067,1.03591,-0.454025,1.1488,-0.492169,1.24951,-0.532099,1.27207,-0.557282,1.24929,-0.650419,1.10838,-0.791522,0.949611,-0.860714,0.765223,-0.849335,0.439634,-0.803442,0.0919633,-0.80587,-0.209822,-0.831492,-0.417195,-0.889614,-0.459389,-0.947689,-0.3723,-1.04682,-0.143548,-1.1811,0.0783425,-1.27996,0.199082,-1.31592,0.272117,-1.3846,0.549701,-1.47249,0.827326,-1.50603,1.09925,-1.52548,1.21591,-1.5334,1.16831,-1.47287,1.04543,-1.36389,0.933843,-1.27482,0.687727,-1.20998,0.540554,-1.19397,0.467593,-1.18791,0.308971,-1.18223,0.209403,-1.19779,0.146323,-1.21418,0.153504,9 +0.0978142,0.923825,0.0993071,0.890144,0.103251,0.908704,0.127946,0.919198,0.13934,0.946531,0.139421,0.934709,0.109527,0.931189,0.0791111,0.855132,0.0425044,0.715853,0.0191128,0.49021,0.0107626,0.287448,-0.0373397,0.0876229,-0.130177,-0.020452,-0.251622,0.0324079,-0.371332,0.226788,-0.492169,0.478565,-0.598622,0.662108,-0.707806,0.862157,-0.948879,1.1721,-1.14153,1.38481,-1.21956,1.5074,-1.27038,1.55855,-1.21155,1.47241,-1.13714,1.28725,-1.0158,1.03394,-0.986068,0.736414,-1.02268,0.45364,-1.14427,0.245161,-1.20304,0.158876,-1.22433,0.0718168,-1.21563,0.00485509,-1.199,-0.0265056,-1.20862,0.0304013,-1.26156,0.0883852,-1.28901,0.285542,-1.32282,0.618179,-1.46351,0.8573,-1.47502,1.08055,-1.52441,0.994387,-1.43235,0.755667,-1.40728,0.534594,-1.38145,0.295689,-1.38165,0.10578,-1.37461,-0.016869,-1.37715,-0.101277,9 +-0.242481,0.466988,-0.232302,0.457622,-0.248658,0.475595,-0.276711,0.510209,-0.242147,0.510708,-0.249868,0.570634,-0.214314,0.623547,-0.196033,0.684266,-0.158531,0.729334,-0.116788,0.766371,-0.153925,0.772572,-0.169438,0.721391,-0.180746,0.669887,-0.180474,0.588407,-0.205893,0.543302,-0.279559,0.421454,-0.410064,0.245481,-0.557282,0.134315,-0.686222,-0.0226228,-0.803566,-0.162549,-0.89658,-0.267403,-0.966282,-0.322442,-0.996154,-0.318869,-1.0157,-0.259218,-1.03749,-0.140028,-1.05039,-0.0877335,-1.00125,-0.048431,-0.949364,0.164145,-0.994729,0.465,-1.0241,0.771705,-1.04852,1.10542,-1.03525,1.37509,-0.976352,1.517,-0.905013,1.56008,-0.825909,1.45923,-0.76758,1.30586,-0.713308,1.13947,-0.669275,0.960512,-0.63688,0.794402,-0.700324,0.688473,-0.748839,0.615029,-0.754757,0.521023,-0.756256,0.377908,-0.773381,0.259294,-0.793882,0.165609,9 +0.418704,0.553395,0.323658,0.358807,0.230359,0.153837,0.147694,-0.0598819,0.0590457,-0.248891,-0.024451,-0.396038,-0.10986,-0.427698,-0.17486,-0.314752,-0.200817,-0.0541704,-0.252743,0.227887,-0.339265,0.536956,-0.423443,0.817873,-0.474067,0.940562,-0.465067,1.03591,-0.454025,1.1488,-0.492169,1.24951,-0.532099,1.27207,-0.557282,1.24929,-0.650419,1.10838,-0.791522,0.949611,-0.860714,0.765223,-0.849335,0.439634,-0.803442,0.0919633,-0.80587,-0.209822,-0.831492,-0.417195,-0.889614,-0.459389,-0.947689,-0.3723,-1.04682,-0.143548,-1.1811,0.0783425,-1.27996,0.199082,-1.31592,0.272117,-1.3846,0.549701,-1.47249,0.827326,-1.50603,1.09925,-1.52548,1.21591,-1.5334,1.16831,-1.47287,1.04543,-1.36389,0.933843,-1.27482,0.687727,-1.20998,0.540554,-1.19397,0.467593,-1.18791,0.308971,-1.18223,0.209403,-1.19779,0.146323,-1.21418,0.153504,9 +0.0978142,0.923825,0.0993071,0.890144,0.103251,0.908704,0.127946,0.919198,0.13934,0.946531,0.139421,0.934709,0.109527,0.931189,0.0791111,0.855132,0.0425044,0.715853,0.0191128,0.49021,0.0107626,0.287448,-0.0373397,0.0876229,-0.130177,-0.020452,-0.251622,0.0324079,-0.371332,0.226788,-0.492169,0.478565,-0.598622,0.662108,-0.707806,0.862157,-0.948879,1.1721,-1.14153,1.38481,-1.21956,1.5074,-1.27038,1.55855,-1.21155,1.47241,-1.13714,1.28725,-1.0158,1.03394,-0.986068,0.736414,-1.02268,0.45364,-1.14427,0.245161,-1.20304,0.158876,-1.22433,0.0718168,-1.21563,0.00485509,-1.199,-0.0265056,-1.20862,0.0304013,-1.26156,0.0883852,-1.28901,0.285542,-1.32282,0.618179,-1.46351,0.8573,-1.47502,1.08055,-1.52441,0.994387,-1.43235,0.755667,-1.40728,0.534594,-1.38145,0.295689,-1.38165,0.10578,-1.37461,-0.016869,-1.37715,-0.101277,9 +0.243705,0.800348,0.255379,0.803661,0.259672,0.809701,0.266131,0.820043,0.279893,0.846908,0.303347,0.884488,0.339338,0.944037,0.375429,0.999706,0.391678,1.06705,0.343296,1.05631,0.18583,0.966634,0.0235881,0.900546,-0.211077,0.805195,-0.424448,0.791803,-0.495398,0.777239,-0.470952,0.806926,-0.476644,0.810839,-0.464694,0.784756,-0.351896,0.662308,-0.115596,0.482172,0.179884,0.297318,0.495742,0.147805,0.715686,0.0426947,0.78442,-0.0288711,0.773198,-0.0748035,0.749896,-0.0715382,0.723547,-0.0808249,0.67469,-0.111155,0.54023,-0.195554,0.344474,-0.309978,0.0991455,-0.435397,-0.139964,-0.555957,-0.364138,-0.65927,-0.538304,-0.714347,-0.618987,-0.730779,-0.624008,-0.729665,-0.572664,-0.687935,-0.465492,-0.652816,-0.294848,-0.712229,-0.0795291,-0.776895,0.169283,-0.872939,0.397233,-0.989731,0.603201,-1.04756,0.747468,-1.09657,0.827219,-1.10808,10 +0.253408,1.03493,0.255379,1.03845,0.259672,1.04481,0.266131,1.05551,0.289962,1.08349,0.303347,1.12301,0.349816,1.1876,0.385988,1.2495,0.40229,1.26972,0.374649,1.2634,0.257901,1.18836,0.155686,1.12095,0.0316748,1.04885,-0.0788492,1.03591,-0.154203,1.02497,-0.183862,1.06393,-0.166051,1.09358,-0.105831,1.07897,0.0302075,1.01279,0.270602,0.804568,0.419071,0.684578,0.577617,0.520752,0.73831,0.387788,0.850708,0.300124,0.946688,0.186093,0.974938,0.187029,0.980651,0.178327,0.945329,0.164145,0.836225,0.126649,0.655958,0.0400005,0.433427,-0.105174,0.198485,-0.228935,-0.0157911,-0.322081,-0.161378,-0.387282,-0.274117,-0.387223,-0.327262,-0.399552,-0.328851,-0.392297,-0.280287,-0.346152,-0.202409,-0.3789,-0.0702836,-0.481115,0.113665,-0.618198,0.323524,-0.737948,0.51258,-0.827272,0.650235,-0.895688,0.750016,-0.938248,10 +0.564595,0.936146,0.567524,0.927246,0.572515,0.945803,0.572099,0.943987,0.591103,0.971437,0.538986,0.972347,0.402043,0.931189,0.237829,0.894597,0.0425044,0.904989,-0.148141,0.932067,-0.318666,1.00819,-0.423443,1.05208,-0.393167,1.04885,-0.282152,1.00879,-0.092143,0.873608,0.209479,0.621344,0.432942,0.468642,0.716095,0.304702,0.925651,0.200343,1.05517,0.159777,1.08889,0.0875863,1.0338,0.0666866,0.885715,0.0262245,0.629804,-0.0617778,0.296113,-0.188911,-0.0216315,-0.346231,-0.294182,-0.501876,-0.516286,-0.645595,-0.687737,-0.743418,-0.768181,-0.755337,-0.747647,-0.702658,-0.58758,-0.664941,-0.311365,-0.766524,0.0219503,-1.05625,0.317054,-1.21742,0.543871,-1.25229,0.712043,-1.23887,0.840328,-1.1995,0.897772,-1.1789,0.874873,-1.16676,0.735,-1.23487,0.498624,-1.32103,0.24067,-1.41044,0.0135806,-1.44807,-0.167738,-1.4477,10 +-0.573124,1.07194,-0.583427,1.08788,-0.56145,1.09431,-0.562931,1.09267,-0.493098,1.07106,-0.331804,0.98493,-0.088958,0.854265,0.184923,0.697383,0.465746,0.567276,0.625584,0.517826,0.6594,0.536956,0.572201,0.569853,0.405948,0.561594,0.195549,0.574875,-0.0611399,0.446993,-0.332711,0.278737,-0.654134,0.0223207,-0.835167,-0.175353,-0.92499,-0.118209,-0.972547,-0.0819852,-0.884645,-0.170587,-0.662183,-0.225142,-0.463383,-0.335268,-0.220524,-0.571796,0.00339289,-0.857423,0.181971,-1.12186,0.316455,-1.27926,0.403996,-1.3096,0.41961,-1.27513,0.366678,-1.24845,0.25514,-1.20574,0.0674742,-1.21,-0.174111,-1.24162,-0.375305,-1.29405,-0.500753,-1.48937,-0.614456,-1.52738,-0.741428,-1.61508,-0.798938,-1.61284,-0.81258,-1.52559,-0.830049,-1.44906,-0.832265,-1.38231,-0.745561,-1.34754,-0.547837,-1.29377,-0.322415,-1.41043,-0.124857,-1.42344,10 +0.797961,0.985536,0.801607,0.989012,0.807121,0.995304,0.818874,1.00593,0.842106,1.03367,0.877059,1.07279,0.92437,1.13632,0.978623,1.21004,1.0054,1.29674,1.04383,1.34625,1.06095,1.34087,0.988716,1.3001,0.759931,1.25188,0.47,1.22578,0.207679,1.24517,0.230751,1.20671,0.366361,1.12334,0.519307,0.98605,0.686883,0.805721,0.89823,0.691695,1.19655,0.555491,1.51332,0.4072,1.7133,0.322049,1.66792,0.2508,1.49962,0.202434,1.19998,0.203154,0.830664,0.0811448,0.458124,-0.013978,0.15649,-0.211703,-0.0226911,-0.389484,-0.146021,-0.529668,-0.150858,-0.540349,-0.0369114,-0.582603,0.144187,-0.595414,0.435288,-0.745063,0.773607,-0.922231,1.09655,-1.10449,1.34045,-1.22617,1.46172,-1.33891,1.44934,-1.38181,1.30072,-1.40912,1.05156,-1.44034,0.73009,-1.52705,0.40265,-1.61126,0.115313,-1.67817,10 +0.613209,0.837364,0.635802,0.828378,0.631141,0.859202,0.631343,0.869621,0.66138,0.88424,0.672139,0.934709,0.736308,0.969679,0.841024,1.01288,1.01596,1.02655,1.23206,0.973461,1.48305,0.911188,1.74054,0.96941,1.97374,0.954128,2.13683,0.900296,2.24448,0.92866,2.29337,0.992569,2.25206,0.974546,2.08212,0.846636,1.76146,0.710135,1.35694,0.498257,0.945368,0.297318,0.601019,0.0991198,0.341575,-0.0559135,0.154938,-0.160498,0.0792915,-0.205181,0.0748233,-0.233143,0.155778,-0.275119,0.306544,-0.370295,0.55117,-0.566203,0.867353,-0.818969,1.16875,-1.03281,1.41038,-1.19446,1.56763,-1.25698,1.65184,-1.29405,1.67677,-1.27468,1.65429,-1.22478,1.59353,-1.18512,1.4794,-1.15947,1.2768,-1.20557,1.01384,-1.3012,0.725747,-1.36887,0.45255,-1.40055,0.204403,-1.41044,0.0400945,-1.37274,-0.0562559,-1.29002,10 +-0.0869377,1.70165,-0.0762301,1.70575,-0.0629241,1.71302,-0.0496848,1.72476,-0.0514038,1.75589,-0.0449482,1.80094,-0.0367307,1.85423,-0.0055824,1.90673,0.0531169,1.99919,0.0505202,2.06421,-0.0818543,2.01999,-0.362463,1.82364,-0.625826,1.68505,-0.932627,1.60544,-0.970976,1.68552,-0.981262,1.73496,-0.787237,1.77798,-0.31423,1.69837,0.292865,1.49065,0.765503,1.20753,0.873575,1.15248,0.823243,1.10448,0.658951,1.06158,0.232246,0.908862,-0.256815,0.724157,-0.610997,0.542489,-0.89413,0.469872,-1.02515,0.504231,-0.983732,0.545603,-0.757022,0.469485,-0.246254,0.209224,0.264019,-0.13549,0.670371,-0.444695,0.928585,-0.595414,0.967366,-0.559001,0.869321,-0.550883,0.627685,-0.687935,0.275376,-0.946175,-0.0729762,-1.20557,-0.366765,-1.35492,-0.619001,-1.38231,-0.782392,-1.33432,-0.801613,-1.25492,-0.693793,-1.2974,-0.373629,-1.56902,10 +0.185339,1.62756,0.187101,1.6316,0.171682,1.63877,0.18719,1.65039,0.199599,1.68117,0.25213,1.66286,0.381141,1.53374,0.544706,1.42037,0.85726,1.2427,1.11702,1.11154,1.21537,1.13291,1.24272,1.14851,1.23534,1.14358,1.15095,1.15794,0.941759,1.05249,0.751724,0.949704,0.554977,0.840598,0.357232,0.80021,0.28089,0.821618,0.306857,0.820653,0.335343,0.765223,0.425598,0.618051,0.693004,0.25631,0.8949,-0.0617778,1.03341,-0.270405,1.12497,-0.394747,1.1842,-0.404694,1.1835,-0.354063,1.15416,-0.340612,1.02312,-0.437243,0.801062,-0.561115,0.56973,-0.680549,0.353676,-0.827831,0.174733,-0.90758,0.070703,-0.931124,0.0556465,-0.880937,0.102536,-0.849192,0.238364,-0.906143,0.454029,-1.09889,0.670991,-1.27431,0.855585,-1.34206,0.987046,-1.34754,1.03822,-1.29377,1.01274,-1.23466,0.904379,-1.22934,10 +0.418704,1.28188,0.430967,1.28562,0.425848,1.27991,0.433914,1.29098,0.440533,1.32006,0.344341,1.2862,0.161754,1.25168,-0.0373151,1.22321,-0.19026,1.25618,-0.315449,1.29102,-0.339265,1.32697,-0.281209,1.32766,-0.120084,1.25188,0.226079,1.10369,0.569561,0.983711,0.879301,0.878346,1.13178,0.751385,1.26019,0.738263,1.25998,0.757894,1.09136,0.740089,0.73005,0.668408,0.378795,0.569367,0.103498,0.371318,-0.076985,0.217893,-0.235178,0.104598,-0.289555,0.0900662,-0.187065,0.0487509,0.154964,-0.0626016,0.573106,-0.227782,0.911875,-0.389484,1.12423,-0.529668,1.20294,-0.602645,1.19816,-0.567309,1.06099,-0.595414,0.78999,-0.730779,0.515117,-0.867212,0.271299,-0.996982,0.071641,-1.11949,-0.0914257,-1.16559,-0.200009,-1.18017,-0.192375,-1.15443,-0.026723,-1.14877,0.258804,-1.25492,0.49106,-1.42296,0.655651,-1.55686,10 +0.817416,1.22012,0.830855,1.21147,0.816875,1.23041,0.828722,1.22903,0.791916,1.23292,0.538986,1.24856,0.339338,1.29017,0.0791111,1.32832,-0.126749,1.35072,-0.179549,1.40148,-0.133379,1.42403,-0.0170655,1.39653,0.264334,1.21129,0.612297,0.92742,0.941759,0.735981,1.18761,0.607097,1.32033,0.587678,1.35278,0.614369,1.24806,0.598584,0.994826,0.433778,0.706181,0.0875863,0.425598,-0.192709,0.160175,-0.384608,-0.0880045,-0.555378,-0.170098,-0.580255,-0.139527,-0.604798,0.0486054,-0.712402,0.382334,-0.904735,0.704665,-1.14622,1.01202,-1.37572,1.28022,-1.53589,1.37764,-1.56817,1.33541,-1.5328,1.22398,-1.51708,1.02646,-1.61817,0.783158,-1.74746,0.543279,-1.85696,0.330966,-1.91951,0.102676,-1.89889,-0.0609901,-1.8927,-0.0532833,-1.85148,0.0193986,-1.86439,0.213493,-2.01946,0.49106,-2.18878,0.707135,-2.2483,10 +0.700733,1.39298,0.704081,1.38443,0.699572,1.39126,0.720184,1.41492,0.681466,1.43211,0.559484,1.39923,0.276687,1.41838,0.015591,1.42037,-0.19026,1.43178,-0.294529,1.45671,-0.267195,1.49331,-0.220228,1.50676,-0.0492774,1.38724,0.297227,1.18506,0.662623,0.956185,0.99627,0.77837,1.23156,0.706714,1.29491,0.707289,1.25998,0.69417,1.03102,0.611131,0.694185,0.361861,0.390465,0.0829382,0.103498,-0.170921,-0.165312,-0.374356,-0.289383,-0.433466,-0.268115,-0.459389,-0.112071,-0.501876,0.241613,-0.645595,0.616978,-0.823951,0.934136,-0.978051,1.19105,-1.07995,1.30121,-1.11656,1.27205,-1.08835,1.16289,-1.08598,0.868847,-1.26033,0.553423,-1.37611,0.346348,-1.44041,0.201304,-1.57281,0.0564569,-1.6856,-0.00542084,-1.7179,-0.00691933,-1.67718,0.0746682,-1.66562,0.313205,-1.76032,0.535265,-1.88748,0.732854,-1.9693,10 +0.428457,1.43,0.430967,1.44625,0.435652,1.45316,0.443813,1.4645,0.460619,1.4944,0.477494,1.52472,0.402043,1.52094,0.121458,1.49924,-0.179647,1.43178,-0.399076,1.3877,-0.411336,1.42403,-0.331999,1.41033,-0.150415,1.36017,0.246362,1.06304,0.693627,0.722248,1.04942,0.492874,1.16504,0.483554,1.13283,0.505996,0.997319,0.439273,0.681012,0.0952976,0.275546,-0.21896,-0.0890555,-0.40356,-0.395336,-0.581753,-0.430351,-0.637609,-0.419487,-0.66175,-0.235982,-0.734081,0.252151,-1.00395,0.663831,-1.29337,0.945849,-1.58126,1.19005,-1.75751,1.25793,-1.75602,1.1811,-1.73952,0.965945,-1.91593,0.653513,-2.11168,0.356482,-2.20505,0.113105,-2.21506,-0.0850387,-2.20629,-0.187684,-2.14616,-0.174639,-2.13891,-0.0887747,-2.18843,0.215647,-2.28042,0.599968,-2.39448,0.911379,-2.43416,1.11002,-2.46497,1.11027,-2.39386,10 +-0.563371,1.56585,-0.573695,1.58217,-0.581009,1.60167,-0.562931,1.61323,-0.633651,1.59403,-0.813305,1.48709,-1.10229,1.36709,-1.36013,1.21004,-1.67158,1.02655,-1.90474,0.890613,-2.04831,0.828018,-1.86607,0.735199,-1.78902,0.683395,-1.80669,0.669777,-1.63268,0.667197,-1.51284,0.806926,-1.31965,0.840598,-1.06667,0.80021,-0.805606,0.662308,-0.574243,0.449933,-0.394214,0.265046,-0.252806,0.0991198,-0.15726,-0.0559135,-0.12112,-0.193404,-0.20261,-0.33563,-0.364569,-0.443193,-0.551287,-0.582896,-0.765318,-0.742772,-0.972793,-0.920633,-1.19097,-1.12119,-1.3828,-1.28439,-1.53745,-1.42804,-1.74694,-1.56345,-1.84219,-1.65085,-1.86052,-1.54663,-1.81099,-1.49987,-1.69796,-1.41353,-1.55834,-1.43946,-1.41348,-1.48556,-1.20998,-1.54315,-0.971405,-1.5968,-0.782392,-1.69212,-0.602191,-1.81216,-0.463899,-1.90001,-0.339307,-1.93291,10 +-0.145254,1.12133,-0.144509,1.12493,-0.141109,1.13141,-0.158274,1.15467,-0.131698,1.18311,-0.13716,1.21087,-0.151663,1.27732,-0.17486,1.32832,-0.327784,1.32376,-0.566385,1.2634,-0.854034,1.06363,-1.1041,0.84543,-1.29342,0.683395,-1.41033,0.615531,-1.44661,0.598353,-1.4703,0.607097,-1.50821,0.617437,-1.43714,0.660863,-1.27129,0.710135,-1.03289,0.611131,-0.812852,0.474777,-0.556906,0.277538,-0.281984,0.0919633,-0.0880045,-0.04536,0.0142115,-0.156298,0.0426347,-0.200822,0.00579153,-0.226563,-0.0724059,-0.240725,-0.172438,-0.292236,-0.311971,-0.357668,-0.480245,-0.40395,-0.674958,-0.49366,-0.902459,-0.597963,-1.06801,-0.729181,-1.25947,-0.745063,-1.48554,-0.647137,-1.61356,-0.499802,-1.5954,-0.71946,-1.54291,-0.552275,-1.29338,-0.723116,-1.04558,-0.805881,-0.800831,-0.936718,-0.593147,-1.0994,-0.322415,-1.30999,-0.142018,-1.47197,10 +-0.650896,1.07194,-0.661488,1.07549,-0.678804,1.06956,-0.691268,1.05551,-0.80436,1.03367,-0.997728,0.934709,-1.23812,0.777396,-1.4765,0.631683,-1.69275,0.459198,-1.78976,0.338351,-1.81155,0.287448,-1.73397,0.294336,-1.65755,0.317935,-1.51195,0.37142,-1.38455,0.4332,-1.18326,0.378651,-1.00906,0.27524,-0.823556,0.103341,-0.590665,-0.0385883,-0.296621,-0.178704,-0.0593647,-0.283504,0.0863656,-0.387309,0.103498,-0.499615,0.0445149,-0.604702,-0.094199,-0.743245,-0.268115,-0.87949,-0.487038,-1.00395,-0.743656,-1.14764,-1.04954,-1.25898,-1.34674,-1.37572,-1.60562,-1.50444,-1.84316,-1.61493,-1.98974,-1.64012,-2.08672,-1.54681,-2.1561,-1.44646,-2.10777,-1.33481,-1.91362,-1.35978,-1.69729,-1.37282,-1.51519,-1.43222,-1.24701,-1.50284,-0.95285,-1.55655,-0.671805,-1.65234,-0.420948,-1.76032,-0.251696,-1.88748,-0.099137,-1.98143,10 +-0.339759,1.17072,-0.349344,1.17436,-0.385521,1.14381,-0.513586,1.12988,-0.784274,1.08349,-1.12066,0.98493,-1.4157,0.841472,-1.64583,0.684266,-1.78799,0.472679,-1.93615,0.338351,-1.9145,0.356726,-1.82541,0.404507,-1.70812,0.412662,-1.57291,0.507037,-1.38455,0.543302,-1.10884,0.492874,-0.820499,0.468642,-0.511018,0.382102,-0.208623,0.280032,0.0895774,0.111452,0.347339,-0.0253996,0.46067,-0.0954095,0.466239,-0.138052,0.442073,-0.226311,0.372011,-0.303018,0.246237,-0.427068,0.080785,-0.501876,-0.158999,-0.629364,-0.435557,-0.759497,-0.757022,-0.930361,-1.08193,-1.0485,-1.34096,-1.11656,-1.53585,-1.24162,-1.67925,-1.32378,-1.74229,-1.37485,-1.72488,-1.36232,-1.69796,-1.35978,-1.63246,-1.30618,-1.55214,-1.25891,-1.38603,-1.22054,-1.15686,-1.23487,-0.846905,-1.2813,-0.520613,-1.33268,-0.234005,-1.43554,0.00378654,-1.52049,10 +-0.592579,1.09664,-0.602942,1.10021,-0.639686,1.09431,-0.701116,1.05551,-0.844481,0.971437,-1.03867,0.809156,-1.36348,0.610698,-1.6141,0.447643,-1.71392,0.283543,-1.80019,0.214109,-1.79096,0.190447,-1.68318,0.184105,-1.51593,0.182568,-1.31884,0.235862,-1.1261,0.309365,-0.885565,0.364404,-0.643009,0.304999,-0.383656,0.211782,-0.148931,0.120722,0.0533849,0.111452,0.120087,0.0714156,0.0630245,-0.0306131,-0.0552192,-0.138052,-0.220524,-0.292124,-0.44118,-0.417195,-0.707452,-0.540156,-0.990558,-0.631452,-1.25252,-0.775165,-1.52097,-0.888406,-1.76953,-0.962177,-2.02901,-0.907027,-2.20346,-0.83629,-2.09529,-1.07306,-2.08672,-0.967047,-1.70286,-1.04564,-1.30366,-1.08729,-0.957121,-1.17165,-0.678516,-1.33285,-0.405784,-1.51223,-0.209255,-1.66418,-0.0903457,-1.70399,-0.026723,-1.67884,-0.0493268,-1.63073,-0.110212,-1.62384,-0.236383,-1.60538,10 +-0.145254,1.52878,-0.144509,1.53273,-0.141109,1.53976,-0.148425,1.55123,-0.131698,1.58155,-0.0757207,1.62517,0.0782017,1.66194,0.269562,1.64382,0.508087,1.5534,0.730132,1.40148,1.00943,1.27153,1.03951,1.17606,1.1443,1.08944,1.16115,1.03591,1.05551,0.969918,0.826148,0.935457,0.6215,1.03406,0.368783,1.06345,0.0660105,0.980928,-0.23628,0.756174,-0.609531,0.571593,-0.966282,0.326152,-1.2456,0.190572,-1.36906,0.0862667,-1.36278,-0.00957936,-1.24324,-0.168501,-1.09768,-0.307512,-0.895236,-0.418848,-0.654861,-0.517827,-0.401016,-0.628072,-0.101435,-0.702658,0.209436,-0.758386,0.522584,-0.843191,0.735039,-0.922415,0.829418,-1.01701,0.850168,-1.05978,0.805854,-1.09102,0.664364,-1.1328,0.454029,-1.19226,0.207706,-1.27431,-0.0439818,-1.36887,-0.293971,-1.44034,-0.55688,-1.43636,-0.826409,-1.39785,-1.03405,-1.37492,10 +0.0784089,0.923825,0.0700593,0.927246,0.0641839,0.908704,0.137845,0.956355,0.269876,0.958957,0.467272,0.959819,0.684081,1.00811,0.756385,1.06546,0.677395,1.05357,0.51055,0.959683,0.268174,0.800295,0.0032613,0.61122,-0.251553,0.466809,-0.495544,0.357888,-0.526401,0.336891,-0.396527,0.364404,-0.143858,0.453795,0.102568,0.505996,0.400336,0.502998,0.64482,0.482172,0.837709,0.539321,0.823243,0.5045,0.726998,0.420657,0.563573,0.300124,0.328625,0.071986,0.0426347,-0.152375,-0.219189,-0.323744,-0.472962,-0.418848,-0.654861,-0.388918,-0.656933,-0.325852,-0.502538,-0.30961,-0.249131,-0.322379,-0.0474442,-0.414042,0.134022,-0.446748,0.366314,-0.387223,0.591729,-0.248279,0.730805,-0.123594,0.729196,-0.119494,0.6759,-0.152246,0.550559,-0.292891,0.336232,-0.470762,0.102303,-0.605416,-0.130905,-0.632903,-0.27821,-0.581832,-0.253545,-0.562208,10 +-0.0869377,0.849739,-0.0957454,0.877812,-0.0726783,0.883953,-0.0793325,0.881988,-0.0614211,0.921626,-0.0552234,0.947237,0.0154965,1.02096,0.184923,1.10487,0.444631,1.2427,0.740619,1.19439,0.999155,1.13291,1.15128,1.17606,1.18477,1.14358,1.14081,1.10369,1.04514,0.983711,0.889965,0.821234,0.665886,0.617437,0.380394,0.428529,0.0660105,0.264067,-0.212131,0.159777,-0.27462,0.15213,-0.241075,0.147805,-0.202625,0.124833,-0.0106968,0.0862667,0.220214,-0.0258502,0.449839,-0.152375,0.691422,-0.178007,0.902004,-0.17594,1.03359,-0.0989422,1.03428,-0.0872645,1.01282,-0.120931,0.875384,-0.260083,0.702024,-0.490642,0.500731,-0.684614,0.297339,-0.788038,0.0747993,-0.812193,-0.150682,-0.755097,-0.261757,-0.66618,-0.267126,-0.632281,-0.200009,-0.628976,-0.0625369,-0.658445,0.102303,-0.698217,0.285981,-0.749513,0.420341,-0.770135,0.544169,-0.744149,10 +0.360388,1.1831,0.362688,1.17436,0.357417,1.20566,0.364821,1.20424,0.380273,1.23292,0.385336,1.27367,0.308012,1.27732,0.0367643,1.13116,-0.264328,0.959028,-0.587305,0.738754,-0.781964,0.550788,-0.890749,0.514738,-0.807864,0.548028,-0.719182,0.547752,-0.547088,0.598353,-0.322103,0.72132,-0.0107546,0.662108,0.276194,0.567942,0.51972,0.502998,0.753397,0.498257,0.873575,0.555491,0.811573,0.5045,0.73831,0.453527,0.596688,0.300124,0.458728,0.104598,0.289118,-0.120054,0.0593504,-0.291351,-0.169858,-0.370295,-0.358809,-0.437294,-0.545627,-0.453117,-0.591653,-0.388193,-0.554842,-0.400216,-0.406324,-0.444695,-0.191976,-0.461583,0.021443,-0.516026,0.20882,-0.564608,0.421349,-0.567021,0.562521,-0.599478,0.749841,-0.578943,0.800716,-0.561782,0.772111,-0.537821,0.719798,-0.512672,0.576025,-0.542156,0.349576,-0.56925,0.166753,-0.58647,10 +0.0784089,0.923825,0.0700593,0.927246,0.0641839,0.908704,0.137845,0.956355,0.269876,0.958957,0.467272,0.959819,0.684081,1.00811,0.756385,1.06546,0.677395,1.05357,0.51055,0.959683,0.268174,0.800295,0.0032613,0.61122,-0.251553,0.466809,-0.495544,0.357888,-0.526401,0.336891,-0.396527,0.364404,-0.143858,0.453795,0.102568,0.505996,0.400336,0.502998,0.64482,0.482172,0.837709,0.539321,0.823243,0.5045,0.726998,0.420657,0.563573,0.300124,0.328625,0.071986,0.0426347,-0.152375,-0.219189,-0.323744,-0.472962,-0.418848,-0.654861,-0.388918,-0.656933,-0.325852,-0.502538,-0.30961,-0.249131,-0.322379,-0.0474442,-0.414042,0.134022,-0.446748,0.366314,-0.387223,0.591729,-0.248279,0.730805,-0.123594,0.729196,-0.119494,0.6759,-0.152246,0.550559,-0.292891,0.336232,-0.470762,0.102303,-0.605416,-0.130905,-0.632903,-0.27821,-0.581832,-0.253545,-0.562208,10 +-0.0869377,0.849739,-0.0957454,0.877812,-0.0726783,0.883953,-0.0793325,0.881988,-0.0614211,0.921626,-0.0552234,0.947237,0.0154965,1.02096,0.184923,1.10487,0.444631,1.2427,0.740619,1.19439,0.999155,1.13291,1.15128,1.17606,1.18477,1.14358,1.14081,1.10369,1.04514,0.983711,0.889965,0.821234,0.665886,0.617437,0.380394,0.428529,0.0660105,0.264067,-0.212131,0.159777,-0.27462,0.15213,-0.241075,0.147805,-0.202625,0.124833,-0.0106968,0.0862667,0.220214,-0.0258502,0.449839,-0.152375,0.691422,-0.178007,0.902004,-0.17594,1.03359,-0.0989422,1.03428,-0.0872645,1.01282,-0.120931,0.875384,-0.260083,0.702024,-0.490642,0.500731,-0.684614,0.297339,-0.788038,0.0747993,-0.812193,-0.150682,-0.755097,-0.261757,-0.66618,-0.267126,-0.632281,-0.200009,-0.628976,-0.0625369,-0.658445,0.102303,-0.698217,0.285981,-0.749513,0.420341,-0.770135,0.544169,-0.744149,10 +0.360388,1.1831,0.362688,1.17436,0.357417,1.20566,0.364821,1.20424,0.380273,1.23292,0.385336,1.27367,0.308012,1.27732,0.0367643,1.13116,-0.264328,0.959028,-0.587305,0.738754,-0.781964,0.550788,-0.890749,0.514738,-0.807864,0.548028,-0.719182,0.547752,-0.547088,0.598353,-0.322103,0.72132,-0.0107546,0.662108,0.276194,0.567942,0.51972,0.502998,0.753397,0.498257,0.873575,0.555491,0.811573,0.5045,0.73831,0.453527,0.596688,0.300124,0.458728,0.104598,0.289118,-0.120054,0.0593504,-0.291351,-0.169858,-0.370295,-0.358809,-0.437294,-0.545627,-0.453117,-0.591653,-0.388193,-0.554842,-0.400216,-0.406324,-0.444695,-0.191976,-0.461583,0.021443,-0.516026,0.20882,-0.564608,0.421349,-0.567021,0.562521,-0.599478,0.749841,-0.578943,0.800716,-0.561782,0.772111,-0.537821,0.719798,-0.512672,0.576025,-0.542156,0.349576,-0.56925,0.166753,-0.58647,10 +1.8384,-0.00217025,1.83552,0.000436419,1.8531,0.017735,1.87496,0.0144847,1.91629,0.0499783,1.97321,0.0684783,2.05263,0.0979242,2.16384,0.132202,2.22223,0.161985,2.24628,0.145039,2.24491,0.107278,2.25864,0.00494974,2.26706,-0.128745,2.24865,-0.0082478,2.19279,-0.144776,2.14452,-0.306625,2.05243,-0.543037,1.88533,-0.639954,1.73758,-0.532415,1.58626,-0.307662,1.4238,-0.138316,1.26769,-0.0143615,1.14647,0.108434,1.01634,0.217893,0.935813,0.332812,0.932113,0.477847,0.841409,0.583216,0.663831,0.650032,0.562109,0.706739,0.466825,0.692199,0.243964,0.696611,0.165746,0.565309,0.110876,0.413537,0.0524963,0.25195,0.021443,0.0135296,0.0173408,-0.234554,-0.000632681,-0.44605,-0.0302505,-0.652816,-0.100698,-0.832266,-0.237039,-0.924755,-0.405688,-0.926563,-0.570462,-0.870481,-0.720036,-0.788421,-0.835277,-0.682275,-0.905409,-0.489421,11 +1.49806,-0.249124,1.48439,-0.246734,1.50119,-0.24212,1.5295,-0.245825,1.54487,-0.211505,1.61464,-0.195209,1.66608,-0.171284,1.72998,-0.209587,1.75664,-0.270267,1.76528,-0.255364,1.76101,-0.280845,1.75068,-0.408356,1.75123,-0.602498,1.74047,-0.781175,1.68616,-0.95669,1.62355,-1.09188,1.53109,-1.19774,1.38756,-1.27481,1.22417,-1.28114,1.05517,-1.25862,0.873575,-1.15477,0.717966,-0.987288,0.602275,-0.778969,0.563573,-0.522471,0.534627,-0.254135,0.535601,-0.0715382,0.520001,0.113539,0.52311,0.245161,0.496358,0.368318,0.366678,0.517175,0.210553,0.649476,0.0674742,0.705442,-0.0896846,0.704712,-0.212358,0.608684,-0.283999,0.500233,-0.37512,0.398103,-0.422614,0.319834,-0.42848,0.213839,-0.452003,0.101076,-0.487245,-0.0240585,-0.526225,-0.189267,-0.552023,-0.366915,-0.611281,-0.542156,-0.693793,-0.707385,-0.811044,-0.853303,11 +1.42999,0.257104,1.43558,0.259939,1.44251,0.265241,1.46041,0.274741,1.51472,0.174507,1.5737,0.0810065,1.64518,-0.00464171,1.66646,-0.104421,1.64023,-0.283806,1.57711,-0.476233,1.49332,-0.627353,1.35449,-0.72524,1.18477,-0.805519,0.998514,-0.849013,0.807323,-0.777804,0.634755,-0.577874,0.51059,-0.319876,0.44982,-0.0204856,0.507806,0.311894,0.656863,0.530497,0.777913,0.700679,0.76477,0.763966,0.613645,0.831489,0.33165,0.925351,0.0792915,0.9361,-0.139527,0.96266,-0.294182,0.907155,-0.397172,0.747139,-0.523301,0.513376,-0.723659,0.29453,-0.903641,0.051991,-0.969719,-0.213327,-0.944699,-0.536656,-0.996703,-0.818381,-1.14123,-0.988383,-1.32282,-1.03227,-1.47287,-0.876068,-1.57687,-0.532835,-1.57063,-0.112272,-1.50646,0.29861,-1.41654,0.695465,-1.35381,1.0776,-1.42696,1.45349,-1.51609,1.89138,-1.6688,2.09433,11 +1.25499,-0.199733,1.26004,-0.1973,1.26658,-0.205021,1.27288,-0.196247,1.29387,-0.174173,1.33806,-0.132406,1.37357,-0.132849,1.40193,-0.143886,1.40747,-0.13517,1.42023,0.00695869,1.36978,-0.142229,1.29351,-0.284377,1.19492,-0.399419,1.0798,-0.42863,0.952075,-0.406239,0.868692,-0.349489,0.821183,-0.245511,0.820294,-0.0979526,0.830156,0.00917037,0.825845,0.224256,0.813778,0.281217,0.694565,0.391019,0.556969,0.519266,0.442073,0.596284,0.328625,0.642662,0.203411,0.623326,0.102164,0.631842,-0.0290814,0.552854,-0.150501,0.432773,-0.245245,0.246772,-0.324251,0.0363016,-0.401986,-0.151031,-0.501338,-0.306787,-0.629994,-0.342714,-0.747104,-0.215446,-0.844191,-0.000753886,-0.91024,0.225797,-0.974902,0.480529,-1.03445,0.767733,-1.10804,0.970779,-1.20323,1.20483,-1.2985,1.35589,-1.38165,1.45349,-1.4365,1.46455,-1.48007,1.39078,11 +1.55642,-0.0145446,1.55262,-0.0489977,1.56962,-0.0193642,1.58874,-0.0227254,1.62517,0.0126465,1.67614,0.0433679,1.73921,0.0722827,1.80406,0.132202,1.85188,0.175524,1.86983,0.200271,1.89488,0.273617,1.91324,0.321893,1.94341,0.358515,1.98439,0.290109,2.00672,0.00658431,2.01694,-0.435095,1.96366,-0.914993,1.87372,-1.38325,1.71369,-1.71124,1.46552,-1.90335,1.13675,-1.86468,0.788171,-1.55483,0.56828,-1.04192,0.508361,-0.341449,0.502115,0.202434,0.439146,0.558684,0.305765,0.842367,0.165823,0.909101,0.0687459,0.722818,-0.0226911,0.38991,-0.101435,-0.0423487,-0.172703,-0.524809,-0.226884,-0.981099,-0.283667,-1.32378,-0.352973,-1.61817,-0.451682,-1.74746,-0.591426,-1.76292,-0.761878,-1.53283,-0.951238,-1.19226,-1.08025,-0.709643,-1.15686,-0.229456,-1.23398,0.295689,-1.26381,0.675957,-1.30389,1.10047,-1.35998,1.19668,11 +1.43974,0.108932,1.45509,0.0992513,1.45231,0.116737,1.47031,0.113587,1.51472,0.112216,1.58392,0.0810065,1.62428,0.0594897,1.67707,0.0927365,1.6614,-0.13517,1.57711,-0.462455,1.44185,-0.6828,1.27319,-0.780356,1.08363,-0.737865,0.886695,-0.577779,0.714313,-0.309929,0.645418,0.0359823,0.699148,0.34967,0.727706,0.676316,0.615215,0.980928,0.367199,1.15913,0.0961562,1.21703,-0.170931,1.20178,-0.32729,1.01224,-0.408255,0.711493,-0.397793,0.267588,-0.375262,-0.152375,-0.358486,-0.485714,-0.386369,-0.807557,-0.479429,-1.08177,-0.656933,-1.24845,-0.859113,-1.31583,-1.0571,-1.25676,-1.19803,-1.02705,-1.28194,-0.699448,-1.30873,-0.34431,-1.29411,0.0680494,-1.24782,0.4945,-1.20641,0.907174,-1.19161,1.30105,-1.24701,1.72362,-1.37943,1.92869,-1.51047,1.87274,-1.6173,1.60895,-1.64875,1.23856,-1.60876,0.820639,11 +1.43974,1.01023,1.47461,0.989012,1.48163,0.995304,1.49005,1.00593,1.5047,1.05858,1.48149,1.24856,1.55115,1.16196,1.64534,0.907714,1.69319,0.661814,1.72349,0.49021,1.70954,0.273617,1.65924,0.0876229,1.60961,-0.088106,1.51683,-0.211644,1.38633,-0.309929,1.20888,-0.349489,1.05413,-0.349635,0.936045,-0.268273,0.84207,-0.166036,0.729311,0.0147335,0.658319,0.232774,0.601019,0.5045,0.56828,0.749351,0.508361,0.958258,0.44791,1.08289,0.364132,1.25348,0.252151,1.37683,0.122498,1.50833,0.0468665,1.56066,-0.0561116,1.58299,-0.168257,1.56136,-0.303714,1.51523,-0.448565,1.42504,-0.538304,1.27765,-0.559896,1.05848,-0.556998,0.82447,-0.553902,0.588596,-0.613685,0.400522,-0.673874,0.207751,-0.728156,0.0566087,-0.785901,-0.068643,-0.892979,-0.128357,-1.00099,-0.114565,-1.1182,-0.104783,-1.23134,0.0079299,11 +1.32306,1.12133,1.32832,1.12493,1.33501,1.15616,1.34197,1.16703,1.38423,1.17063,1.45077,1.12301,1.5094,1.0594,1.57126,1.026,1.60851,1.01301,1.62938,0.876835,1.62719,0.717126,1.62877,0.542295,1.63995,0.358515,1.62865,0.222271,1.61383,0.0616354,1.55973,-0.0639319,1.4867,-0.111563,1.39911,-0.0669792,1.29578,0.0251358,1.17585,0.143692,1.06496,0.297318,0.986994,0.439634,0.93108,0.601404,0.8949,0.777236,0.859915,0.919829,0.814217,1.04343,0.734236,1.21486,0.620507,1.39499,0.485361,1.4962,0.333315,1.66249,0.132556,1.63994,-0.0198476,1.56198,-0.121338,1.36373,-0.151213,1.11415,-0.136168,0.900986,-0.11663,0.700707,-0.122515,0.507967,-0.122853,0.307209,-0.156142,0.14105,-0.2185,-0.0240585,-0.359324,-0.122267,-0.533583,-0.18137,-0.729079,-0.192268,-0.879482,-0.117312,-0.991171,0.0442972,11 +1.13831,1.02261,1.143,1.0014,1.13947,1.00771,1.14459,0.993565,1.16333,0.934052,1.19463,0.884488,1.24821,0.81583,1.32785,0.736848,1.39691,0.621256,1.43072,0.49021,1.44185,0.342894,1.45607,0.184105,1.45791,0.0607678,1.43554,0.00528458,1.36565,-0.0897253,1.2727,-0.163846,1.14284,-0.185993,1.02869,-0.144379,0.961516,-0.00672624,0.886186,0.175931,0.825775,0.34576,0.77644,0.520752,0.704316,0.683613,0.618785,0.843049,0.55632,0.985054,0.514161,1.14039,0.455697,1.34444,0.339009,1.50833,0.200306,1.60896,0.0662961,1.63068,-0.157139,1.67139,-0.325558,1.62421,-0.374671,1.50164,-0.416068,1.30738,-0.402233,1.07276,-0.394273,0.810745,-0.38509,0.602005,-0.372889,0.427191,-0.405784,0.261088,-0.487245,0.123802,-0.591144,-0.0150194,-0.717879,-0.0886258,-0.855967,-0.101577,-0.976715,-0.016869,-1.1027,0.165609,11 +0.953554,1.03493,0.938164,1.1126,0.953738,1.09431,0.966908,1.06788,0.962573,1.05858,0.989768,0.934709,1.06015,0.803037,1.11617,0.657974,1.14298,0.486218,1.14837,0.283119,1.13302,0.12111,1.08016,0.0187584,0.99259,-0.0745986,0.876554,-0.0896178,0.766003,-0.0484073,0.687962,0.135958,0.632625,0.334758,0.600344,0.598916,0.531634,0.869377,0.475839,1.14305,0.407136,1.32994,0.296919,1.44499,0.11481,1.58741,-0.0548889,1.61632,-0.191791,1.62088,-0.332381,1.59281,-0.487038,1.50641,-0.602879,1.34636,-0.621929,1.0934,-0.623513,0.771705,-0.602828,0.507932,-0.554842,0.238287,-0.585819,-0.0156121,-0.680922,-0.208883,-0.835792,-0.258421,-1.02607,-0.234554,-1.19158,-0.0832503,-1.2157,0.147195,-1.24705,0.434405,-1.27484,0.728778,-1.30525,1.03058,-1.30769,1.2896,-1.32725,1.3109,-1.54265,1.43944,-1.74598,2.17922,11 +1.33276,0.94852,1.34783,0.939578,1.33501,0.970554,1.35187,0.919198,1.38423,0.934052,1.4405,0.972347,1.49892,1.02096,1.53947,0.960297,1.55561,0.796911,1.55619,0.600674,1.5448,0.384449,1.517,0.115181,1.43767,-0.155818,1.31358,-0.360851,1.15889,-0.36498,1.00688,-0.163846,0.932093,0.0966862,0.901332,0.382102,0.901762,0.710135,0.849994,1.03018,0.718116,1.2654,0.530814,1.44499,0.318892,1.58741,0.110746,1.58341,-0.0616871,1.37633,-0.17166,1.04343,-0.315617,0.648004,-0.299776,0.342269,-0.21631,-0.00226043,-0.222984,-0.373611,-0.357719,-0.639765,-0.609425,-0.758386,-0.913046,-0.73587,-1.09856,-0.595414,-1.19049,-0.172532,-1.15049,0.205597,-1.08841,0.56172,-1.07675,0.893869,-1.14539,1.18107,-1.40457,1.45472,-1.53712,1.63376,-1.71321,1.58117,-1.8348,1.41458,-1.88747,1.13811,-1.93468,0.954055,11 +1.08969,0.874434,1.09424,0.865427,1.0906,0.896302,1.10509,0.894409,1.13323,0.834429,1.15364,0.733825,1.18551,0.585057,1.23259,0.460817,1.31223,0.216024,1.3366,-0.00681952,1.29771,-0.183784,1.16147,-0.298126,0.982497,-0.304692,0.795211,-0.252358,0.662623,-0.0759328,0.56033,0.135958,0.488396,0.394277,0.472982,0.614369,0.460028,0.885342,0.367199,1.12689,0.21575,1.29767,0.0630245,1.31526,-0.15726,1.25872,-0.319928,1.1557,-0.408612,0.985054,-0.471717,0.768735,-0.497728,0.518428,-0.440496,0.261323,-0.424617,-0.0183393,-0.478901,-0.294036,-0.636239,-0.49829,-0.816863,-0.587105,-0.955232,-0.521296,-0.996703,-0.283248,-1.023,0.0421592,-1.02607,0.288125,-1.02276,0.615472,-0.993432,0.893869,-1.10839,1.07439,-1.29338,1.19931,-1.34237,1.33889,-1.70401,1.4089,-1.77136,1.15544,-1.79021,0.887007,-1.78029,0.772114,11 +1.36192,0.220034,1.35757,0.235222,1.38388,0.240491,1.37162,0.26232,1.41434,0.311462,1.46099,0.344639,1.55115,0.354339,1.55009,0.421351,1.59795,0.432179,1.39931,0.393584,1.38011,0.329003,1.3443,0.211662,1.32639,0.0878411,1.34406,0.0595313,1.33464,-0.0621998,1.29397,-0.163846,1.23156,-0.230599,1.156,-0.2373,1.05701,-0.197898,0.946528,-0.13031,0.837709,-0.0415006,0.729697,0.050505,0.624957,0.174172,0.541477,0.267289,0.458728,0.430648,0.428454,0.542489,0.402138,0.745186,0.371531,0.876709,0.342862,1.01286,0.299952,1.12168,0.25514,1.184,0.100213,1.2505,-0.026324,1.34837,-0.151213,1.35195,-0.303713,1.34471,-0.432529,1.27835,-0.525783,1.24697,-0.595155,1.20053,-0.646152,1.18107,-0.598431,1.19931,-0.600445,1.11102,-0.625731,1.02459,-0.647501,0.896246,-0.729176,0.774036,-0.768162,0.614435,11 +1.29385,0.491683,1.12348,0.482339,1.06129,0.413691,1.01625,0.48542,1.01276,0.460896,1.01021,0.357222,0.997499,0.251773,0.989183,0.158493,0.952499,0.0134073,0.866086,-0.103446,0.762343,-0.169953,0.653456,-0.160337,0.54751,-0.0745986,0.459806,0.0324079,0.373118,0.171737,0.305175,0.32154,0.255452,0.498401,0.218319,0.660863,0.185395,0.901239,0.113727,1.17529,0.0482941,1.34604,-0.0305818,1.42881,-0.15726,1.43954,-0.286812,1.58341,-0.44118,1.68611,-0.536038,1.75442,-0.615591,1.81412,-0.721994,1.78363,-0.830237,1.73787,-0.935054,1.66249,-1.01511,1.56136,-1.06799,1.45293,-1.07137,1.31772,-1.09856,1.15872,-1.10181,1.00122,-1.05477,0.879489,-1.03212,0.736386,-1.05826,0.640542,-1.0899,0.51441,-1.14512,0.379278,-1.19397,0.253099,-1.25242,0.202945,-1.22754,0.0798602,-1.25968,0.0207699,-1.26566,-0.113382,11 +1.49806,0.639855,1.54289,0.593592,1.51094,0.549847,1.47031,0.48542,1.33404,0.485802,1.31757,0.545523,1.30044,0.354339,1.22204,0.145319,1.14298,-0.0406315,1.02291,-0.131062,0.86534,-0.128338,0.694109,-0.0776639,0.567748,0.0336946,0.500477,0.195148,0.435124,0.378149,0.358328,0.578541,0.299838,0.795991,0.22987,1.1254,0.173481,1.37917,-0.0672982,1.44929,-0.143092,1.63649,-0.264477,1.73689,-0.418019,1.80103,-0.640178,1.79727,-0.820673,1.68611,-0.943243,1.56049,-1.05481,1.42539,-1.11175,1.23303,-1.12629,1.02894,-1.14645,0.787579,-1.17104,0.570825,-1.17716,0.409568,-1.1875,0.214322,-1.14954,0.16275,-1.13135,0.0707889,-1.18879,0.054265,-1.26658,0.131701,-1.38237,0.333878,-1.52441,0.581053,-1.6918,0.917001,-1.88024,1.23164,-2.03577,1.63418,-2.15201,2.01068,-2.18811,2.21782,-2.15769,2.20349,11 +1.3036,0.726262,1.34783,0.72951,1.36432,0.723047,1.32222,0.758044,1.43442,0.772191,1.43027,0.821684,1.55115,0.803037,1.6559,0.723674,1.55561,0.702314,1.50391,0.738754,1.50365,0.744849,1.48654,0.556104,1.43767,0.358515,1.38473,0.195148,1.32433,0.0479023,1.24082,-0.0353762,1.14284,-0.0669564,1.00553,-0.0360058,0.84207,0.0569978,0.693056,0.192016,0.562595,0.378032,0.437268,0.553185,0.375569,0.667142,0.309554,0.843049,0.231089,0.919829,0.128397,1.04343,0.134344,1.31204,0.0900331,1.52456,-0.0189417,1.7701,-0.145099,1.9329,-0.257429,2.0173,-0.358297,2.07583,-0.459152,2.08399,-0.517922,2.05065,-0.559896,1.98885,-0.604855,1.89728,-0.675784,1.81137,-0.734106,1.73385,-0.794083,1.60771,-0.830049,1.4682,-0.869376,1.29864,-0.920661,1.14384,-0.910368,1.0647,-0.897173,0.949811,-0.888247,0.808534,11 +1.59533,0.318816,1.59165,0.33409,1.55006,0.351842,1.55915,0.336687,1.46453,0.361273,1.46099,0.357222,1.4467,0.37998,1.43366,0.447643,1.47098,0.39162,1.46207,0.504048,1.41098,0.370618,1.37477,0.23922,1.33648,0.0742752,1.27291,-0.0353712,1.18989,-0.144776,1.0813,-0.206711,0.954286,-0.230599,0.77397,-0.175353,0.579412,-0.0544849,0.403391,0.127537,0.251615,0.297318,0.144839,0.455885,0.0694456,0.650743,0.0555344,0.744329,0.0467235,0.919829,0.0212496,1.12419,0.0486054,1.24726,-0.0182782,1.36259,-0.150501,1.54458,-0.267506,1.67837,-0.368837,1.81286,-0.522103,1.92015,-0.628005,1.94608,-0.680922,1.90198,-0.72739,1.77416,-0.758028,1.60846,-0.816477,1.47539,-0.87301,1.38722,-0.932741,1.28774,-0.987607,1.18589,-1.03632,1.07077,-1.04044,0.905281,-0.991899,0.714808,-0.976715,0.535512,-0.94829,0.34755,11 +1.19662,0.368206,1.18198,0.358807,1.11991,0.351842,1.0459,0.349108,1.04287,0.43599,0.99999,0.432553,0.966173,0.367132,0.925717,0.329359,0.910159,0.256523,0.855599,0.145039,0.793269,0.0518321,0.673782,-0.00879936,0.557655,0.0201287,0.408994,0.100246,0.280055,0.213055,0.16699,0.364404,0.100155,0.498401,0.0677954,0.629889,0.054035,0.805721,0.0292358,1.01409,0.00049384,1.20086,-0.0890555,1.33151,-0.179943,1.40667,-0.419332,1.40246,-0.484511,1.42528,-0.600305,1.43128,-0.679839,1.40923,-0.711191,1.36259,-0.764485,1.31899,-0.87943,1.13756,-0.948228,0.948184,-0.980669,0.752198,-0.976352,0.597458,-0.976322,0.460018,-0.973689,0.328455,-0.987764,0.260616,-1.02276,0.145168,-1.08603,0.053825,-1.13611,-0.0189035,-1.18215,-0.0240585,-1.24034,0.0252273,-1.2985,0.149932,-1.35443,0.313081,-1.3923,0.48529,-1.42863,0.62654,11 +0.515982,0.355885,0.508978,0.321705,0.47472,0.228088,0.414165,0.0392736,0.289962,-0.199079,0.149697,-0.408621,0.0154965,-0.543057,-0.121954,-0.603902,-0.2326,-0.621519,-0.315449,-0.586697,-0.401063,-0.488738,-0.453907,-0.36705,-0.514543,-0.209965,-0.566692,-0.0353712,-0.598777,0.130479,-0.59853,0.32154,-0.587554,0.543072,-0.592055,0.707289,-0.626529,0.85348,-0.670839,1.03018,-0.705194,1.16858,-0.744058,1.23421,-0.814813,1.30806,-0.850005,1.28725,-0.983289,1.29483,-1.11466,1.20503,-1.24766,1.0205,-1.4041,0.779531,-1.52097,0.529455,-1.62486,0.29453,-1.63903,0.0363016,-1.61388,-0.244475,-1.5675,-0.475349,-1.55701,-0.65488,-1.56491,-0.759408,-1.61956,-0.825918,-1.72608,-0.862601,-1.82695,-0.919506,-1.89422,-0.818903,-1.93271,-0.642449,-1.95443,-0.403762,-1.9989,-0.115132,-2.07044,0.196471,-2.09968,0.422541,-2.08907,0.638698,11 +0.195092,0.429918,0.196884,0.420573,0.201046,0.426093,0.206938,0.423421,0.229703,0.398659,0.200913,0.307001,0.140853,0.149207,0.068497,-0.0124293,-0.010394,-0.148709,-0.0958676,-0.269142,-0.184851,-0.308568,-0.271019,-0.284377,-0.362836,-0.182892,-0.424448,-0.0624945,-0.495398,0.0341098,-0.555985,0.19307,-0.609747,0.438883,-0.615217,0.769236,-0.650419,0.996825,-0.707031,1.19137,-0.765052,1.2493,-0.802532,1.28283,-0.871489,1.25872,-0.93839,1.20502,-1.0158,1.1155,-1.10396,0.978786,-1.17267,0.793741,-1.23086,0.617639,-1.22497,0.368318,-1.21323,0.103633,-1.21563,-0.183824,-1.23174,-0.431364,-1.25081,-0.628616,-1.31248,-0.729181,-1.43679,-0.730779,-1.5334,-0.619627,-1.57603,-0.513269,-1.57687,-0.412796,-1.54291,-0.165609,-1.45089,0.110387,-1.38873,0.346911,-1.36301,0.547472,-1.38165,0.714808,-1.42768,0.824257,-1.47151,0.90553,11 +0.593753,0.133627,0.596772,0.136354,0.601828,0.129086,0.611595,0.150797,0.631276,0.162027,0.661917,0.181448,0.694559,0.123566,0.692865,-0.0124293,0.645667,-0.216228,0.562878,-0.42106,0.443188,-0.585739,0.318195,-0.683934,0.173289,-0.724299,0.0431116,-0.713396,-0.0715099,-0.653969,-0.141318,-0.535071,-0.221506,-0.379394,-0.279457,-0.159899,-0.316093,0.0569978,-0.34492,0.27265,-0.442076,0.442506,-0.533504,0.569367,-0.588048,0.667142,-0.640178,0.810142,-0.701388,0.887217,-0.793214,0.898018,-0.89413,0.890923,-0.992688,0.844316,-1.07148,0.787273,-1.14645,0.64444,-1.17104,0.413592,-1.13347,0.129235,-1.0819,-0.199467,-1.03747,-0.461583,-1.01312,-0.659174,-0.997315,-0.798409,-0.994646,-0.849192,-1.03973,-0.892837,-1.18233,-0.925577,-1.36749,-0.884451,-1.50927,-0.792504,-1.60262,-0.684935,-1.63543,-0.671754,-1.63988,-0.606943,-1.61732,-0.428792,11 +0.515982,0.355885,0.508978,0.321705,0.47472,0.228088,0.414165,0.0392736,0.289962,-0.199079,0.149697,-0.408621,0.0154965,-0.543057,-0.121954,-0.603902,-0.2326,-0.621519,-0.315449,-0.586697,-0.401063,-0.488738,-0.453907,-0.36705,-0.514543,-0.209965,-0.566692,-0.0353712,-0.598777,0.130479,-0.59853,0.32154,-0.587554,0.543072,-0.592055,0.707289,-0.626529,0.85348,-0.670839,1.03018,-0.705194,1.16858,-0.744058,1.23421,-0.814813,1.30806,-0.850005,1.28725,-0.983289,1.29483,-1.11466,1.20503,-1.24766,1.0205,-1.4041,0.779531,-1.52097,0.529455,-1.62486,0.29453,-1.63903,0.0363016,-1.61388,-0.244475,-1.5675,-0.475349,-1.55701,-0.65488,-1.56491,-0.759408,-1.61956,-0.825918,-1.72608,-0.862601,-1.82695,-0.919506,-1.89422,-0.818903,-1.93271,-0.642449,-1.95443,-0.403762,-1.9989,-0.115132,-2.07044,0.196471,-2.09968,0.422541,-2.08907,0.638698,11 +0.195092,0.429918,0.196884,0.420573,0.201046,0.426093,0.206938,0.423421,0.229703,0.398659,0.200913,0.307001,0.140853,0.149207,0.068497,-0.0124293,-0.010394,-0.148709,-0.0958676,-0.269142,-0.184851,-0.308568,-0.271019,-0.284377,-0.362836,-0.182892,-0.424448,-0.0624945,-0.495398,0.0341098,-0.555985,0.19307,-0.609747,0.438883,-0.615217,0.769236,-0.650419,0.996825,-0.707031,1.19137,-0.765052,1.2493,-0.802532,1.28283,-0.871489,1.25872,-0.93839,1.20502,-1.0158,1.1155,-1.10396,0.978786,-1.17267,0.793741,-1.23086,0.617639,-1.22497,0.368318,-1.21323,0.103633,-1.21563,-0.183824,-1.23174,-0.431364,-1.25081,-0.628616,-1.31248,-0.729181,-1.43679,-0.730779,-1.5334,-0.619627,-1.57603,-0.513269,-1.57687,-0.412796,-1.54291,-0.165609,-1.45089,0.110387,-1.38873,0.346911,-1.36301,0.547472,-1.38165,0.714808,-1.42768,0.824257,-1.47151,0.90553,11 +0.593753,0.133627,0.596772,0.136354,0.601828,0.129086,0.611595,0.150797,0.631276,0.162027,0.661917,0.181448,0.694559,0.123566,0.692865,-0.0124293,0.645667,-0.216228,0.562878,-0.42106,0.443188,-0.585739,0.318195,-0.683934,0.173289,-0.724299,0.0431116,-0.713396,-0.0715099,-0.653969,-0.141318,-0.535071,-0.221506,-0.379394,-0.279457,-0.159899,-0.316093,0.0569978,-0.34492,0.27265,-0.442076,0.442506,-0.533504,0.569367,-0.588048,0.667142,-0.640178,0.810142,-0.701388,0.887217,-0.793214,0.898018,-0.89413,0.890923,-0.992688,0.844316,-1.07148,0.787273,-1.14645,0.64444,-1.17104,0.413592,-1.13347,0.129235,-1.0819,-0.199467,-1.03747,-0.461583,-1.01312,-0.659174,-0.997315,-0.798409,-0.994646,-0.849192,-1.03973,-0.892837,-1.18233,-0.925577,-1.36749,-0.884451,-1.50927,-0.792504,-1.60262,-0.684935,-1.63543,-0.671754,-1.63988,-0.606943,-1.61732,-0.428792,11 +0.75905,0.923825,0.752844,0.927246,0.768003,0.933454,0.769529,0.956355,0.76176,0.996343,0.723356,1.03515,0.631854,1.11068,0.523588,1.17063,0.38112,1.20214,0.280535,1.19439,0.206376,1.16064,0.165823,1.05208,0.183382,0.940562,0.215885,0.859641,0.280055,0.749714,0.368992,0.72132,0.51059,0.736473,0.669771,0.738263,0.84207,0.726032,1.03102,0.723934,1.17262,0.652307,1.26769,0.536933,1.3165,0.371318,1.32557,0.168569,1.28279,-0.0910743,1.16785,-0.394747,1.01278,-0.663846,0.858735,-0.758934,0.715605,-0.695042,0.555869,-0.548566,0.366548,-0.388193,0.133008,-0.291231,-0.0790972,-0.322081,-0.253068,-0.417015,-0.352973,-0.559001,-0.403824,-0.74345,-0.394495,-0.929821,-0.335877,-1.09283,-0.220859,-1.20557,-0.0887747,-1.28773,0.0858566,-1.28849,0.249768,-1.2548,0.403826,-1.24193,0.544088,-1.27229,0.647092,-1.32639,12 +0.496526,0.825043,0.47973,0.815993,0.504084,0.834452,0.483258,0.857199,0.430463,0.909146,0.344341,0.972347,0.255785,1.02096,0.174364,1.03917,0.137743,1.01301,0.134147,0.959683,0.134305,0.84185,0.0642416,0.762757,0.0620057,0.588668,0.104118,0.479914,0.197309,0.391942,0.337111,0.364404,0.51059,0.34967,0.739257,0.382102,0.97343,0.359653,1.17585,0.337129,1.30421,0.216673,1.39637,0.115371,1.37318,-0.00664487,1.33665,-0.226311,1.27192,-0.449807,1.18929,-0.669439,1.08777,-0.761028,0.934525,-0.791326,0.770417,-0.775645,0.578073,-0.707647,0.366548,-0.624008,0.154796,-0.602645,-0.057977,-0.628616,-0.212358,-0.714347,-0.313545,-0.816606,-0.355967,-0.935956,-0.366327,-1.0642,-0.345118,-1.15947,-0.276351,-1.2456,-0.172176,-1.3012,-0.0161729,-1.31525,0.148425,-1.2548,0.313205,-1.17716,0.455678,-1.1468,0.604211,-1.13229,12 +0.467318,0.936146,0.469947,0.939578,0.47472,0.945803,0.463561,0.981144,0.390342,1.04615,0.231633,1.14812,0.0573,1.21325,-0.111395,1.18375,-0.169089,1.16164,-0.169062,1.05631,-0.123053,0.897296,-0.0678562,0.721391,-0.0188942,0.588668,0.0634471,0.507037,0.155989,0.502044,0.326448,0.478565,0.543851,0.483554,0.785581,0.521449,1.00923,0.471135,1.17585,0.369369,1.29221,0.15213,1.32617,-0.111661,1.30519,-0.401007,1.24827,-0.637609,1.131,-0.841081,0.964246,-1.00877,0.78785,-1.10113,0.5989,-1.08286,0.375738,-1.00124,0.12192,-0.914418,-0.157139,-0.907027,-0.369248,-0.976423,-0.459152,-1.14966,-0.436449,-1.35351,-0.333259,-1.53235,-0.202793,-1.63742,-0.056871,-1.70917,0.108701,-1.73282,0.296826,-1.75225,0.494942,-1.73137,0.697938,-1.69061,0.876459,-1.69212,1.01104,-1.74734,1.09233,-1.79962,1.12743,-1.84801,12 +-0.913469,0.627481,-0.983365,0.643027,-1.05027,0.599348,-1.14527,0.522576,-1.23604,0.43599,-1.32553,0.357222,-1.36348,0.277415,-1.31778,0.197902,-1.17427,0.121485,-0.995115,0.0345748,-0.802563,-0.0175056,-0.565626,0.00494974,-0.342598,0.0336946,-0.160139,0.0459989,-0.00945014,0.0479023,0.0606843,0.178761,0.15561,0.171116,0.195157,0.118861,0.197308,-0.0226228,0.149919,-0.13031,0.0482941,-0.235131,-0.100726,-0.322442,-0.259301,-0.384608,-0.419332,-0.473076,-0.560409,-0.563914,-0.664626,-0.750207,-0.776267,-0.744796,-0.873574,-0.758934,-0.917981,-0.775645,-0.901691,-0.850786,-0.825644,-0.954163,-0.685853,-1.00757,-0.511925,-0.981099,-0.324377,-0.892682,-0.116505,-0.830951,0.0556465,-0.812193,0.215061,-0.835725,0.330966,-0.879474,0.380039,-0.978914,0.393049,-1.09951,0.336232,-1.19462,0.259011,-1.26802,0.159092,-1.31969,0.0400945,-1.2974,-0.0819757,-1.25361,12 +0.768803,0.86206,0.782092,0.853095,0.777808,0.859202,0.799125,0.869621,0.812002,0.89672,0.856562,0.934709,0.893044,0.99532,0.946891,1.07858,0.99484,1.14811,1.02291,1.20817,1.0815,1.22997,1.2224,1.13476,1.26572,1.03535,1.32373,0.941011,1.27264,0.914867,1.13446,0.949704,0.921025,1.01915,0.635057,1.06345,0.400336,1.02869,0.246515,0.820653,0.191818,0.507049,0.296919,0.0666866,0.454927,-0.187391,0.629804,-0.374356,0.794891,-0.563914,0.932113,-0.734081,1.03421,-0.955391,1.09691,-1.1638,1.11034,-1.37181,1.00092,-1.51886,0.778826,-1.66168,0.558779,-1.69276,0.353676,-1.64012,0.144187,-1.60628,-0.0179344,-1.6468,-0.11663,-1.73367,-0.150682,-1.83009,-0.095034,-1.93281,0.0195101,-2.05891,0.152137,-2.17501,0.299121,-2.25361,0.461746,-2.28847,0.621335,-2.23978,0.747468,-2.22644,0.792897,-2.39386,12 +0.54514,0.738583,0.548008,0.741841,0.533397,0.747798,0.542502,0.758044,0.550982,0.784617,0.590203,0.821684,0.62143,0.867113,0.671746,0.934006,0.740851,0.999528,0.834733,1.05631,0.927084,1.07747,1.0497,1.09339,1.17468,1.06242,1.32373,1.03591,1.48971,0.997444,1.63416,0.949704,1.7529,0.915028,1.88533,0.862157,1.94054,0.805721,1.91212,0.707849,1.79458,0.700679,1.63027,0.715351,1.40717,0.700012,1.20407,0.678587,1.00089,0.691545,0.814217,0.75254,0.648553,0.793741,0.490589,0.779531,0.353802,0.706739,0.25543,0.580808,0.199436,0.42935,0.187591,0.284976,0.237542,0.0763484,0.337732,-0.119683,0.484548,-0.244075,0.639586,-0.289573,0.805854,-0.284851,0.988521,-0.252839,1.18436,-0.218947,1.38448,-0.212282,1.56039,-0.229456,1.67825,-0.30062,1.71797,-0.399626,1.70243,-0.544139,1.63349,-0.671362,12 +0.156181,1.54115,0.167586,1.54512,0.12281,1.60167,-0.0299878,1.63802,-0.262234,1.61893,-0.526449,1.58753,-0.705315,1.4953,-0.820401,1.39408,-0.719298,1.35072,-0.587305,1.30485,-0.390737,1.28542,-0.128784,1.28629,0.12272,1.29251,0.368375,1.32068,0.600564,1.24517,0.730452,1.12104,0.798989,0.944787,0.808743,0.738263,0.65108,0.53486,0.403391,0.449933,0.132022,0.539321,-0.170931,0.585618,-0.497378,0.535665,-0.794794,0.365938,-0.972414,0.071986,-0.996816,-0.233143,-0.883385,-0.501876,-0.711191,-0.742772,-0.501365,-0.775645,-0.300869,-0.675831,-0.0234379,-0.639765,0.296757,-0.664941,0.554237,-0.766524,0.745204,-0.922415,0.868847,-1.13153,0.888474,-1.37611,0.833974,-1.54791,0.636593,-1.67949,0.380039,-1.72558,0.115059,-1.67759,-0.127456,-1.63699,-0.340044,-1.65234,-0.484393,-1.68257,-0.534618,-1.77451,-0.493714,-1.84801,12 +0.564595,1.17072,0.567524,1.17436,0.56271,1.18091,0.503006,1.20424,0.370256,1.25783,0.180416,1.33642,-0.0576324,1.3286,-0.206647,1.3152,-0.285499,1.25618,-0.284096,1.20817,-0.174524,1.07747,0.013451,0.928104,0.20362,0.872908,0.408994,0.873173,0.652253,0.818557,0.868692,0.735567,0.976479,0.60259,1.01708,0.459502,0.997319,0.24817,0.874143,0.0952976,0.634388,0.0391439,0.367124,0.050505,0.0694456,-0.0395143,-0.198428,-0.275636,-0.332714,-0.596526,-0.332381,-0.895686,-0.251313,-1.06874,-0.0940682,-1.21243,0.123558,-1.29121,0.366678,-1.23258,0.645125,-1.1586,0.951812,-1.25676,1.1665,-1.5175,1.2342,-1.78461,1.15457,-1.96173,0.945933,-2.00877,0.655805,-1.97788,0.395798,-1.94617,0.139671,-2.00557,-0.0702836,-2.14812,-0.146011,-2.28042,-0.100432,-2.39448,-0.0493268,-2.39529,0.00475786,-2.32688,0.0381092,-2.26043,12 +0.729892,0.997911,0.733328,0.989012,0.728885,1.00771,0.730033,1.01835,0.741725,1.04615,0.784848,1.08537,0.819915,1.14917,0.756385,1.23633,0.508087,1.36426,0.311888,1.3877,0.154904,1.34087,0.125169,1.24499,0.183382,1.06242,0.327704,0.981666,0.497184,0.942393,0.656027,0.935457,0.898831,0.959634,1.19071,0.924103,1.37936,0.757894,1.44143,0.433778,1.39987,0.0875863,1.24429,-0.0630463,0.987756,-0.0887829,0.707112,-0.160498,0.415398,-0.205181,0.181971,-0.346231,0.0164811,-0.680008,-0.0182782,-0.953288,0.0468665,-1.13008,0.222067,-1.21664,0.477956,-1.26863,0.700741,-1.21,0.934237,-1.19567,1.12213,-1.33868,1.18412,-1.58954,1.17567,-1.84371,1.08714,-2.00475,0.88663,-2.03949,0.64813,-2.01893,0.448618,-1.94648,0.215647,-1.8783,-0.026723,-1.9174,-0.158082,-1.99355,-0.172108,-2.08834,-0.159179,-2.15125,12 +-0.291145,1.54115,-0.290848,1.54512,-0.287776,1.52742,-0.286611,1.51408,-0.302355,1.55664,-0.362524,1.61264,-0.485928,1.68758,-0.57699,1.77528,-0.655842,1.82353,-0.712772,1.77427,-0.720219,1.65965,-0.66726,1.49295,-0.555019,1.34666,-0.404113,1.29356,-0.226579,1.36901,-0.0350125,1.4494,0.188929,1.43578,0.403556,1.35766,0.51972,1.14024,0.548223,0.836808,0.514795,0.539321,0.413867,0.4072,0.216851,0.387788,0.000322718,0.365938,-0.213484,0.316541,-0.396703,0.138513,-0.551287,-0.0808249,-0.602879,-0.321671,-0.578113,-0.4856,-0.501162,-0.628072,-0.346544,-0.749794,-0.12907,-0.820682,0.0581024,-0.766524,0.256259,-0.74408,0.455002,-0.873865,0.620433,-1.1148,0.712043,-1.37325,0.692183,-1.57281,0.574189,-1.65893,0.365216,-1.73137,0.150776,-1.7308,-0.0359187,-1.66562,-0.221526,-1.63073,-0.357797,-1.67407,-0.433672,-1.73885,12 +0.360388,1.22012,0.372421,1.2238,0.376976,1.23041,0.354972,1.2414,0.299979,1.29516,0.190638,1.349,0.0782017,1.39274,-0.0161417,1.4072,-0.126749,1.40476,-0.221335,1.36009,-0.277468,1.34087,-0.260882,1.27255,-0.170653,1.14358,-0.0178951,1.06304,0.135303,1.06629,0.337111,1.09248,0.543851,1.07867,0.77397,1.01702,0.913737,0.821618,1.00687,0.562737,0.969299,0.297318,0.811573,0.131553,0.624957,0.0426947,0.431054,-0.0124533,0.252726,-0.0421914,0.106956,-0.0554126,-0.0477673,-0.0969869,-0.191464,-0.224494,-0.293058,-0.421145,-0.334232,-0.659888,-0.268547,-0.859891,-0.107226,-0.991963,0.121463,-1.0577,0.347949,-1.04135,0.54369,-0.9741,0.754454,-1.03227,0.927737,-1.2254,1.01629,-1.42616,0.99021,-1.64557,0.856334,-1.78515,0.642272,-1.83805,0.397233,-1.81137,0.177226,-1.72142,-0.039493,-1.64895,-0.202061,-1.59328,12 +0.428457,1.12133,0.430967,1.12493,0.406289,1.11906,0.433914,1.12988,0.40036,1.18311,0.323844,1.27367,0.161754,1.34145,-0.0055824,1.42037,-0.169089,1.4183,-0.294529,1.40148,-0.328992,1.2577,-0.199901,1.16231,0.0519128,1.03535,0.378517,0.981666,0.662623,0.997444,0.900573,0.949704,1.043,0.85551,1.06341,0.660863,0.925651,0.502998,0.705162,0.417693,0.443002,0.442506,0.15657,0.472067,-0.0892719,0.322049,-0.275736,0.0862667,-0.365282,-0.205181,-0.343129,-0.507835,-0.229934,-0.744796,-0.0615468,-0.807557,0.090682,-0.759497,0.299952,-0.612198,0.555953,-0.702658,0.820801,-0.914127,0.965945,-1.14966,0.969348,-1.48735,0.819587,-1.68978,0.572576,-1.65114,0.308824,-1.54791,0.0160987,-1.51947,-0.248629,-1.57893,-0.385304,-1.7179,-0.387133,-1.8783,-0.284727,-1.95719,-0.139995,-1.99355,-0.0041106,-1.9377,0.13243,-1.92078,12 +-0.261937,1.76336,-0.22257,1.7799,-0.111796,1.76252,-0.000340148,1.76191,0.13934,1.73098,0.344341,1.65028,0.569149,1.48245,0.724653,1.32832,0.560985,1.22916,0.468763,1.16677,0.299046,1.10519,0.115032,1.05208,-0.0998464,1.03535,-0.302435,1.00879,-0.485028,0.901134,-0.662291,0.84979,-0.809373,0.766232,-0.916205,0.660863,-0.913076,0.455239,-0.827715,0.288735,-0.657393,0.135959,-0.439958,0.0342534,-0.191254,-0.0395143,0.066611,-0.111173,0.296113,-0.254135,0.471279,-0.459389,0.616429,-0.680008,0.739621,-0.872342,0.814289,-1.06562,0.789468,-1.20076,0.678536,-1.28439,0.449613,-1.35013,0.195357,-1.33358,-0.0493586,-1.26431,-0.254453,-1.16016,-0.413425,-1.05978,-0.525783,-1.0642,-0.558142,-1.1328,-0.562939,-1.23224,-0.533568,-1.3684,-0.479861,-1.48955,-0.386118,-1.55959,-0.266883,-1.55297,-0.136726,-1.5234,0.00378654,-1.5326,12 +0.0297451,0.985536,0.0115637,1.0014,-0.00424721,1.03246,-0.0200882,1.06788,-0.12168,1.1333,-0.270365,1.19834,-0.402376,1.29017,-0.587604,1.3809,-0.751026,1.39128,-0.911434,1.31863,-1.0085,1.2577,-1.04312,1.12095,-1.081,0.967635,-1.08506,0.818926,-1.04335,0.735981,-0.95999,0.664209,-0.875954,0.557919,-0.765681,0.536969,-0.554862,0.598584,-0.284578,0.659455,0.024363,0.620035,0.296919,0.536933,0.534286,0.404187,0.751304,0.267289,0.957507,0.071986,1.14641,-0.168501,1.31275,-0.404694,1.465,-0.629364,1.55983,-0.823951,1.57948,-1.00987,1.45845,-1.20574,1.24663,-1.36574,0.987065,-1.47149,0.745204,-1.48735,0.523976,-1.41783,0.323688,-1.26607,0.111893,-1.10449,-0.104323,-0.959481,-0.304073,-0.832266,-0.468705,-0.750006,-0.619001,-0.685257,-0.727122,-0.671711,-0.810657,-0.684742,-0.835277,-0.707385,-0.828205,-0.768412,12 +0.127023,1.49176,0.118822,1.49568,0.103251,1.50267,-0.0299878,1.56366,-0.272251,1.64384,-0.526449,1.75072,-0.788922,1.82859,-1.00029,1.81468,-1.17427,1.71545,-1.28784,1.62241,-1.33793,1.49331,-1.30726,1.28629,-1.28328,1.08944,-1.2477,0.92742,-1.16742,0.804765,-1.02381,0.707011,-0.864885,0.662108,-0.673093,0.676316,-0.447391,0.710135,-0.200087,0.723934,0.0482941,0.71685,0.296919,0.666666,0.511604,0.568534,0.673996,0.398844,0.80571,0.202434,0.910672,-0.0068964,0.959216,-0.226563,0.912863,-0.435079,0.770417,-0.582282,0.600334,-0.659888,0.399958,-0.671212,0.198485,-0.649401,-0.0157911,-0.597963,-0.202141,-0.550782,-0.392402,-0.544655,-0.585702,-0.523374,-0.741428,-0.540145,-0.89154,-0.599478,-1.02518,-0.672255,-1.12658,-0.776895,-1.20323,-0.886316,-1.20635,-1.00301,-1.11879,-1.13831,-1.00327,-1.30999,-0.853925,-1.45981,12 +0.107567,1.05962,0.118822,1.07549,0.12281,1.09431,0.108198,1.06788,-0.0514038,1.1582,-0.26009,1.22345,-0.485928,1.30296,-0.714589,1.35461,-0.930947,1.35072,-1.13102,1.27724,-1.26586,1.1468,-1.36824,0.983219,-1.4148,0.791688,-1.42047,0.629122,-1.43624,0.488251,-1.44908,0.350095,-1.44168,0.245481,-1.39082,0.165288,-1.2832,0.168481,-1.04499,0.143692,-0.729125,0.0714156,-0.439958,-0.0467947,-0.191254,-0.138052,0.0113993,-0.242729,0.198521,-0.400854,0.385573,-0.572477,0.541435,-0.793422,0.653028,-1.0343,0.759477,-1.27513,0.811729,-1.45523,0.778826,-1.56734,0.624313,-1.61493,0.417037,-1.64012,0.195114,-1.59138,-0.0179344,-1.518,-0.202793,-1.43113,-0.347614,-1.40012,-0.474781,-1.42616,-0.572211,-1.48556,-0.654,-1.57004,-0.739537,-1.63699,-0.810074,-1.69212,-0.837834,-1.7344,-0.817586,-1.77451,-0.768162,-1.86011,12 +-0.281392,1.1584,-0.417622,1.14965,-0.639686,1.06956,-0.878798,1.03072,-1.0754,0.983863,-1.24359,0.922126,-1.40528,0.841472,-1.48712,0.749966,-1.49171,0.688834,-1.45514,0.669685,-1.35853,0.606234,-1.22601,0.500989,-1.081,0.385589,-0.942768,0.303641,-0.815906,0.268106,-0.662291,0.235873,-0.476644,0.290152,-0.233192,0.320155,0.0302075,0.311894,0.294751,0.240411,0.562595,0.135959,0.76477,0.0180718,0.965074,-0.121652,1.13784,-0.308542,1.2611,-0.612867,1.33932,-0.992648,1.36631,-1.34405,1.34594,-1.64969,1.28572,-1.83908,1.14553,-1.94834,0.957056,-2.02328,0.722585,-2.08208,0.490931,-2.05391,0.266423,-1.96301,0.0510398,-1.84721,-0.145384,-1.69244,-0.328851,-1.60167,-0.484022,-1.51947,-0.627655,-1.49892,-0.737402,-1.50284,-0.841567,-1.51637,-0.892979,-1.50658,-0.946588,-1.54003,-0.95907,-1.54851,-0.965451,-1.61754,12 +-0.252234,0.899129,-0.251818,0.914861,-0.248658,0.908704,-0.217518,0.931566,-0.101594,0.958957,0.0062685,0.972347,0.234883,0.956831,0.428335,0.920832,0.529257,0.810392,0.615151,0.655906,0.75207,0.647848,0.785553,0.48718,0.780169,0.236715,0.70378,0.0324079,0.559191,-0.172302,0.3796,-0.263822,0.11128,-0.27527,-0.198419,-0.206326,-0.519059,-0.150071,-0.803566,-0.146464,-1.02817,-0.267403,-1.21191,-0.419742,-1.34764,-0.598223,-1.49056,-0.71984,-1.5796,-0.873694,-1.61832,-0.976453,-1.61188,-1.00395,-1.57735,-1.22859,-1.53191,-1.40404,-1.44689,-1.55067,-1.26022,-1.72457,-1.08984,-1.86404,-0.913046,-1.90064,-0.701303,-1.85898,-0.412065,-1.78995,-0.145384,-1.76118,0.0556542,-1.83009,0.210545,-1.93281,0.324595,-2.0456,0.41154,-2.12123,0.438261,-2.2268,0.369598,-2.27521,0.276937,-2.21387,0.155064,-2.22644,0.0295064,-2.19978,12 +-0.660649,1.34359,-0.759015,1.35977,-0.972037,1.26756,-1.17492,1.11746,-1.3565,0.958957,-1.46895,0.897016,-1.4157,0.700471,-1.13789,0.473934,-0.782809,0.41864,-0.399076,0.573058,0.000489551,0.800295,0.277594,0.859179,0.395803,0.683395,0.449665,0.561284,0.352432,0.226788,0.209479,-0.0210675,0.0558256,-0.111563,-0.163706,-0.190873,-0.36381,-0.197898,-0.562199,-0.162549,-0.729125,-0.0737723,-0.954551,-0.144094,-1.13225,-0.25313,-1.25864,-0.357938,-1.3194,-0.563914,-1.3397,-0.863365,-1.25835,-1.11729,-1.05762,-1.26098,-0.775425,-1.29121,-0.45664,-1.16895,-0.168257,-0.922784,0.122057,-0.758386,0.343144,-0.613256,0.36833,-0.684614,0.267794,-0.94547,0.160962,-1.12852,0.0274865,-1.3195,-0.187684,-1.53283,-0.442778,-1.67224,-0.691078,-1.7179,-0.925041,-1.77105,-1.10496,-1.82466,-1.15505,-1.96763,-1.02097,-2.06324,-0.828205,-2.04208,12 +-0.349461,1.47939,-0.359127,1.4833,-0.346403,1.50267,-0.345804,1.51408,-0.342528,1.55664,-0.34208,1.60006,-0.350148,1.70038,-0.439445,1.77528,-0.560603,1.86409,-0.785966,1.92613,-0.967304,1.88138,-1.04312,1.80989,-1.03043,1.46846,-0.922433,1.26643,-0.681524,1.09381,-0.407136,1.00682,-0.154926,1.12334,0.125731,1.4661,0.328668,1.49065,0.451689,1.27201,0.502798,0.926581,0.425598,0.520752,0.171487,0.124833,-0.12112,-0.0617778,-0.365282,-0.0584622,-0.52529,0.0254245,-0.690584,0.0163569,-0.786981,-0.143548,-0.742549,-0.437294,-0.579048,-0.723521,-0.335426,-0.796998,-0.107226,-0.69609,0.131996,-0.567309,0.31735,-0.535948,0.464833,-0.659174,0.496014,-0.880937,0.411992,-1.03733,0.247605,-1.06616,0.0102376,-1.00558,-0.2185,-0.924755,-0.359324,-0.926563,-0.376923,-1.06925,-0.24875,-1.20308,-0.0748297,-1.28488,0.0809903,-1.31429,12 +-0.00911567,1.61524,-0.00795162,1.6316,-0.0336109,1.63877,-0.0694329,1.63802,-0.212044,1.61893,-0.454735,1.58753,-0.663566,1.50809,-0.778055,1.45978,-0.803925,1.36426,-0.85916,1.20817,-0.854034,0.938911,-0.728188,0.666335,-0.453881,0.466809,-0.109326,0.452791,0.217995,0.529569,0.517841,0.621344,0.810057,0.676955,1.01708,0.645343,1.0809,0.40748,1.03102,0.0147335,0.909502,-0.331946,0.717966,-0.549475,0.488922,-0.76257,0.221226,-0.91728,-0.0616871,-0.97153,-0.343129,-0.87949,-0.604846,-0.825815,-0.851911,-0.742772,-1.06048,-0.711191,-1.22433,-0.834912,-1.23792,-1.07995,-1.06799,-1.31905,-0.786379,-1.48685,-0.487376,-1.51708,-0.215025,-1.46074,0.0173408,-1.33481,0.196299,-1.18512,0.349497,-0.999513,0.444756,-0.952246,0.494942,-1.01884,0.447515,-1.12762,0.305085,-1.24157,0.168183,-1.29377,0.0312718,-1.36021,-0.099137,-1.41134,12 +-0.660649,1.34359,-0.759015,1.35977,-0.972037,1.26756,-1.17492,1.11746,-1.3565,0.958957,-1.46895,0.897016,-1.4157,0.700471,-1.13789,0.473934,-0.782809,0.41864,-0.399076,0.573058,0.000489551,0.800295,0.277594,0.859179,0.395803,0.683395,0.449665,0.561284,0.352432,0.226788,0.209479,-0.0210675,0.0558256,-0.111563,-0.163706,-0.190873,-0.36381,-0.197898,-0.562199,-0.162549,-0.729125,-0.0737723,-0.954551,-0.144094,-1.13225,-0.25313,-1.25864,-0.357938,-1.3194,-0.563914,-1.3397,-0.863365,-1.25835,-1.11729,-1.05762,-1.26098,-0.775425,-1.29121,-0.45664,-1.16895,-0.168257,-0.922784,0.122057,-0.758386,0.343144,-0.613256,0.36833,-0.684614,0.267794,-0.94547,0.160962,-1.12852,0.0274865,-1.3195,-0.187684,-1.53283,-0.442778,-1.67224,-0.691078,-1.7179,-0.925041,-1.77105,-1.10496,-1.82466,-1.15505,-1.96763,-1.02097,-2.06324,-0.828205,-2.04208,12 +-0.349461,1.47939,-0.359127,1.4833,-0.346403,1.50267,-0.345804,1.51408,-0.342528,1.55664,-0.34208,1.60006,-0.350148,1.70038,-0.439445,1.77528,-0.560603,1.86409,-0.785966,1.92613,-0.967304,1.88138,-1.04312,1.80989,-1.03043,1.46846,-0.922433,1.26643,-0.681524,1.09381,-0.407136,1.00682,-0.154926,1.12334,0.125731,1.4661,0.328668,1.49065,0.451689,1.27201,0.502798,0.926581,0.425598,0.520752,0.171487,0.124833,-0.12112,-0.0617778,-0.365282,-0.0584622,-0.52529,0.0254245,-0.690584,0.0163569,-0.786981,-0.143548,-0.742549,-0.437294,-0.579048,-0.723521,-0.335426,-0.796998,-0.107226,-0.69609,0.131996,-0.567309,0.31735,-0.535948,0.464833,-0.659174,0.496014,-0.880937,0.411992,-1.03733,0.247605,-1.06616,0.0102376,-1.00558,-0.2185,-0.924755,-0.359324,-0.926563,-0.376923,-1.06925,-0.24875,-1.20308,-0.0748297,-1.28488,0.0809903,-1.31429,12 +-0.00911567,1.61524,-0.00795162,1.6316,-0.0336109,1.63877,-0.0694329,1.63802,-0.212044,1.61893,-0.454735,1.58753,-0.663566,1.50809,-0.778055,1.45978,-0.803925,1.36426,-0.85916,1.20817,-0.854034,0.938911,-0.728188,0.666335,-0.453881,0.466809,-0.109326,0.452791,0.217995,0.529569,0.517841,0.621344,0.810057,0.676955,1.01708,0.645343,1.0809,0.40748,1.03102,0.0147335,0.909502,-0.331946,0.717966,-0.549475,0.488922,-0.76257,0.221226,-0.91728,-0.0616871,-0.97153,-0.343129,-0.87949,-0.604846,-0.825815,-0.851911,-0.742772,-1.06048,-0.711191,-1.22433,-0.834912,-1.23792,-1.07995,-1.06799,-1.31905,-0.786379,-1.48685,-0.487376,-1.51708,-0.215025,-1.46074,0.0173408,-1.33481,0.196299,-1.18512,0.349497,-0.999513,0.444756,-0.952246,0.494942,-1.01884,0.447515,-1.12762,0.305085,-1.24157,0.168183,-1.29377,0.0312718,-1.36021,-0.099137,-1.41134,12 +0.904941,-1.59494,0.908916,-1.60607,0.91467,-1.59095,0.927462,-1.59669,0.952555,-1.55631,0.979493,-1.50085,1.0184,-1.44045,1.0527,-1.32689,1.06891,-1.20241,1.07518,-0.9871,1.06095,-0.807523,1.05983,-0.573703,1.0634,-0.385912,1.05947,-0.170988,1.05551,0.0341098,1.04942,0.235873,1.02081,0.468642,0.99392,0.707289,0.925651,0.885342,0.825845,0.997936,0.670254,1.07177,0.519144,1.12073,0.364198,1.14371,0.21015,1.0734,0.0467235,1.06655,-0.128779,1.04343,-0.294182,1.05289,-0.440496,1.0549,-0.610989,1.0934,-0.801544,1.10574,-0.959345,1.10542,-1.0571,1.03246,-1.11361,0.903927,-1.14954,0.787083,-1.19049,0.586122,-1.20795,0.398103,-1.23846,0.19892,-1.27124,0.0272137,-1.31177,-0.205583,-1.34895,-0.44081,-1.37017,-0.64501,-1.35381,-0.804243,-1.30008,-0.943883,-1.24199,-1.05888,-1.17986,-1.16871,13 +1.35222,-1.4097,1.35757,-1.396,1.36432,-1.38054,1.38146,-1.38601,1.41434,-1.36954,1.45077,-1.32507,1.4885,-1.22253,1.52891,-1.10344,1.54505,-0.986252,1.53526,-0.821463,1.50365,-0.668908,1.46621,-0.477221,1.41743,-0.304692,1.37454,-0.0896178,1.34501,0.0891609,1.32585,0.307293,1.29814,0.498401,1.27175,0.691836,1.2122,0.85348,1.01898,0.981851,0.765978,1.13631,0.565947,1.25039,0.420933,1.32446,0.287458,1.33665,0.144315,1.36006,-0.0109389,1.38276,-0.176375,1.42539,-0.375566,1.42738,-0.578113,1.39952,-0.779283,1.32846,-0.970521,1.27834,-1.12257,1.2505,-1.21915,1.17981,-1.27177,1.05468,-1.29885,0.886702,-1.31321,0.700707,-1.34158,0.548253,-1.39166,0.427191,-1.4597,0.301062,-1.50646,0.137276,-1.51857,-0.068643,-1.49203,-0.313902,-1.42696,-0.542156,-1.35696,-0.719914,-1.28282,-0.841198,13 +1.26469,-1.31092,1.26977,-1.30946,1.27633,-1.30629,1.29262,-1.29922,1.32397,-1.25749,1.34828,-1.17441,1.39447,-1.03019,1.40193,-0.866816,1.39691,-0.716058,1.36796,-0.559081,1.31831,-0.405569,1.27319,-0.201703,1.23534,0.0201287,1.21196,0.208739,1.18989,0.364416,1.14512,0.578541,1.10958,0.751385,1.04024,0.98605,0.997319,1.09241,0.946528,1.17529,0.837709,1.2493,0.636091,1.31526,0.47761,1.3902,0.353746,1.41888,0.231089,1.42528,0.106956,1.39896,0.00579153,1.37683,-0.115674,1.34636,-0.249186,1.31899,-0.401016,1.29664,-0.569418,1.30979,-0.729542,1.29719,-0.870806,1.21046,-0.935611,1.11415,-0.954026,0.986875,-0.978212,0.82447,-1.02276,0.669224,-1.0675,0.520503,-1.11767,0.381067,-1.15436,0.258248,-1.19397,0.132475,-1.20635,-0.0223311,-1.20946,-0.140485,-1.19779,-0.255393,-1.17986,-0.356005,13 +-1.58441,-0.0639353,-1.58809,-0.0613829,-1.58792,-0.0565169,-1.59932,-0.0598819,-1.61752,-0.024739,-1.63288,-0.00685311,-1.63509,0.0466412,-1.62466,0.066445,-1.56578,0.134965,-1.50742,0.145039,-1.44087,0.190447,-1.37838,0.211662,-1.33384,0.250281,-1.29851,0.303641,-1.30185,0.364416,-1.33211,0.435763,-1.40837,0.468642,-1.48341,0.552422,-1.54586,0.646411,-1.56398,0.691695,-1.55447,0.539321,-1.50428,1.07205,-1.44962,0.585004,-1.38014,0.596284,-1.33021,0.658933,-1.28613,0.736414,-1.24766,0.858529,-1.22006,0.957725,-1.20304,1.06117,-1.20207,1.12168,-1.12651,1.21545,-0.991563,1.29719,-0.839152,1.34837,-0.691139,1.38168,-0.559896,1.35906,-0.432529,1.34715,-0.300684,1.35448,-0.187684,1.38722,-0.0914257,1.42108,0.0131182,1.48161,0.113665,1.51314,0.222133,1.54144,0.313205,1.53125,0.384959,1.50219,0.458362,1.46356,13 +0.934099,-0.928219,0.947896,-0.926427,0.963542,-0.910333,0.986656,-0.890282,1.01276,-0.883907,1.05121,-0.860555,1.10195,-0.825114,1.15852,-0.801116,1.20643,-0.783636,1.24249,-0.766231,1.26684,-0.752077,1.29351,-0.72524,1.31629,-0.683718,1.35426,-0.686273,1.3967,-0.695227,1.44282,-0.706405,1.50889,-0.766262,1.56118,-0.794821,1.58239,-0.803208,1.5983,-0.83958,1.56733,-0.864395,1.50165,-0.90624,1.42986,-0.976186,1.38079,-1.03249,1.34782,-1.0531,1.32857,-1.07342,1.32349,-1.06874,1.33508,-0.953288,1.32959,-0.807872,1.2902,-0.564439,1.23563,-0.262407,1.1702,0.0825465,1.10314,0.428831,1.05082,0.75735,0.957535,1.04413,0.811912,1.36087,0.646399,1.62324,0.46987,1.81386,0.306098,1.98107,0.152137,2.0597,0.0116359,2.06275,-0.128066,2.00521,-0.266883,1.85522,-0.410825,1.66538,-0.545154,1.46356,13 +-0.95233,-1.86653,-0.954067,-1.87795,-0.952478,-1.87555,-0.947891,-1.86936,-0.954931,-1.85518,-0.966956,-1.82723,-0.956028,-1.78659,-0.947387,-1.73438,-0.930947,-1.63466,-0.890514,-1.51181,-0.833435,-1.36193,-0.768841,-1.17991,-0.676395,-0.981466,-0.597222,-0.781175,-0.516084,-0.598918,-0.44968,-0.420848,-0.376803,-0.215752,-0.302619,-0.0204856,-0.220536,0.136619,-0.103553,0.288735,0.024363,0.394133,0.15657,0.439634,0.318892,0.486396,0.497285,0.514053,0.664787,0.479602,0.82491,0.445526,1.00209,0.421246,1.1835,0.3585,1.36246,0.255558,1.49044,0.135449,1.58103,-0.0265915,1.61782,-0.228935,1.63093,-0.444695,1.62129,-0.595414,1.61768,-0.759408,1.60643,-0.867212,1.59353,-0.94323,1.58124,-1.02618,1.59116,-1.09889,1.59761,-1.19365,1.5882,-1.26168,1.55842,-1.30781,1.50951,-1.33268,1.45484,-1.36021,1.38472,-1.36281,13 +-1.25381,-1.07634,-1.25648,-1.07468,-1.24576,-1.07119,-1.25386,-1.06375,-1.26614,-1.04577,-1.28458,-1.02375,-1.26945,-1.00455,-1.2437,-0.998273,-1.18488,-0.972713,-1.15194,-0.931868,-1.10112,-0.849078,-1.08377,-0.739049,-1.06076,-0.602498,-1.03425,-0.482877,-1.01235,-0.36498,-1.01314,-0.235266,-1.03125,-0.126474,-1.05512,0.0104209,-1.04444,0.136619,-0.996696,0.240411,-0.920511,0.361861,-0.837604,0.439634,-0.758136,0.535665,-0.662274,0.64568,-0.571284,0.756769,-0.482409,0.865697,-0.39061,1.00434,-0.299776,1.10346,-0.194374,1.17393,-0.0338504,1.16937,0.0991455,1.13686,0.296757,1.1882,0.490931,1.21046,0.663731,1.21818,0.809704,1.21591,0.965036,1.18209,1.09655,1.17981,1.25709,1.1605,1.39701,1.1544,1.53275,1.14553,1.63457,1.09758,1.70588,1.03781,1.73611,0.948085,1.73781,0.824257,1.71925,0.675065,13 +-1.30243,-1.05164,-1.29546,-1.04996,-1.29463,-1.05884,-1.3032,-1.05138,-1.30631,-1.04577,-1.32553,-1.03633,-1.32167,-1.0174,-1.27544,-1.01139,-1.22717,-0.986252,-1.19378,-0.91809,-1.16292,-0.793692,-1.14476,-0.656376,-1.12142,-0.480639,-1.09521,-0.293014,-1.05372,-0.130984,-1.01314,0.0217353,-0.96467,0.111598,-0.893043,0.273728,-0.805606,0.455239,-0.694926,0.578891,-0.573666,0.71685,-0.47503,0.828832,-0.32729,0.946497,-0.176389,1.04049,0.0792915,1.06655,0.321251,1.15652,0.56287,1.21486,0.793749,1.24919,1.01166,1.23838,1.22342,1.18525,1.42504,1.10542,1.57418,0.939019,1.69429,0.750726,1.75369,0.564116,1.80489,0.385715,1.81702,0.219322,1.82799,0.0779486,1.8591,-0.0661565,1.90547,-0.205583,1.94041,-0.346669,1.94991,-0.457385,1.95474,-0.486166,1.93548,-0.593995,1.88812,-0.632053,1.82218,-0.6471,13 +-1.00099,-1.1381,-0.993098,-1.14883,-0.991596,-1.14544,-0.997236,-1.13812,-1.00512,-1.09558,-1.01823,-1.06144,-1.02916,-0.978907,-1.03208,-0.840525,-1.01557,-0.689039,-0.953274,-0.490071,-0.874634,-0.280845,-0.758704,-0.0639148,-0.615681,0.128422,-0.454925,0.290109,-0.329959,0.474518,-0.215742,0.621344,-0.0773348,0.766232,0.0446931,0.939557,0.209284,1.07651,0.391348,1.15913,0.55066,1.21703,0.706296,1.13691,0.897027,1.09444,1.06053,0.991165,1.25023,0.887217,1.41433,0.75254,1.5806,0.680398,1.78982,0.552854,2.00932,0.384467,2.15804,0.199082,2.2496,0.0205444,2.22924,-0.151031,2.19043,-0.322081,2.1204,-0.431914,2.1005,-0.559001,2.10421,-0.71594,2.09056,-0.835725,2.09061,-0.946175,2.09962,-1.04556,2.10722,-0.642449,2.09825,-0.698634,2.07452,-0.737948,2.01706,-0.775433,1.95001,-0.757607,1.86506,-0.732044,13 +-1.18575,-1.385,-1.17842,-1.40833,-1.17733,-1.40529,-1.17492,-1.39837,-1.19586,-1.39445,-1.21287,-1.3376,-1.23812,-1.26096,-1.2437,-1.12973,-1.21661,-0.999733,-1.13102,-0.862858,-1.0085,-0.710523,-0.890749,-0.532336,-0.797771,-0.345331,-0.729324,-0.116741,-0.660837,0.0754278,-0.619802,0.264428,-0.587554,0.424036,-0.545731,0.629889,-0.459367,0.821618,-0.393218,1.01409,-0.310486,1.10404,-0.182601,1.10448,-0.021225,1.12731,0.154938,1.1063,0.306987,1.06655,0.449839,1.07575,0.648553,1.11768,0.869539,1.08729,1.09934,0.996715,1.2902,0.851212,1.46962,0.712369,1.55234,0.611998,1.60987,0.459484,1.64162,0.370818,1.69648,0.228283,1.74045,0.0955589,1.75294,-0.00262183,1.77574,-0.106131,1.81303,0.00776507,1.83852,-0.037474,1.89424,-0.189267,1.91786,-0.247607,1.9083,-0.334854,1.87043,-0.393529,1.81357,-0.440897,13 +-1.03985,-1.52085,-1.04186,-1.53191,-1.04047,-1.54145,-1.04658,-1.52232,-1.04529,-1.51898,-1.03867,-1.51337,-1.01873,-1.51738,-0.989734,-1.49775,-0.973233,-1.45906,-0.963707,-1.35989,-0.967304,-1.18176,-0.961867,-0.987009,-0.919147,-0.751372,-0.87162,-0.550656,-0.836593,-0.351188,-0.789868,-0.192402,-0.731782,0.00740905,-0.673093,0.227235,-0.578751,0.455239,-0.489752,0.64337,-0.430141,0.829766,-0.369754,0.990999,-0.247931,1.12731,-0.076985,1.22144,0.133497,1.24588,0.385573,1.2858,0.637863,1.31204,0.934525,1.29781,1.20897,1.23838,1.45707,1.08987,1.65903,0.885291,1.80341,0.658753,1.88432,0.413537,1.93707,0.147852,1.89358,-0.0580135,1.86487,-0.248279,1.80922,-0.378888,1.78503,-0.452828,1.75754,-0.56558,1.71804,-0.628976,1.69023,-0.712069,1.66901,-0.817468,1.63639,-0.81434,1.59633,-0.845467,1.54768,-0.877566,13 +-0.816192,-1.69367,-0.807778,-1.69255,-0.815616,-1.67755,-0.809705,-1.68342,-0.824395,-1.66836,-0.813305,-1.65145,-0.799346,-1.65838,-0.756936,-1.66862,-0.719298,-1.64814,-0.702339,-1.5532,-0.689293,-1.44509,-0.677397,-1.24878,-0.656157,-1.07625,-0.627699,-0.889669,-0.588461,-0.750278,-0.545377,-0.620738,-0.509906,-0.438912,-0.487856,-0.25282,-0.423564,-0.0704503,-0.332876,0.0952976,-0.226758,0.248945,-0.100726,0.326152,0.00145727,0.437057,0.0997265,0.54696,0.231089,0.626321,0.407013,0.671772,0.616429,0.664236,0.837073,0.585247,1.05547,0.513376,1.24568,0.421727,1.36933,0.256428,1.44312,0.113695,1.48314,-0.0462656,1.49906,-0.179149,1.52899,-0.28705,1.55858,-0.385827,1.59353,-0.472926,1.64608,-0.532835,1.67432,-0.632281,1.71804,-0.709643,1.75515,-0.752257,1.7704,-0.777737,1.73611,-0.879111,1.70243,-0.933327,1.64205,-0.950353,13 +-2.05114,-1.00225,-2.01727,-0.963475,-2.02782,-0.996933,-2.04348,-0.952228,-2.0793,-0.908812,-2.09388,-0.860555,-2.12609,-0.837907,-2.09031,-0.735359,-2.03136,-0.648539,-1.90474,-0.517687,-1.78063,-0.364014,-1.68318,-0.187895,-1.57665,-0.020452,-1.46114,0.113778,-1.36386,0.240581,-1.2683,0.392898,-1.17542,0.543072,-1.06667,0.72281,-0.936965,0.933101,-0.767373,1.09465,-0.5856,1.21703,-0.381485,1.31526,-0.15726,1.3738,0.088707,1.43537,0.317806,1.49051,0.546294,1.4636,0.79854,1.42539,1.06444,1.36259,1.32959,1.23838,1.57948,1.05805,1.79273,0.853844,1.90168,0.643146,1.94763,0.26027,1.99817,0.0883852,2.00193,-0.0436678,2.0085,-0.0694978,2.00616,-0.0563742,2.01653,-0.172832,2.0164,-0.218947,2.01457,-0.266002,2.00553,-0.28308,1.96394,-0.30062,1.9083,-0.295947,1.83504,-0.293086,1.7793,-0.258955,13 +-1.86639,-1.03932,-1.8612,-1.03763,-1.8812,-1.02168,-1.88554,-1.02659,-1.91872,-0.995956,-1.91974,-0.948415,-1.93803,-0.876396,-1.91042,-0.76165,-1.84089,-0.689039,-1.78976,-0.572919,-1.66741,-0.391737,-1.53081,-0.229261,-1.38441,-0.0475253,-1.26803,0.140901,-1.13641,0.309365,-1.05569,0.492874,-0.953602,0.691867,-0.823556,0.908583,-0.650419,1.10838,-0.465603,1.23977,-0.27462,1.31377,-0.100726,1.33151,0.080816,1.32446,0.221226,1.23793,0.372011,1.16438,0.503468,1.05962,0.627118,0.890923,0.804608,0.828155,0.989721,0.755045,1.13443,0.660383,1.25793,0.555136,1.3558,0.347272,1.39872,0.214322,1.45829,0.058652,1.49945,-0.0722974,1.52027,-0.179536,1.54665,-0.257974,1.572,-0.279508,1.60038,-0.218947,1.63464,-0.306365,1.64387,-0.309891,1.64137,-0.406646,1.60017,-0.490372,1.55212,-0.556721,1.48764,-0.58647,13 +-1.83723,-0.718282,-1.85142,-0.72869,-1.8714,-0.650478,-1.8461,-0.617605,-1.86853,-0.560186,-1.89924,-0.534173,-1.89628,-0.337925,-1.89981,-0.275287,-1.84089,-0.148709,-1.69565,-0.0344356,-1.55414,0.12111,-1.39871,0.294336,-1.26304,0.466809,-1.07492,0.615531,-0.929656,0.791032,-0.789868,0.964013,-0.654134,1.12334,-0.499407,1.29572,-0.280229,1.41103,-0.0672982,1.49761,0.191818,1.45903,0.378795,1.39638,0.47761,1.35733,0.673996,1.18853,0.827403,1.09916,1.0607,0.96266,1.26994,0.858529,1.41087,0.779531,1.52696,0.674512,1.62395,0.548992,1.70362,0.366457,1.71609,0.207139,1.73653,0.0456949,1.74353,-0.104848,1.72608,-0.229791,1.6926,-0.303298,1.66858,-0.338603,1.66461,-0.39949,1.6651,-0.56558,1.67172,-0.642449,1.67168,-0.698634,1.65981,-0.671711,1.61831,-0.658822,1.56094,-0.581832,1.49624,-0.537946,13 +-2.09005,-0.928219,-2.08555,-0.889324,-2.06693,-0.860832,-2.05332,-0.828283,-2.02911,-0.759378,-2.01195,-0.634561,-1.94851,-0.491774,-1.85751,-0.314752,-1.76682,-0.0676509,-1.54926,0.145039,-1.35853,0.384449,-1.15489,0.597411,-0.949478,0.778122,-0.749659,0.954543,-0.557404,1.09381,-0.407136,1.20671,-0.232574,1.31674,-0.0363443,1.43513,0.161506,1.49065,0.42754,1.56209,0.706181,1.53967,0.940191,1.50986,1.11242,1.45594,1.23725,1.35307,1.35869,1.22961,1.4679,1.10807,1.61272,0.971943,1.7465,0.828155,1.83395,0.674512,1.94665,0.485359,1.98214,0.350699,2.0218,0.191531,1.94763,0.0763484,1.90653,-0.0602165,1.90341,-0.158186,1.88403,-0.234554,1.86546,-0.311727,1.84981,-0.359458,1.87774,-0.525606,1.89409,-0.575256,1.86643,-0.524386,1.84411,-0.592191,1.79051,-0.581063,1.70243,-0.544139,1.63349,-0.550051,13 +-2.11921,-0.817063,-2.12453,-0.852275,-2.13537,-0.848483,-2.15206,-0.853072,-2.16967,-0.821669,-2.19632,-0.785224,-2.20964,-0.684058,-2.2173,-0.57761,-2.19006,-0.418903,-2.09297,-0.241526,-1.96597,-0.0867833,-1.79495,0.0876229,-1.6474,0.317935,-1.50176,0.452791,-1.4156,0.667197,-1.3215,0.84979,-1.25307,1.07867,-1.15926,1.28026,-1.04444,1.50662,-0.900162,1.62657,-0.71719,1.70103,-0.416557,1.70446,-0.15726,1.70242,0.110746,1.66564,0.317806,1.60461,0.49272,1.54437,0.605684,1.47401,0.750424,1.44354,0.880097,1.41567,1.04538,1.36027,1.21334,1.30979,1.36675,1.23489,1.50426,1.13386,1.60091,1.02495,1.63739,0.900986,1.63514,0.783236,1.67794,0.655757,1.71091,0.547172,1.73904,0.44771,1.77366,0.365804,1.79226,0.279911,1.7704,0.229452,1.71797,0.144631,1.63171,0.0961019,1.55629,0.0200348,13 +-1.86639,-1.23688,-1.88072,-1.23536,-1.8812,-1.23209,-1.90529,-1.20012,-1.90865,-1.1952,-1.92996,-1.16188,-1.92761,-1.17125,-1.89981,-1.15602,-1.84089,-1.17539,-1.76884,-1.12518,-1.70856,-1.01542,-1.63239,-0.863029,-1.5665,-0.670152,-1.53229,-0.482877,-1.46729,-0.282404,-1.39587,-0.0353762,-1.33072,0.185963,-1.24029,0.428529,-1.09215,0.678273,-0.912205,0.901217,-0.71719,1.10404,-0.521834,1.25039,-0.304666,1.32446,-0.110101,1.36956,0.100929,1.37633,0.321251,1.36664,0.541435,1.32821,0.707156,1.24919,1.00066,1.19008,1.3013,1.13756,1.52533,1.07397,1.69424,0.954627,1.78931,0.796673,1.80462,0.608684,1.79506,0.485887,1.82662,0.439397,1.87487,0.225797,1.89616,0.0138504,1.90547,-0.205583,1.88484,-0.44081,1.84788,-0.604821,1.79803,-0.645204,1.7452,-0.632903,1.66704,-0.59436,1.59917,-0.58647,13 +-1.67193,-0.286193,-1.68561,-0.259119,-1.69547,-0.24212,-1.69801,-0.196247,-1.72797,-0.136788,-1.77631,-0.107295,-1.79177,-0.0559247,-1.77282,0.0138622,-1.73509,0.0674461,-1.67473,0.131261,-1.60562,0.190447,-1.54094,0.252969,-1.4957,0.304427,-1.46114,0.37142,-1.44661,0.4332,-1.4703,0.507121,-1.5304,0.60259,-1.58761,0.691836,-1.62944,0.773859,-1.63637,0.852893,-1.60227,0.89431,-1.55108,0.942314,-1.48368,0.979366,-1.42427,1.00758,-1.36278,1.01767,-1.30757,1.05962,-1.25835,1.13384,-1.22006,1.21679,-1.1701,1.28676,-1.13535,1.36027,-1.05964,1.40412,-0.969719,1.45293,-0.849685,1.45569,-0.742066,1.45605,-0.62887,1.41632,-0.537845,1.37466,-0.450733,1.35448,-0.372889,1.37385,-0.294848,1.39442,-0.227794,1.42784,-0.164566,1.45951,-0.109627,1.46192,-0.058417,1.4405,-0.0129333,1.38922,0.0466677,1.33009,13 +-1.53579,-0.384921,-1.52954,-0.382651,-1.52924,-0.378221,-1.54008,-0.369716,-1.55726,-0.36094,-1.58166,-0.308179,-1.57238,-0.27385,-1.5612,-0.222704,-1.51288,-0.175729,-1.45514,-0.103446,-1.39973,-0.0175056,-1.34792,0.0600652,-1.31366,0.128422,-1.27817,0.181616,-1.27085,0.295632,-1.27896,0.435763,-1.28639,0.572831,-1.29823,0.738263,-1.33098,0.869377,-1.27432,1.01409,-1.15976,1.13631,-1.01302,1.1856,-0.814813,1.19305,-0.596043,1.18853,-0.408612,1.14804,-0.246674,1.14039,-0.0799469,1.18247,0.0791739,1.20063,0.266114,1.23838,0.433462,1.21706,0.589364,1.15255,0.711635,1.01692,0.797037,0.85798,0.785967,0.712782,0.809704,0.571776,0.850168,0.425613,0.880855,0.333301,0.88663,0.267177,0.897772,0.261088,0.902657,0.231359,0.892647,0.212852,0.876459,0.202945,0.847935,0.183539,0.818233,0.158906,0.784338,0.129241,13 +-1.28297,-0.520772,-1.28573,-0.518622,-1.28488,-0.514377,-1.29335,-0.49366,-1.29624,-0.485468,-1.30503,-0.458842,-1.30077,-0.427698,-1.27544,-0.406744,-1.22717,-0.364864,-1.16237,-0.324374,-1.11145,-0.280845,-1.07364,-0.24301,-1.03043,-0.223472,-1.00377,-0.211644,-0.991662,-0.21356,-1.00253,-0.220958,-1.06451,-0.230599,-1.11299,-0.2373,-1.16382,-0.245657,-1.17772,-0.259268,-1.18363,-0.267403,-1.1651,-0.257576,-1.14356,-0.220261,-1.1151,-0.193404,-1.0917,-0.123686,-1.06108,-0.0230917,-1.02268,0.0811448,-0.992688,0.196538,-0.928921,0.352239,-0.868328,0.485359,-0.781116,0.649476,-0.685853,0.752198,-0.554111,0.888634,-0.395686,1.02495,-0.224857,1.15865,-0.0687729,1.25084,0.0837733,1.31419,0.256894,1.37385,0.407761,1.39442,0.569098,1.40095,0.707192,1.40589,0.811946,1.36912,0.893245,1.3109,0.933157,1.21345,0.92154,1.12389,13 +-1.67193,-0.286193,-1.68561,-0.259119,-1.69547,-0.24212,-1.69801,-0.196247,-1.72797,-0.136788,-1.77631,-0.107295,-1.79177,-0.0559247,-1.77282,0.0138622,-1.73509,0.0674461,-1.67473,0.131261,-1.60562,0.190447,-1.54094,0.252969,-1.4957,0.304427,-1.46114,0.37142,-1.44661,0.4332,-1.4703,0.507121,-1.5304,0.60259,-1.58761,0.691836,-1.62944,0.773859,-1.63637,0.852893,-1.60227,0.89431,-1.55108,0.942314,-1.48368,0.979366,-1.42427,1.00758,-1.36278,1.01767,-1.30757,1.05962,-1.25835,1.13384,-1.22006,1.21679,-1.1701,1.28676,-1.13535,1.36027,-1.05964,1.40412,-0.969719,1.45293,-0.849685,1.45569,-0.742066,1.45605,-0.62887,1.41632,-0.537845,1.37466,-0.450733,1.35448,-0.372889,1.37385,-0.294848,1.39442,-0.227794,1.42784,-0.164566,1.45951,-0.109627,1.46192,-0.058417,1.4405,-0.0129333,1.38922,0.0466677,1.33009,13 +-1.53579,-0.384921,-1.52954,-0.382651,-1.52924,-0.378221,-1.54008,-0.369716,-1.55726,-0.36094,-1.58166,-0.308179,-1.57238,-0.27385,-1.5612,-0.222704,-1.51288,-0.175729,-1.45514,-0.103446,-1.39973,-0.0175056,-1.34792,0.0600652,-1.31366,0.128422,-1.27817,0.181616,-1.27085,0.295632,-1.27896,0.435763,-1.28639,0.572831,-1.29823,0.738263,-1.33098,0.869377,-1.27432,1.01409,-1.15976,1.13631,-1.01302,1.1856,-0.814813,1.19305,-0.596043,1.18853,-0.408612,1.14804,-0.246674,1.14039,-0.0799469,1.18247,0.0791739,1.20063,0.266114,1.23838,0.433462,1.21706,0.589364,1.15255,0.711635,1.01692,0.797037,0.85798,0.785967,0.712782,0.809704,0.571776,0.850168,0.425613,0.880855,0.333301,0.88663,0.267177,0.897772,0.261088,0.902657,0.231359,0.892647,0.212852,0.876459,0.202945,0.847935,0.183539,0.818233,0.158906,0.784338,0.129241,13 +-1.28297,-0.520772,-1.28573,-0.518622,-1.28488,-0.514377,-1.29335,-0.49366,-1.29624,-0.485468,-1.30503,-0.458842,-1.30077,-0.427698,-1.27544,-0.406744,-1.22717,-0.364864,-1.16237,-0.324374,-1.11145,-0.280845,-1.07364,-0.24301,-1.03043,-0.223472,-1.00377,-0.211644,-0.991662,-0.21356,-1.00253,-0.220958,-1.06451,-0.230599,-1.11299,-0.2373,-1.16382,-0.245657,-1.17772,-0.259268,-1.18363,-0.267403,-1.1651,-0.257576,-1.14356,-0.220261,-1.1151,-0.193404,-1.0917,-0.123686,-1.06108,-0.0230917,-1.02268,0.0811448,-0.992688,0.196538,-0.928921,0.352239,-0.868328,0.485359,-0.781116,0.649476,-0.685853,0.752198,-0.554111,0.888634,-0.395686,1.02495,-0.224857,1.15865,-0.0687729,1.25084,0.0837733,1.31419,0.256894,1.37385,0.407761,1.39442,0.569098,1.40095,0.707192,1.40589,0.811946,1.36912,0.893245,1.3109,0.933157,1.21345,0.92154,1.12389,13 +1.15776,-0.0515609,1.16251,-0.0489977,1.16884,-0.0441148,1.18409,-0.0227254,1.21358,0.000166756,1.25613,0.0307855,1.31092,0.0594897,1.37019,0.105911,1.41808,0.121485,1.44115,0.117423,1.45218,0.0933868,1.45607,0.0463161,1.45791,-0.0339594,1.46602,-0.130274,1.46908,-0.241086,1.4747,-0.378045,1.46451,-0.513278,1.44543,-0.670927,1.40325,-0.851036,1.32068,-1.03295,1.19655,-1.23548,1.04547,-1.47372,0.885715,-1.73211,0.729208,-1.97022,0.578014,-2.16176,0.449839,-2.34999,0.327145,-2.52632,0.230754,-2.63755,0.123558,-2.74137,0.0106719,-2.79144,-0.123728,-2.79368,-0.249131,-2.78287,-0.374671,-2.74353,-0.507758,-2.63196,-0.638701,-2.44837,-0.777181,-2.22884,-0.91024,-1.99134,-1.03044,-1.7728,-1.14539,-1.5389,-1.24701,-1.3012,-1.33306,-1.074,-1.39064,-0.817468,-1.43601,-0.568075,-1.46306,-0.330725,-1.46291,-0.101277,14 +1.18692,-0.0515609,1.18198,-0.0613829,1.19815,-0.0565169,1.21368,-0.035093,1.24368,-0.024739,1.27657,-0.00685311,1.33176,0.00820672,1.35958,0.00074483,1.37574,-0.0406315,1.36796,-0.117284,1.34918,-0.197676,1.3443,-0.284377,1.32639,-0.399419,1.31358,-0.523533,1.29327,-0.695227,1.26203,-0.877678,1.23156,-1.10846,1.16761,-1.33676,1.05701,-1.55193,0.89823,-1.74222,0.706181,-1.91312,0.519144,-2.05751,0.341575,-2.19228,0.166015,-2.26638,-0.0074818,-2.27594,-0.203793,-2.2369,-0.422735,-2.18622,-0.646204,-2.07072,-0.874109,-1.88738,-1.10198,-1.61431,-1.28251,-1.30008,-1.3846,-1.00757,-1.40918,-0.75123,-1.39401,-0.521049,-1.36782,-0.301334,-1.35152,-0.0557134,-1.33222,0.172044,-1.32683,0.373853,-1.33026,0.581053,-1.33971,0.782556,-1.35162,0.990337,-1.34457,1.21013,-1.31821,1.38866,-1.27737,1.5273,-1.2399,1.62124,14 +1.18692,-0.0145446,1.19176,-0.0119488,1.19815,-0.0193642,1.21368,-0.0103042,1.24368,0.0250725,1.28685,0.0182574,1.33176,0.0466412,1.38075,0.0401536,1.40747,-0.0136121,1.42023,-0.0482734,1.41098,-0.128338,1.40528,-0.229261,1.41743,-0.304692,1.41521,-0.387916,1.41734,-0.516341,1.41088,-0.634985,1.40905,-0.781109,1.38756,-0.949621,1.33164,-1.12183,1.23619,-1.29086,1.10089,-1.44522,0.940191,-1.63588,0.783674,-1.81432,0.629804,-1.95373,0.502115,-2.06393,0.385573,-2.12374,0.29502,-2.18622,0.198288,-2.20029,0.090682,-2.20965,-0.0338504,-2.15518,-0.157139,-2.13337,-0.29282,-2.08208,-0.416912,-2.00789,-0.497541,-1.87381,-0.569727,-1.71841,-0.643161,-1.5411,-0.713308,-1.38666,-0.771119,-1.23948,-0.840302,-1.09889,-0.913451,-0.951645,-0.98996,-0.779069,-1.04044,-0.592191,-1.08257,-0.399626,-1.1182,-0.230283,-1.13698,-0.064857,14 +-1.31213,0.133627,-1.31497,0.148685,-1.31419,0.153837,-1.32295,0.150797,-1.3264,0.174507,-1.34602,0.193977,-1.33215,0.251773,-1.31778,0.316185,-1.25895,0.37814,-1.19378,0.393584,-1.14232,0.398341,-1.08377,0.3632,-1.03043,0.331501,-0.993581,0.262986,-0.981346,0.18553,-0.970653,0.107403,-0.997989,0.00740905,-1.03196,-0.113406,-1.04444,-0.22976,-1.02085,-0.355987,-0.992304,-0.493235,-0.942881,-0.630523,-0.871489,-0.778969,-0.80587,-0.900862,-0.744775,-1.00414,-0.686011,-1.05729,-0.604846,-1.13352,-0.537949,-1.11525,-0.468433,-1.08177,-0.378755,-1.0735,-0.268547,-1.07995,-0.150858,-1.11656,-0.0369114,-1.10371,0.0830948,-1.11571,0.188937,-1.07427,0.304535,-1.05978,0.402587,-1.01045,0.4884,-0.98615,0.583414,-0.93894,0.680285,-0.91134,0.762809,-0.846128,0.830385,-0.777737,0.893245,-0.710662,0.924335,-0.644582,0.964421,-0.574313,14 +1.07994,-0.397296,1.08445,-0.395036,1.0906,-0.390623,1.10509,-0.382137,1.13323,-0.36094,1.17414,-0.333289,1.23779,-0.299491,1.2855,-0.26217,1.34401,-0.229767,1.36796,-0.200132,1.39038,-0.169953,1.41542,-0.146588,1.44776,-0.128745,1.48636,-0.116741,1.53109,-0.103458,1.581,-0.121043,1.64199,-0.111563,1.70009,-0.0979526,1.73758,-0.0863469,1.73109,-0.0980701,1.71085,-0.0898733,1.642,-0.127843,1.57726,-0.220261,1.5133,-0.325031,1.47792,-0.449807,1.4679,-0.572477,1.48417,-0.69624,1.48666,-0.83995,1.45021,-1.04954,1.39029,-1.24845,1.29134,-1.42586,1.15925,-1.64607,1.01872,-1.85462,0.857276,-1.99275,0.711184,-2.09053,0.563024,-2.18755,0.383873,-2.24664,0.201304,-2.26616,-0.0174844,-2.25891,-0.255578,-2.17501,-0.498416,-1.97211,-0.69944,-1.71863,-0.901278,-1.3586,-1.06517,-0.94591,-1.14558,-0.550051,14 +0.982712,0.713888,0.996659,0.704792,0.992855,0.723047,1.0064,0.733255,1.04287,0.734859,1.08193,0.746407,1.13328,0.764547,1.20086,0.802549,1.24877,0.837411,1.29476,0.821603,1.31831,0.744849,1.3443,0.624969,1.36686,0.466809,1.38473,0.290109,1.3967,0.0891609,1.379,-0.13529,1.34253,-0.409153,1.28336,-0.701901,1.16448,-1.01028,0.994826,-1.30702,0.789909,-1.55813,0.554216,-1.79805,0.307522,-2.01147,0.066611,-2.20057,-0.170098,-2.29221,-0.418143,-2.33386,-0.647715,-2.3158,-0.873574,-2.23268,-1.08242,-2.08074,-1.26886,-1.90065,-1.3828,-1.69312,-1.45013,-1.44358,-1.45137,-1.21097,-1.43472,-0.967047,-1.3777,-0.716433,-1.33237,-0.50959,-1.28534,-0.325136,-1.25271,-0.146163,-1.21933,0.0344336,-1.20069,0.20447,-1.16616,0.387158,-1.1142,0.58726,-1.05534,0.766647,-0.976715,0.937228,-0.879689,1.08752,14 +-2.16782,0.825043,-2.18308,0.828378,-2.17443,0.834452,-2.19151,0.844832,-2.21986,0.871814,-2.24753,0.909598,-2.27235,0.956831,-2.25964,0.973415,-2.22179,0.945489,-2.15573,0.876835,-2.06891,0.814127,-1.98798,0.735199,-1.93063,0.615741,-1.88803,0.520628,-1.88086,0.419467,-1.90624,0.292984,-1.9741,0.483554,-2.05067,0.335675,-2.08315,0.00917037,-2.07093,-0.178704,-1.99698,-0.380319,-1.87858,-0.565656,-1.73306,-0.811839,-1.60099,-0.950187,-1.46037,-1.11825,-1.30757,-1.28347,-1.15123,-1.45746,-0.981829,-1.6173,-0.819297,-1.72624,-0.656933,-1.77339,-0.469127,-1.78746,-0.270975,-1.78621,-0.0896846,-1.74737,0.0728778,-1.65085,0.208651,-1.54663,0.333239,-1.44485,0.421349,-1.34637,0.516172,-1.27951,0.592686,-1.1789,0.680285,-1.08609,0.753556,-0.966752,0.821141,-0.843974,0.866021,-0.697674,0.906643,-0.606943,0.930143,-0.477264,14 +-2.1095,0.627481,-2.08555,0.643027,-2.106,0.636447,-2.10272,0.646521,-2.16967,0.660142,-2.17582,0.683604,-2.19922,0.700471,-2.18556,0.671091,-2.11599,0.580756,-2.00934,0.448816,-1.90417,0.273617,-1.77462,0.115181,-1.67779,-0.0339594,-1.60344,-0.198111,-1.58099,-0.351188,-1.566,-0.449404,-1.55259,-0.617467,-1.52973,-0.732874,-1.45037,-0.914691,-1.29847,-1.11358,-1.1119,-1.3484,-0.884407,-1.57102,-0.656095,-1.74858,-0.441428,-1.85508,-0.245996,-1.90094,-0.0323795,-1.86524,0.145033,-1.81373,0.295741,-1.73064,0.452486,-1.58126,0.600334,-1.42341,0.745358,-1.25294,0.886335,-1.13216,0.997598,-0.935085,1.08137,-0.803546,1.16441,-0.673519,1.24268,-0.454571,1.31219,-0.257974,1.39604,-0.0928255,1.48022,0.14105,1.55124,0.338915,1.62531,0.521159,1.67825,0.680004,1.6908,0.792567,1.68474,0.874479,1.64205,0.917688,14 +-1.89554,1.17072,-1.89045,1.16203,-1.90071,1.18091,-1.91514,1.19182,-1.93875,1.23292,-1.96068,1.27367,-1.96936,1.3286,-1.95271,1.4072,-1.90434,1.48582,-1.83155,1.51194,-1.76003,1.46559,-1.68318,1.36897,-1.6474,1.2248,-1.62372,1.09016,-1.63268,0.92866,-1.66169,0.735567,-1.6857,0.498401,-1.70336,0.273728,-1.70111,0.0251358,-1.64847,-0.210943,-1.5664,-0.39649,-1.48088,-0.565656,-1.33627,-0.778969,-1.17031,-0.983093,-1.00498,-1.1672,-0.814655,-1.31579,-0.594156,-1.39267,-0.353903,-1.40678,-0.106629,-1.37181,0.144181,-1.28027,0.399958,-1.1586,0.613362,-1.02311,0.78645,-0.889138,0.898039,-0.729181,0.996912,-0.587631,1.0895,-0.454571,1.17155,-0.311727,1.23861,-0.22617,1.28607,-0.0589352,1.3474,0.123802,1.37489,0.306722,1.40176,0.481235,1.38266,0.637049,1.36643,0.711286,1.37616,0.820639,14 +-1.81777,0.91145,-1.80266,0.902529,-1.79321,0.908704,-1.82635,0.919198,-1.83837,0.958957,-1.85824,0.98493,-1.8649,1.0594,-1.8469,1.14434,-1.80916,1.21568,-1.71657,1.2634,-1.63649,1.27153,-1.59173,1.21743,-1.5665,1.13007,-1.54243,1.0495,-1.54999,0.901134,-1.59793,0.77837,-1.6635,0.587678,-1.66864,0.382102,-1.65333,0.136619,-1.63637,-0.114225,-1.5664,-0.364218,-1.48088,-0.614341,-1.37027,-0.7461,-1.28074,-0.867956,-1.1676,-1.08564,-1.02895,-1.25115,-0.89413,-1.37644,-0.743656,-1.58491,-0.545181,-1.67794,-0.334232,-1.69388,-0.0902596,-1.69312,0.165746,-1.66161,0.40645,-1.56345,0.592422,-1.42788,0.750612,-1.28896,0.869321,-1.14225,0.974618,-1.01045,1.06259,-0.866168,1.15664,-0.738897,1.25476,-0.588671,1.32853,-0.417139,1.38332,-0.221101,1.40984,0.00210122,1.40181,0.234184,1.38472,0.408232,14 +-2.01228,0.973215,-2.01727,0.964295,-2.01806,0.982956,-2.03363,0.993565,-2.0492,1.02125,-2.08366,1.06026,-2.09477,1.13632,-2.09031,1.15745,-2.04192,1.09407,-1.94658,0.987299,-1.8527,0.855741,-1.74416,0.680084,-1.67779,0.480374,-1.63391,0.249395,-1.57067,-0.00714873,-1.50223,-0.278069,-1.50821,-0.513278,-1.44869,-0.732874,-1.41456,-0.723588,-1.28636,-0.87182,-1.0999,-1.07413,-0.872676,-1.26294,-0.644725,-1.45276,-0.419332,-1.59183,-0.20261,-1.6237,0.0212496,-1.55816,0.220027,-1.45746,0.425658,-1.32577,0.616978,-1.19453,0.800627,-1.08937,0.945938,-0.907027,1.03919,-0.758386,1.11373,-0.551949,1.17306,-0.283248,1.21372,-0.0722974,1.24268,0.150578,1.23719,0.373586,1.25709,0.60051,1.2768,0.82107,1.31962,0.984195,1.33783,1.13783,1.36488,1.23664,1.31922,1.27205,1.28684,1.22597,1.24747,1.17242,14 +-1.69139,0.800348,-1.6954,0.815993,-1.69547,0.82205,-1.70791,0.83241,-1.72797,0.846908,-1.73531,0.884488,-1.73954,0.944037,-1.70935,1.01288,-1.66102,1.06705,-1.57018,1.13916,-1.51295,1.17453,-1.45969,1.18987,-1.43503,1.21129,-1.40013,1.22578,-1.43624,1.19012,-1.48096,1.06393,-1.56366,0.840598,-1.65709,0.598916,-1.73691,0.359653,-1.76916,0.0308185,-1.73386,-0.315775,-1.63296,-0.59809,-1.49499,-0.844708,-1.33595,-0.999582,-1.13509,-1.26504,-0.889614,-1.52584,-0.615591,-1.70038,-0.267254,-1.74687,0.0578062,-1.69402,0.344474,-1.59843,0.589364,-1.473,0.798956,-1.31905,0.944824,-1.22633,1.0712,-1.08598,1.20383,-0.859581,1.29054,-0.619627,1.34972,-0.405764,1.37751,-0.159469,1.40623,0.0877132,1.40302,0.312026,1.39345,0.521159,1.39256,0.733017,1.38266,0.883314,1.34874,0.9247,1.29896,0.929793,14 +-2.34287,-0.483703,-2.34888,-0.493905,-2.36019,-0.489626,-2.38893,-0.468872,-2.41062,-0.448083,-2.43196,-0.446259,-2.42903,-0.491774,-2.38663,-0.525027,-2.2853,-0.621519,-2.16616,-0.697161,-2.01744,-0.7798,-1.88639,-0.863029,-1.78902,-0.900246,-1.69487,-0.998162,-1.61205,-1.1631,-1.54472,-1.33457,-1.48601,-1.55478,-1.41398,-1.77038,-1.29512,-1.95017,-1.14153,-2.0807,-0.956377,-2.1713,-0.767459,-2.2683,-0.565366,-2.37303,-0.36412,-2.46375,-0.137586,-2.48789,0.0748233,-2.46307,0.305765,-2.42914,0.52311,-2.32986,0.748538,-2.19351,0.978659,-1.9961,1.19105,-1.78746,1.36675,-1.56817,1.50426,-1.31822,1.62129,-1.01161,1.69648,-0.702149,1.76916,-0.399552,1.78111,-0.271384,1.8591,-0.146163,1.95169,0.154413,2.06089,0.406167,2.16317,0.588217,2.17591,0.680004,2.10768,0.714808,2.0296,0.686176,1.94226,0.66296,14 +-1.97337,-0.273819,-1.96846,-0.259119,-1.96914,-0.291621,-1.96453,-0.344927,-1.94882,-0.373366,-1.94023,-0.408621,-1.93803,-0.41485,-1.91042,-0.419918,-1.86206,-0.553942,-1.80019,-0.600535,-1.69829,-0.655076,-1.63239,-0.711491,-1.50584,-0.873173,-1.41033,-0.998162,-1.30185,-1.13558,-1.18326,-1.32026,-1.09777,-1.49526,-0.997242,-1.67746,-0.853384,-1.85459,-0.694926,-2.01622,-0.477941,-2.13902,-0.287878,-2.28448,-0.0665896,-2.43877,0.132842,-2.54605,0.339499,-2.58572,0.535601,-2.56004,0.734236,-2.51016,0.945329,-2.39465,1.16515,-2.19351,1.40145,-1.96429,1.60333,-1.72457,1.78162,-1.47473,1.88432,-1.24162,1.95746,-0.952148,2.00193,-0.702149,2.0372,-0.413336,2.06239,-0.204222,2.08137,0.0272137,2.08112,0.341093,2.07943,0.527139,2.03338,0.668653,1.98238,0.759524,1.9174,0.792567,1.82622,0.748925,1.73641,0.711484,14 +-1.83723,-0.125647,-1.85142,-0.0984318,-1.85184,-0.118367,-1.8362,-0.0846708,-1.87854,-0.0745505,-1.91974,-0.0821846,-1.9067,-0.0559247,-1.92098,-0.117595,-1.86206,-0.175729,-1.80019,-0.269142,-1.72916,-0.350123,-1.66285,-0.422106,-1.58674,-0.534786,-1.50176,-0.577779,-1.43624,-0.695227,-1.35339,-0.877678,-1.29746,-1.0787,-1.18242,-1.30578,-1.02055,-1.5041,-0.827715,-1.72606,-0.5856,-1.89695,-0.369754,-2.0737,-0.134578,-2.24155,0.0997265,-2.3651,0.328625,-2.42266,0.578482,-2.43075,0.80923,-2.36442,1.04278,-2.21652,1.29671,-1.98406,1.53496,-1.67794,1.74814,-1.34728,1.89079,-1.02311,1.92651,-0.689923,1.95746,-0.417015,1.9921,-0.129557,2.01805,0.150578,2.04368,0.400463,2.03506,0.547172,2.02567,0.607722,1.98674,0.674999,1.96846,0.68203,1.92706,0.626991,1.86299,0.58521,1.79084,0.54804,1.72781,0.468861,14 +-2.00252,-0.187412,-1.98798,-0.209685,-1.9887,-0.229771,-1.99413,-0.258193,-2.00903,-0.236411,-2.02217,-0.245376,-2.03206,-0.23536,-1.9845,-0.248995,-1.92551,-0.243248,-1.84203,-0.21391,-1.74976,-0.253122,-1.69332,-0.311934,-1.65755,-0.358839,-1.64406,-0.415039,-1.60168,-0.475023,-1.65108,-0.535071,-1.74115,-0.632314,-1.76129,-0.701901,-1.77272,-0.771346,-1.75711,-0.83958,-1.69799,-0.848224,-1.58615,-0.90624,-1.46099,-1.00906,-1.33595,-1.11472,-1.23268,-1.18347,-1.11466,-1.23502,-0.990558,-1.27926,-0.873574,-1.29337,-0.753489,-1.30736,-0.623513,-1.29621,-0.480245,-1.28439,-0.336509,-1.30344,-0.184644,-1.28763,-0.059523,-1.24948,0.070703,-1.18879,0.180115,-1.14225,0.271299,-1.07761,0.349497,-1.01282,0.426259,-0.952246,0.504235,-0.91134,0.586607,-0.846128,0.646042,-0.764455,0.711956,-0.684742,0.747468,-0.606943,0.792897,-0.537946,14 +-2.19703,-0.718282,-2.18308,-0.703973,-2.23311,-0.712328,-2.16191,-0.667183,-2.28012,-0.684661,-2.28853,-0.634561,-2.3141,-0.632775,-2.28082,-0.590784,-2.22179,-0.5945,-2.14524,-0.572919,-2.03804,-0.558016,-1.88639,-0.504779,-1.91045,-0.534786,-1.83716,-0.523533,-1.83949,-0.5576,-1.79993,-0.577874,-1.86319,-0.662073,-1.92331,-0.639954,-1.96377,-0.723588,-1.96229,-0.742862,-1.91325,-0.76758,-1.85518,-0.841374,-1.78974,-0.926917,-1.72249,-0.999582,-1.63381,-1.10198,-1.57549,-1.13806,-1.51546,-1.21447,-1.46903,-1.26098,-1.42228,-1.25898,-1.369,-1.29621,-1.29363,-1.28439,-1.17716,-1.2879,-1.09249,-1.25698,-0.955993,-1.27921,-0.835792,-1.26033,-0.710171,-1.23856,-0.61014,-1.2254,-0.511841,-1.22617,-0.415008,-1.23224,-0.320441,-1.23395,-0.229486,-1.24825,-0.128066,-1.24157,-0.0493268,-1.20308,0.0312718,-1.19696,0.115313,-1.16871,14 +-1.76916,-0.162717,-1.76368,-0.135534,-1.79321,-0.143117,-1.82635,-0.10946,-1.83837,-0.037165,-1.88902,-0.0194355,-1.93803,0.00820672,-1.89981,0.0270363,-1.78799,0.0539072,-1.69565,-0.0206574,-1.56442,0.0518321,-1.48002,-0.0363571,-1.43503,-0.169326,-1.36966,-0.26589,-1.35354,-0.36498,-1.33211,-0.420848,-1.33072,-0.483519,-1.29823,-0.562487,-1.21154,-0.771346,-1.06914,-0.952384,-0.89658,-1.18704,-0.732327,-1.4251,-0.576736,-1.66637,-0.441428,-1.8715,-0.311076,-2.03132,-0.203793,-2.15606,-0.0585123,-2.26724,0.100836,-2.32986,0.28805,-2.32241,0.489086,-2.28238,0.700829,-2.18051,0.875384,-2.09769,1.03984,-1.97724,1.19344,-1.81435,1.32207,-1.63252,1.44371,-1.45864,1.55601,-1.27915,1.66461,-1.10613,1.75754,-0.912272,1.83852,-0.736532,1.90355,-0.497574,1.95474,-0.221101,1.98084,0.0150331,1.9677,0.234184,1.93366,0.359707,14 +0.22425,1.08432,0.226132,1.07549,0.240113,1.0819,0.236535,1.09267,0.249789,1.1333,0.28285,1.17323,0.318436,1.23889,0.354255,1.30203,0.412848,1.39128,0.458276,1.44287,0.494659,1.49331,0.531547,1.50676,0.567748,1.49553,0.602103,1.51054,0.631567,1.53416,0.656027,1.59218,0.676954,1.65894,0.692933,1.72935,0.710772,1.77741,0.693056,1.78777,0.670254,1.76558,0.647822,1.70446,0.602275,1.66955,0.574592,1.58341,0.55632,1.52312,0.535601,1.4474,0.541435,1.40923,0.544717,1.34636,0.54023,1.27061,0.533608,1.20119,0.511366,1.08966,0.471457,0.985775,0.417037,0.888634,0.378495,0.75735,0.336768,0.657665,0.294983,0.549435,0.261942,0.4945,0.210545,0.467165,0.158168,0.434405,0.115059,0.406167,0.0487462,0.387158,-0.00828389,0.375209,-0.0765506,0.339001,-0.145594,0.309516,-0.210663,0.274763,14 +0.467318,1.25719,0.460215,1.23618,0.47472,1.25516,0.483258,1.25382,0.490723,1.25783,0.508267,1.32389,0.569149,1.37989,0.608226,1.48607,0.666782,1.53986,0.709211,1.62241,0.731471,1.65965,0.775364,1.64454,0.820645,1.61734,0.856218,1.63257,0.879699,1.658,0.921845,1.7492,0.943161,1.80773,1.00553,1.91519,1.02121,1.93672,1.01898,1.93281,0.981234,1.92694,0.92852,2.01254,0.885715,1.94898,0.839631,1.87957,0.784016,1.75133,0.749896,1.62513,0.734236,1.5388,0.728818,1.44354,0.726602,1.33507,0.722742,1.23301,0.711947,1.13686,0.68979,1.03246,0.670371,0.934581,0.643349,0.816816,0.622496,0.714924,0.60128,0.631963,0.580756,0.56172,0.553232,0.507197,0.52797,0.487742,0.494942,0.459945,0.456816,0.440781,0.406429,0.401715,0.349425,0.377908,0.278857,0.334626,0.218237,0.299025,14 +0.370091,0.874434,0.382204,0.865427,0.38678,0.871551,0.394468,0.881988,0.410429,0.921626,0.436553,0.959819,0.464694,1.02096,0.523588,1.09175,0.571598,1.14811,0.604664,1.22201,0.638801,1.2577,0.673782,1.27255,0.709362,1.25188,0.744399,1.26643,0.78669,1.28643,0.81554,1.32093,0.843376,1.37626,0.87817,1.40416,0.889848,1.42693,0.89823,1.41705,0.873575,1.36221,0.834914,1.26665,0.783674,1.20945,0.751304,1.12279,0.718992,1.01767,0.696322,0.930339,0.691422,0.858529,0.696297,0.795763,0.704665,0.738897,0.70048,0.676257,0.700829,0.618029,0.678896,0.549701,0.64925,0.459484,0.622968,0.385717,0.59295,0.328455,0.563024,0.246831,0.533874,0.212329,0.50693,0.18717,0.463253,0.181082,0.430079,0.177581,0.373342,0.172663,0.323524,0.189663,0.258804,0.183539,0.190401,0.171434,0.123871,0.153504,14 +0.22425,1.08432,0.226132,1.07549,0.240113,1.0819,0.236535,1.09267,0.249789,1.1333,0.28285,1.17323,0.318436,1.23889,0.354255,1.30203,0.412848,1.39128,0.458276,1.44287,0.494659,1.49331,0.531547,1.50676,0.567748,1.49553,0.602103,1.51054,0.631567,1.53416,0.656027,1.59218,0.676954,1.65894,0.692933,1.72935,0.710772,1.77741,0.693056,1.78777,0.670254,1.76558,0.647822,1.70446,0.602275,1.66955,0.574592,1.58341,0.55632,1.52312,0.535601,1.4474,0.541435,1.40923,0.544717,1.34636,0.54023,1.27061,0.533608,1.20119,0.511366,1.08966,0.471457,0.985775,0.417037,0.888634,0.378495,0.75735,0.336768,0.657665,0.294983,0.549435,0.261942,0.4945,0.210545,0.467165,0.158168,0.434405,0.115059,0.406167,0.0487462,0.387158,-0.00828389,0.375209,-0.0765506,0.339001,-0.145594,0.309516,-0.210663,0.274763,14 +0.467318,1.25719,0.460215,1.23618,0.47472,1.25516,0.483258,1.25382,0.490723,1.25783,0.508267,1.32389,0.569149,1.37989,0.608226,1.48607,0.666782,1.53986,0.709211,1.62241,0.731471,1.65965,0.775364,1.64454,0.820645,1.61734,0.856218,1.63257,0.879699,1.658,0.921845,1.7492,0.943161,1.80773,1.00553,1.91519,1.02121,1.93672,1.01898,1.93281,0.981234,1.92694,0.92852,2.01254,0.885715,1.94898,0.839631,1.87957,0.784016,1.75133,0.749896,1.62513,0.734236,1.5388,0.728818,1.44354,0.726602,1.33507,0.722742,1.23301,0.711947,1.13686,0.68979,1.03246,0.670371,0.934581,0.643349,0.816816,0.622496,0.714924,0.60128,0.631963,0.580756,0.56172,0.553232,0.507197,0.52797,0.487742,0.494942,0.459945,0.456816,0.440781,0.406429,0.401715,0.349425,0.377908,0.278857,0.334626,0.218237,0.299025,14 +0.370091,0.874434,0.382204,0.865427,0.38678,0.871551,0.394468,0.881988,0.410429,0.921626,0.436553,0.959819,0.464694,1.02096,0.523588,1.09175,0.571598,1.14811,0.604664,1.22201,0.638801,1.2577,0.673782,1.27255,0.709362,1.25188,0.744399,1.26643,0.78669,1.28643,0.81554,1.32093,0.843376,1.37626,0.87817,1.40416,0.889848,1.42693,0.89823,1.41705,0.873575,1.36221,0.834914,1.26665,0.783674,1.20945,0.751304,1.12279,0.718992,1.01767,0.696322,0.930339,0.691422,0.858529,0.696297,0.795763,0.704665,0.738897,0.70048,0.676257,0.700829,0.618029,0.678896,0.549701,0.64925,0.459484,0.622968,0.385717,0.59295,0.328455,0.563024,0.246831,0.533874,0.212329,0.50693,0.18717,0.463253,0.181082,0.430079,0.177581,0.373342,0.172663,0.323524,0.189663,0.258804,0.183539,0.190401,0.171434,0.123871,0.153504,14 diff --git a/data/low-res-spect.arff b/data/low-res-spect.arff new file mode 100755 index 0000000..7a90375 --- /dev/null +++ b/data/low-res-spect.arff @@ -0,0 +1,634 @@ +@relation low-res-spect +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'f35' real +@attribute 'f36' real +@attribute 'f37' real +@attribute 'f38' real +@attribute 'f39' real +@attribute 'f40' real +@attribute 'f41' real +@attribute 'f42' real +@attribute 'f43' real +@attribute 'f44' real +@attribute 'f45' real +@attribute 'f46' real +@attribute 'f47' real +@attribute 'f48' real +@attribute 'f49' real +@attribute 'f50' real +@attribute 'f51' real +@attribute 'f52' real +@attribute 'f53' real +@attribute 'f54' real +@attribute 'f55' real +@attribute 'f56' real +@attribute 'f57' real +@attribute 'f58' real +@attribute 'f59' real +@attribute 'f60' real +@attribute 'f61' real +@attribute 'f62' real +@attribute 'f63' real +@attribute 'f64' real +@attribute 'f65' real +@attribute 'f66' real +@attribute 'f67' real +@attribute 'f68' real +@attribute 'f69' real +@attribute 'f70' real +@attribute 'f71' real +@attribute 'f72' real +@attribute 'f73' real +@attribute 'f74' real +@attribute 'f75' real +@attribute 'f76' real +@attribute 'f77' real +@attribute 'f78' real +@attribute 'f79' real +@attribute 'f80' real +@attribute 'f81' real +@attribute 'f82' real +@attribute 'f83' real +@attribute 'f84' real +@attribute 'f85' real +@attribute 'f86' real +@attribute 'f87' real +@attribute 'f88' real +@attribute 'f89' real +@attribute 'f90' real +@attribute 'f91' real +@attribute 'f92' real +@attribute 'f93' real +@attribute 'f94' real +@attribute 'f95' real +@attribute 'f96' real +@attribute 'f97' real +@attribute 'f98' real +@attribute 'f99' real +@attribute 'f100' real +@attribute 'clase' {0,1,2,3,4,5,6,7,8} +@data +-2.04314,-1.22567,-0.384958,2.82687,2.95613,3.55937,3.52282,-1.5304,-1.45892,-1.70137,-1.61304,-1.50692,-1.548,-1.82598,-1.56338,-1.35962,-0.388811,0.156214,0.287402,0.149718,-0.0101016,0.221488,0.442313,0.473918,0.563308,0.439703,0.416919,1.07906,1.10878,0.828432,0.848704,1.40212,0.716229,1.56178,2.71385,2.42198,1.56385,1.9307,1.50695,1.41677,1.34239,1.50717,0.993029,0.881384,0.632657,1.5704,1.25626,1.35538,0.863862,1.32889,1.1009,0.393365,1.0909,1.36464,1.95706,1.51487,1.04436,1.31754,1.40894,0.616702,0.684794,0.069301,-0.20854,0.0927415,0.0487721,0.166737,-0.269044,-0.0657265,0.182655,0.213417,-0.15954,0.128336,0.866771,0.224591,0.542503,0.450039,0.548476,0.460136,0.534045,0.0688859,0.32357,0.468123,-0.0397928,0.528557,0.694651,-0.308089,0.143845,0.53164,0.0124877,-0.153352,0.146454,0.482139,0.458553,-0.259704,-0.11826,0.377746,-0.108671,0.119052,0.0750114,0.379007,1 +-2.0317,-1.2387,-0.281316,0.393537,0.600883,-0.187845,0.426303,-0.8868,-0.860771,-0.903584,-1.06035,-1.28463,-1.46059,-1.90609,-2.14829,-2.43805,-2.66239,-2.69865,-2.63975,-2.69839,-2.62543,-2.56927,-2.67044,-2.75345,-2.71548,-2.54627,-2.41975,-2.56614,-2.82794,-2.82164,-2.57867,-2.27417,-2.08389,-2.20233,-2.29489,-2.61966,-2.87725,-2.88532,-2.63271,-2.19304,-1.60012,-1.08466,-0.575364,-0.196939,0.550032,1.32512,0.961101,0.447633,-0.127202,-0.356603,-0.545745,-2.56471,-2.80804,-2.83873,-2.79325,-2.18983,-0.495462,0.468922,0.599042,0.577836,0.724773,0.815754,0.961134,1.21537,1.85085,2.87696,3.45942,3.19794,3.00598,3.01978,3.06579,3.22709,3.17914,3.34657,3.63006,3.55256,3.72768,4.1457,4.60127,4.87886,4.65924,4.45689,4.38834,4.33146,4.39331,4.29288,4.37279,4.56943,4.60139,4.70098,4.61312,4.73318,4.81532,4.67285,4.77616,4.89076,4.92453,4.92275,5.13246,5.35892,7 +-2.02581,-1.22861,1.42578,-0.649072,-1.04558,-1.20491,-0.196351,-1.69807,-1.83324,-1.95455,-2.08216,-2.2525,-2.46919,-2.7028,-2.981,-3.09175,-2.98535,-2.73646,-2.52839,-2.42073,-2.28097,-2.1761,-2.10615,-2.05568,-2.07857,-2.00514,-1.97366,-2.08527,-2.18121,-2.25179,-2.3243,-2.41887,-2.3416,-2.28539,-2.29688,-2.321,-2.28093,-2.04054,-1.57462,-1.11438,-0.733832,-0.2526,0.124497,0.32364,0.380011,0.287346,0.286007,0.270879,0.173226,-0.00372621,-0.249991,-2.2105,-2.40081,-2.47876,-2.49747,-1.85294,-0.687748,0.107601,0.605265,1.11179,1.43391,1.76468,2.16725,2.71036,3.12478,3.60169,3.85847,4.05672,4.17794,4.24938,4.2248,4.34278,4.2419,4.40194,4.56789,4.67866,4.68238,4.73486,4.65856,4.79456,4.77874,4.82625,4.84958,4.78542,4.88648,4.75562,4.72179,4.68244,4.80871,4.83448,4.75736,4.68404,4.68458,4.55769,4.51452,4.44953,4.35238,4.0162,3.68698,3.68113,8 +-1.98285,-1.34817,0.582174,-1.14884,-1.11002,-1.09127,-1.16803,2.45081,2.27957,2.02617,1.90758,1.86798,1.91511,1.81781,1.81794,1.53906,1.16085,0.825805,0.403829,0.217709,0.132165,0.0289038,-0.0427213,-0.101981,-0.201026,-0.343252,-0.431221,-0.484994,-0.593077,-0.75282,-0.972023,-0.958262,-1.02836,-1.23315,-1.42274,-1.34634,-1.62337,-1.75977,-1.52115,-1.37931,-1.31748,-1.26335,-0.975338,-1.04546,-1.0471,-0.997437,-0.982558,-0.745756,-0.874425,-0.911245,-0.798997,-0.466042,-0.680859,-1.08211,-1.39003,-1.90368,-1.53417,-1.07186,-0.961863,-1.00783,-0.98923,-0.969728,-0.946247,-0.993215,-1.04479,-1.04011,-1.08824,-1.18255,-1.20147,-1.23721,-1.26754,-1.30868,-1.31499,-1.29474,-1.30061,-1.25561,-1.22091,-1.20488,-1.13343,-1.12454,-1.10917,-1.17318,-1.05084,-1.0028,-1.09112,-0.970598,-0.924919,-0.93409,-0.912524,-0.848195,-0.836494,-0.815865,-0.819766,-0.80431,-0.759804,-0.741624,-0.702593,-0.720995,-0.736897,-0.765456,0 +-1.9437,-1.22276,-0.328919,0.936384,0.646665,1.57639,1.51246,0.598596,0.568459,0.61275,0.941573,0.816164,0.685678,0.846228,0.954455,0.281456,0.0478101,0.0804513,-0.0982053,-0.413221,-0.534913,-0.309524,-0.499129,-0.422741,-0.249507,-0.137983,-0.100652,-0.344137,-0.363757,0.0358771,-0.0357847,-0.221677,0.320562,0.173376,-0.0846633,0.76133,0.137777,-0.218872,0.555764,0.793868,0.112264,0.560697,-0.53911,-0.362084,0.235827,-0.422466,-0.421288,0.265873,-0.377276,-0.0714953,0.00263915,-0.246323,0.0884543,0.19347,0.03297,-0.766441,-0.355982,0.407431,0.0381083,-0.0918537,0.56662,0.0328819,0.0426682,-0.142637,-0.0514957,0.418548,-0.21566,-0.508862,-0.0683018,-0.507315,-0.273181,-0.488284,-0.397242,-0.623645,-0.583802,-0.56996,-0.504442,-0.491733,-0.364781,-0.52694,-0.474997,-0.435271,-0.491362,-0.379814,-0.625654,-0.51361,-0.476961,-0.195188,-0.386047,-0.374561,-0.356418,-0.682775,-0.409939,-0.436791,-0.413877,-0.53427,-0.330041,-0.665767,-0.477195,-0.358985,3 +-1.93747,0.254005,-0.168634,-0.590479,-0.504675,-0.238983,-0.285701,0.624859,0.567768,0.742691,0.913414,1.19432,1.34575,1.61205,2.07821,2.17327,1.86261,1.23423,1.01113,0.830902,0.738665,0.628095,0.40498,0.385169,0.634419,0.231015,0.402696,0.601497,1.04359,0.548281,0.937943,0.476316,0.181331,0.785962,-0.158252,-0.00721099,-0.66597,-0.775087,-1.55007,-1.70013,-1.16042,-1.74171,-1.19824,-1.73995,-1.50823,-1.82642,-1.54153,-1.68505,-1.88639,-1.75979,-1.12728,0.429378,0.623779,0.4269,-0.222339,-1.26407,-1.48189,-1.60648,-1.4112,-1.55318,-1.7635,-1.72876,-1.28845,-1.27964,-1.44933,-1.4611,-1.10406,-1.52151,-1.37156,-1.37751,-1.32134,-1.32857,-1.2369,-1.10329,-1.2013,-1.25316,-1.25397,-1.11274,-0.98726,-1.13717,-0.995076,-0.861815,-1.04239,-1.03322,-0.964268,-1.04904,-0.897485,-0.747533,-0.837858,-0.628439,-0.942225,-1.00451,-0.756938,-0.753942,-0.655603,-0.720494,-0.773787,-0.755824,-0.57495,-0.770686,3 +-1.93539,-1.16266,-0.120428,-0.621499,-0.613196,-0.571374,-0.511867,0.157815,0.148579,0.0797157,0.0974842,0.0957228,-0.0359295,0.0342929,-0.101642,-0.0461239,0.194207,0.168571,0.323605,0.43878,0.465964,0.498072,0.456136,0.414925,0.454301,0.382282,0.512006,0.503143,0.282345,0.487722,0.548333,0.509192,0.227315,0.171033,0.518684,0.961875,0.435959,0.480025,0.298093,0.25641,0.199652,0.0990319,0.554419,-0.0117542,0.0490056,-0.106157,-0.260958,0.000830329,-0.184035,-0.210125,-0.0377505,0.107139,0.416887,0.498195,0.588445,0.230997,0.146943,0.0442198,0.0718309,0.0347652,-0.156413,-0.171373,-0.268903,-0.281862,-0.440074,-0.498593,-0.33308,-0.470718,-0.624389,-0.551795,-0.578149,-0.604409,-0.696954,-0.599555,-0.561181,-0.62958,-0.60563,-0.509534,-0.612948,-0.63799,-0.500385,-0.59832,-0.607545,-0.562705,-0.545748,-0.528792,-0.59414,-0.521359,-0.498089,-0.468073,-0.4539,-0.48866,-0.512649,-0.397238,-0.504259,-0.495227,-0.563238,-0.489182,-0.419625,-0.475097,1 +-1.93366,-1.15383,-0.141518,-0.190669,0.0243649,-0.551488,-0.581671,-1.42052,-1.35914,-1.50152,-1.61842,-1.75346,-1.71871,-1.71446,-1.74795,-1.29295,-0.739151,-0.0490298,0.40158,0.712517,1.01962,1.19388,1.3118,1.20572,1.14815,1.20482,1.26299,1.11241,1.03652,1.21704,1.30367,1.54339,1.49561,1.28841,1.35596,1.68434,1.65196,1.75729,0.935256,0.790657,0.660184,0.86737,0.837693,0.298586,0.371967,0.246105,0.576685,0.333614,0.115137,0.312304,0.198802,1.25761,1.39834,1.64615,1.23605,1.32066,1.12273,0.290921,0.422015,0.409107,0.256445,0.252203,0.00536505,0.0482207,0.0209335,-0.0548087,-0.19593,-0.171409,0.0341135,0.0643179,-0.00118397,0.155703,0.113168,0.101117,0.100629,0.180733,0.281746,0.225906,0.033704,0.0541276,0.111902,0.131208,0.189299,0.00857315,0.0492386,0.081716,0.100599,0.0876329,-0.131314,-0.160247,-0.0292953,-0.142909,-0.210068,-0.108389,-0.136908,-0.116839,-0.128181,-0.230735,-0.244751,-0.0857198,1 +-1.92569,-1.13914,-0.125249,-0.5181,-0.570805,-0.446372,-0.539789,2.23707,2.2374,2.13648,2.14674,2.21589,2.15544,2.10201,2.00418,1.65384,1.11357,1.02304,0.55475,0.326268,0.27003,-0.0319662,-0.0596418,-0.124469,-0.339863,-0.3387,-0.598877,-0.485387,-0.570866,-0.791722,-0.859725,-1.05582,-1.16282,-1.35734,-1.52911,-1.77351,-1.85726,-1.39004,-1.33723,-1.19864,-2.34262,-1.48022,-0.911261,-0.760095,-1.01407,-0.878987,-0.848945,-0.834259,-1.08978,-1.06011,-0.821419,-0.624155,-0.750953,-1.03617,-1.49923,-1.78972,-1.36914,-1.30388,-1.29505,-1.12355,-0.968791,-0.839011,-1.05744,-1.06202,-1.27983,-1.19281,-1.07285,-1.27121,-1.24021,-1.33941,-1.36942,-1.41165,-1.05912,-1.43955,-1.45869,-1.24175,-1.35259,-1.2343,-1.24755,-1.10495,-1.25879,-1.31226,-1.03009,-0.966801,-0.947069,-1.08284,-1.12556,-0.95515,-1.03562,-0.912302,-0.76599,-0.902068,-0.958042,-0.84404,-0.704898,-0.749047,-0.871614,-0.696532,-0.741427,-0.938761,0 +-1.9101,-1.56043,-0.174057,-0.556013,-0.540283,-0.463418,-0.444855,-0.927324,-0.886866,-0.81962,-0.612686,-0.358292,-0.106591,0.0886714,0.608546,0.801331,0.89696,1.11375,0.946385,0.825334,0.835466,0.781683,0.847683,0.851668,0.930629,0.864243,0.850064,0.897244,0.933664,1.127,1.2366,1.35744,1.25379,1.44969,1.37529,0.860717,0.139592,0.119787,-0.549587,-0.632119,-1.33934,-1.4354,-1.28495,-1.60188,-1.47407,-1.25774,-1.3804,-1.17923,-1.25677,-1.25322,-1.40366,0.963886,1.0548,1.12396,0.80539,0.014421,-1.04003,-1.39048,-1.16957,-1.03831,-1.10879,-0.89662,-0.789615,-0.857244,-0.718502,-0.474892,-0.428422,-0.345458,-0.380994,-0.205585,-0.198439,-0.207555,-0.379816,-0.286571,-0.227459,-0.131385,-0.168936,-0.037438,-0.0600989,-0.0803234,-0.0678882,-0.164541,-0.104407,-0.171002,-0.152366,-0.201378,-0.238968,-0.198324,-0.205851,-0.240641,-0.217015,-0.260244,-0.269462,-0.244826,-0.21278,-0.178457,-0.214582,-0.22091,-0.155288,-0.192237,3 +-1.90802,0.339022,0.353196,-1.26257,-1.18802,-1.02877,-1.02842,0.710542,0.782694,0.841082,0.892204,0.924626,0.901577,0.843646,0.750079,0.716221,0.480204,0.246229,0.0825214,0.0437746,0.128445,0.0852449,0.00942746,-0.0269334,-0.146335,-0.199398,-0.288072,-0.287721,-0.257145,-0.308847,-0.333596,-0.386572,-0.540157,-0.536367,-0.746703,-0.580425,-0.647909,-0.717198,-0.654202,-0.55936,-0.00876554,-0.148784,-0.104181,-0.231993,0.0404942,0.0363468,0.0979555,0.341475,0.233946,0.0141364,0.101848,-0.184761,-0.219341,-0.358234,-0.732189,-0.728046,-0.505652,-0.101264,0.0127853,0.0490277,-0.0837023,-0.149908,-0.15394,-0.270198,-0.299826,-0.327012,-0.433474,-0.392718,-0.627508,-0.694995,-0.659893,-0.609619,-0.607577,-0.654659,-0.573692,-0.643598,-0.594538,-0.542012,-0.633009,-0.579161,-0.486585,-0.467082,-0.467613,-0.461681,-0.486529,-0.484702,-0.552313,-0.489924,-0.458192,-0.46328,-0.499518,-0.570351,-0.495341,-0.574021,-0.578643,-0.553382,-0.519343,-0.52583,-0.520162,-0.472152,0 +-1.90455,-1.09531,4.31211,-1.1385,-1.40506,-1.34127,-1.39699,2.73999,2.30792,1.98518,1.9523,1.89788,1.89387,1.87501,1.69433,1.45482,0.960018,0.648652,0.374327,0.231098,0.0979918,-0.0632269,-0.155445,-0.112867,-0.210182,-0.40192,-0.454324,-0.590836,-0.782972,-0.798522,-0.890892,-1.08729,-1.30787,-1.22543,-1.56699,-1.69203,-1.68006,-1.69574,-1.70667,-1.54262,-1.29766,-1.11753,-1.04037,-0.962942,-0.906649,-0.875737,-0.859491,-0.83199,-0.826111,-0.789674,-0.797061,-0.427519,-0.810332,-1.19467,-1.63746,-1.97564,-1.51209,-1.22174,-1.05182,-0.925034,-0.887642,-0.894184,-0.868317,-0.893698,-0.957724,-0.95778,-0.999129,-1.10714,-1.13888,-1.14487,-1.1857,-1.21501,-1.20505,-1.21295,-1.21936,-1.18723,-1.17414,-1.14347,-1.10964,-1.08562,-1.08541,-1.05684,-1.02973,-1.03043,-1.02201,-0.981225,-0.940029,-0.89843,-0.87787,-0.844279,-0.816831,-0.799807,-0.788924,-0.755878,-0.756492,-0.7507,-0.728517,-0.701325,-0.708786,-0.778604,0 +-1.89589,-1.12049,-0.0601707,-0.709389,-0.535196,-0.702058,-0.749202,0.331638,0.593938,0.619244,0.803062,0.846459,0.818013,0.906712,0.849713,0.661102,0.479019,0.273084,-0.00833483,-0.210852,-0.213934,-0.210084,-0.263189,-0.198841,-0.0614823,-0.00894363,0.0249829,0.224143,0.367698,0.362253,0.573332,0.469696,0.492869,0.685762,0.459557,0.627494,0.451706,0.310388,0.316256,0.0860655,-0.109791,-0.458864,-0.651544,-0.572175,-0.854843,-0.80234,-0.787877,-0.809608,-0.809737,-0.793047,-0.636945,0.128531,0.190349,0.611547,0.559954,0.365567,-0.221452,-0.361851,-0.523046,-0.514024,-0.440548,-0.327913,-0.382681,-0.360095,-0.23833,-0.327195,-0.4069,-0.411329,-0.536564,-0.61076,-0.620575,-0.60664,-0.710709,-0.630232,-0.563511,-0.662338,-0.724188,-0.698933,-0.607649,-0.660978,-0.740253,-0.704976,-0.640381,-0.62176,-0.67757,-0.656481,-0.564399,-0.437566,-0.548333,-0.477951,-0.584158,-0.35399,-0.385761,-0.491357,-0.408317,-0.322741,-0.488872,-0.405352,-0.389057,-0.547867,3 +-1.88377,-1.34347,0.208578,-1.01614,-1.06932,-0.861152,-0.964199,2.10349,2.04952,1.92548,1.83104,1.78131,1.87194,1.78787,1.71091,1.43893,1.04617,0.760587,0.363836,0.164091,0.085452,-0.002624,-0.148414,-0.236496,-0.253201,-0.269524,-0.387512,-0.422553,-0.438165,-0.640408,-0.81595,-0.78339,-0.818621,-1.18497,-1.24937,-1.21727,-1.32909,-1.4029,-1.25645,-1.17385,-0.799295,-0.728798,-0.733121,-0.667909,-0.761563,-0.639325,-0.487585,-0.667707,-0.611113,-0.676192,-0.577296,-0.706302,-0.537663,-0.836442,-1.19791,-1.40489,-1.05266,-0.953,-0.845423,-0.726514,-0.763343,-0.902638,-0.825094,-0.80025,-0.888894,-0.878889,-1.01788,-1.05395,-1.16923,-1.34697,-1.18578,-1.30705,-1.30482,-1.19959,-1.16471,-1.3317,-1.23915,-1.12413,-1.27346,-1.13278,-1.21364,-1.16183,-1.05809,-1.08269,-1.07747,-1.08598,-0.987644,-0.998466,-0.975999,-0.88465,-0.865623,-0.858166,-0.842466,-0.718624,-0.880126,-0.718601,-0.784413,-0.788137,-0.742284,-0.758761,0 +-1.85051,-1.19353,-0.128864,-0.290621,-0.458893,-0.432167,-0.263363,-0.921854,-1.00325,-1.00245,-0.936143,-0.815409,-0.657707,-0.4494,-0.0867836,0.326967,0.62682,0.745766,0.679604,0.572776,0.442078,0.436949,0.486448,0.577193,0.548792,0.637322,0.727421,0.698545,0.761658,0.796114,0.768639,0.705646,0.802956,0.812889,0.780343,0.593987,0.350696,0.0805357,-0.381612,-0.484084,-0.647838,-0.807721,-0.599108,-0.824636,-0.980324,-0.873303,-0.939164,-0.833922,-0.690274,-0.742119,-0.682956,0.631077,0.604436,0.669453,0.487352,-0.0297498,-0.6268,-0.828581,-0.709211,-0.491322,-0.45261,-0.314271,-0.245046,-0.224376,-0.370286,-0.114462,0.0332202,0.190509,0.142825,0.272083,0.394736,0.474378,0.474408,0.585964,0.504446,0.527106,0.500959,0.459105,0.425508,0.38336,0.418353,0.373706,0.23275,0.180071,0.185772,0.194223,0.13564,0.179421,0.123261,0.162619,0.0914266,0.00979831,0.0846208,0.113476,0.0165094,0.0508344,0.0309629,0.0107564,-0.0657588,-0.0672529,1 +-1.84947,-0.935863,-0.233712,-0.337151,-0.209634,0.0706814,0.175008,-1.05899,-1.12077,-1.10521,-1.09436,-1.01719,-1.01463,-0.816253,-0.550253,0.0598411,0.695828,1.06347,1.23768,1.20412,0.932911,1.00496,1.04158,1.09666,1.07918,1.32211,1.06548,1.2191,1.1041,1.09372,1.22383,0.933628,0.846785,1.20071,0.624104,0.0898549,0.408977,-0.532172,-0.661411,-0.555613,-0.549855,-0.730032,-1.16028,-1.04423,-0.730962,-1.06965,-0.947877,-0.89623,-1.07528,-1.11489,-0.918042,0.991697,1.21136,0.937699,0.66507,-0.496913,-0.9686,-1.03281,-1.08334,-0.832524,-0.595491,-0.688967,-0.643204,-0.624195,-0.457612,-0.456081,-0.392672,-0.152191,-0.228441,-0.059862,-0.00324076,0.114611,0.377236,0.225881,0.184611,0.253341,0.339756,0.250508,0.266481,0.398601,0.314601,0.174525,0.114503,0.163354,0.138463,-0.00359275,0.0769929,0.00641381,0.122158,-0.00714945,-0.143752,-0.00546226,-0.0570944,0.00901649,-0.122725,0.0137114,-0.133736,-0.0642942,-0.134434,-0.212598,1 +-1.84877,1.53791,0.250758,-1.04371,-1.02185,-0.892402,-0.941862,0.798968,0.757359,0.658895,0.603839,0.536712,0.554185,0.443372,0.383576,0.161668,0.0670312,0.00754978,-0.0618393,-0.180584,-0.121653,-0.156725,-0.174924,-0.21623,-0.274771,-0.313908,-0.270396,-0.363872,-0.299019,-0.232512,-0.369981,-0.452804,-0.475375,-0.489809,-0.388062,-0.422348,-0.312642,-0.351759,-0.188735,0.159178,0.551979,0.283177,0.421358,0.61056,0.58373,0.586252,0.875182,0.902567,0.815584,0.628464,0.612612,-0.510098,-0.373883,-0.398335,-0.370208,-0.0445011,0.347242,0.526013,0.606552,0.552216,0.376629,0.0994228,0.0492371,0.0891008,-0.0361411,-0.169708,-0.348647,-0.384799,-0.362439,-0.479472,-0.485284,-0.511757,-0.543639,-0.564471,-0.58783,-0.603311,-0.545086,-0.547819,-0.455371,-0.438031,-0.444491,-0.430455,-0.363145,-0.401671,-0.407344,-0.349332,-0.394674,-0.407785,-0.409759,-0.434606,-0.452751,-0.469039,-0.465489,-0.474499,-0.508761,-0.46073,-0.448648,-0.480553,-0.484462,-0.458742,0 +-1.846,-0.833758,-0.0788505,-0.649072,-0.409719,-0.511714,-0.500698,-0.692857,-0.702674,-0.628654,-0.550873,-0.464776,-0.280327,-0.135602,0.0506271,0.177392,0.202539,0.0721416,-0.123256,-0.172118,-0.255966,-0.295694,-0.196004,-0.289318,-0.332619,-0.203557,-0.144787,-0.0716883,-0.0213224,-0.128076,-0.0516771,0.159607,0.363183,0.216136,0.544647,0.701263,0.724091,0.48211,0.549394,0.968847,0.648431,0.306878,0.309607,0.396151,0.339272,0.0530332,-0.0396709,0.0271903,0.0781,-0.0724511,0.0446708,-0.102309,0.0669243,-0.0632559,0.581572,0.967163,0.691887,0.466385,0.172777,0.198263,0.157349,0.252894,0.261021,0.188713,0.186371,0.379114,0.438993,0.381037,0.485277,0.545494,0.546536,0.767118,0.561606,0.534906,0.559035,0.493756,0.469306,0.438273,0.453776,0.462044,0.444501,0.458987,0.33136,0.390269,0.266913,0.282869,0.201463,0.285888,0.254448,0.148226,0.184647,0.117935,0.105405,0.22336,0.211694,0.0379211,0.106154,0.171433,0.0591618,0.215044,1 +-1.84081,-0.787788,0.106743,-0.862764,-0.833629,-0.693535,-0.676605,0.576616,0.843476,0.957499,1.02288,0.966383,0.9834,0.965142,0.935993,0.79858,0.487285,0.316316,0.141752,0.00825647,-0.0630317,-0.089116,-0.159311,-0.166377,-0.103243,-0.0966338,0.0278792,0.259291,0.351971,0.567785,0.59697,0.413333,0.551806,0.641931,0.473876,0.48623,0.356506,0.401614,0.19723,-0.00087066,-0.159735,-0.318628,0.367465,-0.265107,-0.532199,-0.588828,-0.665106,-0.652881,-0.682366,-0.562471,-0.622352,0.0386669,0.292666,0.525135,0.72679,0.466064,0.066418,-0.340555,-0.475507,-0.454931,-0.580088,-0.578636,-0.64263,-0.658871,-0.646268,-0.687249,-0.732681,-0.896933,-0.937108,-0.955475,-0.952837,-0.940083,-0.972405,-1.07895,-1.01384,-0.925161,-1.00982,-0.985811,-0.95991,-0.918627,-0.933322,-0.918199,-0.916745,-0.852922,-0.884302,-0.873961,-0.825803,-0.689998,-0.723277,-0.775799,-0.704797,-0.665793,-0.711348,-0.672467,-0.646959,-0.643747,-0.574523,-0.620773,-0.616823,-0.557861,3 +-1.82521,-1.22236,-0.287341,0.471087,0.787403,0.508188,0.543575,0.260701,0.400937,0.470985,0.526664,0.615475,0.587397,0.484146,0.251667,-0.0240518,-0.452719,-0.739944,-0.707356,-0.933827,-0.915122,-0.968242,-0.84962,-0.918239,-0.802507,-0.793093,-0.576841,-0.569899,-0.481398,-0.389386,-0.345947,-0.198504,-0.299992,0.135423,0.281607,0.55584,0.634159,0.817606,0.881858,1.36386,0.844849,0.729214,1.36881,0.793763,0.654902,0.937791,0.615952,0.697998,0.749141,0.498865,0.251058,-0.794608,-0.434416,-0.0985725,0.602036,1.30316,0.853661,1.07144,0.908306,1.0283,0.911272,0.81491,0.885212,0.825986,0.662597,0.717952,0.36924,0.10792,0.208598,0.125201,-0.0348262,-0.20031,-0.30332,-0.108296,-0.185701,-0.438373,-0.451723,-0.186874,-0.134348,-0.307295,-0.397274,-0.179805,-0.201141,-0.227704,-0.205927,-0.176953,-0.194581,-0.118228,0.0147391,0.0116695,-0.157295,-0.0745826,-0.0431893,-0.132662,-0.018005,0.0119438,-0.180792,-0.204548,0.0150052,0.00932707,3 +-1.8214,1.29526,0.666534,-1.15745,-1.13884,-1.11684,-1.20153,1.59307,1.44103,1.59923,1.74717,1.82159,1.89857,1.78868,1.65163,1.26242,0.874336,0.451839,0.17147,-0.0765847,-0.186998,-0.275268,-0.387604,-0.413402,-0.509435,-0.511121,-0.542087,-0.52482,-0.469739,-0.382975,-0.39344,-0.311672,-0.340209,-0.384827,-0.269603,-0.272467,-0.277634,-0.267531,-0.367726,-0.594408,-0.364062,-0.66833,-0.618205,-0.612583,-0.817664,-0.808815,-0.818566,-0.691437,-0.815874,-0.62681,-0.680646,-0.237609,-0.296238,-0.344486,-0.184443,-0.451269,-0.732902,-0.771669,-0.660618,-0.912171,-0.910966,-0.752362,-0.770657,-0.803642,-0.714171,-0.644132,-0.818725,-0.853348,-0.85699,-0.895298,-0.95298,-1.07565,-1.14494,-1.13419,-1.07246,-1.07171,-1.14007,-1.01251,-1.00027,-1.0134,-1.06946,-1.03266,-0.960422,-0.973348,-0.936974,-0.885655,-0.892246,-0.870512,-0.826448,-0.83005,-0.889855,-0.75926,-0.727683,-0.737055,-0.751821,-0.780681,-0.704501,-0.707521,-0.727489,-0.732241,3 +-1.80997,0.332611,0.329093,-1.10575,-1.05915,-0.892402,-0.922316,0.523482,0.760644,0.96515,1.0786,1.18446,1.19188,1.29244,1.16574,0.9138,0.724695,0.445789,0.0907379,0.00663368,-0.0190555,-0.0561574,-0.175667,-0.0556255,-0.0722965,0.116703,0.31776,0.433876,0.747786,0.840957,1.13843,1.1171,1.02201,0.853158,1.23737,1.07103,0.875905,0.734181,0.359567,-0.0336166,-0.134753,-0.247771,-0.798136,-0.851871,-0.896771,-0.983071,-1.03204,-1.22006,-0.910085,-1.15438,-1.1388,-0.209972,0.344811,0.876151,1.33982,1.16871,0.210554,-0.58118,-0.792336,-0.922004,-0.925418,-0.993689,-1.04426,-1.02169,-0.925211,-0.903653,-1.09173,-1.09659,-1.10103,-1.10547,-1.23637,-1.26954,-1.19216,-1.25726,-1.21661,-1.28803,-1.22681,-1.07702,-1.04899,-1.04817,-1.05728,-1.0783,-1.01457,-0.990701,-1.00496,-0.888068,-0.918856,-0.907209,-0.862668,-0.77928,-0.767651,-0.780224,-0.794238,-0.727554,-0.723013,-0.749074,-0.650174,-0.652245,-0.638314,-0.728484,3 +-1.80616,-1.33225,-0.290957,-0.0493565,0.205798,0.525234,0.325785,-0.420286,-0.450516,-0.496416,-0.363805,-0.30694,-0.234055,0.0178282,0.182958,0.405559,0.642567,0.759889,0.745974,0.716247,0.856595,0.621455,0.611481,0.643793,0.549616,0.551255,0.459893,0.469674,0.518179,0.486877,0.444862,0.105438,0.0277373,-0.215075,0.287889,0.0708959,-0.31911,-0.229118,-0.513137,-0.738015,-0.367859,-0.223442,-0.413399,0.0879809,-0.341737,-0.355865,-0.539175,-0.504864,-0.56817,-0.194252,-0.318792,0.802083,0.308649,0.341649,0.468749,-0.187692,-0.52439,-0.519778,-0.657657,-0.233903,-0.419736,-0.083474,-0.503045,-0.264317,-0.280394,-0.329567,-0.336,-0.4127,-0.389052,-0.100435,-0.471759,-0.284651,-0.166949,-0.024324,-0.244303,-0.338486,-0.126702,-0.136524,-0.208179,-0.116609,-0.206573,-0.208426,-0.216491,-0.159413,-0.227139,-0.162205,-0.0934224,-0.257916,-0.064856,-0.169747,-0.339731,-0.173373,-0.166137,-0.0955638,-0.171402,-0.122541,-0.230174,-0.282858,-0.0663317,-0.19546,1 +-1.80166,-1.26952,-0.169237,-0.388851,-0.25372,0.0422719,-0.0846644,-0.944147,-0.956317,-1.01352,-0.838659,-0.777046,-0.607151,-0.355287,0.0882033,0.575501,0.918413,1.21109,1.33836,1.3072,1.32456,1.18315,1.24984,1.18863,1.26533,1.32313,1.19171,1.14035,1.11692,1.04455,1.08229,0.855009,0.928642,0.731346,0.594655,0.451749,0.28823,0.204392,-0.391619,-0.408843,-0.675838,-1.03953,-1.06161,-0.959815,-1.05469,-0.881547,-0.952174,-0.993156,-1.1335,-1.12444,-0.900217,0.762172,0.629652,0.495694,0.539315,-0.301765,-0.336189,-0.263152,-0.602591,-0.606556,-0.484049,-0.487455,-0.576371,-0.40858,-0.680628,-0.462363,-0.438776,-0.527173,-0.569402,-0.28257,-0.375824,-0.257626,-0.284749,-0.289243,-0.251987,-0.150533,-0.146973,-0.197018,-0.366773,-0.228749,-0.247786,-0.42932,-0.344163,-0.27556,-0.17208,-0.255125,-0.317066,-0.314636,-0.283602,-0.324554,-0.348731,-0.399534,-0.281894,-0.342596,-0.359269,-0.265623,-0.261416,-0.28763,-0.34985,-0.369958,1 +-1.77567,-1.17091,-0.213827,0.670992,0.310928,0.297958,0.373252,-0.206679,-0.0539153,-0.0564174,-0.29233,-0.327416,-0.351206,-0.326795,-0.500395,-0.415429,-0.438294,-0.223201,0.0318979,0.183062,0.319071,0.378431,0.57863,0.701228,0.737291,0.675471,0.664857,0.761438,0.729438,0.729912,0.801176,1.14306,1.28226,1.11234,0.852185,0.67839,0.740309,1.12454,0.421224,0.0411413,0.583076,0.190726,0.159929,0.309858,0.285403,-0.340659,-0.397985,-0.305427,-0.47904,-0.453552,-0.346636,1.16894,1.29618,1.29011,0.895472,0.568029,-0.780012,-0.268466,-0.347528,-0.55087,-0.761069,-0.591592,-0.755962,-0.671418,-0.719358,-0.689424,-0.691866,-0.862784,-0.696376,-0.22661,-0.373181,-0.517155,-0.312195,-0.218117,-0.262545,-0.321364,-0.290499,-0.439666,-0.439406,-0.394353,-0.286774,-0.566431,-0.242359,-0.201744,-0.2248,-0.0277105,-0.367206,-0.323494,-0.189008,-0.362983,-0.211988,-0.225476,-0.320193,-0.328993,-0.195879,-0.335931,-0.281163,-0.325065,-0.243032,-0.297063,3 +-1.76181,0.315128,0.395376,-0.924804,-0.90315,-0.881038,-0.891603,2.33653,2.23242,2.08081,1.88427,1.8753,1.93279,1.78466,1.7897,1.60968,1.39388,0.805588,0.378748,0.223144,0.0454648,0.0816566,0.00310535,-0.146476,-0.293818,-0.240197,-0.418212,-0.468407,-0.535108,-0.854809,-0.760001,-0.84307,-1.15111,-1.26855,-1.45914,-1.3759,-1.64688,-1.44124,-1.57535,-1.27311,-1.40012,-1.2387,-1.20799,-0.693004,-0.822418,-0.947636,-0.992208,-0.904663,-0.954521,-0.612536,-0.654931,-0.439853,-0.606036,-1.03518,-1.47374,-1.7723,-1.28928,-1.25987,-1.02069,-0.97429,-0.917491,-1.05339,-1.03542,-0.785362,-1.01538,-1.08407,-1.18463,-1.07544,-1.23963,-1.19825,-1.23864,-1.43823,-1.27957,-1.29634,-1.42192,-1.21295,-1.2009,-1.16292,-1.19898,-1.18716,-1.20541,-1.16212,-1.00419,-1.0774,-1.05793,-1.06034,-0.96642,-1.00618,-1.03605,-0.8185,-0.761956,-0.849781,-0.867108,-0.856317,-0.786958,-0.720594,-0.77296,-0.80889,-0.719052,-0.748085,0 +-1.75662,-1.3733,0.208578,-1.05922,-1.12019,-1.03729,-1.05076,0.191802,0.286668,0.419224,0.586182,0.684271,0.735753,0.739962,0.65532,0.526939,0.190798,0.15741,-0.121914,-0.111943,-0.242233,-0.196063,-0.26685,-0.250142,-0.234068,-0.178237,-0.0983998,-0.0843249,0.0125855,0.142907,0.218016,0.295877,0.205385,0.309775,0.327033,0.36689,0.321816,0.694772,0.834812,0.654494,0.456922,0.140405,0.143935,-0.0822921,-0.243431,-0.120966,-0.226949,-0.15761,-0.267697,-0.155953,-0.102565,0.0589978,0.12036,0.239444,0.548156,0.572429,0.441865,-0.00792143,-0.19408,-0.249004,-0.159421,-0.0465032,-0.0160651,0.0157293,-0.0447626,-0.123507,-0.163014,-0.204227,-0.326332,-0.307286,-0.429742,-0.450647,-0.48128,-0.471748,-0.603743,-0.56896,-0.573119,-0.554917,-0.50951,-0.52946,-0.52882,-0.555539,-0.519868,-0.483733,-0.500568,-0.534639,-0.484138,-0.48063,-0.479569,-0.464701,-0.435361,-0.412392,-0.416875,-0.425885,-0.391176,-0.479508,-0.39121,-0.381415,-0.438369,-0.447206,3 +-1.74518,-1.18518,-0.271072,0.4573,0.66023,0.198524,0.121956,-0.951507,-1.03129,-1.04536,-1.04992,-0.920065,-0.704319,-0.534854,-0.0805556,0.490381,0.847782,1.3335,1.35662,1.36743,1.22405,1.23696,1.27558,1.26589,1.26344,1.33242,1.0788,1.19384,1.24208,1.08772,1.00474,0.893767,1.05567,0.983009,0.764459,0.358488,0.396654,0.278138,-0.0428297,-0.487535,-0.404573,-1.00949,-0.836828,-0.807286,-0.962383,-1.10414,-1.13073,-1.05507,-0.858739,-0.837505,-1.04148,1.03298,1.10128,1.08166,0.520747,-0.259333,-0.64601,-0.849983,-0.956586,-0.985401,-0.768945,-0.731002,-0.685053,-0.649704,-0.737809,-0.60276,-0.526749,-0.450914,-0.382848,-0.358292,-0.196724,-0.44157,-0.234991,-0.030865,-0.214691,-0.16434,-0.200922,-0.311298,-0.255462,-0.0542953,-0.375211,-0.0594476,-0.173966,-0.275829,-0.29701,-0.241376,-0.194966,-0.377651,-0.332854,-0.149004,-0.242073,-0.225355,-0.232942,-0.314703,-0.356928,-0.241879,-0.21902,-0.118043,-0.237731,-0.370804,1 +-1.74345,-1.19259,-0.251187,0.252225,0.419449,0.508188,0.560328,-0.552626,-0.671851,-0.84928,-0.846959,-1.04823,-1.24157,-1.08859,-1.02472,-0.886913,-0.444653,-0.00744935,0.241133,0.508294,0.850659,1.03014,1.16468,1.23075,1.15415,1.06633,1.27812,1.1814,1.16201,1.11474,0.793711,0.766339,0.97413,0.899551,0.91557,0.431562,0.688638,0.351287,0.219984,-0.387865,0.197942,0.056766,-0.180618,-0.451586,-0.23123,-0.200583,-0.356509,-0.216234,-0.19911,-0.714442,-0.0842646,0.979152,1.21966,0.958856,0.484897,0.0296121,0.088142,-0.348623,-0.457303,-0.312274,-0.871496,-0.846039,-0.466816,-0.426106,-0.323351,-0.609596,-0.396968,-0.359021,-0.162995,0.042576,-0.263173,-0.144942,-0.0541598,0.0934681,0.202431,0.413844,0.338328,0.158458,0.28322,0.314259,0.0359307,-0.00508992,0.146468,0.0703948,0.0531206,-0.0732431,-0.0278362,-0.163903,-0.24143,-0.0110931,0.089839,-0.0936269,-0.158069,-0.0902695,-0.214073,-0.160222,-0.135038,-0.166434,-0.218996,0.0716497,1 +-1.72128,0.356762,0.997951,-0.99546,-0.894672,-1.08843,-1.12056,0.154984,0.238213,0.204628,0.099782,0.00974447,-0.0421023,-0.0909598,-0.188425,-0.305468,-0.284076,-0.278922,-0.210805,-0.0315464,-0.0111147,-0.020717,-0.0148784,-0.145649,-0.0821056,-0.0989499,-0.139773,-0.0244366,-0.0951845,-0.00202716,0.0160026,0.105269,0.133565,0.245496,0.211178,0.201322,0.175619,0.331671,0.464454,0.533769,0.675465,0.723168,0.74143,0.815599,0.918089,0.883384,0.966686,1.11899,1.13994,1.04695,0.823788,-0.263146,-0.0729268,0.164528,0.353096,0.709769,0.669812,0.800625,0.872991,0.753878,0.54595,0.334589,0.176803,0.0844154,0.168366,0.0262039,-0.139474,-0.174866,-0.225804,-0.290081,-0.327432,-0.363503,-0.357232,-0.368844,-0.33352,-0.331628,-0.325228,-0.30493,-0.311898,-0.340842,-0.317461,-0.24739,-0.278584,-0.302031,-0.284807,-0.270234,-0.293887,-0.308489,-0.313671,-0.372739,-0.353914,-0.35976,-0.365912,-0.376544,-0.426332,-0.375049,-0.421545,-0.45476,-0.402306,-0.440636,1 +-1.70915,-1.56164,-0.305419,0.815751,0.656839,0.763874,0.722274,0.307788,0.473014,0.367867,0.390439,0.371562,0.249519,0.190753,-0.0448755,-0.194809,-0.0973439,-0.178962,0.0766362,-0.0574572,-0.0665408,-0.159034,-0.358091,-0.0586898,-0.0618636,-0.0548296,-0.252441,-0.273921,-0.195803,-0.0318729,0.43233,0.320796,-0.436934,-0.298923,0.197311,-0.349625,-0.521881,-0.299927,-0.510685,0.283068,0.215809,0.150741,0.784635,0.95601,0.85054,0.670777,0.95781,1.64537,0.864446,0.378794,0.518375,-0.278064,-0.375511,0.0210791,-0.125384,0.321114,0.721147,0.450694,0.836757,0.407462,0.112088,0.0794662,0.00958225,0.149968,0.0084617,0.0146603,-0.418239,-0.321092,-0.262347,-0.524242,-0.585503,-0.543001,-0.360696,-0.277913,-0.473022,-0.444434,-0.13113,-0.320795,-0.0588247,-0.361174,-0.12598,-0.29113,-0.242424,-0.180048,-0.416223,-0.263203,-0.227248,-0.210512,-0.495418,-0.426419,-0.218182,-0.599714,-0.378385,-0.329854,-0.524535,-0.489057,-0.351956,-0.420901,-0.276168,-0.454803,0 +-1.6849,-1.1938,-0.330124,1.48268,1.49279,1.07638,1.1774,-0.641208,-0.792331,-0.603706,-0.278255,-0.100163,0.0213866,-0.204803,-0.520371,-0.691494,-1.3006,-1.53403,-1.31002,-1.28191,-1.3922,-1.35714,-1.46667,-1.29567,-1.31427,-1.37947,-1.66441,-1.73357,-1.53668,-1.5786,-1.25791,-1.60153,-1.61753,-1.23789,-0.982742,-0.584493,-0.885367,-0.606719,0.809702,1.6126,1.37488,1.14174,1.4191,1.13677,1.3352,1.85236,1.56238,1.44575,1.06355,1.70297,1.13458,-1.45975,-1.34178,-1.34502,-0.813426,0.455983,0.862463,1.42168,1.42816,1.53241,1.68065,1.65285,2.24902,1.56559,1.69906,1.925,1.78589,1.78895,1.99122,1.46582,1.59425,1.61004,1.30328,1.27628,1.44022,1.47583,1.22058,1.27104,1.22845,1.4535,1.47542,1.31314,1.23104,1.40601,1.38998,1.35999,1.40568,1.4647,1.21843,1.30785,1.34814,0.948022,1.45506,1.3898,1.06712,1.23183,1.20235,1.13209,0.913403,1.20796,2 +-1.64332,-0.806367,-0.252392,0.0609361,0.246494,0.300799,0.261565,1.16624,1.2159,1.37643,1.31927,1.4363,1.34529,1.2706,1.15806,0.872492,0.661264,0.373091,0.226275,-0.00923619,0.111036,0.221327,0.0600617,0.0800858,0.106452,0.16667,0.329763,0.139412,0.0183902,0.23012,-0.0693966,0.333114,0.272879,-0.131721,0.157844,-0.393787,-0.791891,-0.182522,-0.850972,-0.510413,-0.633904,-0.675001,-0.214042,-0.403184,-0.185663,-0.821807,-1.44032,-1.1132,-1.16232,-0.972677,-0.764638,0.0192694,0.148658,0.241132,0.143842,-0.475169,-0.0374811,-0.878731,-1.23433,-1.2652,-1.3159,-1.27358,-0.918253,-1.29651,-1.21523,-1.2589,-0.814785,-1.05125,-1.32697,-1.43222,-0.99649,-1.03102,-0.935248,-0.737927,-1.09157,-1.08652,-1.08448,-1.03755,-0.994903,-1.03403,-0.870973,-0.738375,-0.811275,-0.89202,-1.08488,-0.987592,-0.738712,-0.84999,-0.872424,-0.756746,-0.759117,-0.760169,-0.676802,-0.621661,-0.714086,-0.796613,-0.540766,-0.529202,-0.61338,-0.969244,3 +-1.63986,-1.19987,-0.309034,0.602059,0.56697,0.732624,0.674807,-0.132341,-0.203106,-0.276058,-0.441502,-0.402277,-0.469805,-0.375339,-0.626309,-0.441783,-0.237451,0.154847,0.226736,0.566077,0.623951,0.720251,0.883474,0.657575,0.716023,0.577317,0.666299,0.556866,0.309028,0.33774,0.146839,0.269191,0.125606,0.318361,0.394427,-0.587451,-0.340885,-0.153674,-0.204674,-0.619632,-0.130363,-0.724315,-0.197606,-0.133693,-0.629599,-0.425978,-0.244575,-0.630977,-0.518272,-0.6295,-0.14294,0.658294,0.306038,0.247573,0.154297,-0.456712,-0.58046,-0.440306,-0.477631,-0.580948,-0.177777,-0.356551,-0.349231,0.60866,-0.257634,-0.546056,-0.229368,0.200806,-0.0989678,-0.145179,0.212912,0.0462022,0.170931,0.19938,0.408009,0.272752,0.253543,0.0552184,-0.160876,0.307307,0.359353,-0.0730093,0.0644553,0.108256,-0.170209,-0.0890471,0.255089,0.0106457,-0.143824,-0.0904761,-0.137654,-0.158698,-0.0146873,-0.0468687,-0.180525,-0.324748,-0.430615,-0.0992635,-0.0373937,-0.269676,1 +-1.62323,-1.03088,-0.346394,0.910534,1.00444,1.12183,1.03221,0.0283155,-0.125821,-0.0173095,-0.0604022,-0.131399,-0.120274,-0.421437,-0.610265,-0.48699,-0.223969,0.157544,-0.125936,0.191023,0.152059,0.43515,0.258407,0.408412,0.763318,0.529415,0.243442,0.500595,0.208439,0.0888546,0.523603,0.690203,-0.248123,0.272096,-0.156122,-0.0451267,-0.148292,-0.325041,-0.612724,-1.27402,-1.08118,0.608352,-0.0394843,-0.0868388,-0.378054,-0.0428225,1.20142,0.50949,-0.187115,0.432653,0.209168,0.173541,0.241436,0.210692,0.174558,-0.283858,-0.765347,-0.115951,0.36551,0.0561078,0.170094,-0.238256,-0.338728,-0.389719,-0.106382,-0.0754949,-0.335043,-0.00140231,0.0729946,-0.444781,-0.4899,-0.247667,-0.217416,-0.20267,0.070169,-0.029346,0.332376,0.234138,-0.146399,-0.221632,0.126156,0.426397,-0.160802,-0.12838,-0.189983,0.0920489,0.000829589,-0.400047,-0.0461129,-0.307858,-0.289751,-0.0617538,-0.0571793,-0.216526,-0.102833,0.040195,-0.16395,-0.148048,-0.244502,0.00771103,1 +-1.62219,1.29703,-0.139711,-0.459507,-0.555544,-0.389553,-0.419725,-0.489557,-0.709229,-0.667192,-0.546415,-0.51043,-0.432516,-0.131702,0.247362,0.641042,1.12997,1.64193,1.79478,1.97288,2.05778,1.86612,1.75899,1.6648,1.59244,1.49234,1.28006,1.13926,1.08223,1.04047,0.863059,0.743464,0.587332,0.0735103,0.00300536,-0.423018,-0.607277,-1.46591,-1.37986,-2.07119,-1.49412,-1.20475,-1.74732,-1.67714,-1.18345,-0.910907,-1.20224,-1.21101,-1.09732,-1.10172,-0.974813,0.63992,0.815304,0.482981,-0.261963,-0.914946,-1.50749,-1.79377,-1.46555,-1.40034,-1.31295,-1.36026,-1.2832,-1.15706,-1.19677,-0.958119,-0.879397,-0.957668,-0.676207,-0.774708,-0.636668,-0.666712,-0.63855,-0.46114,-0.401362,-0.665922,-0.347103,-0.43015,-0.429437,-0.244642,-0.461006,-0.484338,-0.316382,-0.333938,-0.340824,-0.41393,-0.378928,-0.399411,-0.341067,-0.378533,-0.460393,-0.349671,-0.398567,-0.376951,-0.442714,-0.432083,-0.520325,-0.499485,-0.373275,-0.334871,1 +-1.60452,-1.06687,-0.160198,-0.509483,-0.606413,-0.534442,-0.414141,-0.470452,-0.362877,-0.356715,-0.160152,-0.0613242,-0.00478993,0.231378,0.350648,0.398007,0.187273,0.134592,-0.146138,-0.326927,-0.34232,-0.478134,-0.461859,-0.394505,-0.31476,-0.340888,-0.325055,-0.271063,-0.288105,-0.18083,-0.16023,0.0622661,-0.00905326,-0.193431,0.108822,0.00899444,0.238893,0.564145,0.401056,0.370812,0.573234,0.093958,0.264295,0.294433,0.100812,-0.0528932,0.150506,0.0247489,-0.0740203,0.163079,0.177137,-0.127748,-0.187759,-0.00505075,-0.044917,0.39035,0.231417,0.277465,0.230689,0.173775,0.366916,0.379941,0.298366,0.426655,0.421651,0.418994,0.4732,0.514086,0.461056,0.542192,0.459929,0.49017,0.400713,0.478299,0.43073,0.387536,0.479044,0.369313,0.284621,0.263689,0.182669,0.242396,0.280428,0.227745,0.174422,0.122373,0.147372,0.146554,0.133857,0.186237,0.073949,0.078377,0.116694,0.116839,0.0814043,-0.00795536,0.0582124,0.110242,0.022591,0.116165,1 +-1.6014,-1.17989,-0.31747,-0.171712,0.0107997,1.1474,1.01824,0.43894,0.538169,0.736656,0.888368,0.850892,0.816529,0.899532,0.810345,0.634205,0.145037,-0.305606,-0.449513,-0.295613,-0.440194,-0.55548,-0.493813,-0.577367,-0.66454,-0.579346,-0.48152,-0.403629,-0.445588,-0.180363,-0.0465378,-0.193118,-0.158221,0.310997,0.870959,0.954541,0.746158,0.216214,0.379593,1.07686,0.785848,0.517902,0.526196,0.325854,-0.132105,0.588417,0.617932,0.266084,-0.304044,-0.0468199,0.108209,-0.305224,-0.263731,0.023812,0.878784,0.587008,1.27435,0.350212,0.514184,0.262332,0.447502,0.196291,0.118188,0.183457,0.250336,-0.113828,0.196034,-0.0258214,-0.528931,-0.49089,-0.437022,-0.518336,-0.549491,-0.75742,-0.675366,-0.863149,-0.593771,-0.701898,-0.70042,-0.438812,-0.744549,-0.729894,-0.637219,-0.834428,-0.62487,-0.886508,-0.342104,-0.387334,-0.394015,-0.526494,-0.54983,-0.451097,-0.384836,-0.431891,-0.392112,-0.481842,-0.27142,-0.312749,-0.282597,-0.410897,3 +-1.55844,-1.1379,-0.29879,0.550359,0.56697,0.457051,0.459809,-0.565998,-0.523358,-0.41917,-0.17246,0.0951635,0.216912,0.346919,0.474074,0.858394,1.07316,0.658236,0.707156,0.594402,0.411444,0.409212,0.547468,0.565859,0.677008,0.415077,0.334501,0.679235,0.730302,0.797218,0.528061,0.758095,0.540008,0.488076,0.351128,-0.286689,-0.390438,-0.80775,-1.11494,-1.41736,-1.41114,-0.965428,-0.678623,-0.995812,-0.791025,-0.884583,-1.09273,-0.969719,-0.902882,-0.757138,-0.911537,0.681315,0.637457,0.398753,0.359102,-0.498594,-1.0565,-1.13762,-1.33707,-0.85579,-0.869809,-0.806952,-0.643165,-0.519855,-0.557688,-0.582493,-0.38843,-0.309016,-0.188264,-0.182702,-0.222406,-0.195062,-0.0561596,-0.181128,-0.295576,-0.0426142,0.143481,0.0453204,0.0223976,0.204401,0.144608,0.0281269,0.171371,-0.105009,-0.107213,-0.109242,-0.0849051,-0.157024,-0.144865,-0.129614,-0.132947,-0.389043,-0.187128,-0.138331,-0.0468792,-0.255364,-0.316767,-0.0685665,-0.00146579,-0.0913627,1 +-1.53211,-1.23281,-0.154775,-0.357831,-0.372415,-0.602625,-0.634723,-0.00482158,0.0632166,0.25452,0.452591,0.510743,0.408696,0.129172,-0.269289,-1.12355,-1.71052,-1.96222,-2.14068,-2.15385,-2.13699,-2.08615,-2.03989,-2.01661,-1.98802,-1.87711,-1.85725,-1.84382,-1.68048,-1.59298,-1.48556,-1.22349,-1.21353,-0.980734,-0.593136,-0.341574,0.525766,0.715876,1.20818,1.6134,2.07448,1.82969,2.07358,2.06927,1.91201,1.85889,1.85576,1.99642,1.94291,2.16026,1.80809,-1.80002,-1.47269,-0.994041,-0.159859,1.09443,1.72248,1.87742,2.00279,1.99009,2.1539,2.16032,1.99269,2.08407,1.79477,1.78461,1.71112,1.84059,1.73301,1.57755,1.408,1.3079,1.25129,1.13972,1.30155,1.18582,1.0565,1.1051,1.1392,1.04269,0.944986,0.883133,0.862115,0.980753,0.952083,0.862017,0.914632,0.808591,0.765896,0.777479,0.731581,0.717948,0.788141,0.728679,0.626176,0.657308,0.617875,0.630908,0.70118,0.667965,2 +-1.52345,-1.12553,-0.256007,0.286691,0.35671,0.414437,0.510069,0.0301704,0.24478,0.430674,0.634112,0.511157,0.541322,0.93958,0.565811,0.684682,0.40778,0.154813,-0.14716,-0.274515,-0.221912,-0.268797,-0.436194,-0.425678,-0.391188,-0.154721,0.0423342,0.215024,0.375523,0.445677,0.849533,1.0001,0.503237,0.546258,0.593941,0.461209,1.70848,0.705697,1.25867,0.651108,0.0168104,-0.0921053,-0.434,-0.459187,-0.262923,-0.322708,-1.35946,-0.720771,-0.633225,-0.613026,-0.324554,0.198565,0.314718,0.446174,0.996435,0.888786,0.528986,-0.00777289,-0.46877,-0.219814,-0.170414,-0.251972,-0.302362,-0.23306,-0.15965,-0.416517,-0.0792628,-0.149906,-0.356532,-0.498085,-0.641815,-0.570647,-0.392293,-0.866056,-0.618931,-0.393742,-0.582599,-0.630557,-0.521523,-0.833068,-0.575351,-0.500275,-0.617588,-0.411933,-0.520388,-0.541047,-0.356626,-0.279813,-0.468501,-0.423283,-0.432222,-0.427039,-0.396277,-0.247425,-0.327854,-0.416839,-0.261463,-0.196097,-0.208502,-0.256762,3 +-1.51964,-1.4573,-0.386164,2.31676,2.04726,3.31505,3.17659,-0.500211,-0.770596,-0.813431,-0.82968,-0.874566,-0.867222,-0.496321,-0.451267,-0.208426,0.574156,0.790069,1.0802,1.05273,1.4676,1.35196,1.04824,1.14872,1.36426,1.21392,0.630851,1.07705,0.836286,0.616739,0.617178,0.590735,1.15434,0.227166,0.272972,0.115408,-0.183708,-0.486566,-0.200079,-0.242711,-0.377172,-1.55786,0.0699779,-1.07464,-0.49595,-0.127706,-1.36251,-0.644323,0.0690032,-0.836523,0.13983,0.936219,0.651428,1.00868,0.114081,0.11828,-0.707868,-1.30413,-1.20932,-0.465267,-0.854533,-1.0051,-1.21045,-0.721794,-1.01507,-0.937083,-0.355411,-0.923123,-0.286896,-0.00521905,-0.503915,-0.453976,-0.151685,-0.258229,-0.0792774,0.351324,0.392188,0.120706,0.125647,0.267011,-0.268939,-0.124152,0.247726,0.164169,-0.249551,0.13818,-0.203399,-0.0752436,-0.244407,-0.540442,-0.0241138,-0.381648,-0.053798,-0.175314,0.00482557,-0.0967397,0.0724464,-0.298436,-0.525507,0.0431454,1 +-1.5089,-0.928916,0.226655,-0.761088,-0.747151,-0.889561,-0.883226,0.41322,0.491209,0.431912,0.441899,0.406887,0.273757,0.25034,0.0811345,0.0437334,-0.0246798,0.0474068,-0.0209342,0.0778615,0.147178,0.252283,0.30488,0.148692,0.238002,0.304304,0.346981,0.139264,0.0821622,0.0341696,-0.0792911,-0.125722,-0.158165,-0.0841813,-0.107185,-0.435869,-0.351329,-0.410857,-0.452052,0.0496207,0.112,-0.203248,0.0820664,0.0892646,-0.0472631,0.21124,-0.00390799,0.124308,0.0570198,0.0546706,0.159905,0.435806,0.113856,0.059142,-0.34725,-0.483374,-0.338705,-0.101817,0.0441573,-0.0218958,-0.311184,-0.315243,-0.295743,-0.396293,-0.386995,-0.36036,-0.399176,-0.5368,-0.2802,-0.422228,-0.390839,-0.359322,-0.472138,-0.422393,-0.417028,-0.411592,-0.403897,-0.437378,-0.403258,-0.334644,-0.350418,-0.346102,-0.334185,-0.389441,-0.362759,-0.314765,-0.351122,-0.353683,-0.427799,-0.382331,-0.359374,-0.411434,-0.381182,-0.39601,-0.429007,-0.456212,-0.463337,-0.4684,-0.486161,0.0205005,1 +-1.50751,-1.23497,-0.260828,0.0592128,0.0311474,-0.0742072,0.105203,-0.139085,-0.0220125,-0.0367231,0.0624615,0.312885,0.271299,0.0575669,-0.206838,-0.92055,-1.35343,-2.0472,-2.09398,-1.96763,-2.02749,-1.93301,-1.90694,-1.8692,-1.94188,-1.7727,-1.74168,-1.62806,-1.55249,-1.48985,-1.13336,-1.01044,-0.801105,-0.800411,-0.0883822,0.394267,0.314279,0.771661,0.956634,1.53501,2.35509,1.64884,1.49883,1.81436,1.45155,1.52143,1.82473,1.67918,1.80914,1.37829,1.69588,-1.70892,-1.3396,-0.858987,-0.0952216,1.23652,1.92014,1.67274,1.84179,1.8395,1.5318,1.72563,1.76236,1.65556,1.65132,1.64553,1.61938,1.50454,1.59194,1.64218,1.40822,1.30269,1.46148,1.21633,1.11613,1.25893,1.36279,1.12465,1.15149,1.10825,1.18225,1.00795,0.926974,1.07984,0.991792,0.891438,0.988331,0.79979,1.06944,0.823873,0.790937,0.972484,0.676867,0.901411,0.71237,0.844381,0.860327,0.614638,0.825338,0.903554,2 +-1.50266,-1.03951,-0.312047,0.872621,0.914576,1.42582,1.16344,-0.973254,-0.975379,-0.973711,-0.800087,-0.742017,-0.498823,-0.310773,0.188859,0.588513,0.813293,1.14849,1.15518,0.726885,0.853582,0.91503,0.818605,0.653768,0.640759,0.693311,0.555593,0.514466,0.954809,0.761936,0.349715,0.332997,0.37853,0.632764,0.62754,0.205296,0.961735,0.416473,-0.138403,-0.278391,-0.127123,-0.356671,-0.482139,-0.0800388,-0.336743,-0.252064,-0.0451932,-0.452755,-0.0335399,-0.181272,-0.752988,0.898298,0.702467,0.603379,0.458821,0.353453,-0.866892,-0.5201,0.0968657,-0.755333,-1.02898,-0.5332,-0.811992,-0.502496,-0.412663,-0.428643,-0.480772,-0.318041,-0.323768,-0.334724,-0.530799,-0.0229339,-0.0522122,0.179914,0.005409,-0.0531369,-0.12187,0.183414,0.123525,-0.0359626,0.151119,-0.125563,0.176616,-0.0294406,0.221101,0.0477818,-0.0952709,-0.0714225,0.0698559,-0.0912812,-0.284897,-0.102782,-0.291939,-0.394826,-0.179744,0.122181,-0.396876,-0.271969,-0.407228,0.0307731,1 +-1.46628,-1.19607,0.353196,-0.707665,-1.12189,-0.91513,-0.989329,-0.869472,-0.882889,-0.961574,-1.00355,-0.982679,-1.0108,-0.903847,-0.628523,-0.217928,0.178859,0.477637,0.513132,0.533441,0.5878,0.613038,0.676743,0.650057,0.570084,0.643912,0.678273,0.681562,0.635426,0.679318,0.607718,0.630303,0.558544,0.578496,0.47879,0.487097,0.427597,0.349551,0.181818,-0.0431938,-0.180211,-0.197238,-0.240293,-0.156807,-0.276377,-0.206238,-0.333153,-0.0763884,-0.0448027,-0.076628,-0.00078443,0.613967,0.577191,0.49734,0.43925,0.197777,-0.226735,-0.333624,-0.162832,-0.190133,-0.253032,-0.155902,-0.0961545,-0.0940804,-0.107865,-0.145907,-0.017671,-0.0225953,0.0513418,0.213078,0.201181,0.36594,0.421079,0.304543,0.423527,0.4605,0.415048,0.37829,0.338623,0.356027,0.300701,0.248382,0.331046,0.293271,0.21857,0.203831,0.189733,0.162298,0.162305,0.152102,0.0616553,0.0675842,0.0722826,0.0663231,0.0229676,0.0294368,0.017923,0.0136114,-0.01235,-0.00176287,1 +-1.4552,-0.4259,19.9067,-1.21605,-1.45593,-1.3015,-1.43049,1.78094,1.51642,1.35039,1.37796,1.31938,1.30263,1.46181,1.45905,1.35868,1.09976,1.06308,0.913101,0.645314,0.506402,0.369731,0.382422,0.298798,0.167387,0.0255053,-0.044301,-0.070379,0.0403977,-0.696448,-1.22272,-1.25658,-1.36175,-1.61211,-1.80502,-1.81372,-1.93104,-2.20359,-2.02041,-1.83601,-1.6168,-1.49638,-1.37745,-1.09015,-1.15338,-0.944258,-0.774708,-0.753221,-0.743957,-0.695662,-0.7386,-1.04689,-1.41524,-1.67241,-1.96198,-2.11697,-1.37164,-0.88317,-0.633491,-0.606612,-0.563277,-0.588941,-0.633517,-0.646697,-0.708222,-0.695737,-0.727196,-0.768137,-0.782459,-0.802775,-0.808746,-0.839992,-0.862916,-0.851715,-0.860098,-0.85053,-0.837317,-0.783838,-0.781164,-0.74666,-0.739966,-0.733818,-0.696864,-0.681003,-0.656872,-0.645626,-0.639413,-0.615509,-0.596049,-0.592163,-0.584663,-0.579671,-0.57053,-0.563439,-0.555347,-0.554691,-0.556063,-0.545938,-0.550314,-0.568639,1 +-1.45312,-0.56768,0.768972,-1.24706,-1.30841,-1.11116,-1.20712,2.20158,2.17764,1.98505,1.79489,1.7879,1.7954,1.88542,1.83998,1.57807,1.21497,0.895163,0.568759,0.327602,0.169439,0.0792595,0.0110535,-0.0945823,-0.276047,-0.349434,-0.348511,-0.557295,-0.622187,-0.606571,-0.865171,-0.892663,-1.07547,-1.35142,-1.30168,-1.50815,-1.59516,-1.42387,-1.59289,-1.49083,-1.26334,-1.28164,-1.10022,-1.04229,-0.840959,-0.806928,-0.866673,-1.02478,-0.997749,-0.968506,-0.949442,-0.410789,-0.632,-1.00452,-1.59489,-1.61707,-1.34188,-1.218,-0.994792,-0.828722,-0.844306,-0.926429,-0.804225,-0.827077,-0.97357,-1.02672,-1.00894,-1.0802,-1.16268,-1.23872,-1.26338,-1.20818,-1.23855,-1.24947,-1.25952,-1.20042,-1.11285,-1.20166,-1.12891,-1.07461,-1.08741,-1.1374,-1.06658,-1.09427,-1.04194,-0.940862,-0.992837,-0.879252,-0.882447,-0.883285,-0.849427,-0.825484,-0.779932,-0.800298,-0.78296,-0.762205,-0.704429,-0.737081,-0.762274,-0.779604,0 +-1.44619,-1.2981,-0.11139,-0.645626,-0.660674,-0.520237,-0.495114,-0.126973,-0.0383671,0.0872412,0.342874,0.426648,0.561681,0.570147,0.440598,0.285667,0.205592,0.0072086,-0.0766818,-0.154156,-0.279579,-0.259931,-0.267147,-0.234969,-0.171942,-0.0388023,-0.0999039,-0.0399317,-0.016949,0.0901821,0.0672873,0.211262,0.255028,0.346135,0.369264,0.542862,0.729467,0.90332,1.04782,0.716048,0.52544,0.618759,0.469043,0.296904,0.144338,-0.0708447,0.0472889,-0.175814,-0.148216,0.248518,-0.031714,-0.280303,0.0113667,0.298304,0.498027,0.784821,0.73511,0.376427,0.170829,0.130152,0.0394471,0.132354,0.0710774,0.235679,0.240085,0.0963395,0.190398,0.0215934,-0.205016,-0.0395645,-0.337629,-0.441013,-0.36027,-0.391058,-0.360423,-0.437082,-0.459618,-0.440976,-0.45572,-0.408583,-0.381817,-0.416557,-0.380642,-0.559005,-0.282773,-0.357285,-0.345524,-0.311206,-0.356276,-0.318615,-0.276894,-0.278822,-0.287638,-0.293997,-0.221454,-0.199579,-0.302848,-0.224166,-0.297165,-0.24147,3 +-1.44342,-1.33852,-0.118018,-0.361278,-0.241851,-0.645239,-0.615177,0.378774,0.4895,0.771818,0.907269,0.838434,0.956964,0.971653,0.888153,0.9338,0.494877,0.0341508,-0.021246,-0.150674,-0.100333,0.0679901,-0.153748,-0.101064,-0.0951723,0.153762,0.107198,0.571716,0.416433,0.429631,0.808573,0.674993,0.5652,0.543495,0.967876,0.980638,0.591525,0.428009,0.573394,0.525923,-0.0513532,-0.550613,-0.904312,-0.643065,-0.857878,-0.692954,-1.11489,-0.751216,-1.16878,-0.896253,-0.853681,0.275665,0.433321,0.63443,0.60557,0.634754,-0.161267,-0.506029,-0.524007,-0.882663,-0.692636,-0.566879,-0.622085,-0.579467,-0.469706,-0.554994,-0.777181,-0.710198,-0.691067,-0.654924,-0.839024,-0.751578,-1.00921,-0.909141,-0.792013,-0.847911,-0.756819,-0.792873,-0.714104,-0.819094,-0.861361,-0.778696,-0.698482,-0.801215,-0.57005,-0.683675,-0.667813,-0.602998,-0.753004,-0.594071,-0.523376,-0.607977,-0.498195,-0.490971,-0.59563,-0.574932,-0.463965,-0.465583,-0.550856,-0.497821,3 +-1.42783,-1.25794,-0.243353,-0.313025,-0.394458,-0.00318337,-0.146092,0.602772,0.262664,0.441299,0.534841,0.490914,0.484653,0.502394,0.469924,0.353258,0.0487765,-0.237545,-0.30166,-0.379033,-0.458123,-0.429607,-0.213921,-0.298096,-0.451437,-0.306273,-0.249082,0.0701973,0.149256,0.0691766,0.245958,0.278638,0.35398,0.616536,0.612414,1.02711,1.22649,0.367844,1.03235,0.241823,0.0719423,0.417487,0.253682,0.368086,-0.163968,-0.143166,0.517665,0.255203,0.142512,0.366469,0.220944,0.352473,0.222999,0.296547,0.67888,0.895165,0.750194,0.000782092,0.138794,0.0204261,0.322029,-0.154398,-0.130833,-0.154642,-0.222328,-0.326986,-0.239245,-0.247598,-0.282783,-0.347182,-0.449217,-0.731311,-0.575356,-0.698482,-0.590304,-0.540219,-0.584648,-0.733998,-0.490497,-0.687236,-0.585331,-0.463421,-0.568811,-0.643848,-0.425594,-0.433699,-0.38263,-0.633052,-0.393897,-0.337054,-0.390169,-0.405495,-0.303865,-0.32941,-0.569739,-0.341378,-0.261374,-0.321159,-0.332096,-0.37199,3 +-1.42298,-1.29181,-0.217443,-0.657689,-0.711543,-0.219096,-0.397388,-0.810322,-0.804426,-0.762658,-0.655737,-0.607945,-0.463918,-0.354901,-0.101515,0.0650635,0.190242,0.127711,-0.130809,-0.242788,-0.265734,-0.297544,-0.162812,-0.311838,-0.238781,-0.134536,-0.111731,-0.240758,-0.0795308,-0.0684997,0.0170739,0.228132,0.210783,0.35901,0.339023,0.49387,0.547656,0.345488,0.792604,0.434279,-0.00894441,0.00492505,-0.0175644,-0.120995,-0.18916,-0.241398,-0.618235,-0.366963,-0.352455,-0.303672,-0.089412,-0.00667711,0.0580829,0.399985,0.202909,0.326848,-0.0901919,-0.0691842,-0.0788891,-0.132928,0.140167,0.120414,0.199929,0.28613,0.286854,0.382704,0.512687,0.709647,0.71655,0.857474,0.847488,0.760283,1.02674,0.967656,0.798124,0.925079,0.871003,0.768529,0.784738,0.749146,0.793208,0.654759,0.680789,0.595702,0.546522,0.54318,0.568941,0.519197,0.36323,0.417406,0.437822,0.404777,0.456741,0.386828,0.3932,0.400054,0.245897,0.293897,0.317743,0.554239,1 +-1.41743,-1.19917,-0.253597,-0.0648663,-0.135025,0.0678405,-0.107002,-0.564678,-0.602564,-0.590471,-0.534431,-0.603445,-0.728286,-0.868006,-0.89766,-0.918618,-1.0032,-1.05257,-1.11937,-1.2956,-1.24253,-1.14178,-1.06485,-0.952161,-0.978741,-0.810845,-0.690143,-0.458457,-0.274609,-0.26158,-0.0612329,0.0732864,0.263561,0.559608,0.845644,1.09762,1.35023,1.28559,1.74784,1.78233,1.64364,1.36327,1.26215,1.20839,1.2173,0.935872,1.10141,0.93512,1.00141,1.08046,1.03404,-0.560281,-0.329903,0.11003,0.836325,1.77365,1.84009,1.67757,1.32633,1.41542,1.41343,1.25836,1.23611,1.19185,1.14758,1.09581,1.11658,1.10012,1.17622,1.18778,1.17504,1.17845,1.0593,1.05539,1.01806,0.882243,0.918876,0.763263,0.716359,0.788026,0.809041,0.591032,0.680124,0.772127,0.691563,0.525851,0.576509,0.482531,0.570724,0.439126,0.365259,0.569447,0.487206,0.333737,0.325976,0.374731,0.244755,0.361778,0.369804,0.373364,3 +-1.40011,-1.27892,-0.372907,1.91695,2.13713,1.6673,1.83077,-0.429812,-0.228969,-0.197829,-0.0737246,-0.210841,-0.384651,-0.759919,-1.51701,-2.41407,-2.29165,-2.38024,-2.5358,-2.36908,-2.29956,-2.44955,-2.17109,-1.80582,-2.21038,-2.36547,-2.07814,-2.19313,-1.91883,-2.02313,-1.99024,-1.70906,-1.9175,-1.28668,-0.980617,-0.648485,-0.501159,0.416642,1.01919,1.31731,2.36934,2.06403,1.35125,2.37421,2.12094,2.62974,2.74737,3.06849,2.23658,2.08548,3.00364,-1.70611,-1.76385,-1.91319,-0.445484,0.537228,1.48344,2.66759,2.54232,2.56449,2.29326,2.28608,2.48474,2.60093,2.51192,2.19778,2.37647,1.99709,2.36803,2.63806,2.47261,1.98364,2.42204,1.95553,1.76005,1.90752,1.88726,1.96029,1.71673,1.71947,1.86661,1.89949,1.69304,1.38293,1.90761,1.93958,1.86654,1.73847,1.47394,1.81219,1.82021,1.53346,1.6983,1.56985,1.57107,1.13205,1.35069,1.43088,1.34733,1.23935,2 +-1.39179,-1.25754,-0.255405,-0.02006,0.117625,0.397391,0.387213,-0.183389,-0.0220877,0.0637219,0.169696,0.377622,0.354002,0.206282,-0.198676,-0.686794,-1.21447,-1.46741,-1.61051,-1.71093,-1.69741,-1.58046,-1.56055,-1.58456,-1.63101,-1.55469,-1.635,-1.46774,-1.42935,-1.38617,-1.24406,-0.998128,-1.18526,-1.08324,-0.574877,-0.267729,0.321669,0.463771,0.881411,1.32081,1.36389,1.40716,1.39039,1.48113,1.31636,1.17683,1.03317,1.00979,1.32239,1.21142,1.00334,-1.67271,-1.46027,-1.06275,-0.448764,0.803771,1.37434,1.67271,1.63698,1.68144,1.51908,1.39118,1.46046,1.74602,1.62982,1.59796,1.8068,1.48073,1.29511,1.55312,1.4529,1.27647,1.56382,1.43518,1.2092,1.20648,1.13806,1.00282,1.06515,1.01475,1.10399,0.903522,0.884186,0.973677,0.877102,0.853147,0.659312,0.841136,0.756886,0.649804,0.640167,0.731613,0.725881,0.695732,0.587917,0.510728,0.646131,0.71789,0.76883,0.812305,2 +-1.38625,-1.15746,-0.0842736,-0.631839,-0.62337,-0.662285,-0.620762,0.0810552,0.144001,0.320521,0.504197,0.503217,0.351387,0.198439,-0.359198,-1.17196,-1.83555,-2.10808,-2.21285,-2.16597,-2.17601,-2.18939,-2.10574,-2.13531,-2.15821,-2.1461,-2.04431,-2.10729,-2.02672,-2.00331,-1.96262,-1.80603,-1.56965,-1.42092,-0.834642,-0.33154,0.098403,0.680533,1.15767,1.73784,1.86067,2.01935,2.25598,1.95897,1.68484,1.66478,1.72828,1.52533,1.7741,1.82527,1.81602,-2.08186,-2.03066,-1.56721,-0.606311,1.12799,1.88576,2.10339,2.02471,1.97707,1.92821,2.02516,2.03354,2.06319,1.92993,1.99388,1.86257,1.81351,1.78842,1.66229,1.69947,1.67467,1.67403,1.4858,1.38932,1.38678,1.34397,1.39481,1.23974,1.22591,1.24574,1.24042,1.26354,1.20372,1.14157,1.09702,1.17868,1.23722,1.09787,1.071,1.10502,1.09018,0.99033,0.970565,0.951028,0.959241,0.924813,0.926542,0.881411,0.922537,2 +-1.37343,-1.55502,1.84156,-1.34185,-1.3118,-1.26457,-1.28251,0.722925,0.653053,0.615876,0.536247,0.471815,0.416188,0.368409,0.306258,0.162253,0.10804,0.104063,0.114666,0.177879,0.246071,0.290059,0.258972,0.250343,0.176835,0.189582,0.0835343,0.0483086,-0.0248432,-0.0821016,-0.224761,-0.316185,-0.363395,-0.41753,-0.454853,-0.651514,-0.754951,-0.873656,-0.809166,-0.719603,-0.629423,-0.602312,-0.57268,-0.46483,-0.323195,-0.291363,-0.128571,-0.147561,-0.177999,-0.209861,-0.275454,0.0918779,-0.0670825,-0.366887,-0.666742,-0.949003,-0.701911,-0.452682,-0.307311,-0.397028,-0.469882,-0.47316,-0.499846,-0.484397,-0.477321,-0.444556,-0.39548,-0.405277,-0.373793,-0.342083,-0.334679,-0.310142,-0.316019,-0.298584,-0.292767,-0.256292,-0.254461,-0.240799,-0.239221,-0.204039,-0.211264,-0.191971,-0.173337,-0.18392,-0.201245,-0.235304,-0.261926,-0.259468,-0.26205,-0.289713,-0.293961,-0.301918,-0.315211,-0.296589,-0.299683,-0.309072,-0.322327,-0.323722,-0.328701,-0.342735,1 +-1.36373,-0.592297,0.142294,-0.95927,-0.906542,-0.983313,-0.983744,-0.790816,-0.865851,-0.908382,-0.966646,-0.85413,-0.712767,-0.409828,0.0296526,0.539802,0.884614,1.15073,1.43292,1.50895,1.56932,1.61979,1.58686,1.38898,1.27127,1.32404,1.27963,1.25001,1.27451,1.25189,1.10263,1.11071,1.04797,0.952267,0.763655,0.53892,0.330238,-0.00934812,-0.243825,-0.254727,-0.715123,-0.788254,-0.828062,-0.872644,-0.743258,-0.811345,-0.874726,-0.694376,-0.862231,-0.787197,-0.661324,1.14797,1.16127,1.05929,0.381024,-0.229285,-0.63504,-0.729847,-0.735994,-0.706478,-0.720986,-0.715107,-0.768009,-0.690821,-0.666323,-0.749389,-0.731004,-0.752484,-0.659199,-0.641688,-0.676871,-0.638514,-0.603533,-0.660598,-0.612635,-0.55435,-0.573284,-0.552417,-0.522199,-0.495092,-0.561926,-0.576682,-0.500414,-0.496994,-0.466619,-0.479544,-0.508538,-0.427466,-0.524778,-0.477973,-0.428442,-0.428598,-0.474232,-0.483917,-0.43061,-0.459827,-0.442705,-0.422677,-0.451006,-0.548808,1 +-1.3575,-0.854016,-0.35965,1.15352,1.36901,0.922968,0.727858,-0.608051,-0.734597,-1.02115,-0.929841,-0.655761,-0.411524,-0.392637,0.159808,0.434683,0.779699,0.855985,1.12687,1.1148,0.998606,0.877975,0.757527,1.02698,1.03122,0.978072,0.866769,0.895698,0.750055,0.75057,0.612691,0.34605,-0.0779245,0.2755,0.386509,0.0476035,-0.105642,-1.38358,-2.10424,-1.11598,-0.296712,-0.52371,-1.07797,-0.857935,-0.943821,-0.911655,-1.34667,-0.69127,0.107651,-1.18506,-0.84182,1.48483,0.571478,0.635311,-0.287723,-1.16046,-0.786549,-1.06695,-1.01824,-0.435702,-0.526154,-0.671757,-0.817886,-0.262871,-0.130202,-0.000368465,-0.155622,-0.419235,0.159085,-0.110845,-0.33799,0.209653,0.182972,-0.160748,-0.106166,0.218482,0.396453,0.157554,0.0659418,-0.0476174,-0.0223164,-0.0446058,0.268493,-0.0611497,-0.0599826,-0.0262001,-0.190074,0.155041,-0.00436667,-0.0684982,0.00670551,-0.103384,0.0216055,0.0374999,-0.323258,-0.076244,0.219216,-0.0692967,-0.41662,-0.395075,1 +-1.33567,-1.21516,-0.238533,0.226375,0.244798,-0.0202291,-0.115378,-1.10105,-1.38728,-1.30586,-1.39127,-1.57414,-1.58237,-1.54027,-1.39517,-0.976861,-0.587399,-0.122104,0.265679,0.788041,0.869969,0.747555,0.937976,0.859312,0.872265,0.951642,0.897579,0.805531,0.892526,1.04054,0.772477,1.08207,1.14265,1.40175,1.21925,1.33858,1.70766,1.3167,1.1797,1.14101,0.773181,0.650402,0.840647,0.579002,0.337901,0.641732,0.43759,0.396942,0.750896,0.547735,0.93201,0.841455,1.00682,1.09311,1.32247,1.12477,0.952635,0.671623,0.685992,0.252732,0.283424,0.39238,0.308948,0.0665521,0.0743286,0.16132,-0.0730215,0.0147236,0.140265,0.111819,0.0444638,0.00417388,0.208183,0.0866002,0.0980378,0.106791,0.207108,0.18888,0.013464,0.128796,0.217728,0.0306255,-0.0459749,0.0980192,0.018734,-0.0182616,0.095224,0.15905,-0.212358,-0.0686259,0.0518318,-0.185986,-0.00977289,0.0298822,-0.114168,-0.204935,-0.0521216,-0.17515,-0.0349612,0.00804723,1 +-1.32527,-0.438278,-0.246969,0.0126831,-0.109591,-0.0401158,-0.000899175,-0.275459,-0.178092,-0.205301,-0.162713,-0.0168688,0.0606336,0.2376,0.606292,1.12546,1.38557,1.24522,1.26177,1.32581,1.32048,1.15003,1.01651,0.89019,0.721461,0.859064,0.655933,0.359281,0.540152,0.530362,0.251598,0.234908,0.403243,0.217309,-0.326148,-0.105535,-0.661819,-1.03946,-0.595778,-0.780513,-1.64935,-1.4071,-0.727539,-0.827379,-1.11215,-1.01203,-0.735316,-0.685013,-0.47845,-0.0460894,-0.422261,0.408747,0.482768,0.471004,-0.211408,-0.864731,-1.57188,-1.1697,-1.24733,-1.0903,-0.899351,-0.99793,-0.806584,-0.866047,-0.754229,-0.746759,-0.821349,-0.797164,-0.710186,-0.573164,-0.677469,-0.643203,-0.499638,-0.640013,-0.643133,-0.405854,-0.557076,-0.506472,-0.528612,-0.48176,-0.465813,-0.772092,-0.597654,-0.273221,-0.466245,-0.370477,-0.491786,-0.361785,-0.363192,-0.3965,-0.388389,-0.338302,-0.281037,-0.308182,-0.370419,-0.38977,-0.38966,-0.480984,-0.456453,-0.323066,1 +-1.32527,-1.38163,-0.249379,-0.178606,-0.112982,-0.221937,-0.0958331,-0.941105,-0.850881,-0.834794,-0.858904,-0.718915,-0.621469,-0.436844,-0.134859,0.0912656,0.35109,0.621178,0.654276,0.466949,0.464959,0.354821,0.284398,0.536637,0.594018,0.440992,0.337906,0.448852,0.482472,0.546618,0.432888,0.545884,0.593865,0.507017,0.379332,0.322414,0.186237,-0.0667648,-0.516851,-0.349252,-0.435022,-0.627304,-0.434374,-0.47796,-0.63727,-0.758035,-0.777392,-0.832948,-0.658443,-0.375889,-0.685791,0.638187,0.449946,0.417022,0.626147,-0.154359,-0.548413,-0.600977,-0.740849,-0.593662,-0.546111,-0.403798,-0.466714,-0.326521,-0.318831,-0.0371545,0.23455,0.171291,0.470728,0.362266,0.335139,0.636981,0.559754,0.536879,0.671086,0.710426,0.48437,0.638857,0.577271,0.391464,0.392337,0.402268,0.496405,0.349996,0.26701,0.342086,0.19682,0.31736,0.236908,0.202275,0.236113,0.243691,0.163161,0.0482168,0.0399958,0.187098,0.166408,0.0315731,0.212565,0.218074,1 +-1.30657,-1.28325,-0.327714,1.91006,2.00996,0.937173,0.92331,-0.562551,-0.643109,-0.573584,-0.504321,-0.284207,-0.493731,-0.492116,-0.485479,-0.766644,-1.29395,-1.47189,-1.61427,-1.66493,-1.52109,-1.51073,-1.58187,-1.37415,-1.30461,-1.42741,-1.16765,-1.31835,-1.36926,-1.07947,-0.785138,-0.727783,-0.529401,-0.358761,-0.289545,1.08537,1.32181,0.90818,0.916876,1.27142,0.810812,1.07778,2.30073,1.66317,1.42563,0.906697,1.32622,0.469627,0.571213,1.18973,1.02015,-0.448905,-0.306118,-0.179469,0.629743,1.53118,0.430549,1.11971,0.649308,0.835707,0.839796,1.01341,0.885462,0.983388,1.2934,1.56628,1.54119,1.62946,1.50921,1.79165,1.68073,1.7959,1.78609,1.56376,1.55795,1.61521,1.65178,1.52677,1.50913,1.16084,1.18098,1.43754,1.23074,1.11262,1.28507,1.34566,1.02081,0.91366,1.18203,1.03321,1.04381,0.914193,0.981518,1.07152,1.06249,0.941349,0.716019,0.869656,0.791008,0.923717,3 +-1.30483,-1.20551,-0.35724,1.77564,1.67761,1.28093,1.16344,-1.10133,-1.15121,-1.24354,-1.37757,-1.51852,-1.59551,-1.65056,-1.43148,-0.997059,-0.733762,-0.315974,0.252143,0.395844,0.943233,0.893446,1.07486,0.941539,0.955237,1.32148,2.26742,1.2649,0.987302,0.935246,0.818848,1.15299,1.31072,0.939429,0.634843,1.0759,1.03344,0.13449,0.70008,0.955937,-0.835036,0.205003,-0.320951,-0.134156,0.0857045,-0.0382333,-0.682168,-0.709451,-0.0756629,-0.0504571,-0.0376916,1.0075,0.561035,0.702219,1.44148,0.267508,0.292268,0.405067,-0.120159,-0.365439,-0.436893,-0.0295818,-0.0559919,0.0573306,-0.247331,0.428086,-0.10979,-0.126648,0.545673,0.31673,0.642104,0.601915,0.534976,0.44592,0.35424,0.743787,0.364694,0.298679,0.158713,0.580342,0.511596,0.450363,0.465834,-0.072234,0.156141,0.577608,0.417814,0.346404,0.362125,0.137921,-0.0598397,0.204585,0.0292696,0.0442569,0.0167977,0.146577,0.193667,0.00623531,-0.1929,0.178812,1 +-1.30068,-1.16166,0.232681,-0.95927,-0.950628,-1.01172,-1.0005,-0.446899,-0.348819,-0.382867,-0.468019,-0.597871,-0.708962,-0.811905,-0.869465,-0.969143,-0.865594,-0.637866,-0.419664,-0.232897,-0.0385207,0.0433626,0.100436,0.152564,0.136466,0.174712,0.228337,0.290717,0.386974,0.493375,0.568231,0.616358,0.778306,0.89422,0.987583,1.21651,1.26483,1.52361,1.64347,1.75708,1.58115,1.58965,1.52122,1.20357,1.1636,1.21833,1.26437,1.21279,1.14474,1.12616,1.06837,0.292754,0.511293,0.76987,1.24877,1.63563,1.51436,1.38746,1.29373,1.08782,0.853502,0.677825,0.481474,0.422865,0.379041,0.200442,0.18758,0.108001,0.035815,-0.0779203,-0.0827766,-0.080697,-0.193818,-0.191006,-0.238139,-0.262081,-0.260564,-0.231231,-0.25973,-0.268892,-0.248819,-0.293854,-0.284635,-0.251969,-0.297843,-0.332295,-0.323224,-0.335481,-0.298631,-0.314623,-0.331987,-0.382116,-0.379454,-0.418772,-0.37413,-0.381441,-0.419441,-0.41872,-0.420278,-0.404286,1 +-1.2986,0.682424,3.31786,-1.35908,-1.42371,-1.29014,-1.3579,2.38084,2.32409,2.26552,2.27151,2.36458,2.3532,2.27121,2.12489,1.97084,1.45184,0.918456,0.635254,0.343756,0.0830697,-0.0284167,-0.0862251,-0.197417,-0.350309,-0.442676,-0.584259,-0.739172,-0.830695,-0.932119,-1.01575,-1.11943,-1.23623,-1.49857,-1.68891,-1.90625,-1.8683,-1.98666,-1.8726,-1.71705,-1.48839,-1.37694,-1.28264,-1.22421,-1.25009,-1.12089,-0.996826,-0.955721,-0.997449,-1.05919,-1.01259,-0.451013,-0.809748,-1.21901,-1.84329,-2.23355,-1.72623,-1.4411,-1.14208,-1.14823,-1.04797,-1.04823,-1.0815,-1.11678,-1.15235,-1.13516,-1.17769,-1.29347,-1.28221,-1.34852,-1.36547,-1.39474,-1.38548,-1.34409,-1.36479,-1.34386,-1.29829,-1.27108,-1.21008,-1.1841,-1.16832,-1.16318,-1.16089,-1.11306,-1.09697,-1.06292,-1.00038,-0.969144,-0.947504,-0.923261,-0.893844,-0.878792,-0.852025,-0.808462,-0.801967,-0.796956,-0.79939,-0.764819,-0.747087,-0.787002,0 +-1.2837,-1.18387,-0.396407,2.64592,2.51865,5.82077,5.96877,-0.753538,-0.825359,-1.06499,-1.2741,-1.57732,-1.81022,-2.17618,-2.73774,-2.94884,-3.01151,-2.64805,-2.65122,-2.60316,-2.51689,-2.23942,-2.33452,-2.31821,-2.38613,-2.59099,-2.65823,-2.49666,-2.48887,-2.51172,-2.67839,-2.33255,-2.2914,-1.93218,-1.94085,-2.29148,-2.34747,-1.91251,-1.31213,-0.556569,-0.580749,-0.279559,0.752314,1.13361,1.86031,1.41813,0.720057,0.417987,-0.483414,-0.496059,-0.025289,-2.38281,-3.13348,-3.46817,-3.18388,-0.64456,0.272905,1.44872,3.32515,2.95469,3.09029,3.69777,3.51538,3.53037,3.564,3.95574,3.75315,3.13559,4.37153,3.89514,3.06827,3.03224,3.22754,3.3474,3.0685,3.01618,2.9457,3.30445,3.19598,3.66124,3.44356,3.76605,3.35246,3.17168,3.78533,4.03878,3.77322,4.2518,3.66216,3.79732,4.31007,4.27203,3.82351,3.63008,4.36517,4.16678,3.67668,4.08044,4.16721,4.13504,6 +-1.27019,-1.20954,-0.374112,1.59986,1.43005,1.69287,1.84194,0.272782,0.576715,0.600494,0.654588,0.799065,0.554718,0.4507,-0.352804,-1.44006,-2.15787,-2.86267,-2.79635,-2.50454,-2.72646,-2.70547,-2.76848,-2.5736,-2.71857,-2.89912,-2.97819,-2.81132,-3.21935,-3.04967,-3.20476,-2.5753,-2.50111,-2.64932,-2.67508,-1.06022,-0.0467155,0.176832,1.30365,1.83848,2.52872,3.3122,3.14121,2.73774,2.45694,2.83432,2.98726,2.85364,2.98211,3.25965,2.09389,-2.54501,-2.73978,-2.58756,-1.33159,0.238165,2.18168,3.23125,2.63166,2.38878,2.64332,3.07756,2.80493,2.66243,2.68694,2.92343,2.57639,2.26567,2.14821,1.65646,1.7042,1.62556,1.77452,2.00144,1.01008,1.30799,1.59358,1.35259,1.97275,1.13238,0.862644,1.2348,1.4447,1.40415,1.58493,1.75799,1.46055,1.71074,1.44263,1.09854,1.64614,1.13909,1.49047,1.58884,1.3745,1.44586,0.906805,1.51912,1.37495,1.32835,2 +-1.25044,-1.21264,-0.259623,-0.00110345,0.219363,0.414437,0.214098,-1.02969,-1.08803,-1.2155,-1.34375,-1.38512,-1.37068,-1.29364,-1.08235,-0.78359,-0.448658,0.0111241,0.160114,0.466586,0.475943,0.496615,0.434756,0.55557,0.614719,0.462603,0.582893,0.835715,0.686694,0.6646,0.700501,0.802272,0.924718,1.02037,1.00829,1.31757,1.54574,1.51869,1.00612,1.16213,1.16219,0.948825,0.76083,0.828827,0.495236,0.515948,0.570882,0.470212,0.800943,0.649911,0.312758,0.887655,0.70806,1.00387,1.20373,1.40036,1.18158,0.832133,0.553414,0.512431,0.579108,0.512066,0.383225,0.107381,0.0924203,-0.0263685,0.154792,-0.0120712,0.0830077,0.274323,0.209361,0.105505,0.140324,0.201856,0.199435,0.248023,0.114049,0.0660145,0.175225,0.220504,0.191658,0.080121,0.093368,-0.0684852,0.0481453,0.126408,0.113262,0.112472,0.0394135,0.110011,0.411079,0.120771,-0.0845748,-0.0547551,0.00378154,-0.115102,-0.149195,0.0715486,-0.116655,-0.108763,1 +-1.23242,0.343894,-0.177673,-0.166542,-0.126547,-0.435008,-0.341544,-0.051111,-0.029923,-0.0467144,-0.0251664,-0.0536045,0.084505,0.235796,0.402039,0.504884,0.674474,0.584706,0.711374,0.778298,0.749407,0.513868,0.525728,0.366785,0.408633,0.360314,0.331558,0.315735,0.256986,0.162641,0.0480612,-0.211958,-0.151042,-0.0396399,-0.642375,-0.38505,-0.556776,-0.609343,-0.331481,-0.39351,-0.315691,-0.460659,-0.451255,-0.351614,-0.3663,-0.26484,-0.374808,-0.21179,0.149049,-0.17411,-0.262537,0.40278,0.324905,-0.0202675,-0.309677,-0.84804,-0.757713,-0.508677,-0.593732,-0.535903,-0.405671,-0.392134,-0.466155,-0.500503,-0.393546,-0.54084,-0.535449,-0.426723,-0.446077,-0.334682,-0.267123,-0.388685,-0.350287,-0.341896,-0.2163,-0.275219,-0.305988,-0.330784,-0.25255,-0.269366,-0.259194,-0.263064,-0.195838,-0.262633,-0.271568,-0.175993,-0.191779,-0.201728,-0.333607,-0.171268,-0.216778,-0.167408,-0.16293,-0.258591,-0.238792,-0.211708,-0.20223,-0.255854,-0.312689,-0.234814,1 +-1.23035,-1.23747,-0.219853,-0.423317,-0.258807,0.246821,0.336954,-0.573506,-0.517241,-0.467084,-0.34159,-0.25633,-0.205707,-0.0451423,0.244286,0.379559,0.641153,0.64772,0.775798,0.61482,0.636261,0.465131,0.48522,0.61277,0.500521,0.608584,0.593015,0.501101,0.528182,0.523074,0.454944,0.402381,0.3714,0.497065,0.189759,0.377986,-0.0370202,-0.20672,0.0947528,-0.264655,-0.158774,-0.286168,-0.445892,-0.434147,-0.49477,-0.726469,-0.543874,-0.617695,-0.480901,-0.421483,-0.304366,0.234502,0.367287,0.263438,0.13389,0.200846,-0.35391,-0.376997,-0.263316,-0.194651,0.0208671,-0.120419,-0.125603,3.95862e-05,-0.161881,-0.272087,0.0548838,-0.173194,-0.175913,0.0381816,-0.093688,-0.0258231,-0.189476,-0.15582,0.00894048,-0.0961018,-0.148546,-0.210773,-0.208458,-0.0503017,-0.0749458,-0.353257,-0.232528,-0.191015,-0.240904,-0.278106,-0.158079,-0.302323,-0.38925,-0.277646,-0.228942,-0.1859,-0.331215,-0.2063,-0.239714,-0.277367,-0.267719,-0.281536,-0.339413,-0.123425,1 +-1.21545,1.14071,-0.304816,1.64295,1.53348,0.78092,0.588249,1.03578,1.1568,1.40949,1.46728,1.22865,1.18956,1.49116,1.13296,1.48955,0.772855,0.0835305,-0.179208,0.186864,0.0825518,0.044896,0.0264808,-0.136252,-0.0689527,0.0011983,-0.354259,-0.248954,-0.453487,-0.313793,-0.432641,-0.235472,-0.258345,-0.722865,-0.468319,-0.433246,0.527495,-0.0781281,-1.21488,-0.161743,-0.261303,0.0357704,-0.387201,0.650163,0.421537,0.145618,-1.08438,-0.452967,0.0211038,-0.110939,-0.340803,-0.391919,-0.449805,-0.6378,0.264552,-0.14509,-0.25598,-0.120685,-0.0964653,0.00462314,-0.172192,-0.732532,-0.279591,-0.576342,-0.73135,-0.797575,-0.645624,-0.906131,-1.1762,-1.29005,-1.06655,-1.12935,-1.08836,-0.889621,-1.5913,-0.881344,-0.909817,-1.28538,-1.01233,-1.45011,-0.876251,-0.501595,-0.943876,-0.964493,-0.976005,-1.0786,-0.905056,-0.743819,-0.697168,-1.16496,-0.945879,-0.574172,-0.681543,-0.73951,-0.619011,-0.805144,-0.771646,-0.549298,-0.545319,-0.734019,0 +-1.21372,-0.466835,0.172423,-0.876551,-0.823455,-0.906607,-0.927901,1.27215,1.16881,1.06998,1.11181,1.08124,0.992716,0.891184,0.803695,0.596263,0.417287,0.294137,0.0228391,-0.071002,-0.0142301,-0.251603,-0.22161,-0.187888,-0.308312,-0.357949,-0.345127,-0.359398,-0.45229,-0.408036,-0.575052,-0.359753,-0.662046,-0.822391,-0.512503,-0.874692,-0.736862,-0.710725,-0.442889,-0.333699,-0.138027,-0.171303,-0.154643,0.122001,0.164521,0.293928,0.253292,0.371938,0.166792,0.192181,0.063516,-0.480333,-0.559742,-0.563723,-0.561909,-0.402161,-0.282183,0.112877,0.11494,-0.118426,-0.174067,-0.204993,-0.310151,-0.397518,-0.296053,-0.564859,-0.52428,-0.453242,-0.686355,-0.696441,-0.7056,-0.761661,-0.738765,-0.713448,-0.702506,-0.675971,-0.679033,-0.64912,-0.743923,-0.66777,-0.615024,-0.632692,-0.559049,-0.50162,-0.602565,-0.60621,-0.615116,-0.520907,-0.584523,-0.639536,-0.562618,-0.606149,-0.579696,-0.534997,-0.546331,-0.513456,-0.527402,-0.638628,-0.563315,-0.53952,0 +-1.21025,-1.14795,-0.29638,1.41719,1.4114,0.229775,0.264357,0.649942,0.741446,0.971889,0.812946,0.743734,0.637475,0.542059,0.139602,0.22151,0.305797,-0.0203975,-0.0149224,-0.20575,-0.0557164,0.414382,0.0245124,0.368856,0.443916,0.345333,0.576938,0.397803,0.408422,0.470939,0.90333,0.827386,0.810487,0.518428,1.05049,0.203871,0.809609,2.25433,0.257373,0.0427235,1.88241,0.624375,-0.658028,-0.931379,-0.324835,0.0285612,-0.379595,-1.21874,-0.546797,-1.29782,-0.691884,0.538779,0.49743,0.609017,0.865066,0.929241,0.328766,0.0903717,0.0717703,0.0250487,-0.0562028,-0.279082,-0.528959,-0.931932,-0.40103,-1.12232,-0.723373,-1.33157,-1.23343,-1.25231,-0.792049,-1.20664,-0.997321,-0.94468,-1.16296,-1.32605,-1.38376,-1.38441,-0.918232,-1.10146,-1.23106,-0.888986,-1.02178,-0.511827,-0.91717,-0.960812,-1.05669,-1.12011,-0.852695,-0.704402,-0.795736,-0.820325,-0.792702,-0.779253,-0.61422,-0.582432,-0.761095,-0.841654,-0.481259,-0.571409,3 +-1.20159,-1.11235,-0.29638,0.305648,0.390623,0.209888,0.166631,-1.04736,-1.13875,-1.008,-0.71681,-0.371762,-0.258536,0.0619803,0.465665,0.93992,1.16018,1.24576,0.938932,0.894361,0.960618,1.01807,0.931872,1.00091,1.01572,1.01405,0.833438,1.21658,1.07685,1.28322,1.62443,1.53823,1.54694,1.55893,1.08483,1.00972,0.340831,0.0381583,-0.832608,-1.43366,-1.50029,-1.91636,-2.10748,-2.03168,-1.65941,-1.98671,-1.75649,-1.47182,-2.02844,-2.16484,-1.39857,1.51691,1.48069,1.37244,0.350639,-0.699992,-1.51986,-1.58268,-1.47709,-1.46114,-1.27179,-1.60358,-1.04539,-0.825074,-0.651069,-0.528453,-0.338283,0.049939,-0.159323,-0.0599552,-0.275575,-0.474997,-0.349957,-0.166709,-0.192384,0.0617815,-0.000752258,0.0557106,0.110622,-0.142427,0.233607,0.00881742,0.109651,0.156818,-0.00787428,0.0720101,-0.172602,-0.293569,-0.114406,-0.129847,-0.187803,-0.0814384,0.016997,-0.097569,-0.20878,-0.120872,-0.114978,-0.123032,-0.128885,-0.0765849,3 +-1.18046,-1.22164,-0.296983,0.52451,0.789099,0.0820453,0.214098,-0.783155,-0.634963,-0.434206,-0.317336,-0.259527,-0.102935,0.105371,0.0975521,0.732535,0.702841,0.879684,0.852914,0.495374,0.41324,0.309934,0.480086,0.430287,0.348116,0.533067,0.395763,0.487902,0.493621,0.2943,0.344152,0.202519,0.505239,0.355259,0.261772,0.151622,0.212455,-0.639544,-0.606514,-0.95782,-0.296401,-0.326789,-0.903237,-0.25173,-0.455493,0.0533774,-0.266559,-0.327003,-0.111867,-0.522357,0.344493,0.726133,0.50834,0.29645,0.403233,-0.259731,-0.659438,-0.626788,-0.471485,-0.381602,-0.258792,-0.379761,-0.0858811,-0.30139,-0.247641,-0.202073,-0.229327,-0.316983,-0.239396,-0.148273,-0.0722921,-0.00343369,0.0744992,-0.154737,-0.0791414,0.0335166,0.166221,-0.196078,-0.0842005,-0.0362636,-0.0509822,0.0380389,0.0620892,-0.277172,-0.128965,0.0542599,-0.0593011,-0.0852714,-0.224583,-0.0874757,-0.124885,-0.143647,-0.216229,-0.25226,-0.00880148,-0.225099,-0.383292,-0.179491,-0.124296,-0.30008,1 +-1.16798,-1.18359,0.817178,-1.22466,-1.25076,-1.12536,-1.18478,2.14108,2.10531,2.37288,2.39954,2.56345,2.58585,2.44893,2.31433,2.03636,1.64225,1.21918,0.78569,0.448607,0.198052,0.106873,0.0491886,-0.0719764,-0.27225,-0.410591,-0.531955,-0.667536,-0.815605,-0.907194,-1.07941,-1.28793,-1.49472,-1.50157,-1.63218,-1.97145,-2.11314,-2.08325,-1.93216,-1.88756,-1.69781,-1.46414,-1.44823,-1.48352,-1.23819,-1.17854,-1.27177,-1.23879,-1.22733,-1.3758,-1.55792,-0.904472,-1.1992,-1.53459,-1.76515,-1.93537,-1.6971,-1.34691,-1.1508,-1.20228,-1.08106,-1.03112,-1.13094,-1.16146,-1.16793,-1.14992,-1.15974,-1.36154,-1.30773,-1.32274,-1.33444,-1.41702,-1.40176,-1.37449,-1.36633,-1.33796,-1.33058,-1.31769,-1.21435,-1.19874,-1.20059,-1.16346,-1.15451,-1.09011,-1.08531,-1.05688,-1.01994,-1.01806,-0.947323,-0.903461,-0.862679,-0.905848,-0.872963,-0.83802,-0.809542,-0.776666,-0.818049,-0.773228,-0.769061,-0.833631,1 +-1.16105,0.993167,-0.130069,-0.662859,-0.460588,-0.56001,-0.514659,0.43869,0.442742,0.339416,0.302805,0.190351,0.0821376,0.0837855,0.00250827,0.0779868,-0.0901039,-0.0432618,0.246538,0.168624,0.419589,0.3785,0.40562,0.321206,0.35834,0.270526,0.243058,0.279325,0.217216,0.126346,0.081981,0.00870126,0.114203,-0.158038,-0.523294,-0.503855,-0.21348,-0.494585,-0.350201,-0.675329,-0.468938,-0.273789,-0.237785,-0.185481,0.227605,0.0377546,0.178755,0.30617,0.210524,-0.137409,0.0596576,0.13985,0.00217614,0.0264522,-0.194357,-0.372047,-0.105815,-0.162217,-0.138657,-0.149656,-0.20519,-0.239093,-0.410733,-0.30834,-0.33652,-0.273804,-0.464354,-0.274316,-0.356662,-0.277318,-0.255077,-0.36326,-0.452739,-0.314425,-0.212436,-0.239454,-0.325618,-0.235182,-0.28973,-0.214027,-0.291945,-0.302148,-0.273409,-0.106903,-0.223157,-0.335429,-0.316096,-0.430676,-0.363543,-0.359972,-0.525955,-0.444374,-0.408263,-0.505359,-0.34099,-0.375989,-0.540781,-0.55657,-0.413781,-0.536681,1 +-1.14962,0.970578,-0.256007,-0.120013,-0.165547,0.130341,-0.107002,0.803713,0.891103,0.750888,0.672284,0.535531,0.481482,0.467708,0.568631,0.465914,0.816946,0.472951,0.434245,0.542709,0.664463,0.654446,0.646895,0.409156,0.29233,0.526292,0.511609,0.0151205,0.0218282,0.0724368,-0.123726,-0.465849,-0.356817,-0.694697,-0.930979,-0.837461,-0.566269,-1.06044,-1.13214,-1.57281,-1.04506,-0.659168,-0.859651,-1.22189,-0.58551,-0.336292,-1.28687,-0.400087,-0.366345,-0.733088,-1.21082,0.13331,-0.120977,-0.26976,-0.941893,-1.01217,-1.05905,-0.95614,-0.974005,-0.561395,-0.520545,-0.984419,-0.782384,-0.859436,-0.775276,-0.486176,-0.857777,-0.421849,-0.438466,-0.783482,-0.482663,-0.517289,-0.453789,-0.629656,-0.253461,-0.457314,-0.56034,-0.433758,-0.585826,-0.616397,-0.485986,-0.47392,-0.508926,-0.389722,-0.287512,-0.35714,-0.614589,-0.689777,-0.369658,-0.426576,-0.449403,-0.328007,-0.421319,-0.296749,-0.432359,-0.385916,-0.459867,-0.365895,-0.288584,-0.42688,1 +-1.12294,0.587243,0.0681778,-1.08335,-1.00998,-0.82706,-0.872057,2.02075,1.83843,1.85922,1.82747,1.83815,1.89105,1.75998,1.71834,1.54884,1.17919,0.793914,0.590184,0.333399,0.194355,0.136163,-0.044802,-0.0246316,-0.126434,-0.240097,-0.347868,-0.34895,-0.562637,-0.619173,-0.728225,-0.809193,-0.983476,-1.18861,-1.37337,-1.3129,-1.44889,-1.53039,-1.5827,-1.25152,-0.907497,-1.00127,-1.1876,-0.759814,-0.872773,-1.08089,-0.883853,-0.760732,-1.07286,-0.775424,-0.658772,-0.344279,-0.539718,-0.939251,-1.22542,-1.60501,-1.49597,-1.03344,-0.943483,-1.03081,-0.91487,-0.990603,-0.947624,-0.918587,-1.03654,-1.04422,-0.96031,-1.0613,-1.15732,-1.12328,-1.26139,-1.30532,-1.17125,-1.20939,-1.26725,-1.23581,-1.16565,-1.19715,-1.11328,-1.0623,-1.03034,-1.09436,-1.13118,-0.967677,-1.00038,-0.93547,-0.892358,-0.80322,-0.876972,-0.931605,-0.852311,-0.791701,-0.790294,-0.703421,-0.710397,-0.77246,-0.756163,-0.693944,-0.764146,-0.857089,0 +-1.11393,-0.92078,-0.306624,0.517616,0.721273,0.471256,0.546367,-0.949665,-0.917795,-0.840609,-0.816937,-0.796552,-0.726559,-0.511999,-0.170728,0.357106,0.79837,1.15294,1.21984,1.03446,0.926915,0.998838,0.829478,1.00719,1.01575,0.881051,1.09168,1.02144,0.869649,0.796357,0.909634,0.838156,0.853914,0.918337,0.725641,0.458927,0.52239,0.0377618,-0.268071,-0.246578,-0.337074,-0.67291,-0.952003,-1.41346,-0.945956,-0.956916,-1.06217,-0.99699,-0.914807,-0.922838,-0.729737,0.698136,1.00792,0.637813,-0.0728136,0.195675,-0.136517,-0.888472,-0.891192,-0.825985,-0.691215,-0.658383,-0.655896,-0.577408,-0.654163,-0.511999,-0.436139,-0.287392,-0.201611,-0.137637,-0.0694883,0.00464375,0.0841953,0.172315,0.0640183,-0.103236,0.0836506,0.0216577,0.0209645,0.122446,0.00200192,-0.0303744,0.0272868,0.0869952,0.0211532,-0.116211,-0.154372,0.0476265,-0.101171,-0.272621,-0.0655151,-0.13288,-0.196287,-0.185788,-0.0656771,-0.176814,-0.278272,-0.229374,0.0164833,-0.303248,1 +-1.11255,-0.619525,-0.0451063,-0.697325,-0.630152,-0.67649,-0.701735,2.24654,2.08526,1.89952,1.8423,1.86361,1.92818,1.78795,1.74332,1.40107,1.04254,0.771743,0.390313,0.189659,0.117887,-0.13106,-0.110806,-0.251395,-0.190247,-0.230444,-0.283685,-0.68128,-0.694672,-0.591542,-0.901283,-1.14956,-0.951099,-1.10503,-1.33515,-1.37228,-1.50739,-1.49565,-1.59717,-1.26403,-1.31321,-0.945731,-1.09386,-0.556559,-0.770578,-0.652045,-0.834602,-1.00114,-0.962998,-0.604163,-0.672397,-0.470859,-0.679779,-0.833769,-1.28094,-1.91192,-1.33113,-1.05027,-0.728231,-0.841465,-0.731128,-0.653972,-0.925673,-0.908529,-0.745871,-1.11139,-0.966006,-1.03231,-1.06772,-1.4689,-1.08832,-1.17036,-1.2442,-1.26335,-1.22539,-1.19893,-1.06801,-1.00791,-1.06663,-1.13282,-1.25675,-1.0691,-0.956377,-1.08102,-0.977168,-0.996732,-0.91453,-0.919839,-0.874992,-0.820679,-0.757326,-0.904226,-0.870292,-0.722093,-0.89613,-0.614881,-0.703177,-0.647915,-0.64229,-0.604687,0 +-1.10666,-1.16937,-0.358445,1.60331,1.68609,1.94855,2.08206,-0.958474,-1.01951,-1.02096,-0.970157,-0.942261,-0.908562,-0.754002,-0.467313,-0.128235,0.258045,0.346942,0.29943,0.317103,0.300897,0.401073,0.401529,0.600122,0.661343,0.529834,0.492851,0.733075,0.519061,0.64574,0.590437,0.618615,0.470885,0.851266,0.528652,0.703378,0.0153346,0.0264141,0.232644,0.0348187,-0.700045,-0.450834,-0.907548,-1.68803,-0.769913,-0.890732,-1.07094,-1.35066,-0.603295,-1.0431,-0.77137,0.276966,0.258259,0.34302,0.233995,-0.471305,-0.111992,-0.700797,0.0314137,-0.501307,-0.638428,0.0535035,0.455213,-0.0605877,0.223878,0.52173,0.266199,0.186669,0.772664,0.889263,0.433891,0.811194,1.16229,0.979331,0.673038,1.11997,0.955763,0.801521,0.652957,0.613146,1.06849,0.637228,0.661891,0.454559,0.371584,0.650881,0.341825,0.02096,0.427957,0.185754,0.216803,0.00726178,0.452003,0.224591,0.173174,0.0760033,0.419874,0.405618,0.0812588,0.402854,1 +-1.09592,-1.21259,1.15462,-0.898954,-1.23889,-1.22195,-1.22108,0.442395,0.444556,0.529714,0.601468,0.638784,0.696464,0.610947,0.525384,0.360209,0.0972736,-0.0433024,-0.19888,-0.27266,-0.350238,-0.345543,-0.357635,-0.271526,-0.210967,-0.139644,-0.0739166,-0.0266563,0.0842877,0.245834,0.352127,0.248477,0.334203,0.494108,0.727882,0.777642,0.651248,0.580346,0.719879,0.6328,0.369494,0.328838,0.069358,-0.095748,-0.139352,-0.158162,-0.101796,-0.177964,-0.107043,-0.0900091,0.0259694,-0.0334471,0.105349,0.406688,0.755285,0.772702,0.209746,-0.00251993,-0.148949,-0.170708,-0.172461,-0.140756,-0.131868,-0.150681,-0.197714,-0.19031,-0.281737,-0.357265,-0.466379,-0.487555,-0.546218,-0.595947,-0.581945,-0.594366,-0.619647,-0.626283,-0.632921,-0.63381,-0.615707,-0.609,-0.585523,-0.583381,-0.534386,-0.586713,-0.542287,-0.503237,-0.489748,-0.458665,-0.468303,-0.441146,-0.433416,-0.428075,-0.381975,-0.374973,-0.407122,-0.375125,-0.349927,-0.342934,-0.33326,-0.316246,3 +-1.08206,1.96314,0.377299,-0.998907,-1.08798,-1.04013,-1.0703,2.56243,2.38616,2.32233,2.28739,2.22402,2.21115,2.24113,2.04352,1.76743,1.32176,0.849384,0.523125,0.324872,0.103273,-0.0863969,-0.164406,-0.204097,-0.305429,-0.427312,-0.585812,-0.724448,-0.761974,-0.845611,-0.932036,-1.08137,-1.38544,-1.53872,-1.4835,-1.88434,-1.87312,-1.83183,-1.7258,-1.73972,-1.49745,-1.23987,-1.12919,-1.07852,-1.11366,-0.989541,-0.868198,-1.03626,-0.929586,-0.988735,-0.783792,-0.457995,-0.755455,-1.13624,-1.78254,-2.05506,-1.65286,-1.41227,-1.1576,-1.066,-0.997736,-1.04682,-1.15127,-1.11607,-1.14876,-1.15764,-1.16113,-1.2599,-1.39086,-1.33097,-1.40518,-1.36262,-1.37387,-1.37309,-1.39608,-1.38156,-1.31119,-1.31112,-1.22031,-1.24324,-1.18119,-1.16095,-1.19103,-1.10768,-1.13743,-1.05192,-1.09712,-1.00957,-0.968139,-0.922367,-0.923963,-0.884805,-0.831079,-0.860008,-0.892316,-0.833311,-0.829389,-0.747697,-0.78356,-0.852522,0 +-1.06855,-1.02051,-0.11862,-0.104503,0.03793,-0.611148,-0.56771,-0.804345,-0.802298,-0.810306,-0.73206,-0.581368,-0.530813,-0.423,-0.129479,0.33444,0.493101,0.68962,0.563037,0.502205,0.562813,0.511056,0.479407,0.452009,0.519809,0.6037,0.678734,0.486831,0.531112,0.609211,0.409911,0.655337,0.627914,0.442746,0.495073,0.320788,0.221612,0.284695,0.260763,-0.0959372,-0.220598,-0.44012,-0.274332,-0.724711,-0.934925,-0.532348,-0.483765,-0.880139,-0.574068,-0.763414,-0.46279,0.745526,0.767191,0.678176,0.550987,-0.176447,-0.639496,-0.63822,-0.652319,-0.529143,-0.457023,-0.568462,-0.42457,-0.285329,-0.349499,-0.238248,-0.0990133,-0.00768992,0.0817498,0.15977,0.159926,0.268983,0.264999,0.325872,0.303787,0.288642,0.388866,0.292891,0.242809,0.305673,0.214482,0.194232,0.217637,0.133684,0.110808,0.159141,0.0830695,0.0736499,2.07523e-05,0.00826522,0.039863,0.0161335,0.109728,-0.0037254,-0.0768539,-0.0290505,0.0844591,0.0704973,-0.008438,-0.00223918,1 +-1.05781,-0.0556191,-0.169839,-0.464677,-0.616587,-0.102617,-0.157261,0.928413,0.900343,0.843021,0.805282,0.791625,0.765728,0.593037,0.663968,0.637608,0.371205,0.333422,0.356833,0.213348,0.340712,0.388734,0.331004,0.288703,0.145339,0.126733,-0.0439473,0.0581286,-0.0782156,-0.175303,-0.000687828,-0.277289,-0.142207,-0.302575,-0.361043,-0.965279,-0.864497,-0.550671,-0.688924,-0.286204,-0.37237,-0.602797,-0.217984,-0.483709,-0.25958,-0.289997,-0.291136,-0.0809806,-0.154354,-0.19648,0.133407,-0.142786,-0.0332438,-0.131281,-0.484924,-0.634521,-0.982182,-0.438864,-0.50307,-0.744895,-0.737476,-0.585602,-0.625472,-0.681627,-0.940141,-0.715842,-0.467765,-0.666348,-0.80573,-0.933442,-0.800964,-0.798524,-0.819183,-0.542932,-0.65288,-0.780277,-0.624002,-0.679832,-0.617187,-0.428491,-0.526566,-0.526214,-0.607407,-0.442931,-0.601533,-0.532549,-0.576777,-0.529334,-0.562295,-0.69752,-0.52431,-0.457692,-0.51143,-0.593857,-0.511564,-0.565014,-0.545293,-0.583477,-0.594491,-0.441255,1 +-1.05053,-1.03163,-0.189724,-0.221689,-0.197764,-0.599784,-0.369466,-0.627351,-0.355554,-0.276979,-0.27518,-0.529776,-0.734384,-1.00895,-1.47771,-1.92431,-2.05074,-2.05001,-1.94816,-1.98685,-1.85563,-1.82086,-1.8306,-1.84809,-1.80627,-1.92935,-1.92707,-2.05495,-1.99686,-1.94219,-1.743,-1.5271,-1.53545,-1.73849,-1.95611,-2.39721,-2.02386,-2.13241,-1.85037,-1.55124,-1.16078,-0.889209,-0.51913,-0.504255,-0.173263,0.0163987,-0.409712,-0.464708,-0.339695,-0.124809,-0.0265961,-1.9296,-1.8838,-1.89726,-2.02574,-2.00987,-0.82609,-0.444965,-0.0795276,0.175134,0.474914,0.857204,1.20455,1.31391,1.59914,1.93853,2.06587,2.43652,2.5862,2.71304,2.89336,3.18287,2.96706,2.98158,3.0972,3.12764,2.98633,3.02995,3.04711,3.0362,3.02658,3.14642,3.27452,3.04576,3.14852,3.20071,3.13013,3.00977,3.05088,3.09357,3.04746,3.07267,3.09225,2.98479,2.8695,2.9741,2.82321,2.77755,2.82224,2.92786,7 +-1.04776,1.77126,0.202552,-0.885167,-0.870933,-0.943539,-0.975368,2.37153,2.2311,2.0046,1.87359,1.91684,1.9586,1.90835,1.85324,1.47188,1.1367,0.746198,0.436211,0.278478,0.0732839,0.0585815,-0.0254886,-0.201278,-0.28444,-0.388587,-0.349125,-0.502268,-0.585397,-0.683666,-0.757992,-0.860409,-1.01359,-1.369,-1.32459,-1.67571,-1.83409,-1.80792,-1.79646,-1.49657,-1.28174,-1.4411,-1.05254,-0.960597,-0.995774,-0.925103,-0.916318,-0.999424,-0.906865,-0.755988,-0.856831,-0.507838,-0.678845,-1.15532,-1.75123,-1.78958,-1.27486,-1.03743,-0.962089,-0.883993,-0.918056,-0.841678,-0.871184,-0.960483,-0.965947,-1.05575,-1.24774,-1.08094,-1.07185,-1.10683,-1.33368,-1.26216,-1.20859,-1.26557,-1.31141,-1.22067,-1.24356,-1.22504,-1.09045,-1.028,-1.08562,-1.01874,-1.02363,-1.04969,-1.01767,-1.02319,-0.951005,-0.911903,-0.883514,-0.788345,-0.805615,-0.772458,-0.749205,-0.848787,-0.868735,-0.725255,-0.75073,-0.74645,-0.612884,-0.701646,0 +-1.04776,-1.14047,-0.345189,1.44993,1.67592,2.32924,1.96758,-0.994759,-1.01262,-1.14475,-1.4387,-1.80864,-1.72159,-2.45693,-3.24548,-3.93329,-3.99088,-3.97882,-3.70237,-3.44424,-3.3205,-3.51603,-3.525,-3.69343,-3.64187,-3.649,-3.63275,-3.81703,-3.9963,-4.08004,-3.74174,-3.63255,-3.89558,-3.35913,-3.47454,-3.78459,-3.69632,-3.69832,-2.79316,-1.17693,-0.822831,0.133883,0.272724,1.50007,3.69994,3.89153,3.32919,1.90201,1.42462,1.37487,2.17163,-4.36077,-3.91037,-3.96918,-3.87599,-2.34384,0.869282,2.327,2.32914,2.66974,2.9553,2.96578,3.33191,3.49979,3.83631,4.27628,4.72119,4.59486,4.11407,4.24155,3.94578,3.90094,3.98028,3.67754,3.76752,4.04318,3.94518,4.25375,4.55706,4.41274,4.52063,4.64461,4.60114,4.55406,5.22819,5.32094,5.22891,5.44671,5.65693,5.76906,6.18019,6.08213,5.913,6.41251,6.2624,6.2121,6.38483,6.34881,6.43536,6.15047,8 +-1.0391,-1.15604,-0.0758376,-0.530163,-0.19946,-0.790128,-0.634723,-0.437107,-0.392452,-0.281367,-0.124523,-0.0171071,0.201142,0.128192,0.174811,0.151385,-0.217262,-0.481398,-0.66297,-0.795428,-0.898251,-0.799075,-0.8229,-0.828808,-0.797456,-0.757154,-0.727725,-0.668547,-0.711502,-0.523708,-0.392206,-0.419789,-0.185943,0.0666946,0.0623199,0.232079,0.409671,0.763781,0.430285,0.65971,0.582736,0.462512,0.390614,0.576245,0.519734,0.226718,0.539663,0.217104,0.299032,0.414371,0.615509,-0.483685,-0.468378,-0.27686,0.297094,0.655482,1.1168,0.46762,0.379792,0.479045,0.511263,0.387783,0.512148,0.532326,0.672203,0.644616,0.655207,0.738372,0.746211,0.807927,0.747693,0.782953,0.850361,0.798389,0.741579,0.734866,0.811169,0.685333,0.634481,0.645728,0.656685,0.669671,0.607977,0.543346,0.464607,0.373888,0.446538,0.516852,0.396004,0.436936,0.419307,0.397049,0.36509,0.331088,0.394553,0.307308,0.212223,0.304416,0.26887,0.33479,3 +-1.03356,-0.81103,0.292938,-1.05061,-1.05406,-0.937857,-0.886018,-0.732915,-0.729776,-0.671187,-0.588432,-0.386328,-0.17386,0.0936969,0.401675,0.602501,0.746574,0.723437,0.567327,0.413625,0.400368,0.311398,0.306161,0.249154,0.250398,0.285769,0.247725,0.220495,0.322464,0.310267,0.270368,0.286925,0.276563,0.400912,0.351058,0.293814,0.391388,0.56999,0.27924,0.531866,0.314941,0.0651583,0.1816,-0.122121,-0.222423,-0.307624,-0.299918,-0.340684,-0.369618,-0.353277,-0.261008,0.298056,0.183403,0.309011,0.574886,0.568679,0.265498,-0.122199,-0.310731,-0.169884,-0.165624,-0.273323,-0.241254,-0.16378,-0.00585211,0.0123383,-0.0799556,0.0416027,0.0637161,0.160617,0.100361,0.124572,0.084563,0.125735,0.133646,0.0690737,0.023427,0.0303032,0.049695,0.0243431,0.0065557,-0.079135,-0.0519262,-0.0497429,-0.0304341,-0.110707,-0.157689,-0.118891,-0.0862845,-0.080768,-0.150356,-0.169458,-0.16138,-0.146565,-0.156606,-0.189155,-0.168706,-0.130408,-0.183325,-0.116681,1 +-1.02247,-0.355172,0.485762,-0.94893,-1.22871,-1.02309,-1.13173,2.18169,2.19798,2.08126,2.04738,2.05642,2.03993,2.12546,2.04279,1.69373,1.41287,0.982675,0.629899,0.426065,0.287813,0.06611,-0.0417917,-0.0900706,-0.225123,-0.272166,-0.409863,-0.581734,-0.698913,-0.701175,-0.737448,-1.05753,-1.22009,-1.30099,-1.50204,-1.65624,-1.95811,-1.94807,-1.5731,-1.5827,-1.1739,-1.15021,-1.02667,-1.06847,-0.970223,-0.865652,-0.906914,-0.798741,-0.852595,-1.04933,-0.968664,-0.401724,-0.625931,-1.05619,-1.55679,-2.04664,-1.63956,-1.52685,-1.09245,-1.12943,-1.12894,-0.985522,-0.984304,-1.11758,-1.17574,-1.20051,-1.16137,-1.36202,-1.32194,-1.26424,-1.36389,-1.41527,-1.25576,-1.36813,-1.40783,-1.40976,-1.30539,-1.25417,-1.24783,-1.24373,-1.16009,-1.19672,-1.1231,-1.11785,-1.07453,-1.063,-1.02615,-0.93648,-1.01127,-0.882942,-0.870504,-0.856967,-0.826082,-0.868424,-0.812473,-0.789519,-0.803757,-0.771059,-0.714924,-0.742942,0 +-1.01554,-1.38545,-0.253597,0.110912,-0.0112436,0.530916,0.390005,1.1071,1.0581,0.886001,0.846699,0.889372,0.869589,0.633226,0.633085,0.516993,0.29641,-0.0217174,0.0079643,-0.0813666,-0.211607,-0.295474,-0.296982,-0.200727,-0.38408,-0.49626,-0.449865,-0.365927,-0.471527,-0.56307,-0.463405,-0.583636,-0.477912,-0.41981,-0.763171,-0.707772,-0.713229,-0.412762,0.0269722,-0.340133,0.563804,0.180291,0.320211,0.153632,0.0482738,0.345694,0.739885,0.448888,0.714977,0.614481,0.95392,-0.882227,-0.469382,-0.694552,-0.960408,-0.142005,0.21832,0.523972,0.35314,0.0156376,0.497978,0.101648,0.1364,-0.0694294,0.243496,-0.759122,-0.663394,-0.0604558,-0.658903,-0.495547,-0.580389,-0.628043,-0.620826,-0.576172,-0.777996,-0.7907,-0.62378,-0.865416,-0.55373,-0.575679,-0.557988,-0.852279,-0.318382,-0.515483,-0.5739,-0.376714,-0.613069,-0.482382,-0.65662,-0.39411,-0.510237,-0.380515,-0.443285,-0.653649,-0.384375,-0.351891,-0.468841,-0.563784,-0.339711,-0.135147,0 +-0.981588,-0.892736,1.72707,-1.20054,-1.35758,-1.26741,-1.29368,0.0737125,0.172551,0.271771,0.333069,0.465436,0.442213,0.428081,0.36768,0.313188,0.0236181,-0.102179,-0.213332,-0.22865,-0.295588,-0.269338,-0.315852,-0.267488,-0.175503,-0.147115,-0.0327521,0.0708469,0.0772721,0.213987,0.242533,0.286386,0.273825,0.405179,0.633814,0.669157,0.778417,0.824586,0.712861,0.716233,0.660025,0.324942,0.105512,0.0725242,-0.0118733,-0.171831,-0.0696381,-0.0408955,-0.0644536,-0.0573091,0.0933146,-0.00207074,0.0771321,0.382768,0.620144,0.719773,0.472947,0.212378,0.0509072,0.0185928,0.122458,0.184092,0.172821,0.184738,0.150257,0.0440972,-0.0278964,-0.123165,-0.178686,-0.220613,-0.279214,-0.366956,-0.399046,-0.404864,-0.455165,-0.466433,-0.470263,-0.438547,-0.436171,-0.450655,-0.452524,-0.456495,-0.432572,-0.423127,-0.431269,-0.407856,-0.400279,-0.374469,-0.373834,-0.335364,-0.327421,-0.317699,-0.304092,-0.289335,-0.290242,-0.279439,-0.290236,-0.275076,-0.243215,-0.280447,3 +-0.980548,-1.09998,-0.248174,-0.183776,0.00910409,0.161592,0.320201,-0.0834018,0.100332,0.246859,0.319117,0.33475,0.190087,0.186076,0.0340053,-0.267825,-0.280438,-0.64285,-0.86836,-0.856398,-0.878245,-0.967393,-0.809633,-0.695875,-0.753337,-0.674392,-0.501241,-0.443179,-0.326284,-0.276312,-0.322029,-0.130058,-0.160356,-0.212703,0.504692,0.702882,1.12158,1.11554,0.661099,1.59129,0.955202,1.06244,1.1956,1.08223,0.538025,0.853837,0.632541,0.778378,0.872161,0.8988,0.815194,-0.26436,-0.268113,-0.146944,0.572019,0.996439,1.31485,1.00258,0.95909,0.806944,0.956986,0.88158,0.894082,0.889148,0.89651,0.625905,0.510041,0.460565,0.55517,0.317799,0.121547,0.11011,0.00457696,-0.0641043,0.0151295,-0.0229981,-0.143746,-0.185563,-0.0630091,-0.12656,-0.190653,-0.225685,-0.118706,-0.057438,0.00292663,-0.0515789,-0.132916,-0.167215,-0.0505011,-0.0560223,-0.0960372,-0.0819788,-0.112245,0.076634,0.0559171,-0.059208,-0.0987934,-0.137342,0.0514806,-0.0741673,3 +-0.97154,-1.0562,0.250758,-0.967887,-0.970976,-1.00604,-0.838551,-0.795475,-0.799908,-0.737678,-0.688556,-0.595651,-0.516088,-0.359989,-0.196969,0.0199078,0.265065,0.364796,0.252373,0.203756,0.215446,0.186478,0.172492,0.163728,0.173789,0.180803,0.265388,0.278984,0.311373,0.272136,0.368047,0.40466,0.407891,0.404415,0.357377,0.344032,0.393209,0.176166,0.232593,0.0563029,-0.0658584,-0.018194,-0.216116,-0.277259,-0.290529,-0.390334,-0.379047,-0.374681,-0.277802,-0.278737,-0.269057,0.0682887,0.227659,0.309133,0.374176,0.259917,-0.0190863,-0.251918,-0.177704,-0.138545,-0.0684935,-0.0498014,-0.0112701,0.0856114,0.116596,0.10809,0.219649,0.299604,0.335216,0.452974,0.557179,0.539982,0.583562,0.610425,0.562231,0.575529,0.549697,0.473075,0.482578,0.45707,0.430217,0.401501,0.39348,0.277129,0.288213,0.210407,0.240311,0.242264,0.195554,0.214126,0.140496,0.15345,0.175157,0.141216,0.108759,0.153496,0.062154,0.0854279,0.106134,0.132473,1 +-0.96669,-1.10942,-0.251789,0.0798927,0.32958,0.172956,0.320201,-1.09813,-1.20299,-1.31338,-1.43685,-1.61804,-1.67305,-1.65245,-1.72218,-1.37297,-0.874314,-0.511573,-0.0935338,0.433507,0.603842,0.646006,0.799201,0.825314,1.00217,0.979005,0.901888,0.980726,0.975697,0.823211,0.911084,1.09974,1.28623,1.21388,1.49234,1.73173,1.70887,2.02837,1.37786,1.16176,1.00328,0.700953,0.664336,0.880982,0.344092,0.459829,0.661668,0.743391,0.472304,0.650785,0.471329,1.34544,1.24433,1.22611,1.56013,1.41258,1.05683,0.713492,0.25174,0.197324,0.196914,0.0217977,0.0784643,0.0969875,0.0500554,-0.00131134,-0.00771049,0.237406,0.120129,0.105518,0.387866,0.176897,0.293608,0.358379,0.118598,0.323395,0.124542,0.21414,0.219563,0.0942713,0.24871,0.317274,0.163658,0.0920541,0.150346,0.193083,0.148932,0.0203232,0.0923381,0.173369,0.0292148,0.0222544,0.0966087,0.144957,-0.0328623,-0.0735147,0.0903886,-0.0100395,0.0400427,-0.000751386,1 +-0.943477,-0.92824,0.0940885,-0.676646,-0.726804,-0.980472,-0.93907,0.649361,0.758376,0.959451,1.18973,1.17395,1.17343,1.16847,1.11845,0.907035,0.558784,0.29039,-0.020281,-0.176498,-0.197434,-0.38642,-0.383747,-0.377003,-0.373853,-0.300738,-0.196735,0.144582,-0.0509592,0.0387155,0.166691,0.111085,0.468404,0.308131,0.260227,0.354862,0.512151,0.543996,0.386798,0.489625,0.103625,-0.393522,-0.234202,-0.296157,-0.468443,-0.481497,-0.567981,-0.167207,-0.511507,-0.333493,-0.413548,0.209625,0.129377,0.234265,0.307395,0.244348,-0.0759882,-0.209556,-0.332117,-0.464987,-0.507254,-0.407741,-0.489195,-0.465792,-0.527595,-0.512304,-0.620831,-0.706469,-0.663585,-0.754908,-0.825131,-0.826819,-0.912029,-0.855429,-0.866375,-0.917273,-0.881703,-0.88185,-0.763406,-0.835409,-0.827077,-0.797103,-0.809132,-0.777977,-0.768096,-0.72973,-0.794548,-0.715597,-0.673791,-0.684419,-0.665616,-0.61413,-0.630555,-0.580786,-0.603285,-0.601658,-0.598461,-0.635994,-0.635957,-0.599649,3 +-0.92165,-0.611506,-0.227084,-0.190669,-0.279155,-0.182163,-0.193559,1.87114,1.86258,1.78458,1.64272,1.61235,1.80758,1.66708,1.53549,1.42408,0.979127,0.630044,0.443704,0.123782,-0.0072901,-0.107489,-0.269645,-0.166595,-0.225258,-0.355787,-0.656781,-0.751661,-0.99318,-0.922043,-0.951329,-1.26353,-0.953533,-1.45156,-1.33334,-1.64935,-1.8465,-1.12993,-1.13871,-0.898473,-0.651174,-1.28446,-0.886892,-0.592791,-0.735166,0.121183,-0.116408,-0.598203,-0.0354336,0.269122,-0.0852624,-0.439503,-0.816096,-0.625152,-1.36557,-1.73191,-1.40022,-0.573868,-1.06322,-1.01423,-0.986423,-0.842973,-0.694567,-0.815367,-0.914432,-0.891404,-0.642829,-0.834079,-0.933722,-0.856668,-0.896247,-1.312,-1.10946,-1.12751,-0.998292,-0.914331,-1.18437,-1.05589,-0.987797,-0.809523,-1.27276,-0.985478,-0.806125,-1.102,-0.731428,-0.759346,-0.945355,-0.843672,-0.713673,-0.987075,-0.817666,-0.395973,-0.57933,-0.852635,-0.519357,0.317413,-0.416975,-0.434368,-0.355364,-0.588763,0 +-0.92165,-1.1111,-0.372907,1.69292,1.71661,2.2014,2.19375,-0.120456,-0.285711,-0.155561,0.219419,0.176815,0.190613,0.432501,0.637307,0.843121,0.510925,0.230629,0.335294,0.00186093,-0.0700127,0.153912,-0.0667296,0.0615384,0.469212,-0.208078,0.246186,0.165064,-0.184166,0.33274,0.117719,-0.0771754,-0.198066,-0.108101,-0.317772,-0.587259,0.162674,-0.135939,0.975273,0.510437,-0.287259,0.57215,1.048,-0.389385,1.18451,-0.173212,-0.500308,0.198678,0.612918,-0.238342,-0.708885,0.660789,0.259802,-0.210257,0.0442203,0.509093,0.61872,-0.184629,-0.144325,0.164245,-0.0364038,-0.528446,-0.191199,-0.0293685,0.0853607,-0.187386,-0.285091,-0.345761,-0.337603,-0.196458,-0.269613,-0.312596,-0.290367,-0.192606,-0.57136,-0.23099,-0.252362,-0.178925,-0.261538,-0.243335,-0.357804,-0.514724,-0.345585,-0.259909,-0.686929,-0.464737,-0.221345,-0.252897,-0.267897,-0.16865,-0.399084,-0.206709,-0.142975,-0.23494,0.0143994,-0.233155,-0.371886,-0.227922,-0.0926302,-0.150415,1 +-0.917493,0.567475,-0.344586,1.58608,1.24692,0.84058,0.817208,-0.049258,0.0763836,0.144702,0.171585,0.237294,0.228761,0.0984701,-0.00621434,-0.035234,0.0850394,-0.144601,-0.0303568,-0.0841366,0.126967,0.0611825,0.106918,0.173739,0.093752,-0.113121,-0.227714,0.146204,0.118785,0.0151749,0.0107842,0.309227,0.32814,0.273725,0.293797,0.43192,-0.32594,0.289508,0.533404,1.09578,0.976811,0.69429,0.66179,0.886266,0.527533,-0.00159564,0.752545,0.789861,0.331406,0.51424,0.966671,0.025115,0.21058,-0.0406981,0.543737,0.362899,0.740151,0.514755,0.337333,0.605345,0.297072,-0.21752,0.0736972,0.231058,0.203745,-0.238625,-0.231379,-0.228821,-0.0460658,-0.278769,-0.564826,-0.493407,-0.566347,-0.340213,-0.678518,-0.896471,-0.293959,-0.310138,-0.471335,-0.492541,-0.550612,-0.332688,-0.413326,-0.683039,-0.377866,-0.405718,-0.278917,-0.355419,-0.689626,-0.443177,-0.347763,-0.366565,-0.516223,-0.335233,-0.170406,-0.407776,-0.421407,-0.484004,-0.0940343,-0.240088,1 +-0.917493,0.965007,0.0597417,-1.05405,-0.989628,-0.650921,-0.687774,-0.213724,-0.177416,-0.205763,-0.229945,-0.163269,-0.103689,0.0242187,0.126902,0.25096,0.429825,0.500929,0.436018,0.533117,0.586236,0.490577,0.439329,0.345045,0.282552,0.239282,0.298419,0.208805,0.242456,0.283494,0.245897,0.122849,0.27256,0.247896,0.0952203,0.130547,0.00725322,-0.0318544,-0.10365,-0.0923586,-0.243112,-0.0234212,-0.113805,-0.165685,-0.0554079,-0.156174,0.041294,0.0219692,0.0417266,0.0756559,0.0391413,0.353721,0.380741,0.231657,-0.0389251,-0.235928,-0.08453,-0.0535221,-0.149567,-0.054555,-0.0995999,-0.170765,-0.242605,-0.280556,-0.244305,-0.293298,-0.299062,-0.355671,-0.331273,-0.252211,-0.313485,-0.376801,-0.355937,-0.313297,-0.238725,-0.332958,-0.283416,-0.263133,-0.30152,-0.272013,-0.228914,-0.229798,-0.25695,-0.161089,-0.219735,-0.150262,-0.149984,-0.160101,-0.20178,-0.213112,-0.156692,-0.227669,-0.217041,-0.218037,-0.242158,-0.281127,-0.253377,-0.213082,-0.306305,-0.2811,1 +-0.905367,-0.300367,0.0362413,-0.621499,-0.664065,-0.858311,-0.866473,0.522728,0.648971,0.639967,0.631835,0.589547,0.606035,0.585195,0.511841,0.291239,0.132578,0.0926633,-0.0289385,-0.122888,-0.191269,-0.17429,-0.144293,-0.279318,-0.253617,-0.294296,-0.278308,-0.334539,-0.370091,-0.181132,-0.196587,-0.4687,-0.357866,-0.0124367,-0.0154872,-0.205816,-0.164418,0.15394,0.111617,0.559147,0.632565,0.660863,0.582104,0.545701,0.486176,0.544437,1.03538,0.829332,0.593142,0.763087,0.732853,-0.105013,-0.211901,-0.212592,-0.0219806,0.128887,0.484223,0.5894,0.618682,0.530373,0.416632,0.205455,0.167051,0.181963,-0.0495812,-0.187034,-0.256916,-0.305153,-0.376486,-0.468812,-0.549763,-0.601764,-0.650657,-0.617355,-0.755243,-0.616582,-0.731773,-0.691285,-0.594041,-0.602337,-0.693416,-0.534209,-0.55989,-0.680687,-0.528037,-0.613493,-0.57214,-0.582221,-0.501252,-0.525643,-0.525339,-0.547944,-0.555912,-0.58418,-0.589591,-0.47988,-0.585469,-0.586329,-0.579688,-0.559838,0 +-0.901902,-1.53634,-0.342176,1.31551,1.32492,1.14456,1.11876,1.48844,1.58788,1.69543,1.86649,1.93442,1.76095,1.67023,1.5776,0.702868,0.528161,-0.0324817,-0.206394,-0.54305,-0.613763,-0.586468,-0.530127,-0.676057,-0.476133,-0.50179,-0.620516,-0.371803,-0.333747,-0.140089,0.197492,0.371392,0.606888,0.129063,0.102694,1.00441,0.757607,0.896508,0.731809,-0.122436,0.0689703,-0.271437,-0.344878,0.138925,-0.926751,-1.05916,-0.121493,-1.421,-0.538953,-0.3346,-1.03229,0.605521,0.858978,0.418674,0.447235,-0.222238,-1.17023,-0.383313,-0.323087,-0.394181,-1.11229,-1.19715,-0.694307,-1.15095,-0.730022,-0.359232,-0.907611,-0.92659,-1.08531,-1.41701,-1.42291,-1.43912,-1.11151,-1.0675,-1.33223,-1.34436,-1.10861,-1.0695,-1.42588,-1.38013,-1.16833,-0.870171,-1.54682,-0.952306,-0.799641,-1.10991,-1.08646,-0.977773,-0.938649,-0.93178,-1.022,-0.915388,-0.697567,-0.979717,-1.15764,-1.02528,-0.753169,-0.656932,-0.640025,-0.915464,3 +-0.90017,0.181622,-0.141518,-0.259602,-0.202851,-0.295802,-0.366674,0.364002,0.325642,0.177009,0.102487,0.0198312,0.0199722,0.0543609,0.0737093,0.0927352,0.146654,0.265598,0.422524,0.674843,0.814696,0.663888,0.779098,0.828784,0.894951,0.630667,0.576972,0.513981,0.27251,0.347919,0.292369,0.160637,0.159377,-0.0132206,-0.0333786,-0.336961,-0.503679,-0.405568,-0.475407,-0.6803,-0.748835,-0.884079,-0.641679,-0.781009,-0.725287,-0.500049,-0.216264,-0.536709,-0.677455,-0.669942,-0.423106,0.076074,0.632349,0.361897,-0.319158,-0.80966,-0.580676,-1.06794,-0.931251,-0.702648,-1.09577,-0.894768,-0.87749,-0.868789,-0.97523,-0.747345,-0.740962,-0.727655,-0.756038,-0.423949,-0.497038,-0.443608,-0.523797,-0.418568,0.013082,-0.249802,-0.36062,-0.24064,-0.11774,-0.24764,-0.19016,-0.225457,-0.24932,-0.219933,-0.115341,-0.269094,-0.411729,-0.172615,-0.276549,-0.303837,-0.288418,-0.317953,-0.329334,-0.235273,-0.257227,-0.119229,-0.305986,-0.514959,-0.272511,-0.348176,1 +-0.898784,-1.07795,-0.266854,0.188462,0.168494,0.204206,0.127541,0.146014,0.312364,0.329035,0.27936,0.147257,0.0496532,-0.19718,-0.678189,-1.17564,-1.49576,-1.70787,-1.69059,-1.3791,-1.43059,-1.41706,-1.4663,-1.5247,-1.5126,-1.60248,-1.73962,-1.58495,-1.60852,-1.73472,-1.82295,-1.69775,-1.36078,-1.14436,-1.0853,-0.458127,0.192707,0.986684,1.39246,1.80303,1.02915,1.27795,1.89659,1.83634,1.66916,1.57322,1.58231,1.63015,1.58645,1.8655,1.81003,-1.5787,-1.65002,-1.54161,-0.99458,1.11319,1.56981,1.812,2.10563,2.14117,2.08116,1.73263,1.74409,1.67152,1.9757,1.63072,1.36953,1.47611,1.45377,1.26956,1.07064,0.97219,0.917832,0.641969,0.634389,0.98874,0.86233,0.606911,0.721103,0.60342,0.832617,0.812215,0.70942,0.608833,0.697606,0.901376,0.73249,0.84785,0.893612,0.846164,0.824398,1.05676,0.690919,0.711442,0.886241,0.945774,0.845741,0.754697,0.964582,1.03574,2 +-0.898438,-0.610923,-0.0210033,-0.368171,-0.277459,-0.756036,-0.754786,-0.914402,-0.86774,-0.944895,-0.91475,-0.859463,-0.749248,-0.527392,-0.378526,0.0427665,0.491203,1.02082,0.94684,0.891113,0.948198,0.911005,1.0184,0.914704,0.933531,0.885117,0.896327,0.894859,0.874835,0.900109,0.840178,0.820709,0.972117,0.730312,0.401922,0.431284,0.255485,-0.207575,-0.353137,-0.536769,-0.716739,-0.884297,-0.879262,-1.06601,-1.09058,-0.915285,-1.10642,-0.923051,-0.901977,-0.999944,-0.883659,1.08314,0.765311,0.568703,0.315359,-0.372127,-0.890279,-0.577011,-0.621278,-0.580927,-0.658722,-0.409208,-0.438954,-0.351799,-0.334323,-0.281026,-0.211182,-0.0851438,0.0356989,0.0865981,0.0687535,0.0480771,0.296621,0.266058,0.160426,0.191384,0.144441,0.28745,0.18488,0.128871,0.109474,0.179866,0.0832073,0.0465922,0.0649294,0.0945544,0.074385,0.0621811,0.00502572,-0.0779916,0.0201388,-0.0131761,-0.0355626,-0.0675869,-0.0878625,-0.0531927,-0.0422654,-0.17071,-0.167403,-0.172982,1 +-0.881461,0.689697,0.0368439,-0.649072,-0.586066,-0.988995,-0.925109,-1.19303,-1.22669,-1.32254,-1.28055,-1.06645,-1.01388,-0.962588,-0.632148,0.0015363,0.644095,0.881871,1.00275,1.04253,1.19759,1.11583,1.06559,1.18213,1.08185,1.19103,1.22293,1.15582,1.08139,1.01182,0.99754,1.13335,0.94593,0.908149,0.917491,0.485133,0.389405,0.296121,-0.288662,-0.562408,-0.665611,-0.960365,-0.712077,-0.97498,-0.97913,-0.794812,-0.843951,-0.842343,-0.846021,-0.755195,-0.66252,1.57056,1.16926,0.9187,0.547956,-0.117605,-0.834663,-0.819026,-0.937574,-0.804711,-0.717557,-0.670579,-0.571365,-0.556136,-0.49039,-0.351335,-0.310136,-0.100689,0.0348928,0.189212,0.234132,0.261565,0.246435,0.283114,0.188861,0.298598,0.279187,0.271356,0.24363,0.243706,0.183234,0.142218,0.145591,0.196522,0.0995012,0.14035,0.0755148,-0.005144,-0.0188633,0.00402655,-0.0086791,0.0228519,0.00150523,-0.0116315,-0.0833622,-0.0533858,-0.0540553,-0.0951785,-0.06129,-0.125109,1 +-0.873146,-0.796203,-0.291559,0.731308,0.653447,0.320685,0.359291,-0.992715,-1.01543,-0.871283,-0.833126,-0.502108,-0.253371,0.0428236,0.269003,0.643974,0.902456,0.974083,0.785152,0.61284,0.519949,0.645871,0.570747,0.644148,0.690097,0.711916,0.634496,0.895727,0.806021,0.966462,1.049,0.870664,1.09008,0.675876,0.353031,0.212849,-0.343088,-0.512685,-0.884829,-1.36576,-0.657428,-1.29062,-0.654335,-0.979539,-0.608794,-0.982426,-1.0826,-0.466009,-0.844558,-0.351519,-0.358756,1.02973,0.907221,0.817675,0.474305,-1.05059,-0.884891,-0.969451,-1.03885,-0.941493,-0.549568,-0.539774,-0.531806,-0.546173,-0.579028,-0.44351,-0.331016,-0.252334,0.205032,0.211145,-0.165924,-0.255103,0.108483,0.139661,0.241642,0.282302,0.419344,0.125064,0.237906,0.298641,0.185512,0.312755,0.0846897,-0.0550023,0.0821845,0.124995,-0.0631106,-0.125477,0.058084,0.0025324,-0.0335777,-0.138585,0.0105933,-0.0505114,-0.137302,-0.180617,-0.139237,0.0509456,-0.0187747,-0.178481,1 +-0.862752,-1.12674,0.0603443,-0.800725,-0.835325,-0.4691,-0.523036,-1.07867,-1.10302,-1.14186,-1.24589,-1.35298,-1.39923,-1.34349,-1.1663,-0.815621,-0.409989,-0.00319912,0.168402,0.268333,0.43947,0.44452,0.395685,0.426087,0.404075,0.483349,0.591319,0.577598,0.644881,0.703095,0.726596,0.822901,0.968106,1.04888,0.952817,0.982185,0.983473,0.874811,0.656018,0.706199,0.645416,0.522187,0.482874,0.535636,0.446469,0.397326,0.48403,0.512908,0.573645,0.380256,0.383572,0.52893,0.713364,0.78116,0.850611,0.701344,0.907958,0.567202,0.600904,0.547607,0.575692,0.396511,0.186039,0.26075,0.234679,0.239976,0.265352,0.340637,0.294861,0.347474,0.434701,0.548114,0.582797,0.442488,0.508169,0.47602,0.453943,0.397065,0.352542,0.355303,0.36859,0.41595,0.279744,0.326162,0.315876,0.309421,0.21553,0.182931,0.237566,0.200163,0.1137,0.107154,0.101521,0.110048,0.109869,0.0599502,0.00819226,0.0696222,0.0475965,-0.0405874,1 +-0.861366,-1.07042,-0.340368,2.22543,2.02352,0.0167033,0.658054,-0.799241,-0.80901,-0.861447,-1.12418,-1.68322,-1.90431,-2.51035,-3.21166,-3.6526,-3.83125,-3.76755,-3.77504,-3.55081,-3.45006,-3.30779,-3.41327,-3.47636,-3.63659,-3.48838,-3.62193,-3.53569,-3.56684,-3.61327,-3.4735,-3.32595,-3.32673,-3.37652,-3.52343,-3.24061,-3.02329,-3.20712,-2.70915,-1.511,-1.04652,-0.157374,0.883798,1.79816,3.36217,3.70552,2.65376,1.95329,0.883505,0.601352,-0.372307,-3.2372,-3.38359,-3.40129,-3.0836,-2.27303,-0.0215324,1.45067,1.84666,1.92803,1.97515,1.91867,2.057,2.52355,2.92201,3.08916,3.52334,3.71743,3.8266,3.72114,3.67244,3.72312,3.63174,3.82082,3.9149,4.05929,3.96499,4.27277,4.69191,4.71144,4.79746,4.47397,4.80496,4.85745,4.95622,5.04145,5.27045,5.32195,5.59793,5.59783,5.76641,5.88596,6.02879,5.87083,6.26711,6.54139,6.33308,6.49418,6.36987,6.23032,8 +-0.848894,-1.06764,-0.354227,2.43912,2.5,2.05935,2.00667,-1.35721,-1.49027,-1.48757,-1.64763,-1.7611,-1.79378,-2.05003,-1.71638,-1.1481,-0.771362,-0.193571,0.686509,1.0525,0.82047,1.06169,1.72792,1.53326,1.42168,1.55864,1.55182,1.77591,1.8997,1.29555,1.70801,2.06616,2.20738,1.3526,1.47507,1.94588,2.68485,0.772291,1.54078,0.128512,1.51687,2.0742,-0.18433,-0.631382,-0.343972,-0.730055,0.283173,0.177793,-0.0585498,0.329611,0.246709,1.34805,1.6529,1.92734,2.29944,1.32627,0.0299734,0.408358,-0.355036,-0.587967,-0.193193,-0.23857,-0.0341517,-0.488396,-0.513342,-0.530055,-0.27315,-0.0638242,-0.115436,-0.010516,-0.0505479,-0.113398,0.135526,-0.426347,-0.202564,-0.0422532,0.474031,0.356133,0.145834,-0.0571782,-0.069705,-0.0563941,-0.343228,-1.15586,-0.0323979,0.385417,0.159623,-0.0475732,-0.633249,-0.286767,-0.020712,-0.0912881,-0.235153,-0.0934664,0.000350402,-0.215822,0.0366784,-0.403306,0.0143455,-0.16846,1 +-0.847855,2.06652,-0.0704144,-0.511207,-0.564022,-0.704899,-0.830175,0.540471,0.600262,0.63289,0.574534,0.511367,0.454295,0.480795,0.452051,0.283518,0.155975,0.104049,0.133968,0.0600196,0.0212304,0.0977044,0.0142215,-0.00143942,-0.0666717,-0.0769609,-0.0676994,-0.0731554,-0.110765,-0.19629,-0.22282,-0.225099,-0.0977965,-0.234633,-0.249044,-0.360146,0.0405425,-0.0311891,0.0336216,0.110853,0.0425051,0.016186,0.227743,0.366293,0.150584,-0.0168823,0.46701,0.465705,0.404037,0.55163,0.544266,0.000632593,-0.13077,-0.310475,-0.457331,-0.32719,0.422963,0.329567,0.352203,0.178993,-0.0889812,0.0173834,-0.0799924,-0.233585,-0.258892,-0.270966,-0.354454,-0.392816,-0.563421,-0.592443,-0.47462,-0.542598,-0.437031,-0.587963,-0.521558,-0.611347,-0.63234,-0.635393,-0.582102,-0.517096,-0.613682,-0.503822,-0.546166,-0.524386,-0.554548,-0.544006,-0.46672,-0.525097,-0.5014,-0.501608,-0.472145,-0.480916,-0.452076,-0.436575,-0.575225,-0.434644,-0.431631,-0.55429,-0.438785,-0.397088,1 +-0.842311,-0.92064,-0.287341,0.109189,0.317711,0.511029,0.588249,0.242836,0.151306,0.101536,0.106975,-0.241157,-0.199687,-0.355098,-0.403688,-0.407199,0.050922,0.17978,0.158538,0.200569,0.348477,0.373489,0.435705,0.257987,0.391638,0.0581101,0.241506,0.182781,0.176108,0.416522,-0.0412611,0.268634,0.0804868,0.0349021,0.472496,-0.0374553,0.426674,0.495824,0.281818,-0.147149,0.845856,0.338571,0.0871474,0.343,0.0170448,0.660744,0.0553374,-0.0360106,0.240704,-0.279899,0.5214,0.366813,0.185792,0.340432,0.501816,0.419066,-0.338089,0.378273,0.358053,0.19173,-0.0301963,0.212881,0.105556,0.0316099,-0.0623706,-0.266185,-0.416984,-0.34262,-0.386214,-0.322734,-0.14596,-0.447783,-0.274161,-0.503634,-0.52653,-0.493782,-0.381379,-0.372277,-0.118359,-0.26363,-0.516692,-0.360035,-0.35162,-0.377651,-0.24436,-0.395722,-0.392016,-0.292989,-0.546149,-0.325026,-0.393077,-0.27571,-0.440961,-0.148053,-0.280196,-0.386927,-0.028313,-0.339185,-0.484428,-0.330598,1 +-0.836768,-1.27423,-0.282521,0.4056,0.436405,0.516711,0.417927,-0.615347,-0.634088,-0.550428,-0.44359,-0.441641,-0.293729,-0.161426,0.276532,0.523747,0.683748,1.00405,0.826874,0.626304,0.58089,0.619975,0.504527,0.639678,0.50477,0.428738,0.482009,0.716018,0.468167,0.626256,0.657918,0.314973,0.50292,0.62014,0.160584,0.0772321,-0.963072,-0.945846,-0.0164134,-0.50664,-0.552561,-0.165825,-0.610218,-0.52697,-0.426896,-0.569407,-0.979457,-0.458692,-0.755192,-0.830447,-0.796603,0.806959,0.58747,0.240397,0.100231,0.0155369,-0.75506,-0.768028,-0.520351,-0.539353,-0.698434,-0.576336,-0.256244,-0.566848,-0.422415,-0.351693,-0.285674,-0.0410063,-0.0391059,-0.139658,-0.0278568,-0.0741831,-0.215727,-0.0348183,0.0663856,0.306523,0.103293,-0.0958624,0.0949589,0.127682,0.115876,-0.0417018,-0.056467,-0.0680807,0.0310836,0.105335,-0.164949,0.00257322,0.0567761,-0.19503,0.104506,-0.106954,-0.111035,-0.236073,-0.19628,-0.150302,-0.202729,-0.108416,0.00274499,-0.0764258,1 +-0.831917,0.585471,0.317041,-1.11437,-1.06763,-1.06286,-1.00887,1.12198,0.973252,0.83936,0.832601,0.806788,0.784588,0.753692,0.693055,0.705301,0.568629,0.41005,0.27645,0.289611,0.214335,0.247149,0.181811,0.208474,0.0947481,0.0607433,0.0320554,-0.118443,-0.111922,-0.274171,-0.300234,-0.435437,-0.377282,-0.581188,-0.824598,-0.884928,-0.638,-0.778576,-1.03925,-0.62196,-0.544928,-0.4209,-0.280794,-0.303321,-0.467524,-0.512604,-0.22293,-0.421134,-0.369684,-0.459162,-0.53059,-0.0085306,-0.148422,-0.468535,-0.76785,-0.801477,-0.734348,-0.516758,-0.4642,-0.572157,-0.556893,-0.546517,-0.510572,-0.602287,-0.525143,-0.596948,-0.616409,-0.634464,-0.566994,-0.636709,-0.613675,-0.629827,-0.633952,-0.563705,-0.632212,-0.580836,-0.599486,-0.579002,-0.59521,-0.559822,-0.565316,-0.574557,-0.53403,-0.534185,-0.588582,-0.58372,-0.5412,-0.506377,-0.528015,-0.541681,-0.49592,-0.489701,-0.451928,-0.503492,-0.476637,-0.472458,-0.553134,-0.456059,-0.451565,-0.48315,1 +-0.823602,-1.34104,-0.324701,0.779561,0.607665,0.800807,0.856298,-1.03282,-1.09507,-0.97034,-0.900462,-0.784897,-0.797177,-0.711255,-0.332818,0.128296,0.168237,0.426799,0.449623,0.36331,0.26655,0.255098,0.409671,0.446124,0.41806,0.505439,0.517,0.374188,0.472996,0.466057,0.353618,0.561493,0.543525,0.317672,0.658947,0.453192,0.181545,-0.00374513,-0.677728,-0.796214,-0.852705,-0.790838,-0.68781,-0.420217,-0.646824,-0.780111,-0.7691,-0.640431,-0.697579,-0.504946,-0.549744,0.447701,0.553256,0.389156,0.00163291,-0.0493738,-0.753004,-0.888079,-0.615123,-0.736711,-0.207822,-0.171385,-0.267363,-0.1303,-0.0147942,0.112551,0.012531,-0.0305252,0.538346,0.817232,0.60645,0.603221,0.863032,0.900936,1.00067,0.911823,0.871852,0.713065,0.70111,0.711281,0.744318,0.784536,0.691866,0.574454,0.7172,0.462391,0.386104,0.623384,0.347963,0.584943,0.316073,0.354989,0.288006,0.51912,0.239099,0.318472,0.0937141,0.3251,0.524384,0.348129,1 +-0.820484,0.805066,-0.0589655,-0.721452,-0.462284,-0.690694,-0.757578,2.1221,2.0335,1.85191,1.61552,1.63703,1.63022,1.54821,1.63426,1.36577,1.04474,0.724658,0.492402,0.239194,0.159988,-0.0449135,-0.0488976,-0.0634969,-0.196331,-0.302915,-0.35547,-0.310652,-0.418722,-0.657711,-0.432609,-0.742642,-0.95486,-1.00642,-1.28817,-1.0981,-1.29715,-1.41159,-1.43189,-1.01657,-0.926329,-0.852605,-0.86277,-0.703885,-0.657614,-0.766912,-0.812521,-0.714277,-0.679288,-0.738129,-0.947736,-0.172785,-0.436821,-0.546958,-1.21609,-1.61426,-1.0329,-0.831607,-0.808455,-0.54552,-0.983276,-0.921442,-0.943758,-0.933683,-0.64538,-1.0954,-0.768145,-1.06001,-1.38099,-1.14062,-1.21181,-1.28851,-1.29499,-1.11474,-1.43227,-1.2182,-1.15146,-1.13054,-1.25033,-1.25222,-1.12077,-0.947751,-1.10019,-1.22478,-0.901705,-0.954711,-0.920161,-0.996057,-0.912656,-1.01487,-0.85612,-0.770197,-0.817335,-0.74542,-0.732286,-0.720549,-0.730122,-0.733561,-0.771265,-0.567516,0 +-0.813555,-1.00925,-0.336752,1.79287,1.47583,0.92865,1.00428,-0.139721,0.00751293,0.109555,0.264837,0.0939416,0.0385914,0.189048,0.129227,-0.668545,-0.615974,-0.739772,-0.568293,-0.941019,-1.15719,-0.909436,-1.28859,-1.17773,-0.958685,-0.969952,-1.29473,-0.988758,-1.17659,-1.37428,-0.96405,-0.612509,-0.762648,-0.862301,-0.71781,-0.7816,-0.383188,-0.115248,0.386969,0.416172,0.148828,1.0563,1.6121,1.72411,1.20787,0.662423,1.40757,1.12751,1.34678,1.52466,1.4305,-0.790289,-1.10368,-1.06802,-0.698217,-0.421118,1.27114,1.26235,1.37341,1.20232,0.658638,1.10654,1.06334,1.03584,1.29235,1.3861,1.01622,0.527963,0.968023,0.722764,0.458238,0.617645,0.376243,0.254222,0.594512,0.357313,0.475986,0.505674,0.242026,0.587923,0.369511,0.582198,0.283137,0.383458,0.341483,0.751503,0.530907,0.5043,0.606726,0.477138,0.649116,0.623839,0.657614,0.444482,0.792692,0.710626,0.890843,0.894783,0.752616,0.36873,0 +-0.796925,-1.04855,-0.263841,1.9428,2.08796,0.479779,0.384421,0.3194,0.160787,0.422044,0.351788,0.0917547,0.603589,0.521981,0.390998,0.891635,0.317344,0.93911,1.13242,1.07572,1.29944,1.01256,1.06814,0.962964,0.943141,0.766838,0.458824,0.638674,0.462158,0.0740347,0.311581,-0.0461849,-0.556723,-1.02196,-0.601813,-1.46652,-1.43731,-1.43341,-3.09081,-1.23219,-2.78794,-1.26771,-1.24917,-1.06036,-0.880074,-1.42043,-0.977795,-1.16194,-1.42587,-0.0933449,-0.699028,0.745412,0.306083,-0.214699,-0.721766,-1.84839,-2.07061,-1.63892,-1.71361,-1.4421,-1.06018,-1.22156,-1.25019,-0.890455,-0.740694,-0.762718,-0.958736,-0.624091,-0.711907,-0.677676,-0.591402,-0.380259,-0.549441,-0.393381,-0.244963,-0.226848,-0.347483,-0.432613,-0.36082,-0.278107,-0.403946,-0.450262,-0.206488,-0.182251,-0.346518,-0.524978,-0.354138,-0.170631,-0.301739,-0.204851,-0.266892,-0.414094,-0.224358,-0.168449,-0.235849,-0.110276,-0.264298,-0.142055,-0.186968,0.0266286,1 +-0.793461,-1.03452,-0.115005,0.076446,0.0531907,-0.131026,-0.132131,-0.696905,-0.738711,-0.771456,-0.876867,-0.920594,-1.12774,-1.33469,-1.52293,-1.73842,-1.85418,-1.79465,-1.69911,-1.77509,-1.6686,-1.59979,-1.54496,-1.43356,-1.31836,-1.30143,-1.24943,-1.19723,-1.12569,-1.06134,-1.05537,-0.920477,-0.634566,-0.532276,-0.40072,-0.171088,0.0222583,0.52684,0.581662,0.350653,0.504629,0.660729,0.585651,0.753697,0.436248,0.488327,0.768616,0.724979,0.742962,1.00131,1.13121,-1.50187,-1.15597,-0.794707,-0.229648,0.389893,0.586021,0.704153,1.0335,1.15517,1.33822,1.53647,1.50241,1.67013,1.56266,1.66445,1.86316,2.16183,2.23066,2.24326,2.42922,2.52408,2.41577,2.57089,2.43392,2.34293,2.33664,2.22916,1.99966,2.11423,2.03432,1.97367,2.06104,2.03329,1.93296,1.8987,1.96952,1.80498,1.78275,1.85274,1.78627,1.76991,1.78311,1.76484,1.57657,1.65546,1.63352,1.62475,1.76789,1.93282,6 +-0.792421,0.193418,-0.0987354,-0.709389,-0.569109,-0.378189,-0.327583,0.286523,0.375437,0.435803,0.438486,0.460164,0.447064,0.348674,0.352312,0.133794,0.0793611,0.034524,0.0977624,0.0102853,0.113786,0.0244518,0.00611088,0.0167362,-0.075903,-0.0959109,0.0277748,-0.0395227,-0.0133231,-0.034916,-0.0922847,-0.104785,-0.0271619,-0.00175765,-0.0867643,0.00885381,-0.0641044,0.201607,0.579422,0.442961,0.669406,0.650157,0.429085,0.334651,0.400201,0.399238,0.747188,0.605067,0.38205,0.866602,0.531397,-0.0789487,-0.136031,-0.185503,0.017308,0.413937,0.680361,0.686896,0.569368,0.515419,0.308003,0.170287,0.104231,-0.065489,-0.0910229,-0.309278,-0.181293,-0.283613,-0.475632,-0.503597,-0.555626,-0.324981,-0.706906,-0.687676,-0.535803,-0.655379,-0.588687,-0.554627,-0.565082,-0.614074,-0.563397,-0.572757,-0.553918,-0.611285,-0.522877,-0.512729,-0.504563,-0.595483,-0.412559,-0.545526,-0.61285,-0.494358,-0.541374,-0.620058,-0.548379,-0.555217,-0.516611,-0.606491,-0.604557,-0.591181,1 +-0.758468,-0.943323,-0.360855,1.00532,1.19266,1.46559,1.59343,-0.927249,-0.870072,-0.931082,-0.751053,-0.606005,-0.571491,-0.197017,-0.00298781,0.282796,0.520924,0.748842,0.728311,0.576427,0.486512,0.568341,0.440628,0.576753,0.778969,0.583981,0.869843,0.821994,0.782089,0.73128,1.07005,0.935421,0.417509,0.96527,1.21514,1.17659,0.552681,0.528316,0.24535,-0.210671,-0.304389,-0.00691649,-0.914989,-0.72097,-0.662918,-0.971766,-0.764232,-0.612501,-1.12253,-0.547468,-0.597335,0.622325,0.686119,0.980847,0.985615,0.204472,-0.0879875,-0.760805,-0.586255,-0.48509,-0.556042,0.0302409,-0.331536,-0.560738,-0.500787,-0.254897,-0.174237,-0.191723,-0.404303,-0.109922,0.151787,0.230929,0.164644,0.198922,0.0378318,-0.0916425,-0.0913114,0.0744081,0.285756,-0.16049,-0.134726,-0.0907013,0.141821,-0.0200349,-0.151522,0.0489989,0.0144207,-0.237264,0.0804878,-0.020523,0.18986,-0.224176,-0.120559,-0.0858073,-0.118778,0.0229105,-0.0316678,0.0203315,0.096035,-0.0840944,1 +-0.749807,0.585914,0.0675752,-0.802448,-0.775977,-0.923653,-0.899979,0.212441,0.314523,0.278729,0.262375,0.182452,0.301166,0.300912,0.384536,0.397411,0.569388,0.501853,0.600342,0.65549,0.700248,0.739742,0.598441,0.454251,0.464706,0.428517,0.379245,0.418012,0.463438,0.391643,0.307662,0.307935,0.386608,0.145125,0.270212,0.119388,-0.128408,-0.114004,-0.372022,-0.238788,-0.333437,-0.293353,-0.110617,-0.372922,-0.279869,-0.312119,-0.0950772,-0.268378,-0.21529,-0.237736,-0.0985973,0.534772,0.443979,0.279982,0.00915101,-0.330344,-0.220619,-0.305078,-0.27602,-0.34347,-0.377654,-0.374572,-0.384278,-0.43285,-0.501594,-0.545829,-0.609676,-0.70758,-0.634519,-0.762548,-0.838969,-0.740083,-0.796145,-0.842463,-0.808501,-0.855049,-0.763659,-0.79287,-0.775857,-0.711193,-0.718263,-0.772925,-0.722545,-0.657186,-0.696604,-0.657719,-0.613177,-0.661999,-0.722573,-0.596484,-0.549911,-0.552795,-0.584852,-0.510825,-0.583229,-0.570677,-0.5335,-0.588906,-0.545535,-0.544274,1 +-0.749807,-1.05825,-0.266251,0.272905,0.455057,0.530916,0.320201,-1.0824,-1.09703,-1.15351,-1.35349,-1.44839,-1.45721,-1.41965,-1.13448,-0.8662,-0.540591,-0.0196015,0.40131,0.614228,0.820037,0.81037,0.886616,0.937618,0.827281,0.894999,0.885107,0.856738,1.01518,0.836539,0.943347,0.985322,1.12224,0.999361,1.24049,0.957202,0.936982,1.25897,0.991128,0.506258,0.521009,0.746981,0.380947,0.411615,0.283608,0.460242,0.165765,0.729684,0.24589,0.476925,0.383673,1.10924,0.994553,0.859211,1.12428,1.11779,0.648849,0.588869,0.335132,0.28507,0.279004,0.0175802,-0.034908,0.0162315,-0.00262937,0.0904175,-0.0508339,-0.11036,0.09133,0.0886812,-0.0436399,-0.0487068,0.16861,0.331399,0.0949323,-0.013198,0.136823,0.130719,0.0428895,0.0812591,0.0828691,0.0817604,0.16734,0.149787,-0.0163455,-0.0296574,0.1397,0.047118,-0.191546,0.0548497,0.0361932,-0.137322,-0.0695608,0.0176665,-0.118251,-0.146349,0.00215726,-0.197189,-0.124529,0.0892977,1 +-0.74461,1.36331,0.226655,-0.886891,-0.896368,-1.01456,-1.02563,0.986053,0.9138,0.798182,0.785101,0.696524,0.608236,0.545979,0.395211,0.203951,-0.0164936,-0.174136,-0.269303,-0.189859,-0.159896,-0.244903,-0.245728,-0.246475,-0.195711,-0.195777,-0.217835,-0.233649,-0.166352,-0.208032,-0.225218,-0.30791,-0.225553,-0.318236,-0.413373,-0.144425,-0.0768529,-0.172901,-0.250696,-0.0236324,-0.14344,0.0361953,-0.0766863,-0.0708958,0.0439916,0.15529,0.11483,0.107963,0.178995,0.0963062,0.110275,-0.227647,-0.207245,-0.22863,-0.345128,-0.232015,-0.262365,0.110458,0.15646,0.149345,-0.152738,-0.147014,-0.0967754,-0.117446,-0.283478,-0.346256,-0.350314,-0.305182,-0.329512,-0.356619,-0.428397,-0.408447,-0.422016,-0.421376,-0.395468,-0.457866,-0.4491,-0.42766,-0.4903,-0.476552,-0.385485,-0.389936,-0.380399,-0.377966,-0.458809,-0.473304,-0.36435,-0.375678,-0.438326,-0.365619,-0.411571,-0.390892,-0.363905,-0.366271,-0.428877,-0.384004,-0.403035,-0.407748,-0.375025,-0.366351,3 +-0.734563,-0.985563,-0.29879,0.129869,0.0735384,0.388868,0.381629,-0.460742,-0.52795,-0.349621,-0.262194,-0.152067,-0.0423876,-0.180628,-0.375916,-0.766184,-1.34213,-1.75535,-1.86953,-1.99962,-1.89157,-1.8249,-1.83533,-1.66539,-1.82337,-1.58146,-1.59173,-1.39895,-1.37901,-1.26763,-1.09319,-0.9879,-0.461523,-0.112631,-0.035476,0.371494,0.592734,0.473555,1.15461,1.71125,1.29763,1.20268,1.11619,1.41447,1.46962,1.17586,0.966276,1.68645,1.35924,1.43579,1.75797,-1.67987,-1.15198,-0.776063,0.0864001,1.26949,1.6194,1.46259,1.29112,1.73484,1.65192,1.83776,1.74429,1.61988,1.78059,1.75019,1.65546,1.63863,1.49129,1.65183,1.74279,1.62428,1.55783,1.2897,1.4689,1.50808,1.43604,1.52888,1.43975,1.23426,1.33624,1.41609,1.29366,1.33365,1.22166,1.17476,1.20547,1.05617,1.07498,0.987773,0.997833,1.17485,1.02601,1.19126,0.949453,0.975977,1.0218,0.679946,1.25703,0.890473,2 +-0.722783,-0.983045,-0.273482,0.422834,0.327884,0.12466,0.163839,-0.936354,-1.05789,-1.12234,-1.1996,-1.34283,-1.42575,-1.21097,-1.30638,-1.23511,-0.620772,-0.253865,0.0713535,0.231202,0.352412,0.507393,0.748731,0.849378,0.702846,0.798992,0.961279,0.895022,0.935194,0.91378,1.03857,1.14354,1.19828,1.1567,1.67035,1.40158,1.77115,1.4585,1.41521,1.04457,1.14047,0.750034,0.615888,0.221154,0.232005,0.412385,-0.180064,0.151337,0.149433,0.439593,0.407653,1.18805,0.942919,1.43986,1.14438,1.30198,0.586561,0.718281,0.372871,0.237715,0.208231,0.0850213,0.109812,0.0731843,-0.16642,0.135961,0.166433,-0.0634468,0.0536057,0.0215244,0.50783,0.438759,0.0276177,0.12409,0.424881,0.191694,0.200047,0.398946,0.151076,0.227303,0.15673,0.098333,0.0420037,0.227555,0.188821,-0.107486,-0.0856801,0.192958,0.0380542,-0.130828,-0.201086,-0.133686,-0.0598887,-0.0810365,0.00119728,-0.181211,-0.304001,-0.289825,-0.153762,-0.118594,1 +-0.701995,1.07264,-0.330727,0.562423,0.917967,1.45423,1.41194,-0.573599,-0.539513,-0.355847,-0.489759,-0.617745,-0.694491,-0.735727,-0.480299,-0.28533,-0.0536617,0.216156,0.544875,0.719752,1.01998,1.06908,1.17648,1.22305,1.00185,0.798252,0.984096,0.982122,0.993727,1.10692,0.75323,0.956995,1.1608,0.771423,0.769668,0.507716,0.187131,-0.185052,-0.565369,-0.27012,-0.609258,-0.847959,-0.352624,0.00146777,-0.282935,-0.504319,-0.0893495,0.550859,0.229731,-0.128585,-0.0379285,0.728279,1.03167,0.976969,0.506896,-0.216558,-0.827975,-0.274584,-0.014586,-0.114802,-0.213276,-0.486892,-0.280859,-0.523081,-0.809439,-0.853817,-0.709705,-0.48558,-0.487429,-0.18585,-0.564341,-0.401331,-0.494683,-0.410231,-0.139848,-0.212668,-0.255938,-0.424279,-0.313968,-0.22206,-0.0495958,-0.146907,-0.433805,-0.348811,-0.264661,-0.322273,-0.233188,-0.252091,-0.281039,-0.380334,-0.317108,-0.367593,-0.442436,-0.119106,-0.414585,-0.623823,-0.536088,-0.280222,-0.353911,-0.394271,1 +-0.700956,-0.824783,-0.0222085,-0.643902,-0.553848,-0.764559,-0.791084,-0.984923,-0.971749,-1.06146,-0.957647,-0.95108,-0.650069,-0.476116,-0.00299605,0.561463,1.24474,1.59605,1.74306,1.72527,1.60272,1.57625,1.49652,1.47945,1.31497,1.50022,1.32918,1.18232,1.13656,1.10061,1.04024,1.11359,0.873857,0.682788,0.322928,0.320746,0.141622,-0.07681,-0.26293,-0.723,-0.61041,-0.823975,-0.607509,-0.808423,-0.622445,-0.864497,-1.02725,-0.855579,-0.732012,-0.748403,-0.538752,1.36971,1.2721,0.907905,0.534588,-0.535407,-0.841726,-1.06786,-0.887559,-0.887531,-0.871303,-0.815921,-0.660519,-0.920108,-0.828833,-0.790169,-0.721767,-0.727408,-0.6411,-0.634366,-0.621008,-0.507685,-0.530426,-0.463457,-0.443998,-0.462821,-0.473721,-0.426135,-0.479398,-0.382757,-0.523269,-0.41755,-0.398664,-0.462843,-0.451027,-0.423176,-0.466422,-0.473505,-0.461574,-0.499286,-0.496086,-0.457367,-0.445429,-0.446229,-0.463888,-0.438449,-0.415333,-0.448529,-0.499088,-0.505863,1 +-0.700263,-1.20604,-0.365676,2.20302,2.16765,1.02524,0.98753,-1.15008,-1.09266,-1.19236,-1.16814,-0.952009,-0.972322,-0.738779,-0.594273,0.144579,0.604253,0.875952,1.05879,1.04216,1.02859,0.827378,1.02835,1.02589,0.519527,0.768291,0.851201,1.16574,1.00352,0.802247,0.815204,0.995537,0.690303,1.06532,1.26773,0.70112,0.0913089,0.269539,-0.600255,-0.564462,-0.573908,-0.582167,-1.04626,-0.758586,-0.139084,-0.934296,-0.75573,-0.561623,0.433041,-0.112433,-0.895685,1.34803,0.691535,0.874485,0.378542,-0.454766,-0.807816,-0.202299,-0.212195,-0.608138,-0.0635879,-0.17972,-0.0842478,-0.415296,-0.339671,-0.0833636,0.258159,0.0421275,0.0130339,-0.191342,-0.10187,0.580118,0.201854,0.0970052,-0.097444,0.100348,0.618382,0.0415778,-0.0356089,0.113761,0.194667,-0.138055,-0.162428,-0.21773,0.0920326,0.0376102,0.335471,-0.215695,-0.404395,0.145454,0.287867,0.255488,-0.447985,-0.094822,-0.0961407,-0.0035326,-0.354576,-0.08455,-0.0281447,0.0522995,1 +-0.696106,-1.02927,0.38935,-1.07646,-1.08119,-1.04013,-1.02563,-0.952431,-0.98465,-1.05656,-1.16307,-1.23617,-1.29315,-1.28963,-1.06762,-0.786093,-0.380469,0.0842317,0.368115,0.631132,0.869526,0.962483,1.10517,1.15109,1.10693,1.00501,1.00636,1.00921,0.924784,0.97245,0.991402,0.976684,1.13367,1.04028,0.980238,0.952164,1.09241,1.19717,1.05687,0.793998,0.497375,0.452255,0.482238,0.378718,0.239442,0.156152,0.177501,0.126075,0.0421158,0.0632697,-0.00466675,1.02215,1.04379,1.02264,1.14337,0.953152,0.513971,0.308891,0.167588,0.0899869,-0.110365,-0.151781,-0.254801,-0.230574,-0.26897,-0.246845,-0.146702,-0.122392,-0.125247,-0.081902,-0.0820335,-0.027311,-0.0737567,-0.0365254,-0.00877347,-0.0143572,-0.00910975,-0.0710529,-0.045454,-0.0141407,-0.00363338,-0.0435484,-0.0771866,-0.0842799,-0.0957953,-0.135317,-0.137802,-0.0975643,-0.136616,-0.152849,-0.153394,-0.165073,-0.162654,-0.157669,-0.145457,-0.145962,-0.186269,-0.17212,-0.241008,-0.215637,1 +-0.676011,1.33405,0.841281,-1.24534,-1.24058,-0.949221,-1.16244,0.0174541,0.0648051,0.0524702,0.0726141,0.0526238,0.00435851,0.0191243,0.070119,0.132528,0.331197,0.494925,0.644506,0.683232,0.708546,0.700996,0.673655,0.576167,0.522003,0.487306,0.372207,0.326009,0.254187,0.132481,0.0893381,-0.0324494,-0.121361,-0.23898,-0.370163,-0.538912,-0.637909,-0.62172,-0.65797,-0.52384,-0.478463,-0.488385,-0.419282,-0.306533,-0.202072,-0.0639629,0.0831965,0.0615225,0.081129,-0.0104794,-0.00854316,0.580019,0.273729,0.0119437,-0.381055,-0.69763,-0.679741,-0.5415,-0.301411,-0.235934,-0.314651,-0.386218,-0.397184,-0.42486,-0.417561,-0.452195,-0.471223,-0.475162,-0.449567,-0.430957,-0.452129,-0.424323,-0.384134,-0.363546,-0.375352,-0.316884,-0.300453,-0.300281,-0.270753,-0.260939,-0.263654,-0.252221,-0.207532,-0.195429,-0.197623,-0.230266,-0.248208,-0.251367,-0.288469,-0.307304,-0.324517,-0.349816,-0.362257,-0.358235,-0.376627,-0.382835,-0.377856,-0.360399,-0.386488,-0.40564,1 +-0.676011,-1.03867,-0.29397,1.12595,1.46566,0.72126,0.568704,-0.941643,-0.966817,-0.875578,-0.89139,-0.703179,-0.299497,-0.15368,0.104335,0.356929,0.756471,1.26422,1.34371,1.19614,1.0098,1.01925,0.989746,0.99221,1.03132,1.05535,1.09292,0.842079,0.832322,0.862921,0.967336,0.913224,0.821913,0.497636,0.790068,0.224787,0.148853,-0.354172,-0.776985,-0.424852,-0.345446,-1.36963,-1.30172,-1.02786,-1.06009,-1.29415,-0.662334,-0.931458,-0.76087,-1.31058,-0.712149,1.11889,0.970152,0.840356,0.580039,-0.458845,-1.11641,-0.863655,-1.01309,-1.06298,-1.02714,-0.859507,-0.891519,-0.71869,-0.616364,-0.706517,-0.643782,-0.351238,-0.382126,-0.28057,-0.153344,0.0124338,-0.174734,-0.0582424,0.209242,0.0695139,-0.0719391,0.0116766,-0.0530669,-0.00763064,-0.0391972,0.130848,0.0826841,-0.217122,-0.0963392,-1.24827e-05,-0.147136,-0.132035,0.0432364,-0.119931,-0.104587,-0.11347,-0.246102,-0.204535,-0.162804,-0.361381,-0.138595,-0.107795,-0.287877,-0.311242,1 +-0.665271,-0.485857,-0.0830685,-0.733515,-0.882803,-0.540124,-0.623554,-0.295648,-0.21855,-0.177462,-0.15324,-0.0995316,-0.0814418,-0.139052,-0.240917,-0.613333,-1.03189,-1.46149,-1.61767,-1.72484,-1.72164,-1.79568,-1.77815,-1.77877,-1.7771,-1.83705,-1.90751,-1.92766,-1.95171,-1.8874,-1.83794,-1.99213,-1.92055,-1.59411,-1.21589,-0.949259,-0.489143,-0.181431,0.145767,0.795669,1.09754,1.09667,1.21868,1.04085,1.05019,0.983732,0.9145,1.09303,1.09982,1.27052,1.36372,-1.86182,-1.94472,-1.96049,-1.36996,0.140202,1.02005,1.48133,1.31712,1.5129,1.62533,1.54002,1.54016,1.70534,1.82596,1.68999,1.88172,1.99739,2.08214,2.00571,1.83232,1.92199,1.86997,1.82828,1.82661,1.7915,1.7586,1.7049,1.76435,1.5967,1.73687,1.81534,1.68567,1.63536,1.55079,1.4974,1.55612,1.543,1.53593,1.40401,1.459,1.47127,1.40257,1.31391,1.37002,1.38602,1.3394,1.35979,1.39081,1.48676,2 +-0.664924,-0.981227,-0.169237,0.839878,0.52797,0.178638,-0.0707035,-0.566901,-0.541737,-0.557021,-0.593651,-0.59822,-0.64433,-0.485243,-0.432885,-0.213503,0.104211,0.447268,0.650028,0.704989,0.664954,0.902147,0.882807,0.816807,0.62523,0.764432,1.08637,0.674567,1.03246,0.898371,0.183813,0.622789,0.444142,0.705843,0.720685,0.289789,0.222368,0.194969,0.168258,-0.0473658,-0.0459224,-0.580256,-0.743271,-0.740822,-0.784815,-0.406304,0.0701655,-0.728424,-0.373177,-0.394512,-0.817587,0.547903,0.459504,0.256682,0.418978,0.308264,-0.462957,-0.365572,-0.130676,-0.348696,-0.309762,-0.336263,-0.171632,-0.231267,-0.342632,-0.0735029,0.0519695,-0.338046,-0.412405,-0.14993,-0.252983,-0.124569,-0.157499,-0.108559,-0.0537542,0.0302573,-0.160769,-0.091363,-0.0103649,0.043215,-0.104545,-0.141733,-0.192254,-0.200203,-0.067152,-0.0623533,-0.0987901,-0.143411,-0.0802489,-0.0446446,-0.0884757,-0.114605,-0.142355,-0.173055,-0.0826141,-0.0290215,-0.0669631,-0.136023,-0.0527423,-0.189532,1 +-0.664578,-0.911246,-0.251789,0.255671,0.446579,0.75251,0.778117,-0.657908,-0.658578,-0.598191,-0.534135,-0.490115,-0.47974,-0.547044,-0.272727,-0.134543,0.0870413,0.180567,0.254125,0.130362,0.0491396,0.0311593,0.0455475,0.112271,0.307722,0.248352,0.342633,0.33366,0.330126,0.380665,0.364082,0.259035,0.448902,0.437159,0.488794,0.587061,0.365526,0.367837,0.566662,0.435973,0.0517234,0.342662,-0.213523,-0.0215008,0.107288,0.154512,0.176868,-0.0298715,0.172525,0.0813918,-0.0145768,-0.0189922,0.226499,0.579389,0.490646,0.938438,0.258407,-0.0525327,-0.0418041,0.134133,-0.00484857,-0.0205974,0.0176106,0.275204,0.37666,0.170935,0.461871,0.11932,0.269571,0.495355,0.497425,0.600111,0.358856,0.360611,0.4088,0.362823,0.0897938,0.306138,0.360413,0.123359,0.224554,0.0695568,0.10816,0.0416568,0.100425,-0.069774,0.031915,0.0715639,-0.0673026,-0.0843886,0.014476,-0.0429455,-0.0753646,0.114755,0.165549,-0.113705,-0.0855769,0.0863811,-0.189037,-0.0134918,1 +-0.645176,-0.749767,-0.311444,0.665822,0.494057,0.951377,1.07688,-0.921642,-0.907342,-0.772673,-0.792732,-0.634822,-0.485597,-0.374912,-0.0361057,0.339095,0.395098,0.591449,0.434108,0.533528,0.263957,0.298842,0.464676,0.401138,0.442753,0.546318,0.534172,0.51951,0.240873,0.26761,0.34368,0.448815,0.299432,0.477766,0.654094,0.570132,-0.387675,0.0710841,0.270559,0.231029,-1.04047,-1.23677,-0.735575,-0.578049,-0.704709,-0.739043,-0.6222,-0.659168,-1.03975,-0.699162,-0.587979,0.634311,0.703208,0.19178,-0.575129,0.130535,-0.601635,-0.774678,-0.512884,-0.596022,-0.430193,-0.144861,0.244921,-0.0432841,0.0324537,-0.115071,-0.0505229,0.161866,0.336305,0.855313,0.498023,0.551525,0.304824,0.410196,0.52747,0.40582,0.64469,1.20369,0.401963,0.106835,0.661288,0.0857398,0.249458,0.549871,0.0337117,0.322811,0.213811,0.242562,0.179263,0.147034,0.504609,0.319425,0.236268,0.201751,0.126862,0.256575,0.148768,0.0473178,0.0312995,-0.00837868,1 +-0.64379,-0.806833,-0.328919,0.89847,0.69923,0.337731,0.457017,0.0284554,-0.0987529,0.114451,0.0396905,-0.114318,-0.17461,-0.345368,-0.162243,-0.391755,-0.39114,-0.31953,-0.236708,-0.185147,-0.318372,-0.0242665,-0.177033,-0.0926549,-0.171754,-0.24325,-0.160556,-0.0495957,-0.0242492,0.229636,0.115042,0.142236,0.193319,-0.0912254,-0.0272366,0.234497,0.698966,0.668337,0.910798,0.385738,0.776811,1.36354,1.05566,1.0529,1.65595,1.59526,1.49042,1.91469,2.14566,1.45649,0.787283,-0.0988632,-0.0590991,0.277094,0.912229,0.770987,1.0232,0.851649,1.08134,0.763897,0.21046,0.346718,0.113511,0.0360621,-0.312734,-0.128627,-0.207307,-0.169183,-0.0452961,-0.168684,-0.322068,-0.355874,-0.351293,0.0929807,-0.293859,-0.542416,-0.117155,-0.48281,-0.2656,-0.20301,-0.233632,-0.272653,-0.390106,-0.055533,-0.0743787,-0.191474,-0.20381,-0.287485,-0.215044,-0.572211,-0.252453,-0.323841,-0.372038,-0.348151,-0.467787,-0.321318,-0.468336,-0.477927,-0.378132,-0.166632,0 +-0.638247,-1.13431,-0.35965,1.32068,1.54027,1.66446,1.77492,-1.04819,-0.994822,-1.05141,-0.906824,-0.611127,-0.654207,-0.441922,-0.24068,-0.100397,-0.0708625,0.168318,0.198013,-0.0598525,-0.023543,0.00699386,0.0132496,0.148279,0.305036,0.41092,0.325784,0.488645,0.562355,0.458778,0.404208,0.352303,0.187947,0.137389,0.725826,0.628414,0.241168,0.41849,0.0055091,0.30417,-0.974528,0.344761,-0.10214,-1.19797,-0.573002,-0.0761774,-0.312876,0.0532885,-0.216289,-0.266853,-0.216503,0.391772,0.523839,0.330891,0.10806,0.466085,-0.12491,-0.101971,-0.705151,-0.127236,-0.0988742,-0.0832469,-0.0624213,-0.0239749,0.277072,-0.0718011,0.359855,0.404222,0.938524,0.771396,0.469272,0.890434,1.28173,0.825456,0.664544,0.602428,0.783956,0.753493,0.705872,0.596617,0.436287,0.871561,0.414042,0.424699,0.472327,0.907412,0.43116,0.101493,0.292053,0.416592,0.21217,0.475319,0.416876,0.150063,0.320867,0.506738,0.0139293,0.221461,0.458223,0.42281,1 +-0.636861,-0.894042,-0.0698119,-0.585309,-0.726804,-0.750354,-0.799461,0.194137,0.309777,0.427935,0.464128,0.505644,0.48614,0.503256,0.321225,0.0102427,-0.128817,-0.281526,-0.406053,-0.55184,-0.575707,-0.460722,-0.53117,-0.491035,-0.429588,-0.463293,-0.44032,-0.249085,-0.161283,-0.18484,-0.0683899,-0.0870375,0.0775974,0.204865,0.355102,0.593271,0.752532,0.697718,0.944937,1.00146,0.800594,0.703752,0.63885,0.567435,0.251911,0.422368,0.341304,0.252076,0.319071,0.426455,0.335221,-0.136096,-0.150967,0.143277,0.445763,1.04473,0.852335,0.465582,0.263843,0.301866,0.423015,0.366851,0.511716,0.433444,0.204667,0.155669,0.0607484,0.0282284,-0.108094,-0.224725,-0.274128,-0.156893,-0.275544,-0.287733,-0.507952,-0.453388,-0.45871,-0.365431,-0.396394,-0.463962,-0.464041,-0.323355,-0.413607,-0.385866,-0.254629,-0.299677,-0.360112,-0.323874,-0.287503,-0.203423,-0.260543,-0.269393,-0.244807,-0.164623,-0.166605,-0.17285,-0.234394,-0.157609,-0.128092,-0.146291,3 +-0.635475,0.817072,-0.0481192,-0.771428,-0.786151,-0.690694,-0.615177,-0.135646,-0.123796,-0.116698,-0.166966,-0.260393,-0.300315,-0.426209,-0.257617,-0.236501,-0.115387,0.0269761,0.0754286,0.134051,0.246404,0.229825,0.235311,0.217109,0.229354,0.2674,0.296836,0.350358,0.339325,0.446678,0.567405,0.591239,0.597434,0.760558,0.538241,0.696133,0.999262,0.740124,0.782781,0.865863,0.959939,1.19707,0.843682,0.755871,0.85805,0.795751,0.559973,0.773663,0.685793,0.592159,0.602742,0.265875,0.473216,0.590843,0.843362,1.12981,0.7531,0.825295,0.712582,0.533255,0.456555,0.389877,0.176497,-0.0170167,-0.0545874,-0.214633,-0.216805,-0.318422,-0.520254,-0.43635,-0.407825,-0.594724,-0.549553,-0.532193,-0.589597,-0.56641,-0.594022,-0.52955,-0.559188,-0.510902,-0.494404,-0.545591,-0.462835,-0.407162,-0.535612,-0.521593,-0.509171,-0.400412,-0.523286,-0.497378,-0.505392,-0.501103,-0.451208,-0.490775,-0.423743,-0.466081,-0.519418,-0.488237,-0.489312,-0.559231,1 +-0.621617,-0.751585,1.20885,-1.33151,-1.33384,-1.19923,-1.1792,0.119554,0.183235,0.311444,0.453684,0.46696,0.367981,0.106815,-0.375805,-1.1641,-1.84952,-2.16915,-2.29749,-2.30013,-2.27925,-2.24269,-2.24955,-2.2704,-2.33287,-2.37013,-2.44837,-2.45034,-2.54751,-2.54059,-2.60878,-2.62224,-2.67934,-2.51925,-2.19103,-1.88178,-1.3962,-0.796601,-0.101377,0.229246,0.400389,1.22854,1.81837,1.89511,1.86484,1.81969,2.0429,2.17654,2.22875,2.33272,2.23647,-2.68476,-2.76662,-2.81702,-2.40525,-0.64174,1.26902,2.14527,2.51683,2.68488,2.69941,2.66063,2.70523,2.81485,2.7084,2.53933,2.39447,2.39403,2.25673,2.15144,2.03139,1.99897,1.80554,1.84293,1.87025,1.75398,1.72954,1.61172,1.57993,1.62881,1.64801,1.65684,1.69173,1.69125,1.66034,1.68723,1.65114,1.63737,1.6467,1.61129,1.53476,1.53717,1.54641,1.55679,1.5239,1.49426,1.52736,1.50767,1.52206,1.5975,2 +-0.615034,0.146445,0.377299,-0.957547,-0.955715,-0.991835,-1.03121,2.43793,2.2646,2.18554,1.96255,1.98971,1.91601,1.9203,1.88078,1.63271,1.00053,0.816736,0.46442,0.197657,0.140493,0.0330421,-0.06193,-0.144476,-0.308248,-0.384922,-0.517903,-0.609141,-0.696183,-0.862969,-0.965328,-1.01944,-1.31741,-1.18022,-1.0928,-1.63705,-1.56719,-1.66341,-1.50335,-1.4901,-1.3387,-1.00704,-1.07564,-0.825362,-1.02191,-0.892271,-0.786584,-0.605029,-0.653234,-0.706019,-0.801594,-0.457295,-0.635322,-1.06391,-1.55214,-1.90559,-1.50346,-1.03196,-1.02957,-1.07574,-1.01695,-0.947311,-0.975214,-0.978812,-1.13055,-0.99646,-1.19229,-1.24493,-1.26174,-1.19626,-1.28214,-1.29263,-1.3407,-1.30454,-1.32575,-1.23712,-1.25522,-1.20262,-1.18843,-1.18222,-1.13515,-1.24417,-1.13714,-1.01075,-1.06765,-1.05332,-0.94819,-0.952017,-0.94592,-0.858082,-0.85793,-0.846753,-0.774805,-0.826159,-0.756262,-0.743156,-0.820298,-0.742106,-0.824057,-0.806622,0 +-0.608798,-1.60206,0.118191,-0.924804,-0.911629,-0.829901,-0.846928,2.43786,2.20584,2.0283,1.90775,1.90556,1.95537,1.91991,1.82706,1.65257,1.1569,0.773384,0.53041,0.275324,0.191939,0.0770398,-0.0191716,-0.18627,-0.203809,-0.245924,-0.351237,-0.518861,-0.637206,-0.631333,-0.707837,-0.904509,-1.08095,-1.18467,-1.16944,-1.47323,-1.65649,-2.01247,-1.82553,-1.58515,-1.27375,-1.34288,-1.13074,-1.50797,-1.16304,-1.04372,-1.01613,-1.05262,-1.00633,-0.933871,-0.976518,-0.563591,-0.763114,-1.04365,-1.53655,-1.79631,-1.60745,-0.962302,-1.12903,-1.06175,-0.982293,-0.859917,-0.769978,-0.932502,-1.01559,-1.07059,-1.09346,-1.10455,-1.13599,-1.27792,-1.07035,-1.29131,-1.31168,-1.25376,-1.31237,-1.37339,-1.25979,-1.07088,-1.07566,-1.22849,-1.08543,-1.09016,-1.0985,-0.928725,-1.1012,-1.00131,-0.96486,-1.0039,-0.940841,-0.884966,-0.860691,-0.822571,-0.79971,-0.780917,-0.78311,-0.859259,-0.788276,-0.747341,-0.715407,-0.694736,0 +-0.605333,-0.979385,-0.280713,0.290138,0.107451,0.368982,0.962401,-1.23659,-1.32612,-1.37451,-1.50829,-1.71151,-1.72439,-1.81844,-2.16084,-2.12355,-1.99931,-1.81092,-1.68882,-1.77948,-1.65654,-1.62592,-1.60653,-1.49048,-1.68699,-1.8461,-1.80151,-1.75919,-1.91122,-2.01131,-2.10962,-2.22628,-2.15864,-2.58827,-2.55061,-2.62033,-2.32726,-2.17774,-2.27335,-1.90585,-1.84005,-1.23084,-0.857697,-0.293626,0.484875,0.359651,0.617848,0.143079,-0.0690516,-0.422361,-0.357799,-2.20495,-2.24326,-2.3657,-2.53252,-1.99393,-1.14442,-0.395489,0.0401346,0.100919,-0.000202903,0.39287,0.492622,0.910523,2.04009,1.67093,1.81114,2.04617,2.3273,2.71399,2.83711,3.12056,3.4556,3.5698,3.74712,4.09717,4.13448,4.22871,4.46608,4.60441,4.64514,4.74721,4.54274,4.4864,4.32965,4.25726,4.29836,4.11522,4.14097,4.34928,4.01805,3.82706,3.85985,3.85872,3.82725,3.78006,3.81128,3.77395,3.52136,3.58374,8 +-0.592514,-1.08121,-0.287341,0.250502,0.277015,0.207047,0.188969,-1.17043,-1.20338,-1.04599,-1.07288,-1.07112,-0.905974,-0.643043,-0.301515,-0.0182319,0.595313,0.792827,0.904575,0.984101,0.820523,0.726878,0.840727,0.898802,0.887556,1.02474,1.05572,0.754163,0.730458,0.884945,0.681989,0.615839,0.346292,-0.0344485,-0.188512,-0.0551978,-0.418337,-0.467754,-0.586846,-1.22031,-1.08095,-1.41121,-1.47275,-1.12848,-0.842784,-0.869106,-1.25752,-1.07264,-1.13925,-1.14595,-1.09863,0.739519,0.648336,0.174895,-0.217567,-1.17622,-0.904956,-0.892443,-0.911866,-0.823406,-0.709317,0.0571642,-0.317551,-0.585265,-0.18464,0.220075,0.302888,0.501592,0.260476,0.564295,0.623332,0.547056,0.979838,0.83694,0.508678,0.855219,1.07047,0.590897,0.623207,0.590863,0.504406,0.606358,0.401114,0.478072,0.699219,0.240109,0.435751,0.128551,0.303394,0.476929,0.317804,0.142532,0.408792,0.180204,0.189236,0.350409,0.104572,0.0665159,0.287846,0.308886,1 +-0.583506,-0.88924,-0.298188,1.05529,0.863707,0.834898,0.560328,0.182377,0.351492,0.520838,0.750424,0.977512,1.07219,1.13694,1.0729,0.798322,0.51663,0.148967,-0.147033,-0.0425006,-0.170571,-0.341076,-0.0884105,-0.0573595,-0.180615,-0.0986698,-0.147984,0.114674,0.0127147,0.288936,0.40949,0.134591,0.762144,0.789674,0.430855,0.605717,0.616411,0.846538,0.396526,-0.138005,-0.0407424,0.308659,0.089347,0.225938,0.198511,-0.195909,-0.450369,-0.186235,-0.360578,-0.752848,-0.0130398,-0.51504,0.13576,0.694149,0.718422,0.235322,0.0747829,-0.0843433,0.197968,-0.629851,-0.748578,-0.492283,-0.351002,-0.251757,-0.445126,-0.357032,-0.828655,-0.207303,-0.617604,-0.982303,-0.864465,-0.632496,-0.513693,-0.622027,-1.07596,-0.621958,-0.725658,-0.840146,-0.714887,-0.719633,-0.579405,-0.608665,-0.740763,-0.688489,-0.597268,-0.717288,-0.57568,-0.525137,-0.674926,-0.552427,-0.624801,-0.704408,-0.718807,-0.550936,-0.534298,-0.436038,-0.549603,-0.491812,-0.137402,-0.544791,3 +-0.581081,-1.20019,-0.35724,1.45338,1.32662,1.1957,1.01824,0.687832,0.630512,0.696333,0.710232,0.620869,0.442197,0.428304,0.46505,0.198853,0.159521,-0.0012136,-0.285188,-0.179598,-0.116853,-0.204761,0.0554953,-0.469041,-0.172091,-0.0666007,-0.0453169,-0.143029,-0.341385,-0.357323,-0.18445,-0.406917,-0.324523,0.0204924,-0.0757828,-0.651423,-0.397075,-0.108295,0.545998,0.900307,0.432411,0.693721,0.392297,0.515027,0.592878,0.341323,0.532213,0.585237,0.551444,0.399893,0.160605,-0.165234,-0.0525512,-0.403564,-0.659197,0.600181,0.0472458,1.1609,0.123827,0.197239,0.034224,-0.215229,0.831915,-0.311284,0.0135197,-0.309933,-0.381903,-0.104053,-1.07457,-0.263681,-0.432435,-0.760124,-0.389707,-0.405721,-0.611187,-0.5478,-0.590739,-0.628448,-0.937019,-0.4462,-0.496665,-0.594674,-0.931962,-0.746559,-0.45318,-0.359812,-0.319265,-0.32037,-0.0168037,-0.576812,-0.463783,-0.523335,-0.763978,-0.650863,-0.362262,-0.364912,-0.42964,-0.26473,-0.328145,-0.459825,0 +-0.571034,-0.912738,-0.249379,0.0850626,0.222755,0.618986,0.362083,0.0844346,0.463544,0.724831,0.74381,0.675877,0.669769,0.674704,0.42494,0.0272225,-0.167745,-0.781579,-0.759992,-0.736695,-0.889498,-0.808511,-0.80247,-0.909929,-0.825441,-0.569585,-0.534681,-0.596165,-0.485805,-0.279164,-0.441312,-0.240897,0.0149567,-0.101506,0.484734,0.293378,0.819803,0.747044,0.725268,0.684312,0.997303,0.61831,0.949834,1.06527,0.697143,0.873693,0.468787,0.20646,0.0737191,0.626085,1.11904,-0.856571,-0.581597,-0.148937,0.72907,0.869215,1.28129,0.929854,0.919487,0.722227,0.519533,0.244524,0.450121,0.770685,0.376788,0.480187,0.413237,-0.104527,0.0585731,0.209757,-0.0991367,-0.293306,0.0879251,0.101967,-0.419868,-0.287793,-0.241295,-0.305356,-0.428541,-0.202282,-0.408275,-0.339777,-0.264718,-0.196947,-0.22384,-0.12994,-0.268707,-0.367453,-0.36875,-0.220287,-0.333686,-0.302735,-0.0989192,-0.12113,-0.105092,0.0304148,-0.0180235,0.0606725,-0.341679,-0.172211,3 +-0.562026,-0.289154,-0.297585,0.736478,0.677186,0.326367,0.300656,1.62297,1.67732,1.41524,1.42143,1.14518,1.29361,0.871935,0.655963,0.215795,0.435765,0.444108,0.0203422,-0.523134,-0.121271,-0.00463408,-0.361568,-0.327738,-0.00545179,-0.131753,-0.127904,-0.215854,-0.499288,-0.398417,-0.587345,-0.27141,-0.726629,-0.334892,-0.626808,-0.69497,-1.06936,-1.2722,-0.565629,-1.63726,-0.656724,-0.738744,0.0420997,-1.1933,-0.493495,0.175666,-0.455263,-0.785776,-0.505952,-0.887723,-0.530909,0.28601,-0.325056,-0.826657,-0.79698,-0.788443,-0.810691,-0.716274,-0.203133,-0.371438,-0.709745,-0.301103,-0.908041,-0.511422,-0.829278,-0.611177,-0.683374,-1.13325,-0.988041,-0.688377,-0.815574,-1.129,-1.32167,-0.712248,-0.414163,-0.817984,-0.796277,-0.727135,-0.753585,-0.437569,-1.00263,-0.655728,-0.525883,-0.745415,-0.527245,-0.614157,-0.852214,-0.598553,-0.196447,0.496224,-0.460825,-0.321321,-0.429155,-0.690904,-0.594606,-0.380022,-0.399946,-0.190072,-0.374976,-0.389771,0 +-0.556136,-0.866441,-0.324098,0.89847,0.75349,0.715578,0.811623,-0.838511,-0.868706,-0.933852,-0.860143,-0.840803,-0.761075,-0.729183,-0.44332,-0.287251,0.157936,0.408269,0.47574,0.455727,0.720348,0.42878,0.50572,0.567188,0.502206,0.565928,0.633577,0.560483,0.764327,0.749196,0.589421,0.960889,1.18217,0.496546,0.541684,0.711516,0.280165,0.216205,0.464393,-0.0030055,-0.349791,-0.630042,-0.68845,0.0982518,-0.16624,-0.626267,-0.239616,-0.0406307,-0.186258,-0.475694,-0.338354,0.173088,0.602964,0.476018,0.637687,0.0777949,-0.0588057,-0.191793,-0.0786821,-0.440657,-0.659885,-0.230644,-0.126999,-0.122802,-0.160062,0.121089,-0.0769799,0.0986494,0.268102,0.172559,0.170044,0.465216,0.482606,0.316383,0.349531,0.356733,0.415818,0.33485,0.259055,0.380409,0.405276,0.194561,0.34755,0.237179,0.110572,0.12485,0.0447315,0.200845,0.0617822,0.0563865,0.158916,0.129341,0.094735,0.0597002,-0.0556158,0.146878,0.0958584,-0.0273897,-0.0619875,-0.142049,1 +-0.556136,-0.954955,-0.0107595,-0.705942,-0.842107,-0.67649,-0.816214,-0.802774,-0.838805,-0.833336,-0.803073,-0.663788,-0.462352,-0.281656,0.059289,0.417178,0.684001,0.89897,0.809094,0.659882,0.659881,0.646582,0.595206,0.636759,0.671458,0.613943,0.744253,0.665867,0.608119,0.596178,0.642818,0.593436,0.468498,0.468831,0.413862,0.198717,0.139793,-0.337481,-0.320316,-0.899582,-1.46111,-1.1125,-0.993287,-0.97925,-0.909578,-0.892248,-0.895382,-0.828814,-0.812746,-0.843516,-0.793748,0.522935,0.497287,0.462608,0.0786793,-0.35755,-0.740377,-1.01325,-0.923016,-0.723272,-0.639645,-0.611988,-0.5097,-0.398241,-0.380389,-0.256079,-0.196376,-0.0907977,0.0342707,-0.00925954,0.186796,0.23709,0.263832,0.372594,0.428991,0.484558,0.451356,0.376406,0.357475,0.345552,0.307725,0.377776,0.335837,0.244528,0.270882,0.283151,0.112708,0.0746993,0.200375,0.0739482,0.0813599,0.17832,0.0686946,0.0646565,0.0692397,0.0726397,0.0817169,0.0871623,0.0328306,0.11718,1 +-0.554057,-0.880918,-0.196353,-0.506037,-0.416502,-0.236142,-0.0371974,-0.970243,-0.957466,-0.948798,-0.909556,-0.835793,-0.72929,-0.597459,-0.417552,0.0722707,0.309614,0.336126,0.385951,0.24546,0.230875,0.22872,0.271261,0.329472,0.319857,0.370239,0.380779,0.315202,0.416548,0.394889,0.397611,0.463189,0.454163,0.39576,0.321582,0.311627,0.00632192,-0.337315,-0.372282,-0.0634598,-0.507658,-0.466343,-0.609004,-0.772655,-0.809178,-0.609086,-0.548862,-0.661309,-0.686077,-0.323132,-0.386431,0.449257,0.461672,0.352589,0.17071,-0.129798,-0.568499,-0.763128,-0.531955,-0.385034,-0.285443,-0.221117,-0.179368,0.0469028,0.0409381,0.133896,0.269552,0.37095,0.611859,0.700855,0.838196,0.706301,0.824144,0.98442,0.83462,0.871991,0.903255,0.857453,0.777838,0.747109,0.755715,0.685122,0.686266,0.581834,0.554763,0.543097,0.421445,0.431831,0.440195,0.359376,0.40541,0.310984,0.309858,0.28356,0.280007,0.230675,0.241447,0.299213,0.233698,0.259897,1 +-0.550246,-0.931177,-0.351817,3.94186,4.02268,2.54799,2.50647,0.174223,-0.0677511,-0.0525667,0.394342,0.332037,0.233884,0.165255,0.343845,-0.2567,-0.343556,-0.761485,-0.599712,-0.972809,-1.04058,-1.21874,-0.873665,-1.12682,-0.892449,-1.13605,-1.17914,-1.21031,-0.707408,-0.176362,-0.816442,-0.347127,-0.354956,0.438599,0.492504,1.13244,1.52089,0.832802,1.71665,-1.17184,0.369172,0.18127,0.151003,-0.589612,0.818318,-0.181971,0.0070676,-1.16747,-0.357964,-0.523941,0.917729,-0.671052,-0.669275,-0.0956854,0.349024,1.84466,1.15182,0.0286413,-0.115826,0.532806,0.699891,0.61759,0.873897,0.32758,0.889754,0.442327,0.565273,0.792501,1.02844,1.19154,0.916871,0.522506,0.140304,0.699939,0.880491,0.44518,0.444645,0.287485,0.85884,0.576497,0.499145,0.52478,0.495012,0.320317,0.460804,0.43359,0.453907,0.348985,0.397298,0.236686,0.145706,0.66863,0.221227,0.413402,0.589078,0.519462,0.716284,0.68849,0.328118,0.433373,3 +-0.546435,0.672633,0.570122,-1.15745,-1.20328,-1.11684,-1.15686,0.0607563,0.0496748,0.00417492,-0.0487282,-0.0975026,-0.0431833,-0.00117178,0.0704489,0.217371,0.311604,0.27555,0.363592,0.370713,0.376437,0.34822,0.279305,0.226423,0.189836,0.23457,0.245654,0.262123,0.194188,0.232227,0.225145,0.195818,0.106594,0.120191,0.254563,0.11367,0.303432,0.388912,0.24794,0.329839,0.308209,0.401153,0.387736,0.32635,0.358263,0.286043,0.332901,0.414575,0.448071,0.40276,0.311517,0.346811,0.232469,0.209456,0.202018,0.208322,0.326859,0.325779,0.313066,0.245105,0.129144,0.0169376,-0.074545,-0.1606,-0.212216,-0.263447,-0.327942,-0.430644,-0.463625,-0.501422,-0.540166,-0.531274,-0.541677,-0.554238,-0.551249,-0.530302,-0.540483,-0.517909,-0.50718,-0.45001,-0.419522,-0.458432,-0.425111,-0.443408,-0.448069,-0.43468,-0.407143,-0.38019,-0.421096,-0.402452,-0.411217,-0.427847,-0.403855,-0.405786,-0.4153,-0.448949,-0.436754,-0.439931,-0.434535,-0.472688,1 +-0.532231,1.04347,-0.295175,0.438344,0.817925,0.118978,0.172216,-0.813129,-0.852798,-0.803103,-0.748926,-0.859411,-0.830276,-0.648632,-0.219415,0.164441,0.576903,0.94589,1.12884,1.02122,1.0857,0.920684,0.967467,0.943291,1.08161,1.00432,1.07594,0.607316,0.780841,0.777742,0.459272,0.715952,0.591598,0.660954,0.220916,-0.277892,-0.0253687,-0.337098,-0.519077,-1.48734,-0.981102,-0.951482,-1.3461,-0.991524,-0.91971,-1.25915,-1.08156,-0.973058,-0.361828,-0.804526,-1.27262,0.803443,0.918948,0.366217,-0.0666731,-0.872779,-1.18465,-0.755548,-0.965779,-0.872432,-0.884743,-0.362834,-0.372867,-0.426744,-0.172651,-0.494909,-0.179818,-0.0728372,-0.0456814,0.0238162,0.549071,0.355744,0.121888,0.18361,0.507292,0.446003,0.156412,0.213388,0.306806,0.139475,0.0871035,0.0871021,0.291048,0.148286,0.197591,0.0233662,0.0770871,0.0982538,0.0414442,-0.115377,0.0297222,0.137401,-0.0268137,-0.122828,-0.0631237,-0.113906,0.171568,-0.0857754,-0.159646,-0.155492,1 +-0.530152,-1.06554,-0.267456,0.617569,0.778925,0.431483,0.568704,0.146811,0.335226,0.424305,0.579732,0.68743,0.71456,0.599404,0.278023,-0.224376,-0.936363,-1.50769,-1.76122,-1.83957,-1.85762,-1.87069,-2.04842,-2.06962,-2.03652,-1.95516,-2.0227,-2.15391,-2.19672,-2.14816,-2.25354,-2.21912,-2.19481,-1.91838,-1.50778,-0.883028,-0.305119,0.0577273,0.342034,1.3677,1.85632,1.52955,1.94688,1.66616,1.7276,1.44194,1.50698,1.70098,1.42935,1.29476,1.61763,-2.04129,-2.08128,-1.9141,-1.23136,0.561525,1.39569,1.67726,1.67715,1.83149,1.74152,1.86133,1.75843,1.77572,1.93041,1.55007,1.77014,1.64037,1.54349,1.39376,1.45268,1.29257,1.15631,1.26455,1.11471,1.24379,1.04223,1.15053,0.978689,0.943291,0.944102,1.00853,1.10795,1.04842,0.9958,1.07731,1.10353,0.90059,0.904134,0.952383,0.856726,0.795038,0.953319,0.896571,0.785192,0.738833,0.878671,0.974761,0.943683,0.881062,2 +-0.526687,1.20847,1.23295,-1.27808,-1.29145,-1.24752,-1.25459,1.6335,1.54378,1.49392,1.42453,1.34314,1.37148,1.29824,1.20449,0.990621,0.6345,0.385576,0.109114,-0.0783527,-0.109379,-0.193647,-0.22839,-0.364086,-0.455651,-0.512357,-0.566168,-0.611025,-0.586768,-0.676969,-0.761647,-0.76479,-0.821715,-0.886484,-0.885697,-0.99792,-1.06762,-0.804226,-0.833428,-0.531116,-0.52309,-0.385589,-0.109839,-0.0528604,-0.172582,0.0911154,0.139462,0.00631224,0.00428496,0.0675774,-0.11533,-0.398553,-0.537501,-0.859998,-1.03872,-0.857707,-0.537734,-0.185604,-0.0948578,-0.166079,-0.216238,-0.356111,-0.442985,-0.384624,-0.48464,-0.531743,-0.623098,-0.695173,-0.78658,-0.83227,-0.888201,-0.896479,-0.916789,-0.909489,-0.91315,-0.913272,-0.891694,-0.885237,-0.856245,-0.821605,-0.829984,-0.79532,-0.769803,-0.746018,-0.722736,-0.726992,-0.720688,-0.675898,-0.685171,-0.686901,-0.684752,-0.67526,-0.65631,-0.648419,-0.659387,-0.635342,-0.619351,-0.60557,-0.637715,-0.629028,0 +-0.526341,-0.987708,-0.365073,3.00265,2.79165,1.619,1.64648,-1.04447,-0.706197,-0.819665,-1.0633,-1.03952,-0.875716,-0.659302,-0.327084,0.238107,0.248009,0.554258,0.635111,1.00036,0.734963,0.931323,0.944491,1.21832,0.789344,1.10457,1.05286,1.60854,1.83063,0.760117,0.688473,1.02934,0.940485,1.04424,0.652848,0.447177,0.461477,0.983456,-0.423574,-0.443012,-0.327356,-0.292638,-0.689534,-1.06974,-0.736872,-0.275679,-0.535483,-1.11945,-0.800655,-0.182094,-0.0359436,1.12752,1.03944,0.994909,0.81926,-0.774968,-0.919306,-0.659698,-0.506526,-0.899844,-0.806799,-0.602928,-0.520756,-0.835753,-0.657006,-0.423484,-0.611738,-0.121788,0.106583,-0.109285,-0.150822,-0.147276,0.0275733,-0.239554,0.145582,-0.105005,0.157403,0.0254487,-0.215587,-0.258992,-0.0900784,-0.194083,-0.195643,-0.16597,-0.260547,0.0633912,-0.00282164,-0.348266,0.291119,0.458948,-0.051118,-0.334989,0.0723379,-0.100145,-0.380771,0.0803001,-0.184247,0.0920857,-0.27315,0.0124479,1 +-0.521144,-0.869728,-0.322291,1.32585,0.834881,1.04229,0.887012,-0.30876,-0.291371,-0.179197,-0.0946808,0.0562579,-0.0419358,0.0140053,-0.42995,-0.562712,-0.897954,-0.766891,-0.798754,-1.05674,-1.03105,-0.784468,-0.719061,-0.473109,-0.712722,-0.490137,-0.335586,-0.447883,-0.386884,-0.0492163,0.230055,-0.00745541,0.051163,0.271616,0.782976,0.993569,1.25026,1.19914,1.31904,2.18746,2.1555,1.44937,2.0503,1.40609,1.48519,1.2979,1.08311,1.02606,0.795034,0.981518,1.53078,-0.0732398,0.0423563,0.588627,0.625609,1.81746,2.06957,0.943418,0.977618,1.01443,0.477537,0.807429,0.854493,0.840405,0.815823,0.909779,0.909746,0.817336,0.705037,0.485327,0.440225,0.136872,0.191383,0.0350481,-0.225089,-0.114828,0.150577,-0.115917,-0.131354,-0.221563,-0.179004,-0.18609,-0.110653,-0.199061,-0.148756,-0.155117,-0.299042,-0.0531607,-0.0451016,-0.0109292,0.0802856,0.0383355,0.135682,0.0384939,-0.157604,-0.0744812,-0.0428023,0.0214868,0.0437193,-0.0362017,3 +-0.520797,-0.747482,-0.346394,1.10182,0.816229,1.61332,1.64928,-0.801379,-0.911491,-0.831444,-0.750761,-0.645773,-0.584103,-0.439685,-0.267221,0.0236616,0.256256,0.283721,0.289259,0.223303,0.114168,0.164383,0.186347,0.222742,0.386623,0.589335,0.359807,0.331572,0.457762,0.515751,0.303008,0.470262,0.589511,0.516907,0.685533,0.284527,0.300532,-0.005228,-0.201312,0.384404,0.0202244,-0.327704,-0.341065,-0.0990387,-0.423028,-0.210199,-0.482698,-0.329625,-0.161337,-0.171461,-0.375809,0.181685,0.219238,0.716265,0.289773,0.355944,0.0451178,-0.354827,-0.577713,-0.433912,-0.298053,-0.189919,-0.0770542,-0.226586,-0.0998524,0.0796374,0.173993,-0.076663,0.332503,0.43685,0.489529,0.693748,0.701947,0.517432,0.518362,0.686558,0.686172,0.509216,0.370256,0.567999,0.385583,0.569689,0.501097,0.313306,0.418367,0.314589,0.157468,0.346659,0.130946,0.219532,0.07273,0.0984387,0.281864,0.128271,0.198658,0.050973,0.165765,0.109884,0.0365738,0.268845,1 +-0.511097,-0.802917,-0.362061,1.22762,1.24353,1.86901,1.76655,0.103772,0.197896,0.270785,0.272859,0.401018,0.70178,0.538271,0.241418,0.281136,-0.409617,-0.400326,-0.348485,-0.614996,-0.460429,-0.485511,-0.747945,-0.500944,-0.420655,-0.341028,-0.180592,-0.128783,-0.233383,-0.0255091,0.21389,-0.0150635,-0.350222,-0.2761,-0.192633,0.347028,0.680199,0.0103497,-0.187867,0.219768,0.212052,0.277396,0.670337,0.151261,-0.114661,0.19783,0.152896,0.303513,-0.122928,-0.0980163,-0.457276,-0.216365,-0.294263,-0.251534,0.425519,0.0809392,0.704837,0.614413,-0.0139847,0.747907,0.305384,0.924101,1.02407,0.809323,0.273778,0.638733,0.72722,0.471344,0.464337,0.217952,0.280797,0.0621557,-0.0708993,0.0998781,0.0507148,-0.28839,-0.191447,-0.33327,-0.54532,-0.0602608,-0.105864,-0.287927,-0.186275,-0.245405,-0.258026,0.0619063,-0.44134,-0.115687,-0.0279381,-0.120972,-0.0510162,-0.200795,-0.0167735,-0.188798,0.0235477,-0.00313702,-0.132824,-0.125509,-0.258082,-0.288111,3 +-0.5059,1.91707,-0.122838,-0.294068,-0.302894,-0.545806,-0.453231,0.561416,0.683973,0.753999,0.648593,0.621055,0.562194,0.527921,0.444871,0.278548,0.105996,-0.00115674,-0.015739,-0.0964812,-0.0509099,-0.0599994,-0.196498,-0.208753,-0.0972302,-0.244866,-0.230708,-0.335657,-0.295718,-0.224918,-0.318429,-0.383663,-0.278061,-0.119573,-0.333576,-0.157924,0.124262,-0.159532,0.0521225,0.0404217,0.199717,0.251782,0.398441,0.685665,0.609754,0.808959,0.747506,0.883429,0.948797,0.477427,0.839855,-0.325409,-0.191926,-0.284514,-0.088504,-0.161068,0.259442,0.645411,0.47313,0.43295,0.0837522,0.0173692,-0.108127,-0.133025,-0.0993907,-0.209771,-0.358314,-0.424377,-0.415904,-0.524514,-0.630066,-0.774704,-0.648194,-0.594404,-0.624412,-0.629744,-0.573887,-0.549443,-0.559089,-0.553438,-0.562029,-0.518458,-0.544537,-0.480784,-0.357072,-0.470175,-0.515965,-0.573262,-0.498127,-0.518882,-0.520009,-0.546719,-0.49524,-0.516962,-0.545662,-0.53113,-0.494583,-0.515378,-0.604785,-0.597321,0 +-0.499663,-0.946073,-0.25661,0.424557,0.429623,-0.0429567,-0.193559,0.392957,0.417216,0.396481,0.415685,0.315062,0.200109,0.146295,0.107095,0.0397808,-0.157132,-0.207198,-0.149366,-0.154102,-0.0911451,-0.028336,0.00578044,-0.0330393,0.0543646,0.0981504,0.111057,0.0275883,0.195429,0.0343289,0.0717668,0.152789,0.246498,0.108511,0.373931,0.249808,0.491412,0.303539,0.759913,0.83021,0.543963,0.468812,0.354675,0.312254,0.406771,0.10706,0.139246,0.228649,-0.0231178,-0.137776,0.000116207,0.226072,0.197623,0.108126,0.131004,0.593457,0.738168,0.343715,0.257584,0.193529,0.160953,0.00204226,-0.0196136,-0.0437223,-0.154563,-0.226952,-0.213557,-0.245494,-0.360854,-0.420482,-0.444209,-0.355722,-0.485125,-0.560271,-0.519723,-0.595104,-0.563527,-0.50882,-0.540738,-0.532233,-0.577997,-0.503676,-0.455147,-0.469552,-0.516081,-0.568304,-0.429766,-0.420107,-0.477143,-0.43847,-0.318606,-0.309688,-0.403727,-0.495863,-0.375568,-0.322184,-0.357302,-0.353035,-0.352137,-0.289676,3 +-0.493427,-0.908192,-0.148749,-0.302685,-0.260503,-0.352621,-0.0427818,-0.402336,-0.369597,-0.255769,-0.231204,-0.181915,-0.210066,-0.30412,-0.623123,-1.02886,-1.43254,-1.62268,-1.77935,-1.78214,-1.70719,-1.65422,-1.6935,-1.63971,-1.63296,-1.54647,-1.54127,-1.4562,-1.3981,-1.27418,-1.2216,-1.1008,-0.889439,-0.675798,-0.48513,-0.0821803,0.17391,0.65995,0.742518,1.09914,1.13917,1.06514,1.11652,1.19708,1.01889,0.955154,0.956435,1.00392,1.13092,1.1586,1.12614,-1.60639,-1.3835,-0.949789,-0.253638,0.619398,1.18993,1.31683,1.3389,1.36276,1.53948,1.60397,1.53491,1.62621,1.6311,1.79964,1.72664,1.82665,1.85117,1.8101,1.82029,1.93538,1.79077,1.72211,1.7538,1.60769,1.60793,1.57945,1.53986,1.51762,1.5221,1.52387,1.39093,1.33965,1.37468,1.29701,1.29373,1.28428,1.21711,1.24331,1.18818,1.06764,1.11901,1.10567,1.034,1.07083,1.05675,1.01272,1.08609,1.14443,2 +-0.493081,-0.864833,-0.301803,0.788178,0.71449,0.84058,0.725066,0.0135547,-0.0168762,-0.0103182,-0.127336,0.207274,0.148433,0.274182,0.39495,0.684301,0.358601,0.0815937,0.177579,0.0548677,-0.0331766,-0.127948,-0.173297,0.0323175,0.0933892,0.198509,0.0364707,0.0526867,0.342169,0.295872,0.126271,0.532123,0.477225,0.385639,0.751093,0.166362,1.07754,0.512265,0.78183,0.929247,0.814461,0.909319,0.290479,0.484567,0.574818,0.190259,-0.122501,0.357144,0.4155,0.00126612,0.22966,0.372181,0.333873,0.394338,0.2984,0.958082,0.892791,0.523563,0.204418,0.19387,0.169759,-0.11044,-0.265584,-0.294323,-0.298968,-0.389392,-0.537001,-0.710185,-0.794252,-0.688917,-0.646824,-0.701631,-0.557905,-0.873833,-0.789888,-0.850158,-0.694726,-0.671545,-0.784677,-0.751595,-0.810851,-0.633351,-0.583487,-0.706629,-0.69169,-0.352844,-0.337644,-0.108987,-0.185908,-0.0890786,-0.126976,-0.224146,-0.0490904,-0.122426,0.129242,-0.243295,-0.279782,-0.166767,-0.203127,-0.254389,1 +-0.489616,-0.496137,-0.260225,-0.304408,-0.172329,0.15591,0.169423,1.17466,1.13,0.884003,0.652742,0.484536,0.723215,0.549007,0.468324,0.247255,0.0557676,0.00770541,-0.261011,-0.271104,-0.164899,-0.195847,-0.136576,-0.134627,-0.225111,-0.236997,-0.276732,-0.334756,-0.161263,-0.260627,-0.258845,-0.639181,0.0139172,0.0313123,0.115908,0.160844,-0.44096,0.429733,0.763881,0.659255,0.199821,0.246491,0.390086,0.116919,0.201692,0.310062,0.632194,0.272339,-0.0865777,0.46531,0.386051,-0.214363,-0.209695,-0.172663,-0.126434,0.659519,0.453307,0.412614,0.251128,-0.0326519,0.00721641,-0.0606809,-0.324089,-0.345887,-0.206724,-0.368503,-0.730121,-0.528208,-0.505696,-0.404267,-0.783802,-0.648885,-0.46725,-0.751464,-0.812791,-0.612312,-0.795331,-0.867154,-0.528524,-0.508294,-0.825696,-0.498598,-0.522868,-0.698269,-0.503139,-0.666469,-0.451758,-0.564487,-0.560141,-0.497779,-0.661994,-0.509684,-0.470793,-0.576269,-0.673646,-0.740433,-0.545499,-0.534121,-0.642043,-0.661143,0 +-0.487537,-0.829282,-0.2777,0.396984,0.392319,0.0820453,0.00468517,-0.601337,-0.534033,-0.549155,-0.420476,-0.27916,-0.194606,-0.157633,0.0585089,-0.0128297,0.0976846,-0.0810987,-0.211457,-0.315511,-0.429524,-0.393562,-0.342075,-0.217762,-0.184016,-0.210237,-0.114234,-0.10318,0.11948,0.0536901,0.0269453,0.077842,0.363756,0.456798,0.428373,0.564644,0.552056,0.627954,0.730386,0.82779,0.776952,0.60675,0.319397,0.387322,0.1016,0.17753,0.282025,0.168816,0.00941378,0.0135001,0.173393,0.0905018,0.161222,0.29589,0.564261,0.910075,0.522696,0.17742,0.205758,0.186416,0.343971,0.218619,0.195335,0.147456,0.333803,0.400224,0.434429,0.495417,0.444798,0.443633,0.531797,0.611912,0.615585,0.540031,0.42902,0.50903,0.375574,0.401216,0.331004,0.298703,0.33513,0.335478,0.135271,0.124044,0.200438,0.095836,0.0196141,0.214492,0.195607,-0.00220738,0.11003,0.101278,0.0466084,-0.029016,0.0591354,0.0704132,0.127849,0.14203,0.0602605,0.167227,1 +-0.486152,-0.856184,0.768972,-0.950654,-1.21854,-1.17366,-1.21829,-0.91315,-0.99878,-1.03577,-1.07351,-1.04856,-0.967185,-0.793408,-0.443673,-0.0601333,0.306713,0.524171,0.593444,0.654423,0.633243,0.633085,0.685644,0.687481,0.724687,0.742388,0.733003,0.63948,0.698442,0.667033,0.676668,0.686713,0.610778,0.568101,0.376951,0.290824,-0.0094331,-0.191315,-0.373321,-0.513206,-0.655952,-0.661427,-0.747331,-0.681941,-0.597204,-0.616567,-0.529416,-0.486726,-0.403452,-0.36918,-0.387367,0.606653,0.541772,0.442138,0.265105,-0.333052,-0.647562,-0.569108,-0.469586,-0.369349,-0.29897,-0.15962,-0.149584,-0.115573,-0.13068,-0.0175919,0.028806,0.241896,0.265739,0.345411,0.433665,0.4889,0.513266,0.541772,0.561059,0.573803,0.565895,0.54325,0.517245,0.506853,0.48293,0.441716,0.412226,0.366034,0.306745,0.269935,0.260236,0.239888,0.208853,0.199459,0.200369,0.172198,0.190286,0.165635,0.122556,0.128765,0.136278,0.138185,0.133745,0.121689,1 +-0.459128,-0.400047,-0.2777,0.450407,0.321102,0.459892,0.504484,0.920687,1.06538,0.871728,0.862444,0.8584,0.761215,0.711504,0.527441,0.443364,0.171553,0.133956,0.0703401,0.0183851,0.0750167,-0.0218418,0.11637,-0.107161,-0.186788,0.0116836,-0.183072,-0.262174,-0.128789,-0.271966,-0.216349,-0.496234,-0.536192,-0.490901,-0.416024,-0.846304,-0.937032,-0.304961,-0.779113,0.00212905,0.110564,-0.229166,-0.106594,-0.262769,0.251655,0.281472,0.386813,0.350113,0.753045,0.0946701,0.144168,-0.0215489,-0.172335,-0.609408,-0.477847,-0.369798,-0.337406,0.0654912,-0.217608,0.275551,-0.333915,-0.34881,-0.251675,-0.483301,-0.0708555,-0.706721,-0.574583,-0.656642,-0.692751,-0.617349,-0.691653,-0.755322,-0.669957,-0.578779,-0.881088,-0.602368,-0.689964,-0.788347,-0.463942,-0.461136,-0.535725,-0.645076,-0.333599,-0.512986,-0.55561,-0.32035,-0.500471,-0.509834,-0.584123,-0.451968,-0.489806,-0.769903,-0.556334,-0.60469,-0.652935,-0.582673,-0.452129,-0.497608,-0.619349,-0.545963,0 +-0.453584,-0.807626,-0.295777,0.429727,0.478796,0.991151,1.1774,0.933705,0.867701,0.607476,0.166896,-0.0584311,-0.371663,-1.04737,-2.05117,-2.7224,-3.15959,-3.05355,-3.13946,-3.24626,-3.00164,-2.9107,-3.10931,-3.11467,-3.05751,-3.00565,-3.19609,-3.12924,-2.868,-2.25232,-1.76667,-1.73209,-1.81766,-2.39673,-3.46248,-4.23021,-3.80924,-4.0615,-3.83482,-3.02401,-2.49018,-1.85173,-0.975115,0.460697,0.850561,-0.451588,-1.64025,-2.04171,-2.03183,-1.69392,-2.27415,-2.67198,-2.82392,-2.43358,-3.45068,-2.48285,-0.901482,-0.451578,-0.950907,-0.476088,-0.272915,-1.00687,-0.421932,-0.481706,0.209021,0.524714,0.178535,0.790863,1.57291,2.11328,2.14401,2.38095,2.27382,3.19235,3.07783,2.99481,3.59018,3.34107,3.81236,3.95622,4.36367,4.12909,4.22313,4.78315,4.562,4.64645,4.52555,4.8604,5.14743,5.1332,5.21581,5.36376,5.72242,5.70847,5.70021,5.60935,5.95325,5.87576,5.76919,5.18494,7 +-0.447348,-1.09116,-0.334342,0.608952,0.628013,1.39741,1.42032,-0.945713,-1.21617,-1.14254,-1.18989,-1.02451,-0.814611,-0.808516,-0.258262,0.236627,0.775629,0.94901,1.0024,1.2222,1.48123,1.41939,0.962905,0.985576,1.11297,1.04749,0.978345,0.746684,0.800505,0.85694,0.855246,0.441986,0.625865,0.346377,0.540994,0.233914,0.438379,-0.110341,-0.659674,-0.564347,-1.42045,-1.44381,-1.35539,-1.10434,-1.74393,-1.03964,-0.83314,-1.26396,-1.50549,-0.910812,-0.918806,0.764708,0.646372,0.567292,-0.245753,-0.505237,-1.41671,-0.629796,-0.807284,-0.726335,-0.341357,-0.576764,-0.805357,-0.589184,-0.353865,-0.442928,-0.250634,0.0255397,0.012619,0.175036,0.313274,0.665023,0.263862,0.241281,0.612636,0.760048,0.49923,0.378854,0.500635,0.408577,0.262953,-0.0443936,0.508428,0.251174,0.159535,0.0715942,0.401825,0.0590643,0.122476,0.19514,0.184101,0.105699,0.167796,0.142121,0.0201244,-0.120733,0.044754,0.0401428,0.0184428,-0.028589,1 +-0.440765,1.51166,-0.114402,-0.578416,-0.480936,-0.704899,-0.604009,0.213707,0.152603,0.0156783,-0.124423,-0.248702,-0.264161,-0.309003,-0.333296,-0.280651,-0.0654833,0.109848,0.223884,0.502601,0.62601,0.750812,0.722094,0.812727,0.762019,0.707425,0.588657,0.529288,0.50197,0.414641,0.296196,0.255322,0.144193,-0.0402222,0.0265644,0.113891,-0.2559,-0.319034,-0.306333,-0.497903,-0.33852,-0.619583,-0.451119,-0.501586,-0.349181,-0.0195951,-0.191839,-0.238194,-0.151344,-0.276123,-0.280873,0.621936,0.50272,0.236404,-0.233883,-0.533952,-0.406819,-0.392012,-0.391761,-0.339324,-0.335851,-0.483809,-0.419556,-0.393862,-0.447781,-0.421877,-0.278636,-0.357978,-0.318044,-0.205323,-0.345487,-0.1763,-0.131003,-0.0841906,-0.203797,-0.140484,-0.207869,-0.19473,-0.202094,-0.20876,-0.236627,-0.198218,-0.195857,-0.305674,-0.231015,-0.273575,-0.37217,-0.287682,-0.309415,-0.296607,-0.305631,-0.367502,-0.355508,-0.307305,-0.345315,-0.361252,-0.359713,-0.321553,-0.424985,-0.282497,1 +-0.43245,-1.37745,0.329093,-1.08335,-1.05067,-0.977631,-1.07309,2.33851,2.24828,2.207,2.19911,2.22394,2.20957,2.12161,2.0075,1.79559,1.25908,0.811866,0.502361,0.26602,0.151712,-0.0235766,-0.128004,-0.224747,-0.327724,-0.348131,-0.510943,-0.595613,-0.741659,-0.890307,-0.94357,-1.17544,-1.32224,-1.34899,-1.68894,-1.68746,-1.70805,-1.96051,-1.72716,-1.62478,-1.36428,-1.30494,-1.10519,-1.1648,-1.13756,-1.00719,-0.945862,-1.06848,-1.10514,-1.00018,-0.959017,-0.426801,-0.743263,-1.14538,-1.7863,-2.03991,-1.58734,-1.28057,-1.08284,-1.08707,-1.07135,-0.971119,-0.988339,-0.97955,-1.13479,-0.97429,-1.11523,-1.26357,-1.16977,-1.20589,-1.30931,-1.34497,-1.37597,-1.31808,-1.29235,-1.28669,-1.27629,-1.21146,-1.15418,-1.19032,-1.15721,-1.09497,-1.09032,-1.05692,-1.11256,-0.992661,-0.971202,-0.934623,-0.879529,-0.866697,-0.909319,-0.874119,-0.817097,-0.762254,-0.750346,-0.765002,-0.757861,-0.734533,-0.717594,-0.736725,0 +-0.429332,-0.0398372,-0.0378754,-0.666306,-0.731891,-0.685012,-0.707319,0.438525,0.274748,0.277928,0.130815,-0.00438325,0.00903403,-0.0772726,-0.193363,-0.195393,-0.167222,-0.103676,-0.195896,-0.185305,-0.202151,-0.181339,-0.151723,-0.0948925,-0.0892249,-0.104889,-0.114398,-0.111677,-0.0064407,0.0224823,0.148741,0.065741,0.170504,0.146035,0.261168,0.314566,0.400985,0.763511,0.633535,1.13893,1.15808,1.08451,1.05215,1.18231,0.856743,0.953267,0.905662,1.03576,0.952443,0.889912,0.782952,-0.170634,-0.0739123,0.0654362,0.368965,0.898889,1.20338,1.07697,1.0379,1.01888,0.692176,0.390876,0.281778,0.252599,0.0276168,0.0410304,-0.0815217,-0.191099,-0.221043,-0.288741,-0.401703,-0.436922,-0.461204,-0.545339,-0.551915,-0.530635,-0.632048,-0.509298,-0.500865,-0.512833,-0.503877,-0.496064,-0.505273,-0.491872,-0.508698,-0.48054,-0.423018,-0.402618,-0.429394,-0.536485,-0.48823,-0.541047,-0.487664,-0.503131,-0.471965,-0.453161,-0.558234,-0.463234,-0.502231,-0.485588,0 +-0.424828,-0.766528,-0.353625,2.23921,2.48474,3.03664,2.57069,-0.543896,-0.547369,-0.463119,-0.330538,-0.426078,-0.335371,-0.156668,-0.260565,-0.165176,-0.0645127,-0.254229,-0.232158,-0.464463,-0.440644,-0.446431,-0.389995,-0.433601,-0.421528,-0.529066,-0.337291,-0.251588,-0.431776,0.07033,-0.382532,0.0566131,0.346659,0.277755,0.593675,0.532723,0.440433,-0.208162,0.265552,-0.0600708,-0.727809,0.273665,0.0941612,-0.106041,-0.326347,-0.105199,0.221351,-0.0836332,0.194374,-0.67527,-0.883213,-0.555755,-0.219403,0.209758,0.651309,0.525562,0.232612,-0.121897,-0.0122,0.186002,0.728069,0.188424,0.135294,0.733291,0.508827,0.502313,0.579912,0.728476,0.866504,0.399825,0.815381,1.53305,0.846564,0.627716,1.04608,0.645331,1.04602,0.87224,0.610052,0.85213,0.816871,0.889519,0.577892,0.746204,0.49897,0.342964,0.67662,0.837607,0.451183,0.1855,0.40816,0.426494,0.0334612,0.416126,0.236894,0.61521,0.589801,0.18068,0.63539,0.319255,1 +-0.42171,-0.777577,-0.348804,2.10652,1.73187,0.408755,0.431888,-0.252213,-0.318749,-0.297831,-0.0800553,-0.138697,-0.0313769,-0.0236751,0.648242,0.106361,0.418264,0.0625479,0.210622,-0.02495,0.138378,0.306493,0.00102157,-0.120413,0.247278,0.178885,0.232318,-0.107033,0.0769758,-0.0280063,0.537834,0.561528,-0.0498692,-0.30516,-0.0131679,0.632587,1.21085,0.0869985,0.375294,0.626592,-0.317141,0.380109,0.173091,0.0608858,-0.376976,-0.514948,-0.691736,-0.679847,-0.287304,-0.490305,0.018639,0.425785,0.334186,-0.050131,0.0914738,0.442233,-0.284808,-0.167718,-0.0336894,-0.107388,0.0110707,-0.239916,-0.275443,0.105008,0.17709,0.237063,0.179564,-0.0862745,0.202394,-0.312952,-0.0325949,-0.096637,-0.128038,-0.253208,0.210414,-0.115797,-0.13619,0.11463,0.180089,0.37664,-0.134327,-0.374558,-0.0523989,0.0132152,-0.19247,0.00486318,0.0245015,-0.171613,-0.298878,-0.156643,-0.0113017,-0.0214255,0.131722,-0.243918,-0.119192,-0.0998737,-0.191883,0.146025,0.061524,-0.0844777,1 +-0.416513,-0.711559,0.678586,-1.11782,-1.13545,-1.15661,-1.13731,0.611781,0.762411,0.837643,0.733745,0.440872,0.115732,-0.386925,-1.11022,-1.9276,-2.51364,-2.6385,-2.60512,-2.52128,-2.40768,-2.34066,-2.37429,-2.36863,-2.46026,-2.49878,-2.53985,-2.50754,-2.50843,-2.56438,-2.49341,-2.4735,-2.33303,-2.07116,-1.5918,-1.13051,-0.370247,0.281989,1.21075,1.84115,2.13843,2.39776,2.43678,2.31309,2.13634,2.12359,2.09406,2.01235,2.10994,2.38588,2.4059,-2.47918,-2.46985,-2.19388,-1.23899,0.720796,1.99941,2.34866,2.39278,2.33169,2.37796,2.35517,2.26407,2.34815,2.31752,2.20679,2.20631,2.16935,2.03048,2.00234,1.91784,1.88282,1.80271,1.70808,1.6749,1.63497,1.54261,1.53213,1.44885,1.42101,1.43735,1.44458,1.47639,1.46716,1.49437,1.44989,1.41993,1.39349,1.42947,1.35787,1.274,1.34258,1.32102,1.27453,1.26863,1.23742,1.22394,1.28777,1.26992,1.33333,2 +-0.408891,1.57934,-0.242148,-0.254432,-0.0638084,-0.0117062,-0.123755,1.03072,0.994467,1.0984,1.01551,1.08772,0.957914,1.00191,0.770712,0.725108,0.709361,0.505352,0.635836,0.282966,0.136987,0.346528,0.254097,-0.059744,-0.125769,-0.103219,-0.0526242,-0.423195,-0.690827,-0.189891,-0.523507,-0.714586,-0.832549,-0.745786,-0.755397,-0.795655,-1.35305,-1.44349,-1.07685,-1.50311,-1.31705,-0.435971,-0.232947,-0.745906,-0.0716868,0.107848,-0.0667013,-0.124649,-0.138693,-0.585541,-0.429347,0.350379,-0.314303,-0.790728,-0.966569,-1.46975,-0.605043,-0.21867,-0.24928,-0.373585,-0.297632,-0.507603,-0.507017,-0.283013,-0.849822,-0.595788,-0.282427,-0.732355,-0.71486,-0.784871,-0.80008,-0.569269,-0.856907,-0.680901,-0.968356,-0.595432,-0.751364,-0.561623,-0.511116,-0.514549,-0.631588,-0.520892,-0.617604,-0.510678,-0.355334,-0.716842,-0.628133,-0.415522,-0.530463,-0.598546,-0.604408,-0.511104,-0.517069,-0.618818,-0.451278,-0.359313,-0.572497,-0.360757,-0.553133,-0.473706,1 +-0.40612,-0.781564,-0.160801,-0.0562497,-0.202851,-0.173641,-0.321999,0.500486,0.584357,0.683349,0.878221,0.983667,0.921806,0.897727,1.04957,0.705902,0.323785,0.00760152,0.054775,-0.0994504,-0.275906,-0.253024,-0.207869,-0.0234368,-0.005587,-0.0341583,0.134278,0.153083,0.224345,0.185231,0.542471,0.490994,0.687529,0.687999,0.386649,0.220039,0.725699,0.775794,0.554381,0.400279,-0.136546,-0.525497,-0.518848,-0.551662,-0.647129,-0.640521,-0.545186,-0.792597,-0.624435,-0.592936,-0.553768,0.0892077,0.107859,0.711906,0.938509,0.603641,-0.150353,-0.590261,-0.737715,-0.889009,-0.659985,-0.652976,-0.59321,-0.238703,-0.459885,-0.539041,-0.289131,-0.702774,-0.584718,-0.640978,-0.775603,-0.817266,-0.614855,-0.696697,-0.579102,-0.634979,-0.807598,-0.739354,-0.626523,-0.532223,-0.597513,-0.778377,-0.715437,-0.88493,-0.70956,-0.589052,-0.578532,-0.668963,-0.58131,-0.487616,-0.723912,-0.610243,-0.714023,-0.500645,-0.550151,-0.429112,-0.514035,-0.466848,-0.632361,-0.544393,3 +-0.39919,-0.850076,-0.211417,-0.0252299,-0.258807,-0.247505,-0.215897,-1.0823,-1.20329,-1.31048,-1.42453,-1.56509,-1.61689,-1.5717,-1.53637,-1.49394,-0.976214,-0.647682,-0.417167,-0.085443,0.0229725,0.117175,0.208867,0.485934,0.479177,0.54493,0.548144,0.73745,0.686964,0.741621,0.740175,0.974398,1.02111,1.40749,1.63854,1.95999,2.46677,2.66759,2.19154,2.2927,2.12101,2.17549,1.81175,1.31116,1.36248,1.26992,1.17023,0.883665,1.24345,0.963526,0.889756,0.609703,0.753691,1.36705,1.60632,2.32166,2.24346,1.65804,1.23843,1.27516,1.05272,0.732325,0.799143,0.620365,0.478634,0.384839,0.466741,0.359218,0.241653,0.319088,0.554315,0.300398,0.446756,0.146814,0.192939,0.225714,0.159917,0.144069,0.0725223,-0.00861591,0.0244269,0.156606,0.0765579,0.127402,-0.138254,-0.0730833,0.0670897,-0.0753922,-0.057803,-0.0183737,0.0571463,-0.0620968,-0.00352814,-0.000182987,-0.0318785,-0.11692,-0.171075,-0.104886,0.0346412,0.0248351,1 +-0.397458,-0.070352,-0.265649,0.153996,0.129495,0.033749,0.0130617,-0.100394,-0.0848213,0.0428165,0.0578969,-0.0647461,-0.0949756,-0.191707,-0.248356,-0.18796,-0.171671,-0.111032,-0.0825973,0.105553,-0.0154639,0.0440088,-0.0695671,-0.0784802,-0.262324,-0.188868,-0.185858,-0.241886,0.0512602,0.2212,0.347789,0.423084,0.567512,0.338276,0.299853,0.847555,0.544526,0.0814236,0.439484,0.578409,0.57204,0.939135,0.418645,0.408914,0.611111,0.417837,0.56519,0.508226,0.828878,0.621662,0.827414,-0.0626575,-0.0448867,0.146048,0.549845,0.917679,0.956356,0.640865,0.806718,0.791941,0.675659,0.492736,0.272113,0.254263,0.0370314,0.00184606,0.102713,-0.165359,-0.0681963,-0.252719,-0.139595,-0.143921,-0.184162,-0.292929,-0.333898,-0.200977,-0.20213,-0.207341,-0.264666,-0.219052,-0.262964,-0.210231,-0.234122,-0.218168,-0.206664,-0.164695,-0.287968,-0.277814,-0.212027,-0.169092,-0.337668,-0.372492,-0.227326,-0.364125,-0.349234,-0.317088,-0.386977,-0.37895,-0.320529,-0.351344,1 +-0.394686,-0.743076,-0.345189,0.459023,0.544926,0.934332,1.02662,0.353985,0.36562,0.492537,0.622817,0.44811,0.158264,-0.0385453,-0.647816,-1.3498,-2.17151,-2.4707,-2.31382,-2.14445,-2.24583,-2.31862,-1.88782,-1.9363,-2.14575,-2.08728,-1.93464,-1.96628,-1.71557,-1.84587,-1.96037,-1.62508,-1.10687,-0.788348,-1.48197,-0.686001,0.678747,0.386328,2.02272,0.979529,1.34461,2.414,2.40342,2.25264,2.18642,2.17179,2.22829,1.79917,2.25486,1.97775,1.93578,-1.83829,-1.66768,-1.16657,-0.440993,0.802593,1.79684,2.28135,2.11327,2.29292,2.13754,1.87058,2.40231,1.50466,1.76536,1.91239,2.04134,1.54564,1.68675,1.57987,1.77554,1.48641,1.22307,1.35165,1.11389,1.11376,0.984094,0.919521,0.855504,1.13832,1.09572,1.14585,1.08801,0.610066,1.05824,1.14038,1.11285,0.937226,0.846803,0.937205,1.01757,0.805171,0.926163,0.823517,0.739003,0.925612,0.935654,0.931812,0.757403,0.728417,2 +-0.373899,-0.481428,0.172423,-1.03165,-1.06084,-1.03729,-1.03959,0.967138,0.945738,0.946428,0.951254,0.92853,0.922151,0.917723,0.77252,0.622237,0.30812,0.156665,0.126088,0.0744667,0.0289676,0.0318837,-0.0908476,-0.0778646,-0.127188,-0.199353,-0.252593,-0.27866,-0.348071,-0.36757,-0.395146,-0.56009,-0.630806,-0.487853,-0.632625,-0.498085,-0.440694,-0.511281,-0.455052,-0.596935,-0.237332,-0.131445,0.198071,0.110567,0.171264,0.22189,0.39118,0.335791,0.42941,0.413668,0.356427,-0.170472,-0.417441,-0.581472,-0.806295,-0.461029,-0.0476325,0.291658,0.161839,0.201321,0.149696,-0.0178795,-0.198482,-0.119892,-0.320859,-0.403236,-0.460918,-0.4855,-0.600474,-0.689387,-0.760364,-0.771734,-0.702334,-0.740801,-0.784296,-0.786376,-0.798387,-0.766691,-0.716263,-0.719224,-0.632366,-0.743715,-0.700273,-0.678669,-0.701778,-0.622262,-0.597367,-0.610104,-0.619681,-0.649926,-0.63073,-0.568592,-0.537506,-0.612718,-0.595409,-0.678926,-0.575712,-0.596954,-0.599907,-0.636007,0 +-0.370088,-0.913414,-0.362663,1.82389,1.59961,1.46559,1.38123,0.00381726,0.181832,-0.115765,0.124855,0.0872502,-0.0387274,-0.330033,-0.79653,-0.982539,-1.59043,-1.7147,-1.52267,-2.04399,-1.74405,-1.7699,-1.64591,-1.67824,-1.54785,-1.49148,-1.7973,-1.78068,-1.42249,-1.35239,-1.31815,-1.42919,-1.11354,-1.01824,-0.976081,-0.525739,-0.617789,0.590691,0.718405,1.3676,0.640965,0.954429,1.10429,0.826814,1.27562,1.29201,0.981193,1.84488,2.09377,0.92781,1.28309,-1.19848,-1.68373,-1.31304,-0.928435,0.657243,1.40634,1.43514,1.3438,1.61189,1.66435,1.70071,2.11624,1.74475,1.16856,1.6971,1.9899,2.03689,1.81391,1.7862,1.21886,1.61243,1.79989,1.55741,1.50199,1.5409,1.4116,1.42615,1.19504,1.11893,1.33121,1.44581,0.741751,1.4675,1.55958,1.06003,1.12839,1.25714,1.02896,1.04685,0.87074,1.1912,0.735039,0.923519,1.19911,1.15101,0.831798,0.870689,0.760902,0.565559,2 +-0.367316,-0.755222,0.461659,-1.12126,-1.17106,-1.114,-1.19595,0.615361,0.662711,0.808395,0.910182,0.943697,0.80591,0.871539,0.909285,0.73344,0.425303,0.175297,0.0949637,-0.00286832,-0.114027,-0.176178,-0.271225,-0.203144,-0.184707,-0.155073,-0.0438761,0.157388,0.314626,0.299314,0.50048,0.547664,0.501553,0.53656,0.612526,0.615303,0.597938,0.404087,0.427793,0.281788,-0.0803181,-0.245805,-0.209719,-0.565178,-0.747121,-0.607591,-0.698983,-0.64879,-0.473804,-0.509799,-0.584818,-0.0459349,0.0302526,0.418518,0.691241,0.496684,0.269576,-0.221538,-0.440441,-0.543924,-0.519488,-0.530015,-0.501942,-0.509753,-0.522235,-0.488462,-0.550782,-0.748237,-0.77214,-0.7379,-0.806066,-0.858398,-0.893699,-0.805777,-0.847959,-0.871649,-0.854394,-0.854089,-0.839589,-0.804681,-0.74792,-0.743417,-0.772595,-0.768428,-0.762493,-0.701499,-0.66639,-0.621946,-0.606912,-0.583794,-0.565652,-0.555298,-0.521007,-0.494819,-0.496827,-0.461153,-0.462769,-0.444898,-0.483772,-0.452834,3 +-0.36697,-0.725266,-0.224071,-0.388851,-0.297807,-0.0940939,0.0158539,0.0466393,0.0102752,0.20698,0.350003,0.425818,0.35181,0.345365,0.143973,-0.174376,-0.488634,-1.0787,-1.28622,-1.34557,-1.44134,-1.37643,-1.23074,-1.17949,-1.22623,-1.17268,-1.07768,-0.87152,-0.799406,-0.789582,-0.638047,-0.594719,-0.510333,-0.0188764,0.60061,0.319569,0.0305904,0.562991,-0.0321766,0.721159,1.0009,0.604021,1.00661,0.416562,0.695218,1.07687,0.562402,0.74181,0.444765,0.428047,0.499709,-1.34387,-0.975544,-0.449834,0.0886757,0.96516,1.3178,0.819597,0.851903,0.841871,0.98646,0.990536,0.868431,0.989906,0.914749,0.739403,0.712112,0.904669,0.955795,0.856956,0.744926,0.965946,0.89986,0.717543,0.736936,0.785934,0.70986,0.681394,0.685287,0.538297,0.52606,0.582359,0.640355,0.575336,0.560583,0.49838,0.514225,0.477731,0.439157,0.409136,0.265538,0.367694,0.413107,0.415276,0.378766,0.38234,0.399815,0.37988,0.350056,0.43244,2 +-0.359694,-0.375453,-0.34097,1.84802,1.80987,1.46559,1.40915,-1.19168,-1.39362,-1.35247,-1.23871,-1.32192,-1.36932,-0.821979,-0.280277,0.235946,0.438364,1.32403,1.15903,1.36785,1.26747,1.35513,1.47323,1.1785,1.17952,1.45107,1.57004,1.45308,1.0931,1.20258,1.01125,1.21862,1.37024,0.192874,0.206081,-0.110323,-0.632202,0.210127,-0.285056,-1.2303,0.0357117,-0.0585937,-0.675199,-0.557668,-1.69245,-2.23587,-1.1159,-0.0614292,-0.56001,-0.809136,-0.195761,1.51895,1.215,1.21114,0.341207,-1.35803,-1.1407,-1.10274,-1.13713,-0.863159,-0.754371,-0.695571,-0.476277,-0.810762,-0.67793,-0.429666,-0.525177,-0.1398,0.0303702,-0.219096,0.113113,0.143435,0.619695,0.27163,-0.156694,0.088052,0.760564,0.300758,0.116799,0.229162,0.157418,0.243123,0.00192202,-0.0970075,0.204474,0.0665039,-0.26347,0.0319781,0.616529,-0.0283893,-0.262525,-0.0609257,-0.148795,-0.300732,-0.00373733,0.0298138,-0.0390839,-0.246812,-0.176046,-0.17062,1 +-0.352418,-1.53763,-0.33856,0.843324,0.877272,1.46275,1.5348,-0.869523,-0.708995,-0.712116,-0.635576,-0.679713,-0.790269,-0.497532,-0.305013,-0.0800146,0.252928,0.856216,1.08456,1.13454,1.01528,0.919264,0.984513,0.710155,1.18324,1.05743,0.91643,0.955576,0.797394,0.947802,0.746961,0.519956,0.913284,0.825957,0.522794,0.118514,0.111605,-0.0188814,0.518714,0.236438,-0.207323,-0.0544509,0.0976249,-0.112059,-0.189137,0.14038,0.571241,-0.425463,0.0458353,-0.288741,-0.296003,0.435871,0.959578,0.721064,0.523341,0.424685,0.0821094,-0.522609,-0.0428761,-0.0413072,0.00893557,-0.339128,-0.187131,-0.250897,-0.423195,-0.446919,-0.394507,-0.744542,-0.532051,-0.489945,-0.110458,-0.447507,-0.431019,-0.430424,-0.229153,-0.378157,-0.20061,-0.166557,-0.113824,-0.301722,-0.568445,-0.403174,-0.185909,-0.170661,-0.307999,-0.194909,-0.289585,-0.314096,-0.406028,-0.326574,-0.345456,-0.41517,-0.539022,-0.168385,-0.574479,-0.309907,-0.583681,-0.585713,-0.23633,-0.591411,1 +-0.346875,-0.725663,-0.287341,0.646865,0.975619,0.229775,0.384421,-0.556828,-0.658913,-0.688355,-0.653268,-0.572518,-0.420616,-0.229884,-0.128476,0.151375,0.29346,0.462694,0.241881,0.250721,0.312307,0.237806,0.293951,0.333865,0.296612,0.325328,0.570222,0.535892,0.449634,0.391661,0.558436,0.696352,0.810542,0.679123,0.498035,0.298913,0.188323,-0.0200936,-0.34677,-0.114881,-0.536398,-0.977335,-1.03824,-0.568793,-0.807811,-1.03459,-0.43407,-0.435967,-0.240317,-0.899537,-0.588646,0.38412,0.312749,0.427163,0.598029,-0.118609,-0.341707,-0.462399,-0.552319,-0.651862,-0.66407,-0.453541,-0.14459,-0.247439,-0.303888,-0.408996,-0.0679052,0.130596,0.299366,0.413696,0.360706,0.283469,0.282964,0.521157,0.622775,0.272981,0.199128,0.57031,0.401874,0.350514,0.504998,0.2118,0.317198,0.334156,0.340743,0.186495,0.177181,0.198261,0.266017,0.316127,0.084833,0.151705,0.132888,0.17556,0.114985,0.0131755,0.238836,0.0187699,0.0643397,0.286999,1 +-0.344103,-0.74268,-0.19816,-0.300961,-0.487719,-0.622511,0.194553,-1.21764,-1.24002,-1.26758,-1.34395,-1.48547,-1.6473,-1.83475,-2.02172,-2.30097,-2.68864,-2.72304,-2.68473,-2.75114,-2.74678,-2.74587,-2.82571,-3.02091,-3.03964,-3.15391,-3.226,-3.26955,-3.28817,-3.14173,-3.24033,-3.2016,-3.24129,-3.01744,-3.14836,-3.20164,-3.13378,-2.87771,-2.14429,-1.84501,-0.903271,-0.891051,-0.279948,0.993525,2.6573,2.71274,1.73814,0.83371,0.305822,0.337496,0.445258,-2.92273,-3.14735,-3.22843,-3.25097,-2.22993,-0.274222,0.887353,1.22039,1.36478,1.38313,1.5445,1.89719,2.23926,2.51472,2.77539,3.08771,3.37257,3.6118,3.80672,3.68025,3.74107,3.69559,3.90975,3.9884,4.05827,4.10954,4.31872,4.48815,4.51968,4.51493,4.53489,4.59165,4.52255,4.64873,4.78936,4.81537,4.99545,5.13623,5.20165,5.22334,5.09822,5.09429,5.15525,5.2141,5.24646,5.23684,5.09395,4.86101,4.8645,8 +-0.342371,-0.545581,-0.327111,1.47406,1.11636,0.979787,1.02104,-0.749898,-0.541956,-0.48163,-0.406073,-0.345585,-0.206304,-0.0447242,0.0270566,0.0137771,0.140918,-0.113734,-0.251301,-0.238127,-0.29941,-0.417076,-0.464306,-0.294733,-0.196149,-0.100699,-0.246826,-0.0311373,0.0717254,-0.096931,-0.163908,0.0310418,-0.25809,0.253283,-0.0437636,0.0292714,-0.0331592,0.212068,0.359874,-0.150294,-0.0662853,0.222451,-0.518421,-0.443775,0.178164,0.107086,0.114254,-0.0581878,-0.17723,-0.00150133,0.195409,-0.421347,-0.417323,-0.154119,-0.0631766,0.395045,0.170333,-0.152376,0.232604,-0.253473,0.245123,0.162992,0.544015,0.432462,0.654848,0.408785,0.404022,0.935315,0.690466,0.476173,0.991387,0.622433,0.699748,0.972947,0.85539,0.673149,0.755426,0.715949,0.725258,0.622352,0.507353,0.769823,0.654014,0.817532,0.523631,0.370351,0.251526,0.499754,0.442428,0.335334,0.28189,0.22861,0.399157,0.178221,0.384509,0.408549,0.0633224,0.214893,0.417042,0.186189,1 +-0.336828,-0.733052,-0.233712,0.107466,-0.124851,0.0223852,-0.0930409,-0.912155,-0.937724,-1.11599,-1.22845,-1.41415,-1.47741,-1.46117,-1.49744,-1.31361,-1.01983,-0.694101,-0.632124,0.0255961,-0.108211,-0.0607518,-0.0772631,0.210001,0.208875,0.312239,0.463259,0.289736,0.477293,0.582911,0.959644,0.827596,0.841438,1.55614,1.96664,2.39885,1.74069,2.00067,2.65569,2.46963,1.99283,2.04623,1.64218,1.72148,1.03167,1.21474,1.7365,1.53922,1.24293,0.925427,1.0457,0.360314,0.531504,1.05856,2.23309,2.4598,2.2949,1.83513,1.28888,1.25173,1.1321,0.999039,0.845517,0.892196,0.443885,0.558861,0.407397,0.526852,0.545532,0.163203,0.253987,0.382236,0.189382,0.0290062,0.108153,0.090824,0.0178809,-0.11463,0.00616119,-0.131868,0.024409,-0.0322119,-0.133678,-0.0111658,-0.146363,-0.0649813,-0.112146,-0.0236143,-0.0229951,-0.13373,-0.131843,0.0105988,0.0817866,-0.0720494,-0.0659343,-0.0133078,-0.0815566,-0.0111096,0.0260696,0.0628753,1 +-0.335096,-0.629409,0.0880627,-0.99029,-0.931976,-0.852629,-0.835759,0.486503,0.478941,0.419058,0.391779,0.405608,0.352361,0.358731,0.393678,0.235209,0.126157,0.162151,0.226867,0.184691,0.196697,0.19824,0.174209,0.139189,0.0384079,0.0276721,0.0273407,0.0630344,0.101582,0.11075,0.137677,0.184052,0.0952526,0.172302,0.300287,0.316157,0.552453,0.496049,0.490605,0.0663425,-0.32549,0.188405,0.26478,0.182792,0.147943,0.133924,0.104775,0.200921,-0.0460957,-0.108459,0.229387,0.106597,0.0919306,0.206785,0.311038,0.411855,0.276725,0.243374,-0.00716961,-0.0282681,-0.0293062,-0.198153,-0.221059,-0.279703,-0.365712,-0.319633,-0.480909,-0.545881,-0.60606,-0.606667,-0.586976,-0.576729,-0.597578,-0.60657,-0.717675,-0.637878,-0.687072,-0.682926,-0.744508,-0.664275,-0.688047,-0.682819,-0.668359,-0.609279,-0.616584,-0.622067,-0.590189,-0.598523,-0.59423,-0.486246,-0.54329,-0.543898,-0.508965,-0.503891,-0.483609,-0.487734,-0.470335,-0.517315,-0.475078,-0.418763,1 +-0.329899,-0.782053,-0.15839,-0.811065,-0.84889,-0.287279,-0.436478,-0.898744,-0.797258,-0.822856,-0.763982,-0.570784,-0.480387,-0.255421,-0.24131,0.397022,1.04291,0.991472,1.099,1.09844,1.05638,1.0868,1.00034,1.07626,1.00627,1.06515,0.922073,1.16175,0.981886,0.924753,1.03124,0.771497,0.698609,0.57508,0.498719,0.784663,0.238287,0.0802909,-0.118815,-0.016555,-0.319202,-0.561131,-0.70274,-0.658444,-0.907821,-0.913495,-0.835698,-0.726409,-0.878957,-0.608157,-0.786409,0.463876,0.743681,0.774121,0.550161,0.334557,-0.22012,-0.908753,-0.885606,-1.03573,-0.591763,-0.780254,-0.630863,-0.671367,-0.761433,-0.57912,-0.49082,-0.434666,-0.498648,-0.394598,-0.297148,-0.228703,-0.196414,-0.270029,-0.149516,-0.234228,-0.284187,-0.105425,-0.284249,-0.175119,-0.0893457,-0.173232,-0.223639,-0.193302,-0.213185,-0.274087,-0.25829,-0.153042,-0.30634,-0.146321,-0.271783,-0.189044,-0.348049,-0.283318,-0.0790902,-0.390894,-0.134226,-0.241911,-0.257205,-0.250473,1 +-0.321237,-0.873714,-0.263238,0.720968,0.663621,0.607622,0.504484,-0.973934,-1.10964,-1.14784,-1.04174,-1.0021,-0.633861,-0.429746,-0.138842,0.551467,0.841504,0.982105,1.20999,1.08469,0.962448,0.974949,0.90732,0.95612,1.05592,1.03078,1.0284,1.0766,1.0241,0.987277,0.979812,0.913012,0.722673,1.03448,0.706124,0.850095,0.53022,-0.226929,-0.491894,-0.422996,-1.11443,-1.02112,-0.672813,-0.95682,-0.895378,-0.859155,-0.964014,-0.697133,-1.08351,-0.752949,-0.9238,1.39266,0.904275,0.858904,0.714347,-0.077283,-0.72679,-0.943353,-1.04407,-0.773975,-0.884833,-0.840281,-0.718633,-0.634516,-0.428814,-0.370799,-0.349494,-0.0514235,-0.149495,0.0576912,-0.0505043,-0.124698,-0.105464,-0.133586,0.0181436,0.152544,0.225027,0.0271165,-0.120942,0.0905493,0.098613,0.225804,-0.102451,-0.165724,-0.0854479,0.0390125,-0.273565,-0.225125,-0.0272245,0.0549756,-0.114417,-0.0649042,-0.210872,-0.156303,0.0109547,0.0677995,-0.112896,-0.150511,-0.040304,0.0158004,1 +-0.308418,-1.09562,0.0513057,-0.950654,-0.850586,-0.659444,-0.743617,0.378649,0.612101,0.744103,0.626848,0.46871,0.34993,0.126676,-0.211596,-0.677479,-1.0667,-1.22973,-1.2569,-1.30334,-1.2459,-1.2941,-1.33514,-1.37988,-1.42285,-1.44776,-1.50978,-1.62242,-1.53118,-1.46678,-1.21236,-0.88144,-0.723658,-0.692596,-1.03946,-1.24566,-1.15531,-0.534818,-0.450748,-0.239753,0.283967,0.437367,0.537763,0.509683,0.478187,0.410968,0.422831,0.313572,0.269268,0.394507,0.182907,-1.20391,-1.36182,-1.22368,-0.98353,-0.386894,0.430523,0.794045,0.72402,0.475455,0.643137,0.607505,0.503412,0.64964,0.694974,0.657532,0.685788,0.608335,0.677192,0.749383,0.75567,0.89411,0.822639,0.931658,0.933852,0.87733,0.879441,0.81108,0.917418,1.01123,0.981789,1.04718,1.14127,1.08121,1.09538,1.07374,1.06289,1.0926,1.07499,1.02252,1.04351,1.07458,1.12324,1.14017,1.03935,1.14793,1.23637,1.07197,1.03419,1.04605,7 +-0.307725,-0.14404,-0.189122,-0.728345,-0.658978,-0.1708,-0.162845,1.03617,1.15396,1.37825,1.44389,1.25153,1.33916,1.47489,1.17811,1.23895,0.915062,0.464697,0.275182,0.307202,0.0562252,0.0098097,0.0121211,-0.10941,-0.349767,-0.354173,-0.202369,-0.272437,-0.31877,-0.370769,-0.792778,-0.470695,-0.656768,-0.774581,-0.994196,-1.47865,-0.691307,-0.149468,-0.67182,-0.708799,-0.339974,-0.795864,-0.135549,-0.565286,-0.104844,-0.464187,-0.307834,-0.37668,-0.158433,-0.0216576,-0.23971,-0.586658,-0.523316,-0.606831,-0.538893,-1.14458,-0.982598,-0.346925,-0.158834,-0.486809,-0.0592576,-0.216524,-0.432787,-0.34444,-0.633474,-0.456987,-0.568013,-0.8623,-0.961607,-0.6667,-0.925074,-0.997144,-0.868583,-1.01164,-1.10615,-1.09563,-0.936379,-0.789598,-0.908921,-0.714798,-0.750199,-0.872994,-0.764464,-0.550975,-0.880561,-0.891706,-0.573394,-0.623139,-0.773877,-0.521108,-0.76522,-0.635473,-0.707164,-0.800723,-0.652431,-0.646704,-0.573039,-0.575242,-0.537945,-0.745294,0 +-0.307725,-0.345661,3.66736,-1.13505,-1.34402,-1.21911,-1.19037,0.171401,0.402136,0.603077,0.707934,0.795518,0.927691,0.968041,0.933782,0.796624,0.509013,0.389851,0.123127,-0.151544,-0.133847,-0.127197,-0.18884,-0.285046,-0.363338,-0.2711,-0.123665,-0.0574961,0.0317302,0.0714175,-0.022032,0.0924952,0.345603,0.474849,0.492627,0.481652,0.54591,0.785885,1.00011,0.803271,0.762922,0.589062,0.316651,0.275267,0.125822,-0.0512845,-0.0427558,-0.0478092,-0.0647597,-0.056876,-0.0393759,-0.0678186,-0.216675,0.141527,0.540979,0.964245,0.795563,0.436223,0.192479,0.12472,-0.029047,-0.160724,-0.0803694,-0.0723745,-0.0334737,-0.0845839,-0.239371,-0.415056,-0.510447,-0.57579,-0.704203,-0.825509,-0.848864,-0.867912,-0.880378,-0.903486,-0.898352,-0.874296,-0.892404,-0.866214,-0.866843,-0.880514,-0.838663,-0.838878,-0.865441,-0.833795,-0.763773,-0.704157,-0.708817,-0.672794,-0.652561,-0.654336,-0.61247,-0.606088,-0.58344,-0.535701,-0.539152,-0.555411,-0.533998,-0.519986,3 +-0.307032,-0.735244,-0.254802,0.40043,0.132886,-0.233301,-0.442063,-1.28546,-1.37194,-1.55573,-1.59253,-1.61185,-1.70423,-1.50814,-1.38972,-1.01707,-0.606725,0.12442,0.710077,0.968074,1.20497,1.58041,1.75621,1.28629,1.43264,1.43607,1.43706,1.28346,1.2017,1.19834,0.941485,1.13987,1.41751,1.09239,0.944972,1.28117,0.787426,0.565216,0.338199,0.000466833,0.287742,-0.247181,-0.354514,-0.0613709,-0.444043,-0.263555,0.0396231,-0.292003,-0.302281,-0.410323,-0.144271,1.31037,1.14182,1.12483,1.04791,0.378798,-0.252486,-0.0163109,-0.326746,-0.449312,-0.389247,-0.168045,-0.299533,-0.468656,-0.258141,0.168621,-0.407456,-0.171955,0.0272491,0.320598,0.401514,0.235011,0.473547,0.420341,0.0784523,0.384148,0.131905,0.359516,0.297391,0.320496,0.288625,0.0532547,0.159873,0.242913,0.256329,0.0279635,-0.130117,0.152598,0.0499496,-0.0736588,0.0874905,0.18226,0.00798207,-0.00875246,-0.0258353,0.00299608,0.188295,0.0136439,0.00239838,-0.0272913,1 +-0.297678,-0.713937,-0.0601707,-0.342321,-0.58437,-0.486146,-0.673813,-1.20336,-1.24245,-1.317,-1.37579,-1.4355,-1.56067,-1.52283,-1.34839,-1.0659,-0.585489,-0.0312892,0.314032,0.607208,0.692996,0.940187,1.00173,1.14295,1.05811,0.97841,1.1482,1.1165,1.19494,1.32282,1.3161,1.25195,1.51395,1.50521,1.46279,1.41223,1.41229,1.70501,1.32224,0.825168,0.067679,0.560881,0.640761,0.24735,0.235707,0.174933,0.114407,0.133992,0.00226718,-0.183694,-0.0550564,1.05228,1.23276,1.28209,1.32556,1.24384,0.982835,0.350765,0.246867,0.134219,-0.0165296,-0.145462,-0.124671,-0.0469092,-0.307282,-0.17245,0.11874,0.0781453,0.0586782,0.278707,0.231221,0.0857571,0.197557,0.406127,0.171733,0.159106,0.190116,0.153101,0.131672,0.12216,0.0977484,0.0580169,0.103559,-0.0302018,-0.0622327,-0.0896975,-0.0521769,-0.0367037,-0.0368445,0.00678087,-0.169819,-0.108602,-0.132887,-0.150043,-0.188694,-0.166421,-0.115839,-0.171615,-0.183476,-0.0413215,1 +-0.290056,-0.533249,0.0687803,-0.874828,-0.977759,-0.960585,-0.950238,0.498429,0.53037,0.74989,0.855809,1.04461,1.07135,1.15958,1.08345,0.730429,0.546895,0.298653,0.0539623,-0.130664,-0.211531,-0.24155,-0.250119,-0.246136,-0.323303,-0.226333,-0.111835,0.0159408,0.08421,0.0930683,0.104588,0.249305,0.194449,0.221161,0.213045,0.584555,0.358702,0.380711,0.303303,0.227476,0.0136213,-0.330564,-0.250228,-0.469757,-0.469809,-0.57075,-0.514147,-0.524393,-0.34882,-0.618961,-0.45933,0.0435991,0.126878,0.109104,0.142379,0.0801529,-0.0273042,-0.184605,-0.308579,-0.511251,-0.504679,-0.351339,-0.275099,-0.260927,-0.319924,-0.370311,-0.495871,-0.445921,-0.587176,-0.583863,-0.612338,-0.693087,-0.754218,-0.72103,-0.59792,-0.695953,-0.786214,-0.678476,-0.655377,-0.682597,-0.67287,-0.637801,-0.61782,-0.725807,-0.670822,-0.645602,-0.61762,-0.449926,-0.513321,-0.564755,-0.476183,-0.528004,-0.602743,-0.517597,-0.496558,-0.541696,-0.544766,-0.451683,-0.555424,-0.556244,3 +-0.289709,-0.522526,0.973848,-1.13505,-1.28637,-1.26173,-1.21829,-1.0645,-1.16209,-1.20603,-1.23886,-1.34319,-1.30873,-1.27177,-0.997341,-0.541471,-0.164716,0.414357,0.73698,0.90076,1.02089,1.03967,0.985454,0.917728,0.940577,0.856514,0.861819,0.891974,0.922952,0.910483,0.775444,0.695511,0.862822,0.857805,0.90126,0.966419,0.686419,0.389781,0.475868,0.382342,0.0282179,0.161787,0.179518,0.133872,0.231705,0.0819402,0.162399,0.322104,0.336933,0.367338,0.282475,0.770785,0.836908,0.774046,0.528822,0.478017,0.267933,0.231747,0.181112,0.10988,0.0356707,0.0697935,0.0240962,-0.0497179,-0.0247093,-0.073003,-0.038352,-0.0709246,-0.000674776,0.114959,0.121833,0.199587,0.173812,0.155183,0.190125,0.134393,0.145309,0.107086,0.127559,0.107371,0.142428,0.110302,0.0850714,0.045603,0.0248685,0.00550674,-0.0512535,-0.00418731,-0.0399072,-0.0248057,-0.0720033,-0.0846381,-0.0984079,-0.0753122,-0.134277,-0.139749,-0.169061,-0.108305,-0.129517,-0.268918,1 +-0.289363,1.73044,-0.240341,-0.195839,0.0582777,-0.0514796,-0.0232366,0.964925,1.00874,0.939055,0.957113,0.89636,0.859045,0.902529,0.780985,0.396889,0.373103,0.146435,-0.113411,-0.0805182,-0.163095,-0.212804,-0.252457,-0.181841,-0.420022,-0.404408,-0.386508,-0.476396,-0.323455,-0.390328,-0.611689,-0.468195,-0.400283,-0.569521,-0.830122,-0.835275,-0.638871,-0.518617,-0.16332,-0.332371,-0.117324,-0.00755689,0.182805,0.230979,0.473812,0.444785,0.543402,0.727248,0.45837,0.0970809,0.511592,-0.234395,-0.390003,-0.413978,-0.715707,-0.091836,0.393418,0.304479,-0.171632,0.232905,0.210285,0.345051,-0.0647109,-0.117727,-0.303353,-0.63764,-0.414648,-0.435806,-0.50721,-0.583696,-0.664393,-0.725399,-0.768722,-0.782885,-0.620046,-0.564998,-0.76478,-0.66581,-0.464039,-0.57138,-0.511379,-0.631805,-0.463942,-0.629155,-0.51859,-0.476526,-0.562227,-0.473886,-0.39625,-0.550783,-0.626917,-0.455135,-0.56527,-0.47589,-0.564484,-0.540894,-0.53204,-0.578274,-0.522226,-0.468029,0 +-0.27689,-0.0156165,-0.0607732,-0.683539,-0.718326,-0.727627,-0.774331,-0.580798,-0.648636,-0.791539,-0.874093,-0.921055,-0.984724,-0.92357,-0.935522,-0.74399,-0.221932,0.164866,0.495469,0.782549,0.902926,1.04588,1.16633,1.1456,1.05508,1.0979,1.08522,0.874958,0.902616,0.856076,0.82776,0.553542,0.668564,0.522827,0.407035,0.172205,0.180463,0.0567058,-0.566258,-0.242945,-0.488798,-0.581877,-0.526116,-0.485754,-0.342215,-0.245269,-0.297258,-0.195894,-0.253799,-0.458264,-0.372301,1.03079,0.904268,0.637993,0.0632495,-0.46936,-0.614304,-0.344778,-0.284424,-0.409073,-0.545992,-0.380345,-0.421352,-0.423635,-0.338194,-0.356204,-0.217234,-0.0716985,-0.0641068,-0.118392,0.0666692,0.147584,0.116211,0.296023,0.15163,0.224143,0.197226,0.253075,0.203153,0.176589,0.166466,0.176098,0.0809587,0.0659439,0.070191,0.130023,0.00970051,-0.0043128,-0.0135175,-0.042671,-0.0341629,-0.0689988,-0.114821,-0.0778215,-0.114423,-0.0852733,-0.150693,-0.171648,-0.15653,-0.186912,1 +-0.276544,0.0899614,-0.262636,1.34136,0.836577,0.326367,0.233643,-1.00237,-1.01839,-0.934404,-0.879328,-0.79439,-0.858383,-0.758587,-0.453273,0.0225046,0.489844,0.870016,0.927081,0.935586,0.858967,0.884967,0.664077,0.753855,1.14064,0.871841,0.953926,1.06455,0.937788,0.911973,0.90449,0.983382,1.10517,1.07888,0.905842,1.48373,1.0118,0.921364,-0.244272,0.336047,0.331922,-0.632319,-0.518932,-0.0420252,-0.586612,-0.519783,-0.859476,-0.367928,-0.383106,-0.783772,-0.692325,0.925236,1.32491,1.42868,1.10759,-0.0822868,-0.545996,-1.04709,-0.936616,-0.906762,-0.938854,-0.765812,-0.835672,-0.635554,-0.580314,-0.608982,-0.424799,-0.123708,-0.179516,-0.256479,-0.0825995,-0.0763707,-0.0963562,0.000819321,-0.0279172,-0.011757,-0.0588452,-0.0283795,0.0440253,0.107281,-0.0369393,-0.150261,-0.0141517,0.0771847,-0.061904,-0.138896,-0.0841975,-0.0877954,0.00942874,-0.00414752,-0.181799,0.0209249,-0.0967552,-0.362315,-0.146339,-0.0403254,-0.156521,-0.309623,0.000678401,-0.0873822,1 +-0.276544,-0.606447,-0.244559,0.228098,0.451666,0.229775,0.0856582,0.684802,0.693866,0.867927,0.751962,0.752924,0.67388,0.768792,0.746342,0.388714,0.170365,0.115797,-0.0673567,-0.207307,-0.228728,0.0416999,-0.214624,-0.194689,0.0260893,0.00705458,0.337441,0.454154,0.435909,0.929935,1.08277,0.682224,0.655538,0.776965,0.457517,0.392076,-0.096973,0.497054,0.521102,-0.0338394,0.281958,-0.681079,-0.392034,-1.05656,-0.922873,-0.816273,-0.993201,-0.654908,-0.632053,-0.750157,-0.64799,-0.0601536,0.399529,0.833325,0.676593,0.890751,-0.579815,-0.407659,-0.514678,-0.404789,-0.656967,-0.532767,-0.342864,-0.602159,-0.457879,-0.661798,-0.869556,-0.952957,-1.057,-0.78979,-0.807731,-0.504398,-0.79447,-0.900446,-0.966507,-0.659277,-0.830899,-0.928418,-0.971953,-0.701795,-0.537818,-0.687728,-0.788393,-0.638708,-0.656972,-0.703215,-0.698231,-0.656201,-0.512188,-0.571089,-0.588004,-0.272769,-0.378589,-0.561768,-0.551235,-0.564808,-0.316064,-0.286029,-0.456014,-0.371503,3 +-0.276198,-0.633978,-0.144531,-0.164819,-0.289329,-0.542965,-0.550957,3.39517,2.02258,-1.12584,-2.11644,-2.66416,-2.88216,-3.27982,-3.81721,-3.79159,-3.70431,-3.67427,-3.91713,-3.48134,-3.22089,-3.54688,-3.11732,-2.96024,-2.44989,-1.3046,-1.18211,-2.72489,-3.34302,-3.85731,-3.6655,-3.0584,-3.61613,-4.89151,-4.88638,-5.18861,-6.11944,-6.09904,-5.60246,-5.14777,-4.33386,-3.53487,-1.73337,0.378609,2.41791,1.17904,-0.158059,-0.106732,-2.12366,-1.68401,-1.94318,-3.13244,-3.11072,-4.44191,-5.15913,-5.03242,-3.10298,-0.864625,-0.798304,-0.795348,2.17913,5.1814,4.70144,2.25119,2.42153,3.97762,4.34647,3.72868,2.74598,2.48105,2.54291,2.62231,3.03565,3.10299,3.79258,4.12942,4.3199,5.03744,5.37242,5.37341,5.5165,5.45788,5.41062,5.50323,5.36684,5.12784,5.3306,5.19782,5.71926,5.8301,5.53719,6.03061,5.84219,5.86314,6.16998,6.05889,5.88843,6.18603,6.37743,5.58534,8 +-0.275851,-0.511243,-0.260828,0.0264697,0.0854079,0.315004,0.121956,-0.673838,-0.728377,-0.858164,-0.836739,-0.625963,-0.482413,-0.436837,-0.119751,0.19784,0.519338,0.723029,0.723772,0.556581,0.429561,0.459329,0.378973,0.57894,0.56056,0.544605,0.617585,0.551561,0.565729,0.554987,0.381976,0.279641,0.464639,0.527383,0.211709,0.107978,0.0515496,-0.0812454,-0.522413,-0.713369,-1.31709,-1.03829,-0.852001,-0.676945,-0.906872,-0.817138,-0.588368,-0.49366,-0.965404,-0.735926,-0.286323,0.440528,0.406564,0.296002,0.160519,-0.627602,-0.592959,-0.912247,-0.506128,-0.330915,-0.62629,-0.350408,-0.290776,-0.355741,-0.20492,0.0789984,0.00926067,0.0584369,0.236552,0.344358,0.435511,0.463397,0.609711,0.478794,0.580396,0.672667,0.591173,0.478543,0.50242,0.483645,0.249484,0.267466,0.301713,0.440899,0.321297,0.214899,0.335371,0.119701,0.0243949,0.146044,0.0404426,0.119376,0.132709,0.246314,-0.0370737,0.0192375,0.061065,0.074373,0.029389,-0.0244577,1 +-0.274812,-0.651089,-0.198763,0.0850626,-0.185895,-0.264551,-0.235442,0.655519,0.672103,0.622432,0.72215,0.766977,0.59119,0.454712,0.165374,0.0832034,-0.0742918,-0.364031,-0.444639,-0.505578,-0.476914,-0.484534,-0.483298,-0.214676,-0.0543431,-0.152042,-0.161285,-0.13607,-0.145314,-0.153028,0.0109932,-0.312364,0.080348,0.190515,0.121558,0.178964,0.0330631,0.535689,0.673095,0.824613,0.546223,0.551681,0.50104,0.466075,0.471738,0.401366,0.44436,0.65052,0.553678,0.211218,0.246735,0.309082,-0.0437099,-0.0259746,0.42153,0.406367,0.338473,0.283575,0.312418,0.39978,0.2577,0.208325,0.0873795,-0.16879,0.0492851,-0.0882034,-0.105277,-0.336875,-0.240675,-0.471328,-0.648876,-0.524043,-0.520684,-0.471806,-0.432354,-0.621352,-0.890576,-0.734637,-0.631914,-0.643198,-0.649848,-0.437618,-0.664085,-0.651861,-0.427567,-0.277254,-0.477986,-0.559295,-0.67034,-0.392605,-0.435441,-0.383038,-0.437066,-0.529972,-0.497961,-0.27899,-0.324435,-0.292914,-0.411638,-0.41753,3 +-0.272733,-0.69608,-0.29879,0.810581,0.75349,0.698532,0.560328,-0.377801,-0.383361,-0.336213,-0.430416,-0.342464,-0.484691,-0.66592,-0.529802,-0.486885,-0.447774,-0.382083,0.0153189,0.129917,0.251797,0.393662,0.528342,0.462084,0.439703,0.43599,0.476728,0.608282,0.454965,0.438769,0.455332,0.79065,0.677036,0.60855,0.523982,0.687572,0.866005,0.458097,0.759351,0.608435,0.817994,0.0667975,0.294779,0.804508,0.189488,0.00731696,0.0995291,0.0341864,-0.00325268,-0.109791,0.076874,0.546396,0.565185,0.716089,0.911612,0.840567,0.577361,0.287813,-0.325088,-0.102716,-0.0560379,-0.192676,-0.242085,-0.144367,-0.295497,-0.176372,-0.203753,-0.396682,-0.174602,-0.256704,-0.238038,-0.34061,-0.188942,-0.153016,0.156999,-0.0616845,-0.0269961,-0.092112,0.027794,-0.0819513,-0.0544095,0.022481,-0.175763,-0.103088,-0.119957,-0.0299457,-0.0087707,-0.0841113,0.0270147,-0.175693,-0.20959,0.0270127,-0.050048,-0.308975,-0.082068,-0.0926952,-0.0385297,-0.189205,0.0376161,-0.117485,1 +-0.269268,-0.548425,-0.19816,0.371134,0.568665,-0.531601,-0.520243,-0.514859,-0.353029,-0.376948,-0.376862,-0.498032,-0.31447,-0.0784303,0.139308,0.370411,0.856243,0.574019,0.804312,1.1533,1.20867,0.934814,0.847562,0.864407,0.814382,0.597456,0.788878,0.890979,0.644919,0.677656,0.888407,0.56211,1.08688,1.22495,1.12343,0.542972,0.205849,0.357356,-0.375123,0.168415,-0.54622,-1.08025,-1.07666,-0.759835,-0.614614,-0.695362,-0.993394,-1.09482,-0.569639,-1.09577,-0.606295,0.640127,0.796529,0.774695,0.356124,0.184726,-0.384649,-0.66837,-0.545515,-0.633235,-0.805503,-0.586633,-0.566874,-0.678257,-0.693076,-0.687833,-0.631201,-0.637211,-0.711611,-0.686779,-0.566178,-0.568708,-0.528549,-0.384111,-0.537872,-0.501052,-0.324069,-0.312431,-0.44948,-0.370813,-0.495322,-0.379857,-0.228931,-0.342102,-0.396803,-0.306628,-0.23795,-0.389783,-0.289254,-0.23084,-0.32244,-0.317106,-0.356071,-0.368072,-0.281998,-0.145829,-0.352745,-0.41935,-0.308137,-0.237584,1 +-0.26719,0.439192,0.666534,-1.26602,-1.26941,-1.06854,-1.09822,-0.878315,-0.941547,-0.99223,-0.978987,-0.9157,-0.812242,-0.647412,-0.374165,0.0514118,0.513231,0.856161,0.964365,1.00724,0.98871,0.92896,0.886169,0.950325,0.926483,0.916001,0.911479,0.903099,0.788711,0.740532,0.743415,0.634508,0.494296,0.429002,0.322164,0.196758,-0.102186,-0.353163,-0.523421,-0.660242,-0.750652,-0.885889,-0.801044,-0.894801,-0.898204,-0.844249,-0.900442,-0.86323,-0.812929,-0.766454,-0.719291,0.828441,0.703964,0.523438,0.0860061,-0.435248,-0.869228,-0.853903,-0.828817,-0.800054,-0.676432,-0.586825,-0.538432,-0.481523,-0.428977,-0.3343,-0.25515,-0.144637,-0.0267369,0.0717493,0.206524,0.255653,0.280831,0.355613,0.364568,0.428758,0.402622,0.360807,0.351688,0.341077,0.319602,0.306131,0.291542,0.241525,0.225366,0.176202,0.160233,0.175721,0.148976,0.103542,0.115421,0.087913,0.0579864,0.0344026,0.0447846,0.0398564,0.0147375,0.00731648,0.00766556,0.0191476,1 +-0.265457,-0.402635,-0.251187,0.0954026,0.0175823,0.0053395,0.135917,-0.465477,-0.500704,-0.459005,-0.436162,-0.472531,-0.334412,-0.235142,-0.213167,0.0551544,0.0629151,0.162312,0.167655,-0.0209071,-0.274811,-0.161431,0.051285,-0.0124994,-0.183465,0.107377,0.0680422,-0.111066,-0.131534,0.0214209,-0.0523702,0.367259,0.308363,0.148782,0.607686,0.82818,-0.0697847,0.175014,0.304298,-0.138512,0.13148,0.103907,-0.0332433,-0.108984,-0.660822,-0.412022,-0.12827,-0.681605,-0.562051,0.0795155,-0.131782,-0.00202286,0.423006,0.279454,0.438362,0.27748,-0.419874,-0.532326,-0.439181,-0.428721,-0.436605,-0.448599,-0.124725,0.0197642,-0.142255,-0.31627,0.082297,0.243804,0.203842,0.384044,0.670094,0.626135,0.611377,0.83182,0.680257,0.538001,0.776052,0.671044,0.307876,0.681843,0.539912,0.663179,0.458695,0.416584,0.443586,0.271287,0.393352,0.400726,0.26503,0.294265,0.408648,0.138172,0.325015,0.339501,0.17211,0.180038,0.170375,0.343608,0.197037,0.284602,1 +-0.265111,0.488962,-0.226481,-0.190669,-0.0214174,-0.241824,-0.18239,1.05121,1.00915,1.03865,1.04138,0.951483,0.987047,0.838449,0.689489,0.583833,0.351468,0.0816523,-0.144794,-0.13786,-0.145057,-0.21906,-0.322282,-0.41028,-0.453542,-0.404218,-0.419122,-0.480467,-0.467496,-0.522902,-0.428689,-0.567518,-0.718022,-0.590993,-0.589693,-0.773348,-0.807554,-0.706011,-0.14465,-0.254823,-0.127261,0.06933,0.335161,0.172799,0.0812022,0.45789,0.678538,0.406062,0.434603,0.4852,0.533725,-0.513905,-0.510013,-0.570576,-0.643354,-0.312802,0.0470016,0.23197,0.318878,0.558916,0.0742529,0.122971,-0.161,-0.170336,-0.18166,-0.395667,-0.296034,-0.477664,-0.525352,-0.581562,-0.78626,-0.702022,-0.666658,-0.726195,-0.619515,-0.556854,-0.559804,-0.559373,-0.594999,-0.702603,-0.573948,-0.540174,-0.492742,-0.423039,-0.440345,-0.526909,-0.404006,-0.577086,-0.581057,-0.470328,-0.469824,-0.426278,-0.532882,-0.550591,-0.545161,-0.455969,-0.477406,-0.585718,-0.511841,-0.564756,0 +-0.263725,-0.894788,-0.301201,0.938107,0.721273,0.170115,0.0605286,-0.604902,-0.455194,-0.462731,-0.214169,-0.119705,-0.136004,-0.106022,-0.0436185,-0.0471962,-0.413282,-0.692395,-0.971545,-1.25039,-1.03557,-0.905428,-0.96054,-0.869026,-0.785164,-0.651025,-0.713163,-0.839418,-0.63299,-0.279642,-0.37684,-0.363438,-0.0822471,-0.175792,0.104905,0.559112,1.16065,0.943639,0.814511,1.38079,1.22655,1.0859,1.20345,0.955817,1.38486,0.747753,0.588769,0.313803,0.862616,1.56496,1.29035,-0.369822,-0.0980028,0.133973,0.622099,0.926319,0.944807,0.768767,0.451584,0.333987,0.526197,0.41309,0.382825,0.567822,0.623639,0.483243,0.722122,0.639821,0.755098,0.98224,0.489164,0.578702,0.816573,0.95203,0.901228,0.631677,0.790966,0.750632,0.683488,0.770204,0.588369,0.752127,0.658839,0.542479,0.675021,0.568704,0.617907,0.482436,0.604596,0.453711,0.297076,0.351613,0.356702,0.359158,0.41396,0.276184,0.250547,0.509791,0.367228,0.41978,3 +-0.25541,0.340933,-0.324701,1.88421,1.53009,1.27809,1.20253,-0.654425,-0.58721,-0.56502,-0.675304,-0.705345,-0.608511,-0.57235,-0.189118,0.240822,0.346893,1.09673,0.771892,1.20638,1.03095,1.41577,1.42057,1.27588,1.16332,0.501337,1.12869,1.15481,0.69028,0.665221,0.908586,0.796784,1.17053,1.00131,-0.511239,0.0318023,0.117667,-0.615547,0.144666,0.28618,-1.35701,-0.271006,-0.308105,-1.69224,0.135127,-0.608177,-0.568974,-0.422348,-1.14151,-0.0749544,-0.148583,1.00601,0.910052,0.364434,-0.14561,-0.332593,-0.0585421,-0.17557,-1.04895,-0.570098,-0.572765,-0.548674,-0.69351,-0.421989,-0.512088,-0.396325,-0.626562,-0.832208,-0.915911,-0.716786,-0.641259,-0.904903,-0.337885,-0.471738,-0.38444,-0.245435,-0.173174,-0.505824,-0.420348,-0.0957922,-0.189106,-0.328802,-0.178194,-0.251425,-0.204043,-0.350519,-0.504064,-0.331031,-0.0791884,-0.32992,-0.437229,-0.334137,-0.290368,-0.0990662,0.0096281,-0.509769,-0.135343,-0.0621586,-0.0878826,-0.130644,1 +-0.25541,-0.650879,-0.262033,3.06813,2.87304,3.24971,3.04257,-0.799684,-1.00951,-0.865952,-1.01213,-1.17719,-1.15447,-1.11944,-1.04936,-0.662827,-0.377828,0.165104,0.448546,0.580553,0.719099,0.977524,1.19684,1.21179,1.28685,1.07315,1.02176,0.951125,1.04418,1.0403,0.763455,1.01025,1.26612,0.832284,0.932023,0.757282,1.12188,0.692882,0.714648,0.0880495,-0.6012,-0.723421,-0.0279724,-0.65519,-0.689324,-0.65087,-0.216406,-0.682069,-0.525855,-0.717817,-0.664185,0.937014,0.833093,0.78767,1.07298,0.00135456,0.191389,-0.293202,-0.391406,-0.370975,-0.507925,0.0206811,-0.473355,-0.170461,-0.0787095,-0.100252,-0.146524,0.179199,0.274703,0.417904,0.469784,0.753989,0.492856,0.404346,0.632381,0.513539,0.451305,0.368422,0.232674,0.102008,0.241788,0.132791,0.0072861,-0.0795677,0.172634,-0.114795,-0.0655022,0.119433,-0.0228409,-0.0293786,-0.469104,-0.133753,0.0332214,-0.0805343,-0.361301,-0.223998,-0.351951,-0.272337,-0.45742,-0.391553,1 +-0.242245,-0.226796,-0.252995,0.248778,0.299059,-0.193527,-0.115378,-0.874331,-0.892114,-1.01408,-0.8663,-0.873403,-0.906286,-0.623847,-0.408613,-0.0579472,0.439569,0.962191,1.14587,1.11243,1.0451,1.14135,1.12454,1.0506,1.15658,1.00435,1.00737,1.10944,0.965996,0.850572,0.82346,0.905812,0.653136,0.580901,0.474545,0.225331,-0.0333879,-0.114324,-0.941184,-0.407079,-0.303481,-0.847597,-0.743283,-0.777267,-0.935957,-0.651179,-0.538538,-0.257074,-0.554473,-0.39183,-0.665491,1.11325,1.03442,0.548787,0.208546,-0.531844,-0.574351,-0.635576,-0.916205,-0.654239,-0.599532,-0.474002,-0.470221,-0.58056,-0.375517,-0.520727,-0.151123,-0.250316,-0.426019,-0.106287,-0.0259329,-0.0197137,0.051591,0.0583938,-0.0261237,0.248637,0.11101,-0.0512891,0.0186427,-0.0373107,0.0471203,0.096478,-0.0774583,-0.126562,-0.0326733,-0.0874581,0.0262895,-0.227457,-0.176309,-0.0090353,-0.107078,-0.193423,-0.220281,-0.0657351,-0.210301,-0.0670381,-0.133098,-0.0856305,-0.167389,-0.300726,1 +-0.235662,-0.858702,-0.236725,0.367687,0.0362343,-0.0742072,0.0130617,-0.836983,-0.838993,-0.934015,-1.04151,-1.09379,-1.11987,-1.31201,-1.23847,-0.819937,-0.398365,-0.0350324,0.411772,0.751473,0.906086,1.08359,1.30271,1.4235,1.46066,1.32792,1.33978,1.30066,1.23591,1.20802,1.21614,1.03425,0.810937,0.657941,1.04915,0.905888,0.596871,0.251223,0.14654,0.45806,-0.505427,-0.687122,-0.155131,-0.440741,-0.742521,-0.458363,-0.328667,-0.413311,-0.675133,-0.443574,-0.501376,1.39297,1.21936,0.690142,0.528369,-0.0552755,-0.224713,-0.24997,-0.439026,-0.507831,-0.635326,-0.675007,-0.611747,-0.621312,-0.391258,-0.39844,-0.230571,-0.024405,-0.212235,-0.0348338,0.264342,0.216283,0.0272945,0.253547,0.0951775,0.269467,0.320773,-0.00316882,0.0705509,0.230781,0.288812,-0.0341995,0.133416,0.015865,0.0528421,0.124199,-0.0182978,-0.0853993,-0.129676,-0.00186416,-0.00967496,-0.190012,0.0408969,-0.135859,-0.242968,-0.1451,-0.198952,-0.275593,-0.140315,-0.148925,1 +-0.227693,-0.652464,0.131448,-0.873104,-0.787847,-0.113981,-0.475569,-0.922982,-1.04154,-1.1404,-1.20269,-1.30507,-1.32729,-1.25863,-1.13521,-0.798474,-0.410564,-0.049793,0.207514,0.377488,0.429052,0.484122,0.531419,0.537848,0.622274,0.575492,0.573122,0.618628,0.734078,0.693318,0.638951,0.554569,0.71991,0.896584,0.953833,0.967673,0.976291,1.06775,1.13873,0.807331,1.08286,0.860009,0.819335,0.497264,0.525873,0.298472,0.355608,0.70364,0.553027,0.46802,0.651627,0.379973,0.614356,0.744449,0.99455,1.18837,0.803601,0.634809,0.632941,0.486704,0.47528,0.463313,0.285281,0.307716,0.276779,0.248918,0.151905,0.168133,0.192192,0.284105,0.29536,0.313295,0.258023,0.288127,0.318452,0.349786,0.291363,0.297222,0.265381,0.251444,0.174225,0.141527,0.239007,0.212281,0.116523,0.139402,0.123096,0.108237,0.0177989,0.0445945,0.055028,0.0326433,0.00824299,-0.0178512,0.0142322,-0.0135364,-0.0284225,-0.0924918,0.00208585,-0.0354072,1 +-0.225961,0.85852,-0.367484,1.68431,1.96248,2.11049,1.81681,-0.215727,-0.405933,-0.441458,-0.431069,-0.442282,-0.503255,-0.278305,-0.126211,0.0248682,0.326519,0.604163,0.708482,0.77166,0.708768,0.866505,0.960976,0.875016,0.829691,0.7681,0.687971,0.851296,0.704011,0.44548,0.387361,0.330942,0.336965,0.44111,-0.0118246,-0.280799,0.306879,0.93469,-0.314242,-0.120093,0.298054,-0.211202,-0.255808,-0.0540275,-0.229083,-0.389752,-0.720294,-0.494473,-0.456752,-0.783036,-0.335527,0.968974,1.02507,0.346577,0.533826,-0.28555,-0.467182,-0.496462,-0.680377,-0.229169,-0.459396,-0.115817,-0.409585,-0.547566,-0.471286,-0.351729,-0.867068,-0.13768,-0.376631,-0.458518,-0.482698,-0.635837,-0.614471,-0.0867533,-0.131935,-0.451056,-0.180828,-0.221453,-0.352278,-0.40785,-0.400229,-0.0141275,-0.170068,-0.438403,-0.136808,-0.04151,-0.36991,-0.425525,-0.284398,-0.356009,-0.196849,-0.0918956,-0.216518,-0.275043,-0.435158,-0.215073,-0.401689,-0.0983847,-0.530047,-0.256569,1 +-0.220764,-0.591295,-0.157788,-0.238922,-0.206242,-0.398076,-0.467192,1.36091,1.3006,1.61442,1.54376,1.35433,1.16871,1.14141,0.65701,0.116216,-0.330025,-0.853175,-1.23506,-1.15014,-1.01258,-1.2841,-1.1499,-1.3704,-1.2424,-0.937387,-0.645194,-0.694076,-0.585215,-0.442625,-0.298276,-0.010819,0.0142992,0.136669,0.473098,0.614906,1.05643,1.40059,1.95224,1.37129,1.04738,0.546309,0.344548,0.581791,0.284383,0.667503,0.213796,0.513419,0.173764,0.0452527,0.0787173,-0.592479,-0.288673,0.243722,0.769969,1.1361,0.962305,0.62046,0.406804,0.0376321,0.191456,-0.045638,0.172515,0.225094,-0.495671,0.0969408,-0.290908,-0.490148,-0.586686,-0.785775,-0.529401,-0.567286,-0.400013,-0.807963,-0.723882,-0.703032,-0.869326,-0.887795,-0.748028,-0.659399,-0.934056,-0.7591,-0.446783,-0.609046,-0.774415,-0.630747,-0.607927,-0.402626,-0.294244,-0.572787,-0.478189,-0.518029,-0.298286,-0.444952,-0.384638,-0.374252,-0.493029,-0.380418,-0.15794,-0.401933,2 +-0.219725,-0.848095,-0.201776,-0.299238,-0.279155,-0.14239,-0.146092,1.01921,0.997261,0.688475,0.623599,0.598813,0.542632,0.471788,0.316718,0.316267,-0.0046276,-0.0615594,-0.26628,-0.0788087,-0.16228,-0.158711,-0.134378,-0.204435,-0.113885,-0.218483,-0.216258,-0.252122,0.0339049,-0.0403148,-0.252715,-0.134225,-0.33769,-0.288545,-0.236756,-0.433059,-0.307216,-0.0616677,0.0039329,0.181379,0.758853,0.561616,0.0889223,0.366082,0.230315,0.120246,0.380451,0.332536,0.490551,0.312873,0.430803,-0.309558,-0.290809,-0.290572,-0.33266,0.422686,0.451049,0.203588,0.363276,0.198576,0.000858639,0.0306089,0.0685157,-0.258454,-0.0988164,0.0293164,-0.406693,-0.216654,-0.341912,-0.800403,-0.717638,-0.531195,-0.803849,-0.772547,-0.803714,-0.679538,-0.693637,-0.498601,-0.59809,-0.707489,-0.424142,-0.648899,-0.485478,-0.57912,-0.482839,-0.409559,-0.307899,-0.436336,-0.640873,-0.714886,-0.395758,-0.524631,-0.507455,-0.436863,-0.447591,-0.497968,-0.562345,-0.431725,-0.422887,-0.533586,0 +-0.213142,-0.290669,-0.37592,1.41547,1.20962,2.24685,2.36407,-0.253588,-0.366374,-0.754763,-0.771731,-0.901999,-0.749002,-0.554459,-0.975943,-0.684002,-0.558266,-0.143188,-0.0157506,-0.118901,-0.157027,0.363339,0.461261,0.25876,0.370426,0.250809,-0.020968,0.0109709,0.24947,0.297226,-0.25973,-0.0436504,0.858989,0.499156,-0.0528802,-0.0876268,0.742318,0.919597,0.459936,0.439652,0.352175,0.0614968,0.705988,0.64602,0.873931,1.36868,1.3827,1.22627,1.83318,1.55744,0.283105,0.929814,0.334931,0.629922,0.787323,0.049195,0.175675,0.467845,0.450588,-0.0973502,-0.0878913,-0.00894762,0.00895335,-0.216279,0.419087,-0.0479674,-0.560357,-0.18985,0.0679578,0.0590661,0.13346,-0.0321231,0.103552,-0.0493318,0.549021,-0.143756,0.116803,0.292182,0.128217,0.894616,0.266114,0.623738,0.252349,0.193042,0.0886377,0.286087,0.0669212,0.10302,0.33637,-0.0778684,0.136559,-0.00535066,0.168461,0.0175351,-0.107346,-0.188191,-0.0819073,-0.290701,-0.172792,0.0884372,1 +-0.21037,-0.68601,-0.168032,-0.521547,-0.540283,-0.392394,-0.330376,0.232021,0.305889,0.40751,0.526968,0.551827,0.525209,0.524108,0.450867,0.17774,0.0092725,-0.212764,-0.425016,-0.522437,-0.541019,-0.454003,-0.464411,-0.511254,-0.45865,-0.449116,-0.418893,-0.314771,-0.210027,-0.0942688,-0.106512,0.0153763,0.131873,0.303774,0.446897,0.333987,0.786893,1.41676,0.990946,0.253352,0.020683,0.359165,0.403276,0.505946,0.20923,0.0993084,0.155122,0.272767,0.210569,0.251843,0.420319,-0.0498295,-0.178076,0.170766,0.684608,0.945103,0.454437,0.189189,0.233645,0.112742,0.208714,0.279199,0.309154,0.264836,0.189119,0.0711671,0.085819,0.0945396,0.0927099,-0.136248,-0.334154,-0.229107,-0.336107,-0.401474,-0.349657,-0.324354,-0.426274,-0.408257,-0.293448,-0.41198,-0.504462,-0.36504,-0.295812,-0.341523,-0.379546,-0.409633,-0.295198,-0.213177,-0.267444,-0.37309,-0.153992,-0.176086,-0.329711,-0.209703,-0.191255,-0.13242,-0.167421,-0.199891,-0.251204,-0.138728,3 +-0.199284,-0.494179,-0.265046,0.272905,0.124408,0.263866,0.21689,0.496764,0.597602,0.770884,0.626643,0.723113,0.924868,1.15842,1.18073,1.3108,0.998229,0.824372,0.883997,0.702495,0.746866,0.470994,0.455553,0.408975,0.188075,0.272755,0.155561,0.0774639,0.372773,-0.186039,0.0725773,0.126342,-0.103172,-0.559026,-0.429397,-0.525969,-0.426663,-0.478132,-0.972751,-0.144455,-0.976233,-0.527975,-0.72016,-0.242487,0.0279169,-0.314372,-0.453273,-0.441575,-0.750313,-0.52161,-0.296258,-0.141369,-0.0552876,-0.0616535,-0.51876,-0.165767,-0.942834,-0.574009,-0.499979,-0.753317,-0.800315,-0.717397,-0.59699,-0.844685,-0.926345,-0.807024,-1.13414,-1.20717,-1.13595,-0.876943,-1.02354,-1.13409,-1.06589,-0.840265,-1.05556,-0.904999,-0.928044,-0.983636,-0.967523,-0.703516,-0.760622,-0.931501,-0.879038,-0.829359,-0.692939,-0.928331,-0.665933,-0.698604,-0.697899,-0.542609,-0.632994,-0.625029,-0.684265,-0.658848,-0.50195,-0.542048,-0.620668,-0.535517,-0.472587,-0.638787,1 +-0.197898,-0.428161,-0.218045,-0.233752,-0.13333,-0.358303,-0.249403,-0.326232,-0.313736,-0.186864,-0.00990604,0.0546969,0.102051,0.145441,0.315775,0.424074,0.297272,0.132238,-0.0364898,-0.335946,-0.188489,-0.204189,-0.222019,-0.20967,-0.347283,-0.188443,-0.156969,-0.271947,-0.092685,-0.154192,-0.0380832,-0.207011,-0.0107034,0.192861,-0.0155178,0.355874,0.212436,-0.318974,0.336224,-0.538694,-0.980454,-0.361632,-0.125587,-0.570353,-0.0267181,-0.151585,-0.27854,-0.345366,-0.316396,-0.281607,-0.0644107,-0.177298,-0.190799,-0.116468,-0.197877,-0.246307,-0.138957,-0.156675,0.160001,0.0176157,0.139935,0.121671,0.07926,0.187335,0.229438,0.262724,0.287731,0.402714,0.399993,0.44877,0.506387,0.51648,0.502737,0.359255,0.51671,0.410652,0.4775,0.413761,0.385339,0.251915,0.295846,0.305754,0.35016,0.261577,0.252958,0.0918952,0.177062,0.167586,0.10846,0.0973637,0.0995037,0.037246,0.143345,0.129499,0.198905,0.136837,0.0802754,0.0737078,0.0103072,0.0716354,1 +-0.183,0.0565327,-0.135493,-0.468124,-0.509762,-0.79581,-0.620762,-0.0305439,-0.0859272,-0.153791,-0.253136,-0.325682,-0.426116,-0.555846,-0.638194,-0.721481,-0.590695,-0.440223,-0.18992,-0.0298893,0.0338366,0.197177,0.268065,0.366906,0.21708,0.31385,0.398596,0.385262,0.385787,0.442966,0.464384,0.28289,0.321827,0.265848,0.301968,0.403034,0.309213,0.536652,0.299269,0.612994,0.212601,0.445546,0.358384,0.276371,0.406338,0.408259,0.489555,0.593253,0.512661,0.297613,0.393661,0.343474,0.275296,0.365038,0.356871,0.281301,0.277615,0.394153,0.632987,0.481876,0.201427,0.147263,0.162686,0.121471,0.18136,0.0401915,0.0788319,0.0141445,0.043487,-0.0673954,0.0610845,0.0689339,0.032604,0.0277876,0.0951673,0.0222059,-0.000423776,-0.0338909,-0.0234434,0.00683737,-0.0159709,-0.0339178,0.00110856,0.020815,-0.0366256,-0.117741,-0.202443,-0.0929481,-0.178042,-0.277547,-0.302637,-0.242975,-0.186859,-0.314641,-0.294961,-0.334329,-0.331737,-0.324043,-0.344524,-0.467779,1 +-0.164638,0.644356,0.750895,-1.22811,-1.17615,-1.10263,-1.06193,0.136395,0.213289,0.284965,0.302005,0.375042,0.323365,0.269581,0.194073,0.0475343,-0.0934086,-0.226563,-0.333011,-0.324844,-0.31597,-0.351946,-0.326772,-0.321145,-0.315302,-0.315124,-0.343868,-0.367573,-0.285755,-0.354051,-0.3626,-0.324502,-0.201568,-0.362915,-0.355499,-0.188544,-0.118441,0.172536,0.245431,0.376074,0.405092,0.341813,0.583472,0.540363,0.357232,0.288494,0.324058,0.44018,0.434887,0.402653,0.565984,-0.335634,-0.297995,-0.323881,-0.21721,0.0814422,0.297682,0.418144,0.519501,0.472911,0.513164,0.47197,0.448845,0.449807,0.393658,0.332547,0.333314,0.201613,0.168048,0.12512,0.0869425,0.0683535,0.0126637,-0.0395636,-0.0429797,-0.0464338,-0.118096,-0.150204,-0.180181,-0.16428,-0.135609,-0.165141,-0.166694,-0.17311,-0.15215,-0.146617,-0.0951278,-0.123959,-0.122228,-0.139342,-0.126442,-0.133461,-0.0936744,-0.0974099,-0.0909104,-0.115883,-0.129348,-0.0552613,-0.0665387,-0.127447,0 +-0.157362,-0.176116,-0.230097,0.164335,-0.0977213,0.150228,0.0158539,-0.9382,-0.90892,-0.944169,-0.936739,-0.837591,-0.812184,-0.785134,-0.378666,-0.0278697,0.33103,0.558418,0.711607,0.677077,0.64832,0.673915,0.667113,0.630835,0.617404,0.851861,0.575736,0.651894,0.589241,0.58019,0.539204,0.485049,0.612881,0.500805,0.41226,0.429293,0.428469,-0.0528855,-0.247793,-0.679074,-0.70984,-0.558589,-0.261551,-0.514623,-0.839911,-0.69302,-0.626651,-0.885909,-0.632806,-0.643457,-0.683287,0.647366,0.465517,0.161624,0.276419,0.0490734,-0.436538,-0.429216,-0.50058,-0.258871,-0.108025,-0.510529,-0.412452,0.0554441,-0.160702,-0.174791,0.195633,0.398865,0.389858,0.54436,0.3878,0.356748,0.33359,0.435868,0.528653,0.466299,0.515113,0.32064,0.462913,0.383003,0.28233,0.49773,0.459537,0.294105,0.189091,0.252359,0.141356,0.243736,0.176782,0.10242,0.222019,0.0389605,0.159678,0.173807,-0.0720344,0.0544135,0.131944,0.190068,0.0724242,0.135476,1 +-0.154244,-0.568659,-0.212019,0.00406652,-0.221503,-0.429327,-0.349921,-1.16128,-1.27775,-1.39605,-1.5278,-1.69786,-1.75015,-1.71755,-1.48067,-1.17534,-0.54032,0.157923,0.638802,1.1637,1.362,1.70297,1.87315,1.83209,1.89175,1.94829,1.8911,1.66668,1.70435,1.59777,1.54784,1.77437,1.48697,1.40638,1.55715,1.30357,0.84996,0.800222,0.559548,0.704356,-0.0220702,0.120948,0.00700012,-0.402499,-0.283874,-0.515684,-0.502896,-0.67126,-0.678478,-0.405595,-0.746387,2.04888,1.84974,1.63255,1.20469,0.39264,-0.317396,-0.494527,-0.414859,-0.491513,-0.503392,-0.654396,-0.843091,-0.788667,-0.764353,-0.541525,-0.280176,-0.331365,-0.187474,-0.0148848,-0.048342,0.0644672,0.0744119,0.16976,0.105246,0.146032,0.116482,0.129758,0.0309678,-0.0312417,-0.141599,-0.186684,-0.0854294,-0.239496,-0.187505,-0.212051,-0.0757943,-0.489883,-0.432707,-0.112586,-0.310844,-0.363584,-0.268122,-0.266568,-0.186736,-0.284874,-0.22844,-0.302082,-0.387815,-0.540237,1 +-0.152858,-0.551922,0.0633572,-0.428487,-0.472458,0.533757,0.1778,1.55398,1.87426,1.94656,1.33299,0.362601,-0.514737,-1.54595,-2.53815,-3.57261,-3.90859,-4.10121,-3.79184,-3.56028,-3.57842,-3.44772,-3.33136,-3.57917,-3.85394,-3.87104,-3.98504,-4.14239,-4.20494,-4.39977,-4.6057,-4.28872,-4.45478,-4.27581,-3.71341,-3.01552,-2.34206,-1.07778,0.943455,1.9258,3.00474,3.67612,4.52825,4.83619,4.1211,4.43981,4.83163,5.10924,4.97259,5.22068,4.82492,-3.57749,-3.73879,-3.78873,-3.03983,-0.374505,2.58582,3.71396,4.18925,3.86083,3.85168,4.0792,3.90809,4.00198,3.96685,3.77052,3.39862,3.0442,2.68833,2.41037,2.38393,2.01116,1.88425,1.67137,1.57112,1.6357,1.48116,1.53445,1.50179,1.49769,1.54055,1.72273,1.80897,1.89215,1.99211,2.18901,2.19051,2.19459,2.15519,2.25657,2.23399,2.07288,2.13225,2.53299,2.84277,2.90076,2.92289,2.86578,2.82033,2.91486,6 +-0.152512,-0.322863,-0.328919,0.757158,0.580535,0.976946,1.04337,0.487253,0.32142,0.201018,0.115904,0.0380465,0.0906142,-0.208251,-0.210721,-0.191004,-0.180861,-0.383155,0.0399485,0.126372,0.295711,-0.209476,-0.0976911,-0.0448391,-0.0404615,-0.0799879,0.00770005,-0.229366,-0.124505,0.0403179,-0.0778246,-0.263046,-0.0607303,-0.105739,-0.103426,0.260123,0.0932552,-0.0196368,0.404469,0.0965282,0.856636,0.994118,0.747987,1.64404,0.686549,0.684259,1.57049,0.647012,0.289611,1.32254,1.4748,0.0877759,0.440973,0.0508383,0.00211573,0.105665,0.0937528,0.622489,0.717368,0.504617,0.24887,0.194563,-0.124249,-0.178469,0.0474712,-0.1699,-0.656506,-0.403026,-0.424571,-0.268779,-0.414154,-0.203155,-0.0622317,-0.315759,-0.265839,-0.0386937,-0.0719973,-0.35852,-0.338743,-0.36773,-0.373827,-0.484269,-0.351957,-0.0725121,-0.376612,-0.313738,-0.256108,-0.459732,-0.380539,-0.42436,-0.474374,-0.377952,-0.517091,-0.360616,-0.272563,-0.477129,-0.590358,-0.523636,-0.554029,-0.915916,1 +-0.151819,-1.22894,-0.042696,-0.699049,-0.662369,-0.960585,-0.919524,-0.0977279,-0.101576,-0.0604762,0.0388964,0.18913,0.277064,0.233031,-0.0278882,-0.213291,-0.719995,-1.1199,-1.18932,-1.2972,-1.34022,-1.37023,-1.45376,-1.45066,-1.40742,-1.30763,-1.26449,-1.30098,-1.30529,-1.32792,-1.08013,-1.2259,-0.894623,-0.64059,-0.703582,-0.294401,-0.0192808,0.878265,0.697201,0.666898,0.927509,0.790623,0.98079,0.80192,1.1749,0.630606,0.443574,0.574426,0.772354,0.786597,0.837575,-0.957321,-1.01535,-0.852312,-0.445044,0.249775,0.870339,0.962245,0.724075,0.762574,0.8916,0.953243,0.885062,0.866495,0.930145,1.13532,1.20773,1.25495,1.28393,1.29715,1.3483,1.31825,1.25454,1.18336,1.12569,1.10808,1.1082,1.11105,0.959332,1.01434,1.03453,0.967185,0.941009,1.03396,1.01338,0.8681,0.763203,0.819161,0.808552,0.769712,0.752507,0.766298,0.832734,0.664427,0.73596,0.709585,0.671167,0.781736,0.551913,0.832361,2 +-0.146275,-0.550476,1.54629,-1.01269,-1.21006,-1.06002,-1.14011,-1.37089,-1.40656,-1.48602,-1.58625,-1.69211,-1.83721,-1.89768,-1.83186,-1.62199,-1.11951,-0.5653,-0.111573,0.313229,0.542038,0.720892,0.956881,1.0308,0.945158,1.02647,1.02027,0.889975,1.05758,0.826744,0.701512,0.854842,1.06067,0.989162,0.768406,0.79857,0.818048,0.548665,0.646749,0.416197,0.417354,0.0652437,0.038446,0.0265281,-0.250893,-0.28193,-0.280273,-0.28027,-0.285242,-0.429377,-0.454613,1.0525,0.809299,0.767944,0.742638,0.591517,0.284054,-0.0197742,-0.143279,-0.0743108,-0.143811,-0.0724311,-0.0245919,0.0342737,0.118181,0.213525,0.350196,0.445876,0.5757,0.68666,0.773426,0.894109,0.887725,0.963968,1.00246,1.01304,1.01554,0.921167,0.903349,0.905011,0.875173,0.869016,0.918218,0.865575,0.830992,0.813231,0.82363,0.789174,0.784425,0.792777,0.744381,0.713537,0.716002,0.653253,0.59362,0.529676,0.499488,0.467626,0.421562,0.458675,1 +-0.143157,0.593677,-0.0674016,-0.630116,-0.497892,-0.565692,-0.514659,-0.860167,-0.858371,-0.814371,-0.83248,-0.819928,-0.696357,-0.540837,-0.238653,0.147744,0.720084,0.995856,1.25197,1.28639,1.27436,1.18982,1.26174,1.22238,1.11411,1.13073,1.06463,1.0578,1.05011,0.825528,0.692464,0.711617,0.710971,0.493146,0.468793,-0.00554598,0.243233,-0.0449882,-0.600032,-0.673709,-0.315367,-0.743724,-0.684559,-0.565342,-0.698046,-0.703746,-0.473093,-0.551527,-0.751722,-0.765951,-0.4559,0.651279,0.851817,0.830274,0.306411,-0.352203,-0.730581,-0.796806,-0.804327,-0.665441,-0.636283,-0.721593,-0.720593,-0.576675,-0.606271,-0.63607,-0.531098,-0.530721,-0.495243,-0.412756,-0.252495,-0.258672,-0.194338,-0.271954,-0.104034,-0.162068,-0.14323,-0.0349606,-0.101292,-0.149285,-0.106936,-0.129609,-0.200617,-0.112059,-0.178974,-0.118851,-0.175419,-0.161098,-0.11634,-0.22107,-0.204049,-0.141617,-0.14177,-0.213197,-0.239402,-0.222509,-0.236061,-0.236587,-0.238805,-0.201854,1 +-0.139,-0.583742,0.0675752,-1.11437,-1.14224,-0.85547,-0.886018,-1.24788,-1.36763,-1.42195,-1.52525,-1.61306,-1.71696,-1.59824,-1.33198,-0.865054,-0.222901,0.464142,0.858062,1.35682,1.64387,1.7231,1.65412,1.77412,1.88936,1.78898,1.5736,1.35834,1.25759,1.26391,1.36402,1.22989,1.23316,1.04096,0.970124,0.903667,0.917855,0.546329,0.0952231,0.00733905,0.0015997,-0.254975,-0.248717,-0.241819,-0.637409,-0.352558,-0.516036,-0.479096,-0.546927,-0.483665,-0.38868,1.2356,1.3123,1.18471,0.943288,0.783194,-0.379553,-0.537601,-0.534031,-0.6512,-0.551813,-0.481357,-0.429632,-0.475147,-0.454359,-0.408118,-0.3984,-0.275691,-0.169688,-0.0155205,-0.00628708,0.146155,0.191598,0.189094,0.245131,0.208865,0.0807087,0.129217,0.144253,0.150071,0.021559,0.0419181,0.0664274,-0.0227922,-0.0270912,-0.105779,-0.097007,-0.109194,-0.1316,-0.137734,-0.184043,-0.146974,-0.162653,-0.155911,-0.151132,-0.199156,-0.163636,-0.128283,-0.154483,-0.103112,1 +-0.137614,0.483274,-0.371702,1.54989,1.6827,1.75537,1.80284,-0.256288,-0.259162,0.0484572,-0.226418,-0.373037,-0.152105,-0.0501248,0.0984271,1.17238,0.748114,1.05629,0.578622,0.925883,1.33391,1.21164,0.832208,0.82183,0.698702,0.489066,1.09508,0.575169,0.275762,0.631116,0.491565,0.818993,0.186858,-0.00508394,0.0123259,-0.0215027,-0.811868,0.36233,-0.928204,-1.11669,-0.795648,-0.384398,-0.60439,-0.416079,0.19266,0.0940166,-0.821998,-0.0362831,0.0235626,0.258244,-0.687042,1.10302,0.660347,0.514889,0.162617,-0.599976,-1.0091,-0.799077,-0.25246,-0.397549,-0.664419,-0.762636,-0.463148,-0.349771,-0.42724,-0.582551,-1.00749,-0.607831,-0.821465,-0.86644,-0.846113,-0.496896,-0.8013,-0.367711,-0.380375,-0.763618,-0.587567,-0.673311,-0.670125,-0.544143,-0.764933,-0.674487,-0.429008,-0.534146,-0.723299,-0.61418,-0.438764,-0.485115,-0.614474,-0.561781,-0.448536,-0.352167,-0.305857,-0.452164,-0.37097,-0.571338,-0.267428,-0.468752,-0.343215,-0.873954,1 +-0.12722,1.57628,-0.273482,0.076446,0.0531907,0.0195443,0.0996191,-0.437724,-0.511218,-0.59999,-0.672803,-0.722807,-0.804541,-0.711045,-0.604737,-0.332986,0.115338,0.487498,0.960716,1.3212,1.5538,1.68006,1.77503,1.77685,1.70694,1.61843,1.45312,1.33579,1.17715,1.06018,0.999609,0.687544,0.494289,0.455861,0.181858,-0.202138,-0.556935,-0.679234,-1.09312,-1.20057,-1.41969,-1.50313,-1.44734,-1.31559,-1.07146,-1.00844,-1.05659,-1.02096,-1.19428,-1.1104,-0.93072,1.3173,1.05348,0.752792,-0.0866604,-1.25077,-1.5748,-1.38812,-1.32628,-1.416,-1.18586,-1.1539,-0.952149,-0.975129,-0.914853,-0.905323,-0.900653,-0.591617,-0.497949,-0.400509,-0.268281,-0.266761,-0.0649879,-0.0501107,-0.0240962,-0.135126,0.0778993,0.092079,0.0935794,0.0238405,0.00806356,-0.0516698,-0.148972,-0.0924285,-0.119407,-0.195251,-0.0961588,-0.241869,-0.195174,-0.104191,-0.32254,-0.263436,-0.259166,-0.151441,-0.23731,-0.280839,-0.236116,-0.324705,-0.244163,-0.178452,1 +-0.119598,-0.629852,0.0410619,-0.483633,-0.555544,-0.73615,-0.724072,0.156474,0.286764,0.458222,0.52716,0.514976,0.459409,0.324229,0.178649,0.184446,-0.0754938,-0.341382,-0.710157,-0.662569,-0.621375,-0.652306,-0.680219,-0.780018,-0.811115,-0.742346,-0.733275,-0.795869,-0.718717,-0.584833,-0.779678,-0.561969,-0.572532,-0.456564,-0.236451,-0.411149,0.0580707,0.290403,0.777313,0.774926,0.953422,0.789716,0.829628,0.906461,0.862446,0.841977,0.731595,0.799139,0.859597,1.04043,0.945355,-0.6794,-0.611112,-0.638159,-0.199553,0.448165,0.746539,0.968552,0.883663,0.918625,0.952405,0.74666,0.684005,0.690068,0.63157,0.638875,0.398923,0.396889,0.284266,0.201328,0.18128,0.184788,-0.0562607,-0.0347884,-0.0780838,-0.0411103,-0.0922111,-0.200562,-0.184772,-0.0981255,-0.138027,-0.189641,-0.18644,-0.0623726,-0.142869,-0.157364,-0.105833,-0.141397,-0.0213001,0.0345425,-0.0626766,-0.0698685,-0.00884039,-0.01844,-0.0442412,-0.0347467,0.047056,0.0523999,0.0872908,0.0516386,0 +-0.116134,-0.579663,-0.294572,0.884684,0.736534,0.556485,0.43468,-1.11759,-1.14676,-1.35069,-1.25242,-1.31643,-1.20883,-0.879383,-0.732561,-0.303288,0.129049,0.487315,0.664438,1.04386,0.87426,0.708669,0.806595,0.769216,1.01407,0.731849,0.739007,0.651499,0.414844,0.866924,0.860243,0.80152,0.653248,1.24634,1.39201,0.282088,0.775132,1.01079,0.304049,0.134827,0.0485312,0.403804,0.596961,0.235567,0.325931,0.407661,-0.121177,0.0460498,0.228496,-0.0259938,-0.527985,1.1855,0.780606,1.05279,0.887629,0.262262,0.137532,0.532417,0.134716,-0.0403527,0.247682,0.0365969,-0.0969975,-0.135741,-0.0622264,-0.111566,0.246465,-0.157072,0.0694708,0.0582254,0.377562,0.204697,0.02138,0.514924,0.107502,0.162127,0.146723,0.0522679,-0.0503551,0.114425,0.353572,0.146145,0.0824416,-0.0401244,0.288046,-0.0410336,-0.231983,0.145817,-0.0294456,-0.20668,-0.140935,0.108832,-0.213343,-0.247751,-0.153504,-0.159049,-0.0960904,-0.224326,-0.127379,-0.127246,1 +-0.115441,-0.168447,-0.3946,1.67741,1.53009,3.45994,3.3525,-0.815139,-1.07249,-1.02208,-0.927615,-0.929277,-0.538773,-0.242697,-0.0993238,0.809883,0.907313,0.386159,0.144204,0.149627,0.183403,0.30389,0.0204081,0.0882947,0.11797,0.282459,-0.0481012,0.713055,0.291155,0.21404,0.487578,-0.0336098,0.21393,1.60349,0.258132,1.65629,0.759794,2.23391,-0.970182,0.364218,0.757368,-0.0857013,-1.22997,0.0668016,0.567568,-0.172743,-0.962859,-0.0603073,-0.827655,-0.39975,-1.37487,-0.0295159,0.0343499,0.239262,0.757036,0.923406,0.447317,-0.0425063,0.158524,-0.426632,-0.429284,0.020143,0.0380818,-0.109558,-0.421619,0.0169457,0.279613,-0.0221224,-0.150865,0.0937686,0.779315,0.215892,0.9961,0.61692,-0.0506611,0.81377,0.740744,0.726418,0.33379,0.170656,0.696921,0.166416,0.159641,0.550068,0.294161,0.146994,-0.253344,0.442195,0.840668,0.222059,0.163782,0.111571,0.213678,0.658962,0.275955,0.0694829,0.229773,-0.0649589,0.0503396,0.806796,1 +-0.112322,-0.789746,-0.210212,-0.201009,-0.143504,-0.250346,-0.274532,1.27318,1.10514,0.945909,0.855042,0.977956,0.840201,0.774956,0.571578,0.628332,0.297253,0.146519,-0.0856978,-0.133011,-0.161499,-0.196564,-0.211654,-0.357162,-0.299119,-0.426576,-0.266966,-0.47145,-0.55916,-0.435404,-0.498797,-0.527005,-0.69637,-0.260715,-0.663261,-1.08932,-0.529581,0.0472294,0.140903,0.0867301,-0.081884,-0.208216,0.0110078,0.616612,0.270495,0.27207,0.304542,0.00835379,0.424031,0.33505,0.0222373,-0.119029,-0.304702,-0.625135,-0.705155,-0.501006,0.0556454,0.480727,0.258707,0.180421,0.154457,-0.0914643,-0.0990281,-0.173175,-0.270716,-0.321072,-0.204251,-0.367258,-0.691256,-0.705509,-0.598223,-0.743117,-0.909015,-0.619228,-0.734845,-0.680946,-0.640599,-0.759905,-0.639056,-0.812548,-0.530183,-0.558446,-0.90683,-0.482866,-0.677715,-0.624375,-0.466244,-0.398873,-0.646994,-0.550384,-0.535553,-0.444691,-0.592254,-0.4899,-0.499814,-0.482671,-0.351996,-0.420461,-0.620088,-0.367923,0 +-0.111283,-0.254373,-0.231302,-0.330258,-0.268981,0.405914,0.135917,-0.89128,-0.868175,-0.912423,-0.895987,-0.815978,-0.913439,-0.791778,-0.455145,-0.0059932,0.299159,0.636169,0.883997,1.04985,0.962684,0.876141,0.833379,0.945149,0.964334,0.819278,0.922318,0.839491,0.678307,0.576237,0.734415,0.683725,0.128534,0.283782,0.074614,-0.0313161,-0.144545,-0.346659,-0.947026,-0.829228,-0.977756,-0.437177,0.0902463,-0.26549,-0.940873,-0.390913,-0.541981,-0.434436,-0.488586,-0.398067,-0.562296,1.03769,0.603765,0.582327,0.392465,-0.037916,-1.15257,-0.797116,-0.780736,-0.673941,-0.09933,-0.56816,-0.551691,-0.448157,-0.591167,-0.41655,-0.233112,-0.507498,-0.377163,-0.0521935,-0.190187,0.0605772,-0.151055,-0.0295091,0.245982,0.120239,0.28792,0.0141487,0.0955361,0.357407,0.421862,0.211839,0.382174,0.307307,0.353532,0.14747,0.210678,0.0658552,0.204987,0.287969,0.254599,0.320599,0.170905,0.0786973,0.189129,0.215906,0.231321,0.189966,0.160832,0.083031,1 +-0.110937,-1.11548,-0.138505,-0.688709,-0.709847,-0.429327,-0.56771,0.451234,0.602764,0.738024,0.768002,0.951699,1.13497,1.17497,1.30474,1.17967,0.761644,0.372094,0.173341,0.112287,-0.0848696,-0.102378,-0.113477,-0.277717,-0.144624,0.0421661,0.271882,0.410509,0.657298,0.724193,1.23874,1.27507,1.16426,1.35256,1.29256,1.30486,1.28233,0.765988,0.488335,0.228107,0.111181,-0.48614,-0.799692,-0.908074,-1.08378,-1.03852,-0.95653,-1.19423,-1.07956,-1.01304,-1.07007,-0.0278953,0.653698,1.09699,1.50307,0.98046,0.00170351,-0.836316,-0.664724,-1.10352,-1.12174,-1.07741,-1.30874,-0.934607,-0.922741,-1.06134,-0.956544,-0.9912,-1.08391,-1.11232,-1.16508,-1.0953,-1.08316,-1.10839,-1.20003,-1.02836,-1.06056,-0.946144,-1.09476,-1.11574,-0.809018,-0.952575,-0.942058,-0.929669,-0.972029,-0.900222,-0.805145,-0.668676,-0.692719,-0.740926,-0.792397,-0.635661,-0.597128,-0.658199,-0.688858,-0.520843,-0.606237,-0.598729,-0.628597,-0.615314,3 +-0.106086,-0.790166,-0.316867,0.795071,0.62123,0.187161,0.116372,0.198895,0.0549067,0.0514624,-0.0497761,-0.226086,-0.409035,-0.451057,-0.620334,-0.620145,-0.435642,-0.510771,-0.312698,-0.233474,-0.186692,0.0156304,0.058485,0.126841,-0.0970892,-0.114949,-0.0802394,0.0707696,-0.0658579,0.141538,0.214186,0.492989,0.622276,0.0855353,0.512699,0.549448,0.565896,0.41829,0.759762,0.833409,1.24102,0.370392,1.38285,0.752621,0.675986,0.596453,1.12712,1.18265,1.20395,0.985405,1.06768,0.352731,0.6222,-0.384243,0.393044,0.672923,1.28756,0.869845,0.89901,0.293996,0.510316,0.258887,0.0903061,0.0545582,0.0270143,-0.000652055,0.114896,-0.35593,-0.356674,-0.124156,0.0652074,-0.171651,-0.394378,-0.108801,-0.279963,-0.543643,-0.242957,0.0546923,-0.168245,-0.349075,-0.22104,-0.465613,-0.180458,0.116809,-0.0589007,-0.267634,-0.176305,-0.334639,-0.343218,-0.14184,-0.267249,-0.375469,-0.23551,-0.21251,-0.130293,-0.402029,-0.335146,-0.420614,-0.28174,-0.336282,3 +-0.0859916,-0.362469,-0.284328,-0.0493565,0.0650602,0.6616,0.775325,-0.83849,-0.942052,-0.827738,-0.701111,-0.482754,-0.283885,-0.114705,0.216789,0.475803,0.943053,0.886994,0.854255,0.81106,0.454453,0.674817,0.8,0.683272,0.651779,1.07324,0.760467,0.899218,0.795559,0.806185,1.00389,0.580672,0.724878,0.783726,1.25901,1.10182,0.793712,0.455443,-0.14835,-0.468451,-1.14754,-0.867923,-1.25281,-0.684104,-0.760934,-0.734972,-1.11068,-0.704891,-0.576094,-0.748989,-0.610889,0.460182,0.646435,0.753025,0.964293,0.206802,-0.400949,-0.924604,-0.840566,-0.700059,-0.470359,-0.793099,-0.621684,-0.588151,-0.67665,-0.560503,-0.449274,-0.495766,-0.072804,-0.147185,-0.287813,-0.135869,0.027055,-0.23754,-0.0613736,-0.127844,0.0584901,0.0207957,0.007367,0.0684877,0.0385967,-0.0231145,0.0535945,-0.046083,-0.0180835,0.064318,-0.00636041,-0.0484106,0.0869621,-0.120225,-0.391544,-0.235419,-0.167133,-0.0948151,-0.249322,-0.225888,-0.244076,-0.116559,-0.168335,-0.0539982,1 +-0.0849522,-0.568426,-0.307829,0.248778,0.35671,0.567848,0.53799,-0.940836,-1.05851,-0.952998,-0.928769,-0.632885,-0.598856,-0.383496,0.0893563,0.356984,0.610634,0.635873,0.684209,0.701795,0.620525,0.49458,0.569319,0.740525,0.6167,0.617999,0.617284,0.68166,0.885619,0.877485,0.757127,0.907651,0.675021,0.951088,0.726622,0.356932,1.70126,1.07546,-0.560131,0.192673,-0.246634,-0.344075,-0.663073,-0.572623,-0.649798,-0.748814,-1.04174,-1.12305,-0.848126,-0.729821,-1.13893,0.923855,0.898,0.903914,0.575861,0.421652,-0.298214,-0.64656,-0.647101,-0.661215,-0.676969,-0.585905,-0.337567,-0.499509,-0.20842,-0.212042,-0.145651,-0.159376,0.00760545,0.122203,0.099896,0.19225,0.108027,0.377756,0.261728,0.144635,0.149761,0.264591,0.150755,0.139331,0.193839,0.0870922,0.0815005,0.131733,0.0509473,0.0161978,-0.0109442,0.0748248,0.0145279,0.0705598,-0.0663453,-0.0637342,-0.115804,-0.151778,-0.0182003,-0.0133007,0.0437502,0.0650926,0.0695027,-0.125307,1 +-0.0797553,-0.360651,-0.324098,0.54002,0.43471,1.48548,1.62415,-0.679668,-0.448877,-0.241575,0.0440867,0.254488,0.139698,0.0769842,0.239505,-0.0269306,-0.263263,-0.634094,-0.757278,-0.986456,-1.00664,-0.834712,-0.827628,-1.09695,-0.962619,-0.847249,-0.709243,-0.796663,-0.740721,-0.685001,-0.636777,-0.0551694,-0.208453,-0.266102,0.341611,1.03606,0.170368,1.20505,1.07061,0.698264,1.73503,0.930854,0.763576,1.07445,1.0892,0.816595,0.892811,0.232701,0.273248,0.176757,-0.0613769,-1.46423,-0.958249,-0.425434,0.10216,1.52838,1.67597,1.46826,1.13274,0.735347,1.04467,0.968647,1.21931,0.743993,0.810158,0.815076,0.686741,1.03247,1.12616,0.580429,0.845705,0.797523,0.828056,0.938233,0.744632,0.899832,0.577355,0.442676,0.825381,0.587214,0.562217,0.487439,0.56944,0.532259,0.421707,-0.179419,0.509607,0.0942061,0.539681,0.456661,0.07918,0.342554,0.612282,0.491166,0.155351,0.221978,0.100766,0.233045,0.306326,0.419796,3 +-0.0780231,-1.5925,0.71474,-1.24362,-1.2338,-1.1282,-1.19037,0.37441,0.468541,0.586755,0.70306,0.840757,0.87726,0.962153,0.959518,0.849612,0.604806,0.3227,0.136962,0.0499314,-0.0141354,-0.0667189,-0.0711513,-0.0896141,0.00258966,0.113577,0.19233,0.36492,0.506669,0.540579,0.641086,0.58307,0.643509,0.764752,0.704332,0.644905,0.646342,0.47476,0.366631,0.131653,-0.164363,-0.422906,-0.645311,-0.769576,-0.851163,-0.896323,-0.928442,-0.892927,-0.879897,-0.779433,-0.79161,0.124449,0.38813,0.673862,0.876823,0.450664,-0.231528,-0.636701,-0.810621,-0.835807,-0.792199,-0.708593,-0.63383,-0.619486,-0.639563,-0.619225,-0.658641,-0.726057,-0.757946,-0.734787,-0.750909,-0.806129,-0.790437,-0.7911,-0.803654,-0.785823,-0.815855,-0.763902,-0.743047,-0.726638,-0.69681,-0.731193,-0.698465,-0.657417,-0.668737,-0.651188,-0.657663,-0.608349,-0.563717,-0.544646,-0.558992,-0.531975,-0.518146,-0.492466,-0.513115,-0.497611,-0.486617,-0.454286,-0.455746,-0.480457,3 +-0.0690151,-1.7937,-0.35724,1.41891,1.1384,1.70423,1.47895,0.779407,0.79572,0.91925,0.859725,0.988964,0.972653,1.13314,1.20342,0.841411,0.700388,0.552128,0.793354,0.436062,0.442952,0.384428,0.4645,0.319781,0.0580762,0.157423,-0.122367,0.244926,-0.0935555,-0.0878432,-0.768186,-0.502306,-0.538001,-0.840699,-1.23934,-0.301398,-1.33258,-0.798342,-0.525194,-0.492899,-0.543835,-1.63635,0.139317,-0.605558,-0.847736,-0.125049,-0.395904,-0.14223,-0.530944,0.0684764,-0.329884,-0.0770217,-0.133009,-0.411228,-1.06066,-1.44276,-0.366869,-0.924799,-0.835667,-0.837748,-0.682572,-0.42845,-0.693127,-1.2685,-0.921461,-0.270872,-1.28525,-0.741407,-0.675349,-0.791136,-0.584461,-1.01697,-0.776586,-0.816156,-0.915149,-0.648947,-0.554323,-0.912496,-0.930764,-0.756771,-0.59181,-0.543665,-0.759918,-0.829919,-0.557331,-0.51722,-0.555416,-0.548101,-0.646014,-0.633088,-0.313406,-0.422709,-0.739356,-0.64719,-0.0950512,-0.463613,-0.748271,-0.384602,-0.397893,-0.299938,1 +-0.0589678,-0.457067,-0.297585,0.283245,-0.0553302,0.522393,0.554743,-0.684111,-0.43977,-0.366884,-0.13227,-0.172068,0.155938,0.234594,0.197461,0.348071,0.648377,0.550427,0.359965,0.284425,0.457434,0.218875,-0.0129434,0.127946,0.292744,0.194797,0.164283,0.185426,0.122077,0.043698,0.505124,0.346027,0.297324,-0.086811,-0.0647429,0.434837,0.134912,0.0548969,-0.454484,-0.708145,0.141144,0.0881726,-0.0673014,-0.16578,-0.119765,0.198672,0.0871868,-0.415794,-0.433011,-0.22528,0.549892,0.324598,0.241955,0.281241,0.237906,-0.0670826,-0.182954,-0.361359,-0.2114,-0.297427,-0.050083,-0.132327,0.0841026,-0.293136,-0.395144,-0.427405,-0.0858648,-0.143738,-0.164532,-0.106748,0.116973,-0.0779324,0.0158653,0.0430458,0.0763392,0.0821804,-0.276133,-0.0264799,-0.0649444,-0.166835,-0.0827086,0.0576429,-0.109798,-0.0302389,0.0219691,-0.194961,-0.0487425,-0.216894,-0.0686192,-0.0347763,-0.0741396,-0.0305207,-0.0805856,-0.0237282,0.00924032,-0.0230112,0.0689873,-0.148443,-0.114702,-0.137664,1 +-0.0565426,0.0429187,-0.0258239,-0.833468,-0.804803,-0.551488,-0.576087,-0.94352,-0.954276,-0.96713,-1.01454,-0.960462,-0.896163,-0.649264,-0.49271,0.118525,0.725963,1.00472,1.16153,1.17458,1.16125,1.09291,1.14979,1.19245,1.09993,1.16954,1.26396,1.04418,1.15234,1.06121,1.05467,1.06917,0.852358,0.746794,0.767305,0.582254,0.406934,0.00948967,-0.422261,-0.397027,-0.596937,-0.730265,-0.770213,-0.775075,-0.84622,-0.803373,-0.990002,-0.909934,-0.880401,-0.70427,-0.961799,1.0183,1.0746,0.92489,0.564109,-0.00421778,-0.987659,-0.753587,-0.866122,-0.971477,-0.898856,-0.806734,-0.734485,-0.534744,-0.616303,-0.576,-0.462989,-0.315312,-0.274294,-0.259688,-0.167073,-0.10644,0.0265116,-0.00455568,-0.0507853,0.0102799,0.00545543,0.0444268,-0.0605894,0.0715617,0.238876,0.0726387,-0.00354202,-0.111052,-0.10154,-0.0903411,-0.0261338,-0.148456,-0.146225,-0.113651,-0.136555,-0.095073,-0.251086,-0.169043,-0.0839386,-0.243688,-0.178646,-0.185481,-0.18581,-0.237683,1 +-0.0541174,-0.423359,0.133858,-0.809341,-0.781064,-0.699217,-0.735241,-0.964905,-1.06215,-1.20059,-1.27753,-1.33097,-1.37297,-1.32702,-1.12004,-0.785704,-0.331243,0.256966,0.687061,0.956545,1.25609,1.34785,1.43563,1.37154,1.33225,1.24998,1.29218,1.21725,1.06453,1.11098,0.97335,0.908872,0.929315,0.95638,1.04153,0.880262,0.747606,0.464282,0.707364,0.388047,-0.128028,-0.33186,-0.295337,-0.431912,-0.252841,-0.32103,-0.317574,-0.366338,-0.285559,-0.325274,-0.415375,1.14084,1.05768,0.804508,0.759606,0.333404,-0.0758394,-0.087311,-0.109667,-0.235804,-0.170344,-0.201525,-0.248239,-0.197701,-0.267469,-0.222244,-0.0600949,-0.0783411,0.125934,0.110224,0.245761,0.282953,0.226459,0.163182,0.159155,0.180513,0.0645525,0.0662772,0.0398886,0.0248636,0.0568384,-0.05107,-0.0700798,-0.0962729,-0.121419,-0.109104,-0.149157,-0.222136,-0.179709,-0.0960119,-0.139537,-0.211174,-0.156349,-0.122229,-0.1546,-0.150525,-0.193299,-0.172356,-0.180784,-0.255125,1 +-0.044763,0.169734,-0.201776,-0.101056,-0.051939,-0.176482,-0.294077,1.41703,1.36854,1.33075,1.24375,1.2227,1.20986,1.17244,1.09537,0.706123,0.44741,0.308119,0.0371539,-0.0251828,-0.0724207,-0.135169,-0.176743,-0.152419,-0.197871,-0.398385,-0.302849,-0.402986,-0.4043,-0.384978,-0.755892,-0.577515,-0.619782,-0.928389,-1.22278,-0.974977,-0.644074,-0.905578,-0.582398,-1.07578,-0.619915,-0.438948,-0.597097,-0.0981572,-0.475395,-0.416757,-0.25877,-0.11153,-0.0858317,0.0714637,-0.175165,-0.376039,-0.452949,-0.33894,-1.23802,-1.09575,-0.628071,-0.629073,-0.330324,-0.535948,-0.0157464,-0.297703,-0.559037,-0.106917,-0.564577,-0.706105,-0.711155,-0.719458,-0.665249,-0.759942,-0.87599,-0.791791,-0.680678,-0.777613,-0.572997,-0.86328,-0.699355,-0.589495,-0.738373,-0.481522,-0.667723,-0.64399,-0.581908,-0.345634,-0.626313,-0.785331,-0.678483,-0.628982,-0.537598,-0.55243,-0.579734,-0.627125,-0.454821,-0.417803,-0.495247,-0.469892,-0.406207,-0.545388,-0.728695,-0.447879,0 +-0.0444165,-0.510078,-0.233712,0.0212997,0.132886,-0.0571615,-0.107002,0.247984,0.263272,0.519256,0.640422,0.804103,0.801341,0.661534,0.174891,-0.377583,-1.33537,-1.66989,-1.89579,-2.02305,-1.96338,-1.97068,-1.97928,-2.06293,-2.04539,-2.11573,-2.17605,-2.04331,-2.10772,-1.9698,-2.11128,-2.02361,-2.045,-2.16599,-1.40653,-0.901605,-0.650777,-0.00638342,0.695263,0.52277,1.52256,1.41819,1.26176,1.82072,1.24418,1.347,1.46917,1.85178,1.93916,1.51478,1.70145,-2.1739,-2.27671,-1.98397,-1.29646,0.264393,1.52347,1.69985,1.83768,1.50415,1.88438,2.13534,1.53187,1.61289,1.92741,2.03755,1.81968,1.61831,1.45759,1.79969,1.79081,1.27091,1.53095,1.35377,0.992327,1.12881,1.08008,1.09261,1.23237,1.16122,1.0929,0.94497,1.12536,1.25841,1.02604,0.890857,1.05847,0.841462,1.0825,0.989358,0.778485,0.901631,0.692104,0.993474,0.953409,0.852006,0.861033,0.80302,1.18554,1.20255,2 +-0.0423378,-0.570711,-0.309034,-0.0786529,0.222755,0.380345,0.158255,0.04041,0.275589,0.114407,-0.0012676,-0.0423479,-0.392439,-0.247316,-0.334918,-0.00184455,-0.0142193,0.0875537,0.0124595,0.218287,0.182616,0.33507,0.241444,0.33847,0.278131,-0.27115,0.0670908,0.0527943,0.151572,0.227606,-0.00835612,-0.202318,0.00755942,0.858533,-0.0110781,0.0354772,0.293474,0.179986,0.374555,1.17264,0.450701,0.315738,0.313595,0.805877,0.536065,0.691415,0.640132,0.103036,1.70982,-0.0929028,-0.316806,-0.561225,0.157396,0.104927,0.295868,0.539418,0.6261,0.763267,0.569328,0.56696,0.109023,0.00534843,0.0784454,0.0722481,-0.11502,-0.296889,-0.171961,-0.424582,-0.606311,-0.569804,-0.287546,-0.276436,-0.350124,-0.480791,-0.485713,-0.344293,-0.358997,-0.331964,-0.346897,-0.356827,-0.0554688,-0.128981,-0.0429008,-0.192835,-0.338241,-0.105379,-0.258622,-0.315931,-0.236765,-0.236245,-0.430649,-0.321962,-0.33241,-0.352306,-0.30054,-0.379986,-0.297662,-0.140276,-0.552814,-0.330277,1 +-0.0392197,-0.311836,0.118794,-0.683539,-0.864151,-0.935016,-0.997705,-1.20425,-1.30382,-1.45785,-1.51695,-1.61826,-1.69338,-1.61019,-1.50601,-1.0804,-0.39201,0.296392,0.855286,1.07994,1.33886,1.68919,1.66249,1.75021,1.58883,1.56582,1.55762,1.52963,1.37827,1.23,1.23365,1.12736,1.05107,1.0941,0.894905,0.942367,1.01909,0.421465,0.185883,0.271095,-0.0872067,-0.432374,-0.5029,-0.636552,-0.474291,-0.473174,-0.613418,-0.423561,-0.265776,-0.403006,-0.380543,1.26011,1.29478,1.04708,0.888711,0.171232,-0.451601,-0.441668,-0.498438,-0.515435,-0.554787,-0.463055,-0.409486,-0.340037,-0.367081,-0.341941,-0.250928,-0.0754918,-0.0301073,0.187602,0.233885,0.299332,0.305663,0.269613,0.332209,0.380852,0.31591,0.28452,0.234807,0.259523,0.253287,0.0606967,0.0451614,0.138028,0.087108,-0.0470186,-0.0603347,0.0427792,-0.000578029,0.0236453,-0.00823235,-0.0255946,-0.0766767,-0.0216844,-0.0476423,-0.0617721,-0.0736625,-0.108156,-0.112346,-0.06507,1 +-0.0277865,-0.481544,-0.0704144,-0.828298,-0.777673,-0.693535,-0.514659,-0.71517,-0.66429,-0.57872,-0.509686,-0.483078,-0.461654,-0.484688,-0.532869,-0.621144,-0.692547,-0.737759,-0.64763,-0.67742,-0.758088,-0.67935,-0.63283,-0.602204,-0.583567,-0.586999,-0.586205,-0.630751,-0.664128,-0.600256,-0.602197,-0.63162,-0.573635,-0.517237,-0.418847,-0.165223,0.133676,0.473301,0.910266,1.10185,1.1756,1.34213,1.44132,1.30503,1.12399,1.22877,1.25209,1.27045,1.44474,1.4921,1.56943,-0.580747,-0.702176,-0.605644,-0.282964,0.705225,1.27192,1.43034,1.43883,1.45123,1.5716,1.56558,1.56601,1.70703,1.78646,1.59701,1.50465,1.33227,1.2489,1.12356,1.09928,1.01688,0.80617,0.743095,0.700483,0.580509,0.571212,0.613287,0.486357,0.493758,0.457901,0.399442,0.426859,0.390639,0.365524,0.40557,0.39729,0.411634,0.370638,0.440321,0.349649,0.372019,0.334266,0.326891,0.32301,0.337395,0.325691,0.347626,0.322458,0.341128,1 +-0.023629,-0.221061,-0.21443,-0.587033,-0.541979,0.18432,-0.00648352,-0.567638,-0.458035,-0.496068,-0.354734,-0.238294,-0.0990027,0.185346,0.424182,0.976226,1.1267,1.16501,1.27716,1.49944,1.3267,1.20833,1.20444,1.07329,1.09227,0.948978,0.863612,1.01803,0.991816,0.867271,0.733384,0.688282,0.322228,0.425652,0.44549,0.295728,-0.338026,-0.41925,-0.0737458,-0.523372,-0.469193,-0.76309,-0.606699,-0.34326,-0.815373,-0.872936,-0.518989,-0.584765,-0.555518,-0.893715,-0.84031,0.674416,0.736248,0.632518,0.326687,-0.298136,-0.706603,-0.754277,-0.689985,-0.696865,-0.859917,-0.606121,-0.564063,-0.676727,-0.594914,-0.775735,-0.781361,-0.862041,-0.697028,-0.9269,-1.04161,-0.944924,-0.828989,-0.857094,-0.95432,-0.727604,-0.696569,-0.723721,-0.681977,-0.764695,-0.576578,-0.679642,-0.698144,-0.744604,-0.542963,-0.411995,-0.556917,-0.623874,-0.514355,-0.354458,-0.577464,-0.670029,-0.515145,-0.463062,-0.493177,-0.511261,-0.64236,-0.450139,-0.347749,-0.549049,1 +-0.0232826,0.490127,-0.327111,1.66535,1.40292,0.476938,0.392797,-0.117986,-0.0991462,-0.163361,-0.223472,-0.205164,-0.328757,-0.309066,-0.156383,-0.10964,-0.0160727,-0.122395,-0.113735,-0.0372441,0.0115983,0.00480559,0.150077,0.0819365,0.0765996,0.197074,0.199944,0.276855,0.290799,0.317213,0.211941,0.26249,0.569428,0.728791,0.962292,0.868889,0.357396,0.889446,0.389586,1.24689,1.39863,1.41721,0.806916,1.16326,0.967786,1.47935,1.08225,1.41263,0.77479,1.17444,0.936181,0.270016,0.724408,0.710888,0.869586,1.03609,0.866555,0.615454,0.465826,0.679432,0.353089,0.172055,-0.0914664,-0.186568,-0.0950295,-0.333424,-0.356818,-0.165375,-0.485029,-0.582323,-0.495023,-0.55101,-0.578235,-0.450821,-0.473967,-0.417093,-0.664592,-0.584267,-0.407877,-0.398793,-0.476045,-0.535167,-0.486959,-0.4645,-0.352896,-0.296424,-0.418536,-0.485984,-0.430561,-0.439631,-0.487943,-0.36344,-0.393599,-0.652952,-0.365983,-0.255287,-0.302033,-0.618817,-0.58632,-0.396586,1 +-0.0160069,1.43,0.383324,-1.09024,-1.06084,-1.03729,-1.04238,2.41752,2.21178,2.11431,2.03531,2.02195,2.06301,1.99392,1.90826,1.69803,1.1762,0.806208,0.482203,0.298389,0.1357,-0.0399453,-0.0435755,-0.167836,-0.334159,-0.357076,-0.420508,-0.524846,-0.708786,-0.801799,-0.91769,-1.04096,-1.12614,-1.42964,-1.46336,-1.62475,-1.67327,-1.68073,-1.56868,-1.5851,-1.30774,-1.2983,-1.03628,-1.00108,-1.0189,-0.898661,-0.909319,-0.925243,-0.973536,-0.836123,-0.908306,-0.556001,-0.732706,-1.07532,-1.60802,-1.76483,-1.43774,-1.28336,-1.04452,-0.96781,-0.964112,-0.983027,-0.885291,-0.928483,-1.06835,-1.08583,-1.08343,-1.17879,-1.15996,-1.23307,-1.30262,-1.27527,-1.29493,-1.29003,-1.31942,-1.28335,-1.2626,-1.2335,-1.17271,-1.10937,-1.07234,-1.14706,-1.10176,-1.0575,-1.09346,-1.00909,-0.964824,-0.934629,-0.942667,-0.915615,-0.826192,-0.840218,-0.862349,-0.844943,-0.768825,-0.77178,-0.802857,-0.750766,-0.749856,-0.79783,0 +-0.0149675,1.58689,0.107948,-0.935144,-0.921802,-0.929334,-0.955823,0.411771,0.528171,0.673117,0.733185,0.791601,0.82565,0.801851,0.788775,0.656061,0.44212,0.181461,0.0300574,-0.0944962,-0.158757,-0.142402,-0.156275,-0.158831,-0.0461196,0.134201,0.376883,0.622173,0.865992,0.982433,1.12915,1.31616,1.11233,1.5118,1.48467,1.10722,1.15036,1.27818,0.68011,0.447675,-0.111489,-0.383983,-0.589231,-0.76147,-0.959986,-1.07076,-1.18475,-0.957713,-1.09027,-0.903027,-0.92664,0.717324,1.08165,1.35291,1.3974,0.830462,-0.19135,-0.857127,-0.962353,-0.974724,-0.880936,-0.849259,-0.850833,-0.782137,-0.831874,-0.784008,-0.890526,-0.909292,-0.885716,-0.906648,-0.965141,-0.925739,-0.995284,-0.976612,-0.986019,-1.0014,-0.943534,-0.940322,-0.931989,-0.832444,-0.862321,-0.868883,-0.855067,-0.821289,-0.812929,-0.797216,-0.801878,-0.746319,-0.717993,-0.675782,-0.670728,-0.654748,-0.639234,-0.629306,-0.606282,-0.599528,-0.602477,-0.621807,-0.604453,-0.652073,3 +-0.00665253,-0.638035,-0.21443,-0.194115,-0.211329,-0.176482,-0.1433,-0.853518,-0.824252,-0.802481,-0.857388,-0.748783,-0.620596,-0.484756,-0.129275,0.211823,0.752173,1.43133,1.47575,1.32378,1.49526,1.38557,1.47237,1.35604,1.30033,1.25781,1.40372,1.20295,1.14219,0.916578,0.869628,0.791063,0.911022,0.672678,0.392478,0.0567075,-0.0291366,-0.470752,-0.023772,-0.738682,-1.03993,-1.01759,-0.582304,-0.88411,-0.803517,-0.847805,-0.949761,-0.710626,-0.44049,-0.904445,-0.674202,1.21438,1.05217,0.587742,0.0204801,-0.541859,-0.782905,-1.08637,-0.603868,-0.723183,-0.787245,-0.620818,-0.493072,-0.717283,-0.639183,-0.640892,-0.645392,-0.583822,-0.458864,-0.505657,-0.386756,-0.557084,-0.459992,-0.21794,-0.34536,-0.360737,-0.278547,-0.234375,-0.338312,-0.308282,-0.188258,-0.299042,-0.533169,-0.306052,-0.298423,-0.403729,-0.446789,-0.284009,-0.371127,-0.364375,-0.332666,-0.373802,-0.45079,-0.418868,-0.478396,-0.386166,-0.338133,-0.546914,-0.32638,-0.435077,1 +-0.00145565,0.779633,-0.282521,0.596889,0.553405,-0.0117062,0.0912426,-0.755459,-0.798934,-0.869326,-0.764446,-0.558299,-0.284802,0.0602521,0.513558,0.996801,1.49882,1.59249,1.7126,1.70136,1.66495,1.52543,1.43639,1.39711,1.20827,1.12154,1.09113,0.91613,0.703119,0.719874,0.652821,0.532139,0.425103,0.446814,0.452665,-0.355323,-1.42404,-1.21654,-1.02753,-1.81607,-1.62942,-1.73118,-1.48123,-0.898679,-1.19101,-1.41368,-1.1806,-1.16932,-1.19625,-1.18597,-0.835317,1.06405,0.753909,0.388437,-0.305496,-1.5201,-1.45792,-1.49294,-1.33894,-1.35455,-0.896092,-0.940039,-0.903849,-1.03826,-0.872926,-0.722544,-0.626237,-0.443044,-0.368018,-0.492376,-0.543502,-0.431705,-0.388029,-0.332783,-0.194154,-0.276408,-0.30839,-0.138264,-0.328286,-0.0743361,-0.17588,-0.27771,-0.261129,-0.33665,-0.303816,-0.187848,-0.248074,-0.214806,-0.207836,-0.310432,-0.158914,-0.0833716,-0.266919,-0.26377,-0.171322,-0.222034,-0.208262,-0.264165,-0.40966,-0.336811,1 +-6.98137e-05,-0.183903,-0.304213,-0.0166133,0.132886,0.562167,0.635716,0.294532,0.61477,0.740532,0.851212,0.864057,1.0088,0.758126,0.782209,0.464009,0.261126,-0.297678,-0.231444,-0.0674454,-0.154235,-0.518901,-0.679797,-0.215221,-0.144793,0.171233,0.355896,0.148022,0.643173,0.68167,0.924109,0.308735,0.736287,1.18719,1.00045,1.20777,1.10551,0.859565,-0.492143,0.708668,-0.563602,-0.392008,0.318259,-0.797274,-0.382134,-0.49732,-0.427493,-0.920717,-0.867292,-0.669996,-1.3743,-0.215609,-0.163548,1.00088,1.08996,1.14728,0.187671,0.029169,-0.136376,-0.732266,-0.264195,-0.674928,-0.562943,-0.371535,-0.287569,-0.0826841,-0.625248,-0.429749,-0.758577,-0.911093,-0.481322,-0.595772,-0.984478,-0.712974,-0.638307,-0.904629,-0.930286,-0.717463,-0.679802,-0.573835,-0.398742,-0.746164,-0.621327,-0.536851,-1.03156,-0.668193,-0.145724,-0.633102,-0.704633,-0.64114,-0.349403,-0.469494,-0.706755,-0.31946,-0.487023,-0.32647,-0.254222,-0.781597,-0.559717,-0.426716,3 +0.0210642,-0.423941,-0.0939148,-0.416424,-0.31985,-0.812855,-0.662644,-0.531798,-0.631641,-0.638408,-0.720137,-0.675405,-0.621379,-0.44891,-0.0684599,0.404905,0.832035,1.10269,1.23197,1.2185,1.17872,1.13807,1.17377,1.08678,1.03495,1.07108,1.06484,0.879657,0.801603,0.709105,0.647629,0.604778,0.462544,0.192996,0.15746,-0.265726,-0.437172,-0.917338,-0.814141,-0.820602,-1.12764,-1.08338,-1.1515,-0.965156,-0.889953,-0.965949,-0.886494,-0.960451,-0.720215,-0.711738,-0.756871,1.06108,0.598942,0.224678,-0.253044,-0.804359,-1.05413,-0.70889,-0.849854,-0.704161,-0.618103,-0.698656,-0.448009,-0.5702,-0.574597,-0.602795,-0.409095,-0.326938,-0.383631,-0.320665,-0.229583,-0.121317,-0.224505,-0.233756,-0.100689,-0.045241,-0.155685,-0.0562091,-0.0854292,-0.0701508,-0.109881,-0.1293,-0.136013,-0.0534545,-0.158382,-0.3074,-0.21166,-0.105339,-0.0843933,-0.021281,-0.130667,-0.0709681,-0.151069,-0.106093,-0.138559,-0.196524,-0.243847,-0.216339,-0.280225,-0.227587,1 +0.0262611,-0.312163,-0.390984,3.81778,4.00742,1.8548,1.73863,-0.7231,-0.596031,-0.400284,-0.551356,-0.6613,-0.551536,-0.668694,-0.132414,-0.451555,-0.465795,-0.44909,-0.129262,-0.336967,-0.342755,-0.55085,-0.41937,-0.297337,-0.128362,-0.358475,-0.321398,0.0122493,-0.0098913,-0.134333,0.087971,-0.0596164,-0.0181666,0.377978,0.584355,0.221874,0.0256349,0.596055,0.345326,-0.774786,-1.11688,0.656176,-0.872027,-1.8198,-0.888092,0.513526,0.420643,-0.144488,0.368532,0.84929,1.60975,-0.339971,-0.442398,-0.478637,0.17667,1.06297,0.343848,-0.181893,0.159184,-0.106721,0.112279,0.659063,0.190873,0.238766,0.638224,0.43342,1.01595,0.994594,0.990393,1.15531,1.33954,0.927041,0.613378,0.804164,1.1855,1.16312,1.25086,1.50493,0.830621,0.251547,0.61612,0.839109,0.68866,0.353362,0.20316,0.689038,0.559745,0.619018,0.332959,0.586163,0.831176,0.191321,0.297288,0.287802,0.269565,0.788456,0.776862,0.463598,0.466616,0.852236,1 +0.0331902,0.0378368,-0.286136,0.505553,0.509318,-0.00602432,0.0605286,0.0940482,0.0760652,0.101776,0.182754,0.00276708,-0.243062,0.0847588,0.0715733,0.157769,0.0445279,0.231289,0.39145,0.261872,0.32489,0.16384,0.236025,0.364088,0.188774,0.101092,0.190495,0.320979,0.21522,-0.0268767,0.291881,0.346689,0.0166414,0.265773,0.225859,0.29403,-0.377397,-0.198878,0.440704,-0.228185,0.186235,0.502884,-0.00706601,0.21373,0.231047,-0.145842,0.31415,-0.00834656,0.219309,0.351044,0.300636,0.318481,0.152793,0.497769,0.209433,-0.324026,0.210491,0.217918,-0.240082,0.183031,0.281822,0.0210911,-0.215463,-0.436337,-0.528119,-0.482159,-0.197301,-0.0291631,-0.559566,-0.52164,-0.150338,-0.417637,-0.294756,-0.4784,-0.309993,-0.547029,-0.227887,-0.320034,-0.458656,-0.379792,-0.439698,-0.355649,-0.400306,-0.38234,-0.213684,-0.316543,-0.422867,-0.257101,-0.391527,-0.466034,-0.261532,-0.261568,-0.245828,-0.31733,-0.495728,-0.380842,-0.234603,-0.0888409,-0.499272,-0.450836,1 +0.0338832,0.0036388,0.473711,-1.11609,-1.12189,-1.07422,-1.06193,0.969381,0.924086,0.95862,1.07041,1.07579,0.962663,0.931138,0.899714,0.625356,0.32504,-0.027033,-0.106351,-0.194728,-0.305186,-0.38459,-0.36023,-0.262599,-0.22307,-0.0540673,0.0992564,0.248521,0.518421,0.655911,0.689415,0.799225,0.958536,0.816931,0.793166,0.85555,0.664515,0.427805,0.478258,0.18778,-0.0525615,-0.42023,-0.637226,-0.959368,-0.95186,-0.978588,-1.04117,-0.946527,-1.02808,-0.933899,-0.85911,0.216752,0.516742,0.812968,0.933707,0.404758,-0.174068,-0.700844,-0.835984,-0.858606,-0.674452,-0.692807,-0.677512,-0.627214,-0.696416,-0.766435,-0.748636,-0.771173,-0.880239,-0.875301,-0.825269,-0.85408,-0.943746,-0.94134,-0.913512,-0.87663,-0.901506,-0.845467,-0.798562,-0.796708,-0.826848,-0.867167,-0.783775,-0.811204,-0.795147,-0.749656,-0.739917,-0.725709,-0.684006,-0.684579,-0.630716,-0.623002,-0.587849,-0.587095,-0.580025,-0.539146,-0.561701,-0.553393,-0.48463,-0.598335,3 +0.0342296,-0.546257,-0.173455,-0.595649,-0.709847,-0.378189,-0.358297,0.94813,1.00521,0.986324,1.04875,1.12868,1.09923,1.18665,1.05087,0.569938,0.424704,0.147922,-0.201094,-0.240875,-0.242097,-0.230941,-0.252217,-0.239578,-0.166622,-0.147903,0.0910053,0.417749,0.576293,0.899438,0.966466,1.12579,1.11369,1.07142,0.95068,1.13292,1.2405,0.779623,0.184058,-0.0118534,-0.125802,-0.522832,-1.06024,-1.01021,-1.14585,-1.07404,-1.18654,-1.32253,-1.21482,-1.05689,-1.38279,0.50173,0.554826,1.08589,1.0853,0.498825,-0.0765839,-0.734715,-0.97009,-0.720506,-0.927341,-1.13695,-0.787303,-0.829271,-0.943895,-0.956337,-0.987453,-1.00929,-1.13277,-1.0643,-1.01036,-1.07275,-1.1205,-1.06528,-1.08162,-1.12025,-0.99823,-0.981834,-1.06352,-0.812304,-1.01318,-0.841009,-0.840757,-0.911475,-0.824385,-0.89032,-0.83218,-0.614432,-0.854804,-0.71746,-0.6546,-0.596655,-0.683452,-0.586217,-0.664866,-0.731833,-0.494378,-0.552839,-0.601424,-0.506174,3 +0.043584,-0.38303,-0.295175,0.464193,0.677186,1.56502,1.35889,-0.460592,-0.47918,-0.678855,-0.633323,-0.761694,-0.590178,-0.785684,-0.354755,-0.406126,0.156836,0.51606,0.726437,0.697782,0.715096,0.898797,0.659287,0.83654,0.869331,0.860694,0.724176,0.550749,0.830582,0.63293,0.416671,0.337823,0.374336,0.12002,-0.118475,0.228973,0.658897,0.0120459,-0.763777,0.498343,0.384459,0.169631,-0.461341,-0.403213,-0.139859,0.160698,0.236016,-0.113143,-0.0311304,-0.353586,0.105143,0.383067,0.604055,0.44394,0.130674,0.448013,-0.396879,0.100811,-0.273156,-0.543929,0.0419946,0.570338,0.515095,-0.120185,0.0948172,0.20202,-0.00788661,-0.515093,-0.657158,-0.379196,-0.116086,0.00125994,-0.255615,0.0613359,-0.163543,0.0418376,0.0474075,0.05108,-0.190656,-0.220517,0.024195,-0.282557,-0.295847,0.103145,-0.541348,-0.376465,0.285052,-0.361883,-0.160997,-0.329021,-0.172605,0.239769,-0.246608,-0.68189,-0.176795,-0.00364635,-0.151947,-0.893013,-0.290755,0.158717,1 +0.0543242,1.03995,-0.345189,2.48737,2.31687,1.06502,1.04896,-0.954087,-0.959161,-0.841043,-0.905865,-0.680631,-0.675525,-0.583624,-0.0257435,0.0958375,0.182177,0.247923,0.410808,0.375876,0.626998,0.255895,0.448094,0.421327,0.388544,0.770904,0.358725,0.411931,0.39066,0.50678,0.635871,0.768275,0.617407,0.41628,0.751608,0.326365,0.599911,0.685575,0.860586,0.472662,0.433777,-0.265611,-0.845889,0.113861,0.115432,-0.168959,-0.0698577,-0.345757,-0.257056,-0.207079,0.143978,1.01367,0.806428,0.83287,0.754942,0.602906,-0.215571,-0.355795,-0.591199,-0.541821,-0.468935,-0.311388,-0.0677422,-0.199254,-0.191552,0.0657,-0.0401184,-0.179147,0.242783,0.31975,0.169693,0.312849,0.441659,0.387485,0.501538,0.371493,0.24629,0.262837,0.369813,0.259757,0.133399,0.111535,0.180853,-0.0310928,0.195536,0.0216932,-0.00471533,-0.0191223,0.0944752,-0.0431177,0.0180888,-0.0276242,0.0383134,0.0711395,-0.0695126,0.00212801,0.0761166,-0.119168,-0.0144604,-0.0398749,1 +0.0543242,-0.0170852,-0.0921071,-0.647349,-0.596239,-0.650921,-0.581671,-0.691642,-0.7355,-0.721463,-0.75091,-0.68128,-0.538588,-0.30528,0.124007,0.46973,0.827343,1.06727,1.18531,1.1952,1.04023,1.1305,1.00386,1.01275,0.99861,1.11236,0.938724,1.01339,0.885166,0.915689,0.961559,0.842192,0.579259,0.595217,0.57341,0.183815,-0.024558,-0.354451,-0.303029,-0.571712,-0.818351,-0.661042,-0.721474,-0.910462,-0.994539,-0.947842,-1.12259,-0.881845,-0.950016,-0.951116,-1.08201,1.0909,0.891262,0.684258,0.28185,-0.385119,-0.777281,-0.966968,-0.908743,-0.893273,-0.757236,-0.814447,-0.743816,-0.666953,-0.618606,-0.538781,-0.545074,-0.358409,-0.457939,-0.379103,-0.222392,-0.241166,-0.206857,-0.153617,-0.225393,-0.115801,-0.136784,-0.0597584,-0.0967845,-0.0403597,-0.140668,-0.165971,-0.23836,-0.163763,-0.152245,-0.316884,-0.249511,-0.23242,-0.203298,-0.225681,-0.196281,-0.266552,-0.22836,-0.22749,-0.185898,-0.293889,-0.298265,-0.249994,-0.225226,-0.33441,1 +0.0584817,-0.388228,-0.0179904,-0.380234,-0.228286,-0.537283,-0.500698,-0.675909,-0.739257,-0.723242,-0.67388,-0.622851,-0.607012,-0.494038,-0.3415,-0.15947,-0.11433,-0.25233,-0.29609,-0.285546,-0.407144,-0.396534,-0.317986,-0.32079,-0.26786,-0.259894,-0.218658,-0.115553,-0.146958,-0.173637,0.00991396,0.0985356,0.102953,0.256057,0.119421,0.153472,0.174017,0.233026,0.0753668,0.296457,0.171557,0.0306018,0.148911,0.2365,0.00628156,0.0483898,-0.00935085,-0.0397305,0.106714,0.0440058,0.230776,0.0795202,0.063709,0.214387,0.235578,0.25995,-0.105354,0.0130465,0.00901349,0.0770106,0.250621,0.318357,0.27973,0.387285,0.410993,0.523412,0.631794,0.868867,1.02872,1.03892,0.983574,1.02604,1.01383,1.10248,1.06733,0.966531,0.963979,0.97685,0.853715,0.784586,0.797467,0.817252,0.796947,0.673617,0.511221,0.643585,0.567947,0.540849,0.56588,0.580214,0.460064,0.351434,0.356626,0.418991,0.332401,0.437603,0.331268,0.30245,0.326304,0.384066,1 +0.0640251,0.121945,-0.159595,-0.109673,0.0871035,-0.258869,-0.0679113,-0.209464,-0.053394,0.147386,0.322033,0.255871,0.411687,0.327921,0.132849,-0.112755,-0.258893,-0.521946,-0.549645,-0.781516,-0.756717,-0.844778,-0.972061,-0.856057,-0.774021,-0.817637,-0.687443,-0.492399,-0.288279,-0.366801,-0.409387,-0.0081648,0.211327,-0.00805649,0.59185,0.588365,0.379796,1.06207,1.27363,1.3827,1.09303,0.905687,1.07173,1.05724,0.782389,0.687352,0.749263,0.922665,0.997509,1.02272,0.924618,-0.887572,-0.671962,-0.0579883,0.485879,1.54483,1.81095,1.14535,0.861337,1.09543,0.868174,0.779234,0.895071,0.799548,0.910225,0.925074,0.59631,0.597402,0.462981,0.263861,0.269242,0.10253,-0.0487042,-0.0680061,0.0533886,0.0094862,-0.0684433,-0.198009,-0.115131,-0.179226,-0.0878833,-0.108156,-0.189163,-0.00257425,-0.215487,-0.0758642,0.0153176,-0.0658252,-0.0386615,-0.206144,-0.0934208,-0.0829662,-0.175092,-0.0651278,-0.104124,-0.0141661,0.0377298,-0.00292137,0.00833609,-0.0294762,3 +0.0654109,0.860757,-0.365073,1.94108,1.94044,1.21559,1.61856,-2.29712,-2.37521,-2.24871,-1.99046,-1.70926,-1.79842,-1.75498,-1.56938,-1.58525,-1.54254,-1.46703,-1.1597,-1.16891,-1.17826,-1.05141,-1.03601,-1.02235,-0.987524,-0.862251,-0.788909,-0.657186,-0.515917,-0.348425,-0.369555,-0.472322,-0.237002,-0.078367,-0.161921,-0.202031,-0.0364542,-0.0267784,-0.305626,-0.798971,-0.760914,-1.06927,-1.06304,-0.943095,-1.01032,-0.831303,-0.724423,-1.04953,-0.901148,0.0238907,-0.262231,-0.844186,-0.575253,-0.431228,-0.450647,-0.810211,-0.883314,-0.512942,-0.073505,0.071589,0.210407,0.827756,0.875433,1.62495,1.85365,2.48992,2.92553,2.64147,2.86381,3.42759,3.64681,3.3758,3.36502,3.65254,3.37397,3.59081,3.44977,3.26957,3.23521,3.1946,3.15412,3.05979,2.91079,3.0617,3.06131,2.95716,3.18335,2.59648,2.92637,3.0019,2.71851,2.66216,2.66951,2.45071,2.34936,2.39386,2.37699,2.40728,2.52464,2.46294,5 +0.0886236,-0.11863,-0.386766,1.70154,1.89974,2.97982,3.17939,-1.52336,-1.51511,-1.86313,-1.84689,-1.8502,-2.15053,-2.95706,-3.1637,-4.13085,-4.01601,-3.68501,-3.89211,-3.71563,-3.1284,-3.45948,-2.95506,-3.12504,-3.94593,-3.65307,-3.23703,-3.47722,-3.41411,-4.10753,-3.78875,-3.86714,-3.78352,-4.27483,-3.64952,-3.4467,-2.9035,-1.83386,-0.0989645,0.546037,0.945319,3.39871,5.15441,5.08595,5.43385,5.36176,4.49821,6.07239,7.02652,7.49058,6.68855,-4.65891,-4.63734,-4.31249,-3.56833,-0.0289446,3.91931,4.49079,5.44771,6.08786,6.59286,6.17325,6.64781,6.92335,6.0582,5.38247,5.45234,4.51101,3.97957,3.41411,3.34437,3.36904,3.32913,3.15685,2.61571,3.06718,3.14665,2.96136,2.76432,2.36774,2.93979,3.19444,3.54934,3.77427,3.87084,3.98743,4.4057,4.28756,4.38729,4.29675,4.07506,4.54378,4.72652,4.79655,4.41564,3.85325,4.21474,4.25741,3.94297,3.80068,6 +0.0882772,-0.182271,0.0434722,-0.830021,-0.713239,-0.724786,-0.782708,0.256576,0.277737,0.400105,0.49145,0.474972,0.625253,0.559746,0.52914,0.433984,0.164846,0.059331,-0.170099,-0.391244,-0.464065,-0.542686,-0.478136,-0.379999,-0.416618,-0.39142,-0.329651,-0.39073,-0.462377,-0.514211,-0.546042,-0.551269,-0.482378,-0.478212,-0.445291,-0.53001,-0.71432,-0.522664,-0.855974,-0.829754,-0.577136,-0.448837,-0.317197,-0.0742712,-0.302859,-0.3425,-0.182051,-0.0276557,-0.123098,0.0273381,0.000359221,-0.232345,-0.480287,-0.743097,-0.809793,-0.651163,-0.400821,-0.113719,0.0304364,0.215559,0.245624,0.375962,0.335623,0.284064,0.357476,0.2719,0.345283,0.204929,0.233644,0.157792,0.166316,0.271935,0.186168,0.193582,0.249986,0.314078,0.233712,0.174498,0.183817,0.201029,0.214721,0.203743,0.247297,0.1174,0.0910591,0.153054,-0.00510892,0.0237349,0.0583312,0.0549932,0.0300048,-0.0853197,0.103387,-0.035562,0.0508576,0.0404207,-0.0226535,0.0289408,0.0133957,0.0280035,3 +0.0889701,-0.213228,0.105537,-0.97478,-0.911629,-1.01456,-0.983744,1.37547,1.44348,1.50215,1.61082,1.60079,1.39061,1.30032,0.759211,0.358284,-0.337091,-0.637473,-0.776231,-1.02993,-1.1113,-1.05588,-1.08214,-1.11276,-1.12141,-1.10772,-1.09251,-1.07876,-0.970851,-1.11205,-1.17014,-1.08786,-0.90725,-0.846738,-0.641211,-0.414679,-0.550626,-0.264441,0.281646,0.757887,0.625179,0.840946,0.643001,0.749796,0.486114,0.604856,0.77147,0.794563,0.844868,0.822452,0.990174,-0.936578,-1.22644,-0.953075,-0.781269,0.194201,0.706275,0.914103,0.91532,0.845595,0.84458,0.732143,0.61019,0.487586,0.257427,0.285879,0.16988,-0.0142088,-0.139875,-0.273162,-0.401186,-0.503648,-0.509395,-0.540413,-0.636017,-0.512569,-0.609096,-0.555991,-0.512561,-0.56718,-0.561545,-0.545554,-0.489853,-0.533793,-0.592917,-0.520773,-0.426791,-0.49842,-0.463859,-0.474378,-0.402121,-0.419874,-0.381039,-0.406138,-0.373091,-0.380655,-0.379487,-0.28682,-0.434387,-0.311493,2 +0.0924347,-0.627778,0.612303,-0.885167,-0.899759,-1.09979,-1.12335,2.39633,2.33266,2.14518,1.94032,1.95565,2.02751,2.01013,1.86872,1.45499,1.22032,0.83847,0.437323,0.300398,0.105512,-0.00991014,-0.00603493,-0.182671,-0.194097,-0.201832,-0.368951,-0.556755,-0.568993,-0.749815,-0.664426,-0.943186,-1.24918,-1.27882,-1.46407,-1.50419,-1.74209,-1.77562,-1.45791,-1.40316,-1.33485,-1.12007,-1.04133,-1.06178,-0.669476,-1.01077,-0.868624,-0.984809,-0.933711,-0.924829,-0.660925,-0.546387,-0.651984,-1.08288,-1.39169,-1.70016,-1.63691,-1.19994,-0.921092,-0.984397,-0.991519,-0.971179,-1.02565,-1.02391,-1.04615,-1.06796,-1.11401,-1.26287,-1.28846,-1.34294,-1.35771,-1.33267,-1.34818,-1.31485,-1.3697,-1.32682,-1.31345,-1.25413,-1.21825,-1.16135,-1.1624,-1.14153,-1.17462,-1.13029,-1.14313,-1.10322,-1.00406,-0.911807,-1.03261,-0.938406,-0.860717,-0.813442,-0.846429,-0.873395,-0.804745,-0.814494,-0.818875,-0.832211,-0.808491,-0.80815,0 +0.100403,0.0691209,-0.108377,-0.326811,-0.297807,-0.304325,-0.481153,0.795002,0.873294,0.996028,1.03979,1.1771,0.988293,0.860702,0.787157,0.307991,0.0460303,-0.267238,-0.454823,-0.617732,-0.705289,-0.716199,-0.695078,-0.547882,-0.523796,-0.328731,0.00487619,0.306186,0.52512,0.68966,0.981483,1.31533,1.55375,1.23934,1.4252,1.38126,1.31687,1.33762,1.05172,0.712477,0.38874,0.131743,-0.158584,-0.17549,-0.56184,-0.62573,-0.534645,-0.746771,-0.606709,-0.343578,-0.738166,0.284778,0.800382,1.24124,1.29991,2.10397,0.388853,-0.605191,-0.296137,-0.744687,-0.740166,-0.596812,-0.931608,-0.552396,-0.494908,-0.751144,-0.738784,-0.837006,-0.718383,-0.995882,-1.01447,-0.836503,-0.963716,-0.874176,-0.964269,-1.1026,-1.00696,-0.807152,-0.911718,-1.04761,-0.861883,-0.89983,-1.02377,-0.898642,-1.02423,-0.720896,-0.479097,-0.557314,-0.780083,-0.714885,-0.648649,-0.639003,-0.793823,-0.590502,-0.529522,-0.595001,-0.586868,-0.520859,-0.470446,-0.73649,3 +0.101096,0.648296,-0.180686,-0.263048,-0.297807,-0.307165,-0.313623,1.71416,1.6062,1.63213,1.66776,1.54923,1.4209,1.47034,1.57137,1.30189,0.864374,0.688038,0.465754,0.359977,0.183444,0.265658,0.0918473,0.051256,-0.0186074,-0.276586,-0.10396,-0.25305,-0.312776,-0.356432,-0.732975,-1.03735,-0.84566,-0.756354,-1.09551,-1.54043,-1.32032,-1.2169,-1.59231,-1.22127,-1.56438,-0.806789,-0.580754,-0.875622,-0.628979,-0.65986,-0.320675,-0.331012,-1.09457,-0.37113,-0.570808,-0.150668,-0.388427,-0.748866,-1.35539,-1.57726,-1.1391,-1.11353,-0.734831,-0.891337,-0.970832,-0.800749,-0.906953,-0.957173,-1.04835,-0.91041,-0.929937,-1.2176,-1.1714,-0.947777,-1.08845,-1.11389,-1.0578,-1.16468,-1.04875,-1.04429,-1.0829,-0.895083,-0.947597,-0.784052,-0.734588,-1.05214,-1.07393,-0.983707,-0.641494,-0.846246,-0.77293,-0.82186,-0.814571,-0.711718,-0.632361,-0.76388,-0.798217,-0.702638,-0.70975,-0.800316,-0.662125,-0.691319,-0.7091,-0.703531,0 +0.103868,0.164838,-0.302406,1.17593,1.34018,0.607622,0.551951,-0.113414,0.0401076,0.113888,0.150529,0.232824,0.248168,0.319914,0.301369,0.158739,-0.446366,-0.650458,-0.867997,-0.593294,-0.971288,-0.928784,-0.664485,-0.72919,-0.664076,-0.702438,-0.600004,-0.664345,-0.919954,-1.06143,-0.599008,-0.536601,-0.182656,-0.0463045,-0.503226,-0.525802,0.169309,0.11558,1.92893,1.11364,0.913622,2.10298,1.19095,1.47603,1.2551,2.0612,1.62512,0.807507,1.9165,2.32719,1.63118,-0.459798,-0.544745,-0.296305,0.186774,0.829666,1.56635,1.47192,1.06522,1.38897,1.3291,1.32789,1.56075,0.941204,0.866513,0.807053,0.735083,0.495961,0.591263,0.334599,0.395674,-0.000373225,0.170874,0.142634,-0.163671,-0.297717,-0.178445,-0.161061,-0.243413,-0.140304,-0.0275645,-0.260045,-0.0442887,-0.112402,-0.274359,-0.0373595,-0.260483,-0.143129,-0.0591968,-0.261783,-0.227268,-0.037195,-0.339045,-0.125065,-0.017725,-0.0669691,-0.15486,-0.501704,-0.234689,-0.116862,2 +0.112529,-0.208846,-0.325906,0.693395,0.873881,0.408755,0.646885,-0.411273,-0.311427,-0.206245,-0.193236,-0.153894,-0.140202,-0.298962,-0.545288,-0.808177,-1.18195,-1.35846,-1.54234,-1.5855,-1.64404,-1.49527,-1.4926,-1.40753,-1.49587,-1.54485,-1.3558,-1.28201,-1.34645,-1.13773,-0.932162,-0.614166,-0.594796,-0.672054,0.0336509,0.0157819,0.177466,0.822493,0.713212,1.29105,0.711019,0.755551,0.652365,1.54172,0.714646,0.624559,1.16267,1.0881,0.770033,1.29956,0.934643,-1.1881,-1.10961,-0.744625,0.107906,0.827952,0.900069,1.12046,1.30303,1.41696,1.23793,1.3305,1.31978,1.37293,1.59461,1.57509,1.45423,1.53178,1.51461,1.57978,1.8347,1.59209,1.53572,1.52583,1.42141,1.32911,1.59878,1.40709,1.5331,1.26114,1.20301,1.11814,1.25855,1.26617,1.04272,1.28065,1.11925,0.900347,0.895649,0.896547,0.853814,0.971336,1.0024,0.874874,0.969339,0.932069,0.75442,0.642568,0.866968,0.851377,2 +0.113222,-0.466252,-0.0553501,-0.419871,-0.336807,-0.216255,-0.355505,2.4071,2.33003,2.31388,2.30583,2.30131,2.15467,2.12276,2.03787,1.86358,1.35744,0.918022,0.557357,0.18327,0.106213,0.121022,0.0085251,-0.127021,-0.318835,-0.525162,-0.523561,-0.635333,-0.804237,-1.0036,-0.930016,-1.18164,-1.59167,-1.68771,-1.65908,-1.93431,-1.25626,-1.97995,-2.49307,-1.95788,-1.55868,-0.966876,-1.33829,-1.42199,-0.803365,-1.17561,-1.45968,-1.13402,-1.0856,-1.19748,-1.38095,-0.477547,-0.764526,-0.945236,-1.71947,-2.69818,-1.63235,-1.35614,-1.55961,-0.810119,-0.752493,-1.45773,-1.01306,-1.13682,-1.02502,-1.05396,-1.40218,-1.55882,-0.996058,-1.14277,-1.48343,-1.45935,-1.10655,-1.1617,-1.26721,-1.41277,-1.28462,-1.23005,-1.0946,-1.13652,-1.02235,-1.38293,-1.07361,-1.0224,-1.06988,-0.975404,-1.04512,-0.760736,-1.03493,-0.648317,-0.874144,-0.722274,-0.993702,-0.64915,-0.871258,-0.619104,-0.688742,-0.644749,-0.682719,-0.731595,0 +0.117726,0.969343,-0.271674,0.176399,0.173581,0.280912,0.309032,0.0681618,0.162012,0.0772407,0.0774032,-0.0383634,-0.0956979,-0.160846,-0.210633,-0.17006,-0.291737,0.0368507,0.00837444,0.112673,0.163956,0.166205,0.19616,0.137268,0.243098,0.160343,0.12867,0.218615,0.178712,-0.0808368,0.0752325,0.106592,0.259726,0.103844,0.307335,-0.216045,-0.213172,0.43789,0.0183805,0.201003,0.211413,0.523316,1.03617,0.786187,0.931319,0.900736,1.00863,1.02277,0.587091,0.852271,0.246377,0.0902904,0.209095,0.0134842,-0.0815194,0.391959,0.459957,0.745913,0.756261,0.486041,0.131714,0.125192,-0.179573,-0.0727819,-0.174653,-0.46028,-0.157871,-0.437775,-0.468456,-0.464243,-0.342806,-0.427702,-0.288841,-0.489554,-0.45429,-0.180822,-0.290109,-0.252759,-0.314747,-0.282175,-0.21106,-0.195421,-0.225416,-0.200431,-0.178306,-0.145506,-0.27602,-0.404664,-0.530206,-0.405405,-0.399276,-0.351558,-0.414945,-0.330316,-0.422204,-0.388688,-0.425842,-0.474282,-0.535579,-0.488287,1 +0.133663,0.313426,-0.219853,-0.245815,-0.0824605,0.511029,0.325785,-0.694322,-0.681839,-0.596114,-0.736225,-0.677149,-0.432388,-0.290442,0.00572527,0.385023,0.787342,1.12552,1.30787,1.40191,1.37706,1.3863,1.39944,1.35638,1.3293,1.30902,1.01163,1.13345,1.09324,1.04259,0.880637,0.604851,0.713016,0.924859,0.538807,0.460634,0.685689,-0.150018,-0.415932,-0.163499,-0.745888,-0.555236,-0.689848,-0.710499,-0.786645,-0.775615,-0.619401,-0.616703,-0.557952,-0.646321,-0.611991,0.600338,0.761122,0.869903,0.671423,-0.0531821,-0.37519,-0.781204,-0.711719,-0.929103,-0.811273,-0.871324,-0.732479,-0.82113,-0.795625,-0.814218,-0.623594,-0.794321,-0.847487,-0.714197,-0.689967,-0.718722,-0.545157,-0.62889,-0.583872,-0.578759,-0.475749,-0.665852,-0.371086,-0.385391,-0.611164,-0.517658,-0.433802,-0.490127,-0.573245,-0.337239,-0.505113,-0.479654,-0.345517,-0.406992,-0.429229,-0.400502,-0.488002,-0.542299,-0.440201,-0.235127,-0.503878,-0.329739,-0.400213,-0.398862,1 +0.13886,1.15173,-0.325906,1.22245,1.06718,0.417278,0.482147,0.193801,0.174353,0.165773,0.098965,-0.159598,-0.00693835,0.00481935,-0.148596,-0.127857,-0.390339,-0.0370299,-0.303426,-0.151731,-0.296307,-0.413044,-0.14943,-0.125536,-0.317393,-0.242558,-0.204059,-0.075231,0.130361,0.213908,0.214231,0.142652,0.203482,0.600557,0.446239,0.57949,0.404498,0.395922,1.15069,0.942289,1.11611,1.02247,1.26724,1.19647,1.25987,1.34758,1.35795,1.39123,1.43908,0.99971,0.727634,0.0941472,0.0441609,0.275154,0.272982,0.901145,1.44799,1.4065,1.1959,0.843333,0.417822,0.273153,0.125493,0.393357,0.266481,0.0633577,-0.00398257,-0.176082,-0.197309,-0.305162,-0.536707,-0.402115,-0.675541,-0.338998,-0.579141,-0.668637,-0.609402,-0.507005,-0.430543,-0.475106,-0.449765,-0.459197,-0.363723,-0.473585,-0.463807,-0.389437,-0.366167,-0.435843,-0.49221,-0.571792,-0.559952,-0.391113,-0.531778,-0.591258,-0.501482,-0.408439,-0.559086,-0.277111,-0.448765,-0.350397,3 +0.143364,0.363382,-0.209609,-0.46123,-0.262198,0.0792043,-0.00369135,0.587915,0.714599,0.882414,1.03381,1.15264,1.27146,1.15612,1.1546,0.721848,0.602891,0.392666,-0.0968029,-0.0717218,-0.0700705,0.0216476,-0.183575,-0.0332508,0.148704,0.00234951,0.352981,0.84001,0.410437,0.813108,0.885365,1.06711,0.627401,0.748855,0.901417,1.1166,1.05788,-0.126546,0.256938,0.0660721,0.526808,-0.674287,-1.18604,-0.792629,-1.23992,-1.29128,-1.31553,-1.36362,-0.935396,-1.16835,-0.938642,0.425004,0.617946,0.903327,0.709708,0.457566,-0.0890807,-0.655243,-0.958415,-1.08137,-1.07902,-0.999859,-0.814621,-0.801974,-0.681783,-1.03853,-0.848248,-1.01552,-1.24346,-0.972472,-1.02276,-1.04749,-1.11012,-1.34015,-1.175,-0.917974,-1.07222,-0.990175,-1.02861,-0.954709,-0.971938,-0.925093,-0.859218,-0.691612,-0.888405,-0.870688,-0.712726,-0.775163,-0.887311,-0.805003,-0.693576,-0.67571,-0.61954,-0.610881,-0.766173,-0.640575,-0.712433,-0.544594,-0.58541,-0.5824,3 +0.148561,0.0680253,0.133256,-0.816235,-0.840412,-1.00036,-0.883226,0.158106,0.222904,0.395035,0.577965,0.549596,0.646907,0.651691,0.406715,0.271683,0.0377765,-0.172388,-0.365374,-0.43415,-0.435748,-0.536795,-0.537097,-0.425176,-0.399777,-0.338395,-0.234217,-0.0429475,0.023232,0.112591,0.19681,0.282499,0.522203,0.559575,0.820234,0.893397,1.04372,0.973212,0.997101,0.871731,0.681618,0.441857,0.313093,0.060268,0.0519291,0.0449631,-0.0403467,-0.0995502,-0.067909,0.00353247,-0.00674853,-0.101624,0.0673212,0.445502,0.745302,0.850338,0.671223,0.351675,0.300055,0.0200991,0.150881,0.194083,0.234327,0.126776,0.115502,0.0705961,0.0037527,-0.196544,-0.158538,-0.25581,-0.265435,-0.324713,-0.527053,-0.432641,-0.426961,-0.463532,-0.460356,-0.492283,-0.469224,-0.457871,-0.529777,-0.511863,-0.454202,-0.496445,-0.449277,-0.457533,-0.429626,-0.386941,-0.42926,-0.384314,-0.409564,-0.318175,-0.361299,-0.34851,-0.326441,-0.347137,-0.261664,-0.246977,-0.279899,-0.306968,3 +0.148907,0.77623,1.07629,-1.25223,-1.25754,-1.22479,-1.23783,-0.02647,0.00434397,0.0795076,0.181334,0.213224,0.196143,0.198855,0.136517,-0.0608693,-0.158548,-0.256295,-0.339639,-0.34682,-0.418214,-0.460208,-0.415887,-0.407561,-0.319246,-0.272667,-0.225593,-0.146238,-0.0759713,0.0335964,0.126753,0.175183,0.288269,0.390456,0.597693,0.721336,1.02293,1.24367,1.28912,1.27986,1.0476,0.833895,0.653053,0.514974,0.240634,0.150634,0.20321,0.143016,0.203611,0.230065,0.285073,-0.0193767,0.0265439,0.328726,0.919227,1.05615,0.914962,0.591125,0.365068,0.302744,0.34466,0.332567,0.388707,0.38528,0.303396,0.281954,0.213184,0.161942,-0.0100112,-0.0137797,-0.0934504,-0.165872,-0.241312,-0.259969,-0.26837,-0.27506,-0.284098,-0.312269,-0.319346,-0.285965,-0.30237,-0.317013,-0.296379,-0.281518,-0.288672,-0.269429,-0.270573,-0.24803,-0.204198,-0.21744,-0.206225,-0.18621,-0.164414,-0.150119,-0.153392,-0.151209,-0.145897,-0.147185,-0.128552,-0.135946,3 +0.158955,-0.00358778,-0.188519,-0.323365,-0.294416,-0.312847,-0.213104,2.42675,2.56448,2.33353,1.50095,0.769391,-0.3467,-1.4136,-2.31882,-2.9717,-3.54526,-3.85685,-3.56053,-3.22925,-3.37389,-3.25028,-3.22873,-3.05586,-3.08942,-3.46288,-3.73652,-3.83258,-4.02873,-4.28227,-4.71491,-4.96107,-5.31681,-4.54753,-4.41942,-3.99987,-2.87613,-1.2617,0.632215,2.2181,3.26471,3.7418,4.49011,5.116,4.70219,4.87199,5.66269,5.03522,5.33242,5.55636,6.45105,-4.18225,-3.81878,-3.91447,-3.39553,-0.456562,2.53388,3.40827,4.0815,4.09254,4.16428,3.86226,3.775,4.25629,4.27003,3.66872,2.94012,2.50309,2.17297,1.88235,1.79884,1.57175,1.66113,1.26192,1.39378,1.16634,0.928593,0.798292,0.958838,1.05946,0.930812,0.787386,1.24462,1.00298,1.41342,1.6963,1.47456,1.78243,1.4751,1.37371,1.66811,1.90121,1.74336,1.97047,1.94725,2.00815,1.88302,1.73582,1.7834,1.45694,2 +0.164845,0.087164,-0.23311,0.200525,0.146451,-0.213414,0.0381913,-0.384826,-0.348599,-0.261848,-0.164975,-0.0997622,-0.105203,-0.155832,-0.295986,-0.51608,-0.712047,-0.789838,-0.720469,-0.834685,-0.85951,-0.778679,-0.862929,-0.777154,-0.753552,-0.764807,-0.898465,-0.824617,-0.776608,-0.953024,-0.728728,-0.632637,-0.769033,-0.619318,-0.509298,-0.70734,-0.489497,0.266244,0.302759,0.39032,1.19721,1.13594,0.554202,0.649668,0.987751,0.806202,0.974805,1.05577,1.18613,1.03511,1.19248,-0.610687,-0.86765,-0.855513,-0.527611,-0.022641,0.87876,0.94555,1.14987,1.20124,1.10156,1.06385,1.23144,1.25359,1.30504,1.03473,1.07749,1.06675,0.964684,1.13567,0.895726,0.696061,0.666988,0.712228,0.846129,0.670592,0.801502,0.593154,0.646259,0.695299,0.827601,0.551925,0.669837,0.777401,0.543428,0.727738,0.699259,0.679323,0.552549,0.665398,0.675277,0.515255,0.444861,0.556421,0.684678,0.494588,0.401002,0.43388,0.447287,0.383266,0 +0.168656,0.0513109,-0.324098,0.52451,0.680578,1.12752,1.27512,-0.418816,-0.383611,-0.230823,-0.00434045,0.0247782,0.0443616,0.0814713,0.100634,-0.350644,-0.955941,-1.12552,-1.31896,-1.16981,-1.36208,-1.37233,-1.33282,-1.32181,-1.30334,-1.31084,-1.13032,-0.915512,-1.06261,-0.999717,-1.01375,-0.88001,-0.830377,-0.379786,0.0188488,0.35382,0.256437,0.162548,1.01877,0.941118,0.791522,1.15581,1.51439,0.827967,0.844455,0.926527,0.865136,0.963183,0.407065,0.665191,0.727519,-1.0826,-1.01874,-0.811874,0.272507,0.699242,1.18912,1.44694,0.736736,1.32772,1.10684,0.784277,0.996035,1.24032,0.979128,1.25443,1.28778,1.20732,1.30467,1.08699,1.42296,1.41098,1.04556,1.08568,1.30778,1.32054,0.966463,0.65547,0.943877,1.11891,1.23884,1.05526,0.969956,1.24449,0.848968,0.694117,0.74906,0.771716,0.792984,0.841047,0.719892,0.665381,0.639737,0.619633,0.430658,0.616379,0.74587,0.551134,0.650065,0.897868,2 +0.169695,2.1555,-0.29879,0.720968,1.05871,0.829216,0.878636,-0.936024,-0.950725,-0.996093,-1.02772,-1.04897,-1.00632,-0.844693,-0.590905,-0.360631,0.355811,0.923142,0.828682,1.12793,1.21184,1.14975,1.1459,1.23465,1.14984,1.11223,1.24359,1.10344,1.16673,1.04469,1.0267,0.938669,0.86439,0.865054,0.882943,0.446996,0.810237,0.246187,0.168219,0.000641886,-0.164753,0.00567919,-0.362677,-0.458011,-0.617836,-0.226111,-0.448663,-0.427771,-0.324999,-0.691029,-0.311307,1.56124,1.30531,1.10943,1.01188,0.174494,-0.520992,-0.396042,-0.862035,-0.856466,-0.474671,-0.466949,-0.672797,-0.406948,-0.493351,-0.681586,-0.377629,-0.35347,-0.376614,-0.18153,-0.0806052,-0.15249,-0.286522,-0.191464,-0.119236,0.000767857,-0.162866,-0.317873,-0.238666,-0.0324611,-0.123298,-0.179616,-0.0691046,-0.0976022,-0.41395,-0.181845,-0.141017,-0.277003,-0.218417,-0.188791,-0.118049,-0.2943,-0.132825,-0.27825,-0.349537,-0.300589,-0.419841,-0.126912,-0.292303,-0.321465,1 +0.169695,-0.872945,0.208578,-0.988567,-0.998106,-0.986154,-1.06751,0.7131,0.75968,0.82272,0.899736,1.01115,1.00714,0.81695,0.767707,0.663765,0.268481,0.0874011,-0.0814035,-0.0653002,-0.157211,-0.239846,-0.194069,-0.0984398,-0.0335495,0.136445,0.284519,0.398206,0.737249,0.907898,1.03373,0.951746,0.978376,0.893294,1.15686,1.17445,1.25351,1.04184,0.111787,-0.843054,-0.684145,-0.609404,-0.747656,-1.25001,-0.818265,-0.93948,-1.01839,-0.984689,-0.880324,-0.841004,-1.02454,0.477467,0.748606,1.00886,1.04943,0.477482,-0.466396,-0.762405,-0.877513,-0.848442,-0.785982,-0.798817,-0.728208,-0.73526,-0.786406,-0.781954,-0.830031,-0.869814,-0.959843,-0.916339,-0.914549,-0.963266,-0.978287,-0.99968,-0.983391,-0.955335,-0.882886,-0.95562,-0.927118,-0.82449,-0.85611,-0.837704,-0.863831,-0.855553,-0.790613,-0.801602,-0.717617,-0.77137,-0.739831,-0.678037,-0.635345,-0.625082,-0.602537,-0.595172,-0.610145,-0.556913,-0.456339,-0.577789,-0.542326,-0.542523,3 +0.172467,-1.09105,-0.0396831,-0.749025,-0.825151,-0.846947,-0.838551,0.356865,0.216145,0.0838629,-0.0206555,0.0911774,0.0845102,0.0211553,0.0756371,0.0721471,0.232268,0.30186,0.177854,0.196113,0.23985,0.260896,0.259143,0.229374,0.29644,0.0497688,0.162116,0.319687,0.133859,0.248856,0.152358,0.0541094,0.0685728,0.108633,0.383223,0.346219,-0.181973,0.111169,0.0709024,0.20863,0.00304185,0.154411,0.247754,0.516631,0.378286,0.258039,0.190821,0.448372,0.206934,0.284681,0.49454,0.125165,0.237374,-0.0198399,-0.0659393,0.232728,0.258163,0.357888,0.261448,0.309285,0.130285,-0.0308726,-0.0469714,-0.192558,-0.197753,-0.214201,-0.268633,-0.334214,-0.457841,-0.530203,-0.561263,-0.490071,-0.536287,-0.515878,-0.501626,-0.475917,-0.465652,-0.543128,-0.530469,-0.376249,-0.441114,-0.449225,-0.429221,-0.441899,-0.454926,-0.380379,-0.337254,-0.455259,-0.477526,-0.34255,-0.327584,-0.410357,-0.49575,-0.431414,-0.419012,-0.524795,-0.431539,-0.501056,-0.46927,-0.451282,1 +0.172813,0.738535,-0.375317,1.91695,2.06592,1.81503,2.17141,-1.20522,-1.29919,-1.23152,-1.03351,-1.19644,-1.08516,-0.912807,-1.06065,-0.881338,-0.685964,-0.956331,-0.57093,-0.5486,-0.357292,-0.518154,-0.423918,-0.409513,-0.453994,-0.281943,-0.218468,-0.0843573,-0.025594,-0.00581544,0.0102669,0.0778794,0.430421,-0.101158,-0.077363,-0.0828569,-0.366555,0.766825,-1.17736,-0.77265,0.136279,-0.406873,0.203495,-0.183575,-0.0802939,-0.0558196,-0.0163218,0.754662,-0.0482426,0.0555922,0.194786,-0.119573,-0.114654,-0.162324,-0.46992,-0.236319,0.193704,0.144165,0.310803,0.544019,0.921305,0.886927,1.04931,1.25871,1.31856,1.55242,1.62583,1.89391,1.478,1.56488,1.69519,1.48095,1.22579,1.41787,1.56071,1.57764,1.63797,1.23701,1.47216,1.61187,1.58376,1.14433,1.44999,1.51932,1.28244,1.14954,1.38027,0.897604,0.880074,1.07428,1.29379,1.26932,0.692938,0.884982,0.98285,1.02303,0.814436,1.01093,0.847198,0.900743,1 +0.184246,0.0679786,-0.312047,1.28622,0.994271,0.766715,0.803247,-0.160092,0.0917133,0.0355333,0.0209997,-0.0606186,-0.142822,-0.176999,-0.301994,-0.540587,-0.307801,-0.429606,-0.69886,-0.425479,-0.392641,-0.445697,-0.481345,0.317681,-0.0376464,0.0827663,0.264556,0.313762,0.193523,0.0806441,0.195885,-0.19649,-0.127474,0.823444,0.578083,0.635041,0.378285,0.136781,1.09454,1.69354,1.31571,0.938525,1.78024,0.967653,0.197228,0.842656,0.456173,0.428164,-0.276115,-0.252676,0.271791,0.0781191,0.297899,0.258652,0.148749,1.14103,0.813257,0.775849,0.572485,0.573077,-0.123096,0.326255,0.341409,0.20249,-0.423982,0.0914471,0.293173,0.332206,0.545316,0.198164,0.0727021,0.113832,0.103603,0.213064,0.354008,-0.144791,0.0230011,-0.21141,-0.212193,-0.203148,-0.216624,-0.020352,-0.365111,-0.208222,-0.142152,-0.197516,-0.144233,-0.287824,-0.168084,-0.176716,-0.238665,-0.166639,-0.294265,-0.24337,-0.307396,-0.146782,-0.120335,-0.172729,-0.170554,-0.255823,3 +0.185632,0.105417,-0.305419,0.459023,0.550013,0.539439,0.30624,-0.782427,-0.720316,-0.705629,-0.643161,-0.506479,-0.4075,-0.506234,-0.462159,-0.348751,-0.283258,-0.300696,-0.527603,-0.69743,-0.464005,-0.592432,-0.619032,-0.560895,-0.484952,-0.399247,-0.358583,-0.34575,-0.240224,-0.326932,-0.351362,-0.189606,-0.0215048,0.00776206,0.0432827,-0.0212968,0.642259,0.578818,0.39923,0.754694,1.14084,0.651277,0.529988,0.59597,0.325665,0.177522,0.456614,0.15159,0.20786,0.204147,0.11406,-0.222052,-0.163826,0.0154881,0.211279,0.471849,0.496404,0.493532,0.490223,0.52851,0.372083,0.334115,0.654904,0.681957,0.622534,0.878967,1.02592,0.982284,0.954756,1.09661,1.11287,1.13177,1.13063,0.997879,0.929937,0.959574,0.894092,0.846336,0.919385,0.615303,0.663947,0.785895,0.646374,0.630974,0.558829,0.85279,0.98653,0.568128,0.586906,0.607659,0.624497,0.616582,0.369176,0.286241,0.548864,0.617993,0.59427,0.359768,0.447657,0.632005,1 +0.187018,1.09122,-0.0927097,-0.488803,-0.406328,-0.58842,-0.609593,0.864717,0.8929,0.898271,1.20453,1.80159,2.51678,2.98412,3.23581,2.93881,2.46667,1.7476,1.08622,0.820533,0.517025,0.389845,0.295372,0.16756,0.16986,0.0152881,0.150854,-0.0292606,0.0342871,-0.152711,-0.159012,-0.157467,-0.294717,-0.445031,-0.648088,-1.03937,-1.4637,-1.51831,-2.08294,-2.52415,-2.53938,-2.17732,-2.42089,-2.58263,-2.35336,-2.29708,-2.14534,-2.08515,-2.39619,-2.00521,-2.00744,0.204922,-0.0174895,-0.253502,-1.029,-2.27958,-2.57075,-2.43249,-2.21332,-2.15335,-2.23075,-1.7585,-1.53614,-1.3636,-1.42725,-1.29746,-1.12229,-1.04671,-0.955289,-1.01527,-0.955171,-1.06433,-0.981861,-0.973823,-1.07589,-1.08147,-0.880297,-0.880635,-0.974645,-0.83817,-0.811071,-0.898926,-0.840841,-0.900668,-0.808369,-0.68098,-0.73876,-0.847539,-0.789753,-0.654947,-0.764748,-0.727068,-0.668448,-0.610918,-0.729532,-0.730769,-0.73024,-0.727654,-0.612051,-0.656761,3 +0.191868,-0.0392078,-0.161403,-0.226859,-0.00446103,-0.102617,0.04936,-0.49142,-0.512407,-0.512789,-0.479049,-0.399427,-0.295865,-0.210549,-0.0227568,0.108471,0.370923,0.570975,0.567548,0.47377,0.419158,0.383181,0.479239,0.451406,0.340428,0.39872,0.462127,0.509357,0.367286,0.408373,0.354988,0.428936,0.354914,0.486628,0.461293,0.260887,0.0163198,0.267738,0.0833035,-0.35448,-0.128078,-0.236923,-0.12293,-0.120764,-0.274678,-0.550782,-0.22819,-0.342982,-0.110108,-0.289755,-0.35128,0.908305,0.48942,0.309871,0.369368,-0.0263582,0.0381182,-0.166075,-0.488232,-0.438238,-0.115322,-0.152735,-0.438262,-0.221731,-0.239472,-0.206106,-0.108464,0.0758997,-0.0597638,0.100038,0.0225101,0.0199542,-0.0283489,-0.0370493,-0.0444425,0.0224477,0.0984722,0.0750485,-0.0533171,-0.0473737,0.00229013,-0.165536,-0.137496,-0.161394,-0.165435,-0.118283,-0.064849,-0.185251,-0.0474698,0.0682004,-0.17301,-0.159544,0.0004183,-0.0856164,-0.123265,-0.146632,-0.263588,-0.148734,-0.0595998,-0.276628,1 +0.192908,0.0889124,-0.283726,0.028193,0.0955817,-0.0173881,-0.0204444,4.03316,4.83198,4.96914,4.54745,3.4363,1.27326,-0.385223,-2.15956,-3.69018,-4.3389,-3.92721,-3.29043,-3.09319,-3.6277,-3.32281,-3.68004,-3.79239,-3.35539,-4.36382,-4.37884,-4.43335,-4.69763,-5.07252,-4.87847,-6.19044,-4.84995,-4.77702,-5.41147,-4.08105,-4.31145,-5.59107,-2.23763,-1.90762,-0.731049,-1.60157,0.466521,-0.26372,1.5359,0.580881,0.406473,1.25429,1.18869,1.19241,2.92981,-4.6544,-4.76379,-5.31229,-5.00606,-3.91334,-1.40287,-0.236483,1.42066,0.960056,2.39098,2.72308,2.45202,2.10671,1.66826,-0.0987466,0.042698,1.30476,0.599895,1.23727,1.1925,1.18097,0.958866,0.432893,1.45747,1.04313,1.17105,0.995269,1.36308,0.794951,1.3502,1.51357,1.71409,1.94772,2.09105,2.91505,2.46667,2.80328,2.57519,2.84976,3.24971,3.19015,3.24724,3.33016,3.33642,3.65164,4.12609,4.21082,4.30795,4.37566,6 +0.194987,0.139219,-0.290957,-0.0579731,-0.0349826,0.866149,0.937271,0.180851,0.352083,0.412187,0.505051,0.471815,0.469722,0.369401,0.240735,-0.23216,-0.226247,-0.632549,-0.723842,-0.736569,-0.993336,-0.905511,-0.612775,-0.685419,-0.785118,-0.669157,-0.630791,-0.524691,-0.545109,-0.531017,-0.306814,-0.519775,-0.0473106,-0.0885859,0.125054,0.510327,1.39524,0.842418,0.629504,0.842467,1.88339,0.866752,0.338385,0.799978,0.185237,1.19663,0.55215,0.57395,0.314966,0.549261,0.349725,-0.210692,-0.748497,0.220931,0.278333,0.474353,0.92924,1.35328,0.876624,0.477621,0.743859,0.656443,0.450776,0.961502,0.603159,0.304606,0.413304,0.506535,0.14564,0.363744,0.0433826,-0.191472,-0.0611951,0.148225,-0.233281,-0.152799,-0.3628,-0.333123,-0.49497,-0.129492,-0.245331,-0.357465,-0.578825,0.0412389,-0.15635,-0.185004,-0.337243,0.108928,0.0181832,-0.115623,-0.0495976,0.192922,-0.0643292,-0.17519,0.0372916,-0.0163375,0.0700952,0.0782065,0.213734,0.082791,3 +0.198451,-0.0417721,-0.362061,1.89283,2.08457,1.74684,1.85869,-0.430184,-0.44061,-0.559065,-0.48703,-0.414735,-0.343364,-0.237723,0.0288535,0.535555,0.722485,0.497902,0.72082,0.673583,0.347291,0.389707,0.56772,0.507436,0.501079,0.530125,0.47976,0.475142,0.169457,0.461206,0.593762,0.402336,0.175644,0.355702,0.38301,-0.0951245,-0.310444,0.37222,-0.16689,-0.129915,-0.517984,-0.463421,0.649735,0.147295,-0.688795,-0.485039,-0.10942,-0.487136,-0.0965673,-0.275419,-0.371532,0.681537,0.756532,0.203866,0.399543,-0.592319,0.0141261,-0.26026,-0.458399,-0.754067,-0.495249,-0.154489,-0.202508,-0.668432,-0.309812,-0.180291,-0.736088,-0.342215,-0.0682296,-0.011235,0.0193079,-0.08107,-0.194777,0.0247401,0.319764,-0.0535591,0.101565,0.0461993,-0.338321,0.231944,0.066905,-0.419166,-0.247378,-0.107713,-0.177538,-0.510375,-0.238787,-0.44287,-0.133343,-0.113708,-0.260295,0.0461745,0.188121,-0.138113,-0.113769,-0.26695,0.374061,-0.146155,-0.116306,-0.222095,1 +0.202609,0.35914,0.0796267,-0.699049,-0.660674,-0.909448,-0.72128,-0.661252,-0.678395,-0.60225,-0.513918,-0.403684,-0.301752,-0.212523,-0.233664,-0.296364,-0.373432,-0.551675,-0.726032,-0.812629,-0.810087,-0.847992,-0.810515,-0.80738,-0.791564,-0.774414,-0.749862,-0.656658,-0.628046,-0.55443,-0.568389,-0.325483,-0.290396,-0.114379,-0.00733976,0.302771,0.191997,0.326304,0.434453,0.493117,0.321011,0.307235,0.255559,0.131079,0.0327659,0.0099712,0.0812626,-0.0786634,0.0572358,0.0324996,0.205626,-0.757771,-0.728921,-0.265295,-0.0166037,0.367139,0.362282,0.361855,0.473761,0.437409,0.679146,0.635892,0.655644,0.708797,0.892861,1.01731,1.10248,1.29503,1.29396,1.32519,1.45831,1.41665,1.27573,1.3956,1.29785,1.29477,1.28448,1.14271,1.15753,1.18222,1.09709,1.01952,1.08682,0.941139,0.8688,0.908597,0.885676,0.863986,0.830996,0.782787,0.790068,0.754579,0.719692,0.696851,0.701859,0.670559,0.68489,0.670363,0.710121,0.842534,3 +0.212309,0.471688,0.413453,-1.1902,-1.09984,-0.866833,-1.18478,-0.618816,-0.681844,-0.678067,-0.634785,-0.537433,-0.387841,-0.200058,-0.0436467,0.319755,0.579351,0.619414,0.728738,0.765823,0.649465,0.603179,0.678479,0.627078,0.615838,0.601335,0.584835,0.560467,0.466927,0.435781,0.445891,0.426043,0.339351,0.40084,0.314025,0.11659,0.159751,0.000306503,-0.137849,-0.263871,-0.234171,-0.270977,-0.330846,-0.315519,-0.344815,-0.407736,-0.438486,-0.353216,-0.303238,-0.513315,-0.379584,0.985811,0.695882,0.564797,0.24051,-0.250521,-0.493331,-0.518872,-0.532165,-0.517214,-0.463857,-0.363656,-0.342365,-0.37511,-0.377073,-0.293008,-0.321864,-0.255505,-0.255229,-0.150993,-0.0914585,-0.0440946,-0.0448471,-0.0159459,0.0620769,0.00744141,0.0170426,0.0728152,0.0231857,0.00711837,-0.00775787,-0.00499591,-0.0305293,-0.0849415,-0.0433816,-0.0590882,-0.0711554,-0.0391657,-0.0762414,-0.1008,-0.0848756,-0.0846767,-0.0906334,-0.109443,-0.114447,-0.103465,-0.132735,-0.128602,-0.112798,-0.151031,1 +0.217853,0.434506,0.762946,-1.30049,-1.28128,-1.11968,-1.14011,0.772002,0.788796,0.8004,0.7665,0.830406,0.868744,0.716755,0.622914,0.463116,0.326759,0.0547131,-0.0641715,-0.0412431,-0.0992857,-0.177753,-0.241367,-0.285575,-0.219436,-0.196628,-0.288566,-0.29626,-0.26583,-0.276619,-0.307345,-0.405601,-0.277845,-0.412391,-0.381235,-0.389246,-0.175591,-0.145464,-0.0232235,0.108456,0.1865,0.148333,0.171935,0.36404,0.27931,0.392532,0.359962,0.401005,0.493862,0.397831,0.48969,-0.267093,-0.288702,-0.29411,-0.253857,-0.248593,0.126918,0.219615,0.373886,0.255104,0.106196,0.0444631,-0.0486226,-0.149212,-0.210354,-0.224373,-0.330112,-0.392814,-0.49918,-0.568394,-0.532233,-0.592094,-0.663348,-0.675922,-0.678205,-0.641111,-0.69671,-0.667564,-0.683624,-0.627032,-0.575757,-0.649052,-0.558011,-0.572353,-0.547188,-0.584262,-0.545412,-0.538255,-0.548597,-0.558489,-0.520014,-0.510177,-0.550726,-0.522241,-0.516952,-0.536031,-0.567506,-0.523009,-0.506888,-0.516038,0 +0.222357,0.116047,-0.236122,0.820921,0.802664,1.93151,1.61298,-0.0173714,0.0492787,0.136852,0.188999,0.225157,0.183392,0.197009,0.213928,0.0650941,-0.215894,-0.379154,-0.53309,-0.595821,-0.642876,-0.540433,-0.566606,-0.569119,-0.40282,-0.360459,-0.559125,-0.487601,-0.150033,-0.228833,-0.275779,-0.126763,0.357711,0.272958,0.187992,0.588244,0.975794,1.40357,1.39631,1.65996,1.54528,1.06691,0.659032,0.546634,0.208309,0.364617,0.543442,0.478716,0.640871,0.121685,0.315061,-0.326648,-0.267934,0.0594269,0.732152,1.07079,1.4204,0.595779,0.886651,0.592957,0.846594,0.296445,0.650838,0.76461,0.792238,0.599964,0.350034,0.123719,0.182585,-0.050639,0.017907,-0.116024,-0.145475,-0.131252,-0.212053,-0.183458,-0.368334,-0.372701,-0.143084,-0.362497,-0.214496,-0.153288,-0.495349,-0.203308,-0.211502,-0.217093,-0.104999,-0.198822,-0.0421937,-0.100068,-0.0400134,-0.155548,-0.167672,0.112496,-0.219384,-0.151103,-0.0389658,-0.101258,0.0552772,0.108302,3 +0.226168,0.221252,-0.208404,-0.430211,-0.396154,-0.327052,-0.171222,-0.589416,-0.458605,-0.354589,-0.361106,-0.245459,-0.0917371,-0.0202224,0.124948,0.276894,0.13656,0.117447,0.046367,-0.136687,-0.228977,-0.249623,-0.264702,-0.115804,-0.0624982,-0.086868,0.033195,-0.0469501,0.017838,0.127896,0.328599,0.377292,0.134514,0.394353,0.569826,0.378843,0.134147,0.94445,0.488187,0.418763,0.262834,0.196351,0.204961,0.11023,-0.081865,0.0587615,-0.158622,-0.12551,-0.110646,-0.0653407,-0.0111222,0.0154654,0.0547402,0.175602,0.645741,0.554197,0.305847,0.0905638,0.246371,0.239029,0.187856,0.116871,0.189086,0.0618639,0.211231,0.21207,0.216589,0.281668,0.240276,0.414356,0.598686,0.283573,0.360302,0.296777,0.269499,0.273148,0.256228,0.180639,0.216186,0.241628,0.19966,0.159941,0.177437,0.131524,0.0461551,0.11589,0.17141,0.00427096,0.142709,0.102176,-0.0339114,0.00980203,0.0432241,0.0657696,0.022559,-0.0127026,-0.0816474,-0.0360318,-0.0590602,-0.0922471,1 +0.228939,-0.645331,-0.220456,0.0661061,-0.0332869,0.0252262,-0.0734957,1.01587,0.932415,0.878889,0.6748,0.596547,0.638967,0.487463,0.60858,0.191557,-0.00356062,-0.0761708,-0.162405,-0.276525,-0.399698,-0.212261,-0.274052,-0.31627,-0.176532,-0.176603,-0.153848,0.108175,-0.173942,-0.377116,-0.290671,-0.399994,-0.387737,-0.374572,-0.430438,0.26344,-0.10151,0.129769,0.184444,-0.11468,0.471605,0.952777,0.680843,0.438937,0.514991,0.611753,0.710673,0.461077,0.908887,1.06254,0.478166,-0.32753,-0.195621,-0.117735,-0.528871,0.449215,0.0808582,0.236137,0.724205,0.312858,0.234104,-0.0447797,-0.116724,-0.448725,-0.461078,-0.345083,-0.470182,-0.508987,-0.700896,-0.620651,-0.574706,-0.739603,-0.713561,-0.531614,-0.894225,-0.620164,-0.736257,-0.674248,-0.800698,-0.710238,-0.517358,-0.544054,-0.534557,-0.620725,-0.572528,-0.478802,-0.569274,-0.489462,-0.426081,-0.652321,-0.396144,-0.562729,-0.587707,-0.457181,-0.640327,-0.463638,-0.502729,-0.702975,-0.519106,-0.565424,0 +0.23968,0.640743,1.63065,-1.35391,-1.3525,-1.13388,-1.26855,0.394015,0.554723,0.644943,0.743785,0.775385,0.893261,0.830074,0.852541,0.666891,0.406102,0.198141,-0.0328217,-0.16438,-0.207629,-0.263615,-0.2556,-0.275025,-0.195215,-0.0632929,0.0893239,0.140131,0.407497,0.473302,0.62511,0.673374,0.737901,0.757371,0.848089,0.802611,0.924486,0.822905,0.679149,0.443282,0.0859374,-0.173198,-0.417834,-0.547946,-0.656219,-0.702019,-0.706078,-0.685695,-0.681062,-0.63173,-0.573951,0.0368481,0.381758,0.714674,0.834534,0.827691,0.138078,-0.343077,-0.524959,-0.545005,-0.602404,-0.494549,-0.444299,-0.478328,-0.470468,-0.523249,-0.555709,-0.613663,-0.682193,-0.716302,-0.729758,-0.751524,-0.780802,-0.761335,-0.785403,-0.808574,-0.792139,-0.758017,-0.750727,-0.701336,-0.714144,-0.735003,-0.683206,-0.664828,-0.644661,-0.654638,-0.604417,-0.580213,-0.559256,-0.550124,-0.547114,-0.503084,-0.508433,-0.460031,-0.470053,-0.477229,-0.447453,-0.435566,-0.412095,-0.472854,3 +0.240026,0.175049,1.4077,-0.840361,-1.25923,-1.25036,-1.27692,0.614127,0.782416,0.909916,1.04578,1.10745,1.05274,1.0443,1.02295,0.738971,0.442954,0.216623,-0.0766178,-0.360459,-0.360617,-0.379975,-0.367655,-0.388414,-0.357472,-0.309586,-0.22951,-0.18965,-0.10234,0.0177038,0.032424,0.0932402,0.303733,0.42418,0.401508,0.449998,0.48417,0.598114,0.51062,0.615993,0.269123,0.126837,0.00959575,-0.10124,-0.32136,-0.322047,-0.31103,-0.370568,-0.402243,-0.264624,-0.199709,-0.0897307,-0.0486723,0.134907,0.356935,0.560813,0.177054,-0.0941305,-0.219011,-0.362768,-0.395147,-0.275586,-0.272815,-0.31166,-0.321322,-0.428563,-0.449261,-0.535149,-0.600753,-0.653031,-0.721291,-0.715742,-0.752918,-0.787756,-0.806639,-0.846345,-0.809977,-0.808124,-0.788986,-0.746453,-0.768793,-0.756471,-0.754922,-0.728658,-0.732102,-0.714393,-0.67618,-0.644233,-0.641344,-0.588317,-0.587276,-0.580472,-0.557302,-0.541636,-0.521563,-0.538441,-0.515424,-0.496052,-0.521559,-0.561357,3 +0.242105,0.903511,-0.231302,-0.145862,-0.114678,-0.233301,-0.23265,-0.0439107,-0.159604,-0.222207,-0.435167,-0.373244,-0.516696,-0.685361,-0.724994,-0.843515,-0.532792,-0.427002,-0.48355,-0.259243,-0.340325,-0.18727,-0.247375,-0.098337,-0.0479328,0.00913324,-0.0357295,-0.172353,0.0787095,0.210489,0.440105,0.347892,0.213945,0.0276552,0.224699,0.10325,0.314407,0.410408,0.393555,0.763759,0.967902,0.934339,1.44972,1.41337,1.33709,1.41826,1.62295,1.81932,1.45144,1.09266,1.12353,0.0175549,0.0237618,0.0461826,0.590577,0.527387,1.31676,1.43098,1.48506,1.05253,0.854893,0.880956,0.539418,0.363057,0.170563,0.190829,0.374755,0.250336,-0.116387,-0.127474,-0.213273,-0.0462096,-0.0461905,-0.146713,0.10249,-0.0490295,-0.231625,0.0569234,0.123411,-0.0711846,0.161366,0.0872226,0.153762,0.308341,0.21577,-0.01604,0.04243,-0.0495285,-0.162716,-0.101184,-0.260006,-0.357617,-0.103814,-0.259651,-0.305871,-0.333863,-0.298451,-0.316531,-0.3805,-0.213579,3 +0.249034,0.553768,0.117589,-0.902401,-0.843803,-0.929334,-0.902771,-0.893492,-0.917518,-0.870509,-0.897957,-0.818036,-0.771961,-0.523386,-0.178829,0.237224,0.727519,1.04683,1.1954,1.12759,1.07326,0.988923,0.965914,1.06876,0.996622,1.00151,0.987382,0.888983,0.844478,0.790857,0.66542,0.549182,0.507148,0.483149,0.305952,0.0125563,-0.104609,-0.306481,-0.660957,-0.752763,-0.845588,-1.04404,-1.02007,-0.957101,-0.787711,-0.82529,-0.978216,-0.85154,-0.831196,-0.845424,-0.735284,1.05411,0.731701,0.422701,0.0211058,-0.786733,-1.0097,-0.809825,-0.645043,-0.697277,-0.610891,-0.371592,-0.409381,-0.39991,-0.434692,-0.283808,-0.254397,-0.0583149,-0.15437,-0.041997,0.0802803,0.118158,0.173067,0.168833,0.171916,0.263936,0.209922,0.12105,0.1502,0.146119,0.0394857,0.0613677,0.0668052,0.00322918,-0.0263623,-0.0584008,-0.00174736,-0.0707966,-0.00500107,-0.0503767,-0.113713,-0.037798,-0.0605267,-0.0932812,-0.12097,-0.0784274,-0.0812126,-0.148616,-0.146288,-0.0770067,1 +0.249727,0.10241,-0.356637,1.63433,1.94892,1.69571,1.82797,-0.454044,-0.506246,-0.597188,-0.528017,-0.456248,0.0817825,-0.0106609,-0.00111459,0.149307,0.210173,0.293654,0.293527,0.194868,0.167601,0.192635,0.142959,0.248793,-0.0574823,0.18125,0.181641,0.0252198,0.348105,0.413448,0.395622,0.0999378,0.37527,0.6186,0.382765,0.528968,-0.35496,0.416875,0.405952,-0.83051,-0.0592506,0.211232,-1.03626,-0.293577,0.0211967,-0.987128,-0.83852,-0.572524,-0.594725,-0.594623,-0.941814,0.221239,0.219389,0.405195,0.621072,0.49619,-0.487407,-0.768881,-0.318542,0.110725,-0.317817,-0.0701316,-0.108614,0.301612,0.200963,0.0517687,0.156212,0.312066,0.103944,-0.0823808,0.415236,0.503989,0.107643,0.415718,0.245197,-0.114919,0.182204,0.376153,0.507308,0.0467426,-0.0992417,0.389555,0.721275,0.126555,0.274439,0.440225,0.47174,0.202757,-0.0450246,0.072884,0.25463,-0.28891,-0.248823,0.213304,0.285779,-0.0978261,0.344062,0.32843,0.00493555,-0.305078,1 +0.253885,0.504371,-0.307829,0.633079,0.829794,0.587735,0.551951,0.619544,0.917457,0.993753,1.18972,1.07058,1.32592,1.30321,1.07871,0.816308,0.834338,0.531167,-0.00459034,0.143769,-0.0480085,0.186021,-0.177365,-0.180393,0.16444,0.0757109,0.471317,0.819509,0.97416,1.05501,1.43739,1.00253,1.11338,0.66632,1.23806,1.08572,1.13149,0.573598,0.00683968,-0.470377,-0.533705,-0.471025,-1.49753,-1.86416,-1.39938,-1.37339,-1.33571,-1.09925,-1.52269,-1.38203,-1.07156,0.14329,0.806212,1.1094,1.47108,-0.0828212,-0.746699,-1.21021,-0.84055,-1.06002,-1.47746,-1.29634,-1.30778,-1.08598,-0.796706,-0.999946,-1.32123,-1.05948,-0.858626,-1.20371,-1.48174,-1.24864,-1.14502,-1.14248,-1.32513,-1.30324,-0.921253,-1.2123,-1.23829,-1.07559,-0.800835,-1.11231,-1.1866,-0.832545,-0.77308,-0.888665,-1.01402,-0.948182,-0.926855,-0.96434,-0.956961,-0.825584,-0.564845,-0.672602,-0.634873,-0.61913,-0.689477,-0.639154,-0.666003,-0.698116,3 +0.258388,-0.174928,-0.204789,0.00751316,-0.12146,0.525234,0.496108,-1.09309,-1.11849,-1.13872,-1.14721,-1.06381,-0.977764,-0.753809,-0.190077,0.241607,0.803583,1.32708,1.40348,1.72854,1.86522,1.68823,1.74363,1.62375,1.38761,1.5213,1.53538,1.49083,1.49558,1.40953,1.28698,1.25382,1.55273,1.09055,1.06226,1.02299,0.832046,0.111805,-0.238127,-0.643172,-0.873917,-0.747564,-0.87868,-1.00148,-1.06537,-0.965275,-0.872193,-1.22198,-1.21776,-0.923386,-0.774728,-0.0610319,0.595188,1.12186,0.401756,1.13966,0.271936,-0.605115,-1.00229,-0.596789,-1.11193,-0.622549,-0.896757,-0.922003,-0.815227,-0.847864,-0.76699,-0.825532,-0.818769,-0.800183,-0.495961,-0.787567,-0.717187,-0.427679,-0.38156,-0.499275,-0.48687,-0.658773,-0.393692,-0.110125,-0.437145,-0.22511,-0.205186,-0.386189,-0.380543,-0.213051,-0.281782,-0.0520962,-0.111358,-0.377902,-0.32571,-0.284637,-0.245587,-0.216058,-0.216368,-0.364756,0.0123252,-0.282987,-0.373681,-0.236718,1 +0.270515,0.0109819,-0.284931,0.53485,0.821316,-0.0685253,-0.07908,-0.576322,-0.608997,-0.587234,-0.523927,-0.344495,-0.20649,-0.0455197,0.0530718,0.542115,0.555604,0.646177,0.45061,0.317135,0.355397,0.257416,0.0909936,0.229675,0.28577,0.422718,0.338999,-0.0350701,0.237952,0.42829,0.418864,0.337898,0.278603,0.0052321,0.471232,0.45772,0.0611819,-0.314943,-0.505789,-0.101517,-0.16507,0.153569,-0.552895,-0.476134,-0.494289,-0.510853,-0.612396,-0.34023,-0.508424,-0.30987,-0.170875,-0.311447,0.0502182,0.266066,0.381023,0.302605,-0.0340541,-0.23896,-0.440299,-0.23891,-0.109055,-0.0873195,-0.195195,-0.156658,0.0489095,0.0940357,0.0584271,0.124103,0.26563,0.285037,0.0636772,0.248935,0.362387,0.378831,0.296735,0.30965,0.308887,0.331151,0.385175,0.238398,0.156223,0.135909,0.22944,0.0708553,0.0433721,0.0881837,0.1297,0.139329,-0.0074476,-0.0120566,0.0398752,0.0345173,-0.044718,-0.0543517,-0.000895938,0.0615212,-0.103263,-0.146032,-0.174951,-0.176689,1 +0.271207,0.0334776,-0.227084,0.509,0.314319,0.110455,-0.0232366,-0.913158,-1.03812,-1.11437,-0.963109,-0.927159,-0.722252,-0.546083,-0.145568,0.433467,1.31255,1.32097,1.21472,1.28217,1.2061,1.08454,1.09741,1.05347,1.2153,1.22981,1.23114,1.23395,1.15635,0.906583,0.810603,0.917443,1.09027,0.341819,0.417033,0.285303,0.231194,0.18381,-1.07415,-1.16412,-1.24203,-1.23715,-0.644768,-1.20526,-1.67284,-1.36766,-1.26204,-1.1155,-1.049,-0.55571,-1.07126,1.28169,1.03274,0.749467,0.056192,-0.802848,-1.17129,-1.40017,-1.17006,-1.21603,-1.18093,-0.789174,-0.819448,-0.753443,-0.63155,-0.656503,-0.520487,-0.40452,-0.12222,-0.239982,-0.108017,-0.0908427,-0.0705659,0.0479979,0.0879723,0.0400373,0.0836553,0.0682797,0.0256882,-0.00599646,0.0859936,-0.0348836,-0.0359322,-0.0451642,0.0780839,0.0904348,-0.0303354,-0.169836,0.0333822,-0.0317262,0.0680853,-0.0638134,0.0353208,0.0108896,-0.11275,0.00710315,0.0455013,0.0353835,-0.0744721,-0.156798,1 +0.27883,0.0677688,-0.270469,0.486597,0.683969,0.340572,0.255981,-0.5707,-0.453464,-0.287515,-0.218356,-0.0565479,-0.101141,-0.0242668,-0.176758,-0.245846,-0.356209,-0.441565,-0.445669,-0.452657,-0.557536,-0.52911,-0.516793,-0.494889,-0.409397,-0.329749,-0.369891,-0.334284,-0.372729,-0.319391,-0.0326668,-0.219567,0.294504,0.107931,-0.00413584,0.210721,0.736611,1.42601,1.70514,1.06057,1.25746,1.40788,0.973334,1.13272,1.18093,0.562325,0.930961,1.31673,1.06001,0.884326,0.943542,-0.675893,-0.277691,0.22699,0.738138,0.722407,1.28617,1.395,0.894186,1.1997,1.19052,0.959571,1.1128,1.12796,0.910678,1.07033,0.787913,0.636958,0.346478,0.622169,0.34246,0.307005,0.0694698,0.0275699,0.177007,0.015532,-0.00857152,0.0597863,0.00319467,-0.0438847,-0.113447,-0.114256,-0.116521,-0.0223467,-0.273284,-0.0551014,-0.18433,-0.0583895,0.0363648,-0.0691886,-0.155456,-0.019242,0.101863,0.198007,-0.0894917,-0.0624285,0.114256,-0.0385291,0.0359786,0.17964,1 +0.280215,-0.890382,0.109755,-0.762812,-0.886194,-0.85547,-0.749202,-0.868048,-0.869914,-0.776822,-0.705915,-0.50709,-0.405915,-0.274169,-0.123515,-0.014513,-0.257447,-0.564452,-0.783423,-0.90824,-0.989165,-1.06441,-1.03851,-1.04947,-0.963699,-0.970332,-0.915553,-0.922522,-0.8861,-0.835088,-0.753411,-0.519331,-0.452441,-0.375214,-0.116326,0.152019,0.532954,0.601385,0.954054,1.08987,1.00184,0.871612,0.776956,0.506621,0.502655,0.459061,0.273493,0.416059,0.379381,0.51786,0.565218,-0.880708,-0.784643,-0.430689,0.175349,0.655093,0.889622,0.611774,0.579876,0.71701,0.821766,0.930622,0.866916,0.95221,1.00304,1.10427,1.24767,1.40525,1.39008,1.54587,1.49599,1.53305,1.44167,1.42881,1.4153,1.25785,1.30224,1.31526,1.25727,1.25623,1.19756,1.1406,1.11765,1.08364,0.99985,0.930609,1.00401,0.913278,0.902165,0.86698,0.88512,0.881323,0.88152,0.787995,0.759875,0.787296,0.794659,0.779052,0.757085,0.897531,1 +0.284719,0.449752,0.107948,-0.966164,-0.984541,-0.952062,-0.886018,0.163867,0.228756,0.40652,0.45623,0.628277,0.642462,0.664988,0.618333,0.449157,0.234701,0.0333337,-0.131683,-0.288566,-0.292815,-0.281591,-0.274801,-0.322863,-0.24819,-0.164701,-0.147548,-0.117924,-0.0778988,0.0174835,0.0432349,0.0727764,0.199777,0.386941,0.388984,0.451378,0.731949,0.686909,0.6225,0.078913,-0.0249576,0.277844,0.239869,0.253813,0.0504109,0.066524,-0.0736665,0.0641504,0.0582644,0.0268586,0.0167972,-0.0120327,-0.0411461,0.0892428,0.47964,0.632792,0.421285,0.239004,0.0687676,-0.0377254,-0.0282243,0.0240359,0.135889,0.147373,0.10491,0.0615822,-0.0415925,-0.0548741,-0.207369,-0.193772,-0.337011,-0.347077,-0.454201,-0.436789,-0.428516,-0.508767,-0.511993,-0.51167,-0.489816,-0.534986,-0.45396,-0.479749,-0.495048,-0.511252,-0.458382,-0.488035,-0.397068,-0.425115,-0.400815,-0.439119,-0.38244,-0.382404,-0.36222,-0.356254,-0.406371,-0.39365,-0.342541,-0.341153,-0.325965,-0.354251,3 +0.285412,0.367905,-0.360253,2.52012,2.73908,1.99969,1.60739,-0.683514,-0.859894,-0.917769,-0.726317,-0.614889,-0.478799,-0.214752,-0.00201478,0.134899,0.409311,0.285117,0.438338,0.0385162,0.0815234,-0.0769979,-0.0174377,0.27843,0.419221,0.451565,0.447284,0.20929,0.210769,0.500104,0.629895,0.506596,-0.027782,0.298628,0.466814,0.511035,1.16464,1.0652,-0.0407082,-0.707993,-1.52889,-0.0564725,-0.628689,-0.266427,-0.0770697,-0.297197,-0.260406,-0.809106,-0.727196,-0.644489,-0.475319,0.389052,0.28271,0.284521,0.499785,0.140546,0.537555,-0.331943,-0.121501,0.0587505,-0.21282,-0.432503,-0.00893101,0.677764,-0.186457,0.166515,0.521065,0.589408,0.0912961,0.257246,0.776194,0.100163,0.496026,0.472143,0.70525,0.814224,0.0813636,0.328343,0.876643,0.282423,0.322852,0.933397,0.216772,0.317917,0.489716,0.121977,-0.266354,0.199188,0.462648,0.270511,0.0781972,0.135369,0.236829,0.0298453,-0.102284,0.254787,0.22437,-0.290617,0.1807,0.398202,1 +0.314861,1.08828,0.256784,-1.12816,-1.13715,-0.997517,-1.04796,2.28709,2.13644,1.95934,1.79842,1.72721,1.73122,1.69273,1.65169,1.35202,1.01868,0.675942,0.449209,0.254389,0.106251,0.0663256,-0.0625209,-0.19116,-0.219064,-0.349647,-0.479086,-0.479123,-0.532592,-0.746167,-0.757419,-0.834396,-0.974198,-1.10441,-1.27066,-1.42384,-1.65322,-1.66558,-1.38864,-1.1805,-1.1235,-1.11654,-0.931296,-0.836205,-0.858902,-0.707833,-0.817489,-0.809551,-0.872515,-0.727965,-0.707087,-0.33161,-0.70073,-1.02771,-1.32566,-1.57784,-1.33857,-0.928627,-0.782851,-0.836587,-0.733789,-0.834455,-0.800639,-0.9296,-1.03344,-0.976764,-0.959783,-0.993333,-1.11708,-1.14713,-1.24766,-1.31139,-1.19814,-1.22079,-1.21175,-1.17099,-1.11067,-1.13669,-1.11329,-1.06488,-1.06786,-1.03799,-1.04561,-1.03454,-1.03389,-0.944805,-0.8667,-0.903638,-0.89289,-0.847366,-0.818083,-0.793211,-0.799175,-0.812603,-0.775781,-0.727324,-0.673173,-0.706117,-0.6588,-0.695218,0 +0.316247,0.422827,-0.357843,1.9204,1.62674,1.85196,1.77492,-0.80196,-0.86616,-0.670335,-0.655082,-0.592377,-0.58325,-0.294132,0.0295594,0.0170337,0.27552,0.247665,-0.0268046,-0.183172,-0.349513,-0.416268,-0.389119,-0.144892,-0.119168,0.0846783,0.156885,-0.178281,0.213005,0.151983,0.468535,0.412789,0.312387,0.574078,0.732549,0.916048,0.686634,1.67649,-0.25414,1.44152,0.630788,-0.0779659,0.207802,0.188819,0.194712,-0.251583,-0.296239,-0.290315,0.0148547,-0.00601118,-0.43776,0.444567,0.156105,0.436504,0.652806,1.18266,0.119187,-0.000142446,0.305245,0.716296,0.25508,0.185585,0.489515,0.430131,0.53625,0.0246239,0.170869,0.714739,0.806933,0.079887,0.47984,0.610139,0.263004,0.361892,0.5073,0.618818,0.740485,0.339891,0.30992,0.490874,0.20239,0.280828,0.533281,0.265704,0.441429,0.377948,0.133302,0.196846,-0.00321312,0.276559,0.239942,0.0845565,0.120512,0.298062,0.354532,0.0251666,0.0876992,0.266665,0.301441,0.0698347,3 +0.317286,0.236171,-0.313855,0.795071,1.05871,0.849103,1.00149,-1.07637,-1.21734,-1.42881,-1.54142,-1.58372,-1.61766,-1.55298,-1.52649,-1.43906,-1.01039,-0.364022,0.140167,0.485048,0.658437,0.728503,0.847064,0.918994,0.805543,0.818617,0.961834,0.754135,0.903604,0.825375,1.07436,0.737703,0.591489,0.682929,0.612194,0.549852,0.955306,0.656741,0.628375,0.400585,0.342567,-0.224745,-0.153439,0.233875,0.00835973,-0.232315,0.0595079,-0.107432,-0.359887,-0.524455,-0.821105,0.510725,0.0579402,-0.0517612,0.909132,1.3688,1.36431,0.828445,0.197138,0.805489,1.04998,0.591948,0.402436,0.831436,0.829401,0.543975,0.85048,0.660969,0.802779,1.0281,1.01343,0.777261,0.817801,1.05882,0.757652,0.842535,0.595007,0.655364,0.827063,0.573523,0.416561,0.542207,0.812018,0.357989,0.152252,0.58156,0.410153,0.227115,0.0632246,0.48758,0.143233,0.388189,0.322229,0.303122,0.08552,0.160955,0.193896,0.294866,0.0622735,0.0891144,1 +0.319365,0.403105,-0.361458,2.253,2.43048,1.34343,1.13831,-0.695403,-0.9468,-0.702445,-0.609336,-0.700059,-0.675961,-0.384155,-0.348765,-0.70403,-0.641993,-0.897735,-1.03204,-0.766968,-1.0371,-1.13857,-0.752158,-0.788976,-0.744234,-0.265352,-0.504879,-1.02076,-0.744488,-0.53293,-0.48426,-0.432256,0.138297,0.888542,0.58122,0.580578,0.669092,0.537439,1.66175,0.94592,1.09656,-0.126986,0.279012,0.596305,0.366284,0.45532,0.366635,1.06819,1.35817,-0.313939,0.778221,-0.29851,-0.248634,0.0872066,0.932938,1.03191,0.559107,0.440217,0.295529,0.804451,0.604099,0.468384,0.731193,0.535761,0.788754,0.958546,0.735339,1.00634,1.53739,1.18529,1.2515,1.13706,1.32594,1.52186,1.35141,1.29974,1.2048,1.21964,1.23289,1.18646,1.00036,0.947504,0.810361,1.04652,0.934989,0.838178,0.665213,0.759404,0.94419,0.778479,0.563966,0.756874,0.725556,0.728794,0.853098,0.773893,0.860901,0.660042,0.734625,0.478412,0 +0.320751,-0.0172717,-0.21684,-0.175159,-0.124851,-0.0770482,-0.199144,1.75163,1.53281,1.56889,1.5939,1.54568,1.44612,1.70978,1.37601,0.980077,0.670758,0.396594,0.280732,0.0642365,-0.0432301,-0.0510895,-0.126833,-0.223107,-0.189217,-0.240146,-0.426675,-0.326357,-0.349025,-0.648,-0.894563,-0.977254,-0.799231,-1.07317,-1.54577,-1.3932,-1.1228,-0.993504,-0.628081,-0.68248,-1.01651,-0.381445,-0.463073,-0.741933,-0.702362,0.106421,-0.0228122,-0.382059,0.0080241,-0.013176,-0.582503,-0.123523,-0.727975,-0.782635,-0.712321,-1.48093,-1.2415,-0.431155,-0.273107,-0.473329,-0.35812,-0.543467,-0.450255,-0.697321,-0.442031,-0.833464,-0.732202,-0.830626,-0.899124,-0.752292,-1.12048,-0.648468,-1.17293,-1.01143,-0.935431,-0.99964,-1.09981,-1.16186,-0.792495,-0.630233,-0.940553,-1.19916,-0.884078,-0.699437,-0.657709,-0.727316,-0.927702,-0.797503,-0.927783,-0.657821,-0.830476,-0.812374,-0.702209,-0.832437,-0.539269,-0.750473,-0.664383,-0.701384,-0.845155,-0.60933,0 +0.328027,0.264915,-0.31506,0.912257,0.680578,0.832057,0.697144,-0.106476,-0.209858,-0.267084,-0.355221,-0.372411,-0.58675,-0.548421,-0.742322,-0.911486,-1.21499,-1.23693,-1.47395,-1.38927,-1.43976,-1.48913,-1.45531,-1.34729,-1.31227,-1.23721,-1.25959,-1.15658,-0.940285,-0.685754,-0.644263,-0.633958,-0.408316,-0.00667208,0.462061,0.761551,0.587004,1.44329,1.56242,2.01657,2.24251,2.15669,2.30286,2.26809,2.02682,2.20992,2.00945,2.13073,1.77513,1.80125,1.80783,-0.813318,-0.822711,-0.367187,1.2381,1.74681,1.82873,2.29411,1.91896,1.80347,1.93251,1.94137,1.84087,1.6508,1.87325,1.33543,1.29706,1.16149,1.23757,1.12797,0.563378,1.12514,0.676385,0.684048,0.775825,0.651229,0.842374,0.358354,0.363677,0.82241,0.195969,0.366244,0.530362,0.436867,0.586305,0.481767,0.281005,0.2709,0.73075,0.555113,0.350585,0.353453,0.53585,0.281726,0.531115,0.0842086,0.32037,0.43768,0.3455,0.299085,2 +0.32872,0.308624,-0.0692093,-0.412977,-0.443632,-0.324211,-0.372258,0.371154,0.456989,0.553089,0.579191,0.557943,0.508463,0.443996,0.340369,-0.0234153,-0.411887,-0.627879,-0.75933,-0.87635,-0.880618,-0.898453,-0.885306,-0.813857,-0.83489,-0.6838,-0.553488,-0.532577,-0.453693,-0.313218,-0.239685,-0.184322,0.0489575,0.267674,0.578871,0.980004,1.24897,1.51883,1.31499,1.4613,1.26558,1.06515,1.06735,0.892741,0.636702,0.466106,0.163897,0.455862,0.280574,0.347061,0.278045,-1.27001,-0.938234,-0.206806,0.958228,1.93638,1.907,1.21618,0.888646,0.769139,0.607153,0.465693,0.534728,0.482381,0.51133,0.32072,0.31679,0.196781,0.08377,-0.0135232,-0.160116,-0.0924338,-0.31532,-0.255086,-0.255929,-0.22553,-0.265017,-0.246071,-0.309748,-0.337263,-0.226109,-0.241814,-0.235653,-0.173587,-0.162949,-0.278231,-0.236027,-0.18743,-0.218932,-0.128014,-0.164092,-0.144707,-0.201611,-0.0757207,-0.121055,-0.173973,-0.206819,-0.121619,-0.0501171,-0.0761761,3 +0.32872,0.550178,-0.284931,0.689949,0.583926,0.357618,0.398382,0.0718964,0.228346,0.311925,0.500685,0.702084,0.607639,0.551217,0.63614,0.374706,0.141179,-0.176748,-0.500148,-0.390095,-0.401006,-0.196528,-0.633738,-0.610337,-0.395417,-0.700069,-0.539882,-0.566178,-0.554701,-0.540651,-0.511071,-0.452611,-0.537236,-0.941248,0.013965,0.697474,-0.45635,-0.0320183,-0.107673,0.415516,1.08056,0.823751,0.990048,0.404745,1.24868,0.505363,0.693407,0.50775,1.05432,0.792403,0.301667,-0.478489,-0.521754,-0.396453,-0.0331287,0.246238,0.49739,0.778491,0.592205,1.39522,0.843318,0.60365,0.621124,0.644719,0.700624,0.35095,0.318665,0.444209,0.210611,0.194818,-0.172764,-0.235213,-0.108528,-0.11834,-0.38027,-0.311167,-0.277995,-0.133506,-0.460569,-0.267211,-0.349546,-0.163996,-0.340567,-0.395261,-0.29703,-0.333269,-0.384001,-0.350379,-0.240534,-0.126663,-0.300676,-0.259406,-0.308202,-0.297344,-0.4181,-0.39315,-0.24676,-0.0226627,-0.247655,-0.230693,0 +0.331838,0.420519,-0.164416,0.100573,0.375362,-0.363985,-0.294077,-1.07929,-1.02327,-0.989183,-0.893692,-0.709708,-0.479864,-0.272796,-0.000535712,0.284886,0.616817,0.56409,0.451805,0.406745,0.323247,0.336446,0.315409,0.391075,0.579547,0.602244,0.594302,0.599951,0.74337,0.723002,0.669083,0.816309,0.891117,0.955718,1.08926,1.06702,0.744447,0.34338,0.469888,0.400299,0.0610567,-0.181968,-0.289505,-0.461846,-0.636086,-0.815663,-0.65741,-0.473635,-0.688379,-0.672053,-0.59289,0.635052,0.635895,0.850415,0.822366,0.838397,0.130323,-0.493873,-0.411665,-0.577514,-0.510875,-0.184103,-0.0970395,-0.359802,-0.244002,-0.0770712,0.0181503,0.171262,0.201022,0.120042,0.244122,0.37445,0.365821,0.316701,0.355184,0.254226,0.212696,0.265525,0.285469,0.219343,0.163924,0.216257,0.15058,0.224567,0.100428,0.0323642,-0.0396698,0.0572765,0.0749103,0.0157916,-0.0535328,-0.0177723,0.0117497,0.0310342,-0.0605933,-0.0374785,-0.019925,0.000405447,-0.0887232,-0.00355433,1 +0.333916,0.384573,0.208578,-0.924804,-0.901455,-0.994676,-0.958615,0.0172608,-0.00224515,0.18092,0.301725,0.324872,0.217192,-0.0506206,-0.637781,-1.37156,-2.00975,-2.24059,-2.24716,-2.28283,-2.20179,-2.19104,-2.1488,-2.13277,-2.11308,-2.10291,-2.11814,-2.12701,-1.98416,-1.84059,-1.70759,-1.68967,-1.56635,-1.27529,-0.783843,-0.230624,0.228758,1.11008,1.45435,1.92972,2.32044,2.40142,2.43335,2.26658,2.21669,2.09135,1.97601,2.06519,2.1554,2.13228,2.21119,-1.98028,-1.86864,-1.40756,-0.398504,1.38534,2.2667,2.36279,2.3246,2.47426,2.45547,2.35285,2.34246,2.36767,2.31808,2.21542,2.04846,1.99717,1.92045,1.88133,1.70509,1.56052,1.51769,1.41553,1.37751,1.30158,1.25054,1.16262,1.09762,1.13092,1.10709,1.05153,1.15497,1.08864,1.10712,1.04678,1.04826,1.0586,1.07827,0.981224,0.97184,0.97068,1.0352,0.99248,0.873144,0.891588,0.936253,0.895294,0.883757,0.842347,2 +0.36094,-0.301556,-0.00955438,-0.743855,-0.660674,-0.852629,-0.779916,1.22864,1.00326,0.863627,0.764752,0.747568,0.527869,0.588387,0.662386,0.338823,0.184313,0.0959892,0.102366,0.141601,0.127079,0.192063,0.0818343,0.0798886,0.11639,0.0282751,-0.0385132,-0.00557685,-0.296353,-0.124044,-0.256027,-0.388191,-0.416335,-0.423085,-0.589602,-0.784532,-0.995909,-0.720924,-0.627147,-0.546845,-0.317379,-0.558711,-0.444841,-0.3279,-0.166853,-0.251879,-0.433095,0.136868,-0.144633,-0.145218,-0.115623,-0.0950792,-0.220085,-0.429594,-0.672422,-0.814732,-0.553855,-0.375685,-0.197717,-0.476286,-0.501194,-0.364112,-0.501586,-0.341699,-0.489478,-0.535208,-0.424326,-0.336462,-0.481882,-0.463529,-0.374714,-0.418853,-0.625718,-0.506945,-0.471677,-0.479118,-0.545913,-0.406271,-0.555449,-0.622495,-0.568685,-0.490877,-0.470495,-0.595235,-0.546906,-0.469972,-0.489796,-0.552363,-0.494938,-0.546228,-0.465333,-0.469575,-0.470148,-0.42594,-0.386718,-0.495105,-0.450104,-0.481485,-0.465461,-0.454127,0 +0.361287,-0.666568,-0.0704144,-0.845531,-0.835325,-0.602625,-0.629138,-0.581466,-0.521093,-0.490347,-0.439385,-0.429246,-0.311791,-0.326671,-0.326473,-0.207569,0.0178064,0.0823218,0.0923737,0.216049,0.216377,0.234228,0.312815,0.30477,0.3518,0.343115,0.315696,0.21576,0.215102,0.226696,0.220474,0.146889,0.252983,0.253294,0.112566,0.295787,0.450401,0.359977,0.378916,0.446864,0.311067,0.38967,0.355924,0.149513,0.0800252,0.177012,0.17303,0.0746725,0.00368375,0.10685,0.169975,0.30962,0.198813,0.186997,0.331824,0.404728,0.198191,0.327586,0.206783,0.152997,0.119679,0.0925408,0.103122,0.185416,0.16138,0.146565,0.169525,0.265365,0.237366,0.208545,0.196507,0.112058,0.190297,0.252576,0.101514,0.113832,0.112025,0.0506582,0.0482912,0.0792146,0.025412,0.0302321,-0.0117926,-0.0564694,-0.112724,-0.0137978,-0.0174948,-0.0298564,-0.0276783,-0.117822,-0.119147,-0.0141549,-0.0789942,-0.0554421,-0.10513,-0.0851151,-0.0121079,-0.0406914,-0.0569622,0.00976424,1 +0.36198,0.403012,0.823204,-0.96444,-1.16937,-1.09695,-1.16244,0.422107,0.562682,0.725265,0.838769,0.934577,1.02134,0.969293,0.935809,0.725007,0.328046,0.106411,-0.052723,-0.17552,-0.314963,-0.361137,-0.304005,-0.25835,-0.207334,-0.168626,-0.0787318,0.0361612,0.0913898,0.0787273,0.209964,0.386611,0.438117,0.371638,0.412385,0.766461,0.647671,0.405428,0.766906,0.544612,0.448109,0.107374,0.0952848,-0.0109324,-0.270914,-0.329378,-0.313452,-0.335023,-0.195681,-0.337662,-0.179986,-0.0844741,0.0614453,0.347389,0.590531,0.638727,0.320654,-0.0276222,-0.183621,-0.382675,-0.389561,-0.362474,-0.315566,-0.337271,-0.292921,-0.376091,-0.462509,-0.504361,-0.590843,-0.627724,-0.729273,-0.720402,-0.743036,-0.758106,-0.833756,-0.816218,-0.775846,-0.791412,-0.777734,-0.783365,-0.70744,-0.729958,-0.719193,-0.714881,-0.684904,-0.702622,-0.640981,-0.604824,-0.638207,-0.629593,-0.57703,-0.597927,-0.543872,-0.521286,-0.55836,-0.519352,-0.462525,-0.514437,-0.517542,-0.498087,3 +0.36683,0.0953231,0.119397,-1.09369,-1.0015,-0.790128,-0.830175,1.40053,1.5396,1.65272,1.88033,2.09158,2.27609,2.22763,2.10235,1.75179,1.18917,0.748846,0.343837,0.0534157,-0.150611,-0.213038,-0.268482,-0.303099,-0.318488,-0.340661,-0.386894,-0.37675,-0.321887,-0.24028,-0.30011,-0.373064,-0.399578,-0.346541,-0.332622,-0.692445,-0.759263,-0.919972,-1.08111,-1.10791,-1.26403,-1.16786,-1.28993,-1.45974,-1.31159,-1.29014,-1.46564,-1.34257,-1.2061,-1.19436,-1.28584,-0.441106,-0.502888,-0.454844,-0.234797,-0.98276,-1.31899,-1.25572,-1.11527,-1.44304,-1.25852,-1.29009,-1.04194,-1.0761,-1.02482,-0.919264,-0.990848,-0.920615,-1.06044,-0.89569,-1.04533,-1.01956,-1.07835,-1.07922,-1.06468,-1.12986,-1.16587,-0.978053,-1.05336,-0.994855,-0.928558,-1.02589,-0.973003,-0.852902,-0.894912,-0.933454,-0.9021,-0.835535,-0.808419,-0.748966,-0.754979,-0.743323,-0.743669,-0.756598,-0.675159,-0.709089,-0.661141,-0.566384,-0.660323,-0.615717,3 +0.373759,0.419377,-0.248174,-0.206179,-0.279155,-0.113981,-0.280117,0.263202,0.490731,0.636615,0.683519,0.912013,0.842312,0.785733,0.664901,0.212857,0.0125128,-0.269605,-0.601337,-0.659397,-0.742206,-0.748469,-0.727384,-0.87826,-0.684424,-0.579711,-0.511882,-0.509887,-0.184686,0.0367447,-0.0799066,-0.00203629,-0.270175,0.0758309,0.506874,0.691809,0.874899,0.903353,0.147097,0.591508,0.412342,0.541142,0.848379,0.146665,0.229301,0.412839,0.365399,0.558233,0.453271,0.278547,0.899618,-0.712117,-0.225104,-0.00603527,0.250465,0.612806,0.916061,0.810958,0.418623,0.448327,0.557399,0.299609,0.495531,0.295338,0.128892,-0.0538285,0.100805,0.0167145,-0.284517,-0.288141,-0.243785,-0.343674,-0.462848,-0.664019,-0.540108,-0.412909,-0.423708,-0.349395,-0.370871,-0.392547,-0.396123,-0.566515,-0.499359,-0.427384,-0.417168,-0.365046,-0.384939,-0.213814,-0.259055,-0.27617,-0.215552,-0.367746,-0.386862,-0.128476,-0.225568,-0.284451,-0.23336,-0.0171934,-0.12689,-0.230333,3 +0.375838,-0.843852,-0.161403,-0.449167,-0.51824,-0.179323,-0.347129,-1.33866,-1.44192,-1.48776,-1.69262,-1.77573,-1.74121,-1.70407,-1.59062,-1.02549,-0.326238,0.306944,1.04133,1.53963,1.86822,2.10794,2.39012,2.32491,2.34836,2.36831,2.1382,2.0853,1.80727,1.80592,1.55957,1.43984,1.43552,1.22063,1.47999,0.840718,0.805365,0.145801,-0.526027,-0.724427,-0.864429,-0.796417,-0.822521,-1.11517,-0.987585,-1.13855,-1.10019,-0.772641,-0.957446,-1.199,-0.986945,1.86429,1.91787,1.72334,0.702135,-0.0556932,-0.97617,-1.40131,-1.39104,-1.18209,-1.04783,-1.08005,-0.954581,-0.940828,-0.788425,-0.67059,-0.723546,-0.328346,-0.291037,-0.162734,0.114892,0.0986759,-0.0405627,0.0925727,0.15073,0.0451217,0.148737,0.129811,0.183703,0.188038,0.0645394,0.142278,-0.00279148,-0.0961344,-0.043037,-0.0879106,-0.051317,-0.0787147,-0.144879,-0.105642,-0.109653,-0.120016,-0.170381,-0.164338,-0.025409,-0.154215,-0.136773,-0.160295,-0.182771,-0.0332897,1 +0.381381,-0.912248,0.0404593,-0.830021,-0.75563,-0.878197,-0.869265,-0.935816,-1.00453,-1.00102,-1.00827,-0.975743,-0.933745,-0.823491,-0.611633,-0.184353,0.471466,0.867695,1.06508,1.27962,1.29881,1.3177,1.34186,1.37584,1.40019,1.44082,1.47854,1.27398,1.22044,1.08241,1.07561,0.791206,0.742978,0.589446,0.513114,0.167678,0.0669297,-0.0253898,-0.472555,-0.758148,-0.714149,-0.930722,-1.02589,-0.979918,-1.04112,-1.03213,-1.08183,-1.05452,-1.16507,-1.0479,-1.06864,1.39864,1.21109,0.908655,0.242416,-0.69767,-1.06798,-1.15395,-1.05751,-0.94006,-0.906211,-0.80427,-0.680388,-0.6386,-0.589654,-0.43393,-0.278812,-0.280468,-0.0845372,0.08696,0.101862,0.0854951,0.18868,0.139233,0.135362,0.160821,0.113983,0.118823,0.0908327,0.0802686,-0.0339304,0.0353967,0.0175031,-0.0886948,-0.0851464,-0.1362,-0.104367,-0.112994,-0.0584545,-0.139799,-0.119189,-0.114958,-0.174308,-0.165447,-0.154117,-0.177423,-0.171262,-0.169568,-0.149679,-0.149753,1 +0.382074,0.466559,-0.326509,0.888131,0.716186,0.565008,0.448641,-0.821704,-0.731646,-0.741676,-0.693733,-0.486375,-0.409636,-0.205916,0.0196222,0.265348,-0.0654157,-0.200492,0.00608426,-0.0553001,-0.0571004,-0.0896132,-0.161993,-0.0464686,0.00669195,-0.0760511,0.0104493,0.101596,-0.0693547,0.239604,0.191085,0.426844,0.21672,-0.131268,0.350992,0.522434,0.487974,0.960184,0.568748,0.00998795,0.373784,0.538421,-0.305584,-0.0693854,0.280249,-0.0451291,-0.130493,-1.00771,-0.591671,-0.649216,-0.529516,0.135795,0.107382,0.214366,0.966083,0.838302,0.18962,-0.0741603,-0.387063,-0.0533048,0.279225,0.0983951,-0.132444,0.0279611,0.0824575,0.224541,0.195981,0.367863,0.547892,0.480843,0.524656,0.968421,0.670448,0.393772,0.565365,0.749894,0.534797,0.817267,0.510401,0.376626,0.512161,0.648246,0.408609,0.446417,0.520996,0.596057,0.212773,0.49544,0.201423,0.331904,0.416174,0.503725,0.475388,0.287766,0.0539094,0.271003,0.433151,0.314322,0.197191,0.410167,1 +0.391082,-0.290669,0.1905,-0.885167,-0.945541,-1.0657,-1.00608,-0.955896,-0.99798,-1.00895,-0.97982,-0.883817,-0.673959,-0.453245,-0.177104,0.19823,0.595991,0.881991,0.857229,0.722465,0.662665,0.666831,0.625494,0.658033,0.601529,0.669383,0.657246,0.655868,0.614407,0.621167,0.675448,0.774068,0.753031,0.608676,0.629395,0.607772,0.195808,0.227623,-0.0838949,-0.349256,-0.568354,-0.891639,-0.943694,-0.847539,-1.09936,-0.845124,-0.958978,-0.889057,-0.897477,-0.860306,-0.75905,0.61702,0.59684,0.614924,0.348552,-0.221636,-0.594399,-0.679027,-0.759348,-0.695656,-0.475663,-0.463077,-0.434236,-0.344407,-0.31189,-0.205414,-0.0162397,0.0553156,0.19033,0.328756,0.359572,0.405304,0.401792,0.508549,0.517299,0.453803,0.47398,0.463151,0.430452,0.336449,0.350774,0.345923,0.294809,0.21353,0.250475,0.193858,0.187061,0.203967,0.16469,0.121537,0.134479,0.163833,0.20325,0.105282,0.073623,0.0358785,0.0508869,0.0513671,0.135671,0.0645551,1 +0.400437,0.447957,-0.207801,-0.269942,-0.224894,-0.355462,-0.288493,-0.775655,-0.722399,-0.622596,-0.609539,-0.470856,-0.494632,-0.519622,-0.600329,-0.80476,-1.01115,-1.14698,-1.05343,-1.12376,-1.15819,-1.04384,-1.08512,-1.06902,-0.938658,-1.00235,-0.943471,-0.871994,-0.865845,-0.694349,-0.72544,-0.731003,-0.483359,-0.0845617,0.258122,0.383623,0.893195,1.12347,1.50153,1.97654,1.71969,2.24791,2.04044,1.75323,1.75399,1.73003,1.64019,1.3903,1.58943,1.6482,1.77254,-0.964095,-0.695053,-0.537784,0.196589,1.56138,1.92388,2.16221,1.94043,1.82949,1.87199,1.83364,1.99061,2.06369,2.06436,1.90698,1.8791,1.75859,1.47643,1.18237,1.0717,1.02321,0.905647,0.826974,0.769433,0.644957,0.525627,0.615306,0.619808,0.540759,0.507755,0.48743,0.453748,0.414381,0.492218,0.530506,0.430367,0.543853,0.421326,0.477905,0.48375,0.540473,0.583645,0.431487,0.415981,0.453178,0.436022,0.424479,0.381186,0.477394,0 +0.41083,-0.538145,0.473711,-1.15401,-1.18463,-1.04865,-1.07309,-0.818414,-0.84326,-0.896716,-0.891664,-0.8038,-0.704517,-0.53369,-0.244558,0.21924,0.605962,0.981435,1.09609,1.06755,1.02886,1.03661,0.984994,1.05296,1.01324,0.912474,0.907622,0.934503,0.908293,0.767119,0.780937,0.683173,0.659222,0.575733,0.577598,0.279994,0.213683,-0.0806724,-0.226559,-0.445238,-0.414036,-0.628196,-0.788058,-0.763515,-0.748179,-0.721185,-0.741729,-0.850651,-0.768963,-0.736121,-0.681916,0.871831,0.72479,0.572054,0.300274,-0.181406,-0.650783,-0.562593,-0.666373,-0.579067,-0.490161,-0.453263,-0.406872,-0.370137,-0.412289,-0.320622,-0.23837,-0.283897,-0.17792,-0.0586963,-0.0605931,-0.0545185,-0.0141341,-0.028633,-0.0179523,0.0483732,-0.0333062,0.0418626,-0.0019977,-0.0562629,-0.0139851,0.00175335,-0.0568336,-0.0999816,-0.0959344,-0.0897603,-0.0872036,-0.133961,-0.142126,-0.146382,-0.138526,-0.158646,-0.146015,-0.19643,-0.173066,-0.168108,-0.166103,-0.200546,-0.217927,-0.177159,1 +0.414295,1.79602,-0.372907,1.19833,1.28762,2.06219,2.03739,0.901498,0.738659,0.844216,0.861137,0.673117,0.634578,0.5348,0.698621,0.586394,0.28944,0.230707,0.146039,0.0613832,-0.319406,0.136777,-0.0450747,-0.176203,-0.3606,-0.101554,-0.0818929,-0.22498,-0.143161,-0.0850451,-0.606976,0.194282,-0.374962,-1.23689,-0.270037,-0.205367,0.399419,0.383231,0.430744,0.117561,0.681924,-0.173757,0.628813,-0.294208,0.407298,0.723816,0.396189,0.799587,0.35022,0.10712,0.743913,0.100196,-0.0522697,0.313882,-0.49728,-0.607397,-0.167918,0.40916,0.412673,0.629005,0.329173,0.440462,-0.0621749,-0.694115,-0.196166,-0.423021,-0.8294,-0.149127,-0.363286,-0.709782,-1.0731,-0.927882,-1.33269,-0.717427,-0.331659,-0.909367,-1.52662,-1.01177,-0.522507,-0.622103,-0.963929,-0.478426,-0.654201,-0.716501,-0.559836,-0.781197,-0.59697,-0.996327,-1.17636,-0.578586,-0.475431,-0.682558,-0.669964,-0.675409,-0.531862,-0.65267,-0.706687,-0.372256,-0.684555,-0.384888,0 +0.434736,0.451687,0.0332284,-0.707665,-0.791238,-0.582738,-0.570503,-0.57116,-0.509401,-0.457662,-0.454059,-0.322942,-0.307122,-0.25081,-0.104608,0.00382807,0.176825,0.216284,0.136889,0.132337,0.13234,0.104057,0.138882,0.106516,0.177898,0.160256,0.149092,0.0998079,0.0664623,0.0391086,0.0813094,0.0432465,0.0205729,0.0407493,0.254967,0.296074,0.326451,0.224209,0.437976,0.474805,0.432078,0.643472,0.342863,0.344471,0.30347,0.0311794,-0.0237726,0.0306408,-0.0465145,0.0518098,-0.0762943,0.0174909,0.0673567,0.270178,0.267739,0.432875,0.393357,-0.0156721,0.0712143,-0.0101069,-0.0524364,-0.0807963,0.0850057,0.00617137,0.0540346,0.0599391,0.138507,0.319591,0.250445,0.383073,0.370133,0.373387,0.250415,0.29696,0.240309,0.298855,0.178956,0.198788,0.228768,0.172576,0.157593,0.0961296,0.0769404,0.0294339,0.0169209,0.0373713,0.0436851,0.0456532,0.07664,-0.0171324,0.0252011,0.00641176,0.00942854,0.111462,-0.015658,0.0209062,0.0554595,-0.00318919,0.0433098,0.0279131,1 +0.439933,-0.948521,-0.144531,-0.485357,-0.591153,-0.596943,-0.570503,0.280337,0.168686,0.10481,0.0806016,-0.0483057,-0.176452,-0.217066,-0.290053,-0.375857,-0.414537,-0.360311,-0.307744,-0.139725,-0.16553,-0.0544253,-0.0834998,-0.204008,-0.0187185,-0.0424942,-0.166029,0.00240632,-0.00198955,-0.0206055,0.120273,0.124171,0.0251271,0.0420952,0.375162,0.0695007,0.0732811,0.135534,0.546187,0.625192,0.637338,0.783733,0.875935,0.728693,0.610505,0.793322,1.01566,0.823717,0.855736,0.957113,0.683388,0.0186823,0.0385885,0.218697,0.27828,0.132607,0.549993,0.765763,0.754434,0.538584,0.454402,0.359845,0.170809,0.16896,0.11603,0.0935605,0.0472502,-0.0988221,-0.136345,-0.111043,-0.24765,-0.234731,-0.209165,-0.0827767,-0.14521,-0.26775,-0.183967,-0.235871,-0.168041,-0.0789753,-0.1487,-0.166449,-0.115121,-0.116361,-0.0567309,-0.213836,-0.191438,-0.184479,-0.194293,-0.165541,-0.320894,-0.227808,-0.426077,-0.404857,-0.324011,-0.346881,-0.376555,-0.375453,-0.273498,-0.407331,0 +0.447901,-0.169216,-0.199968,-0.0528031,-0.177416,-0.403758,-0.294077,-0.918085,-0.827721,-0.79154,-0.739556,-0.570592,-0.457958,-0.395405,-0.15533,0.322145,0.641943,1.12266,1.21267,0.961748,0.996142,0.843337,0.756618,0.889871,0.741535,0.839913,0.964501,0.966539,0.964329,0.903822,0.634474,0.76959,0.729968,0.582466,0.517505,0.381707,-0.275371,0.162983,-0.182383,-0.178592,-1.13614,-0.881033,-0.587355,-0.831248,-0.949626,-0.829131,-0.785435,-0.875088,-0.80104,-1.00496,-1.09363,0.635929,0.749526,0.524899,0.0787408,-0.400098,-0.439092,-0.79431,-0.677495,-0.730719,-0.494264,-0.494236,-0.506183,-0.436467,-0.530165,-0.467946,-0.404117,-0.185581,-0.0161253,-0.0484368,-0.185146,0.219916,0.104848,0.0612598,0.0741965,0.0232603,0.0759033,0.212254,0.0958045,0.0328493,-0.00402491,0.0301695,0.0859667,0.0730826,-0.145439,-0.0609403,-0.298725,-0.16302,-0.0934848,-0.116987,-0.143312,-0.162664,-0.279084,-0.0223196,-0.216814,-0.176492,-0.102653,-0.268437,-0.232744,-0.178285,1 +0.44998,0.78285,-0.171647,-0.194115,-0.0960256,-0.386712,-0.391803,-0.151251,-0.00428975,-0.0502382,0.118237,0.168584,0.132624,0.120344,0.013631,-0.202521,-0.655083,-0.931673,-0.978303,-0.946089,-1.13161,-1.18311,-1.15022,-1.1202,-1.07616,-1.06673,-0.986591,-1.05891,-1.07992,-0.927027,-0.990976,-1.07081,-0.914691,-0.721036,-0.612678,-0.24834,0.0172903,0.379187,0.380756,0.554834,0.909359,0.786401,0.794324,0.775967,0.487017,0.327476,0.457119,0.302455,0.472079,0.495946,0.693113,-1.21362,-1.10445,-0.730735,-0.439216,0.167132,0.886799,0.871815,0.663145,0.774023,0.868521,0.780406,0.946494,0.915537,0.844309,1.0787,1.12204,1.02113,1.21815,1.09129,1.07131,1.10954,1.13854,1.03728,1.03289,1.07869,1.01338,1.04396,0.834946,0.85029,0.886132,0.867737,0.758605,0.740821,0.754816,0.711718,0.711241,0.683229,0.725617,0.703264,0.632437,0.618613,0.530929,0.507021,0.549723,0.560982,0.639944,0.604799,0.570742,0.678882,2 +0.460028,-0.384358,-0.192737,-0.44572,-0.399545,0.286594,0.40955,-0.86323,-0.845417,-0.839204,-0.843786,-0.747624,-0.754204,-0.568931,-0.396127,-0.146905,0.136849,0.230241,0.315768,0.229755,0.190302,0.241716,0.194882,0.18603,0.218165,0.260921,0.337158,0.334074,0.368429,0.407016,0.460852,0.434952,0.459906,0.384625,0.231979,0.216561,0.0625497,0.0399495,-0.0960644,-0.246355,-0.403524,-0.522803,-0.464235,-0.490899,-0.650759,-0.644955,-0.676194,-0.673707,-0.662822,-0.410576,-0.39206,-0.0604469,0.112302,0.20603,0.452232,0.170239,-0.672976,-0.246611,-0.293478,-0.247397,-0.326926,-0.136277,-0.137537,0.0023178,-0.0202375,0.176595,0.179807,0.545607,0.464145,0.571729,0.654508,0.799269,0.789247,0.578718,0.724591,0.735861,0.882823,0.736341,0.670334,0.74331,0.609513,0.709581,0.828845,0.527635,0.469776,0.71169,0.444703,0.714453,0.558364,0.354871,0.353469,0.387902,0.316436,0.337937,0.396469,0.410569,0.36545,0.248527,0.324826,0.535957,1 +0.465571,-0.144553,-0.136095,-0.211349,-0.408023,-0.256028,-0.266156,0.152875,0.274091,0.376258,0.519774,0.490583,0.32546,0.388074,0.113007,0.239309,0.476936,0.314772,0.377817,0.536643,0.430795,0.355932,0.373658,0.419198,0.484503,0.438697,0.42059,0.460657,0.38896,0.154233,0.528288,0.113416,0.376086,0.573977,0.0190863,0.437587,0.704075,0.327916,0.413224,0.642038,0.531729,0.389385,0.343438,0.197093,0.302027,-0.00742714,-0.357877,-0.361386,0.132736,0.0929084,0.0247667,0.394627,0.367407,0.392352,0.383924,0.50066,0.216719,0.21194,-0.228494,-0.176417,-0.26456,-0.472622,-0.503001,-0.560345,-0.652818,-0.601263,-0.755605,-0.965617,-0.936016,-0.931196,-0.986993,-0.892179,-0.805567,-0.914795,-1.00981,-0.843338,-0.827435,-0.878191,-0.871789,-0.900793,-0.869886,-0.816421,-0.814931,-0.85056,-0.735015,-0.724124,-0.718582,-0.650473,-0.727818,-0.697909,-0.638327,-0.645792,-0.659169,-0.59745,-0.592648,-0.581452,-0.59514,-0.618774,-0.526293,-0.551517,1 +0.46765,0.448027,-0.0927097,-0.659412,-0.679326,-0.435008,-0.40018,-0.410246,-0.347497,-0.260835,-0.181471,-0.0245397,0.0242763,0.0979655,-0.0027658,-0.16898,-0.671608,-1.05661,-1.28463,-1.35072,-1.38276,-1.38892,-1.37706,-1.41874,-1.37973,-1.40144,-1.37015,-1.26793,-1.19623,-1.16928,-1.09929,-1.0341,-0.86571,-0.833054,-0.490759,0.0053734,0.316681,0.866042,0.777351,1.16496,1.4534,1.29871,1.50164,1.2849,0.982174,1.11195,1.04893,1.14669,1.13641,0.994804,1.19641,-1.55911,-1.53778,-1.20058,-0.339276,0.82298,1.69128,1.90686,1.72679,1.77226,1.65652,1.68911,1.57339,1.67891,1.7353,1.72412,1.66136,1.62436,1.48431,1.41489,1.58543,1.37586,1.18438,1.21891,1.24191,0.910469,1.0356,0.843284,0.902196,0.943511,0.775717,0.928676,0.908684,0.706131,0.750263,0.676311,0.71827,0.674889,0.712398,0.621447,0.57969,0.448575,0.555499,0.713245,0.598422,0.563199,0.47978,0.619884,0.607441,0.584348,2 +0.469035,0.639228,-0.00413121,-0.840361,-0.75563,-0.810014,-0.687774,0.592879,0.510916,0.37785,0.344053,0.236804,0.129432,0.080514,0.042939,0.0632142,-0.0942844,-0.285635,-0.155644,-0.0108609,-0.0550029,-0.0261332,0.00381326,-0.0120025,0.00771911,-0.0187446,0.0864213,-0.00273284,0.101228,0.1547,-0.0386045,-0.0517411,-0.0460517,-0.046326,-0.083266,-0.112161,0.0207347,-0.098628,0.0734779,0.0644976,0.410391,0.445962,0.642149,0.718294,0.474433,0.450487,0.623097,0.614486,0.593504,0.588037,0.740869,0.0450169,-0.0422831,-0.0445739,0.0398004,0.160865,0.315552,0.467744,0.641681,0.387753,0.290997,0.139774,-0.0335375,-0.105169,-0.2288,-0.188344,-0.273992,-0.314239,-0.345399,-0.435726,-0.4025,-0.420405,-0.424388,-0.521439,-0.539417,-0.486473,-0.509312,-0.558843,-0.398122,-0.467105,-0.487887,-0.444187,-0.448361,-0.453899,-0.41699,-0.374035,-0.450552,-0.42288,-0.34367,-0.404724,-0.410877,-0.472529,-0.478845,-0.424802,-0.443213,-0.448013,-0.41735,-0.408682,-0.507067,-0.453107,0 +0.489477,0.629344,-0.346996,1.16731,0.926445,1.98548,1.94245,-0.911779,-1.10119,-1.29098,-1.12658,-1.38895,-1.36674,-1.31175,-1.34744,-0.956633,-0.531193,-0.381033,-0.261768,0.0676301,0.0116315,0.241724,0.279391,0.284645,0.444841,0.334844,0.0996069,0.053084,0.388861,0.687235,0.743893,0.709956,1.42397,1.22408,0.771945,1.75545,2.03838,1.35812,1.77172,2.07312,1.70019,1.32751,1.24703,0.942697,1.38408,1.07181,0.632856,1.01158,1.87059,1.39273,1.50901,0.787197,0.774716,1.02599,1.60798,1.3217,2.40986,0.898067,0.731235,0.767462,0.749596,0.437036,0.0431233,1.00949,0.683671,0.316132,-0.11063,0.120943,0.542466,0.409851,-0.273205,0.272828,0.375023,-0.00479293,0.0746255,0.476601,0.19822,0.126117,0.147716,0.0303198,0.109854,0.375944,-0.177657,0.0684948,0.119479,0.0961187,0.0725148,-0.140111,0.135293,0.0253181,0.125997,0.0558845,-0.0037191,0.0590692,-0.0296298,0.127572,-0.134901,-0.155221,-0.0475124,-0.211728,1 +0.490862,1.39851,0.853333,-1.28325,-1.27789,-1.13957,-1.23225,0.197809,0.231899,0.28704,0.341881,0.394894,0.517618,0.632914,0.82099,1.03594,1.09554,1.16112,1.20655,1.30835,1.307,1.25536,1.23991,1.16259,1.03081,0.984602,0.846515,0.763819,0.627577,0.460798,0.353225,0.271527,0.16128,-0.00931121,-0.269223,-0.395074,-0.642996,-0.754237,-0.905056,-0.904878,-1.06923,-1.13554,-1.10561,-1.1157,-1.10409,-1.15963,-1.20879,-1.1402,-1.12121,-1.1775,-1.07736,0.852254,0.68424,0.282227,-0.405841,-1.0399,-1.34837,-1.41913,-1.35503,-1.35535,-1.3239,-1.26372,-1.25308,-1.21546,-1.232,-1.14504,-1.12317,-1.13515,-1.11711,-1.04501,-1.00383,-1.01131,-0.996559,-0.905593,-0.907514,-0.887601,-0.857474,-0.832086,-0.806519,-0.798078,-0.793156,-0.773207,-0.767746,-0.790175,-0.768494,-0.742569,-0.717675,-0.703521,-0.667179,-0.637456,-0.661486,-0.664343,-0.637937,-0.615824,-0.602683,-0.61002,-0.630148,-0.610857,-0.611234,-0.642256,1 +0.495713,1.07483,-0.220456,-0.192392,-0.419893,0.198524,0.0577365,-1.09067,-1.10052,-1.15785,-1.1553,-1.08348,-0.962716,-0.732926,-0.506179,-0.14553,0.242716,0.557865,0.806244,0.777578,0.76131,0.834833,0.896646,1.01682,0.927167,0.852549,0.934067,0.998006,0.876712,0.884562,0.742975,0.845123,0.825498,0.706642,0.589831,0.712554,0.161186,-0.0184714,0.222487,-0.459854,-0.239992,-0.304234,-0.443833,-0.675423,-0.772147,-0.787772,-0.679337,-0.45248,-0.834153,-0.592227,-0.50741,0.808139,0.850014,0.857947,0.657515,-0.0387381,-0.536456,-0.655466,-0.945149,-0.871849,-0.675494,-0.576915,-0.578936,-0.517899,-0.19692,-0.246919,-0.113913,0.0733531,0.143945,0.155557,0.407655,0.398987,0.453596,0.463236,0.522346,0.550953,0.432004,0.429313,0.469934,0.250453,0.281299,0.308923,0.28928,0.220213,0.101503,0.191797,0.211791,0.176358,0.0845296,0.116607,0.0664099,0.228952,0.103531,0.151905,-0.0192166,0.0279786,0.0243644,0.186356,0.0813775,0.173741,1 +0.49987,-0.175277,-0.259623,-0.416424,-0.53011,0.485461,0.300656,-0.327261,-0.249776,-0.346691,-0.445783,-0.449144,-0.53925,-0.701739,-0.652005,-0.411566,-0.527669,-0.344092,-0.0823423,0.193001,0.217137,0.0461425,0.464264,0.235136,0.186104,0.268669,0.245904,0.240336,0.219852,0.340072,0.534967,0.544415,0.614285,0.758637,0.553484,0.131473,0.417121,0.355115,0.745408,0.651991,0.582304,0.411674,0.660214,0.84565,0.923288,1.45187,1.39679,1.09326,0.827123,0.672386,0.867757,-0.0443371,0.35483,0.451862,0.552725,0.970808,0.912547,0.806125,0.958682,1.13971,0.637402,0.25761,0.226259,0.18351,0.124442,0.182709,-0.144659,-0.0714979,-0.248592,-0.267786,-0.238854,-0.408956,-0.482959,-0.171009,-0.0546153,-0.368667,-0.1808,-0.224286,-0.264982,-0.125086,-0.113246,-0.18184,-0.0168475,0.0337013,-0.0777468,-0.0236302,0.0575967,-0.0304885,-0.170975,-0.313007,-0.130916,-0.302617,-0.266698,-0.252115,-0.376492,-0.444871,-0.426422,-0.334501,-0.273122,-0.532686,1 +0.519618,0.763315,-0.392189,1.72394,1.51144,3.00823,3.12913,-0.882041,-1.08097,-1.02782,-0.789795,-0.774755,-0.62139,-0.666534,-0.355972,-0.273431,-0.186736,0.206005,0.343658,0.16301,0.441682,0.4502,0.319592,0.424518,0.528487,0.517348,0.471368,0.751596,0.58938,0.143736,0.62404,0.856117,0.65099,0.758345,0.920753,-0.490074,-0.0888554,0.33574,0.272278,0.94699,0.484981,-0.0853567,0.383472,0.216784,-0.264148,-0.127075,-0.426292,0.167508,0.0859928,-0.244707,0.12676,0.72467,0.648599,0.594929,0.654323,0.803515,-0.106815,-0.638845,-0.367227,0.127523,0.149559,-0.189041,-0.127377,0.458354,-0.16558,-0.374685,0.758293,0.337872,0.44108,0.213284,0.221098,0.487798,0.850642,0.388181,0.555334,0.39773,0.0126374,0.464178,0.122133,0.10786,0.366441,0.125623,0.201777,0.14779,0.11658,0.226236,0.061086,0.390265,-0.0599092,0.057372,0.012385,-0.077684,0.0763411,0.0016425,0.218805,-0.0697876,0.231835,0.113936,0.19354,-0.203604,1 +0.520311,0.689767,-0.13248,-0.478464,-0.562327,-0.852629,-0.68219,0.651934,1.00636,1.01226,1.09603,0.899384,0.641757,-0.0154644,-1.05285,-1.96964,-2.94,-3.36504,-3.29037,-3.25358,-3.10051,-3.18531,-2.88544,-2.85904,-2.88228,-3.10631,-3.15098,-3.27139,-3.51914,-3.5105,-3.55117,-3.52685,-3.58633,-3.33341,-2.45417,-1.91198,-1.4268,0.212877,1.25464,2.36617,3.54139,4.06245,4.20239,3.79123,3.20371,3.64132,3.40434,3.55198,3.81906,3.67469,3.79038,-3.31138,-3.3171,-3.21088,-1.81531,0.863339,2.77712,3.52362,3.37691,3.43022,3.3404,3.48203,3.53764,3.46893,3.40548,2.9681,2.57141,2.562,2.36245,2.05194,2.06888,1.93003,1.59664,1.49647,1.47439,1.36259,1.24728,1.25421,1.25889,1.26532,1.31279,1.43801,1.44672,1.49598,1.49345,1.45975,1.64026,1.44053,1.56713,1.63175,1.6495,1.58239,1.46751,1.59664,1.46815,1.54601,1.50996,1.45251,1.63957,1.56832,2 +0.522737,1.30288,-0.194545,-0.254432,-0.22659,-0.233301,-0.157261,0.767578,0.842832,1.03403,0.965925,1.08188,1.07956,0.882103,0.548415,0.599813,0.414455,0.253701,0.0295633,0.0166875,-0.0105013,-0.102089,-0.114255,-0.0325622,-0.10537,-0.129875,-0.231814,-0.381087,-0.422558,-0.199253,-0.179866,-0.52199,-0.427884,-0.78954,-0.616838,-0.652622,-1.11475,-0.355745,-1.10412,-0.384598,-0.43652,0.0816325,-0.309925,-0.0655853,0.105299,0.210213,-0.0795044,0.570265,0.159135,-0.555484,0.30276,-0.466611,-0.430046,-0.383159,-0.603518,-0.663879,-0.433961,-0.295909,0.212015,0.157612,-0.308478,-0.239224,-0.167742,-0.306321,-0.407253,-0.498581,-0.384899,-0.445214,-0.452599,-0.560227,-0.671517,-0.650339,-0.520421,-0.710482,-0.670066,-0.589831,-0.543369,-0.643563,-0.594809,-0.656135,-0.544645,-0.530393,-0.484533,-0.464664,-0.49482,-0.494173,-0.396038,-0.484867,-0.419516,-0.628301,-0.493512,-0.582763,-0.271402,-0.344142,-0.553453,-0.398337,-0.460597,-0.637644,-0.443254,-0.420623,0 +0.527933,1.24435,-0.216238,-0.118289,-0.0604172,-0.025911,-0.137716,-0.686312,-0.73768,-0.751164,-0.849294,-0.861471,-0.921989,-0.998057,-0.966943,-0.754576,-0.649171,-0.257748,0.161771,0.44416,0.690485,0.714537,0.83469,0.871098,0.891851,0.824994,0.828647,1.0345,1.01344,0.924829,0.972398,0.875143,0.925,0.813232,0.967406,1.00568,1.07538,1.09334,0.607557,0.310675,0.592378,0.47621,0.390953,0.421393,0.705794,0.805372,1.02943,1.07825,0.549418,0.659141,0.593068,0.398599,0.831902,1.21849,1.15192,0.98488,0.591707,0.37248,0.452197,0.323829,0.274562,0.0660441,-0.0647348,-0.0954924,-0.121449,-0.250089,-0.245711,-0.257903,-0.303035,-0.341443,-0.432595,-0.32923,-0.24485,-0.406198,-0.291407,-0.213171,-0.221967,-0.279899,-0.331671,-0.255186,-0.0941028,-0.0889426,-0.137516,-0.0642966,-0.164246,-0.302927,-0.238023,-0.270511,-0.206164,-0.196643,-0.350707,-0.404429,-0.352654,-0.231012,-0.308372,-0.346,-0.217509,-0.327974,-0.434719,-0.442059,1 +0.538327,-0.15467,-0.160198,0.178122,0.0904948,0.0223852,-0.0260287,1.50018,1.17397,1.24961,1.26695,1.56204,1.64208,1.86298,1.80204,1.58583,1.21512,0.602105,0.278651,0.234805,0.0642879,-0.0250965,-0.0628857,-0.0667379,-0.187672,-0.00615594,-0.0833613,0.190112,0.344291,0.164227,0.210798,0.295338,0.46636,-0.208046,0.379632,-0.284994,-0.566207,-0.346773,-0.133891,-0.557215,-0.813645,-0.552532,-1.81752,-0.866274,-1.14031,-0.758712,-1.11247,-1.58127,-0.462092,-1.483,-1.46983,-0.0231358,0.189894,0.150804,-0.479167,0.446275,-0.0525176,-1.41333,-1.55024,-1.27559,-1.52782,-1.03788,-1.29656,-1.07276,-1.34525,-1.11221,-1.00182,-1.09537,-1.06223,-1.30351,-1.14429,-1.59359,-1.3253,-1.27646,-1.09879,-1.31737,-1.35852,-1.15892,-0.965755,-1.29167,-1.06437,-1.23691,-0.796336,-1.1273,-1.02708,-0.845032,-0.880563,-0.897663,-0.846348,-0.936339,-0.828048,-1.08098,-0.619948,-0.925574,-0.61517,-0.75474,-0.705778,-0.754223,-0.660539,-0.767654,3 +0.542485,0.881365,0.491788,-1.18847,-1.18124,-1.17082,-1.14848,0.400001,0.504651,0.640546,0.737142,0.795737,0.863969,0.906275,0.886529,0.730257,0.487175,0.205015,-0.0316172,-0.0905652,-0.194009,-0.220754,-0.188273,-0.20753,-0.0947559,-0.0604239,-0.0188153,0.127267,0.240125,0.187823,0.374211,0.303368,0.315124,0.238136,0.342684,0.299358,0.356918,0.188749,0.284295,0.17634,-0.139336,-0.260866,-0.386053,-0.463667,-0.651555,-0.725802,-0.506864,-0.439258,-0.633894,-0.449919,-0.427696,0.0414225,0.231461,0.211262,0.321279,0.310967,-0.168963,-0.444675,-0.467964,-0.490775,-0.444261,-0.326613,-0.255441,-0.304605,-0.228517,-0.274605,-0.378982,-0.4597,-0.454665,-0.508698,-0.60894,-0.621997,-0.593953,-0.680241,-0.597503,-0.663021,-0.614329,-0.609174,-0.59814,-0.61124,-0.617739,-0.638315,-0.606784,-0.570884,-0.590213,-0.59486,-0.559853,-0.495198,-0.47717,-0.507397,-0.49236,-0.443689,-0.434322,-0.427727,-0.44632,-0.379937,-0.419027,-0.412477,-0.431052,-0.438397,3 +0.544217,0.941812,-0.331932,1.21384,0.724664,0.78092,0.557536,-0.695384,-0.605462,-0.566094,-0.510241,-0.146576,-0.269087,0.0420576,0.388553,0.672858,0.803399,1.09972,0.929522,0.917478,0.912788,0.686817,0.663381,0.602964,0.602155,0.737117,0.714147,0.905519,0.559868,0.344049,0.599737,0.870676,0.382736,0.292762,0.180944,0.705242,0.393693,0.267141,0.975288,-0.466226,-0.98309,-0.146522,0.00600966,-0.418711,-0.0275319,-0.302558,-0.386567,0.410643,0.313394,0.0543789,-0.293478,0.808422,0.940133,0.659547,0.269408,-0.140468,-0.187401,-0.712797,-0.903076,-0.593934,-0.519307,-0.832173,-0.571542,-0.546604,-0.834961,-0.646287,-0.774915,-0.39269,-0.574057,-0.694317,-0.660433,-0.559764,-0.262073,-0.134175,-0.556794,-0.568293,-0.444667,-0.464785,-0.423184,-0.28933,-0.298892,-0.4802,-0.367045,-0.32105,-0.345561,-0.55819,-0.482045,-0.149177,-0.422004,-0.566667,-0.302341,-0.337823,-0.385731,-0.281452,-0.365253,-0.201213,-0.325835,-0.37806,-0.287862,-0.398938,1 +0.545949,0.938408,-0.257815,0.0471496,0.20919,0.09625,0.289487,-0.696143,-0.654166,-0.640699,-0.882453,-1.08738,-1.28936,-1.38338,-1.79099,-2.2381,-2.3825,-2.27835,-2.14271,-1.96555,-1.83357,-1.77026,-1.84737,-1.84928,-1.88208,-1.87189,-1.96166,-2.0287,-1.98369,-1.65175,-1.04492,-0.601389,-0.44341,-0.765177,-0.868825,-0.85065,-0.747312,-0.517148,-0.606408,0.24053,0.70267,0.847523,1.10278,2.28944,4.52394,4.14766,2.04106,0.98826,1.09998,1.04615,0.818778,-1.57724,-1.3795,-0.886416,-0.295883,0.469123,2.31502,2.26062,1.73201,1.46589,1.28924,1.33437,1.38276,1.29575,1.39101,1.63301,1.55213,1.82795,2.02143,2.05864,2.10617,2.29558,2.1066,2.193,2.07753,2.18929,2.24157,2.47056,2.50486,2.27992,2.28848,2.23348,2.26037,2.34996,2.39425,2.19645,2.23589,2.30862,2.3858,2.23973,2.29802,2.27142,2.18278,2.31945,2.21712,2.06192,2.23259,2.28209,2.05251,2.06354,7 +0.560154,0.707554,-0.311444,0.91915,0.794186,1.02524,1.23324,-0.15478,-0.0714857,-0.274849,-0.540282,-0.973929,-1.12237,-1.34194,-2.02859,-2.44398,-2.75297,-2.42774,-2.13537,-1.91502,-1.5935,-1.62613,-1.46729,-1.68672,-1.75705,-1.99166,-2.14787,-2.0538,-2.24081,-2.25222,-2.58988,-2.42626,-2.92865,-2.62026,-2.16722,-0.874946,-0.705641,-0.965713,-0.213434,1.31012,1.3406,2.18534,1.54857,1.97985,1.81397,2.28604,2.72554,2.69624,2.48812,2.87674,2.88905,-2.05492,-2.4859,-2.29981,-1.71948,0.0822829,1.22685,1.82279,2.28286,3.15544,3.17808,3.34156,2.94522,2.46839,2.40752,2.75719,2.31302,2.35114,2.44346,2.20165,2.42936,2.5288,2.21817,2.13611,2.35673,2.15869,1.98871,2.02538,1.59071,2.05221,1.78924,1.95203,2.20629,2.16056,1.88449,1.89475,2.02274,1.96995,1.83027,1.78082,1.97168,1.97439,1.93255,1.93079,1.8177,1.74274,1.80903,1.93031,1.82268,1.91315,2 +0.56154,1.3972,-0.102953,-0.519823,-0.528414,-0.463418,-0.447647,0.597059,0.550279,0.549783,0.483561,0.48061,0.418589,0.402531,0.450178,0.423474,0.290645,0.187668,0.225941,0.121337,0.118982,0.152624,0.0807857,0.28519,0.251028,0.263024,0.151276,0.0919492,0.0844187,0.0615276,0.152485,-0.00479149,-0.11226,0.0218189,-0.0327661,0.0705264,0.055993,0.210394,0.324838,0.186515,-0.137846,0.0859214,0.162697,0.366463,0.263049,-0.0826807,-0.0932735,-0.12336,-0.337174,-0.241806,-0.29619,0.0854673,0.0912389,0.120272,0.100868,0.0226281,0.259457,-0.06582,-0.0809293,-0.0344488,-0.29931,-0.0644186,-0.152414,-0.406287,-0.32508,-0.320074,-0.561833,-0.549637,-0.498276,-0.602175,-0.610139,-0.608221,-0.713713,-0.653012,-0.722353,-0.596579,-0.738124,-0.778624,-0.716115,-0.635899,-0.736312,-0.691058,-0.728677,-0.653445,-0.691546,-0.698541,-0.60349,-0.490045,-0.546335,-0.648541,-0.558388,-0.546819,-0.556948,-0.470035,-0.462485,-0.430067,-0.469366,-0.485355,-0.488768,-0.522507,1 +0.565697,-0.166232,-0.240341,0.267735,0.405884,0.204206,-0.112586,-1.26012,-1.3326,-1.32687,-1.34558,-1.249,-1.0149,-0.822228,-0.573967,-0.0252747,0.54679,0.837719,0.970204,1.0479,1.04694,0.944092,0.880982,0.992136,1.08332,0.882659,1.13345,1.08418,0.974804,0.8884,0.734712,0.98333,0.733779,0.794462,0.68554,0.30236,-0.121945,-0.59725,-0.498275,-0.530264,-0.475519,-0.924337,-1.01464,-0.690903,-0.893543,-0.948903,-0.879039,-0.861167,-0.75963,-0.694994,-1.22104,1.2424,1.04823,0.819506,0.298469,-0.744125,-0.756627,-0.934791,-0.753985,-0.708782,-0.804905,-0.465581,-0.510599,-0.324873,-0.450596,-0.069318,-0.0138021,-0.0609374,0.171493,0.392207,0.392729,0.346966,0.519583,0.485454,0.422837,0.625744,0.450122,0.594896,0.324017,0.493952,0.422681,0.317522,0.268273,0.378673,0.554851,0.2933,0.38035,0.264524,0.294683,0.23347,0.168821,0.291621,0.214049,0.25311,0.274298,0.116659,0.108677,0.0523455,0.159295,0.128833,1 +0.585792,0.617198,-0.141518,-0.57497,-0.513153,-0.508873,-0.333168,-1.03088,-1.04578,-1.0917,-1.04136,-1.02053,-0.966814,-0.785545,-0.607605,-0.180044,0.229274,0.541633,0.899857,1.1107,1.19188,1.19342,1.29171,1.39034,1.34837,1.16334,1.24981,1.24719,1.10337,1.16182,0.991042,0.91907,0.84698,0.798142,0.745308,0.447293,0.324166,0.236201,-0.0448271,-0.262673,-0.129127,-0.538508,-0.620758,-0.929144,-0.972689,-0.879541,-0.93057,-0.832542,-1.02832,-0.997566,-0.867673,1.04995,0.985473,1.02278,0.828579,0.0360859,-0.728667,-0.929346,-0.960013,-1.02872,-0.923631,-0.794407,-0.679583,-0.694999,-0.631764,-0.460221,-0.253272,-0.0700277,0.0871018,0.186464,0.146809,0.275479,0.281548,0.218337,0.260564,0.241182,0.213274,0.19555,0.17986,0.11616,0.0251063,0.0787698,-0.00393737,0.0159651,-0.0732849,-0.0388,-0.145486,-0.0192817,-0.0684427,-0.0960512,-0.14685,-0.168341,-0.0688728,-0.158992,-0.0621602,-0.163774,-0.187209,-0.120327,-0.119614,-0.18591,1 +0.595146,0.314032,-0.140916,-0.769705,-0.787847,-0.26171,-0.402972,-1.03519,-1.01407,-0.956805,-1.04978,-0.873229,-0.855028,-0.654141,-0.308857,0.268806,0.825252,1.20663,1.26821,1.33047,1.28125,1.28375,1.38992,1.21573,1.31806,1.22599,1.21707,1.28863,1.25717,1.13453,0.993,1.13761,1.05425,0.792329,0.840438,0.417657,-0.0268616,-0.181044,-0.141841,-0.0176964,-0.718948,-0.872707,-0.820968,-0.707624,-0.845948,-0.862385,-0.672061,-0.774293,-0.906845,-1.08808,-1.05002,0.74386,0.950172,1.1141,0.633109,-0.0538976,-0.552296,-0.962615,-0.87693,-0.885066,-0.917405,-0.811791,-0.903522,-0.740844,-0.558746,-0.660001,-0.714712,-0.59125,-0.536873,-0.50485,-0.343995,-0.385083,-0.26078,-0.0195721,-0.110362,-0.16592,-0.107237,-0.104567,-0.0409343,-0.123184,-0.0816108,-0.107562,-0.0562575,-0.140741,-0.223881,-0.12671,-0.120569,-0.159121,-0.203004,-0.127238,-0.262991,-0.223445,-0.13469,-0.0843543,-0.317769,-0.276208,-0.195717,-0.280752,-0.187034,-0.155879,1 +0.60069,1.04818,0.00550998,-0.838638,-0.803108,-0.713422,-0.802253,-1.02396,-1.03038,-1.03639,-0.943067,-0.835844,-0.739527,-0.529801,-0.15189,0.187094,0.483927,0.717093,0.759972,0.696465,0.641504,0.622127,0.602234,0.661384,0.653595,0.684211,0.709923,0.642613,0.688132,0.660212,0.564861,0.601103,0.640993,0.612266,0.532889,0.318262,0.109674,0.0387639,-0.0653918,-0.618598,-0.647862,-0.804258,-0.89603,-0.849243,-0.831212,-0.942513,-0.943376,-0.876254,-0.705254,-0.774356,-0.710567,0.657889,0.644837,0.582799,0.348316,-0.227404,-0.757207,-0.822782,-0.824119,-0.68336,-0.620134,-0.496316,-0.449238,-0.355066,-0.270539,-0.181022,0.0276369,0.162657,0.335849,0.287012,0.409136,0.55371,0.550516,0.55717,0.625961,0.655584,0.506924,0.515962,0.487957,0.428287,0.46481,0.413261,0.479044,0.338103,0.343532,0.219916,0.214556,0.244027,0.24635,0.185273,0.177019,0.151579,0.149846,0.131336,0.125921,0.130612,0.118914,0.095583,0.0981214,0.135311,1 +0.617666,0.658763,0.112768,-0.895507,-0.828542,-0.753195,-0.757578,2.64248,2.35724,2.20565,2.0506,2.0231,2.1009,2.08489,1.91262,1.49738,1.27132,0.870151,0.509096,0.218989,0.0313827,-0.0599647,-0.122266,-0.146131,-0.213142,-0.363051,-0.516735,-0.517747,-0.604662,-0.746521,-0.878617,-1.01759,-1.11603,-1.35943,-1.46231,-1.62879,-1.82248,-1.53676,-1.72453,-1.5687,-1.52779,-1.18975,-1.12808,-0.952256,-1.18948,-0.845419,-0.977458,-0.997525,-1.01415,-0.870332,-0.934897,-0.528828,-0.629313,-1.03928,-1.52278,-1.94612,-1.48324,-1.32298,-1.14108,-1.19854,-0.87171,-0.922547,-1.01676,-1.25224,-1.04849,-0.973768,-1.23748,-1.35573,-1.30944,-1.34993,-1.27638,-1.49667,-1.49817,-1.35101,-1.19904,-1.33303,-1.3241,-1.18857,-1.32415,-1.1391,-1.16967,-1.19867,-1.05224,-1.08083,-1.15809,-1.05673,-1.05736,-0.961717,-0.963182,-0.997397,-0.873202,-0.853992,-0.856305,-0.801241,-0.879789,-0.681989,-0.802554,-0.825705,-0.939143,-0.74244,0 +0.629792,0.729677,-0.369894,2.69417,2.54917,2.48833,2.47297,0.269129,0.187798,0.338372,0.280555,-0.0284293,0.0151905,-0.0664419,0.108082,0.0511289,-0.116746,0.356719,0.117561,0.156457,0.672211,0.632534,0.491198,0.431453,0.401592,0.954177,0.193818,0.456164,0.893933,0.506589,-0.181059,0.46079,0.0401174,0.67535,-0.219566,-0.63971,0.9158,-0.479385,0.13499,0.170327,-0.648118,-0.00720085,0.140976,-0.0673317,-0.383772,-0.154078,0.0358686,-0.181777,0.574589,0.318605,-0.569575,0.209298,-0.2218,0.45451,0.0548029,-0.598499,-0.0998924,0.693417,-0.123069,-0.00542433,-0.323463,-0.68039,-0.463387,-0.149222,-0.264323,-0.39104,-0.379931,-0.602102,-0.518129,-0.0565066,-0.462586,-0.216781,-0.21831,-0.78231,-0.673383,-0.466768,-0.553109,-0.174497,-0.566275,-0.621341,-0.646245,-0.407281,-0.653213,-0.561724,-0.756416,-0.405657,-0.720338,-0.362318,-0.564564,-0.610776,-0.0775468,-0.316499,-0.510455,-0.59053,-0.248517,-0.608754,-0.564834,-0.662752,-0.437179,-0.652405,1 +0.630485,0.0491429,0.654483,-1.20915,-1.18463,-1.18502,-1.11218,-0.800096,-0.84045,-0.906872,-0.946451,-0.901486,-0.815155,-0.696161,-0.374572,0.0158029,0.425016,0.75261,1.0341,1.06539,1.1148,1.05035,0.973661,1.03603,0.93302,1.00329,1.01349,0.935588,0.898193,0.879081,0.736725,0.651421,0.799343,0.742403,0.587059,0.494253,0.272238,0.0382436,-0.223834,-0.35072,-0.519931,-0.603345,-0.584974,-0.714369,-0.71143,-0.667426,-0.675878,-0.695558,-0.694251,-0.653608,-0.576833,0.850136,0.829862,0.568285,0.384191,-0.0610594,-0.59337,-0.613426,-0.537625,-0.533012,-0.458533,-0.438219,-0.414594,-0.44346,-0.386932,-0.305624,-0.236513,-0.260573,-0.140027,-0.0858809,-0.0245511,0.0224542,-0.0328859,0.0277349,0.0362997,0.0713606,-0.0382915,0.0197657,-0.00196392,-0.0542898,0.00189253,-0.0464747,-0.0798004,-0.0659166,-0.0397305,-0.0476901,-0.0707761,-0.0586568,-0.065139,-0.0855916,-0.105999,-0.100877,-0.115622,-0.143201,-0.150397,-0.105634,-0.14398,-0.175797,-0.151466,-0.136327,1 +0.634296,0.80763,-0.207801,-0.290621,-0.296111,-0.0543205,0.0270226,-0.754683,-0.803336,-0.788402,-0.9283,-0.983475,-1.01732,-0.963133,-0.826563,-0.572116,-0.295516,0.138991,0.477912,0.624998,0.755264,0.915112,0.883588,0.992379,1.03616,0.985173,0.975145,0.931746,0.94065,0.914316,0.865765,1.01254,1.17325,1.35354,1.09981,1.51371,1.65057,1.4463,1.28904,1.36108,1.0205,0.850373,0.48407,0.41536,0.613056,0.187162,0.246582,0.0797065,0.242003,0.250406,0.228223,0.533169,0.910627,1.06703,1.21097,1.57085,1.03221,0.453414,0.57454,0.402112,0.149562,-0.0718957,-0.0326319,-0.148452,-0.384898,-0.363393,-0.50761,-0.377823,-0.331908,-0.421577,-0.409275,-0.332003,-0.353935,-0.488502,-0.298081,-0.19876,-0.400382,-0.541233,-0.395437,-0.407258,-0.447865,-0.411423,-0.522433,-0.357976,-0.400563,-0.429758,-0.381101,-0.425408,-0.464913,-0.44701,-0.453952,-0.370521,-0.322189,-0.239281,-0.41791,-0.531379,-0.347464,-0.389637,-0.403554,-0.390137,1 +0.642958,0.429774,-0.299995,0.864004,0.751795,0.772397,0.652469,-0.956401,-1.02824,-1.05942,-0.961944,-0.893629,-0.854415,-0.638015,-0.289164,0.095029,0.52261,0.492216,0.633016,0.501707,0.514238,0.700074,0.443839,0.527137,0.579501,0.647402,0.714998,0.540014,0.595688,0.337072,0.646012,0.619489,0.397786,0.448886,0.522589,0.635236,0.351605,-0.331817,-0.279075,-0.35181,-0.478609,-0.454204,-0.293316,-0.348747,-0.708708,-0.710816,-0.354643,-0.463246,-0.826625,-0.457945,-0.56669,0.932216,0.821514,0.689931,0.398091,-0.520925,-0.650618,-0.868113,-0.631949,-0.3953,-0.228388,-0.338818,-0.303941,-0.425132,-0.120029,0.0276137,0.2755,0.147186,0.150749,0.261026,0.393168,0.532862,0.597069,0.575401,0.746167,0.635445,0.241396,0.244347,0.506481,0.486722,0.484162,0.49009,0.37804,0.290533,0.248694,0.45726,0.194159,0.209279,0.274739,0.122405,0.291282,0.19898,0.117976,0.256945,0.137436,0.199067,0.0524128,0.0595743,0.0634257,0.208478,1 +0.645729,-0.170428,-0.400324,3.8419,3.70221,3.59915,3.9612,-2.36266,-2.27351,-2.24602,-2.699,-2.69588,-2.99629,-3.16347,-3.53582,-3.99366,-3.62697,-3.33723,-3.18858,-2.86757,-2.65404,-2.37995,-2.49704,-2.58396,-2.26375,-2.04934,-2.1434,-2.11044,-1.86967,-1.68935,-1.65584,-1.62437,-1.20957,-1.01622,-0.364896,-0.186874,-0.118781,1.72882,0.631111,0.259474,0.948441,2.15138,1.22412,0.628941,1.34406,1.75462,1.24323,1.18317,1.85936,1.71229,1.83975,-2.67514,-2.24914,-1.56518,-0.194489,0.437512,1.69826,2.5591,1.58496,2.51189,2.42225,2.82645,3.19621,4.12553,3.80255,4.38488,3.87801,4.05782,3.54666,4.37871,4.25814,4.01174,4.38022,4.80849,3.85381,3.52855,4.03066,4.0038,3.80713,4.03718,3.92681,4.09317,4.78328,4.35619,3.94562,4.47598,4.71674,4.44425,4.22286,4.51307,4.29983,4.11365,4.1478,4.34455,4.10789,4.39297,3.90176,3.98319,4.06085,4.48758,4 +0.647462,0.750028,0.0723958,-0.799001,-0.881107,-0.64808,-0.654268,-0.0909125,-0.0150605,-0.0620297,-0.170949,-0.183579,-0.206391,-0.262816,-0.185157,-0.0379172,0.0992916,0.228246,0.505021,0.650811,0.705672,0.775769,0.716768,0.738241,0.696245,0.718654,0.592493,0.432422,0.467967,0.415778,0.45614,0.2937,0.0592116,0.0422972,0.110338,0.147576,-0.106724,-0.130353,-0.0704549,-0.127423,-0.0222896,-0.155083,-0.170791,0.0365139,0.0473123,-0.0084327,0.0342989,0.266151,0.0915693,-0.0332018,0.115633,0.386365,0.619226,0.111629,0.0337848,-0.199369,-0.326669,-0.100412,-0.146468,-0.372829,-0.235892,-0.377411,-0.363919,-0.457132,-0.370694,-0.409286,-0.489331,-0.343631,-0.450964,-0.244388,-0.257196,-0.393023,-0.414773,-0.262089,-0.352343,-0.263931,-0.318494,-0.393367,-0.264871,-0.346939,-0.34401,-0.372636,-0.392051,-0.359707,-0.309106,-0.408049,-0.469018,-0.468624,-0.378814,-0.37327,-0.397781,-0.520402,-0.449969,-0.413775,-0.373626,-0.444083,-0.486997,-0.490049,-0.424073,-0.457515,1 +0.651273,-1.15338,0.847307,-1.2867,-1.26602,-1.23616,-1.24062,0.412315,0.540631,0.585821,0.581208,0.540843,0.48458,0.368084,0.285722,0.180518,-0.00928028,-0.107055,-0.162665,-0.122557,-0.182061,-0.232959,-0.20707,-0.242644,-0.26428,-0.293828,-0.274473,-0.287523,-0.212038,-0.185792,-0.250884,-0.214574,-0.264326,-0.309002,-0.268623,-0.238027,-0.247934,-0.00757068,0.10924,0.456938,0.49719,0.561512,0.645427,0.703908,0.66834,0.801395,0.915212,1.04098,0.931734,0.906314,0.842536,-0.240652,-0.28618,-0.278331,-0.152557,0.287362,0.572107,0.630292,0.741534,0.720649,0.446519,0.265285,0.0806606,0.0845022,0.018629,-0.0718395,-0.157001,-0.242452,-0.306643,-0.347956,-0.384495,-0.454965,-0.485849,-0.511908,-0.50063,-0.498062,-0.511604,-0.501613,-0.495501,-0.487064,-0.492263,-0.449933,-0.458578,-0.449487,-0.422157,-0.413164,-0.450812,-0.464408,-0.422478,-0.473908,-0.47872,-0.490327,-0.505447,-0.481874,-0.485732,-0.513126,-0.524168,-0.469637,-0.483553,-0.553672,0 +0.662013,-0.453943,-0.0860814,-0.740408,-0.767499,-0.781605,-0.684982,0.552849,0.512551,0.533781,0.57588,0.541046,0.694679,0.643653,0.646057,0.592936,0.527422,0.539761,0.527884,0.390211,0.275627,0.4328,0.379721,0.413322,0.32074,0.335682,0.219793,0.126451,0.056946,0.124775,-0.0886846,-0.131074,-0.029578,-0.118881,-0.388705,-0.283758,-0.381363,-0.418529,-0.370473,-0.199236,-0.158351,-0.470625,-0.402659,-0.324706,-0.311586,-0.409287,-0.292156,-0.336496,-0.446228,-0.256952,-0.105768,0.235976,0.00348657,-0.155396,-0.393867,-0.371412,-0.389379,-0.280302,-0.342967,-0.33593,-0.226755,-0.225123,-0.472733,-0.347417,-0.358286,-0.430507,-0.720795,-0.460386,-0.57193,-0.650562,-0.759151,-0.728977,-0.599005,-0.81605,-0.733658,-0.655439,-0.736287,-0.714328,-0.655111,-0.686398,-0.777369,-0.584088,-0.668008,-0.701207,-0.617458,-0.710776,-0.657431,-0.573096,-0.550269,-0.592019,-0.572116,-0.655641,-0.617231,-0.501746,-0.513261,-0.69053,-0.497929,-0.564543,-0.551998,-0.520243,1 +0.666863,0.990183,-0.185506,0.247055,0.210885,-0.108299,-0.0288209,-0.719356,-0.687973,-0.62479,-0.723492,-0.75266,-0.65576,-0.430809,-0.305877,0.0187923,0.547785,0.721255,1.10082,1.10234,1.17765,1.16028,1.17433,1.13325,1.33164,1.32254,0.857159,1.00303,1.01796,0.758931,0.914802,0.916317,0.699526,0.678308,0.35061,0.190812,0.0156493,-0.193213,-0.568339,-0.495278,-0.0968964,-0.413149,-0.669762,-0.639345,-0.983093,-0.899255,-0.409264,-0.49527,-0.781079,-0.708007,-0.838121,1.00452,0.963959,0.790683,0.102602,-0.537348,-0.791272,-0.503763,-0.759509,-0.914309,-0.509428,-0.387264,-0.43816,-0.807261,-0.744077,-0.597847,-0.573223,-0.417346,-0.437264,-0.327122,-0.376122,-0.365694,-0.11795,-0.246658,-0.126457,-0.287801,-0.297742,-0.181479,-0.339081,-0.155602,-0.288484,-0.29177,-0.168115,-0.264387,-0.330518,-0.333849,-0.222778,-0.23046,-0.220234,-0.156485,-0.0967267,-0.112023,-0.242685,-0.293818,-0.242534,-0.152668,-0.435272,-0.369976,-0.29932,-0.0494328,1 +0.667556,0.74751,-0.206596,-0.483633,-0.535196,-0.204891,-0.252195,0.91278,0.832427,0.942476,1.10234,1.16656,1.29888,1.07742,0.752429,0.80663,0.190915,0.160516,0.0996052,-0.267721,-0.157271,-0.451126,-0.416688,-0.144661,-0.123938,-0.00386467,0.405976,0.503337,0.697096,0.867051,1.12274,0.953105,0.828335,1.34381,1.10415,1.03447,1.2229,0.505327,0.369823,0.172587,0.0154759,-0.29855,-0.75885,-0.722121,-0.732116,-1.07805,-1.15007,-0.839571,-1.05535,-0.811745,-0.619169,0.0671391,0.524891,0.909393,1.52631,1.20425,-0.115395,-0.772334,-0.910229,-1.17001,-0.984172,-0.99651,-0.831705,-0.949526,-0.950865,-1.05843,-0.919797,-1.04816,-1.05081,-1.04714,-1.06646,-1.06398,-1.33052,-1.22143,-1.03843,-1.13628,-1.26123,-0.840378,-0.970351,-1.08907,-0.993436,-0.90251,-0.768261,-1.1365,-0.80713,-0.722972,-0.945891,-0.795484,-0.685425,-0.834191,-0.88261,-0.636721,-0.687947,-0.653785,-0.666355,-0.648622,-0.751183,-0.621212,-0.602165,-0.783704,3 +0.673446,0.942907,-0.284931,0.48832,0.448275,-0.119662,0.233643,-0.928064,-1.00635,-0.876847,-0.724405,-0.738303,-0.760467,-0.839308,-0.748613,-1.05495,-1.07736,-1.02325,-0.903995,-0.951807,-0.988775,-0.821616,-0.73478,-0.811575,-0.843002,-0.774781,-0.773484,-0.774655,-0.636838,-0.725921,-0.934795,-0.724989,-0.445494,-0.583259,-0.308277,0.0248366,0.92925,0.839521,1.53414,1.71486,2.23521,1.52383,1.83733,1.98467,1.47858,1.79181,1.5976,1.66666,1.73614,2.09611,1.62382,-0.56513,-0.722536,-0.470336,0.073663,0.936097,1.87642,1.82856,1.62795,1.52993,1.70002,1.87859,1.70462,1.8415,1.90572,1.95353,1.72255,1.69427,1.62464,1.34251,1.30057,1.29246,1.13387,0.897468,0.961386,0.926599,0.82441,0.748296,0.580746,0.714844,0.702158,0.658176,0.621811,0.663299,0.615402,0.676122,0.633111,0.622695,0.673515,0.612097,0.560704,0.616743,0.613236,0.497783,0.701501,0.55678,0.517997,0.606487,0.545922,0.42824,1 +0.674486,0.182485,0.359221,-1.07646,-1.06593,-1.0515,-1.01446,-0.378985,-0.526251,-0.578162,-0.524007,-0.362766,-0.189091,0.0756415,0.488129,0.839035,1.08766,1.19273,1.26999,1.32616,1.18999,1.19935,1.07462,1.03339,0.947594,0.852749,0.7585,0.636797,0.584697,0.547569,0.42578,0.296419,0.17809,0.038463,-0.0811148,-0.365989,-0.65482,-0.725822,-0.872152,-1.14367,-0.985409,-0.837128,-0.920872,-0.822731,-0.824471,-0.833081,-0.704198,-0.744222,-0.609565,-0.719613,-0.832146,0.762366,0.456861,0.155132,-0.354132,-0.883688,-0.967394,-0.850404,-0.861832,-0.692898,-0.626374,-0.560264,-0.633021,-0.573134,-0.520465,-0.49395,-0.575989,-0.595062,-0.512978,-0.482183,-0.460824,-0.462476,-0.385446,-0.439213,-0.395751,-0.383714,-0.396502,-0.339744,-0.248776,-0.301194,-0.337035,-0.309522,-0.259464,-0.28081,-0.284786,-0.292971,-0.294965,-0.271082,-0.291294,-0.247098,-0.232633,-0.255939,-0.213356,-0.256418,-0.265666,-0.240431,-0.285921,-0.260847,-0.296865,-0.267918,1 +0.689037,-1.15777,0.594225,-1.19537,-1.20158,-1.0515,-1.15127,2.41808,2.12396,1.92894,1.8588,1.89954,1.88249,1.80727,1.73789,1.43697,1.06946,0.820947,0.484548,0.310276,0.125764,0.0268254,-0.0298518,-0.0809394,-0.115469,-0.164102,-0.368792,-0.528464,-0.58138,-0.673723,-0.706498,-0.925895,-1.06066,-1.13833,-1.36934,-1.54975,-1.44702,-1.55029,-1.46215,-1.55935,-1.17351,-1.10797,-0.964358,-1.0092,-0.956319,-0.741229,-0.773149,-0.734473,-0.547194,-0.675928,-0.711972,-0.460263,-0.629103,-0.941737,-1.28014,-1.55332,-1.49739,-1.18045,-0.930338,-0.987712,-0.931242,-0.983168,-0.960289,-0.946106,-1.03235,-1.01964,-1.04589,-1.19458,-1.20592,-1.23982,-1.34394,-1.33994,-1.30498,-1.27825,-1.34126,-1.27828,-1.29785,-1.23751,-1.17986,-1.16937,-1.16859,-1.09361,-1.12688,-1.05353,-1.01541,-0.949938,-1.01092,-0.97407,-0.971461,-0.919132,-0.862489,-0.88791,-0.882485,-0.849652,-0.870619,-0.778681,-0.785565,-0.844977,-0.781141,-0.77809,0 +0.694927,1.44208,-0.266854,-0.0855462,-0.0129392,0.141705,0.161047,1.28442,1.20113,1.08912,0.91275,1.29632,1.29638,0.911712,0.873291,0.98551,0.734189,0.18128,0.437347,0.385786,0.139877,0.432184,0.261874,0.00412477,0.1926,-0.0302925,-0.163387,-0.0702763,-0.490895,-0.640315,-0.25948,-0.268671,-1.02719,-0.610363,-0.766216,-0.769521,-0.898831,-0.770261,-0.632346,-0.569289,-1.70578,-0.276505,-0.513164,-0.573394,-0.125335,-0.384009,-0.215186,-0.50655,-0.440583,-0.36411,-0.410929,-0.150678,-0.0523441,-0.4977,-1.2033,-1.24671,-0.516048,-0.563512,-0.616703,-0.173324,-0.690647,-0.68174,-0.655706,-0.802341,-0.649583,-0.663462,-0.82662,-0.6678,-1.02014,-0.907819,-0.655067,-0.825902,-0.947343,-0.959605,-0.827942,-0.697933,-0.699355,-0.886514,-0.713949,-0.524908,-0.865283,-0.76197,-0.697968,-0.792413,-0.662004,-0.83687,-0.635931,-0.681311,-0.759584,-0.52814,-0.602977,-0.614461,-0.473556,-0.566793,-0.618463,-0.525906,-0.663348,-0.592765,-0.454462,-0.659551,1 +0.69562,1.08355,-0.194545,-0.0390165,-0.16046,-0.1708,-0.0204444,-0.91275,-0.970748,-1.00189,-1.03189,-0.930276,-0.943533,-0.752439,-0.413,-0.051428,0.536431,0.766505,1.04264,1.06425,1.07551,0.991411,0.89733,0.945784,1.07794,1.07448,1.07557,0.874219,1.03977,0.70548,0.822381,0.676167,0.69559,0.4916,0.263227,0.190375,-0.0200128,-0.249705,-0.622235,-0.987592,-0.629337,-0.658238,-0.921902,-1.12987,-0.858054,-0.920501,-1.15185,-0.926653,-0.751765,-1.04961,-0.857402,0.755303,0.732873,0.589312,0.0451756,-0.517899,-0.957997,-0.921628,-0.954293,-1.12165,-0.539005,-0.473502,-0.545561,-0.5631,-0.410632,-0.433246,-0.323325,-0.00100857,0.0258798,0.0924591,0.238395,0.352791,0.362393,0.409547,0.359427,0.421467,0.41678,0.399483,0.23784,0.383816,0.132714,0.292887,0.270986,0.208718,0.207352,0.165037,0.0227055,0.218511,0.179795,0.269684,0.124064,0.0698012,0.0406123,0.0843041,0.114817,0.159774,0.148464,-0.0607166,0.0420547,0.0871756,1 +0.699777,1.18043,0.552045,-1.10231,-1.07441,-1.15945,-1.13731,-0.132509,-0.0495803,0.0667744,0.177341,0.278483,0.382941,0.315544,0.339221,0.188354,0.0949906,-0.167893,-0.232006,-0.280154,-0.348473,-0.313493,-0.306948,-0.335268,-0.302364,-0.203596,-0.172116,0.00733068,-0.0615943,0.00295704,0.171297,0.289026,0.262154,0.411374,0.485789,0.835117,1.00492,1.08943,1.05677,1.15655,1.02724,0.693452,0.763981,0.528434,0.453596,0.339705,0.322534,0.372967,0.306653,0.411104,0.435285,-0.0165274,0.213287,0.47854,0.672232,1.17258,0.805631,0.535741,0.230936,0.166713,0.0971914,0.300965,0.581722,0.209348,0.219447,0.141268,0.104087,-0.0077927,-0.146611,-0.197382,-0.238733,-0.26237,-0.342106,-0.361483,-0.395358,-0.409487,-0.416299,-0.390537,-0.417742,-0.410259,-0.43022,-0.431271,-0.431156,-0.422859,-0.366122,-0.40812,-0.364347,-0.369617,-0.316304,-0.327095,-0.348767,-0.285806,-0.285243,-0.318063,-0.286587,-0.260349,-0.258278,-0.235962,-0.279354,-0.296854,3 +0.700816,-0.419652,0.0729984,-0.852424,-0.908237,-0.744672,-0.81063,2.10847,2.07643,1.98467,1.83368,1.78375,1.85683,1.73151,1.55287,1.53669,1.21659,0.593782,0.372239,0.219527,0.0257471,-0.0961425,-0.0484751,-0.177313,-0.182878,-0.338488,-0.389497,-0.526269,-0.673183,-0.6307,-0.856032,-1.0524,-1.2662,-1.22022,-1.51761,-1.42709,-1.69305,-1.69192,-1.58705,-1.47741,-1.03318,-1.02726,-1.04264,-0.824541,-0.75446,-0.881039,-0.587899,-0.70136,-0.545702,-0.499914,-0.61493,-0.232823,-0.602516,-1.06322,-1.49682,-2.02465,-1.15965,-1.06706,-1.00449,-0.861648,-0.949937,-0.799924,-0.765062,-0.849949,-0.983382,-0.936457,-1.02346,-1.04145,-1.20537,-1.10737,-1.0918,-1.13165,-1.11986,-1.14067,-1.29928,-1.15755,-1.23804,-1.17468,-1.01926,-1.0923,-0.913478,-1.00652,-0.986353,-1.05764,-0.868566,-0.917447,-0.870021,-0.820293,-0.866242,-0.863088,-0.800726,-0.796927,-0.692993,-0.65149,-0.581863,-0.6462,-0.712241,-0.602016,-0.608769,-0.679644,0 +0.709478,0.933536,-0.321688,1.16214,1.26049,0.834898,0.750196,-1.15753,-1.02325,-1.26191,-1.37265,-1.32444,-1.44563,-1.31343,-1.22872,-0.913623,-0.510756,-0.131287,0.284674,0.442617,0.584406,0.671879,0.504439,0.540872,0.572144,0.737686,0.734254,0.656721,0.839023,0.821743,0.881301,0.746323,0.847431,1.23818,0.950894,1.44668,0.521323,0.997719,1.39019,1.0654,1.19163,0.832429,0.664664,0.663933,0.407598,0.89469,0.0263016,1.08682,0.989145,0.813274,0.722099,0.472162,0.663717,1.17206,1.268,1.37033,0.602116,0.436415,0.728434,0.840034,0.305303,-0.00895965,-0.0244458,0.0589941,-0.0242116,0.200704,-0.210941,0.25922,0.0530309,0.135581,-0.0302987,0.197547,0.404412,-0.00382941,0.0757245,0.551572,0.301488,0.0766557,0.318233,0.282469,0.224008,0.17051,0.188226,0.20993,0.193516,0.114149,0.241403,0.292189,0.060954,-0.0522838,0.0943635,-0.108194,-0.138521,-0.0998445,0.146117,0.126564,0.135171,0.250964,-0.0676223,-0.210638,1 +0.71225,0.936497,-0.0547475,-0.686985,-0.669152,-0.639557,-0.684982,-1.3654,-1.43903,-1.51842,-1.6031,-1.68412,-1.77896,-1.86423,-1.68918,-1.32308,-0.686667,-0.117997,0.279889,0.614771,0.79774,0.983281,1.00774,1.07203,1.0995,1.21381,1.10006,1.12114,1.14346,1.09843,1.1616,1.31701,1.35307,1.24435,1.17248,1.57038,1.6189,1.34899,1.12919,0.803898,0.989404,0.877998,0.531643,0.145625,0.380186,0.304501,0.177028,0.207394,0.148942,0.104256,-0.0158085,1.13532,1.2721,1.26304,1.47402,1.21457,0.699831,0.411702,0.254783,0.337903,0.17079,0.0722594,0.0306064,0.136516,0.00128888,0.142937,0.220955,0.240901,0.335624,0.404893,0.521014,0.544557,0.513712,0.477783,0.521426,0.473121,0.343684,0.425774,0.362418,0.364842,0.164704,0.262321,0.222822,0.170564,0.17181,0.105531,0.0664039,0.00155529,0.143021,0.0361879,-0.0604426,0.0198522,-0.0383153,-0.0319841,-0.00143621,-0.0768476,-0.154952,-0.052819,-0.0458382,-0.0958733,1 +0.717446,1.01072,-0.328919,0.664099,0.811142,0.741147,0.909349,-0.225342,-0.0953838,0.117269,0.0227978,-0.166127,-0.171235,-0.251271,-0.599946,-0.823991,-1.05761,-0.945336,-1.33713,-1.14438,-1.0471,-1.31665,-1.36599,-1.20929,-1.52128,-1.39934,-1.69755,-1.6675,-1.38442,-1.20711,-1.03711,-0.505466,-0.138134,-0.195641,-0.76564,-1.64945,-1.39597,-2.16004,-2.53306,-1.13023,-1.33626,-0.883959,-0.582822,-0.406308,-0.155895,0.0904756,-0.461656,-0.721826,-0.50577,-0.956029,-0.635963,-1.29823,-1.53782,-1.25452,-0.711943,-1.33277,0.229845,-0.128898,-0.25732,-0.473332,0.116586,-0.0258825,-0.197359,0.00680363,0.19243,0.502473,0.895236,0.777175,1.42274,1.78066,2.05033,2.21535,2.33983,2.31999,2.06464,2.38678,2.37711,2.02506,2.12015,2.13528,2.09649,1.84997,2.38189,1.98646,1.78351,2.01026,1.81101,1.73407,1.72881,1.94305,1.85884,1.74659,1.94135,1.76764,1.67277,1.71541,1.58417,1.95347,1.46478,1.69083,7 +0.719525,1.14266,-0.372304,2.26851,2.25922,2.48833,3.05932,-1.86077,-1.91126,-2.0764,-2.20031,-2.49553,-2.67144,-2.86079,-3.03066,-3.29138,-3.20649,-2.95466,-2.55288,-2.1543,-2.10567,-2.20996,-2.16553,-2.27931,-2.12578,-2.3059,-2.33131,-2.22689,-2.18502,-2.34028,-2.0161,-2.2738,-2.41556,-2.51836,-2.10878,-2.19937,-1.55449,-1.9732,-0.734633,0.0409201,-0.317007,0.10367,0.902998,0.862784,1.08886,1.53139,1.34766,1.95353,2.28162,1.86412,1.83741,-2.30853,-2.47117,-2.12951,-2.45874,-1.61637,0.355225,0.883573,1.7818,2.24313,4.04537,3.57208,3.46391,3.92505,4.11093,3.89878,3.80192,4.33349,4.43815,4.18386,4.46965,4.45281,4.30753,4.24106,4.52937,4.19691,4.26177,4.5891,4.0438,3.89669,4.17121,4.47921,4.27871,4.29725,4.21064,3.87787,4.2165,4.29341,3.88789,3.8296,3.98283,3.81338,3.94549,3.73878,3.72975,3.70118,3.72167,3.60477,3.74696,3.79987,4 +0.725415,-0.408416,0.937693,-1.2126,-1.2711,-1.16229,-1.24062,0.996995,0.993452,0.96213,0.90959,0.917805,0.938043,0.807435,0.716145,0.613741,0.413555,0.21616,0.124198,0.0429937,-0.0634027,-0.151212,-0.183265,-0.18639,-0.189573,-0.263078,-0.309463,-0.312249,-0.414441,-0.402578,-0.391387,-0.444594,-0.494356,-0.672014,-0.714612,-0.545747,-0.690258,-0.702487,-0.477822,-0.0921964,-0.0636875,0.0187278,0.0668424,0.186437,0.260115,0.307379,0.44114,0.520744,0.423049,0.272287,0.275179,-0.295782,-0.249398,-0.494358,-0.607206,-0.538372,-0.24377,0.0196025,0.176167,0.190522,0.0364476,-0.155506,-0.262352,-0.271881,-0.264458,-0.447655,-0.461471,-0.592003,-0.616661,-0.644073,-0.672331,-0.727055,-0.755045,-0.662602,-0.75109,-0.719005,-0.683125,-0.694946,-0.701213,-0.653435,-0.610422,-0.612382,-0.611696,-0.625634,-0.580646,-0.521704,-0.515724,-0.552398,-0.57023,-0.57091,-0.546004,-0.567962,-0.571674,-0.555942,-0.572286,-0.558525,-0.550676,-0.53704,-0.561171,-0.542881,0 +0.72784,-0.765432,0.0874601,-0.993737,-0.998106,-0.687853,-0.816214,-0.799849,-0.754115,-0.811183,-0.920242,-0.916404,-0.917234,-0.797533,-0.688171,-0.36266,0.0995023,0.499752,0.744606,0.973931,1.03942,1.09875,1.00324,0.994872,0.89841,0.962201,0.890345,0.88423,0.934601,0.752506,0.71887,0.537906,0.431208,0.470871,0.28089,0.246752,-0.151832,-0.237059,-0.0360975,-0.764008,-0.57707,-0.556123,-0.522852,-0.671861,-0.897147,-0.599192,-0.3853,-0.671597,-0.631912,-0.266427,-0.364947,0.916658,0.720975,0.549009,0.27861,-0.172498,-0.643003,-0.902424,-0.66284,-0.654398,-0.673475,-0.577181,-0.438976,-0.586946,-0.4248,-0.522428,-0.405473,-0.307293,-0.174324,-0.0860138,0.0444127,0.138821,0.214069,0.285085,0.246209,0.347155,0.354658,0.276996,0.207761,0.188997,0.253346,0.249431,0.18891,0.162663,0.189658,0.113973,0.190343,0.155149,0.129121,0.117753,0.0861478,0.108721,0.0577826,0.0186918,0.0691763,0.0440398,0.031017,-0.000196649,-0.0204766,0.0123719,1 +0.73373,0.367345,-0.162608,-0.149309,-0.316459,-0.568533,-0.497906,-1.00513,-1.08005,-1.10589,-1.13521,-1.12735,-1.07845,-0.884596,-0.569963,-0.0684143,0.484962,0.99334,1.14253,1.23357,1.28969,1.3043,1.34129,1.33596,1.22449,1.36575,1.25906,1.13261,0.962366,1.10121,0.798789,0.761847,0.686746,0.682934,0.567128,0.0987863,-0.174603,-0.694451,-1.02612,-0.939616,-0.752982,-1.175,-1.14131,-1.27729,-1.24971,-0.97757,-1.07,-1.05028,-1.02116,-0.907733,-0.849986,1.14138,1.05874,0.736551,-0.0513076,-0.78896,-1.22271,-1.36976,-1.11289,-0.942358,-0.945971,-0.70914,-0.683142,-0.675972,-0.639788,-0.438377,-0.224195,-0.15789,0.124178,0.144527,0.194236,0.347125,0.388712,0.473248,0.431763,0.330116,0.343363,0.334849,0.344951,0.296657,0.308632,0.297464,0.13361,0.153263,0.0991023,0.1322,0.0378205,0.0725268,0.116322,0.128847,0.0613124,0.101792,0.0191757,0.0283624,-0.0104065,-0.0362994,0.042856,-0.0802741,-0.0226809,0.0249794,1 +0.745163,0.958829,0.0247924,-0.838638,-0.814977,-0.91513,-0.791084,0.367852,0.410704,0.558456,0.665624,0.706738,0.667511,0.617164,0.527398,0.297238,0.0908303,-0.0160477,-0.170265,-0.31943,-0.32424,-0.355115,-0.386077,-0.273277,-0.184654,-0.00448023,0.119401,0.237935,0.329913,0.471415,0.525679,0.735402,0.686352,0.665084,0.667124,0.916241,0.968686,0.954515,0.620102,0.467755,0.277806,0.0792832,-0.291349,-0.332931,-0.318551,-0.542906,-0.465026,-0.425309,-0.516867,-0.343847,-0.469509,0.169382,0.208644,0.700268,0.900292,0.750073,0.278098,-0.163384,-0.107794,-0.186758,-0.240538,-0.262994,-0.157225,-0.0858151,-0.204637,-0.229633,-0.373871,-0.391171,-0.482987,-0.505481,-0.558541,-0.505303,-0.594299,-0.598611,-0.66065,-0.678868,-0.699625,-0.66633,-0.633189,-0.585305,-0.645658,-0.599425,-0.623638,-0.598826,-0.601596,-0.532888,-0.538415,-0.498994,-0.509141,-0.492158,-0.494375,-0.40031,-0.459406,-0.508863,-0.437168,-0.434589,-0.455672,-0.39769,-0.42577,-0.448694,3 +0.746895,-1.1711,0.437556,-1.26257,-1.25076,-1.08559,-1.05634,-0.034817,-0.063931,-0.0670442,-0.127772,-0.177144,-0.255841,-0.249188,-0.276062,-0.221617,-0.148518,0.0409051,0.200731,0.249441,0.3362,0.315639,0.390373,0.294676,0.327634,0.224387,0.277424,0.228277,0.350387,0.405737,0.403601,0.494915,0.519179,0.589066,0.703154,0.805749,0.94194,0.8089,0.956886,1.19505,0.963785,1.0217,1.26884,1.1599,1.17437,1.32003,1.54358,1.65125,1.39408,1.25813,1.05501,0.145516,0.442825,0.710339,1.09766,1.3425,1.1295,0.952378,0.758563,0.679216,0.527701,0.214369,0.0569455,-0.0773119,-0.177701,-0.315306,-0.472786,-0.574105,-0.624544,-0.747482,-0.799856,-0.79736,-0.838018,-0.850099,-0.879948,-0.834234,-0.802667,-0.797705,-0.810689,-0.76264,-0.748232,-0.755232,-0.736934,-0.676715,-0.685632,-0.692455,-0.694385,-0.673073,-0.657689,-0.702408,-0.670952,-0.682877,-0.713915,-0.682467,-0.653715,-0.666505,-0.671633,-0.643612,-0.660311,-0.71404,1 +0.757982,-0.0351283,-0.284328,0.428004,0.536448,0.695691,0.579873,0.390497,0.314907,0.26628,0.0706866,0.299688,0.0928171,0.0859173,0.0378324,0.0646081,0.0492448,0.230229,0.227859,0.236968,0.256925,0.46392,0.237782,0.414795,0.271793,0.220228,0.310794,0.177488,-0.0185738,-0.187705,-0.271292,-0.382682,-0.486646,-0.000265899,-0.0961934,-0.516042,-0.19145,-0.300641,-0.267944,-0.386707,-0.150309,-0.394068,-0.0916204,0.557201,0.232738,0.094737,0.526304,-0.395407,0.230606,0.623006,-0.27503,-0.0976895,-0.0646323,0.183408,-0.018578,-0.429266,-0.737497,-0.295322,0.172843,0.390262,-0.565633,0.0545441,-0.688107,-0.431067,-0.0313645,-0.465182,-0.220708,-0.278432,-0.507356,-0.504753,-0.45074,-0.411673,-0.297424,-0.689006,-0.122096,-0.347642,-0.356323,-0.270756,-0.267422,-0.237325,0.0328482,-0.233238,-0.0733795,-0.174372,-0.0999325,-0.373437,-0.182881,-0.03457,-0.285751,-0.235691,-0.309194,-0.342903,-0.424331,-0.395116,-0.120977,-0.267124,-0.297418,-0.340921,-0.494732,-0.175047,1 +0.767683,-0.869169,-0.304213,1.5585,1.78444,0.457051,0.457017,0.528576,0.740907,0.799895,0.729597,0.805266,0.52667,0.525228,0.550123,0.970043,1.1339,0.104179,0.111402,0.104357,0.261556,-0.016921,0.134981,0.0208748,-0.13308,0.00167051,0.0371702,-0.118172,-0.182406,-0.146948,-0.393474,0.0138593,-0.0229494,-0.354915,-0.388804,0.125311,0.0242238,0.0557462,-0.407938,-0.56311,0.40476,-0.778073,-0.340535,0.392083,-0.471168,-0.571835,0.659119,0.858592,-0.175095,-0.534762,-0.168437,-0.366836,-0.340662,-0.0681635,0.4883,-0.417832,0.00620958,0.0587542,-0.322495,0.257283,-0.30882,-0.212579,-0.389529,-0.388885,-1.07867,-0.239476,-0.146258,-0.208699,-0.669208,-0.788546,-0.495914,-0.701293,-0.557042,-0.517873,-0.729917,-0.59177,-0.729536,-0.526046,-0.725842,-0.603772,-0.556683,-0.958557,-0.397851,-0.56213,-0.912884,-0.510584,-0.612212,-0.660603,-0.442609,-0.690673,-0.744259,-0.492421,-0.439463,-0.291391,-0.442208,-0.750938,-0.396994,-0.346704,-0.643352,-0.763332,0 +0.768722,1.37886,-0.183698,-0.0648663,-0.140112,-0.355462,-0.282909,-0.00901208,0.114931,0.0532931,-0.0714322,0.00878225,-0.0823123,-0.030886,-0.208792,-0.11871,0.241265,0.230179,0.399211,0.764699,0.837399,1.02235,0.794727,0.678772,0.854339,0.65859,0.521911,0.649608,0.743692,0.209426,0.319099,0.217123,-0.172456,-0.0381606,-0.0840726,-0.098755,-0.7976,-0.588448,0.0857489,-0.974024,-1.19621,-0.672358,-0.664,-0.324695,-0.22057,-0.157595,0.302774,0.308431,-0.219971,-0.362296,-0.374743,0.279231,0.204615,0.109298,0.0137838,-0.482828,-1.02809,-0.540671,-0.298536,-0.360201,-0.609168,-0.560529,-0.479667,-0.370249,-0.525919,-0.60786,-0.338975,-0.480805,-0.592294,-0.408561,-0.466656,-0.421305,-0.339383,-0.364706,-0.261612,-0.344748,-0.225761,-0.389906,-0.228264,-0.304763,-0.103611,-0.201012,-0.213884,-0.169472,-0.265305,-0.156296,-0.315773,-0.38829,-0.290098,-0.213961,-0.358993,-0.407214,-0.379793,-0.385307,-0.406402,-0.432658,-0.406796,-0.412724,-0.49702,-0.428231,1 +0.774959,1.77035,-0.29879,0.141932,0.14306,0.451369,0.423511,1.97529,1.80874,1.58692,1.3426,1.3577,1.42817,1.31051,1.06813,1.16579,0.839274,0.42555,0.413878,0.259222,0.022028,-0.192291,-0.144355,-0.0639707,-0.131541,-0.255392,-0.128396,-0.106017,-0.527646,-0.557524,-0.523354,-0.570516,-0.716809,-0.791314,-0.805964,-1.28442,-1.25451,-0.259704,-0.514862,-1.18654,-0.345228,-0.758615,-0.797513,-0.539276,-0.977478,-0.383312,-0.156856,-0.661748,-0.284387,-0.311017,-0.398463,-0.124498,-0.235492,-0.565313,-0.856415,-0.969747,-1.0341,-0.771568,-0.846909,-0.513784,-0.403426,-0.652682,-0.940735,-0.810519,-0.669614,-1.05562,-0.869216,-0.953222,-1.24778,-1.34838,-1.0538,-1.15481,-1.13449,-1.06408,-1.108,-1.12678,-1.1987,-1.11232,-0.99174,-1.07521,-0.907659,-1.05788,-1.01992,-0.911143,-0.917365,-0.892805,-0.915646,-0.807919,-0.829489,-0.73504,-0.71259,-0.70935,-0.577738,-0.588014,-0.797379,-0.845953,-0.617746,-0.418127,-0.628517,-0.73333,0 +0.781888,-1.44604,-0.0312471,-1.04888,-1.07611,-0.778764,-0.634723,-0.984385,-0.981977,-0.957863,-0.943468,-0.829279,-0.623329,-0.389107,0.0344541,0.449417,0.79095,0.914859,0.983599,0.989804,0.998099,0.915342,0.843711,0.835334,0.835794,0.954308,0.924805,0.751352,0.853081,0.887357,0.787681,0.528393,0.624893,0.828754,0.428693,0.214026,0.180133,-0.0348127,-0.338984,-0.527994,-0.571958,-0.514526,-0.656534,-0.876113,-0.925353,-0.764107,-0.806338,-1.01307,-0.811481,-0.866074,-0.615485,0.531085,0.465971,0.735603,0.385818,-0.298233,-0.491118,-0.795898,-0.552018,-0.480422,-0.591037,-0.536576,-0.443991,-0.423671,-0.367559,-0.281146,-0.263872,-0.265204,0.0552634,0.0394001,0.0310687,0.0949589,0.0700307,0.205398,0.185454,0.180861,0.144221,0.211162,0.0499531,0.107122,0.0962874,0.14421,-0.0272839,0.00709199,0.0911198,0.105127,0.0148813,0.0196108,0.00377206,-0.0125538,-0.0211624,-0.10362,-0.0540891,-0.133583,-0.077943,-0.140615,-0.169551,-0.076138,-0.0355201,-0.130452,1 +0.796439,-0.14369,-0.330727,1.43615,1.67761,0.886035,0.926102,-0.510834,-0.604138,-0.808671,-0.641581,-0.804516,-0.849212,-0.687437,-0.843194,-0.22029,0.168859,0.616678,1.27954,0.910067,1.52229,1.27088,1.2253,1.22118,1.22121,1.29096,1.04534,1.224,1.15205,1.12225,1.12664,0.804442,0.870789,0.829482,0.338834,-0.643126,-0.199213,-1.05565,-1.7252,-1.95048,-0.825324,-0.982625,-1.79762,-0.796827,-0.981542,-0.22664,-0.642149,-0.581503,0.0976434,-1.081,-0.774732,1.15806,1.51687,1.01637,-0.468025,-1.99883,-1.205,-0.942813,-0.962053,-0.934579,-0.447068,-0.705619,-0.853662,-0.623179,-0.85146,-0.418538,-0.324774,-0.148541,-0.267019,-0.658819,-0.424142,-0.0821843,-0.028306,-0.163351,-0.137539,-0.099202,-0.369386,-0.327369,0.288014,-0.187324,0.0350693,-0.0437438,-0.165383,0.0342974,0.0962434,-0.117063,-0.160525,-0.0410906,-0.185467,-0.170943,0.133863,-0.0122185,-0.282552,-0.374076,-0.268467,-0.176833,0.0903961,-0.0541677,-0.00122045,0.00222637,1 +0.799211,1.02757,-0.239135,-0.149309,-0.0434608,-0.0486386,0.0381913,-0.616381,-0.569391,-0.624748,-0.726811,-0.667858,-0.681167,-0.542382,-0.246558,-0.17045,0.309579,0.522593,0.764409,0.966247,1.04353,1.18086,1.07262,1.13926,1.11396,1.08152,1.05941,0.984829,1.03646,0.822812,0.936804,1.00071,0.916795,0.677831,0.627766,0.523076,0.423438,-0.417523,-0.62724,-0.147833,0.0946835,-0.0776877,-0.630897,-0.227764,-0.554076,-0.47016,-0.47809,-0.551133,-0.464598,-0.374874,-0.260629,0.673932,0.873935,0.988026,0.656536,-0.267513,-0.201695,-0.539726,-0.619622,-0.52995,-0.608655,-0.519357,-0.565378,-0.485385,-0.609939,-0.562107,-0.506742,-0.5565,-0.359376,-0.504369,-0.38426,-0.367872,-0.383935,-0.267673,-0.203304,-0.104366,-0.322235,-0.361615,-0.257681,-0.238703,-0.266937,-0.286453,-0.231772,-0.222432,-0.279041,-0.342987,-0.311085,-0.3194,-0.394867,-0.153874,-0.377594,-0.24031,-0.409704,-0.383059,-0.184449,-0.250893,-0.259369,-0.403862,-0.285008,-0.424993,1 +0.801982,1.05303,-0.313252,0.917427,0.782316,0.883194,0.906557,-0.0270768,-0.0267699,0.222192,0.316248,0.350817,0.529197,0.347846,-0.213935,-0.20874,-0.281693,-0.85315,-0.908545,-0.879424,-1.07617,-1.0002,-0.931995,-0.96368,-0.871736,-0.554137,-0.775856,-0.692886,-0.31866,-0.469891,-0.17442,-0.210083,-0.0295053,0.3988,0.316834,0.790638,1.25111,1.4917,1.67144,2.03755,1.70592,1.55385,1.89377,0.725654,1.22821,1.10914,0.956035,0.90703,0.686862,1.05295,1.23028,-0.489244,-0.125423,0.00190663,0.833202,1.25888,1.52894,1.50952,0.966393,0.715899,1.08688,1.0522,0.870225,0.599889,0.671814,0.688796,0.693702,0.440401,0.263539,0.275474,0.115292,0.0673896,0.117779,-0.170793,-0.166266,-0.282263,-0.171001,-0.0945295,-0.15836,-0.22665,-0.223049,-0.119949,-0.242314,-0.401176,0.0214778,-0.0304916,-0.148622,-0.23152,-0.0960128,-0.105421,-0.189335,-0.301546,-0.00876707,-0.159898,-0.0656566,-0.00804263,-0.312148,0.0648284,-0.0168158,-0.047791,3 +0.814801,1.05622,-0.349407,1.84457,2.12187,1.31218,1.27233,-0.232548,-0.220816,-0.142895,-0.184946,-0.531721,-0.305216,-0.406277,-0.707579,-0.469168,-0.587307,-0.580851,-0.28285,-0.134299,0.106726,0.318131,0.308763,0.43102,0.497798,0.381271,0.60214,0.412492,0.695405,0.632483,0.543289,0.463271,0.555028,0.490483,0.993047,0.612925,0.321482,0.627573,1.06658,-0.0773459,-0.184704,0.602651,-0.227619,0.284304,0.5289,-0.0056186,0.0930993,0.761551,-0.00129656,0.21362,0.0343932,0.823274,0.528739,0.666645,1.08564,0.655809,0.154617,0.261765,-0.131289,0.0209034,-0.314127,-0.518869,-0.199986,-0.334297,-0.0389231,-0.313467,-0.269563,-0.0927874,-0.07334,-0.054938,0.0312716,-0.0665737,0.0623663,-0.0887503,-0.347088,-0.240299,0.182808,0.140803,-0.0563992,0.0338853,0.178442,-0.0978142,-0.109461,-0.141047,0.00544992,-0.230173,0.0894509,-0.11973,-0.220575,-0.24458,-0.29568,-0.0278364,-0.0811151,-0.355495,-0.104358,-0.184019,-0.370503,-0.109949,-0.124677,-0.279654,1 +0.815841,1.08683,0.353196,-1.11954,-1.1185,-1.06854,-1.07589,-1.18807,-1.28023,-1.36645,-1.44173,-1.516,-1.60596,-1.60598,-1.42827,-1.03858,-0.462114,0.121983,0.624057,1.00404,1.3507,1.52759,1.69393,1.76489,1.6479,1.64532,1.62804,1.4472,1.41815,1.29214,1.16804,1.20842,1.17263,1.09395,0.723896,0.619377,0.366158,0.0258841,-0.238961,-0.34871,-0.570743,-0.637049,-0.780457,-0.736691,-0.856836,-0.840583,-0.803329,-0.744711,-0.796416,-0.733699,-0.795984,1.35906,1.2746,1.09841,0.671045,-0.108497,-0.607236,-0.932106,-0.82087,-0.890928,-0.728971,-0.703751,-0.638127,-0.528996,-0.464684,-0.365185,-0.216128,-0.0627879,0.137254,0.258841,0.333665,0.473433,0.453753,0.532246,0.548891,0.555713,0.50712,0.472598,0.497221,0.471168,0.414598,0.38513,0.338319,0.29054,0.244346,0.204297,0.191385,0.162823,0.155462,0.126696,0.0595703,0.0723014,0.0891938,0.0806648,0.0857267,0.057127,0.0117625,0.0267443,0.0133337,0.006774,1 +0.818612,1.07816,-0.343983,1.93419,1.77596,1.73832,1.64369,0.792171,0.778316,0.856604,0.738054,0.892843,0.616505,0.632245,0.397332,0.0488257,-0.245654,-0.458083,-0.879664,-1.00244,-0.898316,-0.920179,-0.93111,-0.515312,-0.597239,-0.424061,-0.105268,0.11894,0.190771,0.341917,0.804034,0.649915,0.920363,1.07455,0.976782,1.26599,2.21426,1.37206,1.48632,1.28451,0.859672,1.63174,0.52992,0.904641,0.545082,0.299258,0.378814,-0.100224,-0.0758767,0.38518,-0.193238,0.211957,0.261902,0.66444,1.71975,2.27343,1.29076,0.625937,0.427504,0.08816,-0.191476,-0.106189,-0.188731,-0.665448,-0.825894,-0.542495,-0.616122,-1.42357,-0.384898,-0.512512,-1.45155,-0.97006,-1.00274,-0.925381,-0.698315,-0.834927,-0.852511,-0.861365,-0.995756,-0.96573,-0.870879,-0.953795,-0.972913,-0.729241,-0.643651,-0.78604,-0.455497,-1.063,-0.238168,0.0659652,-0.443974,-0.0919946,-0.686081,-0.284566,-0.111389,-0.580775,-0.344692,-0.401644,-0.421027,-0.146362,3 +0.82762,1.69177,-0.369291,2.59422,2.60004,2.0423,2.0681,-0.53104,-0.678944,-0.558327,-0.5859,-0.526073,-0.595913,-0.654859,-0.724046,-0.494745,-0.0843277,0.105952,0.415991,0.556102,0.488954,0.474577,0.29982,0.307389,0.225696,0.146419,0.367283,0.446414,0.535959,0.855911,0.753807,0.591579,0.689093,1.413,1.38905,1.48072,1.37636,1.59397,0.953837,1.07215,1.22902,0.473808,0.145204,1.01246,0.598543,0.083588,0.660276,-0.0185989,0.0939424,0.473336,0.718275,0.541288,0.68156,1.12335,1.52171,1.2941,0.671608,0.49557,0.571133,0.416675,0.0235007,-0.0204421,-0.249347,-0.416584,-0.105287,-0.197999,-0.139945,-0.08955,-0.0916128,-0.348699,0.220189,-0.0230129,-0.13112,-0.418174,-0.0450049,-0.468834,-0.111663,0.0347683,-0.167581,-0.320614,-0.442141,-0.551251,-0.401394,-0.0428477,-0.318157,-0.635421,-0.39481,-0.318704,-0.288739,-0.602244,-0.172453,-0.412011,-0.175022,-0.441791,-0.223979,-0.560934,-0.724777,0.117782,-0.0887483,-0.849256,1 +0.847022,1.98008,-0.133685,-0.414701,-0.350372,-0.20205,-0.171222,-0.276602,-0.354058,-0.434329,-0.547768,-0.613584,-0.696057,-0.885588,-0.849781,-0.706247,-0.65269,-0.53802,-0.261528,-0.029318,0.161106,0.272811,0.360127,0.376801,0.342089,0.439538,0.419563,0.372556,0.393367,0.394083,0.386249,0.42124,0.295815,0.337143,0.369696,0.307864,-0.0643637,0.17648,0.074228,0.30762,0.447807,0.475461,0.334185,0.487506,0.571204,0.727785,1.04724,0.868394,0.595126,0.435787,0.462391,0.395062,0.444784,0.308533,0.213631,0.658177,0.264244,0.548036,0.489231,0.538477,0.295068,-0.0118922,-0.0552418,0.0430868,-0.0604999,0.133239,-0.0676227,0.102556,0.230246,0.289473,0.171919,0.234574,0.245133,0.349675,0.236847,0.195368,0.151288,0.206752,0.183397,0.196688,0.228135,0.183329,0.262281,0.273847,0.227211,0.0688231,0.201069,0.0518877,-0.0434147,0.060565,-0.119071,-0.166789,-0.0816277,-0.0551031,-0.197462,-0.191329,-0.11673,-0.237043,-0.236477,-0.16697,1 +0.846676,-0.43308,1.31129,-1.31772,-1.29823,-1.26457,-1.24062,1.07748,0.940841,0.901181,0.87105,0.838858,0.785976,0.744932,0.664767,0.516137,0.237669,0.114074,0.0154097,-0.0826027,-0.184122,-0.178411,-0.232606,-0.225024,-0.312533,-0.412133,-0.368268,-0.444392,-0.3842,-0.369839,-0.5078,-0.588161,-0.579222,-0.597041,-0.513761,-0.710203,-0.523233,-0.502737,-0.395962,-0.394152,-0.555286,-0.0474093,0.153303,0.296902,0.312895,0.452272,0.500828,0.516693,0.47863,0.484802,0.438059,-0.280116,-0.496704,-0.680968,-0.755947,-0.42158,0.0838595,0.319988,0.368412,0.278614,0.27141,0.200313,-0.0221403,-0.0199364,-0.125067,-0.168315,-0.236465,-0.38049,-0.495915,-0.528348,-0.568292,-0.57233,-0.607741,-0.621754,-0.582632,-0.581632,-0.614374,-0.568545,-0.596561,-0.58505,-0.518071,-0.523535,-0.507259,-0.48779,-0.4871,-0.493175,-0.492891,-0.504651,-0.520783,-0.508241,-0.548225,-0.529416,-0.518797,-0.537675,-0.535348,-0.557433,-0.536444,-0.573448,-0.53131,-0.525024,0 +0.849794,1.12122,-0.325304,0.729585,0.587317,0.832057,0.694352,0.286202,0.499299,0.557628,0.472872,0.701941,0.721464,0.635862,0.48241,0.23896,0.0415301,-0.171094,-0.721531,-0.826585,-0.69119,-1.06508,-0.832622,-0.657445,-0.699303,-0.899859,-0.535865,-0.540572,-0.54453,-0.471003,-0.624658,0.282694,0.215182,0.158385,0.618367,-0.0491103,0.953175,0.919832,0.955918,2.15022,0.400512,1.70698,1.44701,0.609292,0.0160815,0.716651,1.16212,0.636424,1.04366,1.40893,0.649826,-0.554046,-0.217248,-0.173392,0.372132,1.82284,1.16409,0.757829,0.726273,0.428069,0.547859,0.563249,0.489928,0.33822,0.481206,0.37558,0.548955,-0.224765,-0.263745,0.160992,-0.133935,-0.385102,-0.244956,-0.240215,-0.417205,-0.552047,-0.500386,-0.416261,-0.316954,-0.535838,-0.673712,-0.451464,-0.424211,-0.52408,-0.552814,-0.504256,-0.486063,-0.418777,-0.263488,-0.293267,-0.306692,-0.471732,-0.143297,-0.592818,-0.358563,-0.255992,-0.263925,-0.269942,-0.221468,-0.175084,2 +0.85118,1.18339,-0.325304,0.484873,0.254972,1.17297,1.00987,0.233875,0.549509,0.777553,0.511059,0.560392,0.614515,0.556897,0.418457,0.365966,0.228809,0.200287,0.405938,0.0775569,0.297278,0.0426831,-0.0127776,0.0434971,0.0602823,-0.167643,-0.113207,0.133732,-0.133394,0.137182,0.195748,0.0233813,0.110783,0.105863,-0.153757,-0.48263,-0.204298,0.218643,-0.329404,0.170472,0.0246422,-0.076514,0.292588,0.316491,0.688888,0.813055,0.143165,0.384266,0.618492,0.351815,0.707142,0.0328766,-0.0259324,-0.299463,0.472744,0.0978781,0.212393,0.105515,0.4073,0.679334,0.590877,-0.208359,-0.191108,-0.0959747,-0.256943,-0.3174,-0.79099,-0.760047,-0.615042,-0.72717,-0.763087,-0.970008,-0.73614,-0.7822,-0.609899,-0.945282,-0.832298,-0.819285,-0.688023,-0.863591,-0.859384,-0.618391,-0.884297,-0.431944,-0.516074,-0.880733,-0.65728,-0.547243,-0.804142,-0.712422,-0.590171,-0.666542,-0.402409,-0.446791,-0.442936,-0.499297,-0.810342,-0.402015,-0.529599,-0.497822,1 +0.857416,0.721331,-0.282521,0.0902326,0.0650602,0.590576,0.797662,-0.770975,-0.679351,-0.616114,-0.587466,-0.660209,-0.451361,-0.333987,-0.165379,0.0326851,0.221646,-0.0213595,-0.0857206,-0.1313,-0.057191,-0.087454,-0.051432,0.0105715,-0.101187,-0.164938,-0.0199026,0.0291758,-0.223812,-0.089694,-0.217225,-0.0146882,0.0762904,0.356545,-0.122754,0.0674784,0.242155,-0.00645122,-0.488472,0.17096,0.456921,0.0295502,0.304524,-0.150482,-0.509365,0.124295,-0.223914,-0.192328,-0.277871,-0.243448,-0.00420432,-0.0534403,0.140134,0.121856,-0.00424493,-0.319754,0.135865,-0.293207,-0.235748,-0.0630092,0.0295577,0.0379912,0.10727,0.0937983,0.173541,0.52897,0.0840116,0.435943,0.833364,0.738004,0.758738,0.765897,0.907643,0.804536,0.721333,0.787424,0.747977,0.714355,0.681962,0.832977,0.866147,0.572728,0.500189,0.566917,0.546366,0.415164,0.528981,0.393731,0.366075,0.423942,0.399971,0.312323,0.327451,0.477328,0.465726,0.35395,0.273087,0.49597,0.697279,0.287736,1 +0.862613,1.16253,1.05218,-1.10058,-1.24567,-1.16797,-0.902771,0.47481,0.578893,0.485687,0.171494,-0.286507,-0.793855,-1.3858,-2.06401,-2.62866,-2.97302,-3.01253,-2.96871,-2.89194,-2.78859,-2.71969,-2.72568,-2.77058,-2.79234,-2.84225,-2.90191,-2.93284,-2.9659,-2.95818,-2.95577,-2.91924,-2.75688,-2.47874,-2.06981,-1.63547,-1.00535,-0.0711491,0.747663,1.63984,2.27916,2.79097,3.18778,3.23245,3.10008,3.10596,3.27985,3.26652,3.36247,3.41888,3.51077,-3.121,-3.1639,-2.98801,-2.20131,0.209192,2.64351,3.53229,3.96551,4.23678,4.10665,3.97194,3.98252,3.98645,3.78442,3.33853,2.98713,2.76983,2.51972,2.19392,1.99034,1.82732,1.71523,1.67244,1.66577,1.51468,1.42775,1.41044,1.38572,1.42602,1.45915,1.54353,1.64029,1.75565,1.83309,1.92704,1.95562,2.03092,2.09778,2.0995,2.10136,2.14713,2.19321,2.21941,2.21534,2.28866,2.31682,2.37216,2.3966,2.54693,2 +0.875085,0.983772,-0.35965,2.06688,1.67592,2.15878,2.04018,0.157719,0.319565,0.381345,0.328596,0.2071,0.288355,0.0564947,-0.0730059,-0.0695903,-0.151942,0.190055,0.457821,0.491059,0.256013,0.361527,0.557786,0.729594,0.549066,0.271039,0.0796152,-0.0964261,0.681244,0.827476,-0.00493927,-0.208849,-0.400879,-0.32659,0.195146,-0.151673,-0.446972,-0.572828,-1.13029,-1.92041,-1.60135,-0.949917,-0.462801,-0.348439,-0.342077,-0.548609,0.300799,-0.894206,0.230329,0.342382,-0.609501,0.184207,0.0402378,-0.0184694,-0.574874,-0.418669,-1.34393,-0.716513,-0.265125,-0.261004,-0.295003,-0.233884,-0.577567,-1.12513,-0.700289,-0.3809,-0.174978,-0.349982,-0.363071,-0.605761,-0.648374,-0.650392,-0.434939,-0.323005,-0.241776,-0.146207,0.0347273,0.236258,0.19847,0.43067,-0.0766223,-0.163071,0.103699,0.182535,-0.296414,-0.374131,-0.102895,-0.219201,-0.291725,0.0323434,-0.246246,-0.122254,0.0194656,-0.417296,-0.555746,-0.475427,-0.099689,-0.104125,-0.418815,-0.156979,1 +0.882361,1.1736,0.00430483,-0.785215,-0.684413,-0.863993,-0.944654,-0.0207769,0.0455032,0.205548,0.353146,0.502885,0.642527,0.719224,0.718057,0.588043,0.361233,0.0887371,-0.190404,-0.361252,-0.503043,-0.608175,-0.616536,-0.561512,-0.595272,-0.651924,-0.607955,-0.668481,-0.600534,-0.601576,-0.687822,-0.695907,-0.756997,-0.549165,-0.539747,-0.454874,-0.499027,-0.31561,-0.169538,0.183149,0.364123,0.550759,0.452337,0.305205,0.761649,0.817049,0.589621,0.227483,0.223437,0.309735,0.258288,-0.618655,-0.656701,-0.706351,-0.51754,-0.273868,0.434069,0.693964,0.740347,0.563964,0.500304,0.437521,0.523909,0.475744,0.446543,0.371436,0.493038,0.406552,0.166823,0.230309,0.141766,0.123939,0.01882,0.050288,0.0394179,0.00989906,-0.00732492,0.0525241,0.0758989,0.0605503,0.0506983,0.0885847,-0.0077089,0.00907879,0.0102658,-0.0455463,0.0117182,0.0492692,-0.000939191,0.0228451,0.0252223,0.00223119,0.029528,0.0357413,0.0239998,-0.00353047,-0.0061218,0.0060571,0.0112625,-0.0659806,0 +0.887211,1.12712,-0.276495,0.99153,1.18757,1.05081,1.1411,0.372555,0.279289,0.112417,0.0306913,-0.241169,-0.448605,-0.936411,-1.15792,-1.45792,-1.74291,-1.62997,-1.61713,-1.4528,-1.4477,-1.35923,-1.18723,-1.12476,-1.0321,-0.820206,-0.875734,-0.737999,-0.798253,-0.224774,-0.446448,0.035028,0.306679,0.429839,0.709702,1.08315,1.65559,2.28744,2.04542,2.58878,2.46455,2.33001,2.09322,1.45073,1.8436,1.93535,1.00231,1.28308,1.1097,1.25272,0.542417,-0.364616,-0.5774,0.168611,1.24366,1.43194,3.19613,2.6658,1.68511,1.71805,1.42127,1.23031,0.36795,0.811983,0.37286,-0.0341842,-0.0963701,0.398314,0.783329,0.0886274,0.401949,0.560527,0.394456,0.254513,0.473762,0.603086,0.73545,0.565896,0.572162,0.756924,0.730909,0.781026,0.684253,1.06928,0.519211,0.412362,0.568725,0.501898,0.324412,0.0294781,0.241022,0.497254,0.35647,0.495711,0.110281,-0.331887,-0.111505,0.131489,-0.0259651,0.0489754,2 +0.90003,1.48024,-0.198763,-0.524993,-0.392763,-0.196368,-0.162845,0.953624,1.03539,1.14575,1.26095,1.43755,1.38837,1.68148,1.37734,1.34709,0.917166,0.510977,0.235686,-0.0779447,-0.00316833,-0.0800465,-0.162171,-0.283403,-0.317043,-0.113161,-0.091745,-0.016218,-0.00450093,0.0873884,0.103088,0.0409206,-0.00843456,0.0133931,-0.0315005,-0.191948,0.0426567,-0.0530813,-0.148176,-0.409198,-0.36989,-0.341234,-0.562891,-0.814357,-0.81075,-0.755401,-0.620406,-0.611512,-0.755877,-0.781156,-0.629684,0.0792334,-0.0462561,0.354017,0.0342949,-0.493359,-0.570113,-0.474269,-0.702064,-0.769355,-0.894483,-0.799235,-0.719037,-0.604489,-0.546805,-0.776536,-0.749832,-0.891329,-0.900274,-0.987764,-1.03556,-1.00223,-0.991151,-1.13242,-1.01838,-0.879561,-0.963646,-1.14491,-0.93381,-1.05458,-1.01455,-0.888059,-0.92984,-0.921123,-1.02665,-0.956105,-0.825348,-0.804626,-0.832598,-0.708278,-0.643992,-0.707682,-0.854449,-0.513754,-0.734853,-0.756526,-0.705233,-0.851004,-0.807077,-0.590241,3 +0.905574,1.10844,-0.162006,-0.790385,-0.687804,-0.383871,-0.321999,-0.951182,-0.930895,-0.922083,-0.93277,-0.848075,-0.853632,-0.715537,-0.112424,0.334724,0.712483,1.11772,1.22309,1.46265,1.40781,1.27213,1.29226,1.2419,1.33191,1.26976,1.10655,1.20359,1.23771,0.96941,1.12058,0.780302,0.948756,0.739792,0.676772,0.653572,0.0112193,-0.225379,0.196262,-0.638193,-0.358728,-0.5992,-0.771265,-0.463254,-0.696666,-0.820179,-0.769863,-0.692541,-0.700644,-0.886041,-0.644303,1.07208,1.07925,0.757941,0.440279,-0.0319284,-0.378194,-0.614053,-0.952496,-0.732494,-0.703324,-0.547557,-0.659527,-0.525225,-0.559847,-0.643028,-0.636441,-0.426856,-0.437289,-0.466433,-0.468763,-0.270577,-0.442214,-0.38294,-0.328147,-0.241073,-0.282499,-0.270681,-0.263909,-0.388121,-0.204465,-0.368039,-0.239501,-0.296078,-0.308452,-0.266607,-0.272444,-0.223405,-0.287893,-0.294476,-0.325382,-0.260777,-0.244187,-0.307041,-0.358763,-0.246649,-0.334755,-0.284742,-0.250753,-0.339343,1 +0.909038,0.651373,0.34717,-1.0799,-1.07102,-0.900925,-0.992121,2.05553,2.01117,1.84616,1.74647,1.61818,1.7077,1.65622,1.4901,1.30348,1.03076,0.683358,0.331981,0.131322,0.0423714,-0.158051,-0.192716,-0.221457,-0.368397,-0.376846,-0.514387,-0.605182,-0.5984,-0.708778,-0.939331,-0.937189,-0.926059,-1.18682,-1.3305,-1.21153,-1.35464,-1.49048,-1.19525,-1.03001,-0.751313,-0.607078,-0.817194,-0.626629,-0.420681,-0.591691,-0.444919,-0.345338,-0.429259,-0.527878,-0.410305,-0.324795,-0.6264,-1.09732,-1.22523,-1.2659,-1.12357,-0.69915,-0.575072,-0.609667,-0.522946,-0.569083,-0.728569,-0.684713,-0.761585,-0.817235,-0.787581,-1.06761,-1.10538,-1.10705,-1.14645,-1.00945,-1.17043,-1.10303,-1.18137,-1.12649,-1.14389,-1.10657,-1.04742,-1.09576,-1.05187,-1.002,-0.913201,-0.910901,-0.943852,-0.910826,-0.876286,-0.813228,-0.863111,-0.911254,-0.763007,-0.75237,-0.779268,-0.777051,-0.698519,-0.72951,-0.790107,-0.691204,-0.698347,-0.760605,0 +0.914581,0.507401,-0.371099,1.48957,1.67083,1.46275,1.49012,-0.644746,-0.636343,-0.723487,-0.566808,-0.51609,-0.541799,-0.538407,-0.651456,-0.539116,-0.0737095,-0.0617463,-0.31687,-0.0115956,0.0134677,-0.0582568,0.0695806,0.214425,0.0813149,-0.083268,0.209935,0.526302,0.119601,-0.0637461,0.0246237,0.110723,-0.0528876,0.420456,-0.47045,0.242469,0.770874,0.28823,0.0485794,0.406773,1.28879,0.466981,0.681475,0.356128,-0.142987,0.555536,0.754107,0.0379617,0.446289,0.598652,0.446819,0.111483,0.202208,-0.161892,0.689159,0.654812,0.707539,-0.239441,0.496167,0.548994,0.376903,0.162104,0.0710925,0.486755,0.742886,0.0601552,0.389199,0.456589,0.682007,0.610587,0.572752,0.523882,1.14446,0.436632,0.358485,0.521442,0.308571,0.180359,0.634056,0.131846,0.281478,0.201876,0.108937,0.0516959,0.0416979,0.367208,0.229924,0.14603,-0.0254992,0.358568,0.132679,-0.0514272,0.48592,0.163112,-0.0758153,0.217897,0.19059,0.14702,0.138172,-0.00860997,1 +0.932251,1.34769,1.47398,-1.2419,-1.24567,-1.27593,-1.30205,0.851428,0.851888,0.93317,1.07656,1.07891,1.1775,1.19726,1.18069,0.830985,0.609481,0.371003,0.0836515,-0.14756,-0.217725,-0.146296,-0.166451,-0.082882,0.0656426,0.193595,0.348305,0.560621,0.724625,0.823108,0.811445,0.858177,0.636314,0.650525,0.625963,0.433891,0.224604,-0.0622316,-0.314598,-0.527524,-0.760765,-1.1438,-1.24184,-1.37709,-1.36345,-1.39277,-1.30176,-1.32828,-1.20979,-1.15536,-1.21843,0.723102,0.687008,0.656533,0.472657,-0.280595,-0.93981,-1.17363,-1.15402,-1.09289,-1.01682,-0.82335,-0.781141,-0.794546,-0.765367,-0.728535,-0.778139,-0.90329,-0.9409,-0.842641,-0.906247,-0.951272,-0.967928,-0.972733,-0.965489,-0.968503,-0.926671,-0.898388,-0.858371,-0.848028,-0.831487,-0.840995,-0.808474,-0.808651,-0.798156,-0.779167,-0.718371,-0.703269,-0.692211,-0.649789,-0.633691,-0.611212,-0.6097,-0.591421,-0.588343,-0.586477,-0.564815,-0.555485,-0.576824,-0.578808,3 +0.936408,1.09247,-0.301803,0.572763,0.609361,0.428642,0.518445,-0.715825,-0.670616,-0.679971,-0.602967,-0.464148,-0.253467,-0.110035,0.0708223,0.509256,0.704763,0.722685,0.765795,0.495782,0.462302,0.429033,0.400359,0.379601,0.58665,0.713291,0.489345,0.387485,0.499943,0.65337,0.617203,0.55139,0.660594,0.719608,0.393786,0.603173,0.332891,0.203876,0.156518,-0.148067,-0.35004,-0.274791,-0.413614,-0.379242,-0.522761,-0.475687,-0.673876,-0.736276,-0.371137,-0.294523,-0.734899,0.303219,0.57153,0.458034,0.676694,0.482083,-0.441258,-0.486086,-0.501707,-0.323571,-0.274981,-0.205058,-0.411469,-0.191737,-0.252723,-0.103447,-0.182664,-0.251183,0.0181828,0.130994,0.132235,-0.0234934,0.0859131,0.140584,0.138273,0.04717,-0.00834725,-0.00695773,-0.0465416,-0.0850862,0.161605,-0.0868066,-0.0400621,0.0228574,-0.202385,-0.0374873,-0.0797387,-0.102857,-0.161569,-0.152028,-0.117266,-0.223648,-0.202296,-0.0383078,-0.217402,-0.198292,-0.0775559,-0.238972,-0.231669,-0.1783,1 +0.944377,0.112713,-0.351817,1.23796,1.34696,1.26104,1.32259,-0.0247688,-0.0237904,0.0897048,0.175877,-0.032839,0.351504,0.329412,-0.177149,0.332524,0.380509,0.288229,0.517839,0.210446,0.45418,0.336337,0.0920135,0.0102353,0.69905,0.0146224,0.0667266,0.832697,0.0107283,0.134703,0.173306,0.0276376,-0.131884,0.272394,-0.0486148,-0.0427897,0.66433,-0.263893,-0.485548,0.961216,0.598959,-0.32377,-0.120165,-0.598562,0.0747006,0.31836,0.674639,0.682069,0.443,0.407053,0.359408,0.200316,0.582279,0.508486,-0.463429,-0.379887,0.203081,-0.0834813,-0.238909,-0.097795,-0.295545,-0.376406,0.0557862,-0.216601,-0.319627,-0.371958,-0.647253,-0.38071,-0.555982,-0.608127,-0.441636,-0.414802,-0.646999,-0.308013,-0.432336,-0.757559,-0.507633,-0.016176,-0.20281,-0.585981,-0.741508,-0.485713,-0.396819,-0.312728,-0.397921,-0.577716,0.066051,-0.284771,-0.0812658,-0.601879,-0.185962,-0.228319,-0.245229,-0.331076,-0.568016,-0.477215,-0.438786,-0.377909,-0.563862,-0.570162,1 +0.952692,0.647061,-0.0197982,-0.821405,-0.757325,-0.878197,-0.763163,0.451191,0.41072,0.317289,0.229977,0.191511,0.0957392,-0.0582722,-0.0407302,-0.0966139,0.0282848,0.0644449,0.125892,0.246627,0.403194,0.515155,0.51054,0.546447,0.446678,0.450778,0.373792,0.387787,0.202163,0.324772,0.282294,0.121841,0.0547373,-0.0234819,-0.388338,-0.385179,-0.251252,-0.759461,-0.386773,-0.397603,-0.471185,-0.649171,-0.572846,-0.573832,-0.323273,-0.257918,-0.418642,-0.266786,-0.136348,-0.208209,-0.447117,0.476565,0.371382,0.0424422,-0.203861,-0.572084,-1.00054,-0.521252,-0.331161,-0.281633,-0.415332,-0.536075,-0.51204,-0.438491,-0.290229,-0.290213,-0.308714,-0.298766,-0.259638,-0.159248,-0.233352,-0.243892,-0.208418,-0.136162,-0.272567,-0.21628,-0.305587,-0.207549,-0.181607,-0.283836,-0.351534,-0.2802,-0.25341,-0.286843,-0.355301,-0.252594,-0.309915,-0.320189,-0.324223,-0.399987,-0.400754,-0.365249,-0.446352,-0.370199,-0.33625,-0.34871,-0.359252,-0.359916,-0.459477,-0.425765,1 +0.954424,1.12532,-0.0487217,-0.347491,-0.535196,-0.70774,-0.643099,0.169554,0.320639,0.470413,0.577659,0.732207,0.769997,0.752992,0.594723,0.455141,0.222065,0.0157967,-0.220475,-0.278506,-0.440622,-0.43349,-0.444561,-0.443882,-0.356453,-0.350848,-0.295061,-0.360794,-0.207483,-0.0260393,-0.0205417,0.250947,0.153908,0.266383,0.363519,0.516193,0.62437,0.602755,0.92408,0.914119,0.747464,0.568259,0.664521,0.490661,0.468979,0.468489,0.186361,0.134248,0.304946,0.445142,-0.0370786,-0.0430514,-0.0504362,0.249627,0.725791,1.01268,0.676339,0.335313,0.124024,0.061657,0.0669787,0.0854069,0.061918,0.259397,-0.0635479,-0.0758218,-0.178351,-0.0182613,-0.193578,-0.458811,-0.286143,-0.379151,-0.439898,-0.474773,-0.611844,-0.613284,-0.468629,-0.519513,-0.620207,-0.537941,-0.584032,-0.587284,-0.536031,-0.418319,-0.603094,-0.603396,-0.595891,-0.577982,-0.520483,-0.571314,-0.47175,-0.434025,-0.468254,-0.464088,-0.469026,-0.330385,-0.299446,-0.472213,-0.505382,-0.434397,3 +0.957542,0.204281,-0.0535423,-0.114843,-0.318154,-0.761718,-0.726864,-0.69505,-0.708892,-0.748039,-0.746865,-0.738212,-0.686248,-0.535238,-0.440527,-0.0303336,0.386236,0.740822,0.927459,0.954418,0.916569,0.946037,1.0424,1.16086,1.07735,1.07231,0.986689,0.837128,0.977009,1.01944,0.839955,0.933577,0.746662,0.726486,0.658218,0.674782,0.352885,0.570408,0.217907,0.0629232,-0.280104,-0.192845,-0.256749,-0.351373,-0.250999,-0.465561,-0.470373,-0.284499,-0.562612,-0.253675,-0.276711,0.903827,1.01116,0.873397,0.630361,0.240622,-0.206723,-0.599194,-0.585157,-0.691722,-0.689238,-0.593017,-0.624652,-0.669161,-0.556027,-0.468995,-0.473758,-0.486874,-0.397407,-0.317206,-0.331318,-0.274543,-0.170788,-0.211074,-0.135173,-0.238011,-0.201945,-0.19927,-0.260979,-0.23961,-0.313325,-0.354981,-0.245357,-0.272545,-0.333843,-0.377616,-0.301483,-0.271991,-0.308567,-0.337591,-0.309546,-0.298109,-0.269597,-0.266037,-0.34929,-0.316366,-0.306091,-0.263871,-0.280486,-0.268417,1 +0.980062,0.367299,-0.348201,1.45855,1.77596,1.21843,0.92331,0.150565,-0.0860238,-0.26395,-0.476721,-0.657912,-0.514369,-0.790499,-0.812349,-0.495515,-0.738795,-0.395474,-0.208902,0.173788,0.341619,0.239944,0.12395,0.372595,0.664448,-0.052133,-0.00537558,0.466108,0.355389,0.0285157,0.375247,0.0660339,0.0222262,-0.000464255,0.159646,0.760395,0.578275,0.39706,0.306506,-0.288269,1.39484,1.13395,0.571267,0.834125,0.613986,1.68555,0.652752,0.644055,1.16447,0.499815,-0.537663,0.231411,0.0875387,0.0135261,0.00765903,2.3508,1.19053,0.409398,0.82205,0.207474,0.0488278,0.125371,-0.163074,0.16545,-0.0681782,-0.239474,-0.208759,0.14831,0.0241735,0.0617828,-0.0377359,0.0309648,0.306366,-0.347818,0.0638707,0.12791,0.0435242,-0.0641724,0.312071,0.0932421,0.0151867,0.0554995,-0.0465216,-0.127181,0.162702,0.103782,0.182821,-0.504637,0.0786663,0.108068,-0.341104,-0.53969,-0.431442,-0.455978,-0.0960626,-0.11066,-0.146682,-0.433447,-0.357673,-0.390425,1 +0.98318,-1.44991,-0.189724,0.546913,0.358406,-0.713422,-0.587256,-0.987319,-1.03585,-1.01627,-0.954678,-0.91018,-0.652208,-0.666643,-0.0995007,0.592878,1.12054,1.07579,0.994286,1.08503,0.760112,0.798411,1.0074,0.840746,0.797682,0.990452,0.819415,0.684842,0.568227,0.861563,0.712221,0.737674,0.51358,0.563143,0.281563,0.663293,0.287205,0.284833,-0.155709,-0.138636,-0.88408,-0.209343,-0.314443,-0.668766,-0.486613,-0.682878,-0.464785,-0.84476,-0.748446,-0.600976,-0.770676,1.33274,1.07244,0.835521,0.685749,-0.236786,-0.955796,-0.876194,-1.01687,-0.96089,-0.742312,-0.615252,-0.688837,-0.519388,-0.467329,-0.457555,-0.326418,-0.373456,-0.208231,0.00864769,-0.0285234,-0.0166981,0.0466593,0.141533,0.368856,0.219394,0.0723258,0.0818054,0.051381,0.0747843,0.136813,0.110013,0.129043,0.0482433,-0.0228305,-0.0275106,-0.0137721,-0.0477465,-0.000972828,-0.0475734,-0.119622,-0.0953178,-0.0226693,-0.175966,-0.0627726,-0.0922569,-0.0645442,-0.0484745,-0.200754,-0.17573,1 +0.986991,1.223,-0.328919,1.48785,1.16384,0.701373,0.630132,-0.805827,-0.804484,-0.468399,-0.342447,-0.120178,0.238984,0.383214,-0.459549,-0.87481,-1.09385,-1.10391,-1.2177,-1.29761,-1.40481,-1.49583,-1.4083,-1.03444,-1.20939,-1.18114,-1.26597,-0.928882,-0.695632,-0.91288,-0.340138,-0.270212,0.233709,-0.37164,0.475128,0.897309,1.7336,0.170808,0.920894,0.744714,1.08647,1.63159,0.96575,0.40568,1.50935,0.0176515,0.541741,0.306639,0.735714,1.16473,0.90462,-0.929225,-0.639061,0.146236,0.41864,0.798123,1.1613,0.6675,0.84164,0.769572,1.22258,1.42871,1.21073,0.759189,0.918854,1.45698,1.53783,1.46243,1.00929,1.30206,1.55896,1.28965,1.42412,1.33097,1.12162,1.11709,0.991848,1.34362,1.1617,1.04646,1.32747,0.99236,0.799499,0.926785,0.974891,0.872555,0.751335,0.860077,0.997851,0.830777,0.604288,0.582615,0.631317,0.818694,0.848372,0.51396,0.749305,0.790451,0.69383,0.63376,3 +0.993228,1.32913,-0.196353,-0.290621,-0.289329,-0.344098,-0.355505,-0.358677,-0.378157,-0.409138,-0.553276,-0.596623,-0.760984,-0.810693,-0.843168,-0.785944,-0.653812,-0.498208,-0.231353,-0.0295218,0.0788452,0.16296,0.186156,0.20287,0.112708,0.1876,0.209339,0.23947,0.332011,0.522364,0.551239,0.510753,0.604518,0.556312,0.621075,0.902023,0.597066,0.755349,1.04072,1.22097,0.967564,0.827078,0.974189,1.17706,0.979981,1.21482,1.1584,1.31315,1.11371,1.1329,1.04279,0.166336,0.371296,0.609098,0.961043,1.10712,1.01419,0.873676,1.19601,0.909835,0.51515,0.448131,0.244142,0.234046,0.232034,0.0301964,-0.090342,0.159197,-0.116332,-0.00777969,-0.0871872,-0.0736695,-0.0160174,-0.135099,-0.110435,-0.03975,-0.0102089,-0.099736,-0.0195893,-0.135668,-0.162587,-0.111246,-0.00791357,-0.165318,-0.15092,-0.102471,-0.0349973,-0.207481,-0.13066,-0.234363,-0.147605,-0.224928,-0.334181,-0.209921,-0.227214,-0.251146,-0.133429,-0.347515,-0.351895,-0.264806,1 +1.00916,0.934142,0.0784215,-0.966164,-0.892977,-0.667967,-0.578879,-0.978792,-1.00384,-1.03956,-1.12004,-1.06372,-0.818613,-0.664838,-0.156873,0.432539,1.0372,1.48289,1.61736,1.74736,1.66765,1.65601,1.63652,1.65682,1.61963,1.59204,1.40773,1.24035,1.23391,1.13086,0.968373,0.796237,0.769825,0.61355,0.17003,-0.245931,-0.356898,-0.79602,-1.07937,-1.1398,-1.31611,-1.40527,-1.18728,-1.2033,-1.43161,-1.28579,-0.740295,-1.12877,-1.18643,-1.18036,-1.13373,1.21421,1.0352,0.696779,-0.11463,-0.916426,-1.59983,-1.3901,-0.915525,-1.04818,-1.19414,-0.859133,-0.950694,-0.864035,-0.814181,-0.687807,-0.680737,-0.567644,-0.434282,-0.431617,-0.336901,-0.320689,-0.0546526,-0.123263,-0.207944,-0.110456,0.0837048,-0.200507,-0.0856391,-0.19059,-0.0693033,-0.276988,0.0359022,-0.0732446,0.0191874,-0.0541256,-0.10681,-0.146864,-0.185979,-0.196693,-0.229101,-0.15919,-0.177626,-0.262463,-0.28,-0.241168,-0.199728,-0.17303,-0.316211,-0.123271,1 +1.0109,1.53278,-0.271674,-0.0441865,0.19732,-0.0656844,-0.07908,0.100974,0.0988127,0.321091,0.384506,0.457567,0.505447,0.630074,0.46029,0.23014,0.0267613,-0.206156,-0.349315,-0.391742,-0.445152,-0.448556,-0.564542,-0.408097,-0.392089,-0.259158,-0.12815,-0.0525283,0.038318,0.20707,0.225412,0.175671,0.588494,0.341131,0.651697,0.788095,0.780718,1.04245,1.20243,0.945717,0.525596,0.238641,0.10185,0.0104536,-0.0707929,-0.377932,0.170619,0.162032,-0.0249632,-0.00104074,0.313849,0.13353,0.345117,0.550069,0.788823,0.8057,0.208587,0.37159,-0.140143,-0.0774797,0.0212694,0.141986,0.140681,0.0201661,0.163686,0.159801,0.0982719,-0.095883,-0.249204,-0.271455,-0.0904428,-0.353291,-0.486748,-0.355193,-0.189231,-0.485324,-0.606867,-0.453261,-0.408478,-0.497727,-0.447037,-0.464876,-0.403276,-0.442194,-0.486171,-0.211809,-0.345386,-0.25383,-0.417732,-0.364297,-0.29929,-0.335712,-0.229911,-0.322677,-0.182711,-0.0981319,-0.0980876,-0.1488,-0.139021,-0.062621,3 +1.01575,-1.30495,-0.0204007,-0.838638,-0.675935,-0.622511,-0.486737,-0.916461,-0.896606,-0.886461,-0.925777,-0.935947,-0.770917,-0.54606,-0.239882,0.202353,0.829574,1.27047,1.31026,1.39625,1.41761,1.45297,1.38856,1.40105,1.32826,1.36901,1.34918,1.24551,1.23067,1.11673,1.08002,0.859005,0.84316,0.653988,0.522008,0.18348,0.110961,-0.174611,-0.507117,-0.671466,-0.603069,-0.843356,-0.851328,-0.867499,-0.974468,-0.787686,-0.737337,-0.670097,-0.877951,-0.676987,-0.554778,0.897804,0.95041,0.824029,0.389928,-0.285414,-0.670305,-0.960752,-0.786775,-0.765669,-0.833266,-0.687541,-0.745891,-0.774291,-0.70298,-0.7045,-0.715523,-0.640125,-0.567859,-0.452356,-0.46606,-0.416818,-0.344365,-0.261382,-0.24737,-0.250211,-0.182795,-0.0900167,-0.223128,-0.236291,-0.280903,-0.20113,-0.129297,-0.322984,-0.319191,-0.215271,-0.205265,-0.325933,-0.29549,-0.274739,-0.245381,-0.253057,-0.34288,-0.332365,-0.269813,-0.374274,-0.396488,-0.365881,-0.30686,-0.348813,1 +1.02025,1.45947,-0.299393,0.391814,0.695838,0.465574,0.373252,-0.687242,-0.768277,-0.87056,-0.907142,-0.847084,-0.800915,-0.775215,-0.561809,-0.176207,0.127773,0.387859,0.65998,0.715629,0.788953,0.781654,0.830972,0.716483,0.748101,0.919206,0.789286,0.681113,0.890352,0.716378,0.871479,0.535602,0.584724,0.596175,0.526848,0.219235,0.088162,-0.0883213,-0.121306,-0.620036,-0.721436,-0.415676,-0.902335,-0.794447,-0.898309,-0.540426,-0.699146,-0.694622,-0.632354,-0.602753,-0.816077,0.845603,0.810347,0.447424,0.27291,0.162452,-0.783788,-0.4651,-0.758254,-0.447188,-0.225208,-0.15138,-0.302712,-0.283253,-0.526659,-0.312918,-0.015555,-0.227674,0.050226,0.126996,0.345425,0.26203,0.264457,0.196414,0.322375,0.405795,0.420233,0.337219,0.419665,0.0909393,0.18334,0.244671,0.29146,-0.0273504,0.149197,0.154873,0.272645,0.171644,0.121526,0.0916121,0.214723,0.1589,0.220013,0.0584656,-0.09805,-0.0459515,0.111016,0.0198087,0.0323728,0.0694868,1 +1.03238,0.864837,0.407427,-1.1833,-0.855672,-1.11684,-1.09264,0.264206,0.296317,0.452245,0.611674,0.73952,0.828042,0.865679,0.828968,0.712685,0.465251,0.164809,0.100519,-0.00776912,-0.146544,-0.108953,-0.143777,-0.172705,-0.170647,-0.103239,-0.0206652,0.00261217,0.1027,0.245356,0.194617,0.228756,0.390566,0.375655,0.464692,0.435896,0.505441,0.720272,0.432675,0.40601,0.157387,-0.0204289,-0.237183,-0.34977,-0.453761,-0.577849,-0.631217,-0.619046,-0.524241,-0.544256,-0.442015,0.178246,0.200663,0.457123,0.520216,0.660556,0.133076,-0.368616,-0.425012,-0.479366,-0.487719,-0.380717,-0.230996,-0.246137,-0.244021,-0.354493,-0.332506,-0.293073,-0.388393,-0.434435,-0.445111,-0.506237,-0.553266,-0.550059,-0.581077,-0.575514,-0.645826,-0.592377,-0.565984,-0.615718,-0.604224,-0.584282,-0.573684,-0.561474,-0.55389,-0.510363,-0.532581,-0.51732,-0.513556,-0.48271,-0.459781,-0.459989,-0.448382,-0.416205,-0.391496,-0.463969,-0.404989,-0.388013,-0.400249,-0.430549,3 +1.05178,1.34899,-0.108377,-0.593926,-0.759021,-0.67933,-0.570503,0.701283,0.658188,0.617098,0.779973,0.717772,0.669959,0.606656,0.335574,0.157693,-0.174759,-0.345575,-0.435711,-0.624738,-0.616616,-0.763968,-0.598286,-0.476124,-0.556112,-0.362185,-0.122038,-0.0922425,0.328759,0.480325,0.526258,0.589915,0.515188,1.04113,1.2699,0.930442,1.04852,1.05163,1.0243,1.01252,0.548003,0.448176,0.263877,-0.127804,-0.37873,-0.456385,-0.479405,-0.560843,-0.590541,-0.125531,-0.238905,-0.087382,0.413653,0.788784,0.919615,0.785628,0.292226,-0.0408461,0.0654703,-0.0530887,-0.106421,-0.00625989,0.0317194,-0.0941875,-0.215129,-0.251841,-0.175004,-0.570249,-0.420282,-0.461772,-0.532575,-0.432122,-0.548336,-0.585043,-0.733478,-0.535841,-0.670213,-0.584651,-0.504864,-0.740072,-0.620725,-0.502021,-0.569536,-0.563383,-0.495646,-0.427301,-0.549538,-0.451278,-0.46425,-0.433813,-0.317174,-0.353592,-0.422207,-0.39504,-0.342158,-0.454971,-0.400704,-0.136297,-0.265108,-0.367729,3 +1.06876,0.21997,0.54602,-1.19192,-1.1558,-1.09411,-1.10102,0.615253,0.741754,0.768874,0.879521,0.869564,0.854301,0.836574,0.731609,0.562059,0.341021,0.0797087,-0.00470587,-0.14569,-0.201899,-0.216094,-0.238111,-0.205367,-0.0726011,0.115204,0.374812,0.639308,0.910241,1.03659,1.22357,1.15748,1.28666,1.2923,1.30763,1.25432,1.13795,0.977601,0.610595,0.226624,-0.24045,-0.661932,-0.841855,-1.14459,-1.16576,-1.09738,-1.17043,-1.08377,-1.07772,-0.966988,-1.02803,0.630629,1.04225,1.32161,1.32212,0.609723,-0.397594,-0.973921,-0.983678,-0.945317,-0.826923,-0.833091,-0.758494,-0.776657,-0.776451,-0.845873,-0.832231,-0.855629,-0.951468,-0.963999,-0.974449,-0.928813,-1.01838,-1.05526,-1.02991,-0.979777,-0.992487,-0.976299,-0.928705,-0.871688,-0.897939,-0.852972,-0.88127,-0.843957,-0.828901,-0.803416,-0.771607,-0.715322,-0.722703,-0.678888,-0.685329,-0.63836,-0.602578,-0.595944,-0.595422,-0.604691,-0.575742,-0.593276,-0.589727,-0.59828,3 +1.07014,1.43259,0.527942,-1.09024,-1.09476,-0.994676,-1.05913,0.769956,0.990684,1.10262,1.19009,1.24633,1.27259,1.16429,1.07173,0.805522,0.348402,-0.0637365,-0.316022,-0.499076,-0.609913,-0.623601,-0.620522,-0.666944,-0.604903,-0.458708,-0.237929,0.0145536,0.261193,0.381335,0.467681,0.731185,0.672272,0.820941,0.929516,1.24175,1.23296,0.920282,0.980041,0.709076,0.330513,-0.116956,-0.192767,-0.62148,-0.627663,-0.658865,-0.660689,-0.694749,-0.709711,-0.518837,-0.539908,-0.108305,0.263982,0.751453,0.966735,1.12969,0.386488,-0.249317,-0.482523,-0.554907,-0.431244,-0.519196,-0.47909,-0.516147,-0.564574,-0.572986,-0.684601,-0.72561,-0.817851,-0.839331,-0.901571,-0.94896,-0.964076,-0.881909,-0.952567,-0.99957,-0.941123,-0.986527,-0.920903,-0.831532,-0.828179,-0.847873,-0.862145,-0.869296,-0.828111,-0.789134,-0.753345,-0.754567,-0.709204,-0.602784,-0.644894,-0.599671,-0.604097,-0.587308,-0.557221,-0.561185,-0.509942,-0.567342,-0.525012,-0.611497,3 +1.07568,-0.157887,0.110961,-1.08507,-0.989628,-0.835583,-0.897187,-0.244528,-0.208615,-0.25129,-0.259839,-0.226715,-0.238147,-0.219718,-0.0887054,0.118265,0.373705,0.61703,0.961691,1.22374,1.31819,1.29803,1.26051,1.34656,1.25544,1.13018,0.947406,0.848547,0.734462,0.6837,0.53352,0.438509,0.259863,0.212509,-0.0843854,-0.343137,-0.394737,-0.679018,-0.925007,-1.11251,-0.944292,-0.862139,-0.91406,-0.839172,-0.831003,-0.860955,-0.620093,-0.573659,-0.781739,-0.72533,-0.779991,1.02564,0.69287,0.353806,-0.11649,-0.594997,-1.18716,-1.0269,-1.0326,-0.793784,-0.950003,-0.931509,-0.835587,-0.824507,-0.807829,-0.712285,-0.68593,-0.682066,-0.644003,-0.526776,-0.47054,-0.488169,-0.338147,-0.374428,-0.329922,-0.279403,-0.319469,-0.266842,-0.304574,-0.313661,-0.309468,-0.2834,-0.305674,-0.343517,-0.307643,-0.391468,-0.417187,-0.351584,-0.371374,-0.33164,-0.402179,-0.384654,-0.386032,-0.378488,-0.416404,-0.394307,-0.389792,-0.39637,-0.397005,-0.427372,1 +1.08989,-0.673049,-0.0420934,-0.736962,-0.687804,-0.696376,-0.620762,-1.09706,-1.15546,-1.14719,-1.04709,-0.780923,-0.517587,-0.214535,0.308984,0.775275,1.29838,1.61902,1.57599,1.52469,1.46658,1.36645,1.33009,1.45738,1.34347,1.29723,1.23442,1.13418,1.24171,0.972409,0.910592,0.94389,0.852003,0.640728,0.231619,0.113704,-0.240302,-0.656228,-0.788637,-1.29372,-1.17307,-1.32982,-1.21585,-1.48101,-1.60327,-1.51757,-1.3418,-1.42726,-1.23727,-1.31602,-1.30429,0.849022,0.922776,0.654765,0.274211,-0.761331,-1.30638,-1.48117,-1.46466,-1.43693,-1.23433,-1.17728,-1.04988,-0.905497,-0.867662,-0.739142,-0.624932,-0.591519,-0.411781,-0.162544,-0.138872,-0.0897809,-0.00197651,-0.0170016,0.0394013,0.0195378,0.14087,-0.0215558,0.0825823,0.0552885,0.0627407,0.0460519,-0.0437806,-0.0559941,-0.06408,-0.067696,-0.151247,-0.106594,-0.136053,-0.0717917,-0.115518,-0.165767,-0.0921234,-0.0658244,-0.180961,-0.19633,-0.150307,-0.153971,-0.0901962,-0.104808,1 +1.09959,1.45688,-0.284931,0.302201,0.373667,0.297958,0.309032,0.342734,0.252343,0.286244,0.145361,0.0488411,0.0206232,-0.0739172,-0.123405,-0.167781,-0.405806,-0.296049,-0.464694,-0.461371,-0.434301,-0.389426,-0.358228,-0.41626,-0.315837,-0.340023,-0.187763,-0.169343,-0.229506,-0.191478,-0.164856,-0.0900323,-0.21246,0.334551,0.396745,0.338775,0.253211,0.751493,1.3549,1.46764,1.34482,1.2371,1.29375,1.2966,1.23272,1.04513,1.1359,0.890368,1.3897,1.73523,1.32109,-0.360566,-0.281857,0.120749,0.453122,1.67999,1.0878,1.15732,1.09599,1.01961,0.609743,0.531441,0.482531,0.201717,0.369166,0.123566,-0.205964,0.107948,0.062105,-0.50347,-0.344918,-0.566874,-0.329861,-0.469286,-0.316656,-0.451946,-0.487155,-0.401827,-0.364192,-0.477673,-0.42275,-0.265671,-0.407681,-0.343359,-0.353954,-0.432968,-0.291622,-0.364191,-0.327601,-0.311987,-0.32248,-0.312988,-0.506999,-0.409927,-0.289717,-0.214937,-0.357661,-0.297753,-0.241837,-0.502719,0 +1.10098,1.8215,2.37785,-1.3608,-1.3508,-1.25889,-1.30484,1.08153,0.930576,0.835795,0.771754,0.818818,0.761376,0.688177,0.64058,0.495051,0.24993,0.126577,0.0593425,-0.00911749,-0.105725,-0.183211,-0.199056,-0.195503,-0.208271,-0.238351,-0.363671,-0.408002,-0.346371,-0.391771,-0.412121,-0.457554,-0.424398,-0.369906,-0.426925,-0.354915,-0.249468,-0.184311,0.00315495,0.0914652,0.187161,0.234865,0.349708,0.342005,0.302051,0.453484,0.549869,0.493794,0.516976,0.49192,0.413618,-0.273878,-0.33669,-0.368331,-0.419185,-0.0749214,0.172294,0.34977,0.354716,0.304341,0.162172,0.00994933,-0.112028,-0.198161,-0.2829,-0.347352,-0.438844,-0.489454,-0.576767,-0.613373,-0.668697,-0.695309,-0.736087,-0.732155,-0.782367,-0.767704,-0.750856,-0.711198,-0.701143,-0.690598,-0.701402,-0.617992,-0.593725,-0.634079,-0.634936,-0.621748,-0.600666,-0.583267,-0.597959,-0.602083,-0.580206,-0.591942,-0.565201,-0.546974,-0.557943,-0.56199,-0.564592,-0.583069,-0.572227,-0.554409,0 +1.15987,1.43431,-0.316867,0.801964,0.487275,0.246821,1.035,-1.77363,-1.81733,-2.03031,-2.23187,-2.41278,-2.69139,-2.98126,-3.31764,-3.39986,-3.42476,-3.03084,-2.8503,-2.62226,-2.31333,-2.46405,-2.39538,-2.43267,-2.33544,-2.45628,-2.54762,-2.55664,-2.6377,-2.65625,-2.5456,-2.52661,-2.704,-2.98995,-3.39346,-3.546,-3.58804,-3.59949,-3.56908,-3.54738,-2.58634,-2.40764,-2.14966,-0.754872,-0.108416,-0.241901,-0.474597,-0.662394,-1.0917,-1.05505,-0.67193,-2.57682,-2.68582,-2.89072,-3.72652,-3.82528,-2.03325,-1.21032,-0.721422,-0.377547,0.0358023,0.200488,0.936173,1.21104,1.80856,2.73303,3.22255,3.99269,4.12203,4.6352,5.27354,5.20037,5.3162,5.7556,5.86479,5.88571,6.02293,6.04695,6.37238,6.48262,6.13695,6.13099,6.04919,6.29626,6.38163,6.06922,6.11355,6.14295,5.88215,6.03933,5.95074,5.96228,6.00938,5.93926,5.97699,6.05742,6.19743,5.92102,6.20098,6.29404,7 +1.16888,-0.724194,-0.19575,0.383197,0.371971,-0.156595,-0.196351,-0.918448,-0.863128,-0.866653,-0.76396,-0.622195,-0.394695,-0.0257563,0.331378,0.743522,1.25629,1.24302,1.42936,1.58125,1.12798,1.12454,1.0074,1.00977,1.05374,0.878639,1.00424,0.79145,0.689945,0.726454,0.564903,0.746816,0.370057,0.261172,-0.164881,-0.306011,-0.477335,-0.636656,-1.09298,-1.38342,-1.48112,-1.07771,-1.60816,-0.909289,-0.847635,-0.931473,-0.996113,-1.28003,-0.846781,-0.999193,-1.12884,1.0088,0.865141,0.411955,-0.139522,-1.02086,-1.46713,-1.47209,-1.08704,-1.01636,-0.932307,-0.808697,-0.727882,-0.632676,-0.597788,-0.457602,-0.431019,-0.360616,-0.315273,-0.353477,-0.1008,-0.0712168,-0.0438045,-0.062082,-0.096401,-0.0574046,0.101175,0.101686,-0.0684063,-0.101932,-0.0496356,0.066115,0.0686565,-0.0958719,0.0518585,-0.0411105,-0.0757946,-0.0440326,-0.0489539,-0.0933907,-0.0886479,-0.0981631,-0.0488391,-0.00629182,-0.0793478,-0.0464021,-0.124995,-0.170138,-0.147961,0.0711899,1 +1.19002,-1.39575,0.0525108,-0.733515,-0.853977,-0.960585,-1.00329,2.21395,2.15826,2.00224,1.94405,1.86159,1.97739,1.85618,1.66814,1.4868,1.07647,0.704707,0.414207,0.182412,0.0731031,0.0343271,-0.0673434,-0.268976,-0.283601,-0.339232,-0.501553,-0.686475,-0.758039,-0.752618,-0.928793,-0.997916,-1.20141,-1.26327,-1.34217,-1.35794,-1.52991,-1.68784,-1.7943,-1.35768,-1.29588,-1.13433,-1.05023,-1.0099,-0.739366,-0.720912,-0.955024,-0.98172,-0.591139,-0.647111,-0.877479,-0.492664,-0.741624,-1.18493,-1.76264,-1.88564,-1.09651,-0.909373,-0.997139,-0.630484,-0.832588,-0.795461,-0.948375,-0.947387,-0.73328,-0.898138,-1.12476,-0.963798,-1.15673,-1.22211,-1.01525,-1.14923,-1.16656,-1.16033,-1.23594,-1.09157,-1.09025,-1.11753,-1.05802,-1.02283,-1.11163,-0.93219,-1.03126,-0.922021,-0.937249,-0.914317,-0.961121,-0.919031,-0.850608,-0.737076,-0.77376,-0.872028,-0.706118,-0.745873,-0.80947,-0.721595,-0.707447,-0.601533,-0.685326,-0.630506,0 +1.1914,1.68324,-0.225276,0.0368096,0.000625886,0.0252262,0.0242304,-1.1747,-1.26339,-1.40089,-1.5263,-1.55764,-1.60091,-1.73687,-1.55164,-1.10849,-0.519151,0.0697866,0.624426,1.08555,1.3795,1.66133,1.70772,1.88141,1.86909,1.78623,1.77223,1.67706,1.36911,1.35028,1.51997,1.43035,1.14084,1.1216,0.972607,0.889757,0.61358,0.24142,0.314592,-0.137841,-0.259108,-0.502963,-0.779194,-0.482013,-0.477412,-0.767621,-0.736215,-0.602195,-0.396963,-0.659271,-0.592254,1.47697,1.65351,1.34108,0.894269,0.143642,-0.651793,-0.829862,-0.899984,-0.779011,-0.952146,-0.727711,-0.694173,-0.719709,-0.52084,-0.408504,-0.440902,-0.357148,-0.0156449,0.243055,0.0997685,0.300086,0.363874,0.336317,0.441658,0.303787,0.28576,0.409042,0.285778,0.25005,0.218526,0.198609,0.203759,0.150631,0.0281892,-0.0782256,0.00681553,0.0244521,0.0603408,0.0134015,-0.0668081,-0.0359432,-0.0380195,-0.0928767,-0.0460553,-0.0894687,0.00501136,-0.0772702,-0.0763587,0.110859,1 +1.20595,1.89868,-0.206596,-0.0441865,-0.0282,-0.435008,-0.313623,-0.965255,-0.95585,-1.01888,-1.07429,-0.996212,-0.905657,-0.653651,-0.386261,0.186798,0.674543,1.05735,1.18665,1.28734,1.24714,1.21759,1.26957,1.19502,1.11143,1.191,1.1783,1.25197,1.2006,1.11859,0.862528,0.882253,1.02076,0.727253,0.635516,0.6042,0.196611,0.159322,-0.324933,-0.203554,-0.490622,-0.525862,-0.47274,-0.551595,-0.496808,-0.445357,-0.781619,-0.462665,-0.573066,-0.393754,-0.656664,1.4998,1.07942,0.796927,0.369394,-0.0717999,-0.393052,-0.616811,-0.579244,-0.542008,-0.669668,-0.609741,-0.47214,-0.453928,-0.597493,-0.509841,-0.21115,-0.399388,-0.557508,-0.379551,-0.273877,-0.270057,-0.349557,-0.253895,-0.149548,-0.190067,-0.197795,-0.324711,-0.222693,-0.150223,-0.245702,-0.219843,-0.302436,-0.366265,-0.185236,-0.185528,-0.216507,-0.122184,-0.0374762,-0.218906,-0.343641,-0.295977,-0.313796,-0.28776,-0.293345,-0.290743,-0.245543,-0.356708,-0.460856,-0.293625,1 +1.21496,0.484486,-0.0975303,-0.53878,-0.826847,-0.849788,-0.63193,-0.614388,-0.631082,-0.611944,-0.604532,-0.596814,-0.654482,-0.486549,-0.357707,-0.142706,0.157249,0.422751,0.594647,0.632623,0.720215,0.714722,0.686306,0.710385,0.673706,0.709074,0.548167,0.604996,0.684925,0.592278,0.507465,0.566288,0.680893,0.451592,0.402596,0.432972,0.0177917,-0.167645,-0.180115,-0.306378,-0.207127,-0.072963,-0.0107942,-0.136123,-0.241905,-0.307504,-0.113163,-0.286275,0.0325355,-0.0583203,-0.070411,0.665993,0.568614,0.396371,0.154536,-0.0728832,-0.289731,-0.185649,-0.153538,-0.16113,-0.109824,-0.184954,-0.154542,-0.22271,-0.193298,-0.180483,-0.178783,-0.201242,-0.156529,-0.0724164,-0.0518256,-0.108951,0.0410606,0.0617313,0.072666,0.125906,0.0289234,0.0103221,-0.0294729,-0.0157996,0.0693373,0.0626237,-0.0624209,-0.0690751,-0.0417261,-0.107906,-0.0554495,-0.159027,-0.156634,-0.107478,-0.0312141,-0.154605,-0.226865,-0.141783,-0.153997,-0.215908,-0.178367,-0.214954,-0.248927,-0.277867,1 +1.22605,0.726296,-0.351214,1.28966,1.41479,1.55082,1.51804,-0.998512,-0.922054,-0.867013,-0.88556,-0.792133,-0.720352,-0.512259,-0.32984,-0.00819041,0.00405838,0.263426,0.0485728,-0.0616802,-0.00834907,0.0307484,-0.000363408,-0.0566205,0.146472,0.0724297,-0.1225,0.00554555,-0.033442,0.353893,0.276169,0.638456,0.493216,0.192747,0.511607,0.67511,-0.135296,-0.274079,0.810131,0.38976,0.0018174,-0.587516,-0.182495,0.0133685,-0.536559,-0.0260373,-0.533731,-0.89745,-0.909977,-0.289683,-0.109074,-0.099594,0.290567,0.326114,0.887941,0.0785725,-0.0699579,-0.31753,-0.180674,0.10632,-0.184911,0.113045,0.35622,-0.164245,0.0707746,0.10422,0.235137,0.414219,1.03061,0.875259,0.645046,0.929975,0.898674,1.01922,0.774734,0.94204,1.21203,1.20477,0.589564,0.513225,0.809439,0.954881,0.755108,0.581119,0.572729,0.573574,0.42511,0.484955,0.549607,0.478293,0.391192,0.393382,0.361228,0.42531,0.448953,0.554726,0.51369,0.218565,0.569335,0.517366,1 +1.22986,1.49064,-0.231302,-0.102779,-0.00446103,-0.0429567,-0.210312,0.991027,0.822117,0.708553,0.656119,0.75287,0.675807,0.564305,0.295945,0.14967,-0.0766208,-0.216047,-0.503368,-0.3454,-0.430054,-0.255841,-0.354499,-0.46663,-0.412034,-0.284337,-0.579374,-0.330551,-0.273223,-0.226247,-0.346946,-0.553161,-0.547496,-0.520407,-0.39077,-0.385828,-0.122262,-0.154545,-0.254638,0.0196175,0.629981,0.266904,0.176764,0.384069,0.738041,0.74292,0.761925,0.97513,0.745805,0.477999,0.429979,-0.431531,-0.438228,-0.459523,-0.281665,-0.0800133,0.36584,0.705687,0.688551,0.41284,0.258008,-0.0151901,0.119176,0.171048,0.0312511,-0.23453,-0.122635,-0.227331,-0.549112,-0.49348,-0.53343,-0.400792,-0.342972,-0.652195,-0.481066,-0.545624,-0.645462,-0.562227,-0.424594,-0.395306,-0.391055,-0.275236,-0.47909,-0.32649,-0.139084,-0.307637,-0.217873,-0.261984,-0.377184,-0.263281,-0.2553,-0.446527,-0.369057,-0.4183,-0.318518,-0.517301,-0.338751,-0.317496,-0.433339,-0.342368,0 +1.23367,1.54719,0.0217795,-0.911017,-0.83702,-0.815696,-0.715696,-0.878916,-0.84395,-0.754674,-0.67643,-0.614071,-0.615289,-0.608841,-0.719668,-0.775215,-0.872934,-0.894637,-0.87159,-0.892964,-0.866131,-0.821033,-0.766737,-0.756803,-0.755988,-0.704221,-0.752642,-0.794357,-0.726268,-0.689595,-0.579023,-0.571555,-0.550474,-0.39799,-0.114925,0.177264,0.47122,0.989036,1.16079,1.64084,1.55771,1.73944,1.53257,1.70854,1.4809,1.42039,1.4974,1.53951,1.64945,1.63059,1.74297,-0.808225,-0.690042,-0.482117,0.0604931,1.09926,1.58211,1.7309,1.7036,1.69919,1.574,1.52627,1.7203,1.79933,1.8522,1.72713,1.59773,1.57268,1.44513,1.32665,1.17167,1.08962,0.901621,0.890376,0.812951,0.749062,0.71012,0.629211,0.60607,0.606405,0.579374,0.569941,0.543504,0.53746,0.588096,0.520417,0.536096,0.503418,0.542873,0.5278,0.527323,0.46068,0.438871,0.473258,0.467289,0.481366,0.485063,0.479666,0.484009,0.568157,1 +1.23506,1.1352,0.274861,-1.01614,-0.974367,-0.929334,-0.883226,0.485539,0.532952,0.695529,0.724373,0.667519,0.631122,0.738498,0.674367,0.32796,0.17381,-0.0223044,-0.170902,-0.26414,-0.358874,-0.208383,-0.290218,-0.276027,-0.12971,-0.0744795,0.205854,0.430976,0.770248,0.957712,1.05247,1.2354,1.22006,1.40128,1.47635,1.56615,1.16567,1.227,1.30598,0.57335,0.479259,0.0711378,-0.285637,-0.321011,-0.624431,-0.613632,-0.864241,-0.683458,-0.710386,-0.869972,-0.600111,0.593304,0.90356,1.33795,1.62559,1.09323,0.418899,-0.372909,-0.645257,-0.599108,-0.537604,-0.501611,-0.537407,-0.39196,-0.559778,-0.663782,-0.678604,-0.726539,-0.772254,-0.905242,-0.884398,-0.973161,-0.954958,-0.962564,-1.08035,-0.924313,-0.920883,-0.924021,-0.941214,-0.974593,-0.868631,-0.868785,-0.852909,-0.83636,-0.849431,-0.800615,-0.809425,-0.752416,-0.658548,-0.663598,-0.713522,-0.669851,-0.653065,-0.601304,-0.632634,-0.594683,-0.58884,-0.581044,-0.604381,-0.619155,3 +1.24684,1.28211,0.87141,-1.1609,-1.1948,-1.21059,-1.21549,1.39349,1.3259,1.21132,1.20106,1.09838,0.930934,0.848062,0.927584,0.639517,0.458554,0.324996,0.165423,-0.0554154,-0.0464152,-0.0388851,-0.0484747,-0.145504,-0.158525,-0.217489,-0.27413,-0.381491,-0.374294,-0.301046,-0.573573,-0.554629,-0.766556,-0.752501,-0.849738,-0.993464,-0.994725,-0.8243,-0.754424,-0.75096,-0.564329,-0.68058,-0.489251,-0.393393,-0.346243,-0.264947,-0.17409,-0.204196,-0.179195,-0.257896,-0.264681,-0.372828,-0.5351,-0.781831,-0.962719,-0.905135,-0.559415,-0.330726,-0.177235,-0.268667,-0.206851,-0.318697,-0.374077,-0.354425,-0.486195,-0.515141,-0.520287,-0.560798,-0.593626,-0.636447,-0.632098,-0.661304,-0.692249,-0.635697,-0.640685,-0.641789,-0.667629,-0.614351,-0.627971,-0.609655,-0.5859,-0.547701,-0.589549,-0.546035,-0.520105,-0.494458,-0.53103,-0.510714,-0.531473,-0.560099,-0.507909,-0.504481,-0.472369,-0.542327,-0.518903,-0.540116,-0.539369,-0.541803,-0.498446,-0.589984,0 +1.26243,-0.661206,-0.297585,-0.0114434,0.187146,0.434324,0.406758,0.416509,0.493224,0.324396,0.304109,0.174268,0.241556,-0.0180036,-0.116436,-0.191936,-0.0679687,-0.0946758,0.12971,-0.0914292,-0.113742,0.0693189,0.0503463,-0.0902595,-0.0235151,-0.153412,-0.00481474,-0.122102,-0.140896,-0.0655406,-0.107053,-0.0495233,-0.422835,-0.552958,-0.241112,-0.680147,-0.497535,0.742826,0.0123918,-0.0215011,-0.482166,-0.325915,0.0779351,-0.144816,0.247244,0.450249,0.711531,0.362424,-0.232046,0.297454,0.207104,-0.014305,-0.0566415,-0.172254,0.157324,-0.612793,-0.341904,0.038686,0.435634,0.289865,0.188864,0.0235502,0.0327699,-0.0588809,-0.0261902,-0.080815,-0.109319,-0.0359287,-0.150948,-0.0345233,0.00591504,-0.156717,-0.112199,0.0740772,-0.320553,-0.281567,-0.174524,-0.0575247,-0.155367,-0.0265069,-0.221174,-0.0789117,-0.0318913,-0.222604,-0.0862191,-0.0330394,-0.115711,-0.231709,-0.282761,-0.318804,-0.228146,-0.353476,-0.191503,-0.28228,-0.179733,-0.297472,-0.271509,-0.164627,-0.141839,-0.36116,1 +1.2652,1.29452,-0.103556,-0.655966,-0.684413,-0.525919,-0.419725,0.399039,0.52139,0.688374,0.776025,0.841743,0.753604,0.803795,0.820503,0.551098,0.124113,0.11257,-0.0415635,-0.256101,-0.376527,-0.310741,-0.466442,-0.39342,-0.336058,-0.215934,-0.167851,0.0272359,-0.0282168,0.0425635,0.277928,0.376011,0.345083,0.671528,0.696149,0.633766,0.722459,1.00568,0.679627,1.12621,0.87639,0.41905,0.0124912,0.313204,0.0302826,-0.380606,-0.362225,-0.334098,-0.158696,0.0321578,-0.212453,-0.12849,0.112976,0.376802,0.827977,0.951912,0.58278,0.166187,-0.114892,-0.136698,-0.36374,-0.213982,0.0125996,-0.154118,-0.359546,-0.187838,-0.213526,-0.560738,-0.63447,-0.644283,-0.620049,-0.571388,-0.712637,-0.900017,-0.806896,-0.751834,-0.889583,-0.763064,-0.789072,-0.76402,-0.718088,-0.69173,-0.787508,-0.64013,-0.749267,-0.606299,-0.565099,-0.561962,-0.60724,-0.4564,-0.500278,-0.510596,-0.538527,-0.525933,-0.455695,-0.447341,-0.534461,-0.369258,-0.365248,-0.460999,3 +1.26797,1.41184,-0.177673,-0.485357,-0.416502,-0.503191,-0.397388,0.306862,0.501622,0.595074,0.688322,0.636785,0.726851,0.635001,0.565897,0.213775,0.0945904,-0.16192,-0.288918,-0.458845,-0.420486,-0.474161,-0.586483,-0.437449,-0.529508,-0.436853,-0.600407,-0.487039,-0.333757,-0.326572,-0.324039,-0.340692,-0.502563,-0.360667,-0.475574,-0.0607646,-0.277853,0.0884329,0.347075,0.324998,0.351663,0.398765,0.594324,0.461107,0.363862,0.345253,0.378013,0.346558,0.335598,0.175136,0.598849,-0.475418,-0.395305,-0.406911,-0.143921,0.302356,0.495549,0.388319,0.303316,0.331479,0.414107,0.4243,0.318248,0.339469,0.159046,0.204128,0.103644,0.0739968,-0.0287491,0.0463811,-0.0429622,-0.187108,-0.158206,-0.124362,-0.132366,-0.235905,-0.293681,-0.183481,-0.227284,-0.296692,-0.370806,-0.297952,-0.31304,-0.343875,-0.290322,-0.267614,-0.206119,-0.326385,-0.343393,-0.395505,-0.286153,-0.259923,-0.209145,-0.248122,-0.217805,-0.170167,-0.22511,-0.287685,-0.244972,-0.217424,0 +1.26762,0.182695,-0.258418,0.522786,0.115929,0.207047,0.255981,0.461665,0.465992,0.286083,0.365966,0.286389,-0.00271789,0.162957,-0.00985195,-0.341305,-0.438148,-0.462251,-0.2857,-0.149865,-0.0504058,-0.0882004,-0.0869319,-0.261949,-0.076616,-0.289032,-0.0715279,-0.00947562,-0.149163,-0.253127,-0.348288,-0.0269884,-0.314205,-0.180123,0.0443013,-0.157844,-0.461409,0.176555,0.360345,0.977425,0.654491,0.922633,0.509874,0.783248,0.749322,0.774314,1.49093,1.039,1.01154,0.682129,0.686819,0.00731528,-0.00445075,-0.265708,-0.265819,0.239202,0.60528,0.613206,0.623745,0.626114,0.175374,0.206584,-0.110895,-0.13492,-0.357304,-0.154102,-0.163669,-0.233616,-0.343041,-0.344406,-0.252888,-0.210276,-0.244489,-0.25475,-0.143667,-0.288251,-0.409475,-0.122204,-0.291024,-0.324778,-0.246466,-0.290179,-0.350504,-0.182333,-0.0584626,-0.137511,-0.252953,-0.248687,-0.382937,-0.333927,-0.223006,-0.343846,-0.443792,-0.442528,-0.428947,-0.429833,-0.329648,-0.224854,-0.240818,-0.519861,0 +1.27074,1.28396,-0.29397,0.998423,0.763664,0.0252262,-0.07908,0.447228,0.605125,0.837035,1.01206,1.12421,1.1545,0.822622,1.09456,0.722851,0.737379,0.569127,0.210049,-0.139877,-0.154967,-0.271699,0.033289,-0.0630794,-0.281161,0.0235168,-0.0123158,0.607389,0.782658,0.771035,0.835268,1.25465,1.21639,0.864262,0.769659,0.791015,0.503153,0.683171,0.742159,0.496429,-1.27674,-0.231143,-0.428503,-0.923952,-0.578972,-1.01641,-2.0051,-1.48021,-0.150563,-1.29598,-1.25625,0.229803,0.705282,1.12066,1.3314,-0.116978,-0.753875,-0.99422,-0.80049,-0.61541,-1.10069,-1.05055,-0.787688,-0.577928,-0.921715,-0.759688,-0.715885,-0.886963,-1.26415,-1.14659,-1.15383,-1.02663,-1.04474,-1.08509,-0.916644,-0.965497,-0.941851,-0.681813,-0.864731,-0.971867,-0.816054,-0.663102,-0.835897,-0.771659,-0.471194,-0.826505,-0.95507,-0.895118,-0.71208,-0.64054,-0.67626,-0.639243,-0.729302,-0.388641,-0.604964,-0.683375,-0.507792,-0.505638,-0.734885,-0.493799,3 +1.27455,1.49066,0.0157538,-0.711112,-0.655587,-0.58842,-0.517451,0.0304416,-0.0393267,-0.118539,-0.206904,-0.273785,-0.335513,-0.409391,-0.3972,-0.301436,-0.170141,0.106437,0.340166,0.550642,0.667796,0.771706,0.85344,0.901895,0.834777,0.799636,0.765926,0.622931,0.702642,0.531443,0.405936,0.449769,0.391699,0.15626,0.317666,0.289176,-0.00554777,0.276277,-0.0103212,-0.0329497,-0.181506,-0.104758,-0.126836,-0.176101,0.125949,-0.01833,0.139165,-0.0252233,0.0191417,-0.0707532,-0.130832,0.56921,0.659676,0.510381,0.26905,0.105149,-0.180231,-0.318651,-0.335173,-0.275456,-0.399519,-0.551292,-0.520078,-0.517117,-0.541879,-0.458774,-0.428354,-0.526877,-0.473738,-0.345204,-0.423702,-0.312805,-0.266365,-0.321743,-0.32201,-0.204545,-0.305119,-0.320747,-0.294779,-0.334684,-0.304677,-0.322609,-0.375587,-0.388235,-0.346869,-0.319536,-0.409023,-0.496223,-0.390774,-0.321569,-0.452254,-0.513929,-0.436282,-0.425248,-0.331248,-0.453457,-0.510384,-0.444439,-0.388284,-0.425502,1 +1.2801,1.0521,-0.156583,-0.611159,-0.574196,-0.477623,-0.514659,1.50557,1.38154,1.51515,1.72868,1.80883,1.85439,1.90319,1.70493,1.67628,1.26013,0.562701,0.351222,0.216887,0.0474634,-0.115404,-0.207207,-0.144609,-0.283156,-0.204321,-0.314966,-0.310184,-0.241997,-0.118104,-0.257595,-0.316856,-0.211142,-0.419204,-0.471393,-0.689751,-0.69491,-0.528458,-0.619583,-0.876568,-1.5182,-1.19642,-1.24248,-0.886647,-0.722076,-0.985531,-1.15135,-1.02464,-1.24188,-0.453447,-0.961272,-0.175328,-0.262082,-0.318103,-0.296252,-0.958953,-1.03974,-0.858357,-1.21164,-1.36406,-1.35249,-1.12744,-1.27024,-0.767348,-0.888891,-1.02814,-0.936779,-1.09511,-0.880492,-0.992653,-1.19539,-1.13684,-1.4262,-1.15097,-1.12477,-0.898855,-1.09024,-1.05031,-0.975748,-0.994922,-1.19857,-1.01466,-0.869826,-1.00764,-0.963387,-0.854991,-1.0048,-0.791,-0.908959,-0.753063,-0.907152,-0.660621,-0.738243,-0.737133,-0.801152,-0.706368,-0.642261,-0.755688,-0.600908,-0.774421,3 +1.28183,1.95248,-0.39942,2.97163,2.97647,4.47984,4.45541,0.172534,0.189906,-0.00813019,-0.0023743,0.016847,-0.0588032,-0.167624,-0.104254,0.0114019,-0.201367,-0.117834,-0.269587,-0.012739,0.39523,0.287006,0.39041,0.281316,0.191384,0.397621,0.252883,0.0154387,-0.0474532,0.0674634,0.0384873,0.137982,0.115345,0.148319,0.333821,0.607259,0.434097,-0.252668,-0.0148718,1.01907,-0.335939,0.238863,0.176073,0.329236,0.13694,0.268344,1.69236,1.99819,0.370565,0.50918,0.25771,0.5611,0.901611,-0.18836,-0.271253,0.0698263,0.0799185,0.626763,0.232885,0.165432,0.392651,-0.0534045,-0.318081,-0.790562,-0.674329,-0.10914,-0.566849,-0.533569,-0.774511,-0.365125,-0.182846,-0.633272,-0.262765,-0.391853,-0.280121,-0.26164,-0.528101,-0.469174,-0.270839,-0.559524,-0.586643,0.0819433,-0.189939,0.653245,-0.585314,-0.318643,-0.128192,-0.349872,-0.16899,-0.328638,-0.520284,-0.707386,-0.350762,-0.249655,-0.852672,-0.176932,-0.264259,-0.563442,-0.760099,0.209167,1 +1.29084,0.454484,0.0247924,-0.98512,-0.962498,-0.747513,-0.883226,2.18495,2.2642,2.23117,2.22084,2.41355,2.31963,2.3488,2.24657,1.75816,1.51152,0.999391,0.575694,0.482824,0.289745,0.0179517,0.0956852,-0.134456,-0.21511,-0.429546,-0.430552,-0.435765,-0.531203,-0.821956,-1.02341,-1.08377,-1.28456,-1.27665,-1.53802,-2.00326,-2.29103,-2.19082,-2.16554,-1.99204,-1.51958,-1.5552,-1.28838,-0.754328,-1.33511,-1.32575,-1.28015,-1.24536,-0.968304,-0.902076,-0.897966,-0.70036,-0.61566,-1.22758,-2.05049,-2.02579,-1.98585,-1.28104,-1.45912,-1.48243,-1.11934,-1.00524,-1.2465,-1.27491,-1.06236,-1.08657,-1.19244,-1.34464,-1.53761,-1.45452,-1.41348,-1.42293,-1.38353,-1.27905,-1.4626,-1.51503,-1.30366,-1.31662,-1.1174,-1.14384,-1.22229,-1.29526,-1.08863,-1.10244,-1.04929,-1.00444,-0.971576,-1.05615,-0.943145,-0.765569,-0.909181,-0.845654,-0.805089,-0.816698,-0.798391,-0.805223,-0.646818,-0.859978,-0.872479,-0.64851,0 +1.3092,1.39137,-0.260828,0.109189,-0.0129392,0.405914,0.186176,0.301425,0.46327,0.467115,0.62199,0.687327,0.780686,0.50474,0.42298,0.23081,0.0333945,-0.118956,-0.178146,-0.451812,-0.504659,-0.411855,-0.555136,-0.449874,-0.456992,-0.317999,-0.156235,0.0423758,0.0459423,0.032557,0.297937,0.163896,0.084645,0.612928,0.686953,0.811515,0.870403,0.900532,1.10713,1.03695,0.961853,0.740292,0.470948,0.0887317,0.101281,0.132867,-0.127024,-0.099139,-0.0472509,0.24512,-0.0527104,0.178046,0.199116,0.570563,0.770522,0.838033,0.83124,0.0863036,-0.0489753,0.161646,-0.138237,0.0225705,-0.00254945,-0.0760952,-0.243242,-0.148619,0.00166484,-0.574321,-0.249182,-0.288456,-0.815092,-0.673495,-0.537409,-0.432984,-0.703679,-0.657625,-0.621193,-0.758931,-0.540456,-0.333938,-0.613234,-0.774417,-0.398541,-0.558397,-0.425303,-0.59891,-0.382882,-0.502889,-0.458842,-0.236637,-0.279698,-0.445328,-0.373725,-0.381827,-0.348364,-0.4505,-0.306514,-0.289519,-0.439811,-0.370798,3 +1.31128,-0.869425,-0.359048,1.32585,1.14518,1.13888,1.14948,0.645083,0.733285,0.740441,0.699077,0.481637,0.579911,0.676366,0.782329,0.0298443,0.46598,-0.443487,0.00487541,0.0375506,-0.0995814,-0.413659,-0.0630849,-0.282887,-0.399079,-0.393413,-0.0639003,-0.266523,-0.468956,-0.116524,0.03569,-0.527402,-0.698404,-0.131032,0.221734,0.490093,-1.74863,2.24284,4.1454,-1.59952,-0.399247,-0.504322,-0.319013,0.560903,0.131402,0.166701,0.527421,0.516578,-0.0351889,-0.0997083,-0.124564,-0.12442,-0.302656,-0.574753,-0.166546,0.430401,0.411079,0.207276,0.868523,0.0170345,-0.11886,0.0351893,0.175513,-0.428041,-0.105663,-0.78461,-0.55312,-0.691236,-0.114636,-0.690178,-0.317548,-0.436502,-0.476571,-0.688407,-0.49242,-0.665114,-0.367174,-0.787137,-0.962155,-0.631824,-0.193888,-0.404473,-0.495475,-0.640174,-0.628453,-0.309349,-0.377066,-0.345779,-0.0765128,-0.574825,-0.377442,-0.102808,-0.353437,-0.198353,-0.424564,-0.25907,-0.102394,-0.274062,-0.470227,-0.592048,0 +1.31301,1.73016,-0.00593894,-0.721452,-0.687804,-0.673649,-0.651476,-0.878843,-0.906707,-0.960676,-0.972904,-0.93605,-0.841065,-0.736907,-0.410096,-0.0210304,0.465397,0.828261,1.08657,1.09755,1.06975,1.05771,0.965498,1.00884,0.957941,1.0188,0.98607,1.06095,1.02462,1.03504,0.956491,0.909608,0.893488,0.980585,0.830298,0.801513,0.743129,0.518091,0.271817,0.0535211,0.000980154,0.0372413,0.0270942,-0.117579,-0.102945,-0.312178,-0.341097,-0.295199,-0.306647,-0.324452,-0.232998,0.940869,1.04297,0.974964,0.908262,0.29684,-0.0739592,-0.243376,-0.271185,-0.470074,-0.353852,-0.387379,-0.431811,-0.409779,-0.3578,-0.531208,-0.415935,-0.442867,-0.393133,-0.390703,-0.350333,-0.219184,-0.236993,-0.31994,-0.26639,-0.200485,-0.245432,-0.258324,-0.239625,-0.271099,-0.25783,-0.253516,-0.265443,-0.246858,-0.275498,-0.271913,-0.280589,-0.287881,-0.312549,-0.25573,-0.348499,-0.285814,-0.259018,-0.299672,-0.458402,-0.31611,-0.328731,-0.349824,-0.328496,-0.324005,1 +1.33241,1.46567,-0.233712,0.185015,0.129495,-0.176482,-0.0651192,-0.50835,-0.42751,-0.299579,-0.116551,-0.0511084,-0.0413106,0.00161685,-0.120386,-0.231945,-0.345981,-0.502846,-0.648692,-0.641471,-0.661095,-0.595017,-0.593595,-0.616586,-0.505867,-0.395665,-0.357024,-0.242994,-0.240589,-0.200163,0.0153534,0.0668821,0.244732,0.53558,0.662487,0.63818,0.879719,0.880343,1.35269,1.24523,0.893891,1.03037,1.07352,0.745001,0.506804,0.705505,0.74148,0.649441,0.698746,0.664568,0.875491,-0.0699791,-0.134394,0.0309181,0.636879,1.37788,1.23213,0.930585,0.823978,0.654739,0.816746,0.727177,0.911645,1.1309,0.854328,0.728094,0.797479,0.686826,0.585415,0.424386,0.375432,0.336075,0.22633,0.250773,0.0969411,0.0599747,0.0813058,0.0480752,0.129836,0.0997998,0.0556196,-0.0877187,-0.0150429,-0.0591515,0.0291225,0.047819,0.00669099,-0.00543647,0.0187796,0.0761175,-0.0386618,0.0523954,0.0765213,0.0876188,0.0293949,0.0576524,0.0508868,-0.00108561,0.0343817,0.104292,3 +1.36325,-0.104923,-0.241546,-0.194115,0.0955817,0.0479538,0.0996191,0.208359,0.156912,0.248491,0.135135,0.110275,-0.0524117,-0.0814198,-0.203471,-0.297924,-0.337153,-0.169438,-0.0354385,-0.0896835,0.0680036,0.160637,0.151263,0.171625,0.0326182,0.0488249,0.131131,0.0782547,0.0249463,0.0852533,0.0199092,0.184078,0.0269965,-0.404088,-0.337373,-0.119738,-0.0543821,0.00645029,-0.127968,0.148239,0.295836,-0.0509893,0.0700299,0.140548,0.637147,0.350492,0.261314,0.728469,0.969808,0.556586,0.671898,0.11774,-0.0415116,-0.0194042,-0.0392822,-0.130256,0.485646,0.352081,0.266142,0.451569,-0.103915,-0.00211924,-0.0393924,-0.0469132,-0.104428,0.070106,-0.0259916,-0.317156,-0.205032,-0.0955578,-0.271617,-0.140166,-0.164966,-0.226002,-0.0643991,-0.173429,-0.00936445,-0.075025,-0.0965742,-0.219281,-0.185492,-0.0249436,-0.158116,-0.101376,-0.0155592,0.00397468,-0.100177,-0.180165,-0.167175,-0.411186,-0.348544,-0.237997,-0.351764,-0.460351,-0.346846,-0.256202,-0.369092,-0.317425,-0.434616,-0.369535,1 +1.36879,1.70722,-0.0842736,-0.714559,-0.636935,-0.34978,-0.402972,2.25154,2.12381,2.00094,1.89303,1.88756,1.95665,1.93817,1.78389,1.42486,0.861475,0.425588,0.245158,0.122759,-0.0850333,-0.124583,-0.291077,-0.377127,-0.333643,-0.402405,-0.478091,-0.640559,-0.683797,-0.895212,-0.988767,-1.0322,-1.10116,-1.10986,-1.35671,-1.68499,-1.49929,-1.63107,-1.37783,-1.02578,-0.540682,-0.918853,-0.848969,-0.789282,-0.78638,-0.64823,-0.621302,-0.585355,-0.554746,-0.674494,-0.73089,-0.502565,-0.63051,-1.05319,-1.58538,-1.53637,-1.16368,-1.03735,-0.590186,-0.50215,-0.818524,-0.994617,-0.617499,-0.750479,-0.916129,-0.987844,-1.06578,-1.16695,-1.1884,-0.984722,-1.03729,-1.20495,-1.12744,-1.2463,-0.973868,-1.32107,-1.26914,-1.10309,-1.05926,-1.01201,-0.990887,-0.849079,-1.13674,-0.795076,-0.92079,-1.03876,-0.872155,-0.893821,-0.742244,-0.774522,-0.720165,-0.718859,-0.718117,-0.809015,-0.654598,-0.660996,-0.62564,-0.642434,-0.706084,-0.786338,0 +1.37017,1.67664,-0.269867,0.0885093,-0.00785232,0.596258,0.557536,0.121687,0.438569,0.549948,0.618621,0.768444,0.346034,-0.198123,-0.840629,-1.88263,-2.62963,-3.01844,-2.95823,-2.93219,-2.8387,-2.81636,-2.92099,-2.75586,-2.86005,-2.90765,-3.08121,-3.14052,-2.88945,-3.01093,-3.38297,-3.36977,-3.07949,-3.09056,-3.02914,-1.84044,-1.60529,-0.809922,1.18919,1.87119,1.60317,2.4585,1.94283,2.76735,2.54684,2.16094,2.80411,2.59079,2.66304,2.56598,2.64373,-3.16512,-3.1879,-3.1564,-2.66368,-0.749155,1.83873,2.7407,3.45754,3.71053,3.55048,3.38493,3.67915,3.71612,3.49182,3.41791,3.08275,3.25097,2.99818,2.87694,2.41974,2.43052,2.24124,2.16415,2.21283,2.04825,1.85929,1.73246,1.81596,2.03119,1.66116,1.7954,1.69594,1.92813,1.98461,1.65587,1.89701,2.06013,1.76888,1.62503,1.89319,1.88551,1.93107,1.73483,1.65828,1.57169,1.9713,1.77472,1.72589,2.262,2 +1.37191,1.60794,-0.309637,0.565869,0.577144,0.584894,0.736235,-0.143742,-0.0232136,0.00491057,0.0685575,-0.0963202,-0.209081,-0.352649,-0.854637,-1.04655,-1.33011,-1.56597,-1.72737,-1.74857,-1.7978,-1.66263,-1.64112,-1.82211,-1.80695,-1.88581,-2.01679,-1.82818,-1.82796,-1.83343,-1.95943,-1.82667,-1.60283,-1.43062,-0.868575,-0.953379,-0.554844,0.383322,0.594748,0.763587,1.68496,1.65334,1.85467,1.73124,1.72785,1.84406,1.88471,2.16538,1.96154,2.20061,2.421,-1.94182,-1.96759,-1.68384,-0.974347,0.866945,1.29902,1.62585,2.3255,2.78856,1.99449,2.34143,1.93675,2.25969,2.55427,2.10752,2.07047,1.8234,1.81454,1.83913,1.49334,1.38805,1.39078,1.26903,1.39126,1.06397,1.14275,1.17451,1.08807,0.934085,1.15481,1.16989,1.11953,1.21639,1.28756,1.07251,0.97257,1.41986,1.21272,0.894517,1.22476,1.30896,0.98154,1.24293,1.17715,1.14586,1.17095,0.995083,1.10154,1.04588,2 +1.37503,1.54691,-0.249379,0.0144064,0.098973,0.192842,0.183384,-0.530646,-0.542886,-0.559619,-0.57509,-0.605729,-0.677557,-0.477922,-0.309917,-0.114436,0.0813225,0.387611,0.489329,0.649564,0.587489,0.627701,0.726228,0.560316,0.625054,0.64719,0.655223,0.565873,0.685932,0.605079,0.597654,0.721593,0.574954,0.545047,0.538633,0.458693,0.428965,0.188419,0.221007,0.304021,0.125414,-0.0366153,-0.0397034,0.0696647,-0.0298703,-0.297397,-0.189456,-0.143541,-0.0356474,0.0263845,-0.194872,0.624447,0.552228,0.586902,0.769013,0.546625,0.187756,-0.396446,-0.195547,-0.0765821,-0.108934,-0.237382,-0.257982,-0.321817,-0.367643,-0.230988,-0.27459,-0.310611,-0.384006,-0.324955,-0.154963,-0.0303059,-0.192717,-0.112725,-0.0737759,-0.21995,0.00139492,-0.269978,-0.202468,-0.0365434,-0.175549,-0.226545,-0.16543,-0.153188,-0.196587,-0.0426248,-0.197503,-0.126619,-0.140805,-0.279737,-0.261794,-0.119062,-0.05013,-0.114958,-0.0400811,-0.259399,-0.160188,-0.117284,-0.199177,0.0216017,1 +1.40621,0.884792,0.274861,-0.99546,-0.935368,-1.00888,-1.00887,-0.26258,-0.437413,-0.529086,-0.581624,-0.62023,-0.733725,-0.783748,-0.68417,-0.456144,-0.129685,0.188809,0.581702,0.846912,1.05493,1.2219,1.24286,1.16901,1.16392,1.13497,1.07515,0.942369,0.887125,0.868147,0.729775,0.564945,0.58536,0.373791,0.274714,0.209966,-0.0836224,-0.16199,-0.410617,-0.592,-0.609862,-0.76095,-0.746843,-0.724644,-0.54487,-0.452661,-0.416682,-0.485881,-0.437107,-0.566757,-0.672768,0.913706,0.881549,0.57119,0.142277,-0.453075,-0.704249,-0.793836,-0.564918,-0.661934,-0.688892,-0.646751,-0.696728,-0.607945,-0.603031,-0.588442,-0.450646,-0.357455,-0.180688,-0.159463,-0.128266,-0.0983065,-0.0957295,-0.0531339,0.00481944,0.0010318,-0.100229,0.0473127,0.0292144,0.0209113,-0.00335247,-0.0477624,-0.00125405,-0.0283169,-0.0684658,-0.150425,-0.175676,-0.153532,-0.208734,-0.209862,-0.202792,-0.196418,-0.22563,-0.269508,-0.267959,-0.234832,-0.279691,-0.225752,-0.285694,-0.319823,1 +1.4166,1.04795,0.220629,-0.95927,-0.989628,-0.966267,-1.00887,0.258832,0.139927,0.00319348,-0.109883,-0.226084,-0.238122,-0.354458,-0.462167,-0.506745,-0.458513,-0.363253,-0.21164,-0.10841,-0.00281634,-0.0288504,0.0325503,-0.0803666,-0.0896449,-0.0349787,-0.0501074,-0.0263561,-0.101168,-0.0110315,0.0169258,0.0532409,0.0242794,0.0901281,0.0561205,0.198396,-0.0792268,0.290698,0.420056,0.477704,0.777197,0.66431,0.852289,0.862371,0.898241,1.15855,1.4097,1.35352,1.29385,1.01897,0.975718,0.00649092,0.147925,0.16883,0.0442576,0.232634,0.424559,1.04286,0.937521,0.606469,0.372413,0.234192,0.0913282,0.112887,0.0633637,-0.101017,-0.0281411,-0.125229,-0.325155,-0.142683,-0.219393,-0.174588,-0.158308,-0.0852483,-0.188384,-0.143259,-0.138464,-0.153912,-0.123079,-0.136123,-0.0863839,-0.0597048,0.0470409,-0.051476,-0.0829142,-0.127034,-0.133977,-0.214138,-0.256596,-0.247089,-0.266439,-0.258734,-0.277405,-0.34874,-0.297568,-0.339009,-0.328329,-0.298263,-0.307668,-0.324245,1 +1.44882,1.58064,-0.218648,-0.321641,-0.324937,0.0223852,-0.0204444,2.4698,2.36532,2.28722,2.31375,2.26632,2.38702,2.16626,1.99416,1.75985,1.37508,0.879217,0.447028,0.21648,0.158559,-0.092943,-0.0841915,-0.270775,-0.325832,-0.409663,-0.454374,-0.503614,-0.711581,-0.713896,-0.956846,-1.20524,-1.15677,-1.43441,-1.56499,-1.74474,-2.26961,-1.83889,-1.951,-1.49161,-1.43469,-1.50922,-1.41338,-0.784964,-1.00906,-0.914933,-1.03805,-0.582904,-0.687329,-0.861295,-1.17214,-0.487577,-0.948255,-1.08106,-1.74833,-1.88709,-1.65634,-1.21744,-1.04507,-1.20376,-1.218,-1.18229,-1.15591,-1.00277,-1.05492,-1.17041,-1.15018,-1.4785,-1.30574,-1.33284,-1.327,-1.37129,-1.55431,-1.47708,-1.27458,-1.26189,-1.41756,-1.36133,-1.23464,-1.29103,-1.25302,-1.2017,-1.28183,-1.10444,-1.11191,-1.01047,-1.10339,-1.10681,-1.01621,-0.945882,-0.908476,-0.954995,-1.05304,-0.848316,-0.791924,-0.648632,-0.671123,-0.872582,-0.795327,-0.789738,0 +1.45263,1.55351,0.0705881,-0.764535,-0.753934,-0.829901,-0.805045,-1.20208,-1.14647,-1.23426,-1.26271,-1.31326,-1.30572,-1.196,-0.972378,-0.579216,-0.198684,0.283302,0.713943,0.983634,1.31248,1.48207,1.42161,1.30546,1.27285,1.29897,1.25437,1.22768,1.06466,1.13524,1.14205,1.08891,0.901733,0.676684,0.514161,0.474399,0.462128,0.240258,0.112485,-0.17094,-0.405094,-0.295828,-0.495951,-0.407115,-0.446225,-0.300394,-0.301722,-0.235702,-0.401927,-0.326766,-0.462525,1.13857,1.22988,0.968373,0.626377,0.0581682,-0.457105,-0.465154,-0.664745,-0.657361,-0.547676,-0.527388,-0.602747,-0.534978,-0.478389,-0.543835,-0.184073,-0.0583804,0.0147295,0.322619,0.204755,0.242829,0.303966,0.281051,0.33933,0.339281,0.358983,0.292258,0.281638,0.251468,0.287851,0.162403,0.081053,0.11869,0.142533,0.0949311,0.0118951,0.0355119,-0.0210692,-0.0450463,-0.0507982,-0.0654713,-0.135817,-0.0755495,-0.109299,-0.0316796,-0.0511541,-0.154618,-0.0949346,-0.175451,1 +1.47827,-1.7499,-0.0414908,-0.831744,-0.818368,-0.7674,-0.72128,0.3567,0.389456,0.363276,0.345011,0.203084,0.122285,0.0748225,0.0141296,0.0612716,0.0414556,0.079294,0.156523,0.268497,0.372096,0.474833,0.51895,0.495023,0.491664,0.439381,0.358543,0.306598,0.261563,0.227351,0.132085,0.0578943,-0.0990113,0.0109232,-0.205357,-0.23323,-0.316731,-0.199371,-0.117705,-0.320086,-0.12799,-0.157191,-0.391958,-0.119806,-0.0630046,-0.0342062,0.0751751,-0.020318,0.130672,-0.0753153,-0.413905,0.182232,0.246861,0.0286245,-0.214657,-0.439001,-0.330231,-0.136737,-0.101908,-0.272998,-0.33562,-0.232613,-0.359439,-0.384052,-0.395771,-0.375131,-0.43741,-0.406141,-0.381223,-0.396593,-0.381035,-0.356194,-0.390175,-0.353867,-0.34305,-0.40061,-0.426887,-0.372509,-0.333523,-0.38065,-0.359626,-0.394865,-0.324883,-0.406507,-0.414306,-0.353141,-0.436139,-0.445713,-0.45839,-0.485433,-0.496485,-0.454487,-0.466852,-0.477079,-0.402255,-0.48861,-0.52814,-0.414828,-0.448188,-0.604573,1 +1.48312,-1.18098,-0.109582,-0.442274,-0.304589,-0.594102,-0.704527,2.66046,2.47143,2.31133,2.30447,2.17281,2.26728,2.16772,2.02365,1.54979,1.39355,0.753824,0.486646,0.164871,0.105037,-0.0469662,-0.20289,-0.273467,-0.431981,-0.442097,-0.273372,-0.510185,-0.88689,-0.772526,-1.10998,-1.21508,-1.36183,-1.58019,-1.99511,-2.12701,-1.16731,-2.00105,-2.11661,-2.35752,-1.72029,-1.25604,-1.36569,-1.55453,-1.13112,-1.09218,-1.02175,-1.24148,-1.37178,-1.00842,-0.95056,-0.543763,-0.819711,-1.29799,-1.9348,-2.14247,-1.61285,-1.44873,-1.10226,-0.96508,-1.05298,-0.801557,-1.08812,-1.10514,-1.07582,-1.25884,-1.18372,-1.18703,-1.23999,-1.34504,-1.17608,-1.40072,-1.35597,-1.29107,-1.43599,-1.26198,-1.17603,-1.28772,-1.3183,-1.04538,-0.963168,-1.07759,-1.1113,-1.1963,-1.02463,-0.929509,-0.832907,-0.916018,-0.927196,-0.912843,-0.850964,-0.776974,-0.947978,-0.722535,-0.677304,-0.693506,-0.722607,-0.689883,-0.717938,-0.626516,0 +1.49178,1.24433,-0.222866,0.343561,0.558492,0.0564767,0.0353991,0.415052,0.564719,0.619898,0.869415,0.87549,0.978881,0.945358,0.915533,0.620174,0.250777,0.234417,-0.0810607,-0.365381,-0.427183,-0.472478,-0.392834,-0.0891898,0.0571838,0.0728728,0.276849,0.169336,0.146523,0.3125,0.225677,0.301981,0.24572,0.165182,-0.0137312,-0.261822,-0.0688656,-0.548345,-0.0689173,-0.337111,-0.205791,-0.00667309,0.226452,0.0907172,-0.331458,-0.371116,0.0659174,-0.066939,-0.193184,-0.193729,-0.25293,-0.11592,0.0802411,0.565827,0.186596,-0.214664,0.00565899,0.0288238,-0.511767,-0.649738,-0.613567,-0.786362,-0.881348,-0.474639,-0.547569,-0.652851,-0.678751,-0.255886,0.0795659,0.0768424,0.273777,0.119099,-0.171722,-0.636762,-0.210716,-0.361308,-0.446019,-0.510514,-0.572324,-0.543277,-0.699002,-0.514477,-0.669034,-0.759728,-0.762126,-0.683112,-0.502003,-0.665231,-0.724702,-0.651201,-0.455209,-0.497953,-0.690853,-0.471241,-0.503581,-0.449341,-0.665299,-0.625675,-0.467671,-0.671876,3 +1.49836,1.61908,-0.0740299,-0.883444,-0.748847,-0.594102,-0.534204,0.278071,0.527144,0.644318,0.718101,0.556122,0.360257,-0.201081,-0.977565,-2.15572,-2.77671,-3.07261,-2.97433,-2.85478,-2.77017,-2.76537,-2.80624,-2.88439,-2.89453,-2.98317,-3.04649,-2.94344,-2.91982,-2.92987,-3.113,-2.93038,-2.7893,-2.3192,-2.11643,-1.34135,-0.720806,0.80859,1.79021,1.99003,2.84147,3.08052,2.92673,2.89158,2.92713,2.71766,2.74037,2.98761,2.74019,3.10698,2.90965,-3.10782,-3.09448,-2.90492,-1.91165,0.646397,3.18156,3.57426,3.49888,3.31586,3.38263,3.27228,3.30983,3.39518,3.27981,2.94952,2.66615,2.80209,2.51483,2.2292,2.12416,1.8927,1.74632,1.72654,1.59953,1.50444,1.50701,1.55013,1.51666,1.35679,1.49856,1.55845,1.51989,1.54224,1.64094,1.72911,1.78967,1.70937,1.61141,1.53521,1.5611,1.60425,1.69221,1.62417,1.55075,1.49928,1.51194,1.60448,1.66431,1.61968,2 +1.50633,0.0463688,-0.23311,0.438344,0.524579,-0.125344,-0.187975,0.212474,0.160937,-0.00839082,-0.134845,-0.194975,-0.307784,-0.286475,-0.406798,-0.229672,-0.0811385,0.133824,0.581753,0.809114,0.803441,1.0421,1.01478,1.00128,1.10988,1.0219,0.91605,0.601899,0.865625,0.594186,0.345275,0.396964,0.368129,0.0911879,-0.191534,-0.280247,0.321704,-0.544028,-1.55513,-0.976519,-0.488643,-0.950221,-0.911923,-0.869291,-1.11282,-0.525166,-0.614685,-0.286401,-0.450659,-0.849322,-0.608513,1.13274,0.734716,0.207484,-0.322284,-0.850091,-1.08571,-0.839703,-0.740741,-0.904547,-0.789141,-0.656831,-0.797131,-0.763976,-0.546109,-0.610177,-0.490219,-0.321083,-0.293275,-0.631068,-0.299821,-0.0637738,-0.147866,-0.478201,-0.11053,-0.0819405,-0.213811,-0.0552766,-0.223083,-0.359279,-0.223545,-0.269729,-0.211676,-0.226229,-0.20913,-0.17754,-0.386907,-0.266963,-0.418913,-0.565295,-0.42696,-0.236649,-0.18323,-0.408119,-0.351216,-0.578707,-0.264185,-0.293553,-0.547192,-0.505154,1 +1.5098,-0.847419,2.72131,-1.36425,-1.34741,-1.114,-1.3216,0.731698,0.677025,0.520068,0.4399,0.379576,0.323721,0.172422,0.174826,0.00878052,-0.113808,-0.11708,-0.0906579,-0.109733,-0.0666074,-0.023785,0.035578,0.0180082,0.0429785,0.0771885,0.0474375,0.128173,0.0645801,0.0117129,0.0299567,0.0373898,0.0221112,0.136178,0.266335,0.432626,0.437607,0.534338,0.635418,0.622436,0.735824,0.644039,0.579477,0.415806,0.174567,0.0326682,0.0261243,0.0881355,-0.106891,0.0178122,-0.00645303,0.255523,0.227855,0.39612,0.489441,0.357755,0.402135,0.0718151,-0.0120525,-0.210989,-0.319248,-0.316552,-0.367815,-0.443645,-0.415729,-0.439283,-0.479581,-0.544299,-0.559751,-0.53103,-0.572022,-0.56335,-0.613107,-0.615346,-0.573966,-0.625965,-0.630341,-0.651281,-0.597039,-0.57932,-0.581171,-0.591709,-0.577344,-0.588694,-0.558335,-0.536793,-0.485514,-0.484925,-0.481352,-0.427147,-0.442188,-0.437033,-0.432642,-0.411119,-0.385153,-0.397525,-0.37777,-0.385656,-0.376911,-0.376371,3 +1.51881,1.52828,-0.237328,0.0195764,0.0531907,-0.1708,-0.285701,-1.0138,-1.01771,-1.0818,-1.21649,-1.27994,-1.39029,-1.63056,-1.66533,-1.42881,-1.19497,-0.734001,-0.288045,0.036856,0.396035,0.569111,0.683415,0.96201,1.07224,1.13158,1.15463,1.11313,1.08734,1.13768,1.0712,1.02149,1.08031,1.14797,1.37988,1.0315,1.20755,1.11117,1.02928,0.976503,1.04524,0.697219,0.39963,0.542186,0.557287,0.226355,0.370242,0.334299,0.249575,0.282963,0.197432,1.14631,1.20288,1.06511,1.39274,1.4637,0.427807,0.319774,0.365164,0.0173842,0.0142733,-0.0727551,-0.184268,-0.046217,-0.226139,0.0068988,0.0548772,0.0977301,0.151937,0.101498,0.294786,0.314519,0.383088,0.412165,0.371622,0.311145,0.286729,0.242437,0.22684,0.175273,0.214752,0.107996,0.257764,0.126459,0.170768,0.320248,0.183962,0.171756,0.25606,0.174575,0.142838,0.120139,0.221198,0.112429,0.130426,-0.0606984,0.150375,0.137357,0.17889,-0.0719491,1 +1.52885,-0.905511,-0.149352,-0.743855,-0.54537,-0.577056,-0.545373,0.354511,0.446603,0.503841,0.543543,0.461921,0.543534,0.482228,0.402934,0.498106,0.533578,0.441842,0.391691,0.300101,0.406082,0.311595,0.31125,0.318949,0.235243,0.266949,0.289262,0.186984,0.260157,0.190291,0.239621,0.052332,0.0160013,0.057914,-0.26515,-0.54725,-0.174602,-0.0960642,0.188459,-0.138727,-0.320735,-0.314467,-0.0533749,-0.416393,-0.230775,-0.177377,-0.2455,-0.182995,0.0255647,-0.0397477,-0.154111,0.170309,0.171769,0.126717,0.0235141,-0.330738,-0.40722,-0.298039,-0.132037,-0.157998,-0.274427,-0.329898,-0.260957,-0.416173,-0.46648,-0.529559,-0.538883,-0.637787,-0.660422,-0.683748,-0.615013,-0.556984,-0.669879,-0.743199,-0.663842,-0.69225,-0.727515,-0.758087,-0.68293,-0.609103,-0.686521,-0.638201,-0.654627,-0.669805,-0.668467,-0.53997,-0.692457,-0.520664,-0.607339,-0.500825,-0.578784,-0.584583,-0.506383,-0.576198,-0.468085,-0.581117,-0.494094,-0.467386,-0.446571,-0.563387,1 +1.52989,-0.830868,-0.182493,-0.46123,-0.567414,-0.344098,-0.199144,-0.925623,-0.968521,-1.00905,-0.966372,-0.877383,-0.764703,-0.47788,-0.243874,0.433973,0.813806,1.21725,1.49473,1.45733,1.23837,1.22423,1.32766,1.43507,1.25117,1.21342,1.24213,1.28031,1.18376,1.14557,1.07293,0.904592,0.923011,0.857582,0.342388,0.226485,0.0322508,-0.282134,-0.654695,-0.81046,-0.816435,-0.823252,-1.17763,-1.09241,-0.980811,-0.803492,-1.1137,-1.05965,-1.06737,-1.11692,-0.802501,1.40707,1.0038,0.816368,0.163631,-0.521271,-0.719753,-0.994944,-1.11761,-0.94268,-0.826894,-0.569228,-0.630184,-0.702135,-0.814145,-0.717738,-0.570984,-0.276012,-0.3445,-0.12807,-0.206304,-0.0564879,-0.131815,-0.0337146,0.102583,-0.170484,-0.0420859,0.0381066,-0.183651,-0.125552,-0.168056,-0.24409,-0.213074,-0.158638,-0.0775361,-0.18228,-0.314126,-0.273913,-0.3269,-0.395797,-0.260822,-0.29142,-0.263475,-0.372205,-0.2982,-0.320394,-0.429541,-0.261299,-0.233433,-0.290831,1 +1.53544,1.63046,0.0687803,-0.986843,-0.993019,-0.727627,-0.668229,0.238985,0.291168,0.420756,0.5863,0.689616,0.804261,0.734188,0.636509,0.363159,0.111224,-0.075963,-0.261723,-0.42469,-0.454165,-0.480604,-0.541523,-0.464743,-0.463967,-0.474513,-0.431354,-0.337442,-0.334298,-0.318167,-0.21662,-0.112837,-0.070503,-0.0135531,0.182962,0.40132,0.657076,0.776252,0.832392,0.662163,0.896905,0.877725,0.74543,0.680444,0.480685,0.306368,0.31901,0.269988,0.278187,0.286782,0.373748,-0.224004,-0.324189,-0.064962,0.284446,0.771207,0.902421,0.662407,0.590025,0.27572,0.216575,0.149199,0.423558,0.327903,0.414061,0.208008,0.101933,0.000718686,-0.129026,-0.227861,-0.268691,-0.234121,-0.491319,-0.496445,-0.387236,-0.453001,-0.544304,-0.456281,-0.54701,-0.560667,-0.425277,-0.525018,-0.42328,-0.458799,-0.436044,-0.405616,-0.422695,-0.433923,-0.449911,-0.421427,-0.372797,-0.453144,-0.355172,-0.30307,-0.363559,-0.429864,-0.30377,-0.40574,-0.343605,-0.36782,3 +1.54895,1.60449,-0.277098,0.293585,0.346537,0.351936,0.186176,-0.513767,-0.508904,-0.632351,-0.657889,-0.692905,-0.602592,-0.460859,-0.286308,-0.245146,0.175099,0.211267,0.104305,0.342644,0.463365,0.424947,0.543696,0.465174,0.636772,0.661367,0.703191,0.645694,0.651375,0.576944,0.69773,0.843649,0.900574,0.796096,1.05701,1.33339,1.43322,1.44693,1.53141,1.10153,1.42997,1.26386,0.701791,0.833411,0.475839,0.337402,0.311064,0.265424,0.148454,0.36316,0.42903,0.60415,1.02859,1.03223,0.734001,1.48929,1.15154,0.293787,0.589811,0.268325,-0.111959,-0.423063,-0.342032,-0.303833,-0.366359,-0.518295,-0.296845,-0.550876,-0.543678,-0.667068,-0.770905,-0.413452,-0.652681,-0.752601,-0.499043,-0.505426,-0.535502,-0.49248,-0.451184,-0.398416,-0.393743,-0.353634,-0.39777,-0.396933,-0.398733,-0.326133,-0.215897,-0.447092,-0.497539,-0.251694,-0.337243,-0.411106,-0.348168,-0.217059,-0.106937,-0.266511,-0.362696,-0.354915,-0.381978,-0.315049,1 +1.55068,-0.796227,0.107948,-1.0058,-0.974367,-0.898084,-0.902771,2.3113,2.2929,2.16506,1.95714,1.90108,1.83985,1.87658,1.82554,1.54561,1.20728,0.822051,0.470641,0.2678,0.0994095,0.146788,-0.0532928,-0.140844,-0.233852,-0.435993,-0.367279,-0.46701,-0.628938,-0.772563,-0.753882,-0.924142,-1.14947,-1.48763,-1.29774,-1.5405,-1.28304,-1.67955,-1.51764,-1.14369,-1.06051,-1.16521,-0.897866,-1.07302,-1.0866,-0.929911,-0.827684,-0.810037,-0.744301,-0.739065,-0.816469,-0.734097,-0.626212,-0.908266,-1.42164,-1.80608,-1.50995,-1.09989,-1.06176,-0.943114,-1.00907,-0.976207,-1.03997,-0.912838,-1.00227,-1.01792,-1.10987,-1.23604,-1.25412,-1.29125,-1.2314,-1.30922,-1.30699,-1.31721,-1.2494,-1.22774,-1.2095,-1.23218,-1.2456,-1.0882,-1.1298,-1.19526,-1.13254,-1.08824,-1.07355,-1.11927,-1.051,-1.01293,-0.936722,-0.883002,-0.921372,-0.854162,-0.813591,-0.800912,-0.86606,-0.835679,-0.765765,-0.736805,-0.767394,-0.712579,0 +1.55345,1.50231,-0.311444,1.50508,1.3317,0.297958,0.861882,-1.58695,-1.68454,-1.74444,-1.80666,-1.81563,-2.22828,-2.64535,-2.95366,-3.1349,-3.20133,-2.9554,-2.68898,-2.47341,-2.40935,-2.24658,-2.23944,-2.18897,-2.15294,-1.95921,-1.71805,-1.67884,-1.44868,-1.19974,-0.816177,-0.482098,0.157716,0.473621,1.00438,1.09543,1.4739,2.21104,3.23201,2.86819,2.47515,2.90454,2.24632,2.06721,1.93067,1.4846,1.92923,1.99991,1.77841,1.97106,2.27129,-1.46639,-1.00718,-0.0566697,1.25453,2.46988,2.43763,2.25595,2.32781,2.15772,2.48176,2.17426,2.08901,2.40564,2.40192,2.25543,2.51901,2.53133,2.37957,2.29242,2.30496,2.22464,2.10767,2.07117,2.04479,2.11687,2.0167,2.14053,2.05859,2.18772,2.19933,2.56106,2.68707,2.9827,3.23141,3.29934,3.18783,3.41508,3.29309,3.17022,3.2426,3.0533,3.04042,2.98792,2.98363,2.94456,2.84399,2.99124,2.89063,2.95026,6 +1.55796,0.529127,-0.333137,0.751988,0.817925,0.843421,0.82,0.575548,0.774226,0.924698,0.786164,0.635602,0.280907,0.517929,0.737349,0.277447,0.53545,-0.0279899,-0.119533,0.0323048,-0.176139,-0.23162,-0.0777754,-0.475571,-0.268499,-0.278735,-0.335152,-0.264959,-0.352827,-0.587872,-0.290473,-0.0936785,-0.0858996,-0.338351,-1.00675,0.357038,0.127031,-0.944676,-0.383902,-0.538547,0.281581,0.0434428,0.381055,1.19728,0.162801,-0.373221,0.943429,0.861752,0.507695,0.294779,0.0129997,0.117177,-0.478321,-0.755686,-0.290389,0.598784,-0.50868,0.605686,0.92701,0.415665,0.107063,0.105063,0.679154,0.08636,-0.0334408,-0.309147,-0.323041,0.248605,-0.266813,-0.467454,-0.607209,-0.125413,-1.03768,-0.658564,-0.444325,-0.414062,-0.553269,-0.869047,-0.922354,-0.492452,-0.628279,0.0397387,-0.582078,-0.995456,-0.38459,-0.695013,-0.389729,-0.441188,-0.564105,-0.417883,-0.701234,-0.587234,-0.536136,-0.580826,-0.399967,-0.23474,-0.293349,-0.610467,0.0796552,-0.742986,0 +1.55934,1.55239,-0.299393,0.622739,0.729751,0.539439,0.658054,-0.630616,-0.897073,-0.858429,-1.11982,-1.19341,-1.28382,-1.06863,-0.959819,-0.632147,-0.429257,0.325336,0.641846,1.09688,1.36277,1.4475,1.72181,1.49162,1.48651,1.50496,1.61382,1.26245,1.24146,1.04333,1.14051,1.11942,0.541564,0.389341,0.581343,0.558973,-0.331355,-0.0278251,-0.70466,0.258317,-0.0535645,-0.209997,-0.262686,-0.468687,-0.912781,-0.313873,-0.773251,-0.268268,-0.0939685,-0.169759,-0.397678,0.90896,1.1099,0.781867,0.224353,0.311035,-0.967443,-0.670933,-0.324971,-0.480867,-0.64106,-0.962377,-0.727225,-0.474408,-0.470156,-0.502797,-0.60098,-0.462604,-0.144406,-0.101183,0.0478967,-0.0474597,-0.0403061,0.147762,0.0521456,0.0291212,0.0432592,0.102857,-0.415669,-0.189714,0.0522311,0.0719165,-0.24105,-0.210006,0.0039691,-0.248184,-0.208207,-0.0833091,-0.260117,-0.168479,0.0973396,-0.141999,-0.321476,-0.188898,-0.236733,-0.308267,-0.245817,-0.114036,-0.0889151,0.00749719,1 +1.57147,1.62465,-0.331932,1.38962,1.73527,1.03661,1.21928,-0.783359,-0.784918,-0.732387,-0.549497,-0.548865,-0.321848,-0.390266,-0.581053,-0.747118,-0.828887,-0.803598,-1.01592,-1.08106,-1.07545,-0.90051,-0.866643,-0.837678,-0.897821,-0.792378,-0.924616,-0.715585,-0.809107,-0.741553,-0.498814,-0.453086,-0.22096,-0.460263,0.165231,0.248769,0.830829,0.427797,1.37226,1.49022,1.56289,1.67156,1.76399,1.68244,1.15139,1.28107,1.62594,1.23006,1.02343,1.14738,1.00682,-0.753049,-0.60761,-0.179985,0.081105,1.28021,1.75077,1.6446,1.42128,1.72718,1.66082,1.58713,1.97212,2.03045,1.9622,1.60165,1.68082,1.7994,1.62413,1.32445,1.09094,0.952531,1.2025,0.984692,0.752613,0.836541,0.657383,0.469588,0.69707,0.605011,0.500902,0.414824,0.432587,0.721613,0.460277,0.542089,0.429183,0.454985,0.480112,0.376862,0.559975,0.366828,0.243338,0.449557,0.548578,0.447597,0.42593,0.434137,0.410136,0.516604,3 +1.5732,1.51586,-0.314457,1.02083,0.616143,0.48262,0.540783,0.324271,0.382012,0.329426,0.26609,0.162452,0.0686405,0.0864657,0.0684742,-0.331285,-0.158224,-0.185348,0.0557671,0.0198606,0.0251546,-0.0626319,0.128663,0.0475375,0.217109,0.0753161,-0.198282,0.0107353,0.372254,-0.0324548,-0.0526733,0.234029,0.186007,-0.119772,0.109757,-0.31769,0.111812,-0.0673163,0.713393,0.00742014,0.476874,0.556682,0.0914149,0.172851,0.566431,0.0895054,0.807505,0.474625,0.683205,0.457918,0.458376,0.0720569,0.167905,0.0517749,-0.28733,-0.317974,0.37802,0.543889,0.131679,0.387036,0.0490237,0.132848,-0.431805,-0.142637,-0.158892,-0.359203,-0.538868,-0.54195,-0.017831,-0.272506,-0.449566,-0.218126,-0.557014,-0.301951,-0.302674,-0.299698,-0.215972,-0.243697,-0.279793,-0.161929,-0.318408,-0.291091,-0.439921,-0.280505,-0.118341,-0.214957,-0.381648,-0.239097,-0.312909,-0.287353,-0.31975,-0.395985,-0.315537,-0.67194,-0.273458,-0.337332,-0.459835,-0.37369,-0.614264,-0.387806,1 +1.57909,1.59656,-0.271072,0.371134,0.750099,1.69287,1.65765,-1.02804,-1.19621,-1.26817,-1.41568,-1.4676,-1.53677,-1.68622,-1.54548,-1.06664,-0.473999,0.0834869,0.569856,0.92311,1.26917,1.49645,1.63231,1.64326,1.62964,1.675,1.66788,1.48449,1.63434,1.68892,1.40519,1.44106,1.56902,1.1998,1.381,1.26239,1.0758,0.289165,0.122733,0.387343,-0.265815,0.0865122,-0.0372738,-0.33844,-0.407207,-0.175835,-0.5329,-0.426362,-0.35417,-0.477088,0.0494512,1.53423,1.68524,1.52883,1.22005,0.612007,-0.0895069,-0.329422,-0.448247,-0.541674,-0.550091,-0.563812,-0.699552,-0.524618,-0.492671,-0.370429,-0.455333,-0.217919,-0.0325082,-0.217593,0.170586,0.133598,0.21024,0.0254094,-0.0435274,0.224952,-0.047567,-0.0794509,0.0752407,0.0412719,-0.157841,-0.0622568,-0.311621,-0.151743,-0.233402,-0.208739,-0.0801965,-0.146055,-0.0288654,-0.159574,-0.187306,-0.228352,-0.302293,-0.163085,-0.202676,-0.289161,-0.259732,-0.315959,-0.104746,-0.41436,1 +1.59572,1.58556,-0.140916,-0.414701,-0.45211,-0.571374,-0.500698,-0.905869,-0.978272,-0.883904,-0.902768,-0.784546,-0.658101,-0.294505,0.157995,0.549237,0.940415,1.15524,1.35317,1.37744,1.33779,1.38652,1.25916,1.31267,1.22595,1.08118,1.05319,0.919809,0.805873,0.718691,0.719976,0.442496,0.476205,0.253259,0.00453659,-0.249917,-0.611532,-0.563424,-0.919191,-1.7671,-1.7493,-1.24455,-1.41065,-1.48965,-1.32688,-1.35406,-1.23252,-1.46331,-1.45519,-1.23037,-1.30871,1.38117,0.878073,0.403169,-0.377615,-1.52159,-1.67661,-1.10993,-1.51471,-1.20282,-1.00628,-0.938017,-1.15185,-0.870629,-0.735529,-0.57614,-0.428187,-0.300884,-0.168199,0.00407351,0.0903399,0.042434,0.311535,0.306739,0.238112,0.300768,0.205678,0.326669,0.232176,0.193835,0.162216,0.150834,0.0653634,0.182574,0.170282,0.144582,0.00942395,0.0673186,0.148259,0.101567,0.0950811,0.0057201,0.0186299,0.0262205,0.000434276,0.00898487,-0.00689386,-0.0534605,-0.200866,-0.0559015,1 +1.65981,1.50926,-0.154775,-0.499143,-0.387676,-0.435008,-0.511867,-0.436885,-0.412798,-0.359239,-0.351669,-0.333603,-0.271499,-0.0887598,0.214632,0.490415,0.70809,0.881059,1.19793,1.22988,1.15686,1.18748,1.166,1.0703,0.995211,1.0778,0.941539,0.819491,0.680169,0.688674,0.717696,0.644977,0.507493,0.453676,0.100482,0.118952,-0.256293,-0.39122,-0.452528,-0.488167,-0.491516,-0.898099,-0.693121,-0.81186,-0.854359,-0.775579,-0.855598,-0.956207,-0.914842,-0.741516,-0.793547,1.13271,1.00647,0.501262,-0.0559121,-0.460403,-0.754761,-1.05133,-0.906661,-1.0013,-0.961101,-0.889595,-0.972487,-0.905427,-1.05573,-0.793448,-0.697047,-0.775293,-0.809546,-0.64103,-0.476254,-0.482223,-0.420767,-0.466719,-0.431111,-0.359531,-0.349626,-0.374591,-0.438329,-0.501712,-0.413443,-0.265392,-0.262097,-0.362239,-0.456,-0.329193,-0.350755,-0.32442,-0.371001,-0.362404,-0.291496,-0.376743,-0.386019,-0.390213,-0.285351,-0.30895,-0.327816,-0.360805,-0.348653,-0.450017,1 +1.67159,1.18038,-0.0637861,-0.904124,-0.804803,-0.753195,-0.724072,1.48329,1.41836,1.34638,1.25868,1.09663,1.2731,1.24408,1.26789,1.0191,0.627887,0.240739,0.215015,0.111737,-0.125286,-0.122989,-0.156461,-0.308249,-0.3884,-0.306916,-0.320895,-0.422789,-0.521082,-0.525533,-0.519065,-0.830968,-0.528459,-0.350475,-0.441896,-0.923138,-0.214668,-0.387382,-0.61292,-0.0331267,-0.106019,-0.513226,-0.479881,-0.261192,-0.262167,-0.183848,0.0965018,-0.00834837,0.150746,0.022899,-0.171138,-0.327636,-0.493462,-0.63593,-0.523237,-0.269625,-0.270751,-0.100867,-0.318842,0.043593,-0.461173,-0.389146,-0.318468,-0.56253,-0.582801,-0.707728,-0.638594,-0.840676,-0.777487,-0.9502,-0.846803,-0.986562,-1.10194,-0.889291,-0.969729,-1.0651,-0.988539,-0.932931,-0.818458,-0.829231,-0.882184,-0.741829,-0.865712,-0.756254,-0.891836,-0.773374,-0.781385,-0.729781,-0.751062,-0.631876,-0.660703,-0.720736,-0.519549,-0.747816,-0.766805,-0.663268,-0.575664,-0.661702,-0.703413,-0.8164,0 +1.69204,1.652,-0.215635,-0.214795,-0.336807,-0.26171,-0.213104,-1.22088,-1.26827,-1.30803,-1.43492,-1.56649,-1.51919,-1.55149,-1.38444,-1.12773,-0.661591,-0.190888,0.359242,0.700213,0.798357,0.885296,0.859346,0.85613,0.925336,0.914057,0.853728,0.852707,0.872411,1.01396,0.879973,0.979542,1.00976,1.06919,1.18174,1.33469,0.97279,1.03444,0.808768,0.760125,0.769786,0.199356,0.609107,0.582065,0.20779,0.114734,0.315604,0.491779,0.483103,0.615667,0.425769,0.646067,0.898291,1.00604,1.14186,1.0832,0.644782,0.266479,0.294329,0.139911,-0.0638762,-0.101159,0.060445,-0.0548279,-0.0263825,-0.0487213,-0.0320452,0.146399,0.101981,0.131376,0.251394,0.391653,0.528835,0.498203,0.461134,0.485796,0.48576,0.454373,0.36268,0.405824,0.360151,0.364148,0.286334,0.32951,0.363318,0.243766,0.092225,0.182202,0.190175,0.058437,0.0343911,0.0788878,0.162914,0.043747,-0.0215505,-0.0250249,-0.0158933,-0.0386104,0.0423519,0.01181,1 +1.69446,0.430963,-0.174057,-0.426764,-0.406328,-0.551488,-0.42531,-0.85268,-0.935562,-0.89637,-0.852444,-0.717101,-0.72223,-0.259578,0.0659294,0.575624,1.09044,1.31335,1.25418,1.25243,1.29002,1.18997,1.23066,1.20005,1.17565,1.20111,1.15693,0.995036,0.864116,0.889247,0.978105,0.608769,0.853023,0.539567,0.432203,0.478907,-0.250568,-0.302722,-0.295665,-1.3144,-1.29087,-0.969027,-0.58551,-0.87826,-0.835224,-0.794551,-0.861036,-0.962148,-0.729083,-0.665821,-0.708492,0.715204,0.71124,0.469551,0.131547,-0.141761,-0.880684,-0.802795,-0.65655,-0.86887,-0.724403,-0.492607,-0.467051,-0.510453,-0.567424,-0.468648,-0.469517,-0.436712,-0.42558,-0.390329,-0.337255,-0.218604,-0.119029,-0.0998807,-0.184081,-0.285609,-0.204763,-0.193753,-0.102383,-0.0972814,-0.226227,-0.158368,-0.240938,-0.143692,-0.0762933,-0.277734,-0.262492,-0.200828,-0.260503,-0.222593,-0.235893,-0.225611,-0.38713,-0.281811,-0.227143,-0.32105,-0.36477,-0.270079,-0.399896,-0.295702,1 +1.69585,1.76853,-0.224674,-0.278558,-0.365632,-0.187845,-0.1433,0.705044,0.836272,0.986217,1.05191,1.16297,1.18443,1.07865,1.00243,0.678964,0.306984,0.0583699,-0.135982,-0.254738,-0.295098,-0.280425,-0.372861,-0.337024,-0.287545,-0.0371126,0.246347,0.407631,0.591384,0.65848,0.599511,0.685259,0.796379,0.737442,0.885008,0.749511,0.641265,0.458028,0.411424,0.0181367,-0.184608,-0.536902,-0.714953,-0.812343,-1.02181,-0.799222,-0.965813,-0.845403,-0.841507,-0.992276,-0.726342,0.485176,0.616169,0.723792,0.570523,0.503551,-0.227573,-0.794995,-0.898453,-0.659172,-1.09439,-0.709752,-0.73017,-0.661259,-0.663233,-0.678605,-0.628735,-0.589421,-0.89737,-0.764886,-0.946061,-0.98953,-0.855045,-0.930214,-0.943355,-1.00903,-0.850287,-0.947014,-0.951542,-0.699454,-0.733628,-0.825411,-0.778937,-0.84323,-0.837014,-0.78605,-0.736504,-0.747955,-0.655771,-0.500138,-0.719323,-0.726755,-0.507917,-0.491882,-0.6907,-0.542757,-0.669635,-0.576841,-0.551656,-0.558264,3 +1.69966,-0.466905,0.116986,-1.07301,-1.03711,-0.631034,-0.648683,0.690579,0.553329,0.526761,0.479465,0.350427,0.376298,0.345992,0.157857,0.226067,0.275421,0.361766,0.344236,0.476506,0.460221,0.356623,0.405872,0.49782,0.396976,0.318283,0.278583,0.130165,0.203162,0.172677,0.0836893,-0.0569557,-0.0683842,0.0324461,0.0496983,-0.0891191,-0.233437,-0.348214,-0.0294719,-0.315661,0.159657,-0.0521569,-0.0749896,-0.0926596,0.016571,-0.02343,-0.0733495,0.269522,0.213891,0.105189,-0.0529334,0.314781,0.114257,0.117228,0.067933,0.13397,-0.331114,-0.260444,-0.213711,-0.244089,-0.466639,-0.534943,-0.532099,-0.69747,-0.682427,-0.592181,-0.735516,-0.661096,-0.783219,-0.755229,-0.751873,-0.702623,-0.6785,-0.504731,-0.76231,-0.731519,-0.660541,-0.714259,-0.646378,-0.683685,-0.694932,-0.574127,-0.603395,-0.650625,-0.664542,-0.603482,-0.653662,-0.632215,-0.614416,-0.608602,-0.557788,-0.616892,-0.663807,-0.61786,-0.491911,-0.571629,-0.621794,-0.564168,-0.640617,-0.708667,1 +1.70035,2.20595,-0.331329,0.586549,0.609361,1.12183,1.05454,2.0949,2.08333,1.84081,1.74142,1.8242,1.67666,1.98413,1.72827,1.39587,1.14728,1.07425,0.515028,0.590593,-0.0398824,0.0368456,0.187562,-0.214618,-0.323248,-0.510481,-0.44654,-0.26124,-0.581386,-0.821055,-0.790203,-0.999803,-1.22729,-1.3832,-1.38509,-1.47771,-1.00656,-1.34417,-0.371859,-1.63178,-0.725349,-0.962467,-1.48565,-0.648244,-0.506545,0.231298,-0.840556,-1.22993,-1.06111,-0.154634,-0.647563,-0.629581,-0.620566,-0.924144,-1.23849,-1.77505,-1.13873,-0.570535,-0.865422,-0.878845,-0.430405,-0.726313,-0.710447,-0.791276,-1.01596,-1.09714,-0.683029,-0.821413,-1.52143,-1.27829,-1.1095,-0.835666,-0.934235,-1.14505,-1.17665,-0.852588,-1.07086,-0.822943,-0.8034,-1.70735,-1.4409,-1.08257,-1.16746,-1.29574,-0.717346,-1.0544,-1.28452,-1.14844,-1.2669,-1.1461,-0.912154,-0.938111,-0.852807,-0.800095,-0.873705,-0.893704,-0.798572,-0.930133,-1.07841,-0.99387,0 +1.70832,-1.11469,-0.105364,-0.888614,-0.860759,-0.423645,-0.545373,0.515758,0.605527,0.59502,0.440029,0.356044,0.382536,0.268074,0.265901,0.160826,-0.0348817,0.0133152,0.166177,0.356579,0.411786,0.306537,0.372528,0.263618,0.293022,0.21037,0.00882989,0.184492,0.146907,0.0793656,-0.120915,0.0323624,-0.191917,0.0427651,-0.415078,-0.652281,-0.590569,-0.162941,-0.363475,-0.495182,-0.624106,-0.348258,-0.281328,-0.244297,-0.277811,-0.0586821,0.0369908,-0.179812,-0.0640262,-0.0458301,-0.103279,0.331778,0.209107,-0.0530282,-0.329396,-0.774519,-0.600292,-0.441116,-0.0855171,-0.0995286,-0.215318,-0.424671,-0.42615,-0.446064,-0.492868,-0.368471,-0.427713,-0.328571,-0.572822,-0.655909,-0.553073,-0.482854,-0.504232,-0.496981,-0.595697,-0.486079,-0.39409,-0.402419,-0.416308,-0.432639,-0.28069,-0.373424,-0.370623,-0.22431,-0.317061,-0.351287,-0.335809,-0.285801,-0.337339,-0.435717,-0.477739,-0.413757,-0.404926,-0.471624,-0.409198,-0.409923,-0.456527,-0.343106,-0.359077,-0.510038,1 +1.7343,1.72256,-0.200571,-0.550843,-0.492805,-0.190686,-0.243818,0.406256,0.459136,0.686791,0.823542,0.928315,1.02793,1.02948,0.99355,0.738642,0.578646,0.255527,-0.109231,-0.223523,-0.32178,-0.280445,-0.324388,-0.347739,-0.19466,-0.0962584,-0.00241821,0.1637,0.253316,0.388099,0.501621,0.401073,0.473279,0.44281,0.470214,0.811021,0.712058,0.511177,0.431095,0.293326,0.225287,-0.058088,-0.188688,-0.396323,-0.536982,-0.773031,-0.434064,-0.521209,-0.5319,-0.555438,-0.351979,0.0664132,0.29689,0.474124,0.640911,0.467924,0.155705,-0.256001,-0.355629,-0.384328,-0.460884,-0.330998,-0.190619,-0.393559,-0.358821,-0.295627,-0.57979,-0.5698,-0.753379,-0.611037,-0.60329,-0.715452,-0.855734,-0.743653,-0.855696,-0.899652,-0.705528,-0.610334,-0.85499,-0.821521,-0.671286,-0.77297,-0.71902,-0.744918,-0.816469,-0.613881,-0.63854,-0.638001,-0.571098,-0.627323,-0.601777,-0.52051,-0.527094,-0.477227,-0.500373,-0.486979,-0.466697,-0.403933,-0.426063,-0.549613,3 +1.74262,1.6178,-0.325906,0.631356,0.628013,0.971264,0.649677,-0.992016,-1.13515,-1.28617,-1.50114,-1.47343,-1.64891,-1.61047,-1.49699,-1.24438,-0.662946,-0.176445,0.388333,0.853585,0.968727,1.24381,1.4317,1.38008,1.53734,1.6032,1.55726,1.4421,1.25676,1.4417,1.24607,1.03419,1.06365,1.40485,1.15398,1.18335,1.11851,0.955664,0.312538,0.164725,-0.0661647,0.287046,0.0249178,-0.145301,0.329791,-0.168228,0.144084,-0.12212,-0.0283035,-0.233937,-0.297539,1.56038,1.55876,1.57956,1.06891,0.60793,0.338431,-0.483758,-0.455185,-0.465859,-0.456605,-0.714081,-0.77507,-0.47838,-0.718124,-0.398444,-0.224776,-0.217458,-0.146123,-0.0678601,0.0601139,0.110468,0.159927,0.37773,0.377195,0.325915,-0.0933616,0.342841,0.451906,0.0183267,0.314562,-0.0495956,0.0871846,-0.0417441,-0.166062,0.240102,0.0457699,-0.240216,-0.0400382,-0.120838,-0.0287913,-0.0860271,-0.135543,0.087601,-0.0223632,-0.224207,-0.118566,-0.101531,-0.0896849,0.191826,1 +1.75024,0.877938,1.32937,-1.33668,-1.34571,-1.21627,-1.30205,2.36827,2.20454,2.0638,1.91513,1.91971,1.90106,1.88181,1.8248,1.59244,1.17766,0.860657,0.430196,0.296248,0.129608,0.0428471,-0.0999626,-0.168084,-0.239051,-0.35988,-0.420912,-0.548378,-0.716893,-0.764318,-0.861492,-1.0349,-1.21383,-1.35737,-1.41614,-1.62917,-1.64783,-1.82542,-1.68212,-1.53267,-1.1694,-1.27221,-1.04889,-0.971534,-0.934442,-0.94695,-0.978449,-0.892048,-0.884565,-0.862252,-0.868635,-0.432951,-0.715935,-1.17579,-1.66127,-1.83907,-1.39215,-1.1429,-0.946284,-0.988101,-0.914259,-0.848673,-0.891123,-0.923503,-0.975761,-0.973511,-0.967569,-1.15232,-1.19512,-1.20671,-1.20938,-1.25067,-1.25872,-1.21811,-1.23299,-1.19647,-1.17152,-1.18046,-1.10886,-1.08666,-1.09189,-1.08861,-1.05661,-1.04273,-1.04892,-0.97362,-0.954048,-0.914052,-0.891441,-0.873586,-0.789225,-0.805771,-0.791542,-0.748471,-0.76547,-0.738275,-0.719374,-0.722976,-0.726244,-0.746573,0 +1.79771,1.61498,-0.180686,-0.137246,-0.196068,-0.520237,-0.659852,1.31966,1.34336,1.25219,1.19902,1.14265,1.24385,1.07863,0.915429,0.894253,0.515527,0.165095,0.0519819,-0.0657177,-0.143904,-0.235199,-0.236735,-0.329256,-0.339081,-0.309759,-0.539678,-0.269576,-0.507973,-0.634045,-0.573821,-0.691972,-0.739046,-0.888256,-0.587027,-0.976605,-0.492045,-0.474659,-0.622376,-0.292225,-0.722194,0.182346,0.353667,0.0234928,0.0421547,-0.016655,-0.0970924,0.0688875,0.0515651,0.223583,-0.0264905,-0.429664,-0.482811,-0.703935,-1.44445,-0.464422,-0.0352329,0.0210899,0.183339,-0.0437419,-0.246638,0.107597,-0.258797,-0.140275,-0.329491,-0.592682,-0.472625,-0.613457,-0.510746,-0.833143,-0.821595,-0.820323,-1.04485,-0.938547,-0.787977,-0.819268,-0.692892,-0.634996,-0.5866,-0.627234,-0.753934,-0.643585,-0.648925,-0.69458,-0.647731,-0.71049,-0.791361,-0.672235,-0.592122,-0.545966,-0.638572,-0.524314,-0.664015,-0.597986,-0.594443,-0.516205,-0.520735,-0.767193,-0.653012,-0.514322,0 +1.82022,-1.41443,-0.0655938,-0.592203,-0.570805,-0.642398,-0.65706,1.04047,1.18047,1.23048,1.15331,1.09003,1.28101,1.30085,1.17871,1.00199,0.713179,0.423873,0.14771,-0.0281501,-0.0446139,-0.0182725,-0.193363,-0.284823,-0.196732,-0.236705,-0.343058,-0.34849,-0.415911,-0.452614,-0.543761,-0.683002,-0.844044,-0.820045,-0.769612,-0.84757,-0.589575,-0.940901,-0.579066,-0.442666,-0.271122,0.0797716,-0.107847,0.0918105,0.185051,0.17906,0.226367,0.321551,0.000644907,0.162297,0.238574,-0.146374,-0.214723,-0.54384,-0.748539,-0.802588,-0.646619,-0.202076,-0.0645921,0.0141446,-0.171142,-0.279238,-0.292772,-0.512528,-0.39762,-0.414492,-0.585702,-0.64034,-0.810769,-0.828099,-1.04826,-0.803784,-1.0136,-0.817263,-0.971086,-0.963916,-0.862586,-0.835882,-0.81114,-0.985843,-0.822272,-0.591659,-0.886325,-0.655197,-0.589892,-0.749856,-0.659101,-0.686287,-0.663215,-0.684754,-0.664847,-0.561502,-0.722549,-0.71874,-0.676359,-0.649234,-0.656688,-0.677587,-0.685384,-0.630964,0 +1.823,1.67687,-0.23552,0.0833393,0.261754,-0.0429567,-0.0204444,-0.889311,-1.04108,-1.16158,-1.36588,-1.44052,-1.54885,-1.53295,-1.559,-1.22515,-0.758218,-0.197343,0.147343,0.528907,0.847218,1.04508,1.20377,1.38471,1.43981,1.24761,1.27081,1.24158,1.25573,1.10299,1.19079,1.07771,1.15074,0.82498,0.913754,1.04799,1.08234,0.960368,0.684386,0.552052,0.377399,0.0728928,-0.0894354,-0.18843,-0.161403,-0.0409652,-0.0105461,-0.0357088,-0.0837089,-0.268023,-0.083839,1.12111,1.15494,1.09192,1.15498,0.883415,0.237788,0.0762726,-0.37544,-0.224687,-0.177477,-0.308612,-0.354953,-0.329943,-0.165724,-0.0841374,-0.00717884,0.0109343,0.143902,0.10175,0.485355,0.252263,0.320686,0.459084,0.44329,0.321402,0.267941,0.235635,0.234785,0.312601,0.144368,0.2292,0.158414,-0.0127291,0.0273617,0.076456,0.00745649,-0.00390721,0.033642,0.11459,-0.0784592,-0.0664937,0.0252431,-0.0892,-0.0647661,-0.0311688,-0.0219287,-0.124177,-0.122478,-0.165158,1 +1.82993,1.60983,-0.239738,-0.0993328,-0.0383738,-0.278756,-0.146092,1.08713,1.10774,1.07908,0.598368,-0.266306,-1.10406,-2.19927,-2.89674,-3.66809,-4.00132,-3.8406,-3.63228,-3.71646,-3.46977,-3.23938,-3.26465,-3.46194,-3.3636,-3.45284,-3.41837,-3.65987,-3.26457,-3.07935,-2.85939,-3.0861,-3.08708,-2.68733,-2.88089,-2.32914,-1.06707,-0.559344,1.32212,2.22369,3.25181,4.3342,4.32549,5.14533,4.54072,4.52692,4.56512,4.51775,4.58055,4.67544,4.78897,-2.95638,-3.17395,-2.96656,-2.26864,0.371544,3.50209,4.8189,5.05274,4.94637,4.84337,4.69981,4.49272,3.81316,3.74428,3.17055,3.02653,2.64117,2.18917,1.97208,1.51707,1.37663,1.62534,1.39571,1.41566,1.29796,1.27869,1.32949,1.18899,1.33443,1.40198,1.71938,1.75107,2.05066,1.76183,1.98952,2.3664,2.20892,2.27108,2.1576,2.36876,2.4761,2.35251,2.48121,2.38569,2.60595,2.70408,2.67938,2.7924,2.97322,2 +1.83893,0.623982,0.859358,-1.20054,-1.21684,-1.03161,-0.986536,-0.901339,-0.889952,-0.802989,-0.765414,-0.740753,-0.715842,-0.687518,-0.732938,-0.776786,-0.760877,-0.739668,-0.729959,-0.622515,-0.611388,-0.560295,-0.549572,-0.587093,-0.599358,-0.605075,-0.694819,-0.726559,-0.738476,-0.794386,-0.808723,-0.751054,-0.69287,-0.621746,-0.50446,-0.24976,-0.0127655,0.336142,0.511204,0.967396,1.24778,1.36501,1.43388,1.5294,1.55127,1.57386,1.57457,1.71049,1.64328,1.63864,1.76661,-0.505103,-0.547735,-0.613367,-0.36766,0.386424,1.07227,1.30969,1.50687,1.73039,1.62126,1.54446,1.62714,1.90196,1.90285,1.88083,1.75434,1.67037,1.63883,1.46113,1.30696,1.23173,1.11127,1.04201,1.00507,0.860277,0.832335,0.727425,0.634733,0.580185,0.612906,0.591259,0.523208,0.53164,0.548595,0.453519,0.495909,0.537317,0.520098,0.503614,0.455265,0.452226,0.473563,0.410664,0.443731,0.457843,0.439624,0.444113,0.447669,0.520757,1 +1.85972,1.60577,-0.216238,0.290138,0.0752341,0.198524,0.15267,0.695953,0.63968,0.583226,0.598235,0.528023,0.311462,0.654614,0.448078,0.298658,0.308429,0.351822,0.325951,0.387109,0.296529,0.268343,0.361019,0.12866,0.229056,0.45152,0.199527,0.32831,0.364438,0.106056,0.29894,0.467442,0.707022,0.874471,-0.100057,-0.107691,0.190301,-0.13072,0.260722,-0.604645,0.157166,0.00245749,0.0439903,-0.446001,-0.320082,0.111977,-0.103449,-0.345288,-0.281035,-0.302583,-0.0547691,0.207562,0.555732,0.223838,0.222193,-0.147702,-0.216141,-0.269827,-0.259858,-0.502473,-0.551005,-0.456044,-0.558704,-0.779031,-0.757584,-0.850074,-0.937852,-0.7208,-0.765004,-1.08807,-0.946656,-0.892203,-0.948756,-0.930194,-1.03019,-0.857122,-0.943824,-0.720459,-0.498188,-0.836364,-0.869516,-0.803533,-0.783995,-0.843686,-0.621973,-0.755083,-0.73438,-0.67156,-0.687836,-0.768749,-0.653867,-0.462007,-0.540056,-0.480532,-0.647535,-0.592647,-0.548014,-0.474211,-0.457037,-0.565296,1 +1.86596,-0.827744,-0.168032,-0.430211,-0.375806,-0.690694,-0.56771,-0.888687,-0.984645,-1.00098,-1.01042,-0.97007,-0.918449,-0.744513,-0.559317,-0.156262,0.186734,0.528197,0.768268,0.822427,0.87012,0.829905,0.824999,0.788666,0.8703,0.878529,0.902974,0.765444,0.414779,0.731855,0.787789,0.831818,0.553032,0.580484,0.501887,0.429462,0.211015,-0.258311,-0.305445,-0.338256,-0.147652,-0.773515,-0.418961,-0.501875,-0.626426,-0.564445,-0.755153,-0.629203,-0.576441,-0.704918,-0.394904,1.04498,0.935629,0.494372,0.200087,-0.311226,-0.437283,-0.441742,-0.663339,-0.5224,-0.17765,-0.340453,-0.149824,-0.208631,-0.113676,-0.166752,-0.163875,0.128198,0.250597,0.272805,0.290283,0.441941,0.397846,0.41773,0.276566,0.469193,0.45399,0.195807,0.303258,0.340947,0.241991,0.26143,0.198554,0.187179,0.122574,0.0172598,0.115055,0.210354,0.130008,0.0818008,0.128383,-0.00705978,-0.0742619,0.0293447,0.0392127,-0.00721361,-0.0659684,-0.0213308,-0.0772923,0.0142778,1 +1.90684,1.62782,-0.145736,-0.848978,-0.798021,-0.352621,-0.330376,-1.19057,-1.17632,-1.25819,-1.3871,-1.42345,-1.45291,-1.43871,-1.28463,-0.851259,-0.151004,0.339457,0.990716,1.26067,1.43036,1.52409,1.46017,1.65705,1.80545,1.79363,1.66137,1.53392,1.48646,1.7152,1.48286,1.13483,1.04863,1.17148,1.21632,1.28864,1.08257,0.315746,0.473361,0.519891,-0.230441,-0.280244,-0.2465,-0.00516827,-0.137582,-0.636287,-0.702031,-0.34006,-0.357953,-0.373444,-0.81212,0.820797,0.992052,1.40046,1.7288,1.16058,-0.213365,-0.325717,-0.68669,-0.952528,-0.68176,-0.861981,-0.819146,-0.892584,-0.5597,-0.488876,-0.499002,-0.462406,-0.327312,-0.195898,-0.415301,-0.16657,-0.257473,0.026015,0.384641,0.0314253,-0.127994,0.147303,-0.0705012,-0.0979792,0.0934941,-0.12815,-0.0435957,-0.00905222,-0.0967252,-0.188206,-0.211148,0.0123073,-0.128351,-0.0849945,-0.0321459,-0.157433,-0.136091,-0.294514,-0.228084,-0.243069,-0.360888,-0.261949,-0.122105,-0.311834,1 +1.92139,0.747627,-0.144531,-0.361278,-0.394458,-0.514555,-0.601217,2.43733,2.39292,2.12032,2.14327,2.09908,2.01364,1.79097,1.6087,1.38267,1.23217,0.990878,0.40011,0.32264,0.226695,0.00171556,-0.12299,-0.285804,-0.265191,-0.187681,-0.446893,-0.412178,-0.621245,-0.828954,-0.929048,-1.06927,-1.32609,-1.67544,-1.69247,-1.84504,-2.14487,-1.75955,-1.45484,-1.09928,-1.49809,-1.59036,-1.05056,-1.00916,-0.466445,-0.9612,-0.780662,-1.00574,-0.927743,-0.460893,-0.980926,-0.5508,-0.734513,-1.28817,-1.19171,-2.33591,-2.24415,-0.710511,-1.02489,-1.34499,-0.203791,-0.900241,-1.30255,-1.20393,-1.13306,-0.973397,-0.990884,-1.30725,-1.27194,-1.2251,-1.15575,-1.19303,-1.40974,-1.37946,-1.28552,-1.29939,-1.31385,-1.09637,-1.15303,-1.28974,-1.24282,-1.1774,-1.23423,-1.00143,-0.927007,-0.959326,-0.943697,-1.11912,-1.08595,-0.964942,-0.714007,-0.874178,-0.910072,-0.875296,-0.726056,-0.656169,-0.711144,-0.584353,-0.643193,-0.615338,0 +1.92763,1.2384,2.08861,-1.30221,-1.39489,-1.21911,-1.30764,0.176483,0.264074,0.465883,0.59346,0.639858,0.629125,0.691769,0.63843,0.516761,0.280402,0.0846477,-0.0960246,-0.241252,-0.25714,-0.239998,-0.312851,-0.348284,-0.358398,-0.228136,-0.181216,-0.0649795,-0.0242405,0.0680491,0.0612685,0.197369,0.191715,0.175571,0.360988,0.555811,0.543935,0.658717,0.763138,0.750911,0.529508,0.489504,0.336383,0.102186,-0.126578,-0.135757,-0.128428,-0.122881,-0.156116,-0.207904,-0.0968004,-0.150666,-0.0664307,0.191199,0.56332,0.67672,0.581821,0.214318,0.00183779,-0.0784517,-0.0969186,-0.0912741,0.0396982,0.0928043,0.00221771,0.0160295,-0.162135,-0.193941,-0.331095,-0.367024,-0.407106,-0.4676,-0.520974,-0.502666,-0.549618,-0.559202,-0.568389,-0.584369,-0.534821,-0.517387,-0.519939,-0.528203,-0.501334,-0.488903,-0.496889,-0.463222,-0.450539,-0.409309,-0.405351,-0.397045,-0.389264,-0.361454,-0.366801,-0.338452,-0.326454,-0.340267,-0.326496,-0.313249,-0.30589,-0.333915,3 +1.95396,1.44145,-0.164416,-0.500867,-0.438545,-0.577056,-0.42531,-0.188471,-0.290346,-0.346218,-0.340815,-0.390144,-0.549719,-0.57448,-0.412907,-0.304309,-0.184385,0.126665,0.379679,0.716792,0.799475,0.836227,1.00528,1.12221,1.08494,0.959687,0.908177,0.671663,0.702914,0.581563,0.593618,0.389052,0.162768,0.150519,-0.0203137,0.147785,-0.14073,-0.416412,-0.596091,-0.719634,-0.716042,-0.395951,-0.529987,-0.608401,-0.498721,-0.605243,-0.517078,-0.316016,-0.313954,-0.491284,-0.484036,0.853092,0.616816,0.184571,-0.120319,-0.645216,-0.741055,-0.660069,-0.302848,-0.436878,-0.498606,-0.511072,-0.516265,-0.403893,-0.399547,-0.341583,-0.290007,-0.181344,-0.109746,-0.0449487,0.00550095,-0.0548302,-0.00294299,-0.0220867,0.119448,0.0212853,0.0473108,0.0221709,0.0198974,0.0817586,-0.00722005,-0.0987174,-0.0638773,-0.104195,-0.125602,-0.191524,-0.22215,-0.201896,-0.149576,-0.204841,-0.299294,-0.238017,-0.272102,-0.248773,-0.250084,-0.297647,-0.226785,-0.217379,-0.286843,-0.321247,1 +1.98306,1.66356,0.449608,-1.04888,-1.04389,-1.11968,-1.14569,-1.29246,-1.40814,-1.50064,-1.60899,-1.65209,-1.72725,-1.72703,-1.53536,-1.18372,-0.613656,-0.0590561,0.387315,0.536719,0.737445,0.917017,1.02386,1.0976,1.06556,0.953703,0.844307,0.817887,0.799453,0.755845,0.67519,0.646764,0.502073,0.415756,0.26395,0.110777,0.024063,-0.280475,-0.538875,-0.758068,-0.783473,-0.941018,-0.880254,-1.00903,-0.915506,-0.841487,-0.811601,-0.718034,-0.729827,-0.601859,-0.579958,0.925609,0.712335,0.36723,0.0429246,-0.635587,-0.922849,-0.748661,-0.623479,-0.475918,-0.314534,-0.218049,-0.107694,-0.0616868,0.0455681,0.183477,0.396542,0.623925,0.816031,0.997761,1.14116,1.23241,1.25662,1.3362,1.41602,1.41047,1.34485,1.40198,1.31852,1.27232,1.21721,1.14171,1.11183,1.05746,1.00411,0.943304,0.877962,0.819737,0.833195,0.820216,0.742647,0.686147,0.730004,0.68054,0.622837,0.596496,0.610216,0.595916,0.59044,0.634706,5 +1.99623,1.49329,-0.336752,1.52231,1.58775,1.00536,1.035,0.539738,0.674945,0.739362,0.553271,0.707119,0.317023,0.335902,0.516332,-0.00848685,-0.237542,-0.26531,-0.447145,-0.204577,-0.110451,-0.429256,-0.194113,-0.373029,-0.333217,-0.331103,-0.21122,-0.257705,-0.0988929,0.168268,-0.0456544,0.0204552,-0.180864,0.290861,0.148861,-0.184426,-0.334078,-0.045524,0.641278,0.323107,0.591022,1.48093,1.46759,1.01106,1.09561,0.692017,0.878025,1.38084,0.560837,0.76227,0.578503,-0.522911,-0.227221,-0.0200163,-0.252031,1.03462,1.36069,0.916534,1.00313,0.358298,0.439848,0.440369,-0.0660848,-0.156396,0.138174,-0.0197025,-0.45551,-0.119735,-0.51631,-0.397386,-0.404741,-0.552699,-0.475904,-0.777076,-0.9588,-0.772594,-0.668399,-0.617953,-0.421889,-0.584182,-0.39859,-0.607547,-0.717046,-0.449192,-0.580977,-0.522164,-0.776668,-0.701805,-0.537227,-0.800322,-0.403657,-0.59467,-0.667172,-0.775337,-0.520046,-0.45143,-0.719522,-0.768861,-0.283954,-0.33513,0 +2.02637,1.692,-0.326509,0.788178,1.03158,1.01104,0.806039,0.285385,0.442137,0.7868,0.880878,0.845615,1.19296,0.766696,0.785889,0.858996,0.132257,-0.0279262,-0.353471,-0.311964,-0.35651,-0.311115,-0.567901,-0.591583,-0.161479,-0.0921607,-0.146366,0.126484,0.431799,0.576265,0.553956,0.204771,0.548325,0.420674,0.658932,1.19566,0.799582,0.790428,-0.198267,0.716094,-0.0492561,-0.365816,-0.249803,-0.342221,-0.701007,-0.703383,-0.804246,-0.499986,-0.167602,-0.170392,-0.213169,-0.255957,0.630577,0.744629,0.284337,0.42792,-0.0353449,0.0741485,-0.790637,-0.572761,-0.319512,-0.164189,-0.244668,-0.204676,-0.00442632,-0.374297,-0.46283,-0.46649,-0.140978,-0.615274,-0.737173,-0.780726,-0.67054,-0.446814,-0.731689,-1.0043,-0.508493,-0.829008,-0.826595,-0.709501,-0.676061,-0.470332,-0.615791,-0.639868,-0.342926,-0.680004,-0.267132,-0.798434,-0.213959,-0.523313,-0.486571,-0.496986,-0.331454,-0.525643,-0.222302,-0.539385,-0.506676,-0.272194,-0.232359,-0.590658,3 +2.02914,1.66389,0.292938,-1.06784,-1.02863,-1.10263,-1.05913,-0.697478,-0.687631,-0.637337,-0.612634,-0.492645,-0.346123,-0.208293,0.0355242,0.290257,0.624136,0.781713,0.755866,0.600651,0.62001,0.613391,0.627749,0.570638,0.576989,0.57242,0.561789,0.542724,0.547936,0.554521,0.453475,0.441422,0.465879,0.274122,0.28539,0.160617,-0.154889,-0.367308,-0.35371,-0.461918,-0.442614,-0.719839,-0.622219,-0.654452,-0.59886,-0.583576,-0.582571,-0.571294,-0.661164,-0.490652,-0.608644,0.482737,0.470071,0.340908,-0.043942,-0.349073,-0.522546,-0.496061,-0.530014,-0.484801,-0.424628,-0.336242,-0.285155,-0.274188,-0.242969,-0.196452,-0.154331,-0.1757,-0.0153239,0.0106881,-0.00337185,0.0953287,0.146388,0.176636,0.194288,0.208803,0.153135,0.17853,0.181407,0.127032,0.132047,0.123445,0.0916439,0.0405179,0.0545364,0.0424458,0.0218815,-0.00914133,-0.00688904,-0.0235699,-0.030639,-0.0393766,-0.0467496,-0.0503462,-0.0561578,-0.0727714,-0.0556454,-0.0420509,-0.0849925,-0.0365755,1 +2.04785,1.35697,-0.114402,-0.483633,-0.540283,-0.20205,-0.252195,0.515048,0.458058,0.410953,0.39774,0.32843,0.3283,0.214375,0.306684,0.157912,0.0449433,0.247757,0.297456,0.328271,0.4406,0.356406,0.401829,0.309485,0.288386,0.336399,0.252793,0.0949876,0.198093,0.0413755,-0.000994049,-0.0385304,-0.195368,-0.436689,-0.423275,-0.273577,-0.224916,-0.737769,-1.04608,-0.618531,-0.219506,-0.419409,-0.165178,-0.0390515,-0.0545455,0.140345,0.271792,0.361862,0.166812,0.0653436,0.132115,0.289981,0.181428,-0.11752,-0.538462,-0.594383,-0.295475,-0.28431,-0.26843,-0.190593,-0.396526,-0.438231,-0.454658,-0.514225,-0.397104,-0.480062,-0.646491,-0.579192,-0.632033,-0.550489,-0.586119,-0.484141,-0.499497,-0.504966,-0.541061,-0.487821,-0.447203,-0.353831,-0.307571,-0.377008,-0.441334,-0.296337,-0.279925,-0.265878,-0.406587,-0.375793,-0.316195,-0.388804,-0.438893,-0.39445,-0.342468,-0.376638,-0.51104,-0.498226,-0.46458,-0.40701,-0.544891,-0.366185,-0.437236,-0.43807,1 +2.05512,1.87369,-0.212019,0.236715,0.492362,-0.0685253,-0.344337,-0.13206,0.131049,0.233018,0.452541,0.432516,0.2428,0.189058,0.0591251,-0.290112,-0.608184,-0.83357,-1.08829,-1.13049,-1.28952,-1.17012,-1.16761,-1.22445,-1.22732,-1.29822,-1.17649,-1.24088,-1.19489,-1.1386,-1.10252,-1.03623,-1.01648,-1.07437,-0.747998,-0.403761,0.062844,0.218993,0.378005,0.734693,1.31537,1.57448,1.07331,1.78121,1.87914,0.891217,1.28489,1.65816,1.40005,1.57526,1.46829,-1.17818,-1.1883,-0.785934,-0.398527,0.286317,1.1081,1.49947,1.72672,1.54485,1.47921,1.38984,1.35687,1.30675,1.39457,1.34892,1.07511,1.03003,0.923505,0.702547,0.607216,0.654972,0.583071,0.586112,0.443536,0.36446,0.447066,0.388673,0.333671,0.373808,0.325618,0.377899,0.415902,0.328614,0.351925,0.408504,0.341712,0.258489,0.415874,0.475543,0.41333,0.424085,0.331659,0.367104,0.31617,0.338458,0.236534,0.362964,0.362215,0.409646,2 +2.06864,-1.09573,-0.168634,-0.509483,-0.418197,-0.506032,-0.509075,0.313788,0.136634,0.102155,0.166376,0.318942,0.523615,0.790748,1.1796,1.60615,2.01794,2.09277,2.09726,2.01534,1.73779,1.50175,1.51195,1.13404,1.04884,0.759614,0.557364,0.414658,0.10593,-0.179219,-0.378772,-0.563983,-0.762524,-1.06635,-1.13891,-1.44151,-1.90649,-2.09829,-2.06168,-2.45594,-2.54472,-2.07525,-2.09329,-1.89775,-1.47769,-1.47671,-1.07193,-1.2054,-1.25022,-0.92762,-1.59642,0.387302,-0.00579954,-0.835622,-1.74958,-2.43512,-2.16728,-1.84574,-1.63223,-1.24269,-0.931303,-0.946954,-1.25983,-1.07327,-1.05667,-0.824578,-0.975993,-0.966729,-0.942627,-0.83486,-0.842407,-0.771437,-0.81947,-0.699568,-0.618087,-0.642645,-0.636456,-0.485204,-0.396055,-0.38112,-0.622867,-0.435913,-0.373396,-0.430041,-0.361915,-0.419102,-0.464118,-0.394975,-0.368675,-0.480081,-0.428544,-0.439367,-0.43459,-0.471894,-0.471148,-0.479945,-0.498886,-0.470239,-0.457128,-0.415899,1 diff --git a/data/lymphography.arff b/data/lymphography.arff new file mode 100755 index 0000000..9d39143 --- /dev/null +++ b/data/lymphography.arff @@ -0,0 +1,169 @@ +@relation lymphography +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'clase' {0,1,2,3} +@data +1.5373,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,1.56982,1.28204,-1.71282,-1.39526,0.512998,-0.315666,2 +0.314072,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,-1.11276,0.257203,-0.560115,-0.426033,0.711868,0.512998,-0.315666,1 +0.314072,0.894114,2.15884,4.47289,1.75787,0.983238,3.70226,0.648242,-0.193939,1.82522,1.05811,0.0389078,1.56982,1.28204,0.86076,0.711868,0.512998,2.30897,2 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,1.19058,1.56982,-0.560115,0.86076,-1.39526,0.512998,1.78405,2 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,1.19058,0.257203,-0.0995761,-1.71282,0.711868,0.512998,-0.840594,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,0.257203,0.360963,0.86076,-1.39526,0.512998,0.73419,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,1.05811,-1.11276,0.257203,1.28204,-0.426033,-1.39526,-1.93615,-0.840594,1 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,-1.94173,0.86076,-1.39526,-1.93615,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,-1.11276,-1.05542,1.28204,0.86076,-1.39526,0.512998,1.25912,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-0.0995761,0.86076,-1.39526,-1.93615,-0.315666,2 +-0.909156,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,-0.701447,1.19058,0.257203,-0.0995761,-1.71282,0.711868,0.512998,0.209262,1 +1.5373,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,0.629943,1.05811,1.19058,0.257203,1.28204,0.86076,0.711868,0.512998,-0.315666,1 +1.5373,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,-1.02065,-0.426033,-1.39526,-1.93615,-0.840594,1 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,1.82522,-0.701447,-1.11276,1.56982,0.821502,0.86076,0.711868,0.512998,-0.315666,2 +0.314072,0.894114,2.15884,4.47289,1.75787,0.983238,3.70226,0.648242,6.1845,-1.76061,-2.46101,-1.11276,-1.05542,1.28204,-1.71282,0.711868,0.512998,0.73419,3 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.0995761,0.86076,0.711868,0.512998,-0.315666,1 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-1.48119,-0.426033,0.711868,0.512998,0.209262,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,-1.11276,0.257203,-0.0995761,-0.426033,-1.39526,0.512998,-0.315666,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,0.257203,-1.48119,-1.71282,0.711868,0.512998,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,0.257203,-1.48119,-0.426033,0.711868,-1.93615,-0.840594,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,-1.05542,-0.560115,0.86076,0.711868,0.512998,0.209262,2 +1.5373,-1.11087,-0.460081,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,1.56982,-0.0995761,0.86076,0.711868,0.512998,0.73419,2 +1.5373,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,0.257203,-0.560115,-0.426033,0.711868,0.512998,-0.315666,1 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,-0.0995761,-1.71282,-1.39526,-1.93615,-0.840594,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,2.99528,-1.76061,-0.701447,-1.11276,-1.05542,1.28204,0.86076,-1.39526,0.512998,2.8339,2 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,0.629943,-0.701447,0.0389078,0.257203,1.28204,0.86076,0.711868,0.512998,-0.315666,2 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,1.19058,-1.05542,-0.560115,0.86076,0.711868,0.512998,0.73419,2 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,1.19058,1.56982,1.28204,0.86076,0.711868,0.512998,-0.840594,2 +1.5373,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,0.257203,-1.02065,-0.426033,0.711868,0.512998,-0.840594,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,1.19058,-1.05542,1.28204,-0.426033,0.711868,0.512998,-0.840594,2 +1.5373,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,1.82522,1.05811,0.0389078,0.257203,0.821502,0.86076,0.711868,0.512998,0.209262,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,0.0389078,0.257203,1.28204,0.86076,0.711868,0.512998,0.209262,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,-1.11276,-1.05542,1.28204,-1.71282,0.711868,-1.93615,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-1.76061,-0.701447,-1.11276,0.257203,-1.02065,-1.71282,-1.39526,-1.93615,-0.840594,1 +1.5373,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,1.19058,0.257203,-0.560115,0.86076,0.711868,0.512998,-0.315666,1 +-0.909156,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,0.257203,1.28204,0.86076,-1.39526,0.512998,-0.315666,1 +0.314072,-1.11087,-0.460081,-0.222058,1.75787,0.983238,3.70226,-1.53221,6.1845,-1.76061,-2.46101,1.19058,-1.05542,-0.0995761,0.86076,-1.39526,0.512998,0.73419,3 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,-1.05542,-0.560115,0.86076,0.711868,0.512998,1.78405,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,1.05811,-1.11276,0.257203,-0.560115,0.86076,0.711868,0.512998,-0.315666,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,-2.36804,0.821502,-1.71282,0.711868,0.512998,-0.315666,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-1.02065,0.86076,-1.39526,0.512998,-0.840594,2 +-0.909156,0.894114,2.15884,-0.222058,1.75787,0.983238,3.70226,0.648242,-0.193939,1.82522,-0.701447,-1.11276,-1.05542,-0.560115,0.86076,0.711868,0.512998,1.78405,2 +0.314072,0.894114,2.15884,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,0.629943,-0.701447,0.0389078,0.257203,-0.560115,0.86076,-1.39526,0.512998,-0.315666,1 +1.5373,0.894114,-0.460081,-0.222058,1.75787,-1.01018,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,0.257203,-1.48119,-0.426033,0.711868,0.512998,0.209262,1 +0.314072,0.894114,2.15884,4.47289,1.75787,0.983238,3.70226,-1.53221,2.99528,-0.565333,-0.701447,1.19058,-1.05542,-0.560115,0.86076,0.711868,0.512998,2.30897,3 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,1.28204,-0.426033,0.711868,0.512998,-0.840594,2 +0.314072,0.894114,2.15884,-0.222058,1.75787,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,1.28204,0.86076,-1.39526,0.512998,-0.840594,1 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,2.99528,-1.76061,1.05811,1.19058,-1.05542,1.28204,-1.71282,0.711868,0.512998,-0.840594,1 +0.314072,0.894114,2.15884,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.0995761,-0.426033,-1.39526,0.512998,-0.315666,1 +-0.909156,0.894114,2.15884,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,0.257203,1.28204,-0.426033,0.711868,0.512998,-0.315666,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-1.76061,-2.46101,-1.11276,-1.05542,-1.02065,-1.71282,0.711868,0.512998,-0.840594,1 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,1.56982,1.28204,0.86076,-1.39526,0.512998,0.209262,2 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,3.70226,-1.53221,-0.193939,-0.565333,-0.701447,1.19058,0.257203,-0.0995761,-0.426033,-1.39526,0.512998,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,-1.53221,-0.193939,0.629943,1.05811,1.19058,0.257203,-0.560115,0.86076,-1.39526,-1.93615,-0.840594,1 +-0.909156,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-0.560115,-0.426033,-1.39526,0.512998,-0.840594,1 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-1.02065,0.86076,0.711868,-1.93615,-0.840594,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,1.19058,-1.05542,1.28204,0.86076,0.711868,0.512998,0.73419,2 +1.5373,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,-0.565333,1.05811,-1.11276,0.257203,-1.48119,0.86076,0.711868,0.512998,0.73419,1 +1.5373,0.894114,2.15884,4.47289,1.75787,0.983238,3.70226,0.648242,-0.193939,1.82522,1.05811,1.19058,1.56982,0.821502,0.86076,0.711868,0.512998,2.8339,2 +-0.909156,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,0.257203,1.28204,0.86076,0.711868,0.512998,-0.315666,1 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,1.82522,-0.701447,-1.11276,1.56982,0.821502,0.86076,0.711868,0.512998,2.30897,2 +0.314072,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,-0.701447,-1.11276,0.257203,-0.560115,-1.71282,0.711868,0.512998,-0.840594,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,1.82522,-0.701447,1.19058,1.56982,-1.48119,0.86076,0.711868,0.512998,0.209262,2 +1.5373,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,-1.11276,0.257203,-1.48119,-0.426033,-1.39526,-1.93615,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-0.0995761,-0.426033,0.711868,0.512998,-0.840594,1 +1.5373,-1.11087,-0.460081,-0.222058,1.75787,-1.01018,3.70226,0.648242,-0.193939,0.629943,-0.701447,0.0389078,1.56982,-0.0995761,0.86076,0.711868,0.512998,2.30897,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,1.56982,-0.0995761,0.86076,0.711868,0.512998,1.25912,2 +0.314072,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,-1.53221,-0.193939,0.629943,1.05811,1.19058,0.257203,-0.560115,-0.426033,0.711868,0.512998,0.209262,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,-1.11276,0.257203,-1.02065,-0.426033,0.711868,-1.93615,-0.840594,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,-1.11276,-1.05542,0.360963,0.86076,0.711868,0.512998,1.78405,2 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,0.257203,-0.560115,0.86076,0.711868,0.512998,-0.840594,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,-0.0995761,-1.71282,-1.39526,0.512998,-0.315666,2 +1.5373,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,-1.53221,-0.193939,-1.76061,1.05811,0.0389078,0.257203,-1.02065,0.86076,0.711868,0.512998,0.209262,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,1.82522,1.05811,0.0389078,1.56982,-0.0995761,0.86076,0.711868,0.512998,0.209262,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,-1.02065,-1.71282,-1.39526,-1.93615,-0.840594,2 +1.5373,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,1.19058,0.257203,1.28204,-0.426033,0.711868,0.512998,0.209262,1 +1.5373,0.894114,2.15884,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,0.257203,-1.02065,-0.426033,0.711868,0.512998,-0.315666,1 +0.314072,-1.11087,-0.460081,-0.222058,1.75787,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.0995761,0.86076,-1.39526,-1.93615,-0.840594,1 +-2.13238,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-1.76061,-2.46101,-2.26443,-2.36804,-1.94173,-1.71282,-1.39526,-1.93615,-0.840594,0 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,-1.11276,1.56982,1.28204,0.86076,0.711868,0.512998,0.209262,2 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,1.56982,1.28204,0.86076,0.711868,0.512998,-0.315666,2 +1.5373,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,1.82522,1.05811,0.0389078,0.257203,-0.560115,-0.426033,0.711868,-1.93615,-0.840594,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,-1.11276,-1.05542,1.28204,0.86076,0.711868,0.512998,1.25912,2 +-0.909156,0.894114,2.15884,-0.222058,1.75787,0.983238,3.70226,0.648242,-0.193939,0.629943,1.05811,1.19058,1.56982,-0.0995761,0.86076,0.711868,0.512998,1.25912,2 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,-1.05542,-0.0995761,0.86076,0.711868,0.512998,-0.315666,2 +-0.909156,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,1.19058,-1.05542,1.28204,0.86076,0.711868,0.512998,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.0995761,-0.426033,-1.39526,0.512998,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,0.257203,1.28204,0.86076,-1.39526,0.512998,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,1.19058,-1.05542,1.28204,0.86076,0.711868,0.512998,-0.315666,2 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,-1.11276,-1.05542,1.28204,-1.71282,-1.39526,-1.93615,-0.840594,1 +1.5373,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,-1.76061,-0.701447,-1.11276,-2.36804,-1.02065,-1.71282,0.711868,0.512998,-0.315666,2 +-0.909156,0.894114,2.15884,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,-1.11276,0.257203,-1.02065,-0.426033,-1.39526,-1.93615,-0.840594,1 +0.314072,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,1.56982,-1.48119,-0.426033,0.711868,-1.93615,-0.840594,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-1.76061,-0.701447,-1.11276,0.257203,-1.02065,-1.71282,0.711868,0.512998,-0.840594,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,1.19058,1.56982,-0.560115,0.86076,0.711868,0.512998,1.25912,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,-1.05542,1.28204,0.86076,0.711868,0.512998,0.209262,2 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-1.02065,0.86076,-1.39526,-1.93615,-0.315666,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,1.05811,-1.11276,-1.05542,-0.560115,-0.426033,-1.39526,-1.93615,-0.315666,1 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-0.0995761,-1.71282,-1.39526,-1.93615,-0.840594,1 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,1.19058,0.257203,-0.560115,-1.71282,0.711868,0.512998,-0.315666,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,1.19058,-1.05542,1.28204,0.86076,0.711868,0.512998,0.209262,2 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-1.48119,0.86076,0.711868,0.512998,-0.315666,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,-0.560115,-1.71282,0.711868,-1.93615,-0.315666,1 +0.314072,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,1.19058,0.257203,-1.48119,-1.71282,0.711868,0.512998,0.209262,1 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,1.05811,-1.11276,-1.05542,-0.560115,-0.426033,0.711868,0.512998,-0.315666,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,-1.05542,0.821502,0.86076,0.711868,0.512998,1.25912,2 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,1.28204,-0.426033,0.711868,0.512998,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,1.56982,1.28204,0.86076,0.711868,0.512998,2.30897,2 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,1.19058,-1.05542,-0.560115,-1.71282,-1.39526,-1.93615,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.0995761,0.86076,-1.39526,0.512998,-0.840594,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,0.0389078,0.257203,1.28204,0.86076,-1.39526,-1.93615,-0.840594,1 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,0.257203,-1.02065,0.86076,0.711868,0.512998,1.25912,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,1.28204,-1.71282,-1.39526,-1.93615,-0.840594,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,-1.05542,1.28204,-0.426033,-1.39526,0.512998,-0.315666,2 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,1.56982,-1.48119,0.86076,0.711868,-1.93615,-0.840594,2 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,0.257203,1.28204,-0.426033,0.711868,0.512998,-0.840594,2 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,-0.701447,-1.11276,1.56982,-1.02065,-0.426033,0.711868,-1.93615,-0.840594,2 +1.5373,0.894114,2.15884,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,1.28204,0.86076,0.711868,0.512998,-0.315666,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,-0.701447,-1.11276,-1.05542,-0.560115,0.86076,-1.39526,0.512998,1.25912,2 +1.5373,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,1.19058,-1.05542,-0.0995761,0.86076,0.711868,0.512998,0.209262,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-1.76061,-0.701447,1.19058,0.257203,1.28204,-0.426033,0.711868,0.512998,-0.315666,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,-1.11276,0.257203,1.28204,-0.426033,-1.39526,0.512998,-0.840594,1 +-0.909156,0.894114,2.15884,4.47289,1.75787,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,1.19058,0.257203,1.28204,-0.426033,0.711868,0.512998,0.209262,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.560115,0.86076,-1.39526,0.512998,-0.315666,1 +1.5373,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,-1.53221,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-0.0995761,-0.426033,-1.39526,0.512998,-0.840594,1 +0.314072,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,1.82522,-0.701447,-1.11276,-1.05542,-0.560115,0.86076,0.711868,0.512998,2.30897,2 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,0.257203,-1.02065,-0.426033,-1.39526,0.512998,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,0.0389078,0.257203,-0.560115,-0.426033,-1.39526,0.512998,-0.840594,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-1.11276,1.56982,1.28204,-1.71282,0.711868,0.512998,-0.315666,2 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,-0.701447,1.19058,0.257203,-0.560115,-0.426033,0.711868,0.512998,-0.315666,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,-1.05542,1.28204,-0.426033,-1.39526,0.512998,0.73419,1 +1.5373,0.894114,2.15884,4.47289,1.75787,0.983238,-0.26828,0.648242,-0.193939,1.82522,1.05811,1.19058,1.56982,0.821502,0.86076,0.711868,0.512998,1.78405,2 +1.5373,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,1.82522,-0.701447,1.19058,-1.05542,1.28204,0.86076,0.711868,0.512998,1.78405,2 +0.314072,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.0995761,-0.426033,0.711868,-1.93615,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,1.56982,-0.0995761,0.86076,0.711868,0.512998,-0.840594,1 +0.314072,0.894114,2.15884,4.47289,1.75787,0.983238,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.560115,0.86076,0.711868,0.512998,2.30897,1 +-2.13238,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,-2.26443,-2.36804,-1.48119,-1.71282,-1.39526,-1.93615,-0.315666,0 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,-1.11276,-1.05542,-0.560115,0.86076,0.711868,0.512998,1.78405,2 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-1.02065,0.86076,-1.39526,0.512998,-0.840594,1 +0.314072,-1.11087,-0.460081,-0.222058,1.75787,0.983238,3.70226,-1.53221,6.1845,-1.76061,-2.46101,-1.11276,-2.36804,-0.0995761,0.86076,-1.39526,-1.93615,2.30897,3 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-1.48119,-0.426033,0.711868,0.512998,-0.840594,1 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,1.56982,1.28204,-0.426033,-1.39526,0.512998,-0.315666,2 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,-0.565333,1.05811,0.0389078,0.257203,-0.0995761,0.86076,0.711868,0.512998,-0.840594,1 +0.314072,0.894114,-0.460081,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,0.257203,-0.0995761,-0.426033,0.711868,0.512998,0.73419,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,-1.53221,-0.193939,-1.76061,-2.46101,-2.26443,-2.36804,-1.02065,-1.71282,0.711868,0.512998,-0.840594,1 +-0.909156,0.894114,-0.460081,-0.222058,-0.565028,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,0.0389078,0.257203,1.28204,0.86076,0.711868,0.512998,0.73419,2 +-0.909156,-1.11087,-0.460081,-0.222058,-0.565028,-1.01018,-0.26828,0.648242,-0.193939,-0.565333,-0.701447,1.19058,-1.05542,-1.48119,-1.71282,0.711868,0.512998,-0.840594,1 +-0.909156,0.894114,2.15884,-0.222058,1.75787,0.983238,-0.26828,0.648242,-0.193939,0.629943,1.05811,1.19058,0.257203,-0.560115,0.86076,0.711868,0.512998,1.78405,1 diff --git a/data/mammographic.arff b/data/mammographic.arff new file mode 100755 index 0000000..e2a388d --- /dev/null +++ b/data/mammographic.arff @@ -0,0 +1,969 @@ +@relation mammographic +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'clase' {0,1} +@data +0.368698,0.787565,0.278795,1.42541,0.368642,1 +-0.189284,-0.814093,-1.24349,-1.00766,-3.09323,1 +0.368698,0.186943,1.03994,1.42541,0.368642,1 +-0.189284,-1.81513,-1.24349,-1.00766,0.368642,0 +0.368698,1.25472,-1.24349,1.42541,-3.09323,1 +-0.189284,0.654094,-1.24349,-1.61592,0.368642,0 +-0.189284,0.987772,-2.00463,-1.61592,0.368642,0 +0.368698,-0.880829,-1.24349,-1.61592,0.368642,0 +0.368698,0.120208,-1.24349,1.42541,0.368642,1 +0.368698,0.320415,-2.00463,1.42541,-1.93927,1 +0.368698,1.38819,-1.24349,0.81714,0.368642,1 +-0.747266,-0.880829,-0.482347,-1.00766,0.368642,1 +-0.189284,0.587358,-1.24349,-1.61592,0.368642,0 +-0.189284,-1.28124,0.278795,-1.00766,-0.785316,0 +-0.189284,0.320415,-0.482347,-1.00766,-0.785316,0 +-0.189284,-0.0799996,-1.24349,-1.00766,0.368642,0 +-0.747266,-0.213471,0.278795,0.81714,0.368642,0 +-0.189284,0.253679,-0.482347,-1.00766,0.368642,1 +-0.189284,-0.0799996,-1.24349,-1.00766,0.368642,1 +-0.189284,-1.0143,-1.24349,-1.61592,-3.09323,0 +-2.42121,0.720829,-2.00463,-1.61592,-1.93927,1 +0.368698,0.0534719,1.03994,0.208874,-1.93927,1 +-0.189284,-0.814093,-1.24349,-1.61592,-3.09323,0 +0.368698,-0.880829,1.03994,0.81714,0.368642,1 +-0.189284,0.253679,-0.482347,0.81714,0.368642,1 +0.368698,1.32145,1.03994,1.42541,0.368642,1 +-1.30525,0.720829,-1.24349,-1.00766,-3.09323,0 +0.368698,0.520622,0.278795,-1.61592,0.368642,0 +0.368698,-0.680621,1.03994,1.42541,0.368642,1 +0.368698,-0.0132638,1.03994,0.81714,0.368642,0 +-0.189284,-0.613886,-1.24349,1.42541,-0.785316,0 +0.368698,-0.0799996,1.03994,0.81714,0.368642,1 +0.368698,0.120208,1.03994,0.81714,0.368642,1 +-0.189284,-1.08104,-1.24349,-1.00766,-0.785316,0 +-0.189284,1.72187,-1.24349,-1.00766,0.368642,0 +-0.189284,1.45492,0.278795,-1.61592,-3.09323,0 +-0.189284,0.320415,-0.482347,-1.00766,0.368642,0 +0.368698,0.787565,0.278795,0.81714,-0.785316,1 +-0.189284,-0.480414,1.03994,1.42541,-3.09323,1 +-0.189284,-0.0132638,0.278795,0.81714,-0.785316,0 +-0.189284,0.253679,-0.482347,-1.00766,-3.09323,0 +-0.189284,1.52166,-1.24349,-1.00766,-1.93927,0 +-0.189284,-0.346943,-1.24349,-1.00766,0.368642,0 +-0.189284,0.387151,-0.482347,-1.00766,-3.09323,0 +0.368698,0.453886,0.278795,1.42541,-0.785316,1 +0.368698,-0.747357,-0.482347,0.81714,-3.09323,1 +0.368698,0.587358,1.03994,1.42541,0.368642,1 +-0.189284,-2.14881,-1.24349,-1.00766,-3.09323,0 +-1.30525,-0.880829,-2.00463,-1.61592,1.5226,0 +0.368698,0.787565,1.03994,1.42541,0.368642,1 +-0.189284,1.25472,-0.482347,-1.00766,-0.785316,0 +0.368698,1.65513,0.278795,1.42541,0.368642,1 +-0.189284,-2.14881,-1.24349,-1.00766,-3.09323,0 +-0.189284,0.520622,-0.482347,-1.00766,-3.09323,0 +-0.189284,-0.146735,-2.00463,1.42541,0.368642,1 +-0.189284,-0.814093,0.278795,0.81714,-3.09323,0 +-0.189284,-0.413678,-0.482347,-1.00766,-1.93927,0 +0.368698,-0.280207,-0.482347,0.81714,-3.09323,0 +-0.189284,-0.680621,-0.482347,-1.00766,-3.09323,0 +0.368698,0.253679,-0.482347,-1.61592,-3.09323,1 +0.368698,-0.213471,1.03994,0.208874,0.368642,1 +0.368698,0.320415,1.03994,0.208874,0.368642,1 +-0.189284,0.120208,-0.482347,1.42541,0.368642,0 +-0.747266,0.120208,-0.482347,-1.00766,-3.09323,0 +0.368698,1.25472,1.03994,0.81714,0.368642,1 +-0.189284,-2.01534,-0.482347,-1.00766,-3.09323,0 +-0.189284,-0.413678,-1.24349,-1.00766,0.368642,0 +0.368698,1.12124,1.03994,0.208874,-3.09323,1 +-0.189284,-0.680621,-0.482347,-1.00766,0.368642,0 +-0.189284,0.587358,-0.482347,-1.00766,0.368642,0 +-0.189284,1.18798,-0.482347,-1.00766,-0.785316,0 +0.368698,0.854301,1.03994,0.208874,0.368642,1 +0.368698,-0.213471,1.03994,1.42541,0.368642,0 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +0.368698,0.987772,-2.00463,0.81714,-3.09323,1 +-0.189284,-2.01534,-1.24349,-1.00766,0.368642,0 +0.368698,1.25472,-1.24349,-1.00766,-0.785316,1 +-0.189284,0.587358,-1.24349,-1.00766,0.368642,0 +0.368698,0.320415,1.03994,0.208874,-0.785316,1 +0.368698,0.787565,-0.482347,0.81714,-1.93927,0 +-0.189284,0.787565,1.03994,1.42541,0.368642,0 +0.368698,-0.747357,1.03994,0.81714,-0.785316,1 +-0.747266,0.854301,-1.24349,-1.00766,0.368642,1 +-0.189284,0.120208,-2.00463,0.81714,-1.93927,0 +0.368698,-0.280207,1.03994,-1.61592,-3.09323,1 +-0.189284,-1.48145,-1.24349,-1.61592,-3.09323,0 +0.368698,0.186943,1.03994,0.81714,0.368642,1 +0.368698,-1.28124,-1.24349,-1.61592,-3.09323,0 +-0.189284,0.520622,-1.24349,-1.00766,-3.09323,0 +0.368698,0.453886,-1.24349,1.42541,0.368642,1 +-0.189284,1.18798,0.278795,0.81714,0.368642,1 +-0.189284,1.65513,1.03994,0.81714,0.368642,1 +-0.189284,0.787565,-1.24349,-1.00766,-3.09323,0 +0.368698,0.253679,-0.482347,-1.00766,0.368642,1 +0.368698,0.320415,-1.24349,-1.61592,0.368642,0 +0.368698,-0.0799996,1.03994,0.81714,0.368642,1 +-0.189284,-1.0143,-1.24349,-1.00766,-3.09323,0 +-0.189284,-0.54715,-0.482347,-1.00766,-3.09323,0 +0.368698,0.453886,1.03994,0.81714,0.368642,0 +-0.189284,-1.48145,-0.482347,-1.00766,0.368642,0 +0.368698,0.253679,-0.482347,-1.61592,-3.09323,0 +-0.189284,0.654094,-0.482347,-1.61592,-3.09323,0 +-0.189284,0.186943,1.03994,0.81714,-3.09323,0 +-0.189284,-1.74839,-0.482347,-1.61592,-3.09323,0 +-0.189284,0.186943,-1.24349,-1.00766,-3.09323,0 +-0.189284,-0.0799996,-1.24349,-1.00766,-3.09323,0 +-0.189284,-0.747357,-1.24349,-1.00766,-3.09323,1 +-0.747266,-1.41471,-0.482347,-1.00766,-3.09323,0 +-0.189284,0.120208,-1.24349,-1.00766,0.368642,0 +0.368698,-1.48145,1.03994,0.81714,-3.09323,1 +-0.189284,-0.680621,1.03994,0.81714,0.368642,0 +0.368698,1.05451,1.03994,0.81714,0.368642,1 +0.368698,0.253679,1.03994,0.81714,-0.785316,0 +-0.189284,0.0534719,-0.482347,-1.00766,-3.09323,0 +-0.189284,-1.0143,0.278795,0.81714,-3.09323,0 +-0.189284,0.0534719,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.680621,-0.482347,-1.00766,-3.09323,0 +-0.189284,0.120208,-0.482347,-1.00766,-0.785316,0 +0.368698,-0.0132638,0.278795,0.81714,0.368642,1 +0.368698,1.92207,1.03994,1.42541,0.368642,0 +0.368698,-0.280207,1.03994,0.81714,0.368642,1 +-0.189284,-0.814093,-1.24349,-1.00766,-3.09323,0 +-0.189284,-2.08207,-0.482347,-1.00766,-0.785316,0 +-0.189284,0.720829,-1.24349,-1.00766,0.368642,0 +0.368698,-1.48145,1.03994,0.81714,0.368642,0 +-0.189284,0.253679,1.03994,0.208874,-0.785316,0 +-0.189284,1.38819,-0.482347,0.208874,-3.09323,0 +-0.189284,-1.0143,-1.24349,-1.00766,-3.09323,0 +-0.189284,-0.213471,-2.00463,0.81714,-3.09323,0 +0.368698,-1.0143,1.03994,1.42541,0.368642,1 +0.368698,0.787565,1.03994,0.81714,0.368642,1 +0.368698,1.32145,1.03994,0.208874,0.368642,1 +0.368698,2.05554,1.03994,0.81714,0.368642,0 +-0.189284,0.320415,-0.482347,-1.61592,-3.09323,0 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +0.368698,-0.613886,1.03994,1.42541,0.368642,1 +-0.189284,0.253679,1.03994,0.81714,0.368642,1 +0.368698,0.654094,1.03994,0.81714,0.368642,1 +-0.189284,-0.146735,-1.24349,-1.00766,0.368642,0 +0.368698,0.787565,0.278795,1.42541,0.368642,1 +0.368698,1.65513,1.03994,1.42541,0.368642,1 +-0.189284,-0.0132638,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.480414,-1.24349,-1.00766,-3.09323,0 +-0.189284,-0.54715,-1.24349,-1.00766,-0.785316,0 +-0.189284,-0.346943,-0.482347,-1.00766,-3.09323,0 +0.368698,0.453886,1.03994,1.42541,0.368642,1 +0.368698,0.520622,1.03994,0.81714,0.368642,1 +-0.189284,0.520622,1.03994,-1.61592,0.368642,1 +-0.189284,1.05451,1.03994,0.81714,0.368642,1 +-0.189284,-0.947564,-1.24349,-1.00766,0.368642,0 +0.368698,0.120208,1.03994,0.81714,1.5226,1 +0.368698,1.05451,1.03994,0.81714,1.5226,1 +-0.189284,0.720829,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.54715,-0.482347,0.81714,-0.785316,0 +-0.747266,-1.41471,1.03994,0.81714,0.368642,0 +-0.189284,0.253679,0.278795,0.81714,0.368642,0 +0.368698,-0.0132638,-0.482347,-1.61592,-3.09323,1 +-0.189284,-0.280207,-2.00463,-1.61592,0.368642,0 +-0.189284,0.453886,-0.482347,-1.00766,-3.09323,0 +-0.189284,0.186943,1.03994,-1.61592,0.368642,1 +0.368698,0.787565,1.03994,0.81714,0.368642,1 +-0.189284,-0.947564,-0.482347,-1.00766,0.368642,0 +-0.189284,-2.14881,0.278795,-1.00766,0.368642,0 +-0.189284,-0.146735,-2.00463,0.81714,0.368642,0 +-0.189284,-0.880829,-0.482347,-1.00766,0.368642,0 +0.368698,2.12228,1.03994,1.42541,0.368642,1 +-0.189284,0.854301,-1.24349,-1.00766,0.368642,1 +-0.189284,0.587358,-1.24349,-1.00766,0.368642,0 +0.368698,-0.0799996,0.278795,1.42541,0.368642,1 +0.368698,2.05554,1.03994,1.42541,0.368642,1 +-0.189284,-2.28228,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.08104,-1.24349,-1.00766,-3.09323,0 +-0.189284,-0.146735,1.03994,0.81714,0.368642,0 +-0.189284,-0.747357,1.03994,0.81714,0.368642,0 +-0.189284,-0.0799996,-1.24349,-1.00766,0.368642,0 +0.368698,0.520622,1.03994,1.42541,0.368642,1 +-0.189284,0.453886,-0.482347,-1.00766,-3.09323,0 +-0.189284,-0.680621,-0.482347,-1.00766,-0.785316,0 +0.368698,1.05451,1.03994,1.42541,0.368642,0 +0.368698,-0.413678,1.03994,0.81714,0.368642,1 +-0.189284,-0.413678,1.03994,0.81714,0.368642,0 +0.368698,0.720829,1.03994,0.81714,1.5226,0 +-0.189284,-2.41575,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.34798,-1.24349,-1.00766,-0.785316,0 +-0.189284,1.05451,0.278795,0.208874,-3.09323,1 +0.368698,1.25472,1.03994,1.42541,0.368642,1 +0.368698,-1.21451,1.03994,0.81714,0.368642,1 +-0.189284,0.787565,-1.24349,-1.61592,0.368642,0 +0.368698,1.72187,0.278795,0.81714,0.368642,1 +0.368698,0.253679,1.03994,0.81714,0.368642,1 +-0.189284,-1.41471,-1.24349,-1.00766,0.368642,0 +0.368698,1.58839,1.03994,0.208874,0.368642,1 +0.368698,0.320415,0.278795,-1.00766,0.368642,0 +-0.189284,-0.947564,-1.24349,-1.00766,0.368642,1 +-0.189284,-0.346943,-1.24349,-1.00766,0.368642,0 +0.368698,1.98881,1.03994,0.81714,0.368642,1 +-0.189284,-0.613886,-1.24349,-1.00766,0.368642,0 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +-0.189284,1.18798,0.278795,-1.00766,-0.785316,0 +-0.189284,-0.0132638,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.413678,-0.482347,-1.00766,0.368642,0 +-0.747266,-0.413678,1.03994,0.81714,0.368642,0 +-0.189284,-0.280207,1.03994,1.42541,0.368642,1 +-1.30525,-0.480414,1.03994,0.81714,0.368642,0 +-0.189284,0.186943,1.03994,1.42541,0.368642,0 +0.368698,1.12124,1.03994,1.42541,0.368642,1 +-0.189284,-0.613886,-0.482347,0.208874,0.368642,0 +-0.189284,-0.814093,1.03994,0.208874,0.368642,1 +-2.42121,-0.213471,1.03994,0.81714,0.368642,0 +-0.189284,0.720829,-0.482347,-1.00766,-3.09323,0 +-0.189284,-0.613886,-1.24349,-1.00766,-1.93927,0 +-0.189284,0.921037,0.278795,-1.00766,0.368642,0 +-1.30525,0.253679,-1.24349,-1.00766,-3.09323,1 +0.368698,-0.814093,-0.482347,-1.00766,0.368642,1 +0.368698,1.38819,1.03994,1.42541,0.368642,1 +-0.189284,-0.613886,-1.24349,-1.00766,0.368642,0 +-0.189284,0.253679,-0.482347,0.81714,0.368642,0 +-0.189284,0.120208,-1.24349,-1.00766,0.368642,0 +0.368698,-0.814093,1.03994,1.42541,-3.09323,0 +-0.747266,-0.680621,-0.482347,-1.00766,0.368642,0 +-0.747266,-0.814093,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.680621,-0.482347,-1.00766,0.368642,0 +0.368698,0.120208,1.03994,1.42541,0.368642,1 +0.368698,1.58839,1.03994,0.81714,0.368642,1 +0.368698,-0.0799996,-0.482347,-1.00766,0.368642,1 +-0.189284,-1.0143,0.278795,0.81714,0.368642,0 +0.368698,0.520622,1.03994,0.81714,0.368642,1 +-1.30525,-0.0132638,-1.24349,-1.61592,-1.93927,0 +-0.189284,-0.213471,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.14777,-1.24349,-1.00766,0.368642,0 +-0.747266,1.12124,1.03994,0.208874,0.368642,0 +0.368698,1.65513,1.03994,0.208874,0.368642,1 +0.368698,1.38819,1.03994,0.208874,0.368642,1 +-0.189284,0.453886,0.278795,-1.00766,0.368642,0 +0.368698,0.587358,1.03994,1.42541,0.368642,1 +0.368698,-0.880829,1.03994,1.42541,0.368642,0 +-0.747266,0.320415,-2.00463,0.208874,-1.93927,0 +-0.189284,0.587358,1.03994,1.42541,0.368642,0 +-0.189284,0.520622,1.03994,0.81714,0.368642,1 +-0.189284,-2.08207,-0.482347,-1.00766,-0.785316,0 +0.368698,1.12124,1.03994,0.81714,0.368642,1 +-0.189284,0.520622,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.613886,-1.24349,-1.00766,0.368642,0 +-0.747266,-1.48145,-1.24349,-1.00766,0.368642,0 +0.368698,1.38819,1.03994,0.81714,0.368642,1 +-0.189284,-1.28124,-0.482347,0.208874,0.368642,0 +-0.189284,-1.0143,-0.482347,-1.00766,0.368642,0 +0.368698,0.186943,-1.24349,1.42541,0.368642,1 +-0.189284,-0.814093,-0.482347,-1.00766,0.368642,0 +-0.747266,-0.880829,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.54819,-1.24349,-1.00766,0.368642,0 +0.368698,0.120208,1.03994,0.81714,-0.785316,1 +-0.189284,-1.21451,-1.24349,-1.00766,0.368642,0 +-0.189284,0.987772,1.03994,0.81714,0.368642,1 +0.368698,0.0534719,1.03994,-0.399392,0.368642,1 +-0.747266,1.38819,-2.00463,0.208874,-0.785316,0 +0.368698,1.18798,1.03994,0.81714,0.368642,1 +0.368698,1.45492,1.03994,1.42541,0.368642,1 +0.368698,0.787565,1.03994,0.81714,-1.93927,1 +0.368698,1.05451,1.03994,0.208874,0.368642,1 +0.368698,0.654094,1.03994,0.81714,0.368642,1 +-0.189284,-0.814093,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.0143,-0.482347,-1.00766,-3.09323,0 +-0.189284,-0.413678,-0.482347,-1.00766,0.368642,0 +0.368698,1.38819,1.03994,-0.399392,0.368642,1 +-0.189284,-0.0132638,1.03994,0.81714,0.368642,0 +0.368698,1.12124,1.03994,1.42541,0.368642,1 +-0.747266,-0.146735,1.03994,0.208874,0.368642,0 +0.368698,1.32145,1.03994,0.81714,0.368642,1 +0.368698,0.387151,1.03994,1.42541,0.368642,1 +0.368698,0.787565,1.03994,0.81714,0.368642,1 +0.368698,-0.0132638,1.03994,-0.399392,0.368642,1 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +-1.30525,1.38819,-1.24349,-1.00766,-0.785316,0 +-0.189284,0.120208,1.03994,0.81714,0.368642,1 +0.368698,1.05451,0.278795,-1.00766,0.368642,0 +0.368698,0.987772,1.03994,1.42541,0.368642,1 +-0.189284,-1.34798,1.03994,-0.399392,-3.09323,0 +0.368698,1.58839,-1.24349,-1.61592,0.368642,1 +-0.189284,0.520622,-0.482347,-1.00766,0.368642,0 +0.368698,-1.0143,-1.24349,0.81714,0.368642,1 +-0.189284,-0.947564,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.54715,-0.482347,-1.00766,-0.785316,0 +-0.189284,0.854301,-1.24349,-1.00766,0.368642,1 +-0.189284,0.587358,1.03994,0.208874,0.368642,1 +-0.189284,0.654094,1.03994,0.81714,-3.09323,1 +-0.189284,1.18798,1.03994,0.208874,0.368642,0 +-0.189284,-1.08104,1.03994,0.208874,0.368642,0 +0.368698,-0.0132638,1.03994,1.42541,1.5226,1 +0.368698,-0.146735,0.278795,0.81714,1.5226,0 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +-0.189284,-0.814093,0.278795,-1.00766,-0.785316,0 +0.368698,-0.747357,1.03994,1.42541,0.368642,1 +-0.189284,1.45492,1.03994,0.81714,0.368642,1 +-0.189284,0.453886,-0.482347,0.81714,0.368642,0 +0.368698,1.65513,1.03994,0.81714,0.368642,1 +-0.189284,-1.48145,1.03994,0.81714,0.368642,0 +-0.189284,-0.346943,1.03994,1.42541,0.368642,1 +-0.189284,1.05451,-1.24349,-1.61592,0.368642,0 +0.368698,-0.613886,1.03994,0.81714,0.368642,1 +0.368698,-0.413678,1.03994,1.42541,0.368642,1 +-0.189284,-0.146735,-1.24349,-1.00766,0.368642,0 +-0.747266,-0.613886,-0.482347,-1.00766,-0.785316,0 +-0.189284,0.120208,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.0799996,0.278795,-1.00766,0.368642,0 +-0.189284,-0.0799996,-1.24349,-1.61592,-3.09323,0 +-1.30525,-0.413678,-0.482347,-1.00766,-0.785316,0 +-0.189284,-0.54715,0.278795,-1.00766,0.368642,0 +-0.189284,-1.0143,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.680621,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.346943,1.03994,1.42541,0.368642,1 +0.368698,-0.0799996,1.03994,0.81714,0.368642,1 +-0.189284,0.787565,1.03994,-1.00766,0.368642,1 +-0.189284,1.45492,1.03994,0.81714,0.368642,1 +-0.189284,0.720829,1.03994,0.208874,0.368642,0 +-0.189284,1.05451,-0.482347,-1.61592,0.368642,1 +-0.189284,-1.28124,-0.482347,0.208874,0.368642,0 +-0.189284,0.921037,1.03994,0.81714,0.368642,0 +-0.189284,-0.480414,-1.24349,-1.00766,0.368642,0 +-0.189284,0.587358,1.03994,0.81714,0.368642,1 +-0.189284,1.05451,1.03994,-0.399392,0.368642,1 +0.368698,0.320415,1.03994,0.208874,0.368642,1 +-0.189284,-2.08207,-1.24349,-1.00766,0.368642,0 +0.368698,-1.41471,1.03994,1.42541,-0.785316,1 +-0.189284,1.58839,-1.24349,-1.00766,-0.785316,0 +-0.189284,-0.680621,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.21451,-0.482347,-1.00766,-0.785316,0 +-0.189284,-0.880829,-1.24349,-1.00766,-0.785316,0 +-0.189284,1.12124,1.03994,0.81714,0.368642,1 +0.368698,0.320415,1.03994,1.42541,0.368642,1 +0.368698,1.98881,0.278795,1.42541,0.368642,1 +-0.189284,-0.280207,-1.24349,-1.00766,0.368642,0 +0.368698,-0.0799996,1.03994,1.42541,0.368642,1 +0.368698,-0.0132638,1.03994,0.208874,0.368642,1 +-0.189284,0.587358,1.03994,0.81714,0.368642,0 +0.368698,0.787565,1.03994,1.42541,0.368642,1 +0.368698,1.32145,1.03994,0.208874,0.368642,1 +0.368698,2.12228,1.03994,0.81714,0.368642,1 +-0.189284,-0.613886,1.03994,0.81714,0.368642,1 +-0.189284,0.253679,-0.482347,-1.00766,-3.09323,0 +28.2678,-0.613886,1.03994,0.208874,0.368642,1 +0.368698,0.387151,-1.24349,-1.00766,0.368642,1 +-0.189284,-0.747357,-1.24349,0.81714,0.368642,0 +-0.189284,-1.54819,-1.24349,-1.00766,0.368642,0 +-0.189284,0.453886,-1.24349,-1.00766,0.368642,0 +0.368698,0.253679,1.03994,1.42541,0.368642,1 +-0.189284,0.387151,1.03994,-1.00766,0.368642,0 +0.368698,1.52166,1.03994,0.81714,0.368642,1 +0.368698,-0.880829,1.03994,1.42541,0.368642,0 +-0.189284,-0.680621,-1.24349,-0.399392,0.368642,0 +0.368698,-1.41471,-0.482347,-1.00766,0.368642,1 +0.368698,-1.08104,1.03994,0.208874,-3.09323,1 +-0.189284,-1.88186,0.278795,-1.00766,0.368642,0 +-0.189284,-0.814093,-1.24349,-1.00766,0.368642,0 +0.368698,1.85534,1.03994,0.81714,0.368642,1 +-0.189284,-1.28124,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.21451,-0.482347,-1.00766,0.368642,0 +-0.189284,0.0534719,0.278795,-1.00766,0.368642,1 +0.368698,-0.0132638,1.03994,0.81714,0.368642,1 +0.368698,-0.613886,0.278795,-1.61592,0.368642,0 +-0.189284,2.18902,1.03994,0.81714,0.368642,1 +0.368698,1.05451,1.03994,0.81714,0.368642,1 +-0.189284,-0.947564,-0.482347,-1.00766,0.368642,0 +0.368698,-0.413678,1.03994,0.81714,0.368642,1 +-0.747266,-0.280207,-1.24349,-1.00766,1.5226,0 +-0.189284,-1.08104,-1.24349,0.208874,0.368642,0 +-0.189284,-0.613886,-0.482347,-1.00766,0.368642,0 +0.368698,-0.213471,1.03994,0.81714,0.368642,1 +0.368698,0.186943,1.03994,0.81714,0.368642,1 +-0.189284,0.787565,1.03994,1.42541,0.368642,1 +0.368698,1.65513,1.03994,0.81714,0.368642,1 +-0.747266,-0.613886,-1.24349,-1.61592,-3.09323,0 +-0.747266,-0.814093,-1.24349,-1.61592,-3.09323,0 +-0.189284,-0.680621,-1.24349,-1.00766,0.368642,0 +0.368698,0.854301,1.03994,0.81714,0.368642,1 +-0.189284,-0.0799996,1.03994,0.81714,-3.09323,1 +-0.189284,-0.747357,-0.482347,0.208874,0.368642,0 +0.368698,1.25472,1.03994,0.208874,0.368642,1 +0.368698,-0.0132638,1.03994,1.42541,0.368642,0 +-0.189284,-0.413678,1.03994,0.81714,0.368642,1 +-0.189284,-0.413678,-1.24349,-1.00766,0.368642,0 +0.368698,-0.346943,1.03994,0.208874,0.368642,1 +0.368698,-0.213471,0.278795,1.42541,0.368642,1 +-0.189284,-0.680621,-1.24349,-1.00766,0.368642,0 +-0.189284,0.720829,-1.24349,-1.00766,0.368642,0 +-0.189284,0.854301,1.03994,0.81714,0.368642,1 +-0.189284,1.12124,-0.482347,-1.00766,0.368642,0 +0.368698,0.587358,-2.00463,-1.61592,0.368642,0 +-1.30525,-0.413678,-2.00463,0.208874,0.368642,0 +-0.747266,-0.747357,-2.00463,0.81714,0.368642,0 +0.368698,1.25472,1.03994,0.81714,0.368642,1 +0.368698,0.186943,1.03994,0.81714,0.368642,1 +-0.189284,1.45492,-0.482347,0.208874,0.368642,0 +-0.189284,-0.413678,0.278795,-1.00766,0.368642,0 +-0.189284,-1.41471,-2.00463,-1.61592,1.5226,0 +0.368698,0.320415,1.03994,0.208874,0.368642,1 +0.368698,0.921037,1.03994,0.208874,0.368642,1 +-0.189284,-0.146735,-0.482347,-1.00766,0.368642,0 +-0.747266,-0.613886,0.278795,0.81714,0.368642,0 +0.368698,1.25472,1.03994,0.81714,0.368642,1 +-0.189284,0.186943,-1.24349,-1.00766,0.368642,0 +0.368698,0.854301,1.03994,0.81714,0.368642,1 +0.368698,-0.613886,1.03994,0.208874,0.368642,0 +0.368698,0.387151,-0.482347,0.81714,0.368642,1 +0.368698,0.987772,1.03994,0.208874,0.368642,1 +0.368698,-1.21451,1.03994,0.81714,0.368642,1 +-0.747266,0.654094,1.03994,1.42541,0.368642,1 +-0.189284,0.787565,1.03994,0.81714,0.368642,0 +0.368698,0.921037,0.278795,0.81714,0.368642,0 +0.368698,1.38819,1.03994,0.81714,0.368642,1 +-0.189284,0.654094,1.03994,0.208874,0.368642,0 +0.368698,1.12124,1.03994,-0.399392,0.368642,1 +-0.189284,0.453886,1.03994,-0.399392,0.368642,0 +0.368698,-0.880829,1.03994,0.81714,0.368642,1 +0.368698,0.720829,1.03994,0.208874,0.368642,1 +0.368698,-0.480414,1.03994,0.81714,0.368642,1 +-0.189284,-1.34798,-1.24349,-1.00766,0.368642,0 +0.368698,0.320415,1.03994,0.81714,0.368642,1 +0.368698,0.787565,1.03994,-0.399392,0.368642,1 +0.368698,1.52166,1.03994,0.81714,0.368642,1 +-0.189284,0.720829,-1.24349,-1.00766,0.368642,1 +-0.189284,-1.9486,-1.24349,-1.00766,-3.09323,0 +-0.189284,-0.480414,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.61492,-1.24349,-1.00766,0.368642,0 +0.368698,-0.814093,1.03994,0.208874,0.368642,1 +0.368698,1.12124,-0.482347,0.81714,0.368642,0 +0.368698,0.720829,-1.24349,-1.00766,0.368642,1 +-0.189284,0.0534719,1.03994,0.81714,0.368642,0 +0.368698,0.186943,1.03994,1.42541,0.368642,1 +0.368698,-1.48145,-0.482347,0.81714,0.368642,1 +-0.189284,-1.21451,-1.24349,-1.00766,0.368642,0 +0.368698,-1.28124,1.03994,0.208874,0.368642,1 +-0.189284,-1.08104,-0.482347,0.208874,0.368642,0 +-0.189284,-1.08104,1.03994,0.81714,0.368642,1 +0.368698,1.85534,1.03994,0.81714,0.368642,1 +-0.189284,0.854301,1.03994,1.42541,0.368642,1 +0.368698,0.520622,0.278795,0.81714,0.368642,1 +0.368698,1.52166,1.03994,0.81714,0.368642,1 +-0.189284,-1.14777,-0.482347,0.208874,0.368642,0 +0.368698,-0.613886,1.03994,0.208874,0.368642,1 +0.368698,0.320415,1.03994,0.81714,0.368642,1 +0.368698,0.0534719,-0.482347,0.208874,0.368642,1 +-0.189284,-1.48145,-1.24349,-1.00766,0.368642,0 +-0.189284,-3.68373,1.03994,1.42541,0.368642,1 +-0.189284,0.921037,-1.24349,1.42541,0.368642,1 +0.368698,0.720829,-1.24349,0.81714,0.368642,1 +-0.189284,1.12124,-1.24349,0.208874,0.368642,0 +-0.189284,-1.74839,-1.24349,-1.00766,0.368642,0 +0.368698,-0.0799996,1.03994,1.42541,0.368642,1 +0.368698,1.65513,1.03994,0.81714,0.368642,1 +0.368698,0.854301,1.03994,0.208874,0.368642,1 +-0.189284,-1.34798,-0.482347,-1.00766,0.368642,0 +-0.189284,0.120208,0.278795,-1.61592,0.368642,0 +0.368698,-3.68373,1.03994,0.81714,0.368642,1 +-0.189284,-0.346943,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.54819,1.03994,0.208874,0.368642,0 +-2.42121,0.921037,1.03994,1.42541,0.368642,1 +-0.189284,1.05451,1.03994,1.42541,0.368642,1 +0.368698,2.12228,1.03994,1.42541,0.368642,1 +-0.747266,-1.0143,-0.482347,-1.61592,0.368642,0 +-0.189284,-1.61492,-1.24349,-1.00766,-3.09323,0 +-0.189284,0.587358,-1.24349,-1.00766,0.368642,0 +0.368698,-0.0132638,1.03994,1.42541,0.368642,1 +-0.189284,-2.48249,-1.24349,-1.00766,0.368642,0 +-0.747266,-0.346943,-0.482347,-1.00766,-3.09323,0 +-0.189284,-0.146735,-1.24349,-1.00766,0.368642,0 +0.368698,1.92207,1.03994,1.42541,0.368642,1 +0.368698,1.65513,1.03994,0.208874,0.368642,1 +-0.189284,-1.54819,-1.24349,-1.00766,0.368642,0 +0.368698,1.45492,0.278795,0.81714,0.368642,1 +-0.189284,-1.14777,-1.24349,-1.00766,0.368642,0 +0.368698,-0.0799996,1.03994,1.42541,0.368642,1 +-0.189284,0.520622,-1.24349,-1.00766,0.368642,0 +-0.189284,0.387151,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.213471,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.28124,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.947564,-2.00463,-1.61592,0.368642,0 +-0.189284,0.253679,-1.24349,-1.00766,0.368642,0 +0.368698,-0.280207,1.03994,0.81714,-0.785316,1 +-0.189284,-1.28124,-1.24349,-1.00766,0.368642,0 +0.368698,-1.0143,1.03994,0.208874,0.368642,1 +-0.189284,-0.413678,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.21451,-0.482347,0.208874,0.368642,0 +-0.189284,-0.613886,-1.24349,-1.00766,0.368642,0 +-0.189284,0.520622,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.81513,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.54715,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.880829,-0.482347,-1.00766,0.368642,1 +0.368698,-0.747357,1.03994,1.42541,0.368642,1 +-0.189284,-0.413678,1.03994,0.81714,0.368642,0 +0.368698,-0.54715,1.03994,1.42541,0.368642,1 +0.368698,-0.213471,1.03994,1.42541,0.368642,1 +-0.189284,-0.146735,-1.24349,-1.00766,0.368642,1 +0.368698,1.85534,0.278795,0.208874,0.368642,1 +-0.189284,-0.346943,1.03994,0.81714,-3.09323,1 +0.368698,0.520622,1.03994,0.81714,0.368642,1 +-0.189284,1.7886,-2.00463,1.42541,0.368642,1 +-0.189284,-0.0799996,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.346943,1.03994,0.81714,0.368642,0 +0.368698,1.65513,1.03994,1.42541,0.368642,1 +0.368698,-0.680621,-0.482347,0.81714,0.368642,0 +0.368698,0.253679,1.03994,0.81714,-3.09323,1 +-0.189284,-1.81513,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.61492,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.947564,-0.482347,-1.00766,0.368642,0 +-0.189284,-2.28228,0.278795,-1.00766,0.368642,0 +0.368698,-0.747357,0.278795,0.81714,0.368642,1 +0.368698,-0.413678,1.03994,0.81714,0.368642,1 +0.368698,1.05451,1.03994,1.42541,0.368642,1 +0.368698,1.32145,1.03994,1.42541,0.368642,1 +-0.189284,-1.14777,-0.482347,-1.00766,0.368642,0 +-0.189284,0.320415,-1.24349,0.208874,0.368642,0 +0.368698,2.12228,1.03994,1.42541,0.368642,1 +-0.189284,0.987772,1.03994,0.81714,0.368642,1 +0.368698,-0.0132638,1.03994,1.42541,0.368642,1 +-0.747266,-2.28228,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.346943,-1.24349,-1.00766,0.368642,0 +0.368698,1.38819,1.03994,1.42541,0.368642,1 +-0.189284,-2.14881,-1.24349,-1.00766,0.368642,0 +-0.747266,0.854301,-2.00463,-1.61592,0.368642,0 +-0.189284,0.453886,1.03994,-1.61592,0.368642,1 +0.368698,0.654094,-1.24349,-1.61592,0.368642,1 +0.368698,1.18798,1.03994,1.42541,0.368642,1 +-0.189284,-1.14777,-0.482347,0.208874,0.368642,0 +-1.30525,0.120208,-1.24349,-1.00766,0.368642,0 +0.368698,0.654094,1.03994,1.42541,0.368642,1 +0.368698,0.787565,-0.482347,0.81714,0.368642,1 +0.368698,0.387151,-0.482347,0.81714,0.368642,1 +0.368698,0.0534719,1.03994,0.81714,0.368642,0 +0.368698,1.05451,-0.482347,0.81714,0.368642,1 +-0.189284,-0.413678,-0.482347,-0.399392,0.368642,0 +-0.189284,-0.0132638,-2.00463,-1.61592,0.368642,0 +-0.189284,-0.747357,-0.482347,-1.00766,0.368642,0 +-2.42121,0.186943,1.03994,0.81714,0.368642,0 +-0.189284,-1.88186,-0.482347,-1.00766,0.368642,0 +0.368698,1.18798,1.03994,1.42541,0.368642,1 +-0.189284,-1.41471,-0.482347,-1.00766,0.368642,0 +0.368698,0.520622,-2.00463,0.81714,0.368642,1 +-0.189284,-0.346943,-0.482347,-1.00766,0.368642,1 +-0.189284,0.453886,-0.482347,-1.00766,0.368642,0 +-0.747266,-2.28228,0.278795,-1.00766,0.368642,0 +-0.189284,-0.413678,-0.482347,-1.61592,0.368642,0 +-0.189284,-1.28124,0.278795,-1.00766,0.368642,0 +-0.189284,-0.680621,-0.482347,-1.00766,0.368642,1 +0.368698,0.787565,1.03994,1.42541,0.368642,1 +-0.189284,-2.28228,-1.24349,-1.00766,0.368642,0 +-0.189284,0.120208,-0.482347,-1.00766,0.368642,0 +0.368698,0.720829,1.03994,1.42541,0.368642,1 +-0.189284,1.05451,1.03994,0.81714,0.368642,1 +0.368698,0.921037,0.278795,0.81714,0.368642,1 +0.926679,1.65513,1.03994,1.42541,0.368642,1 +-0.747266,-1.88186,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.14777,-0.482347,-1.00766,0.368642,0 +-0.189284,-2.14881,-0.482347,-1.00766,0.368642,0 +0.368698,0.987772,-2.00463,1.42541,0.368642,1 +-0.189284,-0.613886,1.03994,0.208874,0.368642,0 +-0.189284,0.387151,-0.482347,0.208874,0.368642,0 +0.368698,0.654094,1.03994,1.42541,0.368642,1 +-0.189284,0.320415,1.03994,0.208874,0.368642,0 +0.368698,1.85534,1.03994,1.42541,0.368642,1 +0.368698,-1.0143,1.03994,0.81714,0.368642,1 +-1.30525,0.253679,-2.00463,0.81714,0.368642,0 +-0.189284,-0.146735,0.278795,0.81714,0.368642,0 +-0.189284,1.38819,1.03994,0.81714,0.368642,0 +0.368698,1.58839,-1.24349,0.81714,0.368642,1 +0.368698,-1.14777,-0.482347,0.81714,0.368642,1 +-0.189284,0.387151,0.278795,0.81714,0.368642,0 +-0.189284,0.0534719,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.747357,-0.482347,-1.00766,0.368642,0 +-0.189284,0.587358,0.278795,0.81714,-3.09323,1 +-0.189284,0.720829,0.278795,0.208874,0.368642,0 +-0.189284,-0.346943,0.278795,0.208874,0.368642,0 +-0.189284,-0.613886,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.08104,-1.24349,-1.00766,0.368642,0 +-0.189284,0.320415,0.278795,-1.61592,-3.09323,0 +0.368698,-0.0132638,1.03994,1.42541,0.368642,1 +-0.189284,-1.0143,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.9486,-1.24349,-1.00766,0.368642,0 +0.368698,1.92207,0.278795,-0.399392,0.368642,1 +-0.189284,-0.947564,-0.482347,-0.399392,0.368642,0 +-0.189284,0.520622,-1.24349,-1.00766,0.368642,0 +-1.30525,0.654094,-2.00463,-1.00766,-0.785316,0 +-0.189284,-0.413678,-1.24349,-1.00766,0.368642,0 +-0.189284,0.0534719,-0.482347,-0.399392,0.368642,1 +0.368698,0.654094,1.03994,0.81714,0.368642,0 +-0.189284,-0.0799996,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.28124,-1.24349,-1.00766,0.368642,0 +0.368698,-0.413678,1.03994,0.81714,0.368642,0 +-0.189284,0.253679,1.03994,0.81714,0.368642,1 +0.368698,1.32145,1.03994,0.81714,0.368642,1 +0.368698,0.253679,1.03994,-0.399392,0.368642,0 +0.368698,0.253679,1.03994,0.81714,0.368642,1 +-0.189284,-1.81513,1.03994,0.81714,0.368642,1 +0.368698,-0.146735,1.03994,1.42541,0.368642,0 +0.368698,0.120208,1.03994,0.81714,0.368642,0 +0.368698,1.45492,1.03994,0.208874,1.5226,0 +0.368698,1.98881,1.03994,0.208874,0.368642,1 +-0.189284,0.253679,1.03994,0.81714,0.368642,0 +0.368698,0.253679,-1.24349,1.42541,0.368642,1 +-0.189284,0.654094,0.278795,0.208874,0.368642,1 +-0.189284,-0.0799996,-0.482347,-1.00766,0.368642,0 +0.368698,-0.613886,1.03994,1.42541,0.368642,1 +-0.189284,0.520622,1.03994,0.81714,0.368642,1 +-0.189284,-0.146735,-1.24349,-1.00766,0.368642,1 +-0.189284,0.0534719,-1.24349,-1.00766,0.368642,0 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +0.368698,0.720829,1.03994,1.42541,0.368642,1 +-0.189284,-0.0132638,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.747357,-1.24349,-1.00766,0.368642,0 +0.368698,2.05554,0.278795,0.81714,0.368642,1 +0.368698,-0.54715,1.03994,1.42541,0.368642,1 +0.368698,0.253679,1.03994,1.42541,0.368642,1 +0.368698,0.720829,1.03994,1.42541,0.368642,0 +0.368698,0.387151,1.03994,0.208874,0.368642,1 +-0.747266,-0.613886,-2.00463,1.42541,-3.09323,1 +-0.189284,0.921037,-1.24349,-1.00766,0.368642,0 +0.368698,2.52269,-1.24349,1.42541,0.368642,1 +-0.189284,-1.08104,-1.24349,0.208874,0.368642,0 +0.368698,-0.747357,1.03994,1.42541,0.368642,1 +-0.189284,-0.680621,-0.482347,-0.399392,0.368642,0 +-0.189284,-0.280207,0.278795,0.81714,0.368642,0 +-0.189284,0.0534719,-0.482347,0.81714,0.368642,0 +-0.189284,0.720829,1.03994,0.81714,0.368642,0 +0.368698,0.387151,1.03994,1.42541,0.368642,1 +-0.189284,0.587358,0.278795,0.208874,0.368642,1 +0.368698,0.120208,-0.482347,0.81714,0.368642,0 +0.368698,1.58839,1.03994,0.81714,0.368642,1 +-0.189284,0.120208,-0.482347,-1.00766,-3.09323,0 +-0.189284,-0.747357,1.03994,-1.00766,-1.93927,0 +-0.189284,-1.61492,-0.482347,-1.00766,0.368642,0 +-0.189284,0.520622,1.03994,0.81714,0.368642,0 +-0.189284,0.587358,-1.24349,-1.00766,0.368642,0 +0.368698,-0.54715,1.03994,1.42541,0.368642,0 +0.368698,0.854301,1.03994,1.42541,0.368642,1 +-0.189284,-1.68166,-1.24349,-1.00766,0.368642,0 +0.368698,-0.814093,1.03994,1.42541,0.368642,1 +-0.189284,0.0534719,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.613886,-0.482347,-1.00766,0.368642,0 +-0.189284,0.787565,-0.482347,-1.00766,0.368642,0 +0.368698,-0.213471,1.03994,1.42541,0.368642,1 +-0.189284,0.787565,1.03994,0.81714,0.368642,1 +-0.189284,-0.54715,-0.482347,-1.00766,0.368642,0 +0.368698,0.186943,1.03994,1.42541,0.368642,1 +-0.189284,-1.81513,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.814093,-1.24349,-1.00766,0.368642,0 +-0.189284,0.120208,-0.482347,0.81714,0.368642,0 +0.368698,0.854301,1.03994,1.42541,0.368642,1 +-0.189284,0.587358,-0.482347,0.81714,0.368642,0 +-0.189284,0.587358,-0.482347,0.81714,0.368642,0 +0.368698,0.453886,1.03994,0.81714,0.368642,1 +-0.189284,-1.14777,1.03994,-1.00766,0.368642,0 +0.368698,0.854301,1.03994,0.81714,0.368642,1 +-0.189284,-0.947564,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.34798,-0.482347,-1.00766,0.368642,1 +-0.189284,0.854301,-0.482347,-1.00766,0.368642,0 +0.368698,-0.0132638,1.03994,0.81714,0.368642,1 +0.368698,0.787565,1.03994,0.81714,0.368642,1 +-0.189284,-0.280207,1.03994,0.208874,0.368642,0 +-1.30525,-1.0143,-1.24349,-1.00766,0.368642,0 +0.368698,1.18798,1.03994,0.81714,0.368642,1 +-0.189284,0.186943,-2.00463,0.81714,0.368642,1 +-0.189284,-0.280207,-2.00463,0.81714,0.368642,0 +-0.747266,-0.346943,-2.00463,-1.61592,0.368642,1 +0.368698,0.253679,1.03994,0.208874,0.368642,1 +0.926679,0.320415,0.278795,1.42541,0.368642,1 +-0.189284,-1.88186,-0.482347,-1.00766,-3.09323,0 +0.368698,-0.0799996,1.03994,0.208874,0.368642,0 +-0.189284,0.0534719,-1.24349,-1.00766,0.368642,0 +0.368698,-0.146735,1.03994,1.42541,0.368642,1 +-0.189284,-0.0799996,-0.482347,0.81714,0.368642,0 +0.368698,1.58839,-1.24349,0.81714,0.368642,1 +0.368698,0.787565,1.03994,0.208874,0.368642,1 +0.368698,0.587358,0.278795,0.208874,0.368642,1 +-0.189284,0.987772,-1.24349,-0.399392,0.368642,1 +0.368698,-0.0132638,1.03994,0.208874,0.368642,1 +0.368698,0.654094,0.278795,0.208874,0.368642,1 +0.368698,-0.680621,1.03994,-0.399392,0.368642,1 +-0.189284,0.120208,1.03994,0.81714,-3.09323,1 +0.368698,-0.413678,-1.24349,-1.00766,0.368642,1 +-0.189284,-2.08207,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.213471,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.346943,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.34798,-1.24349,-1.00766,0.368642,0 +0.368698,-3.68373,0.278795,0.208874,0.368642,1 +0.368698,0.587358,1.03994,0.208874,0.368642,1 +0.368698,-1.0143,1.03994,-1.00766,-1.93927,1 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +-0.189284,0.587358,1.03994,0.81714,0.368642,1 +0.368698,-0.213471,1.03994,0.208874,0.368642,1 +0.368698,-0.814093,-1.24349,0.81714,0.368642,1 +-0.189284,0.0534719,1.03994,0.81714,0.368642,0 +-0.189284,1.12124,0.278795,-1.61592,0.368642,0 +0.926679,-0.280207,1.03994,0.81714,0.368642,1 +-0.189284,1.58839,1.03994,0.81714,0.368642,1 +-0.189284,-2.21554,-0.482347,-1.00766,0.368642,0 +-0.189284,1.18798,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.146735,0.278795,0.81714,0.368642,0 +-0.189284,0.253679,-0.482347,-1.00766,0.368642,1 +-0.189284,-0.613886,1.03994,0.81714,-0.785316,0 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +-0.189284,-0.346943,1.03994,0.208874,0.368642,1 +-0.189284,0.186943,-1.24349,-1.00766,0.368642,1 +-0.189284,-0.0132638,-1.24349,-1.00766,0.368642,0 +-0.189284,0.453886,-0.482347,0.81714,0.368642,1 +-0.189284,0.320415,-1.24349,-1.00766,0.368642,0 +0.368698,0.120208,1.03994,0.208874,0.368642,1 +-0.189284,0.120208,-1.24349,-1.00766,0.368642,0 +0.926679,-0.947564,-0.482347,-1.00766,0.368642,0 +-0.189284,1.05451,-0.482347,-1.00766,0.368642,1 +-0.189284,-1.54819,-0.482347,-1.00766,0.368642,0 +-0.189284,0.120208,-0.482347,-1.00766,0.368642,0 +-0.189284,-2.41575,-1.24349,-1.00766,0.368642,0 +-0.189284,0.453886,-0.482347,0.81714,0.368642,1 +0.368698,0.787565,1.03994,1.42541,0.368642,1 +-0.189284,-0.346943,1.03994,1.42541,0.368642,0 +-0.189284,0.654094,-0.482347,0.208874,-0.785316,0 +-0.189284,-1.0143,-0.482347,0.81714,-0.785316,0 +0.926679,1.05451,1.03994,0.81714,0.368642,1 +0.926679,0.854301,1.03994,0.208874,0.368642,1 +-0.189284,0.854301,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.74839,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.146735,-0.482347,-1.00766,0.368642,0 +0.368698,0.720829,1.03994,0.81714,0.368642,1 +-0.189284,0.320415,0.278795,-1.61592,1.5226,0 +0.368698,1.38819,1.03994,0.81714,0.368642,1 +-0.189284,0.186943,-0.482347,-1.00766,-0.785316,0 +0.368698,2.7229,0.278795,0.81714,0.368642,1 +0.368698,0.987772,1.03994,0.81714,0.368642,1 +-0.189284,-1.41471,-0.482347,-1.00766,0.368642,0 +-0.189284,0.253679,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.680621,0.278795,-1.00766,0.368642,1 +0.368698,0.654094,1.03994,0.81714,0.368642,1 +-0.189284,0.253679,-1.24349,-1.00766,0.368642,0 +-0.189284,-2.28228,-0.482347,-1.00766,0.368642,0 +-0.747266,-0.814093,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.146735,-1.24349,-1.00766,0.368642,0 +-0.189284,0.654094,-0.482347,-1.00766,0.368642,0 +-0.189284,0.587358,-0.482347,0.81714,0.368642,1 +-0.189284,-0.146735,1.03994,0.81714,0.368642,0 +-0.189284,-0.280207,-1.24349,-1.00766,0.368642,0 +-0.189284,0.253679,-0.482347,0.81714,0.368642,0 +-0.189284,0.0534719,-0.482347,-1.00766,0.368642,0 +-0.189284,0.320415,-0.482347,-1.00766,0.368642,0 +-0.189284,-2.21554,-1.24349,-1.00766,0.368642,0 +-0.189284,-2.01534,-0.482347,-1.00766,0.368642,0 +0.926679,1.38819,0.278795,-1.61592,0.368642,0 +0.368698,0.921037,1.03994,0.81714,0.368642,1 +-0.189284,0.186943,-0.482347,-1.00766,0.368642,0 +0.368698,0.453886,1.03994,0.208874,0.368642,1 +-0.189284,0.0534719,1.03994,0.81714,0.368642,0 +-0.189284,0.587358,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.54819,-0.482347,-1.00766,0.368642,0 +0.368698,-0.480414,-2.00463,0.81714,-3.09323,1 +0.368698,0.253679,1.03994,0.81714,-0.785316,1 +-0.189284,-0.213471,-1.24349,-1.00766,0.368642,0 +-0.189284,0.520622,1.03994,0.81714,0.368642,0 +0.368698,0.787565,1.03994,0.81714,0.368642,1 +0.368698,0.387151,1.03994,0.81714,0.368642,1 +0.368698,0.253679,1.03994,1.42541,0.368642,1 +0.368698,-0.213471,1.03994,0.208874,0.368642,1 +-0.189284,-1.34798,1.03994,0.81714,0.368642,0 +0.368698,1.45492,0.278795,0.208874,0.368642,1 +0.368698,1.05451,1.03994,0.208874,0.368642,1 +0.368698,0.520622,1.03994,0.208874,0.368642,1 +-0.189284,-1.14777,-0.482347,-1.00766,-0.785316,0 +0.368698,1.12124,1.03994,0.208874,0.368642,1 +-0.189284,1.38819,1.03994,0.208874,0.368642,1 +-0.189284,-0.146735,0.278795,0.208874,0.368642,0 +-0.189284,0.787565,1.03994,1.42541,0.368642,0 +0.368698,0.921037,-0.482347,0.81714,0.368642,1 +-0.189284,-0.0799996,-1.24349,-1.00766,0.368642,0 +-1.30525,-1.34798,-0.482347,-1.00766,-0.785316,0 +0.368698,0.854301,1.03994,0.208874,0.368642,1 +-0.189284,0.854301,1.03994,0.81714,0.368642,0 +-0.189284,0.787565,-0.482347,0.81714,0.368642,1 +-0.747266,-1.08104,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.747357,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.48145,-1.24349,-1.00766,0.368642,0 +-0.189284,0.320415,-2.00463,0.81714,0.368642,0 +-0.189284,0.186943,-1.24349,-1.00766,0.368642,0 +-0.189284,-1.61492,-1.24349,-1.00766,0.368642,0 +-0.747266,-2.14881,-1.24349,-1.00766,0.368642,0 +0.368698,0.0534719,1.03994,1.42541,0.368642,1 +-0.189284,0.921037,-0.482347,-1.00766,0.368642,1 +0.926679,0.520622,-1.24349,-1.00766,0.368642,0 +-0.189284,0.654094,-1.24349,-1.00766,0.368642,1 +-0.189284,-0.747357,-0.482347,-1.00766,-0.785316,0 +-0.189284,0.453886,0.278795,0.208874,0.368642,1 +-0.189284,0.787565,1.03994,0.81714,0.368642,1 +-0.189284,0.0534719,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.213471,0.278795,0.81714,0.368642,0 +-0.189284,-0.814093,-1.24349,-1.00766,0.368642,1 +-0.189284,-0.947564,1.03994,0.208874,-0.785316,1 +-0.189284,-0.880829,0.278795,0.81714,-0.785316,0 +-0.747266,-0.613886,-1.24349,-1.00766,0.368642,0 +0.368698,-0.0132638,1.03994,0.81714,0.368642,1 +0.368698,0.186943,1.03994,0.81714,-0.785316,1 +0.368698,2.12228,1.03994,0.81714,0.368642,1 +-0.189284,0.720829,-0.482347,-1.00766,0.368642,0 +-2.42121,1.12124,1.03994,0.208874,0.368642,1 +0.368698,0.320415,1.03994,0.208874,0.368642,1 +0.368698,1.85534,1.03994,0.81714,-0.785316,1 +-0.189284,-1.61492,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.146735,-0.482347,-1.00766,0.368642,0 +-0.189284,0.587358,-0.482347,0.208874,0.368642,0 +0.368698,-1.61492,1.03994,0.81714,-0.785316,1 +0.368698,0.453886,1.03994,0.81714,-0.785316,1 +-0.189284,0.0534719,-0.482347,-1.00766,0.368642,0 +0.368698,0.186943,1.03994,0.81714,0.368642,1 +-0.189284,0.787565,-1.24349,0.81714,0.368642,0 +0.368698,1.32145,1.03994,1.42541,0.368642,1 +0.368698,0.654094,0.278795,0.81714,0.368642,1 +0.368698,1.25472,0.278795,-0.399392,0.368642,1 +-0.189284,0.253679,-0.482347,-1.00766,0.368642,0 +-0.189284,0.120208,1.03994,0.81714,1.5226,1 +-0.189284,1.38819,0.278795,-0.399392,0.368642,0 +-0.189284,0.520622,-1.24349,0.81714,0.368642,0 +-0.189284,-0.747357,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.880829,0.278795,-1.00766,-0.785316,0 +-0.189284,-1.34798,0.278795,-1.61592,-0.785316,0 +0.368698,0.654094,1.03994,0.208874,0.368642,1 +-0.189284,0.987772,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.480414,-1.24349,-1.00766,0.368642,0 +-0.189284,1.25472,-1.24349,-1.00766,-1.93927,1 +0.926679,-1.0143,-2.00463,0.208874,1.5226,1 +-0.189284,0.520622,-1.24349,-1.00766,0.368642,0 +0.368698,0.320415,1.03994,0.81714,0.368642,1 +0.368698,2.05554,1.03994,0.208874,0.368642,1 +-0.189284,-1.88186,-1.24349,-1.00766,0.368642,0 +-0.189284,1.05451,1.03994,1.42541,-0.785316,1 +0.368698,1.98881,1.03994,0.81714,0.368642,1 +-0.189284,-0.280207,0.278795,0.208874,0.368642,0 +0.926679,1.12124,1.03994,0.208874,0.368642,1 +0.368698,-0.213471,1.03994,0.81714,0.368642,1 +-0.189284,0.720829,-0.482347,-1.00766,0.368642,0 +0.368698,1.05451,1.03994,1.42541,0.368642,1 +-0.189284,-0.880829,-0.482347,-1.00766,0.368642,0 +-0.189284,0.587358,1.03994,0.81714,-0.785316,1 +-0.189284,-0.947564,-0.482347,-0.399392,0.368642,0 +-0.189284,-0.346943,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.68166,-1.24349,-1.00766,0.368642,0 +-0.189284,0.787565,-1.24349,-1.00766,0.368642,0 +0.368698,0.453886,1.03994,0.81714,0.368642,1 +-0.189284,-0.613886,-0.482347,-1.00766,-0.785316,0 +-0.189284,-1.34798,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.146735,-1.24349,-1.00766,-0.785316,0 +-0.189284,0.253679,-0.482347,-1.00766,0.368642,0 +-0.189284,-2.41575,0.278795,-1.00766,0.368642,0 +0.368698,2.05554,-0.482347,-1.00766,0.368642,1 +-0.189284,1.12124,-0.482347,-1.00766,0.368642,0 +-0.189284,-1.21451,-0.482347,-1.00766,-0.785316,0 +-0.189284,-0.613886,0.278795,-1.00766,0.368642,1 +-0.189284,-0.680621,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.480414,1.03994,1.42541,0.368642,0 +-0.189284,0.186943,1.03994,0.81714,0.368642,1 +-0.189284,-0.880829,-1.24349,-1.00766,0.368642,0 +-0.189284,0.0534719,-0.482347,0.81714,0.368642,1 +-0.189284,-0.54715,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.413678,1.03994,0.81714,0.368642,1 +0.368698,1.38819,-0.482347,1.42541,0.368642,1 +0.368698,0.453886,1.03994,1.42541,0.368642,1 +0.368698,0.587358,1.03994,0.81714,0.368642,1 +0.368698,-0.146735,1.03994,0.208874,0.368642,1 +-0.189284,0.987772,1.03994,-0.399392,-0.785316,1 +0.368698,-0.0132638,1.03994,0.81714,0.368642,1 +-0.189284,-1.41471,1.03994,0.81714,0.368642,0 +0.368698,1.38819,1.03994,0.81714,0.368642,1 +-0.189284,-1.08104,-1.24349,-1.00766,0.368642,0 +-1.30525,-2.14881,-1.24349,-1.00766,0.368642,0 +-0.189284,-2.41575,-1.24349,-1.00766,0.368642,0 +0.368698,0.654094,1.03994,1.42541,0.368642,1 +-0.189284,0.120208,-0.482347,-1.00766,0.368642,0 +0.368698,-0.947564,1.03994,0.81714,0.368642,1 +-0.189284,-1.28124,1.03994,1.42541,0.368642,1 +-0.189284,0.453886,0.278795,0.208874,0.368642,0 +-0.189284,0.921037,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.947564,0.278795,-1.00766,0.368642,0 +-0.747266,-0.280207,-0.482347,0.81714,0.368642,0 +0.368698,-0.346943,0.278795,-0.399392,0.368642,1 +-0.189284,-0.54715,1.03994,0.81714,0.368642,0 +-0.189284,-0.0799996,1.03994,1.42541,0.368642,1 +0.368698,-0.213471,1.03994,0.81714,0.368642,1 +-0.189284,-1.68166,-1.24349,-1.00766,0.368642,0 +-0.747266,-0.480414,1.03994,0.81714,0.368642,1 +0.368698,-3.68373,1.03994,0.81714,0.368642,1 +-0.189284,0.654094,-0.482347,0.81714,0.368642,1 +-0.189284,-0.346943,-1.24349,-1.00766,0.368642,0 +0.368698,0.654094,1.03994,1.42541,0.368642,1 +0.368698,0.720829,1.03994,0.208874,0.368642,1 +0.926679,-0.947564,0.278795,0.208874,-0.785316,1 +0.368698,1.12124,0.278795,-0.399392,0.368642,1 +-0.189284,-0.880829,-1.24349,-1.00766,-1.93927,1 +-0.189284,1.65513,1.03994,0.81714,0.368642,1 +-2.42121,-0.680621,-0.482347,0.81714,0.368642,0 +-0.189284,-0.947564,-1.24349,-1.00766,0.368642,0 +-0.189284,1.12124,0.278795,0.208874,0.368642,1 +-0.189284,0.320415,1.03994,1.42541,0.368642,0 +0.368698,0.787565,1.03994,0.208874,0.368642,1 +-0.189284,-0.0132638,-0.482347,-1.00766,0.368642,0 +-0.189284,0.387151,0.278795,0.81714,0.368642,1 +-0.189284,-0.0132638,0.278795,0.81714,0.368642,1 +-0.189284,-0.213471,1.03994,0.81714,0.368642,1 +-0.189284,-0.880829,-1.24349,-1.00766,0.368642,0 +0.368698,0.520622,1.03994,0.81714,0.368642,1 +-0.189284,0.453886,1.03994,1.42541,0.368642,1 +-0.189284,-0.613886,-1.24349,-1.00766,0.368642,0 +-0.189284,0.654094,-0.482347,-1.00766,0.368642,0 +-0.189284,0.120208,0.278795,0.208874,0.368642,1 +-0.189284,0.720829,1.03994,1.42541,0.368642,1 +-0.189284,-0.680621,-1.24349,-1.00766,0.368642,0 +-0.189284,1.45492,1.03994,1.42541,0.368642,1 +-0.189284,-1.34798,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.346943,1.03994,1.42541,0.368642,1 +-0.189284,0.120208,1.03994,0.81714,0.368642,0 +-0.189284,1.25472,0.278795,-1.00766,0.368642,1 +-0.189284,0.253679,1.03994,1.42541,0.368642,0 +-0.189284,-0.280207,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.880829,0.278795,0.81714,0.368642,1 +-0.189284,-1.34798,-0.482347,0.81714,0.368642,0 +-0.189284,-0.880829,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.814093,-0.482347,-1.00766,0.368642,0 +-0.189284,0.453886,1.03994,0.81714,0.368642,1 +-0.189284,-1.88186,-0.482347,-1.00766,0.368642,0 +0.368698,-3.68373,1.03994,0.208874,0.368642,1 +-0.189284,0.120208,1.03994,0.81714,0.368642,1 +-0.189284,0.253679,-0.482347,-1.00766,0.368642,0 +0.368698,-1.0143,0.278795,-0.399392,0.368642,1 +-0.189284,-2.34902,-1.24349,-1.00766,0.368642,0 +0.368698,1.25472,1.03994,0.208874,0.368642,1 +-0.189284,-2.21554,-1.24349,-1.00766,0.368642,0 +-0.189284,0.120208,1.03994,0.208874,0.368642,0 +-0.189284,0.120208,1.03994,0.208874,0.368642,1 +-0.189284,-0.0132638,-0.482347,-1.00766,-0.785316,0 +-0.189284,0.453886,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.0799996,-1.24349,-1.00766,0.368642,0 +-0.189284,1.05451,-1.24349,-1.00766,0.368642,1 +-0.189284,0.654094,0.278795,0.208874,0.368642,0 +-0.189284,0.854301,1.03994,0.81714,0.368642,0 +-0.189284,0.587358,-1.24349,-1.00766,0.368642,0 +-0.189284,-0.0799996,-0.482347,0.81714,0.368642,0 +-0.189284,-0.480414,1.03994,0.81714,0.368642,1 +-0.189284,0.186943,1.03994,0.208874,0.368642,0 +0.368698,0.186943,0.278795,0.81714,0.368642,1 +-0.189284,0.987772,-1.24349,-1.00766,-1.93927,0 +0.368698,0.987772,-1.24349,0.81714,0.368642,1 +-0.189284,0.253679,-0.482347,-1.00766,0.368642,0 +-0.189284,0.120208,-0.482347,0.81714,0.368642,0 +-0.189284,-0.146735,1.03994,1.42541,0.368642,0 +-0.189284,-0.0799996,1.03994,0.81714,0.368642,1 +-0.189284,-0.146735,-0.482347,-1.00766,0.368642,0 +-2.42121,1.05451,1.03994,0.81714,0.368642,1 +0.368698,0.787565,1.03994,1.42541,0.368642,1 +-0.189284,0.854301,1.03994,0.81714,0.368642,1 +-0.189284,0.0534719,-0.482347,0.81714,0.368642,0 +-0.189284,-1.34798,-0.482347,-1.00766,0.368642,0 +-0.189284,-0.213471,1.03994,0.81714,0.368642,1 +-0.189284,-0.54715,-0.482347,-1.00766,0.368642,0 +-0.189284,0.0534719,1.03994,1.42541,0.368642,1 +-0.189284,0.587358,1.03994,1.42541,0.368642,0 +0.368698,0.720829,1.03994,1.42541,0.368642,1 +-0.189284,0.453886,0.278795,0.208874,0.368642,0 diff --git a/data/molec-biol-promoter.arff b/data/molec-biol-promoter.arff new file mode 100755 index 0000000..3cd5d62 --- /dev/null +++ b/data/molec-biol-promoter.arff @@ -0,0 +1,166 @@ +@relation molec-biol-promoter +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'f35' real +@attribute 'f36' real +@attribute 'f37' real +@attribute 'f38' real +@attribute 'f39' real +@attribute 'f40' real +@attribute 'f41' real +@attribute 'f42' real +@attribute 'f43' real +@attribute 'f44' real +@attribute 'f45' real +@attribute 'f46' real +@attribute 'f47' real +@attribute 'f48' real +@attribute 'f49' real +@attribute 'f50' real +@attribute 'f51' real +@attribute 'f52' real +@attribute 'f53' real +@attribute 'f54' real +@attribute 'f55' real +@attribute 'f56' real +@attribute 'f57' real +@attribute 'clase' {0,1} +@data +1.14831,-1.18667,-0.4241,1.34636,-1.16796,0.610381,-0.297448,-1.19816,-1.2058,1.34464,-1.09908,-0.534504,0.299558,-0.369366,0.8516,0.880501,0.199174,-0.12773,0.65658,1.39396,1.185,-0.407898,0.382379,0.306609,1.21511,0.32575,0.482625,1.21608,1.1077,-1.14873,-1.15431,0.485232,1.07444,-1.60198,1.33371,0.28278,0.986945,-1.36353,1.1984,-1.02192,-1.05383,1.18686,0.153276,-0.58975,0.343931,-0.380164,0.521422,0.465489,0.55254,-0.340516,1.45621,1.26989,0.290236,1.28854,-0.416253,0.403468,1.14373,0 +1.14831,0.513155,-0.4241,1.34636,-1.16796,1.43987,-0.297448,-0.384026,1.25217,0.515966,-1.09908,-0.534504,-1.37166,0.58558,0.8516,0.880501,0.199174,1.67752,-0.271386,-1.24461,-0.489799,0.456846,-0.538806,1.185,0.373268,-1.40073,1.38014,1.21608,0.183163,0.655199,1.26063,0.485232,1.07444,-0.712925,0.450129,1.16439,0.986945,-1.36353,-0.399468,-1.02192,-1.05383,1.18686,-0.701842,1.17119,-1.3921,-1.31731,-0.384656,0.465489,-0.407612,-1.29038,1.45621,-0.423298,0.290236,-0.508634,-0.416253,-1.37852,-1.39967,0 +0.320277,1.36307,-1.28861,-0.507069,1.42933,-1.0486,0.511001,-1.19816,0.43285,-1.14138,-1.09908,-0.534504,1.13517,-1.32431,0.0383604,0.880501,0.199174,-0.12773,-1.19935,1.39396,1.185,-1.27264,0.382379,-0.571785,1.21511,1.18899,-1.3124,1.21608,1.1077,1.55716,1.26063,1.357,1.07444,1.06519,0.450129,1.16439,0.986945,-1.36353,1.1984,-0.225423,-1.05383,1.18686,0.153276,-0.58975,1.21195,-1.31731,-1.29073,-0.431635,-0.407612,-1.29038,-0.359769,-0.423298,-0.564348,0.389953,0.502972,-0.487524,0.295929,0 +-1.33579,-1.18667,1.30492,1.34636,0.563563,1.43987,0.511001,-1.19816,1.25217,0.515966,1.31131,0.379325,1.13517,-1.32431,0.8516,-0.816464,0.199174,-1.03035,-1.19935,0.514438,1.185,0.456846,1.30356,0.306609,1.21511,1.18899,0.482625,-0.652103,0.183163,0.655199,-1.15431,0.485232,1.07444,-1.60198,0.450129,-1.48044,0.986945,0.346933,1.1984,1.36757,-1.05383,0.275213,-1.55696,-1.47022,1.21195,-1.31731,-0.384656,1.36261,-1.36776,-1.29038,-0.359769,-1.26989,-1.41893,-1.40722,-0.416253,1.29446,-0.551868,0 +1.14831,-0.336758,0.440412,-1.43378,1.42933,-1.0486,-1.1059,1.24424,1.25217,-1.14138,-1.09908,-0.534504,1.13517,-1.32431,0.8516,0.880501,0.199174,-1.03035,-0.271386,0.514438,-1.3272,-1.27264,-1.45999,-1.45018,0.373268,-0.537488,1.38014,0.28199,-1.66592,-1.14873,-1.15431,-1.25831,-0.588197,-0.712925,-1.31704,-0.598829,0.986945,-1.36353,0.399468,-1.02192,-1.05383,1.18686,0.153276,-0.58975,0.343931,-0.380164,-0.384656,1.36261,-0.407612,-0.340516,0.54822,1.26989,0.290236,0.389953,1.4222,-1.37852,0.295929,0 +-1.33579,0.513155,0.440412,0.419643,0.563563,-0.219111,-1.1059,-1.19816,0.43285,0.515966,-1.09908,0.379325,0.299558,-1.32431,0.8516,0.0320182,0.199174,-1.03035,-1.19935,-1.24461,0.347599,-1.27264,0.382379,0.306609,1.21511,1.18899,0.482625,-0.652103,-0.741376,0.655199,1.26063,-1.25831,1.07444,-1.60198,-1.31704,-1.48044,0.115144,-1.36353,-1.1984,-1.02192,-0.238458,1.18686,-1.55696,0.290722,-1.3921,0.556984,1.4275,-0.431635,-0.407612,0.609345,1.45621,1.26989,1.14482,-1.40722,0.502972,0.403468,1.14373,0 +-0.507757,-1.18667,0.440412,0.419643,0.563563,0.610381,0.511001,1.24424,0.43285,0.515966,-1.09908,0.379325,0.299558,-1.32431,0.8516,0.880501,1.2548,-1.03035,-1.19935,0.514438,-0.489799,-0.407898,-1.45999,1.185,-0.46857,1.18899,-0.414888,-0.652103,1.1077,0.655199,-1.15431,1.357,0.243121,-1.60198,-0.433457,0.28278,-0.756658,-1.36353,1.1984,-1.02192,0.576916,1.18686,-0.701842,-1.47022,0.343931,-0.380164,-0.384656,-0.431635,-1.36776,1.55921,-0.359769,-1.26989,1.14482,0.389953,-1.33548,-1.37852,1.14373,0 +1.14831,1.36307,1.30492,-0.507069,1.42933,-1.0486,-0.297448,-1.19816,-1.2058,-1.14138,-1.09908,-0.534504,-1.37166,-0.369366,0.8516,0.880501,0.199174,-1.03035,1.58455,-1.24461,-0.489799,1.32159,0.382379,1.185,-1.31041,1.18899,0.482625,-1.5862,0.183163,-0.246763,-1.15431,1.357,-1.41951,-0.712925,-1.31704,0.28278,0.986945,-1.36353,1.1984,-1.02192,-1.05383,1.18686,1.00839,0.290722,-0.524085,1.49413,1.4275,-0.431635,-1.36776,-1.29038,-0.359769,-1.26989,0.290236,-1.40722,-1.33548,-0.487524,-1.39967,0 +-0.507757,0.513155,-1.28861,-0.507069,1.42933,1.43987,-1.1059,-1.19816,1.25217,-1.14138,1.31131,-1.44833,-0.536051,1.54053,0.0383604,-0.816464,0.199174,-1.03035,-0.271386,-1.24461,0.347599,0.456846,-1.45999,-0.571785,0.373268,1.18899,-0.414888,-0.652103,0.183163,1.55716,1.26063,-0.38654,1.07444,0.176134,1.33371,0.28278,0.986945,-1.36353,-1.1984,-1.02192,1.39229,-0.63643,0.153276,-0.58975,-1.3921,-1.31731,1.4275,0.465489,-1.36776,-1.29038,-1.26776,1.26989,0.290236,0.389953,1.4222,1.29446,1.14373,0 +1.14831,1.36307,1.30492,1.34636,-1.16796,-1.0486,-1.1059,1.24424,1.25217,1.34464,-0.295614,-0.534504,1.13517,-0.369366,0.8516,0.880501,0.199174,1.67752,-0.271386,-1.24461,0.347599,0.456846,-0.538806,-0.571785,0.373268,0.32575,-1.3124,-1.5862,1.1077,-1.14873,-1.15431,-0.38654,1.07444,-0.712925,-0.433457,-0.598829,0.986945,-1.36353,1.1984,-1.02192,-1.05383,1.18686,0.153276,-0.58975,0.343931,-0.380164,-0.384656,-1.32876,-0.407612,-0.340516,-1.26776,-0.423298,1.14482,0.389953,-1.33548,-0.487524,-1.39967,0 +0.320277,-0.336758,-1.28861,-1.43378,-1.16796,-1.0486,-1.1059,1.24424,-1.2058,-1.14138,-1.09908,1.29315,0.299558,-0.369366,0.8516,0.880501,0.199174,-1.03035,-0.271386,1.39396,-0.489799,1.32159,0.382379,1.185,-1.31041,0.32575,-0.414888,0.28199,0.183163,0.655199,-1.15431,-1.25831,0.243121,0.176134,-0.433457,0.28278,0.986945,-1.36353,1.1984,1.36757,-1.05383,1.18686,0.153276,-0.58975,-1.3921,-0.380164,-1.29073,-0.431635,-0.407612,-0.340516,-0.359769,0.423298,-0.564348,0.389953,-0.416253,-0.487524,0.295929,0 +-0.507757,-0.336758,1.30492,0.419643,-1.16796,-1.0486,-1.1059,1.24424,1.25217,-0.312707,-1.09908,0.379325,0.299558,0.58558,0.8516,0.880501,0.199174,-1.03035,-0.271386,1.39396,-0.489799,1.32159,0.382379,-1.45018,-1.31041,-1.40073,0.482625,-1.5862,0.183163,0.655199,-1.15431,-1.25831,-1.41951,0.176134,-0.433457,0.28278,0.986945,-1.36353,-1.1984,1.36757,-1.05383,1.18686,-1.55696,-0.58975,0.343931,-0.380164,-0.384656,-1.32876,-0.407612,-0.340516,1.45621,-0.423298,0.290236,-0.508634,0.502972,-1.37852,-0.551868,0 +0.320277,-1.18667,1.30492,-0.507069,-1.16796,-1.0486,-1.1059,-1.19816,-1.2058,-1.14138,-1.09908,1.29315,-1.37166,-0.369366,0.8516,0.880501,0.199174,1.67752,0.65658,-0.365085,-1.3272,-1.27264,-1.45999,-1.45018,-1.31041,-1.40073,1.38014,1.21608,0.183163,0.655199,0.455651,-1.25831,1.07444,-0.712925,-0.433457,-0.598829,0.986945,-1.36353,1.1984,-1.02192,-1.05383,1.18686,0.153276,-0.58975,0.343931,-0.380164,-0.384656,1.36261,-0.407612,-0.340516,0.54822,1.26989,1.14482,0.389953,-1.33548,0.403468,-1.39967,0 +-0.507757,1.36307,0.440412,-0.507069,-1.16796,-1.0486,1.31945,1.24424,1.25217,1.34464,1.31131,-0.534504,1.13517,-1.32431,0.8516,0.880501,0.199174,-0.12773,0.65658,0.514438,-0.489799,-0.407898,1.30356,0.306609,-0.46857,0.32575,0.482625,-1.5862,0.183163,-1.14873,-1.15431,-0.38654,1.07444,-0.712925,-0.433457,-0.598829,0.986945,-1.36353,1.1984,-1.02192,-1.05383,1.18686,0.153276,-0.58975,0.343931,-0.380164,-0.384656,1.36261,-0.407612,-0.340516,-1.26776,1.26989,-0.564348,0.389953,-1.33548,-0.487524,-1.39967,0 +1.14831,1.36307,1.30492,-1.43378,1.42933,-1.0486,1.31945,1.24424,1.25217,1.34464,1.31131,-0.534504,0.299558,-0.369366,0.8516,0.880501,0.199174,1.67752,-0.271386,-1.24461,0.347599,0.456846,-0.538806,-0.571785,0.373268,0.32575,-1.3124,-1.5862,1.1077,-1.14873,-1.15431,-0.38654,1.07444,-0.712925,-0.433457,-0.598829,0.986945,-1.36353,1.1984,-1.02192,-1.05383,1.18686,0.153276,-0.58975,0.343931,-0.380164,-0.384656,-1.32876,-0.407612,-0.340516,-1.26776,-0.423298,1.14482,0.389953,-1.33548,-0.487524,-1.39967,0 +-1.33579,-1.18667,0.440412,-0.507069,-1.16796,-1.0486,-1.1059,0.430109,-1.2058,-1.14138,-1.09908,1.29315,0.299558,-0.369366,0.8516,0.880501,0.199174,-1.03035,-0.271386,1.39396,-0.489799,1.32159,0.382379,1.185,-1.31041,0.32575,-0.414888,0.28199,0.183163,0.655199,-1.15431,-1.25831,0.243121,0.176134,-0.433457,0.28278,0.986945,-1.36353,1.1984,1.36757,-1.05383,1.18686,0.153276,-0.58975,-1.3921,-0.380164,-1.29073,-0.431635,-0.407612,0.609345,-0.359769,-0.423298,0.290236,-0.508634,0.502972,-0.487524,-0.551868,0 +-1.33579,1.36307,0.440412,-0.507069,-1.16796,1.43987,1.31945,1.24424,1.25217,1.34464,-0.295614,-0.534504,0.299558,-0.369366,0.8516,0.880501,0.199174,1.67752,-0.271386,1.39396,1.185,-0.407898,-0.538806,1.185,0.373268,-1.40073,0.482625,-0.652103,-0.741376,0.655199,-1.15431,-0.38654,1.07444,-0.712925,-0.433457,-0.598829,0.986945,-1.36353,1.1984,-1.02192,-1.05383,1.18686,0.153276,-0.58975,0.343931,-0.380164,-0.384656,1.36261,-0.407612,-0.340516,-1.26776,1.26989,-0.564348,0.389953,-1.33548,-0.487524,-1.39967,0 +-1.33579,-1.18667,-1.28861,-0.507069,-1.16796,-1.0486,1.31945,1.24424,1.25217,-0.312707,-1.09908,0.379325,-1.37166,-1.32431,0.8516,-1.66495,0.199174,-1.03035,-0.271386,-1.24461,-1.3272,-1.27264,-1.45999,-1.45018,-0.46857,1.18899,-0.414888,1.21608,0.183163,-1.14873,0.455651,1.357,0.243121,1.06519,-1.31704,-1.48044,0.986945,-1.36353,-1.1984,1.36757,0.576916,1.18686,-1.55696,0.290722,-0.524085,-0.380164,1.4275,-0.431635,0.55254,1.55921,0.54822,1.26989,-0.564348,1.28854,1.4222,0.403468,-0.551868,0 +1.14831,-0.336758,1.30492,-0.507069,-1.16796,-1.0486,-0.297448,0.430109,1.25217,-1.14138,-1.09908,-0.534504,-1.37166,-0.369366,0.8516,0.880501,1.2548,-1.03035,-0.271386,-1.24461,0.347599,-0.407898,0.382379,0.306609,-0.46857,0.32575,-0.414888,0.28199,1.1077,-0.246763,-1.15431,1.357,1.07444,1.06519,0.450129,-1.48044,0.986945,-1.36353,1.1984,0.571072,-1.05383,1.18686,0.153276,-0.58975,0.343931,-0.380164,-0.384656,-0.431635,-0.407612,0.609345,-0.359769,1.26989,1.14482,-0.508634,-0.416253,-0.487524,0.295929,0 +0.320277,-0.336758,-1.28861,-1.43378,-1.16796,1.43987,-1.1059,-1.19816,1.25217,-0.312707,-1.09908,-1.44833,1.13517,0.58558,0.8516,0.0320182,0.199174,-1.03035,-0.271386,1.39396,1.185,1.32159,1.30356,-0.571785,1.21511,0.32575,-0.414888,-0.652103,0.183163,1.55716,0.455651,-1.25831,1.07444,1.06519,-1.31704,1.16439,-1.62846,0.346933,-1.1984,-0.225423,-1.05383,-0.63643,1.00839,1.17119,1.21195,1.49413,0.521422,1.36261,1.51269,-1.29038,-0.359769,0.423298,-0.564348,0.389953,1.4222,1.29446,1.14373,0 +0.320277,-1.18667,-0.4241,-1.43378,-0.3022,-0.219111,-1.1059,1.24424,-0.386473,0.515966,-1.09908,-1.44833,1.13517,0.58558,0.0383604,-0.816464,0.199174,-0.12773,-1.19935,-1.24461,-1.3272,-1.27264,-0.538806,-0.571785,1.21511,1.18899,1.38014,-0.652103,0.183163,-0.246763,0.455651,0.485232,1.07444,-1.60198,1.33371,0.28278,0.115144,-0.508297,-1.1984,1.36757,0.576916,-1.54807,1.00839,-1.47022,0.343931,-0.380164,0.521422,-0.431635,-0.407612,-0.340516,0.54822,0.423298,-1.41893,-1.40722,0.502972,-1.37852,0.295929,0 +-1.33579,-1.18667,-1.28861,-1.43378,-1.16796,-0.219111,0.511001,1.24424,-0.386473,-1.14138,1.31131,-0.534504,0.299558,-0.369366,0.8516,0.880501,0.199174,-0.12773,-1.19935,1.39396,1.185,-1.27264,0.382379,-1.45018,-1.31041,-1.40073,0.482625,0.28199,1.1077,1.55716,1.26063,-0.38654,1.07444,0.176134,0.450129,-0.598829,-0.756658,0.346933,-1.1984,-0.225423,-0.238458,1.18686,1.00839,-1.47022,1.21195,-1.31731,-1.29073,-0.431635,-0.407612,-1.29038,1.45621,1.26989,-1.41893,-1.40722,1.4222,1.29446,-1.39967,0 +1.14831,-0.336758,1.30492,0.419643,-1.16796,-1.0486,-1.1059,1.24424,0.43285,-1.14138,0.50785,-0.534504,1.13517,0.58558,0.8516,0.880501,0.199174,-1.03035,-0.271386,-1.24461,-1.3272,1.32159,1.30356,-1.45018,-1.31041,1.18899,-0.414888,-1.5862,1.1077,-0.246763,0.455651,-1.25831,-1.41951,-0.712925,1.33371,-1.48044,0.115144,1.20216,1.1984,-1.02192,-1.05383,-0.63643,1.00839,-1.47022,0.343931,1.49413,-1.29073,-0.431635,0.55254,-0.340516,-1.26776,-1.26989,0.290236,1.28854,1.4222,-0.487524,-1.39967,0 +-1.33579,-0.336758,-0.4241,0.419643,0.563563,-1.0486,-1.1059,0.430109,-1.2058,-1.14138,-1.09908,-1.44833,-0.536051,-0.369366,0.0383604,0.880501,0.199174,-1.03035,-0.271386,-1.24461,1.185,1.32159,1.30356,1.185,-1.31041,-1.40073,-0.414888,-1.5862,-0.741376,0.655199,1.26063,1.357,1.07444,0.176134,1.33371,1.16439,-1.62846,-0.508297,-1.1984,-1.02192,0.576916,0.275213,1.00839,-1.47022,-1.3921,-1.31731,0.521422,0.465489,-0.407612,0.609345,-1.26776,-0.423298,0.290236,-0.508634,-0.416253,0.403468,-0.551868,0 +-1.33579,-1.18667,-1.28861,1.34636,1.42933,-1.0486,-1.1059,-1.19816,-1.2058,1.34464,1.31131,1.29315,1.13517,-1.32431,0.8516,0.880501,0.199174,-1.03035,-0.271386,1.39396,1.185,-1.27264,0.382379,0.306609,1.21511,-0.537488,-1.3124,-0.652103,1.1077,-1.14873,-1.15431,-1.25831,1.07444,-1.60198,-0.433457,1.16439,0.986945,1.20216,-1.1984,-1.02192,-0.238458,-0.63643,-1.55696,-1.47022,1.21195,-1.31731,1.4275,-1.32876,0.55254,0.609345,-0.359769,-1.26989,1.14482,-1.40722,0.502972,-0.487524,0.295929,0 +1.14831,1.36307,0.440412,1.34636,-0.3022,-1.0486,1.31945,-1.19816,-1.2058,1.34464,-0.295614,0.379325,-1.37166,-0.369366,0.8516,0.880501,0.199174,1.67752,-1.19935,-1.24461,-1.3272,-0.407898,-0.538806,-1.45018,-1.31041,-1.40073,1.38014,1.21608,0.183163,-1.14873,-1.15431,-1.25831,-1.41951,0.176134,-1.31704,1.16439,0.986945,1.20216,-1.1984,0.571072,0.576916,1.18686,1.00839,1.17119,-1.3921,-0.380164,-1.29073,-1.32876,0.55254,1.55921,-0.359769,1.26989,-1.41893,-0.508634,-1.33548,-0.487524,-0.551868,0 +-0.507757,-1.18667,1.30492,-0.507069,-0.3022,1.43987,-0.297448,0.430109,-0.386473,-1.14138,-0.295614,-0.534504,-1.37166,0.58558,0.8516,-0.816464,0.199174,-1.03035,-0.271386,0.514438,-1.3272,-0.407898,0.382379,0.306609,1.21511,1.18899,1.38014,-1.5862,-0.741376,0.655199,-0.349332,1.357,1.07444,1.06519,-1.31704,-0.598829,0.115144,1.20216,-1.1984,1.36757,-1.05383,0.275213,1.00839,0.290722,0.343931,-0.380164,0.521422,-1.32876,-0.407612,-1.29038,-1.26776,1.26989,1.14482,1.28854,1.4222,1.29446,1.14373,0 +1.14831,-0.336758,-0.4241,-1.43378,0.563563,1.43987,-1.1059,1.24424,-1.2058,-1.14138,1.31131,1.29315,1.13517,0.58558,0.8516,0.880501,0.199174,0.774893,-0.271386,-1.24461,1.185,-1.27264,-1.45999,1.185,1.21511,-1.40073,-1.3124,0.28199,1.1077,-1.14873,-0.349332,0.485232,-1.41951,-0.712925,0.450129,-1.48044,0.115144,1.20216,-1.1984,-1.02192,-1.05383,-1.54807,1.00839,1.17119,-1.3921,-0.380164,-1.29073,1.36261,-1.36776,-0.340516,-0.359769,1.26989,0.290236,-0.508634,-0.416253,-0.487524,0.295929,0 +-1.33579,-0.336758,-1.28861,0.419643,1.42933,1.43987,-1.1059,1.24424,-0.386473,-0.312707,-1.09908,-0.534504,1.13517,-1.32431,0.8516,0.880501,-0.856448,-0.12773,1.58455,0.514438,1.185,0.456846,0.382379,-1.45018,1.21511,-1.40073,-1.3124,-0.652103,-0.741376,-1.14873,1.26063,0.485232,1.07444,0.176134,1.33371,-1.48044,0.986945,1.20216,-1.1984,0.571072,-1.05383,0.275213,1.00839,1.17119,-1.3921,0.556984,-1.29073,-1.32876,-1.36776,-1.29038,-0.359769,-1.26989,-0.564348,0.389953,-1.33548,0.403468,0.295929,0 +1.14831,0.513155,1.30492,0.419643,-0.3022,-1.0486,0.511001,1.24424,1.25217,1.34464,-1.09908,1.29315,0.299558,0.58558,0.8516,0.880501,-0.856448,-0.12773,-1.19935,-1.24461,-1.3272,-1.27264,1.30356,-0.571785,0.373268,-0.537488,-0.414888,1.21608,1.1077,1.55716,1.26063,0.485232,-0.588197,1.06519,0.450129,1.16439,-1.62846,1.20216,-1.1984,1.36757,-1.05383,-0.63643,1.00839,-0.58975,-1.3921,-0.380164,-1.29073,0.465489,-0.407612,-1.29038,1.45621,-1.26989,-1.41893,-0.508634,1.4222,0.403468,1.14373,0 +-0.507757,1.36307,0.440412,1.34636,1.42933,0.610381,1.31945,1.24424,-0.386473,-1.14138,0.50785,1.29315,1.13517,1.54053,0.8516,0.880501,0.199174,-1.03035,0.65658,1.39396,1.185,0.456846,1.30356,0.306609,1.21511,-1.40073,1.38014,-1.5862,-1.66592,-0.246763,-0.349332,-0.38654,-0.588197,1.06519,-0.433457,-1.48044,0.986945,1.20216,-0.399468,1.36757,0.576916,-1.54807,1.00839,-0.58975,-0.524085,-0.380164,-1.29073,0.465489,-0.407612,1.55921,1.45621,-1.26989,1.14482,-1.40722,-0.416253,0.403468,0.295929,0 +-1.33579,1.36307,1.30492,-1.43378,-0.3022,-1.0486,-1.1059,-1.19816,-1.2058,-1.14138,0.50785,1.29315,0.299558,-0.369366,0.8516,0.880501,1.2548,-0.12773,1.58455,0.514438,-1.3272,-1.27264,-0.538806,1.185,0.373268,-1.40073,-1.3124,-0.652103,-1.66592,-1.14873,-1.15431,-1.25831,-1.41951,-1.60198,0.450129,-1.48044,0.115144,1.20216,-1.1984,-1.02192,-1.05383,0.275213,1.00839,1.17119,-1.3921,0.556984,1.4275,-0.431635,0.55254,-0.340516,0.54822,1.26989,-1.41893,0.389953,0.502972,0.403468,1.14373,0 +-1.33579,1.36307,0.440412,-0.507069,0.563563,-0.219111,-1.1059,-1.19816,-0.386473,0.515966,-0.295614,0.379325,0.299558,0.58558,0.0383604,0.880501,0.199174,-1.03035,-0.271386,-1.24461,-1.3272,0.456846,0.382379,0.306609,-0.46857,0.32575,-0.414888,0.28199,-0.741376,-1.14873,-1.15431,-1.25831,-0.588197,-0.712925,-0.433457,1.16439,-0.756658,1.20216,-1.1984,1.36757,-1.05383,-0.63643,1.00839,0.290722,-0.524085,0.556984,-0.384656,0.465489,-0.407612,-0.340516,0.54822,-1.26989,-1.41893,0.389953,-0.416253,1.29446,0.295929,0 +1.14831,-1.18667,-1.28861,-1.43378,-1.16796,-1.0486,-1.1059,-0.384026,1.25217,-1.14138,-1.09908,-0.534504,-1.37166,0.58558,0.8516,0.880501,0.199174,1.67752,-0.271386,-1.24461,0.347599,-0.407898,-0.538806,1.185,0.373268,1.18899,-0.414888,-0.652103,-0.741376,0.655199,-0.349332,1.357,1.07444,-1.60198,1.33371,-1.48044,-1.62846,0.346933,-1.1984,1.36757,-0.238458,-1.54807,1.00839,-1.47022,-0.524085,0.556984,-0.384656,-0.431635,0.55254,1.55921,1.45621,-1.26989,1.14482,-1.40722,-0.416253,0.403468,1.14373,0 +-1.33579,1.36307,0.440412,-0.507069,-1.16796,-1.0486,1.31945,1.24424,1.25217,1.34464,1.31131,1.29315,-1.37166,0.58558,0.8516,0.880501,0.199174,-0.12773,-1.19935,1.39396,0.347599,-1.27264,-1.45999,-0.571785,1.21511,-0.537488,0.482625,-0.652103,-1.66592,1.55716,0.455651,1.357,-0.588197,1.06519,-0.433457,-0.598829,-1.62846,1.20216,-1.1984,0.571072,-1.05383,-1.54807,1.00839,0.290722,-0.524085,0.556984,-0.384656,0.465489,-0.407612,1.55921,-1.26776,-0.423298,1.14482,1.28854,0.502972,-1.37852,1.14373,0 +-0.507757,-0.336758,1.30492,1.34636,0.563563,-1.0486,-1.1059,-1.19816,-1.2058,-1.14138,0.50785,-1.44833,0.299558,0.58558,0.8516,0.880501,0.199174,-1.03035,-0.271386,0.514438,-0.489799,1.32159,0.382379,-0.571785,-1.31041,-1.40073,0.482625,0.28199,-0.741376,1.55716,-0.349332,1.357,-1.41951,1.06519,-1.31704,-0.598829,0.115144,-0.508297,-1.1984,1.36757,-1.05383,-1.54807,1.00839,0.290722,-0.524085,0.556984,-0.384656,-0.431635,-0.407612,-0.340516,0.54822,-0.423298,-1.41893,-1.40722,-0.416253,0.403468,-0.551868,0 +1.14831,-0.336758,0.440412,1.34636,1.42933,0.610381,1.31945,-1.19816,1.25217,-1.14138,1.31131,1.29315,1.13517,-0.369366,0.8516,0.880501,0.199174,-1.03035,-0.271386,-1.24461,-0.489799,-0.407898,1.30356,1.185,1.21511,1.18899,-0.414888,0.28199,0.183163,-0.246763,-1.15431,1.357,-0.588197,0.176134,-0.433457,-0.598829,-0.756658,1.20216,-1.1984,-1.02192,-1.05383,-1.54807,1.00839,1.17119,-0.524085,0.556984,0.521422,-0.431635,0.55254,1.55921,-0.359769,-0.423298,1.14482,-0.508634,-1.33548,1.29446,-1.39967,0 +-0.507757,-0.336758,0.440412,1.34636,1.42933,1.43987,-1.1059,1.24424,1.25217,1.34464,1.31131,1.29315,1.13517,-0.369366,0.8516,-1.66495,-0.856448,-0.12773,-0.271386,-1.24461,1.185,-1.27264,1.30356,-0.571785,-0.46857,1.18899,1.38014,0.28199,-1.66592,-1.14873,0.455651,-0.38654,0.243121,0.176134,1.33371,0.28278,0.986945,1.20216,-1.1984,1.36757,-1.05383,-1.54807,1.00839,0.290722,-0.524085,-0.380164,0.521422,-0.431635,0.55254,-0.340516,-0.359769,-0.423298,1.14482,-0.508634,0.502972,-1.37852,1.14373,0 +1.14831,1.36307,-0.4241,0.419643,-0.3022,-1.0486,1.31945,-1.19816,1.25217,1.34464,1.31131,1.29315,1.13517,-0.369366,0.8516,0.880501,0.199174,-0.12773,-1.19935,-1.24461,-1.3272,0.456846,1.30356,1.185,0.373268,0.32575,0.482625,1.21608,1.1077,0.655199,-1.15431,0.485232,-0.588197,1.06519,0.450129,0.28278,-0.756658,1.20216,-1.1984,0.571072,-1.05383,1.18686,1.00839,-1.47022,0.343931,-0.380164,-0.384656,-1.32876,0.55254,-0.340516,-0.359769,-1.26989,-1.41893,1.28854,-0.416253,1.29446,1.14373,0 +1.14831,0.513155,1.30492,-1.43378,-1.16796,-1.0486,-0.297448,1.24424,-1.2058,-1.14138,1.31131,0.379325,-0.536051,-0.369366,0.8516,0.880501,1.2548,-1.03035,-0.271386,0.514438,1.185,0.456846,0.382379,0.306609,-0.46857,0.32575,0.482625,1.21608,0.183163,-1.14873,1.26063,1.357,1.07444,1.06519,0.450129,1.16439,-0.756658,1.20216,-1.1984,-0.225423,-1.05383,-1.54807,1.00839,-0.58975,1.21195,1.49413,-1.29073,-0.431635,-0.407612,-0.340516,-0.359769,-0.423298,-1.41893,-0.508634,0.502972,1.29446,-1.39967,0 +0.320277,-1.18667,1.30492,-0.507069,0.563563,-0.219111,-1.1059,-0.384026,0.43285,-1.14138,1.31131,-0.534504,1.13517,0.58558,0.8516,-1.66495,1.2548,-1.03035,-0.271386,1.39396,1.185,-1.27264,1.30356,1.185,1.21511,0.32575,-1.3124,0.28199,1.1077,-1.14873,-1.15431,-1.25831,1.07444,1.06519,-1.31704,-1.48044,-0.756658,-0.508297,-0.399468,-1.02192,-0.238458,0.275213,-1.55696,1.17119,-0.524085,-0.380164,-0.384656,-1.32876,0.55254,-0.340516,-0.359769,-1.26989,1.14482,1.28854,-0.416253,1.29446,1.14373,0 +-1.33579,-1.18667,-0.4241,0.419643,-0.3022,-1.0486,1.31945,-1.19816,-0.386473,0.515966,0.50785,1.29315,-1.37166,1.54053,0.8516,0.880501,1.2548,-1.03035,-0.271386,-0.365085,1.185,1.32159,-0.538806,-0.571785,-0.46857,-1.40073,0.482625,1.21608,-0.741376,-1.14873,-1.15431,0.485232,-1.41951,-1.60198,-1.31704,-1.48044,-0.756658,1.20216,1.1984,-1.02192,1.39229,-0.63643,1.00839,1.17119,-1.3921,1.49413,1.4275,-0.431635,-0.407612,-0.340516,-1.26776,-0.423298,1.14482,1.28854,1.4222,1.29446,-0.551868,0 +1.14831,1.36307,-1.28861,0.419643,-0.3022,0.610381,0.511001,-1.19816,1.25217,-0.312707,-0.295614,1.29315,-1.37166,-0.369366,-0.774879,0.880501,0.199174,-1.03035,-0.271386,0.514438,-0.489799,1.32159,1.30356,1.185,1.21511,1.18899,-1.3124,1.21608,-0.741376,0.655199,-0.349332,-1.25831,-1.41951,-0.712925,1.33371,-0.598829,0.986945,-0.508297,1.1984,-1.02192,-0.238458,1.18686,0.153276,1.17119,1.21195,1.49413,-0.384656,1.36261,-0.407612,-0.340516,-1.26776,1.26989,-1.41893,-0.508634,-0.416253,-0.487524,0.295929,0 +0.320277,-0.336758,-0.4241,1.34636,1.42933,-0.219111,1.31945,-0.384026,-0.386473,-1.14138,-1.09908,-1.44833,-1.37166,-0.369366,0.0383604,0.880501,0.199174,1.67752,1.58455,1.39396,1.185,1.32159,1.30356,0.306609,1.21511,1.18899,0.482625,1.21608,1.1077,-1.14873,-1.15431,1.357,1.07444,-0.712925,0.450129,0.28278,0.986945,0.346933,1.1984,-1.02192,0.576916,-1.54807,-0.701842,1.17119,1.21195,0.556984,1.4275,-1.32876,-1.36776,-1.29038,-0.359769,-0.423298,1.14482,-1.40722,-1.33548,-1.37852,1.14373,0 +-0.507757,-1.18667,0.440412,-1.43378,-1.16796,-1.0486,-0.297448,0.430109,1.25217,1.34464,1.31131,1.29315,-1.37166,1.54053,0.8516,-0.816464,0.199174,-1.03035,-1.19935,-0.365085,-1.3272,1.32159,-0.538806,0.306609,-1.31041,1.18899,-0.414888,1.21608,-0.741376,0.655199,1.26063,-0.38654,1.07444,1.06519,0.450129,1.16439,0.115144,1.20216,1.1984,-1.02192,0.576916,-1.54807,-1.55696,1.17119,1.21195,-0.380164,1.4275,-1.32876,-1.36776,-0.340516,-1.26776,1.26989,-1.41893,-0.508634,0.502972,0.403468,1.14373,0 +-0.507757,-1.18667,-0.4241,1.34636,-1.16796,-1.0486,1.31945,1.24424,1.25217,-1.14138,1.31131,1.29315,-0.536051,-0.369366,-1.58812,0.880501,0.199174,1.67752,-0.271386,-1.24461,-0.489799,-1.27264,-0.538806,1.185,1.21511,1.18899,1.38014,-0.652103,0.183163,-0.246763,-1.15431,1.357,-0.588197,1.06519,1.33371,1.16439,0.115144,1.20216,1.1984,-1.02192,1.39229,0.275213,-0.701842,1.17119,-1.3921,1.49413,0.521422,0.465489,1.51269,1.55921,-1.26776,1.26989,1.14482,1.28854,-0.416253,-1.37852,1.14373,0 +-1.33579,1.36307,-1.28861,1.34636,-1.16796,-1.0486,-1.1059,-1.19816,-1.2058,-1.14138,0.50785,1.29315,1.13517,-0.369366,0.8516,0.880501,0.199174,-0.12773,1.58455,1.39396,1.185,-0.407898,1.30356,-1.45018,-1.31041,-0.537488,0.482625,1.21608,0.183163,-1.14873,-1.15431,-1.25831,0.243121,1.06519,0.450129,0.28278,0.986945,1.20216,1.1984,-1.02192,0.576916,0.275213,1.00839,1.17119,-1.3921,-1.31731,-1.29073,-1.32876,0.55254,-1.29038,-0.359769,-1.26989,1.14482,-0.508634,-1.33548,0.403468,1.14373,0 +-0.507757,-1.18667,-1.28861,0.419643,0.563563,1.43987,-1.1059,0.430109,-1.2058,-1.14138,1.31131,0.379325,-0.536051,1.54053,0.8516,0.880501,0.199174,-0.12773,-0.271386,1.39396,1.185,0.456846,1.30356,-0.571785,0.373268,0.32575,-0.414888,-0.652103,1.1077,0.655199,-1.15431,1.357,1.07444,-1.60198,-1.31704,1.16439,0.115144,0.346933,-0.399468,-1.02192,-0.238458,0.275213,-1.55696,1.17119,-1.3921,0.556984,1.4275,-0.431635,0.55254,-0.340516,-1.26776,1.26989,-0.564348,0.389953,0.502972,-1.37852,1.14373,0 +0.320277,0.513155,-0.4241,-0.507069,-1.16796,-1.0486,-1.1059,-1.19816,-1.2058,-1.14138,1.31131,-1.44833,1.13517,-0.369366,0.8516,0.880501,0.199174,1.67752,-1.19935,-0.365085,1.185,-1.27264,1.30356,1.185,1.21511,-1.40073,-0.414888,-1.5862,-1.66592,-1.14873,-1.15431,-0.38654,-0.588197,1.06519,-1.31704,1.16439,0.115144,0.346933,1.1984,-1.02192,-1.05383,-0.63643,1.00839,-0.58975,1.21195,1.49413,1.4275,-1.32876,0.55254,0.609345,-0.359769,-1.26989,1.14482,1.28854,-0.416253,-0.487524,1.14373,0 +1.14831,-1.18667,0.440412,0.419643,-0.3022,-1.0486,-0.297448,-0.384026,-0.386473,-0.312707,-1.09908,0.379325,0.299558,-0.369366,0.8516,0.880501,1.2548,-1.03035,-0.271386,-1.24461,-0.489799,1.32159,1.30356,1.185,-1.31041,1.18899,0.482625,-0.652103,1.1077,1.55716,-0.349332,-0.38654,0.243121,0.176134,-0.433457,1.16439,-0.756658,0.346933,1.1984,-1.02192,1.39229,0.275213,1.00839,1.17119,0.343931,1.49413,0.521422,1.36261,0.55254,0.609345,-1.26776,-1.26989,1.14482,1.28854,0.502972,1.29446,0.295929,0 +-0.507757,-0.336758,-1.28861,1.34636,-0.3022,-1.0486,-1.1059,-1.19816,-1.2058,-1.14138,-1.09908,-1.44833,1.13517,-1.32431,0.8516,0.880501,-0.856448,1.67752,-0.271386,-1.24461,-1.3272,-0.407898,-1.45999,1.185,-1.31041,-1.40073,-1.3124,-1.5862,-1.66592,-1.14873,-0.349332,1.357,1.07444,1.06519,0.450129,1.16439,0.115144,1.20216,-1.1984,-1.02192,1.39229,-1.54807,-0.701842,1.17119,1.21195,0.556984,1.4275,-1.32876,-1.36776,-0.340516,0.54822,-0.423298,1.14482,-1.40722,-0.416253,-1.37852,1.14373,0 +1.14831,0.513155,0.440412,0.419643,0.563563,-1.0486,-0.297448,0.430109,1.25217,-0.312707,0.50785,1.29315,1.13517,-1.32431,-0.774879,0.880501,0.199174,-1.03035,1.58455,-0.365085,-0.489799,0.456846,-0.538806,-1.45018,-0.46857,0.32575,1.38014,1.21608,1.1077,-1.14873,1.26063,0.485232,-1.41951,1.06519,-1.31704,1.16439,0.115144,-0.508297,1.1984,-1.02192,1.39229,-0.63643,0.153276,1.17119,-1.3921,-0.380164,1.4275,-0.431635,1.51269,1.55921,1.45621,-1.26989,0.290236,-0.508634,0.502972,-1.37852,0.295929,0 +1.14831,-0.336758,-1.28861,0.419643,-1.16796,-1.0486,-1.1059,1.24424,-1.2058,1.34464,1.31131,-1.44833,1.13517,0.58558,0.0383604,0.880501,0.199174,-1.03035,1.58455,0.514438,-1.3272,-1.27264,-0.538806,1.185,0.373268,1.18899,1.38014,1.21608,1.1077,1.55716,1.26063,1.357,-1.41951,1.06519,-0.433457,-0.598829,-1.62846,0.346933,1.1984,-1.02192,1.39229,-1.54807,-1.55696,1.17119,1.21195,1.49413,0.521422,1.36261,1.51269,0.609345,0.54822,-0.423298,-1.41893,1.28854,-1.33548,-1.37852,1.14373,0 +-1.33579,1.36307,-1.28861,1.34636,0.563563,-1.0486,-1.1059,-0.384026,0.43285,1.34464,1.31131,0.379325,-1.37166,0.58558,-1.58812,-0.816464,1.2548,0.774893,-0.271386,-0.365085,0.347599,-0.407898,1.30356,0.306609,-1.31041,0.32575,1.38014,1.21608,-1.66592,1.55716,-0.349332,-1.25831,0.243121,-0.712925,1.33371,0.28278,0.986945,0.346933,-1.1984,-1.02192,-0.238458,0.275213,-1.55696,-0.58975,-1.3921,1.49413,1.4275,-0.431635,1.51269,0.609345,0.54822,-0.423298,0.290236,1.28854,-0.416253,1.29446,-1.39967,1 +-0.507757,0.513155,-1.28861,-1.43378,-0.3022,0.610381,-1.1059,0.430109,1.25217,-0.312707,-1.09908,-1.44833,1.13517,-0.369366,-1.58812,0.0320182,-1.91207,-0.12773,-0.271386,0.514438,-0.489799,1.32159,1.30356,1.185,0.373268,-1.40073,-0.414888,1.21608,-0.741376,1.55716,0.455651,0.485232,1.07444,-1.60198,1.33371,1.16439,-1.62846,-0.508297,1.1984,0.571072,1.39229,0.275213,-1.55696,-1.47022,-0.524085,-1.31731,1.4275,1.36261,-1.36776,1.55921,1.45621,-0.423298,0.290236,1.28854,-0.416253,1.29446,-0.551868,1 +-0.507757,-1.18667,-1.28861,1.34636,0.563563,0.610381,-0.297448,-0.384026,1.25217,-0.312707,1.31131,-1.44833,-1.37166,-1.32431,-0.774879,0.0320182,0.199174,0.774893,1.58455,-0.365085,1.185,1.32159,0.382379,-1.45018,0.373268,0.32575,0.482625,0.28199,1.1077,1.55716,1.26063,1.357,1.07444,1.06519,0.450129,-0.598829,0.986945,0.346933,-1.1984,-1.02192,-1.05383,0.275213,0.153276,-1.47022,0.343931,0.556984,-1.29073,-1.32876,-0.407612,1.55921,-1.26776,1.26989,-1.41893,1.28854,0.502972,-0.487524,0.295929,1 +1.14831,1.36307,0.440412,-1.43378,-0.3022,-0.219111,1.31945,-1.19816,-0.386473,1.34464,-1.09908,-0.534504,0.299558,-0.369366,-0.774879,-1.66495,0.199174,-0.12773,-1.19935,1.39396,1.185,1.32159,1.30356,0.306609,0.373268,-0.537488,0.482625,0.28199,1.1077,0.655199,1.26063,-1.25831,-1.41951,0.176134,-0.433457,1.16439,-1.62846,-1.36353,-0.399468,-0.225423,-1.05383,1.18686,1.00839,-0.58975,-0.524085,0.556984,0.521422,1.36261,1.51269,0.609345,-1.26776,-0.423298,1.14482,-0.508634,-1.33548,-1.37852,1.14373,1 +-0.507757,0.513155,1.30492,-0.507069,1.42933,-1.0486,1.31945,-0.384026,0.43285,0.515966,1.31131,0.379325,-1.37166,-1.32431,-0.774879,-0.816464,1.2548,-0.12773,-0.271386,0.514438,0.347599,1.32159,-1.45999,1.185,-0.46857,-1.40073,-1.3124,-0.652103,0.183163,-0.246763,1.26063,0.485232,0.243121,-1.60198,-1.31704,0.28278,0.115144,1.20216,0.399468,-1.02192,-0.238458,0.275213,-0.701842,1.17119,-1.3921,-1.31731,-0.384656,0.465489,-0.407612,-1.29038,0.54822,-1.26989,1.14482,0.389953,-0.416253,-1.37852,0.295929,1 +0.320277,-0.336758,-0.4241,-1.43378,-1.16796,1.43987,-0.297448,-1.19816,-1.2058,1.34464,-0.295614,-1.44833,-1.37166,0.58558,-1.58812,-1.66495,-0.856448,1.67752,1.58455,0.514438,-1.3272,-1.27264,0.382379,0.306609,0.373268,1.18899,0.482625,0.28199,1.1077,-1.14873,1.26063,-0.38654,-1.41951,0.176134,-0.433457,-0.598829,-1.62846,-1.36353,-0.399468,-1.02192,0.576916,-0.63643,-0.701842,1.17119,0.343931,-1.31731,-0.384656,-1.32876,1.51269,-0.340516,-0.359769,1.26989,1.14482,-0.508634,0.502972,1.29446,1.14373,1 +1.14831,0.513155,0.440412,-1.43378,1.42933,0.610381,0.511001,-1.19816,-0.386473,0.515966,1.31131,1.29315,-0.536051,-1.32431,-1.58812,-0.816464,-1.91207,1.67752,1.58455,0.514438,-1.3272,0.456846,0.382379,-1.45018,-1.31041,0.32575,0.482625,-0.652103,-1.66592,1.55716,-1.15431,-1.25831,-0.588197,0.176134,-0.433457,1.16439,-1.62846,-0.508297,1.1984,-1.02192,-0.238458,-0.63643,1.00839,0.290722,-1.3921,1.49413,0.521422,1.36261,1.51269,1.55921,-1.26776,-0.423298,1.14482,-0.508634,-0.416253,-1.37852,-1.39967,1 +0.320277,-1.18667,0.440412,0.419643,1.42933,0.610381,0.511001,-0.384026,1.25217,-1.14138,1.31131,0.379325,1.13517,0.58558,0.8516,-1.66495,1.2548,0.774893,-1.19935,-0.365085,-0.489799,0.456846,-1.45999,-1.45018,-0.46857,0.32575,-1.3124,0.28199,1.1077,-0.246763,-1.15431,-1.25831,1.07444,-0.712925,-1.31704,0.28278,-1.62846,-0.508297,-0.399468,0.571072,-0.238458,1.18686,1.00839,1.17119,0.343931,-1.31731,-0.384656,1.36261,-0.407612,1.55921,0.54822,0.423298,1.14482,-1.40722,1.4222,1.29446,-1.39967,1 +-0.507757,0.513155,1.30492,-1.43378,0.563563,-0.219111,0.511001,-0.384026,-1.2058,1.34464,-0.295614,-1.44833,0.299558,1.54053,0.0383604,-0.816464,1.2548,1.67752,1.58455,-0.365085,1.185,1.32159,-1.45999,-0.571785,1.21511,0.32575,1.38014,0.28199,-1.66592,0.655199,1.26063,-1.25831,-0.588197,0.176134,-0.433457,-1.48044,-0.756658,-0.508297,-1.1984,0.571072,-0.238458,0.275213,-0.701842,-0.58975,-1.3921,0.556984,-1.29073,0.465489,0.55254,-1.29038,-0.359769,0.423298,-1.41893,-0.508634,0.502972,-1.37852,-0.551868,1 +-0.507757,0.513155,-1.28861,-0.507069,-0.3022,0.610381,-1.1059,-1.19816,0.43285,-0.312707,0.50785,-1.44833,0.299558,-0.369366,-0.774879,0.880501,-0.856448,0.774893,1.58455,-0.365085,-0.489799,1.32159,-0.538806,-1.45018,-1.31041,1.18899,0.482625,0.28199,-0.741376,-0.246763,1.26063,-0.38654,1.07444,-1.60198,-1.31704,-1.48044,-0.756658,0.346933,0.399468,0.571072,1.39229,-0.63643,1.00839,1.17119,0.343931,-1.31731,0.521422,0.465489,0.55254,0.609345,1.45621,1.26989,1.14482,1.28854,1.4222,1.29446,0.295929,1 +-0.507757,1.36307,-1.28861,-0.507069,0.563563,0.610381,1.31945,0.430109,0.43285,0.515966,1.31131,-1.44833,-0.536051,-1.32431,-1.58812,0.880501,-1.91207,1.67752,0.65658,-0.365085,1.185,0.456846,0.382379,-1.45018,1.21511,0.32575,0.482625,-1.5862,0.183163,-1.14873,1.26063,0.485232,-0.588197,0.176134,1.33371,1.16439,-0.756658,-1.36353,-0.399468,1.36757,1.39229,-0.63643,1.00839,0.290722,0.343931,1.49413,-0.384656,1.36261,-1.36776,-0.340516,1.45621,0.423298,-1.41893,-0.508634,1.4222,-0.487524,0.295929,1 +-1.33579,1.36307,-1.28861,0.419643,1.42933,-0.219111,1.31945,-0.384026,-1.2058,0.515966,-1.09908,0.379325,1.13517,-0.369366,0.8516,0.880501,0.199174,-1.03035,-0.271386,-0.365085,1.185,-1.27264,-0.538806,1.185,-1.31041,-0.537488,0.482625,-0.652103,-0.741376,-1.14873,0.455651,-0.38654,-1.41951,1.06519,1.33371,1.16439,0.986945,0.346933,0.399468,-0.225423,0.576916,0.275213,1.00839,0.290722,1.21195,-1.31731,-1.29073,0.465489,-0.407612,1.55921,-1.26776,-1.26989,-0.564348,-0.508634,-1.33548,1.29446,1.14373,1 +-1.33579,-1.18667,-0.4241,1.34636,-0.3022,-1.0486,-1.1059,0.430109,0.43285,-0.312707,1.31131,0.379325,-1.37166,1.54053,-1.58812,-0.816464,0.199174,0.774893,-0.271386,0.514438,-1.3272,0.456846,-1.45999,-0.571785,1.21511,1.18899,0.482625,-0.652103,0.183163,-1.14873,0.455651,-0.38654,-0.588197,1.06519,1.33371,0.28278,0.986945,-0.508297,-0.399468,1.36757,1.39229,0.275213,-0.701842,0.290722,0.343931,1.49413,-1.29073,-0.431635,-1.36776,-0.340516,-1.26776,0.423298,-0.564348,-1.40722,0.502972,-0.487524,0.295929,1 +1.14831,1.36307,-1.28861,-0.507069,1.42933,0.610381,1.31945,0.430109,-1.2058,-1.14138,-0.295614,-1.44833,1.13517,1.54053,-1.58812,0.880501,1.2548,-0.12773,0.65658,1.39396,-0.489799,1.32159,-0.538806,-0.571785,0.373268,-0.537488,0.482625,-1.5862,-0.741376,1.55716,-1.15431,-0.38654,0.243121,-1.60198,1.33371,0.28278,-1.62846,0.346933,-1.1984,1.36757,0.576916,-0.63643,-0.701842,1.17119,0.343931,-1.31731,0.521422,1.36261,0.55254,-0.340516,1.45621,1.26989,-0.564348,-0.508634,0.502972,1.29446,1.14373,1 +1.14831,-1.18667,1.30492,1.34636,-0.3022,1.43987,-0.297448,-1.19816,-1.2058,-0.312707,-1.09908,-1.44833,0.299558,-1.32431,0.8516,0.880501,-1.91207,-1.03035,-0.271386,-0.365085,0.347599,-1.27264,-0.538806,-1.45018,0.373268,-1.40073,1.38014,1.21608,-0.741376,-1.14873,-1.15431,1.357,-0.588197,1.06519,-0.433457,0.28278,0.986945,0.346933,0.399468,-1.02192,1.39229,0.275213,0.153276,-1.47022,-0.524085,0.556984,1.4275,1.36261,-0.407612,-1.29038,-1.26776,-0.423298,-1.41893,1.28854,1.4222,0.403468,-1.39967,1 +-1.33579,-1.18667,-0.4241,0.419643,-1.16796,0.610381,1.31945,-0.384026,-1.2058,-1.14138,1.31131,-0.534504,-1.37166,0.58558,-1.58812,-0.816464,-0.856448,0.774893,-0.271386,1.39396,1.185,1.32159,0.382379,-1.45018,-0.46857,1.18899,-0.414888,1.21608,0.183163,0.655199,1.26063,-1.25831,1.07444,1.06519,-1.31704,-0.598829,0.986945,0.346933,1.1984,0.571072,-1.05383,-1.54807,-0.701842,-1.47022,1.21195,1.49413,-1.29073,1.36261,1.51269,-0.340516,0.54822,1.26989,-0.564348,1.28854,-0.416253,-0.487524,0.295929,1 +-1.33579,-1.18667,0.440412,1.34636,0.563563,-0.219111,1.31945,1.24424,-1.2058,0.515966,-0.295614,1.29315,1.13517,-0.369366,-1.58812,-1.66495,0.199174,0.774893,1.58455,-0.365085,-1.3272,-0.407898,0.382379,0.306609,-1.31041,1.18899,-1.3124,-0.652103,0.183163,-1.14873,-0.349332,-0.38654,0.243121,-1.60198,-1.31704,0.28278,-0.756658,0.346933,-1.1984,0.571072,-0.238458,-0.63643,1.00839,-0.58975,0.343931,1.49413,-0.384656,-0.431635,1.51269,-0.340516,-1.26776,-1.26989,1.14482,0.389953,0.502972,-0.487524,-0.551868,1 +0.320277,-1.18667,-1.28861,0.419643,-1.16796,-0.219111,-0.297448,-1.19816,-0.386473,0.515966,-0.295614,-0.534504,1.13517,-0.369366,0.0383604,-0.816464,-0.856448,-1.03035,-0.271386,-0.365085,0.347599,-1.27264,0.382379,1.185,-1.31041,0.32575,-1.3124,-0.652103,-0.741376,-0.246763,1.26063,1.357,-1.41951,0.176134,-1.31704,0.28278,-1.62846,0.346933,-0.399468,-1.02192,1.39229,0.275213,1.00839,-0.58975,-1.3921,0.556984,-0.384656,-0.431635,1.51269,-0.340516,0.54822,-1.26989,-0.564348,-1.40722,-1.33548,-0.487524,1.14373,1 +1.14831,1.36307,-1.28861,0.419643,-1.16796,0.610381,-1.1059,0.430109,-0.386473,-1.14138,1.31131,0.379325,1.13517,-0.369366,-1.58812,0.0320182,-0.856448,-0.12773,1.58455,-0.365085,0.347599,-1.27264,-0.538806,-1.45018,-1.31041,-0.537488,1.38014,1.21608,0.183163,-0.246763,-1.15431,1.357,-1.41951,-1.60198,-1.31704,1.16439,0.115144,-0.508297,1.1984,1.36757,1.39229,-0.63643,1.00839,1.17119,0.343931,1.49413,-1.29073,0.465489,-1.36776,-0.340516,0.54822,1.26989,0.290236,-0.508634,-0.416253,-0.487524,1.14373,1 +1.14831,-1.18667,1.30492,1.34636,-0.3022,0.610381,1.31945,-0.384026,1.25217,-0.312707,-0.295614,0.379325,-0.536051,0.58558,-1.58812,-0.816464,1.2548,-1.03035,-0.271386,0.514438,-1.3272,1.32159,0.382379,-1.45018,0.373268,-1.40073,1.38014,0.28199,-0.741376,-0.246763,1.26063,0.485232,-1.41951,0.176134,1.33371,0.28278,-0.756658,1.20216,1.1984,-0.225423,-0.238458,0.275213,1.00839,1.17119,-1.3921,-0.380164,1.4275,0.465489,0.55254,-1.29038,1.45621,1.26989,0.290236,1.28854,-0.416253,-1.37852,-0.551868,1 +1.14831,0.513155,-0.4241,1.34636,0.563563,-1.0486,-1.1059,-1.19816,0.43285,0.515966,-1.09908,0.379325,0.299558,-1.32431,-1.58812,-0.816464,1.2548,-1.03035,1.58455,-1.24461,1.185,0.456846,-0.538806,0.306609,-0.46857,1.18899,-0.414888,-1.5862,1.1077,-1.14873,-0.349332,0.485232,-1.41951,1.06519,-1.31704,1.16439,0.115144,-1.36353,-1.1984,-0.225423,0.576916,1.18686,1.00839,0.290722,-1.3921,0.556984,-1.29073,-0.431635,1.51269,0.609345,-0.359769,-0.423298,0.290236,-0.508634,1.4222,0.403468,-1.39967,1 +-0.507757,-1.18667,1.30492,0.419643,-1.16796,-1.0486,-0.297448,1.24424,-0.386473,-1.14138,-1.09908,0.379325,0.299558,-0.369366,0.8516,0.0320182,-1.91207,1.67752,-1.19935,-0.365085,0.347599,0.456846,-0.538806,0.306609,-1.31041,0.32575,-1.3124,-0.652103,1.1077,1.55716,0.455651,-0.38654,0.243121,-1.60198,0.450129,-0.598829,-0.756658,1.20216,1.1984,0.571072,1.39229,-0.63643,-0.701842,1.17119,1.21195,0.556984,-0.384656,0.465489,0.55254,1.55921,-1.26776,-0.423298,-1.41893,-0.508634,-1.33548,0.403468,-0.551868,1 +1.14831,1.36307,-0.4241,0.419643,1.42933,-0.219111,1.31945,-0.384026,-0.386473,0.515966,-0.295614,0.379325,-1.37166,-0.369366,0.8516,-1.66495,-0.856448,0.774893,-1.19935,1.39396,0.347599,-1.27264,0.382379,-1.45018,1.21511,0.32575,-0.414888,-0.652103,1.1077,0.655199,-1.15431,0.485232,1.07444,0.176134,-0.433457,1.16439,0.986945,-0.508297,-0.399468,0.571072,1.39229,1.18686,-1.55696,-0.58975,1.21195,0.556984,0.521422,-1.32876,1.51269,1.55921,0.54822,1.26989,-0.564348,-1.40722,-0.416253,-0.487524,-1.39967,1 +-0.507757,-1.18667,1.30492,0.419643,1.42933,-0.219111,-1.1059,0.430109,-0.386473,-0.312707,1.31131,-0.534504,0.299558,-1.32431,-0.774879,-1.66495,-1.91207,-0.12773,1.58455,1.39396,0.347599,-0.407898,-1.45999,1.185,-1.31041,-1.40073,-1.3124,1.21608,0.183163,-0.246763,1.26063,1.357,1.07444,-0.712925,1.33371,1.16439,0.115144,1.20216,-1.1984,0.571072,-1.05383,-0.63643,0.153276,1.17119,0.343931,-0.380164,-0.384656,-0.431635,1.51269,-1.29038,-0.359769,0.423298,-0.564348,0.389953,-0.416253,1.29446,1.14373,1 +-1.33579,0.513155,0.440412,-1.43378,0.563563,0.610381,-1.1059,-1.19816,-0.386473,1.34464,-1.09908,-0.534504,0.299558,-0.369366,-1.58812,-1.66495,0.199174,0.774893,1.58455,1.39396,0.347599,0.456846,-1.45999,-1.45018,-0.46857,-1.40073,1.38014,-0.652103,0.183163,0.655199,-1.15431,0.485232,-1.41951,0.176134,-1.31704,1.16439,0.115144,-0.508297,-0.399468,-1.02192,0.576916,-0.63643,-0.701842,-1.47022,0.343931,-0.380164,0.521422,-0.431635,-1.36776,-0.340516,-0.359769,1.26989,0.290236,-0.508634,-1.33548,-0.487524,0.295929,1 +1.14831,-0.336758,1.30492,-0.507069,-1.16796,-1.0486,-0.297448,-1.19816,-1.2058,0.515966,-1.09908,1.29315,1.13517,-1.32431,-1.58812,-0.816464,-0.856448,0.774893,-1.19935,-0.365085,-1.3272,0.456846,-1.45999,1.185,1.21511,-0.537488,-1.3124,-1.5862,1.1077,-0.246763,1.26063,-0.38654,0.243121,1.06519,0.450129,0.28278,-1.62846,1.20216,0.399468,0.571072,-1.05383,-0.63643,0.153276,1.17119,1.21195,-0.380164,-1.29073,-1.32876,-0.407612,-1.29038,1.45621,1.26989,0.290236,-1.40722,0.502972,0.403468,-1.39967,1 +1.14831,0.513155,-1.28861,-1.43378,0.563563,1.43987,0.511001,-0.384026,1.25217,1.34464,-1.09908,0.379325,-0.536051,1.54053,0.8516,-0.816464,-1.91207,-1.03035,0.65658,0.514438,1.185,-0.407898,-1.45999,-0.571785,0.373268,0.32575,-1.3124,1.21608,-1.66592,-0.246763,0.455651,-1.25831,-0.588197,-0.712925,0.450129,-1.48044,-1.62846,0.346933,-0.399468,0.571072,-1.05383,0.275213,-0.701842,-0.58975,1.21195,-0.380164,0.521422,1.36261,-0.407612,-0.340516,1.45621,-0.423298,-1.41893,-1.40722,1.4222,0.403468,0.295929,1 +-0.507757,1.36307,-1.28861,1.34636,-1.16796,1.43987,0.511001,-0.384026,0.43285,-0.312707,1.31131,-0.534504,-1.37166,1.54053,-1.58812,-0.816464,0.199174,-1.03035,1.58455,-1.24461,1.185,0.456846,-1.45999,-1.45018,-0.46857,0.32575,1.38014,1.21608,0.183163,-1.14873,0.455651,-1.25831,-0.588197,1.06519,0.450129,-0.598829,-0.756658,0.346933,-0.399468,1.36757,0.576916,-1.54807,0.153276,1.17119,1.21195,-1.31731,1.4275,-0.431635,-1.36776,0.609345,-0.359769,1.26989,0.290236,1.28854,0.502972,-1.37852,-1.39967,1 +0.320277,-0.336758,0.440412,0.419643,-0.3022,-1.0486,0.511001,-0.384026,-1.2058,-0.312707,0.50785,1.29315,1.13517,1.54053,-0.774879,-0.816464,-1.91207,-0.12773,0.65658,-0.365085,0.347599,0.456846,1.30356,0.306609,-1.31041,0.32575,-1.3124,0.28199,-0.741376,-0.246763,1.26063,-0.38654,-1.41951,0.176134,0.450129,-1.48044,0.986945,1.20216,-0.399468,-1.02192,1.39229,0.275213,1.00839,-0.58975,0.343931,-1.31731,1.4275,0.465489,1.51269,-0.340516,1.45621,1.26989,-0.564348,-0.508634,0.502972,0.403468,1.14373,1 +-1.33579,1.36307,-0.4241,-0.507069,-0.3022,1.43987,-1.1059,-1.19816,1.25217,0.515966,1.31131,-0.534504,1.13517,-1.32431,-0.774879,0.880501,1.2548,-0.12773,-0.271386,0.514438,0.347599,1.32159,-0.538806,-1.45018,-1.31041,1.18899,-0.414888,-0.652103,-1.66592,1.55716,-0.349332,1.357,-1.41951,-0.712925,0.450129,1.16439,0.986945,-1.36353,-1.1984,-0.225423,-0.238458,0.275213,-1.55696,0.290722,0.343931,1.49413,0.521422,0.465489,-0.407612,1.55921,-1.26776,1.26989,0.290236,1.28854,0.502972,1.29446,-1.39967,1 +1.14831,0.513155,0.440412,-0.507069,0.563563,1.43987,-0.297448,1.24424,-1.2058,1.34464,-0.295614,0.379325,0.299558,1.54053,0.0383604,-1.66495,-1.91207,-0.12773,-0.271386,1.39396,-0.489799,-0.407898,0.382379,0.306609,1.21511,-1.40073,1.38014,-0.652103,-1.66592,-1.14873,-0.349332,0.485232,-0.588197,1.06519,0.450129,0.28278,-1.62846,-1.36353,0.399468,0.571072,1.39229,0.275213,-1.55696,-0.58975,0.343931,-0.380164,1.4275,-1.32876,-1.36776,-0.340516,0.54822,-0.423298,-1.41893,0.389953,-1.33548,1.29446,0.295929,1 +1.14831,-0.336758,1.30492,-0.507069,0.563563,1.43987,0.511001,0.430109,-1.2058,1.34464,0.50785,0.379325,-1.37166,-0.369366,0.0383604,0.880501,1.2548,-0.12773,-1.19935,-1.24461,-0.489799,-1.27264,1.30356,1.185,0.373268,-1.40073,0.482625,0.28199,-1.66592,-1.14873,0.455651,0.485232,-0.588197,-1.60198,1.33371,-1.48044,-1.62846,-0.508297,0.399468,-0.225423,1.39229,-1.54807,-0.701842,1.17119,-1.3921,-0.380164,-0.384656,1.36261,0.55254,-1.29038,1.45621,0.423298,1.14482,1.28854,1.4222,-1.37852,-0.551868,1 +1.14831,-1.18667,1.30492,1.34636,0.563563,0.610381,-0.297448,1.24424,1.25217,0.515966,-0.295614,1.29315,-0.536051,-1.32431,-1.58812,0.0320182,-0.856448,-1.03035,1.58455,0.514438,-1.3272,-1.27264,-0.538806,1.185,-0.46857,-1.40073,-1.3124,0.28199,0.183163,-0.246763,1.26063,0.485232,-1.41951,1.06519,-1.31704,-0.598829,0.115144,0.346933,-0.399468,0.571072,-1.05383,0.275213,-1.55696,-0.58975,1.21195,1.49413,0.521422,-0.431635,0.55254,-1.29038,0.54822,-0.423298,-0.564348,1.28854,1.4222,0.403468,1.14373,1 +1.14831,-1.18667,0.440412,-1.43378,0.563563,0.610381,0.511001,1.24424,0.43285,1.34464,-1.09908,-0.534504,1.13517,-0.369366,-0.774879,-1.66495,-1.91207,0.774893,-1.19935,-1.24461,0.347599,-1.27264,0.382379,0.306609,-1.31041,-1.40073,0.482625,-1.5862,1.1077,0.655199,-1.15431,0.485232,0.243121,-0.712925,1.33371,-1.48044,0.115144,-1.36353,-0.399468,0.571072,1.39229,-0.63643,1.00839,-0.58975,1.21195,0.556984,-0.384656,-1.32876,1.51269,0.609345,0.54822,-1.26989,0.290236,1.28854,-1.33548,1.29446,0.295929,1 +-0.507757,-1.18667,0.440412,-0.507069,0.563563,0.610381,-0.297448,-1.19816,0.43285,-0.312707,-1.09908,-0.534504,0.299558,1.54053,0.8516,0.880501,-0.856448,-0.12773,-1.19935,-0.365085,0.347599,-0.407898,0.382379,0.306609,1.21511,0.32575,-1.3124,0.28199,-1.66592,0.655199,-0.349332,-0.38654,1.07444,-0.712925,-1.31704,0.28278,0.115144,-1.36353,1.1984,1.36757,-0.238458,-1.54807,1.00839,0.290722,1.21195,-0.380164,0.521422,-1.32876,1.51269,0.609345,1.45621,-0.423298,1.14482,1.28854,-0.416253,-0.487524,0.295929,1 +1.14831,1.36307,-1.28861,-0.507069,0.563563,1.43987,1.31945,0.430109,0.43285,-0.312707,0.50785,-1.44833,-0.536051,-0.369366,0.0383604,-0.816464,1.2548,-1.03035,0.65658,0.514438,-1.3272,-0.407898,1.30356,1.185,1.21511,-0.537488,1.38014,1.21608,0.183163,1.55716,1.26063,0.485232,-1.41951,1.06519,1.33371,1.16439,0.986945,-0.508297,-0.399468,-1.02192,1.39229,0.275213,-0.701842,0.290722,0.343931,1.49413,0.521422,1.36261,1.51269,1.55921,1.45621,0.423298,-0.564348,0.389953,-0.416253,-1.37852,-1.39967,1 +-1.33579,-0.336758,0.440412,-0.507069,1.42933,-1.0486,-1.1059,-0.384026,0.43285,-0.312707,-1.09908,0.379325,-1.37166,1.54053,0.0383604,-0.816464,-1.91207,0.774893,-0.271386,0.514438,-1.3272,-1.27264,-0.538806,0.306609,-0.46857,1.18899,-0.414888,0.28199,0.183163,-0.246763,0.455651,1.357,-1.41951,1.06519,1.33371,-0.598829,0.986945,-0.508297,-1.1984,-1.02192,-0.238458,-1.54807,-1.55696,0.290722,-1.3921,1.49413,1.4275,-1.32876,-1.36776,-0.340516,-0.359769,0.423298,-1.41893,-0.508634,-1.33548,0.403468,-1.39967,1 +0.320277,0.513155,1.30492,0.419643,1.42933,1.43987,1.31945,1.24424,0.43285,-0.312707,0.50785,-0.534504,-1.37166,-1.32431,0.8516,0.0320182,1.2548,1.67752,-1.19935,-1.24461,1.185,-0.407898,0.382379,-0.571785,1.21511,1.18899,1.38014,0.28199,1.1077,-1.14873,-0.349332,-1.25831,-0.588197,-0.712925,1.33371,-0.598829,-1.62846,0.346933,0.399468,-0.225423,-1.05383,1.18686,0.153276,1.17119,-1.3921,-1.31731,-1.29073,-0.431635,0.55254,1.55921,-0.359769,1.26989,1.14482,-0.508634,0.502972,1.29446,-1.39967,1 +-1.33579,-1.18667,-0.4241,-0.507069,-1.16796,1.43987,1.31945,-0.384026,-0.386473,0.515966,0.50785,1.29315,1.13517,0.58558,-1.58812,-0.816464,1.2548,-0.12773,-1.19935,-1.24461,1.185,0.456846,-1.45999,0.306609,-0.46857,-1.40073,1.38014,-0.652103,1.1077,-0.246763,0.455651,-1.25831,1.07444,0.176134,-0.433457,-1.48044,0.115144,-0.508297,0.399468,1.36757,-1.05383,-0.63643,1.00839,-0.58975,-0.524085,1.49413,-1.29073,-0.431635,-1.36776,1.55921,0.54822,-1.26989,-1.41893,1.28854,-1.33548,0.403468,-1.39967,1 +-1.33579,0.513155,-1.28861,-0.507069,0.563563,1.43987,-0.297448,1.24424,-0.386473,1.34464,0.50785,-0.534504,-1.37166,1.54053,0.0383604,0.0320182,-1.91207,0.774893,1.58455,-1.24461,1.185,0.456846,-1.45999,0.306609,-1.31041,1.18899,0.482625,0.28199,-1.66592,-0.246763,1.26063,-1.25831,-0.588197,0.176134,0.450129,1.16439,0.115144,0.346933,0.399468,1.36757,-1.05383,-0.63643,-1.55696,-1.47022,1.21195,-1.31731,1.4275,0.465489,-0.407612,1.55921,0.54822,0.423298,-1.41893,1.28854,0.502972,0.403468,-1.39967,1 +1.14831,0.513155,1.30492,1.34636,0.563563,-1.0486,1.31945,1.24424,1.25217,1.34464,-0.295614,-0.534504,-1.37166,1.54053,0.0383604,-0.816464,0.199174,0.774893,1.58455,0.514438,1.185,1.32159,1.30356,1.185,0.373268,-0.537488,0.482625,-0.652103,-1.66592,-1.14873,1.26063,0.485232,1.07444,1.06519,-1.31704,-1.48044,0.986945,-0.508297,0.399468,-0.225423,1.39229,1.18686,1.00839,0.290722,1.21195,-1.31731,-0.384656,-1.32876,-0.407612,-0.340516,1.45621,-0.423298,-1.41893,0.389953,0.502972,-0.487524,-1.39967,1 +1.14831,0.513155,-0.4241,-1.43378,-0.3022,0.610381,0.511001,0.430109,1.25217,1.34464,0.50785,-0.534504,0.299558,-1.32431,0.8516,-1.66495,0.199174,-0.12773,-0.271386,1.39396,-0.489799,-1.27264,0.382379,-0.571785,0.373268,1.18899,-1.3124,1.21608,1.1077,-0.246763,-1.15431,0.485232,0.243121,1.06519,0.450129,-0.598829,0.115144,-1.36353,0.399468,1.36757,1.39229,-0.63643,0.153276,-1.47022,1.21195,-1.31731,0.521422,1.36261,-0.407612,1.55921,-0.359769,-1.26989,0.290236,-1.40722,0.502972,1.29446,-0.551868,1 +-1.33579,0.513155,0.440412,-0.507069,-1.16796,1.43987,0.511001,1.24424,-1.2058,-1.14138,-1.09908,-0.534504,0.299558,1.54053,-0.774879,0.880501,1.2548,-0.12773,0.65658,1.39396,-1.3272,0.456846,-0.538806,0.306609,-0.46857,-1.40073,1.38014,-0.652103,-1.66592,0.655199,1.26063,0.485232,-0.588197,1.06519,1.33371,1.16439,-0.756658,1.20216,1.1984,-1.02192,-0.238458,1.18686,0.153276,1.17119,0.343931,-1.31731,0.521422,1.36261,-1.36776,-0.340516,0.54822,-0.423298,-1.41893,-0.508634,-0.416253,-1.37852,0.295929,1 +-0.507757,-0.336758,0.440412,-1.43378,0.563563,1.43987,-1.1059,0.430109,-1.2058,-0.312707,-0.295614,-0.534504,1.13517,1.54053,-1.58812,0.0320182,-1.91207,0.774893,-1.19935,0.514438,-0.489799,-1.27264,1.30356,0.306609,1.21511,-0.537488,-1.3124,0.28199,-0.741376,-0.246763,1.26063,-0.38654,0.243121,-1.60198,-0.433457,-1.48044,-1.62846,-0.508297,1.1984,1.36757,0.576916,-0.63643,-1.55696,1.17119,-1.3921,-1.31731,-1.29073,1.36261,0.55254,-0.340516,1.45621,1.26989,1.14482,-0.508634,1.4222,1.29446,0.295929,1 +-0.507757,0.513155,-0.4241,1.34636,-1.16796,0.610381,0.511001,-1.19816,-0.386473,1.34464,1.31131,1.29315,-0.536051,1.54053,0.8516,0.0320182,1.2548,1.67752,0.65658,-1.24461,1.185,1.32159,1.30356,1.185,-0.46857,-0.537488,-1.3124,1.21608,0.183163,-0.246763,0.455651,0.485232,1.07444,0.176134,1.33371,1.16439,0.986945,1.20216,0.399468,-0.225423,0.576916,-0.63643,-1.55696,-1.47022,1.21195,0.556984,1.4275,1.36261,-1.36776,-1.29038,1.45621,-0.423298,0.290236,-0.508634,1.4222,1.29446,1.14373,1 +1.14831,-1.18667,1.30492,0.419643,-1.16796,-0.219111,-0.297448,0.430109,-1.2058,-1.14138,-0.295614,0.379325,-1.37166,0.58558,0.8516,-0.816464,-1.91207,-1.03035,1.58455,-0.365085,-1.3272,0.456846,-1.45999,-0.571785,-0.46857,0.32575,-0.414888,1.21608,1.1077,1.55716,0.455651,-1.25831,-0.588197,1.06519,-0.433457,1.16439,0.115144,0.346933,1.1984,-1.02192,1.39229,1.18686,-1.55696,-0.58975,1.21195,0.556984,1.4275,0.465489,-1.36776,-1.29038,-0.359769,-1.26989,1.14482,1.28854,-1.33548,1.29446,1.14373,1 +-1.33579,0.513155,-1.28861,0.419643,0.563563,0.610381,1.31945,0.430109,1.25217,-1.14138,-0.295614,1.29315,-0.536051,-0.369366,-1.58812,-1.66495,0.199174,-1.03035,-1.19935,0.514438,-1.3272,0.456846,0.382379,-1.45018,-1.31041,0.32575,-1.3124,1.21608,0.183163,-1.14873,0.455651,0.485232,-0.588197,1.06519,-1.31704,0.28278,-1.62846,-0.508297,0.399468,1.36757,-0.238458,1.18686,-0.701842,1.17119,0.343931,-0.380164,-1.29073,1.36261,0.55254,0.609345,-1.26776,0.423298,1.14482,-1.40722,1.4222,0.403468,-1.39967,1 +0.320277,-1.18667,0.440412,-1.43378,0.563563,-0.219111,-1.1059,1.24424,0.43285,1.34464,-0.295614,-1.44833,0.299558,-0.369366,-0.774879,0.880501,-0.856448,0.774893,-1.19935,-0.365085,-1.3272,-1.27264,-0.538806,1.185,1.21511,0.32575,-0.414888,-1.5862,1.1077,-1.14873,-1.15431,-1.25831,1.07444,0.176134,-0.433457,1.16439,0.986945,1.20216,-0.399468,1.36757,1.39229,0.275213,1.00839,-1.47022,0.343931,-1.31731,-0.384656,0.465489,1.51269,0.609345,-0.359769,-0.423298,-0.564348,1.28854,-1.33548,-0.487524,0.295929,1 +-0.507757,-0.336758,1.30492,-0.507069,-1.16796,-1.0486,1.31945,0.430109,0.43285,-0.312707,-0.295614,1.29315,-0.536051,1.54053,-1.58812,-1.66495,-1.91207,-0.12773,0.65658,0.514438,0.347599,1.32159,-0.538806,1.185,1.21511,0.32575,-1.3124,0.28199,0.183163,0.655199,0.455651,1.357,1.07444,1.06519,1.33371,1.16439,0.986945,0.346933,-0.399468,1.36757,0.576916,-1.54807,-1.55696,-1.47022,0.343931,0.556984,-1.29073,0.465489,0.55254,-1.29038,-1.26776,-0.423298,1.14482,-1.40722,1.4222,-1.37852,1.14373,1 +0.320277,1.36307,-1.28861,1.34636,1.42933,-0.219111,1.31945,-0.384026,-1.2058,-1.14138,-0.295614,-1.44833,-1.37166,0.58558,-1.58812,0.880501,1.2548,-1.03035,-1.19935,-0.365085,-0.489799,0.456846,-1.45999,-0.571785,-1.31041,0.32575,-1.3124,1.21608,1.1077,-0.246763,-1.15431,-1.25831,1.07444,-0.712925,1.33371,-0.598829,0.115144,1.20216,0.399468,0.571072,-1.05383,1.18686,0.153276,0.290722,-1.3921,-0.380164,0.521422,1.36261,1.51269,-0.340516,-1.26776,-1.26989,-0.564348,-1.40722,1.4222,1.29446,0.295929,1 +-0.507757,0.513155,-0.4241,0.419643,-1.16796,-0.219111,1.31945,-1.19816,-0.386473,0.515966,-1.09908,1.29315,0.299558,-1.32431,0.0383604,-1.66495,1.2548,0.774893,-0.271386,-0.365085,1.185,0.456846,-1.45999,0.306609,1.21511,0.32575,-0.414888,1.21608,1.1077,-0.246763,-0.349332,0.485232,1.07444,1.06519,-1.31704,-0.598829,0.986945,0.346933,0.399468,-1.02192,1.39229,1.18686,0.153276,1.17119,-0.524085,-1.31731,-0.384656,-0.431635,-1.36776,-1.29038,0.54822,0.423298,-0.564348,1.28854,1.4222,-0.487524,-0.551868,1 +-0.507757,1.36307,-0.4241,0.419643,1.42933,-0.219111,-0.297448,1.24424,-0.386473,-1.14138,-1.09908,1.29315,0.299558,0.58558,-0.774879,-0.816464,1.2548,-0.12773,1.58455,-1.24461,-1.3272,-1.27264,-0.538806,0.306609,0.373268,0.32575,1.38014,-0.652103,1.1077,1.55716,0.455651,-1.25831,0.243121,0.176134,0.450129,0.28278,0.986945,1.20216,1.1984,1.36757,1.39229,1.18686,0.153276,-0.58975,1.21195,0.556984,-1.29073,-1.32876,-1.36776,0.609345,0.54822,-1.26989,0.290236,0.389953,-1.33548,-1.37852,-0.551868,1 +1.14831,-1.18667,-1.28861,-0.507069,-1.16796,1.43987,1.31945,-1.19816,-1.2058,1.34464,-1.09908,-1.44833,-1.37166,1.54053,-1.58812,-1.66495,0.199174,0.774893,-1.19935,0.514438,0.347599,-0.407898,1.30356,-0.571785,1.21511,-1.40073,-1.3124,1.21608,0.183163,0.655199,-0.349332,-1.25831,-0.588197,1.06519,-0.433457,-1.48044,0.986945,1.20216,-1.1984,0.571072,-0.238458,-0.63643,-1.55696,-1.47022,1.21195,-0.380164,-1.29073,-1.32876,1.51269,-0.340516,-1.26776,-1.26989,0.290236,-1.40722,-1.33548,-0.487524,1.14373,1 diff --git a/data/musk-1.arff b/data/musk-1.arff new file mode 100755 index 0000000..c204690 --- /dev/null +++ b/data/musk-1.arff @@ -0,0 +1,645 @@ +@relation musk-1 +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'f35' real +@attribute 'f36' real +@attribute 'f37' real +@attribute 'f38' real +@attribute 'f39' real +@attribute 'f40' real +@attribute 'f41' real +@attribute 'f42' real +@attribute 'f43' real +@attribute 'f44' real +@attribute 'f45' real +@attribute 'f46' real +@attribute 'f47' real +@attribute 'f48' real +@attribute 'f49' real +@attribute 'f50' real +@attribute 'f51' real +@attribute 'f52' real +@attribute 'f53' real +@attribute 'f54' real +@attribute 'f55' real +@attribute 'f56' real +@attribute 'f57' real +@attribute 'f58' real +@attribute 'f59' real +@attribute 'f60' real +@attribute 'f61' real +@attribute 'f62' real +@attribute 'f63' real +@attribute 'f64' real +@attribute 'f65' real +@attribute 'f66' real +@attribute 'f67' real +@attribute 'f68' real +@attribute 'f69' real +@attribute 'f70' real +@attribute 'f71' real +@attribute 'f72' real +@attribute 'f73' real +@attribute 'f74' real +@attribute 'f75' real +@attribute 'f76' real +@attribute 'f77' real +@attribute 'f78' real +@attribute 'f79' real +@attribute 'f80' real +@attribute 'f81' real +@attribute 'f82' real +@attribute 'f83' real +@attribute 'f84' real +@attribute 'f85' real +@attribute 'f86' real +@attribute 'f87' real +@attribute 'f88' real +@attribute 'f89' real +@attribute 'f90' real +@attribute 'f91' real +@attribute 'f92' real +@attribute 'f93' real +@attribute 'f94' real +@attribute 'f95' real +@attribute 'f96' real +@attribute 'f97' real +@attribute 'f98' real +@attribute 'f99' real +@attribute 'f100' real +@attribute 'f101' real +@attribute 'f102' real +@attribute 'f103' real +@attribute 'f104' real +@attribute 'f105' real +@attribute 'f106' real +@attribute 'f107' real +@attribute 'f108' real +@attribute 'f109' real +@attribute 'f110' real +@attribute 'f111' real +@attribute 'f112' real +@attribute 'f113' real +@attribute 'f114' real +@attribute 'f115' real +@attribute 'f116' real +@attribute 'f117' real +@attribute 'f118' real +@attribute 'f119' real +@attribute 'f120' real +@attribute 'f121' real +@attribute 'f122' real +@attribute 'f123' real +@attribute 'f124' real +@attribute 'f125' real +@attribute 'f126' real +@attribute 'f127' real +@attribute 'f128' real +@attribute 'f129' real +@attribute 'f130' real +@attribute 'f131' real +@attribute 'f132' real +@attribute 'f133' real +@attribute 'f134' real +@attribute 'f135' real +@attribute 'f136' real +@attribute 'f137' real +@attribute 'f138' real +@attribute 'f139' real +@attribute 'f140' real +@attribute 'f141' real +@attribute 'f142' real +@attribute 'f143' real +@attribute 'f144' real +@attribute 'f145' real +@attribute 'f146' real +@attribute 'f147' real +@attribute 'f148' real +@attribute 'f149' real +@attribute 'f150' real +@attribute 'f151' real +@attribute 'f152' real +@attribute 'f153' real +@attribute 'f154' real +@attribute 'f155' real +@attribute 'f156' real +@attribute 'f157' real +@attribute 'f158' real +@attribute 'f159' real +@attribute 'f160' real +@attribute 'f161' real +@attribute 'f162' real +@attribute 'f163' real +@attribute 'f164' real +@attribute 'f165' real +@attribute 'f166' real +@attribute 'clase' {0,1} +@data +0.180723,-0.8816,-0.430175,-1.20376,-0.163793,0.225595,0.371883,-1.26358,0.654563,0.677236,-1.53479,-1.71078,0.0849225,-2.0584,-2.36473,-0.546515,-0.135521,-0.0540961,-1.87801,-1.96039,0.0927376,0.520618,0.0802006,0.65679,1.36797,1.02482,-0.0263625,-0.445101,0.385498,0.87716,-0.363541,-1.07757,-0.608257,1.2311,-1.09803,-1.29558,-0.575811,1.28725,-0.930449,0.963001,-0.956788,-1.21162,0.59095,-2.02915,-2.15367,-1.13544,-0.677899,1.16505,-1.62027,-0.439803,-0.775862,0.455896,0.536602,-0.933114,1.28626,1.09848,0.30654,-0.776638,0.390232,1.25943,-0.935393,-1.01499,0.541329,0.442967,-1.30442,-0.272134,-0.145623,1.01286,-1.03239,0.701018,-0.765109,-0.996032,-0.75348,-1.87285,-1.99886,-0.348557,0.394514,-1.57385,-1.89129,-2.30247,0.622885,0.529189,-0.720551,-0.920588,0.839709,0.512816,-1.2247,0.873601,-0.206011,0.822003,-0.621737,-1.28525,-1.19708,1.02056,0.538913,-0.838294,-1.22029,0.718898,-0.751259,0.708279,-1.06128,-1.07345,-2.1551,-2.21942,-2.3059,-0.838296,0.292974,1.24773,-2.3132,-2.28323,-2.38198,-0.107937,0.283525,0.276932,0.753925,1.43661,0.821689,0.579294,0.116566,-0.834043,1.06865,1.5111,1.19656,-1.48814,-0.871672,-1.1484,1.53121,1.00653,1.45637,-1.22678,0.0200527,-1.00697,0.239869,-1.01704,-1.41305,0.428441,0.659225,-0.9857,0.689362,0.265955,-0.579038,1.30867,0.944147,1.04651,-0.154676,-0.295417,-0.290322,-0.00312447,-0.781483,0.514062,-0.753947,-1.1958,-1.21925,-1.18577,-0.894557,-1.23118,-0.258181,1.45596,-0.170265,-1.44491,-0.863858,-1.0098,-0.786805,-0.179275,0.555801,-0.0685431,1 +0.180723,-0.802337,-0.907243,-1.07134,-0.163793,0.703723,0.615875,-2.34557,0.47807,1.11881,-2.57167,-0.541457,-0.533722,-1.99832,-1.97138,-0.593483,0.823675,-1.26207,-0.763257,0.0196449,0.542391,0.406376,0.625412,1.33854,0.962787,0.398559,0.709876,0.541643,-1.12973,1.17371,-0.363541,-1.06693,-0.592258,1.16814,-1.09803,-1.32004,-0.436033,0.403963,-0.930449,0.554929,-0.862569,-1.21162,0.575387,-2.4904,-1.57519,-2.09107,0.022316,0.293801,-1.21649,1.08222,0.087434,0.466893,0.4835,-2.00778,0.80793,-0.422674,0.755394,-0.298398,-0.0911037,0.976163,-0.935393,-1.01499,0.541329,1.30015,-1.13287,-0.272134,-0.145623,-0.67541,-1.03239,-0.344209,-0.855157,-0.996032,-2.64029,-1.23776,-0.31737,-0.348557,0.675792,-2.47669,-0.599659,-2.36276,0.61144,0.48692,0.362445,0.648588,1.06269,0.550725,-0.190148,-0.943982,-1.30895,1.20537,-0.621737,-1.28525,-1.19708,-2.45796,0.538913,-0.848368,0.138311,0.650064,-0.951811,0.698641,-0.897095,-1.07345,-1.77154,-2.45222,-2.05774,-2.12255,-0.460221,-0.146947,-1.50812,-1.62587,-1.94385,0.611893,0.610126,0.578365,1.08087,0.373643,1.20361,0.682843,0.758992,0.72984,1.0882,0.611398,1.01705,-1.48814,-0.861415,-1.11943,0.751564,1.20002,-0.189367,-1.22678,0.0200527,-1.00697,0.0877133,-0.567073,-1.70507,-0.692096,0.720274,-0.40182,0.597037,0.296548,0.35572,0.352328,0.585493,0.509675,-0.154676,-0.295417,-0.361962,-0.360063,-0.323023,0.653489,-0.753947,-1.23928,-1.21925,-1.18577,-0.894557,-1.23118,-0.258181,-1.08963,1.38153,-1.44491,-0.875311,-0.989504,-0.786805,-0.179275,0.538563,-0.0685431,1 +0.180723,-0.802337,-0.907243,-1.20376,-0.163793,0.225595,0.615875,-2.22682,0.47807,0.663437,-2.04765,-0.541457,0.0698336,-1.91422,-2.33851,-0.593483,0.815034,-1.26207,-0.751007,-1.94593,0.542391,0.406376,0.625412,0.648268,1.36797,0.398559,0.720704,0.541643,0.385498,0.87716,-0.363541,-1.06693,-0.608257,1.24009,-1.09803,-1.29558,-0.575811,0.416231,-0.930449,0.554929,-0.850791,-1.21162,0.575387,-2.1529,-1.72609,-2.00113,0.0074178,0.293801,-1.20303,-0.439803,0.087434,0.466893,0.4835,-1.76628,1.29765,-0.406662,0.755394,-0.298398,0.390232,1.25943,-0.935393,-1.01499,0.541329,0.442967,-1.30442,-0.226714,-0.145623,-0.67541,-1.03239,-0.344209,-0.855157,-0.996032,-0.778471,-1.23776,-2.01287,-0.348557,0.675792,-2.34771,-0.599659,-2.16983,0.61144,0.48692,0.362445,-0.910332,0.829574,0.550725,-0.190148,-0.943982,-0.206011,0.814179,-0.621737,-1.28525,-1.19708,1.02056,0.538913,-0.838294,-1.22029,0.650064,-0.951811,0.708279,-0.897095,-1.07345,-2.11674,-2.11467,-2.14459,-2.12255,-0.476595,-0.146947,-2.3132,-1.84052,-2.23138,0.611893,0.59992,0.578365,0.764142,1.43661,0.821689,0.692257,0.758992,0.72984,1.05888,1.49971,1.19656,-1.48814,-0.861415,-1.11943,1.53121,1.00653,1.45637,-1.22678,0.0200527,-1.00697,0.0877133,-0.567073,-1.66698,-0.692096,0.730448,-0.414795,0.597037,0.296548,0.35572,0.352328,0.585493,0.509675,-0.154676,-0.295417,-0.290322,-0.360063,-0.323023,0.665108,-0.753947,-1.1958,-1.21925,-1.18577,-0.894557,-1.23118,-0.258181,1.46713,-0.153844,-1.44491,-0.863858,-1.0098,-0.786805,-0.179275,0.538563,-0.0500892,1 +0.180723,-0.8816,-0.444632,-1.07134,-0.163793,0.703723,0.371883,-1.35595,0.654563,1.11881,-2.30409,-1.71078,-0.533722,-1.98631,-2.32539,-0.562171,-0.12688,-0.0388052,-1.87801,0.0340976,0.0927376,0.509194,0.0802006,1.33854,0.97345,1.02482,-0.0371895,-0.460764,-1.12973,1.17371,-0.363541,-1.06693,-0.592258,1.17714,-1.09803,-1.32004,-0.436033,1.28725,-0.930449,0.950636,-0.956788,-1.22454,0.575387,-2.07415,-2.15367,-2.0461,-0.677899,1.16505,-1.60681,1.08222,-0.788747,0.455896,0.536602,-1.9957,0.80793,1.09848,0.30654,-0.776638,-0.106145,0.965269,-0.935393,-1.01499,0.541329,1.30015,-1.13287,-0.272134,-0.145623,1.01286,-1.03239,0.701018,-0.765109,-0.996032,-2.21545,-1.87285,-0.31737,-0.348557,0.394514,-1.78491,-1.89129,-2.15777,0.622885,0.529189,-0.720551,0.658844,1.05256,0.503338,-1.2247,0.85906,-1.29224,1.20537,-0.621737,-1.28525,-1.19708,-2.45796,0.538913,-0.848368,0.128096,0.718898,-0.751259,0.698641,-1.06128,-1.07345,-1.77154,-2.13795,-2.25627,-1.08767,0.309348,1.26102,-1.78081,-2.28323,-2.38198,-0.119184,0.283525,0.276932,1.08087,0.389048,1.21192,0.56988,0.116566,-0.834043,1.09797,0.600009,1.01705,-1.48814,-0.861415,-1.11943,0.738783,1.20809,-0.203314,-1.22678,0.0200527,-1.00697,0.239869,-1.01704,-1.41305,0.428441,0.659225,-0.9857,0.700903,0.265955,-0.579038,1.29574,0.944147,1.03577,-0.154676,-0.295417,-0.290322,-0.00312447,-0.781483,0.514062,-0.753947,-1.23928,-1.21925,-1.18577,-0.894557,-1.23118,-0.258181,-1.08963,1.38153,-1.44491,-0.875311,-1.0098,-0.786805,-0.179275,0.555801,-0.0685431,1 +0.180723,-0.8816,-0.328979,-1.20376,-0.163793,0.214729,0.381267,-1.25039,0.654563,0.663437,-1.54593,-1.71078,0.0698336,-2.0584,-2.35162,-0.530859,-0.135521,-0.0388052,-1.86576,-1.93148,0.0927376,0.520618,0.0802006,0.639746,1.37864,1.02482,-0.0263625,-0.460764,0.385498,0.87716,-0.363541,0.721828,-0.30428,1.24009,-1.04779,-0.317085,-0.575811,1.28725,-0.72225,0.963001,-0.956788,1.20602,0.575387,-2.0404,-2.15367,-1.13544,-0.677899,1.16505,-1.59335,-0.439803,-0.788747,0.455896,0.536602,-0.933114,1.29765,1.09848,0.315517,-0.776638,0.37519,1.25943,-0.935393,-0.662831,0.469574,0.442967,-1.30442,0.182058,-0.145623,0.995634,-0.92981,0.701018,-0.687925,-0.459759,-0.778471,-1.87285,-2.01287,-0.348557,0.394514,-1.57385,-1.87944,-2.29041,0.622885,0.529189,-0.720551,-0.920588,0.829574,0.503338,-1.2247,0.85906,-0.206011,0.814179,-0.621737,0.545135,-1.18519,1.02056,0.600252,-0.687193,-1.2305,0.718898,-0.519853,0.708279,-1.06128,1.21141,-2.1551,-2.21942,-2.3059,-0.825827,0.309348,1.26102,-2.3132,-2.26981,-2.36829,-0.107937,0.283525,0.276932,0.764142,1.43661,0.821689,0.56988,0.116566,-0.834043,1.06865,1.49971,1.19656,-1.44668,-0.604997,-1.00352,1.544,1.00653,1.47031,-1.22678,0.0958073,-1.00697,0.239869,-1.01704,-1.41305,0.412433,0.659225,-0.998675,0.700903,0.265955,-0.565872,1.29574,0.954394,1.04651,-0.114399,-0.295417,-0.290322,-0.00312447,-0.781483,0.514062,-0.597175,-1.1958,-1.21925,-0.514931,1.02901,-0.446199,-0.258181,1.46713,-0.153844,1.16227,1.03728,1.30402,-0.892095,0.257699,0.693711,-0.142359,1 +0.180723,-0.802337,-0.907243,-1.07134,-0.163793,0.703723,0.615875,-2.34557,0.47807,1.13261,-2.56052,-0.529403,-0.518633,-1.98631,-1.97138,-0.577827,0.823675,-1.24678,-0.751007,0.0196449,0.555238,0.406376,0.625412,1.33002,0.97345,0.398559,0.699049,0.541643,-1.14695,1.16523,-0.363541,0.732475,-0.30428,1.17714,-1.06035,-0.341547,-0.436033,0.403963,-0.847169,0.542563,-0.756573,1.21895,0.59095,-2.47915,-1.56261,-2.07983,0.022316,0.307854,-1.21649,1.08222,0.100319,0.466893,0.472879,-2.00778,0.819319,-0.422674,0.755394,-0.310983,-0.0911037,0.976163,-0.935393,-0.653801,0.469574,1.30015,-1.13287,0.136639,-0.145623,-0.692637,-0.858004,-0.360289,-0.868021,-0.704912,-2.6278,-1.22554,-0.31737,-0.264974,0.675792,-2.46496,-0.587809,-2.37482,0.61144,0.48692,0.375038,0.648588,1.06269,0.550725,-0.190148,-0.943982,-1.30895,1.20537,-0.621737,0.545135,-1.18519,-2.44469,0.600252,-0.717413,0.148526,0.650064,-0.967238,0.698641,-0.667233,1.19026,-1.77154,-2.44058,-2.04533,-2.11008,-0.443848,-0.133664,-1.52111,-1.61245,-1.94385,0.623141,0.610126,0.56797,1.08087,0.373643,1.21192,0.682843,0.750539,0.719273,1.0882,0.600009,1.01705,-1.44668,-0.59474,-0.974544,0.764345,1.20809,-0.17542,-1.22678,0.05793,-1.00697,0.102929,-0.553839,-1.67968,-0.708104,0.720274,-0.375869,0.585496,0.296548,0.368886,0.339405,0.575246,0.509675,-0.114399,-0.295417,-0.361962,-0.389808,-0.336507,0.64187,-0.611427,-1.25377,-1.21925,-0.500955,1.02901,-0.19161,-0.258181,-1.0673,1.38974,1.16227,1.02583,1.28372,-0.913154,0.195274,0.693711,-0.142359,1 +0.180723,-0.791014,-0.907243,-1.20376,-0.163793,0.236462,0.615875,-2.22682,0.47807,0.649637,-2.0365,-0.529403,0.0547447,-1.91422,-2.33851,-0.577827,0.823675,-1.24678,-0.751007,-1.93148,0.542391,0.406376,0.614722,0.631225,1.36797,0.398559,0.709876,0.525981,0.402717,0.885633,-0.363541,0.785712,-0.352276,1.24908,-1.04779,-0.366009,-0.575811,0.403963,-0.861049,0.554929,-0.733018,1.23188,0.575387,-2.14165,-1.70094,-1.98989,0.022316,0.293801,-1.20303,-0.454873,0.100319,0.466893,0.472879,-1.77836,1.29765,-0.422674,0.755394,-0.310983,0.405274,1.25943,-0.935393,-0.563504,0.433696,0.450486,-1.30442,0.136639,-0.145623,-0.692637,-0.899036,-0.360289,-0.868021,-0.68959,-0.790967,-1.22554,-2.02689,-0.348557,0.675792,-2.33599,-0.587809,-2.15777,0.61144,0.48692,0.375038,-0.920588,0.829574,0.560203,-0.190148,-0.943982,-0.1893,0.822003,-0.621737,0.609737,-1.18519,1.03383,0.600252,-0.787927,-1.22029,0.650064,-0.967238,0.698641,-0.634396,1.23257,-2.12953,-2.11467,-2.13219,-2.11008,-0.443848,-0.133664,-2.30021,-1.8271,-2.23138,0.611893,0.59992,0.56797,0.764142,1.43661,0.821689,0.682843,0.758992,0.719273,1.05888,1.5111,1.19656,-1.4605,-0.481916,-1.00352,1.544,1.01459,1.47031,-1.22678,0.114746,-1.00697,0.102929,-0.553839,-1.65428,-0.708104,0.720274,-0.388845,0.585496,0.296548,0.368886,0.352328,0.585493,0.509675,-0.114399,-0.295417,-0.361962,-0.374936,-0.323023,0.653489,-0.611427,-1.1958,-1.21925,-0.4171,1.06723,0.0841944,-0.258181,1.47829,-0.137423,1.16227,0.991474,1.28372,-0.871037,0.257699,0.693711,-0.086997,1 +0.180723,-0.892923,-0.328979,-1.07134,-0.163793,0.703723,0.371883,-1.34275,0.644181,1.13261,-2.28179,-1.71078,-0.518633,-1.98631,-2.31228,-0.546515,-0.12688,-0.0388052,-1.86576,0.0196449,0.0927376,0.520618,0.0802006,1.33002,0.97345,1.02482,-0.0371895,-0.460764,-1.14695,1.17371,-0.363541,0.732475,-0.288281,1.17714,-1.04779,-0.317085,-0.436033,1.27498,-0.72225,0.950636,-0.956788,1.20602,0.59095,-2.0629,-2.14109,-2.0461,-0.677899,1.16505,-1.57989,1.08222,-0.788747,0.455896,0.536602,-1.9957,0.819319,1.09848,0.30654,-0.776638,-0.0911037,0.976163,-0.935393,-0.662831,0.469574,1.30767,-1.13287,0.136639,-0.145623,0.995634,-0.940068,0.684938,-0.687925,-0.459759,-2.19046,-1.86064,-0.31737,-0.264974,0.394514,-1.77318,-1.87944,-2.15777,0.622885,0.529189,-0.720551,0.648588,1.06269,0.503338,-1.2247,0.85906,-1.30895,1.20537,-0.621737,0.566669,-1.17331,-2.44469,0.600252,-0.717413,0.148526,0.718898,-0.519853,0.698641,-1.07223,1.21141,-1.77154,-2.12631,-2.25627,-1.06273,0.342096,1.26102,-1.79379,-2.26981,-2.36829,-0.107937,0.283525,0.276932,1.08087,0.358238,1.21192,0.560466,0.108113,-0.844609,1.0882,0.611398,1.01705,-1.43286,-0.59474,-0.974544,0.764345,1.20809,-0.17542,-1.22678,0.05793,-1.00697,0.239869,-1.01704,-1.40035,0.412433,0.659225,-0.998675,0.700903,0.281252,-0.565872,1.29574,0.944147,1.04651,-0.114399,-0.295417,-0.361962,-0.0179969,-0.794967,0.502444,-0.597175,-1.25377,-1.21925,-0.514931,1.02901,-0.424983,-0.258181,-1.0673,1.38974,1.16227,1.02583,1.30402,-0.913154,0.257699,0.693711,-0.160813,1 +0.0701521,-0.598517,-0.907243,-0.038447,-0.128956,0.0299972,0.625259,-2.35877,0.488452,-0.371507,-2.52707,-0.565567,-2.57072,-2.0584,-2.29917,-0.577827,0.840958,-1.29265,-0.787757,-1.7725,0.555238,0.429224,0.636102,0.034696,0.664229,0.387375,0.731531,0.447668,0.351061,1.08898,-0.363541,1.15837,-0.272282,1.50988,-0.206158,-0.390471,-0.497186,0.428498,-0.944329,0.604393,-0.591689,1.30945,-1.99243,-2.4679,-1.72609,-2.05734,0.0372142,0.321906,-1.25687,-0.620638,0.087434,0.477889,0.504741,-1.9474,0.978761,-0.422674,0.773348,-0.310983,0.134522,0.997953,-0.68371,0.9264,-0.247977,0.984346,0.374327,0.227478,-0.145623,-0.623728,-1.03239,-0.279887,-0.829429,-0.628302,-2.56532,-1.28661,-2.60139,-0.348557,0.675792,-2.45324,-0.623359,-2.33864,0.63433,0.508055,0.375038,0.833196,0.809302,0.550725,-0.114449,-0.987604,0.0279456,0.775061,-0.563571,1.01888,0.372023,0.0646268,0.538913,-0.767781,0.220031,0.650064,-0.967238,0.727553,-0.393588,1.3172,-2.52587,-2.44058,-2.21904,-2.09761,-0.443848,-0.146947,-2.28723,-1.84052,-2.21769,0.634388,0.630539,0.609547,1.05022,1.35958,0.589213,0.664016,0.758992,0.72984,0.863446,1.34027,0.790298,-1.10114,0.718123,-1.11943,1.07109,1.27258,0.772969,0.311498,0.47458,-0.892266,0.0877133,-0.593542,-1.75586,-0.692096,0.740623,-0.388845,0.620118,0.296548,0.35572,0.391099,0.616235,0.520412,-0.114399,-0.263276,-0.433602,-0.315446,-0.255603,0.688346,-0.169616,0.0359855,0.0575278,0.169882,1.30927,0.858569,-0.226446,1.69043,1.05311,0.964061,0.579178,1.08075,-0.407758,0.382549,0.676472,0.448166,1 +0.291294,-0.439991,0.234829,-1.19052,-0.163793,0.290794,0.202965,-1.60665,0.623417,0.59444,-2.148,-2.08448,-0.0206997,-2.39482,-2.27295,-0.483891,0.598999,-1.78196,-1.70651,-1.87367,-0.703791,0.406376,0.379532,0.546006,1.35731,0.980092,0.504163,-0.758353,0.471591,0.911051,-0.363541,-0.928511,-0.0163013,1.32103,-1.32414,1.19958,-0.575811,1.04189,0.402021,0.690953,0.550716,0.0683094,0.497575,-2.43415,-2.30458,-1.47272,-0.156462,0.46243,-1.63373,-0.515151,-1.53608,0.433904,0.759632,-1.48856,1.30903,0.842287,-0.0615193,-0.462006,0.465441,1.27032,-0.925326,-0.626712,0.756594,0.510639,-1.31667,0.63625,-0.145623,0.978407,0.783268,0.572375,0.354057,0.551498,-0.953408,-2.38581,-2.08293,-0.0978067,0.702162,-2.31254,-1.86759,-2.3507,0.0735267,0.338977,-0.619807,-0.961613,0.839709,0.560203,0.327127,-0.144246,-0.122455,0.837651,-0.621737,-0.423894,-1.0901,1.07366,-0.534531,1.31742,-1.19986,0.305892,0.313208,0.0818561,0.536803,0.407479,-2.1551,-2.3009,-2.33071,-1.46172,0.767815,0.968799,-2.27424,-2.24298,-2.36829,-0.119184,0.222287,0.547182,0.825445,1.43661,0.813386,0.268644,0.048942,0.603039,1.06865,1.53388,1.22491,0.55741,-0.861415,0.590181,1.55678,1.06297,1.49821,-1.2371,-1.87381,-0.892266,-1.32733,-2.314,-2.31451,0.428441,0.242058,0.272886,0.874013,0.373031,-0.249898,1.15359,0.226839,0.198312,-0.114399,-0.295417,-0.505242,0.219962,0.202856,0.339779,-0.92497,-1.21029,-1.21925,0.491324,-0.397741,0.0841944,-0.210578,1.58994,-0.0224755,0.201729,1.3236,1.10105,-0.849979,-0.179275,0.297222,-1.08351,1 +0.180723,-0.564547,0.234829,-1.07134,-0.163793,0.736323,0.259271,-1.89694,0.602653,1.14641,-2.51592,-2.1327,-0.503544,-2.40683,-2.27295,-0.530859,0.598999,-1.7055,-1.78001,-0.0237135,-0.716638,0.429224,0.368842,1.31297,0.984112,1.00246,0.536644,-0.805341,-1.11251,1.17371,-0.363541,-0.949806,-0.480267,1.17714,-1.1106,-1.3445,-0.427297,1.07869,0.346502,0.567295,0.515384,-0.64276,0.622075,-2.45665,-2.31715,-2.0461,-0.126666,0.476483,-1.74141,1.09729,-1.6005,0.422908,0.791494,-2.00778,0.842096,0.79425,-0.0345881,-0.550103,-0.0459784,0.997953,-0.945461,-0.68089,0.613084,1.31519,-1.12061,-0.362972,-0.145623,1.01286,-0.160464,0.540214,0.354057,0.597465,-2.57782,-2.39803,-0.331382,-0.18139,0.693372,-2.38289,-1.92684,-2.36276,0.0735267,0.402381,-0.670179,0.658844,1.0931,0.588635,0.301894,-0.23149,-1.29224,1.21319,-0.621737,-1.28525,-1.18519,-2.39158,0.569582,-0.838294,0.189386,0.276391,0.328635,0.0336697,0.460183,-1.07345,-1.92496,-2.39402,-2.35553,-1.69862,0.947927,1.00865,-1.79379,-2.2564,-2.3546,-0.141679,0.222287,0.578365,1.09109,0.327427,1.22022,0.287471,0.0658479,0.529071,1.0882,0.622787,1.0265,-1.47432,-0.881929,-1.00352,0.789908,1.20809,-0.13358,-1.2371,0.00111404,-1.00697,-1.31212,-2.314,-2.30182,0.476464,0.282757,0.259911,0.874013,0.311845,-0.30256,1.10189,0.206344,0.176839,-0.114399,-0.279346,-0.433602,0.219962,0.243309,0.339779,-0.725443,-1.25377,-1.21925,0.5053,-0.881818,0.0523708,-0.242313,-1.04497,1.41437,-0.636835,-0.749332,-0.94891,-0.807863,-0.241699,0.57304,-0.123905,1 +0.125438,0.2847,0.263742,-1.20376,-0.163793,0.269061,0.437573,-2.2664,0.820673,0.704835,-1.78007,-1.61434,0.0698336,-2.15452,-2.32539,-0.609139,0.123721,-0.451657,-2.24551,-2.0182,0.285446,0.406376,-0.0587749,0.699399,1.36797,0.890625,-0.0588436,0.666944,0.454372,0.894106,-0.363541,-0.949806,-0.592258,1.2311,-1.08547,-1.29558,-0.575811,1.04189,0.762898,0.678588,0.633158,-0.862546,0.606512,-2.1754,-2.12852,-1.57391,-0.782186,1.13695,-2.49513,-0.454873,-0.608357,0.631833,0.377295,-1.22291,1.30903,0.185788,0.324495,-0.361324,0.450399,1.29211,-0.945461,-0.67186,0.541329,0.442967,-1.27991,-0.272134,-0.145623,1.04732,0.0446954,0.604536,0.469832,0.0611918,-0.840949,-1.89728,-1.98485,-0.348557,0.412093,-1.85526,-1.91499,-2.33864,0.806005,0.338977,-0.619807,-0.920588,0.870116,0.664454,0.13788,0.800897,-0.139166,0.829827,-0.621737,-1.24218,-1.20897,0.994003,0.600252,-0.908808,-1.22029,0.138722,0.344062,0.303513,0.635315,-1.00999,-2.1551,-2.3009,-2.33071,-1.39938,-0.558464,0.915668,-2.26126,-2.22957,-2.34091,0.128258,0.579507,0.349692,0.764142,1.43661,0.829991,0.946425,0.581479,0.180368,1.05888,1.52249,1.21546,-1.47432,-0.840902,-1.20636,1.55678,1.01459,1.47031,-1.22678,0.0768686,-1.00697,0.224653,-1.05674,-1.70507,0.380418,0.170834,0.285861,0.158491,-1.18722,-1.06617,1.15359,0.278075,0.187576,-0.114399,-0.295417,-0.218682,0.160473,0.0545313,0.0957826,-0.739695,-1.1958,-1.23427,-0.0816819,-0.792646,-0.24465,-0.305783,1.4113,-0.194897,-0.438629,-0.795142,-0.989504,-0.765747,-0.179275,0.57304,-0.0316353,1 +0.346579,-0.892923,-0.415719,-0.038447,-0.163793,0.0408637,0.381267,-1.36914,0.675326,-0.357708,-2.24834,-1.77106,-2.57072,-2.0584,-2.29917,-0.499547,-0.0836728,-0.0846777,-1.84126,-1.80141,0.0413487,0.520618,0.112272,-0.161306,0.674892,1.03601,-0.0047084,-0.507751,0.36828,1.08898,-0.363541,-1.00304,-0.0962954,1.51888,-0.243843,-1.09988,-0.48845,1.29952,-0.944329,0.975367,-0.94501,-1.10819,-2.00799,-2.27665,-2.14109,-1.55142,-0.663001,1.1791,-1.59335,-0.605568,-0.866057,0.455896,0.579084,-1.69383,0.955984,1.08247,0.315517,-0.789224,0.179648,0.976163,-0.68371,-1.01499,0.469574,0.999384,0.374327,0.0912201,-0.145623,1.04732,-1.03239,0.733179,-0.752245,-0.996032,-2.50284,-1.89728,-2.58738,-0.264974,0.438463,-1.92561,-1.90314,-2.37482,0.622885,0.529189,-0.733144,0.833196,0.809302,0.522293,-1.21208,0.757275,0.0446568,0.782884,-0.621737,-1.26372,0.38391,0.0779036,0.538913,-0.787927,0.220031,0.709065,-0.751259,0.708279,-1.06128,-1.07345,-2.51308,-2.4173,-2.26867,-1.00039,0.374844,1.28758,-2.28723,-2.24298,-2.3546,-0.119184,0.283525,0.308115,1.06044,1.32877,0.589213,0.541639,0.108113,-0.855176,0.853674,1.35166,0.809194,-1.10114,-0.871672,-1.32226,1.05831,1.27258,0.772969,0.332146,0.0958073,-0.915207,0.194222,-1.10968,-1.50192,0.460456,0.6694,-0.9857,0.735525,0.296548,-0.526376,1.32159,0.954394,1.04651,-0.114399,-0.279346,-0.505242,0.0414929,-0.74103,0.5373,-0.212372,0.0359855,0.0575278,-1.18577,-0.792646,-1.23118,-0.194711,1.72392,1.07774,-1.44491,-0.898216,-1.0098,-0.639398,-0.366549,0.486847,0.0790881,1 +0.125438,2.37951,-0.892787,-0.0516892,-0.128956,0.0191306,0.615875,-2.33238,0.488452,-0.371507,-2.53822,-0.577622,-2.58581,-2.08243,-2.29917,-0.577827,0.823675,-1.36911,-0.775507,-1.78695,0.542391,0.429224,0.646793,0.0858271,0.664229,0.398559,0.753185,0.525981,0.333843,1.09745,1.05047,1.65879,-0.336278,1.50089,-0.206158,-0.488321,-0.497186,0.428498,-0.80553,0.604393,-0.32081,0.740594,-2.00799,-2.4904,-1.75125,-2.06859,0.0074178,0.279749,-1.22995,-0.650777,0.074549,0.488885,0.515361,-1.93533,0.99015,-0.374637,0.773348,1.02306,0.119481,0.997953,-0.643441,2.30795,-0.570875,0.984346,0.374327,0.499993,-0.145623,-0.623728,-1.03239,-0.263807,-0.790837,-0.628302,-2.57782,-1.31104,-2.60139,-0.432141,0.684582,-2.47669,-0.623359,-2.32658,0.622885,0.48692,0.362445,0.843453,0.799166,0.541248,0.339744,-0.973064,0.0446568,0.782884,3.68252,1.12655,0.372023,0.0380732,0.477573,-0.787927,0.209816,0.659898,-0.967238,0.717916,0.70099,1.99419,-2.52587,-2.45222,-2.23145,-2.11008,-0.476595,-0.173512,-2.28723,-1.84052,-2.21769,0.623141,0.630539,0.609547,1.05022,1.35958,0.589213,0.67343,0.758992,0.76154,0.873218,1.34027,0.78085,-0.506829,1.86688,-0.742733,1.07109,1.27258,0.772969,0.311498,0.531396,-0.846384,0.0572821,-0.62001,-1.81934,-0.692096,0.730448,-0.388845,0.631659,0.327141,0.368886,0.391099,0.59574,0.520412,-0.114399,-0.263276,-0.361962,-0.285701,-0.0398574,0.699965,-0.183868,0.0359855,0.0425068,1.03638,1.39844,2.03604,-0.242313,1.6681,1.0449,0.887828,-0.165246,1.48669,-0.281409,0.569823,0.693711,0.595797,1 +1.72872,1.02071,0.263742,-1.17728,-0.163793,0.225595,0.268655,-1.65943,0.613035,0.677236,-2.11455,-2.19298,0.0094781,-2.43086,-2.32539,-0.546515,0.54715,-1.50672,-1.82901,-1.98929,-0.716638,0.4178,0.336771,0.682356,1.35731,1.02482,0.536644,-0.460764,0.454372,0.894106,5.67816,1.2329,-1.82417,1.24908,-1.02266,0.221086,-0.575811,1.10323,0.249342,0.517832,0.456497,0.831093,0.559825,-2.47915,-2.36746,-1.45024,-0.156462,0.546745,-1.75487,-0.485012,-1.62627,0.411912,0.780873,-1.35573,1.33181,0.826274,-0.025611,0.972715,0.420316,1.29211,-0.784384,1.60363,-2.65177,0.450486,-1.27991,0.136639,-0.145623,0.943952,-0.119432,0.508053,0.354057,0.674075,-0.965903,-2.41024,-2.0409,-0.348557,0.667002,-2.27736,-1.98608,-2.32658,0.0964167,0.391814,-0.75833,-0.869308,0.870116,0.60759,0.327127,-0.0860832,-0.105744,0.806356,3.68252,2.48319,-1.23274,0.980726,-0.933239,0.289928,-1.2305,0.256724,0.344062,0.0143952,0.394508,0.470948,-2.18067,-2.40566,-2.41757,-1.36197,0.964301,1.03521,-2.27424,-2.28323,-2.34091,-0.197915,0.212081,0.547182,0.774359,1.45201,0.838294,0.343953,0.0827539,0.476237,1.04911,1.53388,1.19656,-0.672685,2.03099,2.47365,1.55678,1.03072,1.45637,-1.20613,0.285194,0.679194,-1.17518,-2.30077,-2.28912,0.460456,0.292932,0.337762,0.862473,0.296548,-0.355223,1.06312,0.196097,0.176839,14.1838,0.427764,-0.218682,0.20509,0.270277,0.363017,-1.26702,-1.18131,-1.21925,0.617106,0.9271,0.678235,-0.321651,1.43363,-0.153844,-0.331902,-1.36778,-1.0098,0.666207,1.63104,0.417892,1.51849,1 +2.558,-0.428668,0.234829,-1.19052,-0.163793,0.301661,0.202965,-1.60665,0.623417,0.60824,-2.148,-2.08448,-0.00561078,-2.39482,-2.27295,-0.483891,0.60764,-1.78196,-1.70651,-1.88812,-0.690944,0.406376,0.379532,0.554528,1.35731,0.980092,0.504163,-0.774016,0.471591,0.911051,-0.363541,-0.939159,-0.0163013,1.31203,-1.32414,5.18693,-0.575811,1.04189,0.388141,0.690953,0.550716,0.637165,0.513137,-2.43415,-2.30458,-1.47272,-0.111768,0.46243,-1.63373,-0.515151,-1.52319,0.422908,0.770253,-1.48856,1.30903,0.842287,-0.0615193,-0.462006,0.480483,1.27032,-0.925326,-0.617682,0.720717,0.510639,-1.30442,6.49533,-0.145623,0.978407,0.762752,0.572375,0.354057,0.551498,-0.928417,-2.38581,-2.06892,-0.0978067,0.702162,-2.31254,-1.85574,-2.3507,0.0735267,0.338977,-0.619807,-0.961613,0.839709,0.550725,0.327127,-0.158786,-0.139166,0.845474,-0.621737,-0.919175,-1.0901,1.07366,-0.565201,3.03997,-1.19986,0.305892,0.313208,0.0818561,0.536803,0.195917,-2.14231,-2.3009,-2.33071,-1.46172,0.784189,0.968799,-2.27424,-2.24298,-2.36829,-0.119184,0.222287,0.547182,0.825445,1.43661,0.813386,0.259231,0.048942,0.603039,1.06865,1.53388,1.22491,0.585053,-0.861415,0.619157,1.55678,1.06297,1.49821,-1.2371,-1.68443,-0.97256,-1.32733,-2.314,-2.31451,0.428441,0.242058,0.259911,0.874013,0.373031,-0.249898,1.15359,0.226839,0.198312,-0.114399,-0.295417,-0.505242,0.219962,0.202856,0.339779,-0.953474,-1.21029,-1.21925,0.519276,-0.537869,0.0841944,-0.210578,1.57878,-0.0388966,0.430429,1.98786,2.37974,-0.828921,-0.11685,0.279983,-1.12042,1 +0.623006,-0.81366,-0.9217,0.23964,11.3673,0.703723,0.625259,-2.38516,0.488452,0.939422,-2.48248,-0.553512,-0.141411,-2.01034,-2.31228,-0.593483,0.832317,-1.2162,-0.800007,-2.50959,0.580932,0.429224,0.636102,1.38115,0.664229,0.398559,0.720704,0.525981,0.282188,0.894106,-0.363541,-0.896569,-0.000302499,1.01526,0.220937,-0.194773,-0.549602,0.453034,-0.555691,0.554929,-0.803682,0.482023,0.6532,-2.36665,-1.72609,-2.06859,0.81192,0.364063,-1.29725,-0.153482,0.100319,0.488885,0.49412,-1.93533,1.04709,-0.486723,0.764371,-0.310983,0.330065,1.42285,-0.432027,-1.00596,0.828349,0.706137,0.104748,0.318316,-0.145623,-0.623728,2.4348,-0.360289,-0.868021,-0.658946,-1.94055,-1.26218,-1.97084,-0.432141,0.667002,-2.45324,-0.623359,-2.42305,0.65722,0.497487,0.362445,0.217833,1.12351,0.560203,-0.190148,-0.943982,0.061368,0.555996,-0.621737,-0.876107,-0.0440274,0.449654,-0.043814,1.48866,0.536697,0.659898,-0.967238,0.708279,-0.897095,1.08448,-2.23181,-2.31254,-2.21904,-2.09761,-0.492969,-0.173512,-2.26126,-1.84052,-2.21769,0.634388,0.640745,0.599153,0.600667,0.373643,0.962835,0.692257,0.767445,0.72984,0.785272,1.32888,0.676922,0.156593,-0.840902,0.271441,1.56956,0.966222,1.24716,0.425062,-0.964757,0.0368454,0.13336,-0.567073,-1.70507,-0.628066,0.760973,0.013384,0.597037,0.250658,0.342555,0.365252,0.585493,0.520412,-0.114399,-0.263276,-0.361962,-0.374936,-0.323023,0.665108,-0.183868,0.137427,-0.152766,-0.654688,-0.295831,-1.1145,-0.242313,-0.788181,0.716474,0.857334,1.3007,1.77084,-0.976328,-0.241699,0.400654,-0.769791,1 +0.401865,-0.836307,-0.993983,0.23964,-0.163793,0.703723,0.653412,-2.74142,0.47807,0.939422,-2.52707,-2.20503,-0.171588,-2.57504,-2.31228,-0.609139,0.78911,-2.91348,-2.28226,-2.48069,-1.12775,0.406376,-0.657438,1.39819,0.664229,0.454475,0.612433,0.494655,0.299406,0.902579,-0.363541,0.104281,-0.0482989,1.00627,0.220937,0.0498496,-0.549602,0.330356,-0.77777,0.406539,-0.921456,0.934522,0.637637,-2.59164,-2.35488,-2.07983,-0.111768,-0.661762,-2.61627,-0.153482,-1.71647,0.378924,0.101162,-1.92325,1.05848,-1.60757,0.73744,-0.361324,0.345107,1.43375,-0.442095,-0.933722,0.828349,0.706137,0.104748,0.136639,-0.145623,-0.916591,-0.0168523,-0.665817,-0.919477,-0.827489,-2.17796,-2.44688,-1.97084,-0.432141,0.728531,-2.69947,-2.17568,-2.39893,-0.521612,0.539757,-1.29983,0.217833,1.14378,0.645499,-0.417245,-0.784035,0.0780792,0.563819,-0.621737,-0.07935,-0.0440274,0.409823,0.201545,0.461176,0.536697,0.679564,-0.967238,0.660092,-0.951823,0.830603,-2.24459,-2.44058,-2.38034,-2.13502,-0.476595,-0.0672505,-2.24827,-2.29665,-2.31353,-0.782777,-0.39009,-0.284356,0.610884,0.358238,0.971137,0.767566,0.775897,0.645306,0.804816,1.34027,0.667474,-0.188939,-0.830645,0.0106531,1.56956,0.966222,1.23322,0.435386,-0.680677,-0.915207,-2.0729,-2.48605,-2.7589,-0.852173,0.6694,-0.492645,-0.430085,-1.70731,-1.36897,0.21017,0.554751,0.520412,-0.114399,-0.279346,-0.290322,-0.627768,-0.565737,0.525681,-0.183868,0.137427,-0.152766,-0.934203,0.570412,-1.06146,-0.258181,-0.866335,0.675421,1.08603,1.25489,1.24313,-0.976328,-0.241699,0.45237,-0.585252,1 +0.45715,0.205437,0.278199,-1.70697,-0.163793,-1.27399,0.484494,-2.29279,0.799909,0.60824,-1.90271,-1.54201,-0.216855,-2.13049,-2.32539,-0.640451,0.17557,-0.375203,-2.20876,-2.19163,0.323988,0.406376,-0.0587749,0.827227,0.418985,0.890625,-0.0263625,0.588631,-1.6635,0.927997,-0.277843,1.50973,-1.71218,1.29405,-0.90961,-0.292622,-0.575811,1.10323,0.735139,0.517832,0.609603,1.01209,0.419762,-2.23165,-2.10337,-1.70882,-0.692797,1.151,-2.50859,-0.741195,-0.543932,0.598845,0.398536,-1.41611,-0.171501,0.105727,0.360403,-0.424251,-1.86603,1.33569,-0.945461,1.28759,-1.25255,0.397852,-1.42695,0.182058,-0.145623,0.978407,0.126759,0.475893,0.521288,0.153124,-1.64066,-1.84843,-2.16701,-0.432141,0.385724,-1.89043,-1.85574,-2.33864,0.81745,0.381246,-0.569435,-1.12571,0.910659,0.683409,0.100031,0.670031,-1.62646,0.227398,-0.330909,1.68644,-1.25652,0.874511,0.262884,-0.858441,-1.27136,0.148556,0.328635,0.303513,0.569641,1.44413,-2.28295,-2.37074,-2.31831,-1.41185,-0.558464,0.92895,-2.27424,-2.20274,-2.31353,0.150752,0.569301,0.339297,0.753925,1.39039,0.655635,0.937011,0.598385,0.190934,0.707098,0.064743,-0.0316786,-1.44668,1.49763,0.445299,1.56956,1.09522,1.41453,-1.21645,0.607151,-0.616974,0.2703,-0.977336,-1.64159,0.396425,0.211533,0.259911,0.158491,-1.21781,-1.0135,1.10189,0.308817,0.187576,-0.114399,-0.279346,-0.147042,0.0861103,0.0814995,0.0144504,-0.896466,-1.23928,-1.23427,0.449397,1.39844,0.837353,-0.321651,1.38897,-0.0799493,0.15599,-0.382846,0.73571,-0.0287116,1.0068,0.728188,0.872606,1 +0.45715,-0.870277,-0.936156,0.226398,-0.163793,0.758056,0.766024,-0.683006,0.654563,0.911823,-1.12226,-0.481183,-0.443188,-0.90496,-1.18469,-0.593483,0.495302,-1.01742,-0.726507,-1.22329,-0.0100403,0.589163,-0.101537,1.41523,0.760194,0.365009,0.493336,-0.476426,0.471591,1.01272,-0.363541,0.00845525,-0.0482989,1.0962,0.271183,0.0743119,-0.540866,0.0359273,-0.77777,0.579661,-0.956788,0.895736,0.544262,-0.836671,-1.08473,-1.83249,-0.26075,0.617007,-0.880006,-0.394595,-0.0285311,0.4449,0.302951,-1.65761,1.05848,0.169776,0.746417,-0.562689,0.420316,1.52091,-0.381691,-0.942752,0.828349,0.721176,0.092494,0.0912201,-0.145623,-0.847682,0.331918,-0.424611,-0.932341,-0.827489,-0.978398,-0.981278,-1.39633,-0.432141,0.675792,-1.01105,-0.469311,-0.843451,0.199421,0.782806,0.249108,0.258858,1.20459,0.673932,-0.72004,-0.827657,0.178346,0.579467,-0.621737,-0.165486,-0.00836596,0.303609,0.109535,0.521617,0.628633,0.296058,-0.951811,0.795014,-1.0175,0.767134,-1.23456,-1.00889,-0.928615,-1.0752,0.800563,1.04849,-1.3523,-1.08925,-1.10867,0.0270314,-0.0124577,0.0170762,0.621101,0.188779,1.04586,0.46633,0.682915,0.317736,0.922077,1.36305,0.667474,-0.133654,-0.830645,0.126559,1.63346,1.07103,1.26111,0.44571,-0.718555,-0.903736,-0.505694,-0.924399,-1.13372,-1.46046,-0.144585,-1.2452,-0.0377012,-0.223536,0.197733,0.494487,0.800685,0.552622,-0.114399,-0.279346,-0.218682,-0.598023,-0.687094,0.560538,-0.169616,0.108444,-0.137745,-0.962155,0.506718,-1.09328,-0.289916,-0.955654,0.675421,1.08603,1.26634,1.20253,-0.976328,-0.304124,0.400654,-0.62216,1 +0.512436,0.228084,0.307112,-1.24349,-0.163793,-0.600263,0.559569,-1.23719,0.903729,0.41505,-1.06651,-1.40941,-1.16745,-1.04914,-1.10602,-0.656107,0.184211,-0.543402,-1.32676,0.120814,0.272599,0.520618,-0.0801557,0.88688,1.20803,0.890625,0.0602539,0.46333,-1.69794,1.08898,-0.256419,1.52038,-1.76017,1.47391,-0.90961,-0.26816,-0.53213,1.12777,0.749019,0.530198,0.633158,0.94745,-0.2183,-0.847921,-1.3614,-1.82125,-0.692797,1.1791,-1.0819,0.82604,-0.698552,0.730797,0.441018,-1.62138,0.887651,-0.0543942,0.45915,-0.436836,-1.55015,1.08511,-0.935393,1.29662,-1.3243,0.909154,-1.37794,0.182058,-0.145623,1.15068,0.178049,0.556295,0.521288,0.168446,-1.10335,-1.37211,-0.527556,-0.515724,0.508783,-1.14002,-1.3936,-1.13284,0.851785,0.476353,-0.707958,0.269114,0.596452,0.730796,0.100031,0.42284,-1.30895,0.704647,-0.296009,1.7295,-1.2684,0.210672,0.201545,-0.868515,-0.924053,0.21739,0.344062,0.361337,0.591532,1.42298,-1.01721,-0.904133,-0.953431,-1.44925,-0.607586,0.968799,-1.02767,-1.20999,-1.04021,0.11701,0.620332,0.391269,0.396323,0.204185,1.27003,0.937011,0.666009,0.243768,0.922077,0.474734,0.280106,-1.40521,1.55918,0.619157,1.18612,1.25646,0.898491,-1.21645,0.607151,-0.479328,0.179007,-1.08321,-1.05754,0.524487,0.201359,0.311812,0.14695,-1.21781,-1.0925,1.11481,0.339559,0.219785,-0.114399,-0.295417,-0.147042,0.0861103,0.0814995,0.0957826,-0.92497,-1.22478,-1.23427,0.435421,1.3857,0.80553,-0.321651,1.62344,0.905316,0.125496,-0.48592,0.674821,0.0344628,1.06922,0.728188,0.909514,1 +0.236008,-0.81366,-1.03735,-1.26997,-0.163793,-0.665462,0.5408,-0.0232575,0.47807,0.373652,-0.82123,-0.348579,-1.09201,-1.07317,-1.02735,-0.468235,0.702696,-0.31404,0.412742,0.221984,0.105585,0.463497,0.796459,1.02323,1.13339,0.566309,0.51499,1.05851,-1.83568,1.12287,-0.363541,0.732475,-0.176289,1.47391,-1.08547,-0.366009,-0.549602,0.661588,-0.861049,0.146857,-0.897901,1.20602,-0.187175,-0.836671,-0.21701,-1.00053,-0.394833,0.350011,0.183285,0.750692,-0.350657,0.554861,0.515361,-0.860665,0.705432,-0.278564,0.629715,-0.273227,-1.59528,1.17227,-0.935393,-0.644771,0.577207,0.894116,-1.43921,0.0912201,-0.145623,-0.744319,-0.92981,-0.858782,-0.932341,-0.68959,-0.990894,-0.785864,-0.359407,-0.0142232,0.702162,-0.975872,0.0994785,-0.879625,0.142197,0.423516,0.0350275,0.156297,0.677538,0.598112,-0.404628,0.277433,-1.40922,0.704647,-0.621737,0.566669,-1.14953,0.223948,0.538913,-0.767781,-0.975129,0.846734,-0.936384,0.496259,-0.765745,1.21141,-1.00442,-0.939053,-0.928615,-1.57394,-0.689455,-0.000837144,-0.573198,0.386457,0.0414198,0.544409,0.416207,0.515999,0.355455,-0.0114892,1.24513,0.889943,0.750539,0.677006,0.94162,0.235573,0.223418,-1.34993,-0.543456,-0.771709,1.26281,1.27258,0.968226,-1.22678,-0.0557019,-1.01844,0.194222,-0.553839,-0.93057,-0.548027,0.842371,-0.492645,0.770147,0.0670993,0.250396,0.223093,0.452278,0.681461,-0.154676,-0.311488,-0.648521,-0.82111,-0.646642,0.339779,-0.582923,-1.25377,-1.21925,-0.570834,1.02901,-0.265865,-0.147108,1.54528,0.839632,1.13177,1.01438,1.28372,-0.976328,0.257699,0.693711,-0.271536,1 +0.0701521,-0.8816,-1.16746,-1.12431,-0.163793,0.39946,0.484494,-0.90732,0.623417,1.3396,-0.107675,-0.300359,-0.307388,-0.8569,0.716479,-0.718732,0.624923,-0.0999685,-0.665257,-0.153789,-0.0614292,0.543466,-0.101537,0.997664,1.16538,0.991275,-0.340347,0.118753,-1.40522,1.14829,-0.363541,0.71118,-0.464268,1.41096,-0.997541,-0.26816,-0.418561,0.354891,-0.847169,-0.607458,-1.07456,1.20602,0.264137,-0.847921,-0.493676,-0.123599,-0.409732,-0.127771,-1.06844,0.82604,0.074549,0.609841,0.504741,-1.52478,1.01293,0.377934,0.261655,-0.587859,-0.722857,1.08511,-0.935393,-0.644771,0.326064,1.25504,-1.19413,0.182058,-0.145623,-1.19223,-0.919552,-1.55024,-1.08671,-0.68959,-0.141204,-0.798077,0.397264,-0.515724,0.737321,-0.729644,-0.350814,-1.08461,-0.0638129,0.476353,0.198736,0.525515,1.03229,0.721319,-1.18685,0.626409,-1.19197,1.08019,-0.621737,0.502067,-1.20897,0.0646268,0.600252,-0.556239,-0.157925,0.768066,-0.936384,0.0914933,-1.09412,1.1691,0.31246,-0.15919,-0.23377,-0.414367,-0.689455,0.198403,0.660383,-0.378227,-0.834839,-0.0966894,-0.0736954,0.121019,0.866314,0.712559,1.29494,0.871116,0.522308,-0.115502,0.980707,0.600009,0.752506,-1.51578,-0.615254,-1.26431,0.828251,1.27258,0.0895708,-1.21645,0.209439,-0.995501,-0.399185,-0.553839,-0.714725,-0.916204,0.618526,-0.804048,0.354682,-0.330612,0.066077,-0.268,0.226839,0.574095,-0.154676,-0.295417,0.0678772,-1.52012,-1.34781,-0.578113,-0.611427,-1.22478,-1.21925,-0.584809,1.01627,-0.318905,-0.385121,0.987038,1.39795,1.17751,1.02583,1.26342,-0.807863,0.320124,0.710949,-0.0131814,1 +0.567721,-0.870277,-0.950613,0.160187,-0.163793,-0.839327,0.747255,-0.273962,0.664944,-1.33745,0.460939,1.17034,-0.352655,0.296538,0.00845638,0.0171033,0.66813,0.144684,0.694492,0.207531,1.8785,0.543466,1.20269,-0.834531,-0.807236,0.476842,0.493336,-0.351125,0.127221,-0.88517,-0.363541,-0.53456,0.0156963,-0.972222,0.183252,0.27001,-0.514658,-0.000876275,-0.73613,0.505466,-0.94501,0.650094,-0.949738,0.479559,0.13511,0.517235,-0.141564,1.03858,0.0621507,-0.771334,1.77537,0.455896,0.568463,0.0691008,-0.980101,0.0897152,0.73744,-0.524933,-0.391939,-1.12654,-0.0897387,-0.9879,0.792472,-0.92552,0.300805,0.0458009,-0.18708,-1.00273,0.957653,-0.569335,-0.919477,-0.873455,0.158687,0.49654,-0.415457,-0.264974,0.737321,0.583572,1.01191,0.555276,1.18369,0.740536,1.82323,-0.828284,-1.0354,0.692887,-0.682191,-0.711332,0.378881,-0.946164,-0.621737,-0.316224,0.21749,-0.333677,-0.381182,0.833893,-0.352011,0.404227,-0.936384,0.746828,-0.995607,0.470948,-0.00717157,0.329678,0.225324,0.545706,0.620451,0.796124,-0.0797654,0.0644847,0.328942,1.57917,0.773427,0.557576,-0.870607,-0.350405,-0.847155,0.56988,0.708274,0.381136,-0.807525,-0.948846,-0.967031,0.101308,-0.789618,0.561204,-1.2423,-0.968695,-0.984341,0.218582,-1.24884,-0.616974,1.74621,1.24603,0.402588,-1.34841,0.181009,-1.01165,0.666281,1.13786,1.69861,0.365252,0.728954,0.498938,-0.154676,-0.311488,-0.361962,-0.657513,-0.700578,0.514062,0.00140723,0.572175,0.56824,-1.04601,0.162768,-1.16753,-0.226446,-0.509058,-0.810688,0.903074,1.31215,1.06046,-0.828921,-0.553823,0.176551,-0.788245,1 +-0.0404188,-0.541901,-1.12409,0.199913,-0.163793,-0.915393,0.550185,0.425371,0.613035,-0.412905,0.427491,0.157727,0.326345,0.248478,0.375579,-0.499547,0.659489,2.04074,-0.493757,-0.500655,1.1976,0.49777,-0.0908461,-0.808966,-0.807236,0.801158,0.125216,0.604294,0.110003,-0.868225,-0.363541,1.30743,-0.512264,-0.918263,0.158129,-0.170311,-0.540866,0.47757,-0.930449,-0.236483,-0.980343,1.25774,0.0462625,0.355811,-0.166707,0.179954,-0.365037,1.88172,-0.153199,-0.439803,0.87342,0.543865,0.324192,0.467572,-0.957323,-0.0543942,0.477105,-0.449421,-0.437064,-0.843274,-0.00920017,1.24244,-0.786141,-0.933039,0.264044,0.272897,-0.145623,-1.03718,-1.03239,-1.26079,-1.03525,-0.582336,0.458577,0.240059,0.313189,-0.264974,0.710952,0.302169,-0.374513,0.362348,0.897565,0.476353,0.274294,-0.694955,-0.852954,0.692887,-0.707424,0.611869,0.395592,-0.969635,-0.41234,1.10502,0.241264,-0.081418,0.262884,-0.808074,-0.454162,0.777899,-0.936384,0.322788,-0.667233,1.21141,0.504239,0.515914,0.287364,0.34621,-0.640333,1.53995,0.0630703,-0.270903,0.0688029,0.308215,0.13043,0.0690474,-1.09538,-1.13607,-0.838852,0.899357,0.657556,0.307169,-0.817297,-0.948846,-0.985927,-0.866183,1.06685,-0.945568,-0.718269,-0.920322,-0.342783,0.177286,0.417764,-0.720208,2.02009,1.12692,0.910458,-0.772135,0.699924,-0.687272,0.14695,0.220065,0.131905,-0.0483002,0.339559,0.595568,-0.154676,-0.311488,-0.361962,-1.20779,-1.03768,-0.0668818,0.00140723,0.557684,0.56824,0.533252,1.37296,1.12377,-0.226446,-0.698862,-0.818898,0.704868,0.178334,0.776304,-0.15506,0.382549,0.504085,0.706521,1 +0.733577,-0.021029,0.813093,-1.20376,-0.163793,-0.122135,-1.33606,0.662881,-1.50488,0.580641,0.171057,-0.662006,-0.216855,0.380642,-0.109547,-0.202082,-1.52679,-0.0999685,0.00849264,1.23368,-1.92428,-1.33011,-1.55543,1.06584,1.11207,-1.43551,-1.6829,-0.867991,-1.64628,1.16523,0.086373,1.58426,-1.79217,1.45592,-0.934733,-0.0969241,-0.497186,-1.46075,0.776778,-1.53489,0.421165,0.611308,0.450887,0.389561,-0.0409503,0.168711,-0.901372,-1.91243,0.587066,0.750692,-1.23972,-1.36945,-1.41757,0.419272,0.842096,-0.550771,-1.4799,-0.789224,-1.21923,0.954374,-0.935393,1.33274,-1.61132,1.0821,-1.31667,0.136639,-0.145623,-0.00354679,0.0549533,-0.215565,0.598472,0.704719,-0.228672,-0.0652748,-0.065146,-0.515724,-1.46896,0.595297,-0.481161,0.519102,-1.74622,-1.3201,-1.3502,0.371674,0.616724,-1.38267,-0.593875,-0.88582,-1.30895,0.915888,1.82122,1.88024,-1.24463,0.0646268,-0.166493,-0.868515,-0.689107,-1.38547,1.05371,-1.45047,0.252213,1.27488,-0.17338,0.120163,0.237732,0.632985,-0.673081,-1.794,-0.313496,-0.00259291,0.137261,-1.79504,-1.56381,-1.43812,0.702839,2.43795,1.25343,-1.4917,-1.44723,-1.58428,1.00025,0.383625,0.516306,-1.08732,1.78482,1.28561,0.892157,1.28871,0.382456,-1.1958,0.531396,0.553018,-1.40341,-0.421496,0.427981,0.348402,-1.54871,0.0912347,-1.46875,-0.407095,-0.855516,-1.46989,-1.39223,-1.37997,-0.154676,-0.311488,-0.0754024,-0.151849,-0.296055,-1.61219,-1.06749,-1.21029,-1.21925,0.463373,1.27105,0.625196,-0.337518,1.31082,1.127,0.0797565,-0.95548,0.289184,0.28716,1.31892,0.641995,1.16787,1 +-0.0404188,-0.587194,-1.13855,0.199913,-0.163793,-0.915393,0.550185,0.451761,0.613035,-0.468102,0.438641,1.01362,0.311256,0.0922831,0.401802,-0.499547,0.66813,-0.0846777,0.963992,-0.515108,1.54447,0.509194,1.35236,-0.817488,-0.807236,0.845892,0.081908,0.541643,0.110003,-0.868225,-0.363541,1.29678,-0.512264,-0.927256,0.158129,-0.170311,-0.540866,0.428498,-0.930449,-0.273581,-0.99212,1.27066,-0.000425026,0.389561,0.160261,0.20244,-0.379935,0.293801,0.587066,-0.485012,1.53056,0.609841,0.589704,0.431347,-0.957323,0.441983,0.45915,-0.474592,-0.437064,-0.865064,-0.00920017,1.24244,-0.786141,-0.92552,0.264044,0.272897,-0.18708,-1.10609,-1.03239,-1.30903,-1.03525,-0.582336,0.458577,0.215633,0.299177,-0.264974,0.728531,0.0442156,1.04746,0.362348,0.77167,0.48692,1.83582,-0.705211,-0.86309,0.702364,-0.745273,0.611869,0.395592,-0.961812,-0.41234,1.08348,0.253152,-0.107972,0.232214,-0.798001,-0.454162,0.787733,-0.936384,0.303513,-0.70007,1.21141,0.504239,0.539194,0.324588,-0.47671,-0.656707,0.198403,0.0630703,0.0913157,0.096186,1.51168,0.68157,0.526393,-1.1056,-1.1977,-0.838852,0.899357,0.649103,0.275469,-0.807525,-0.948846,-0.985927,-0.866183,1.06685,-0.945568,-0.756612,-0.928384,-0.384624,0.177286,0.417764,-0.720208,0.909354,0.690185,-0.194159,-0.820158,0.679574,-0.726198,1.03558,1.8721,1.93559,-0.0999942,0.329311,0.595568,-0.154676,-0.311488,-0.361962,-1.23754,-1.07813,-0.113357,0.00140723,0.557684,0.56824,0.547227,1.37296,1.12377,-0.242313,-0.710027,-0.818898,0.704868,0.189787,0.776304,-0.15506,0.382549,0.504085,0.706521,1 +0.236008,0.18279,0.856463,-1.26997,-0.163793,0.127796,-1.3736,0.491346,-1.45297,2.40214,0.2937,-0.637897,2.1521,0.308553,0.074014,0.345881,-1.48358,0.129394,0.0819926,1.23368,-1.88574,-1.33011,-1.57681,1.07436,1.09074,-1.55852,-1.61794,-0.961967,-1.62906,1.17371,-0.363541,-0.992395,-0.144292,1.46492,-1.34927,1.6399,-0.462241,-1.46075,0.693499,-1.48543,0.550716,-0.474689,2.66076,0.378311,-0.103829,0.337352,-0.901372,-1.7719,0.560148,2.55904,-1.21395,-1.34745,-1.44943,-0.908964,0.648488,-1.06316,-1.50683,-0.625615,-1.02369,1.30301,-0.905191,-0.428058,0.577207,1.17984,-1.31667,0.908766,-0.145623,0.0136805,0.639656,-0.119083,0.701384,0.766008,1.02087,-0.187409,2.12079,-0.0142232,-1.40743,0.700824,-0.362663,-0.119972,-1.71189,-1.33067,-1.32501,0.135785,1.01202,-1.43005,-0.303697,-1.16209,-1.44264,1.00195,-0.540305,-0.639233,-1.07821,0.237225,-1.11726,1.64984,-0.484807,-1.35597,1.03828,-1.46011,0.4164,-0.142582,1.47592,0.411156,0.0764288,0.944697,-0.443848,-1.52835,0.933069,0.0913157,0.342634,-1.78379,-1.5434,-1.44851,0.978703,0.327427,1.23682,-1.56701,-1.5064,-1.57372,1.00025,0.281127,0.629682,0.681802,-0.902442,0.821992,1.6079,1.30483,1.34479,-1.22678,-1.83593,-0.594033,-1.26647,-0.461199,0.466072,0.284372,-1.54871,-0.129342,-1.54953,-0.605951,-0.895013,-1.45696,-1.40247,-1.36924,-0.154676,-0.311488,-0.576881,-0.00312447,-0.0803097,-1.54248,-1.06749,-1.25377,-1.20423,0.379518,-1.11112,-0.0643158,-0.178843,1.255,1.27479,0.140743,1.18617,0.756007,-0.639398,-0.179275,0.124835,-1.26805,1 +-0.206275,0.0808807,0.842006,-1.24349,-0.163793,-0.1982,-1.34545,0.636491,-1.44259,0.60824,0.851165,-0.131591,0.0396559,2.21893,1.73918,-0.24905,-1.50086,0.0376488,0.0207426,-0.399486,-1.8215,-1.31868,-1.56612,1.07436,1.12273,-1.48024,-1.66125,-0.914979,-1.71515,1.18218,-0.363541,-0.992395,-0.352276,1.4829,-1.04779,-1.36896,-0.505922,-1.47302,0.749019,-1.52253,0.503606,-0.64276,0.310825,1.93079,1.75738,0.461022,-0.91627,-1.54706,0.573607,0.750692,-1.29126,-1.35845,-1.42819,-0.715766,0.750986,-0.678868,-1.49785,-0.726297,-1.2794,1.00885,-0.935393,-0.473206,0.577207,1.07458,-1.35343,-0.635487,-0.145623,-0.020774,-0.0065944,-0.199485,0.662792,0.766008,0.371109,1.59574,0.537388,-0.264974,-1.42501,1.77954,-0.184916,-0.180262,-1.66611,-1.3201,-1.3502,0.248602,0.535638,-1.40162,-0.455094,-0.958523,-1.37579,0.900241,-0.586837,-1.28525,-1.18519,0.210672,0.661592,-0.878588,-0.750398,-1.3658,1.05371,-1.45047,0.350725,-1.00999,0.99008,1.63333,2.17337,0.0344979,-0.75495,-1.38224,0.322771,1.2853,0.383708,-1.77254,-1.5434,-1.43812,0.324803,0.435264,1.26173,-1.51994,-1.47259,-1.58428,1.01002,0.303905,0.478514,-1.43286,-0.902442,-1.29328,0.968844,1.31289,0.563766,-1.22678,0.133685,-0.995501,-1.14475,0.544608,2.00238,0.300379,-1.55888,-0.0385165,-1.49183,-0.483578,-0.895013,-1.48281,-1.39223,-1.3585,-0.154676,-0.311488,-0.290322,-0.0923592,-0.201667,-1.60057,-0.625679,-1.22478,-1.20423,0.365543,-0.920035,-0.0961394,-0.258181,1.37781,1.10237,-0.0727097,-0.795142,-0.969207,-0.828921,0.00799982,0.676472,-0.105451,1 +-0.206275,0.092204,0.842006,-1.4024,-0.163793,0.377727,-1.34545,0.689271,-1.40106,0.139065,0.193356,-0.577622,0.235811,0.729077,0.12646,2.78823,-1.44902,0.450501,-0.604007,0.236437,-0.472541,-1.31868,-1.5875,1.38115,0.994775,-1.61444,-1.65042,-0.914979,-1.31913,1.27538,-0.363541,-0.971101,-0.336278,1.17714,-1.06035,-1.39342,-0.53213,-1.47302,0.749019,-1.52253,0.503606,-0.64276,0.357512,0.322062,0.399199,0.921973,-0.677899,-1.32222,0.169826,0.404092,-0.350657,-1.35845,-1.47067,0.177775,0.0904399,-1.73567,-1.48887,-0.713712,-0.557398,0.769162,-0.935393,-0.464177,0.577207,1.18736,-1.26765,-0.635487,0.0616633,-0.020774,-0.0168523,-0.183405,0.662792,0.766008,-0.0787265,0.154566,-0.471506,2.57686,-1.39864,0.888426,-0.741857,0.157362,-1.2312,-1.3201,-0.833888,-0.161641,0.495095,-1.40162,-0.442478,-0.929442,-1.64317,1.1506,-0.586837,-1.28525,-1.17331,0.0380732,0.661592,-0.908808,-0.525667,-1.37564,1.05371,-1.45047,0.350725,-1.00999,-0.326803,-0.0660726,0.696826,2.02945,1.76662,-0.771233,-0.456332,0.144978,0.0824944,-1.16519,-1.31886,-1.40693,0.365672,0.358238,1.08738,-1.54818,-1.46414,-1.58428,1.26409,0.440568,0.960362,-1.41903,-0.881929,-1.26431,0.636534,1.26452,0.396403,-1.22678,0.114746,-0.995501,-0.216598,-0.222981,0.377195,0.300379,-1.56906,-0.0514916,-1.73418,-1.79908,-1.30315,-1.48281,-1.39223,-1.36924,-0.154676,-0.311488,-0.361962,-0.0923592,-0.188182,-1.58896,-0.625679,-1.23928,-1.20423,0.365543,-0.894557,-0.0961394,0.281315,0.908884,1.10237,-0.0727097,-0.818048,-0.969207,-0.828921,0.00799982,0.676472,-0.123905,1 +0.788863,-0.870277,-0.979526,0.186671,-0.163793,-0.882793,0.747255,0.398981,0.644181,-1.18566,0.460939,-0.432963,-0.307388,0.260493,0.0346794,-0.045521,0.676771,-0.451657,-0.677507,-0.11043,0.246904,0.543466,-0.304655,-0.357308,-0.807236,0.521575,0.450027,-0.225825,0.110003,-0.88517,-0.363541,-0.939159,-0.208287,-0.972222,0.183252,-1.07542,-0.53213,-0.0376798,-0.916569,0.418905,-0.956788,-0.953045,-0.887488,0.479559,-0.292464,0.49475,-0.141564,0.364063,-0.287793,-0.575429,0.126089,0.4449,0.334813,1.94071,-0.980101,0.169776,0.719485,-0.524933,-0.422022,-1.11564,-0.0494694,-1.00596,0.505451,-0.92552,0.288552,0.318316,-0.145623,-1.14055,-1.02213,-0.697978,-0.945205,-0.996032,0.171182,-0.309542,-0.429469,-0.348557,0.746111,0.560122,-0.587809,0.434696,0.130752,0.729969,-0.00275141,-0.78726,-0.974582,0.711841,-0.72004,0.815438,0.378881,-0.953988,-0.621737,-1.24218,0.241264,-0.333677,0.354894,-0.798001,-0.403086,0.433727,-0.936384,0.708279,-1.00655,-1.20039,0.018399,0.341318,0.237732,0.470895,0.522208,0.756276,-0.339467,-0.136748,0.75338,-0.0741947,-0.104314,-0.0141065,-0.666263,-0.30419,-0.847155,0.635775,0.716727,0.381136,-0.807525,-0.948846,-0.976479,-1.01822,-0.820388,-0.829662,-1.22951,-0.968695,-0.9425,0.208258,-0.169334,-0.777561,0.0724977,-0.196513,0.12326,-1.34841,0.221708,-1.01165,-0.0954047,0.0518027,-0.289395,0.24894,0.687965,0.466728,-0.114399,-0.182922,2.79019,-0.746747,-0.754514,0.455968,0.0441631,0.572175,0.56824,-1.19974,-0.792646,-1.23118,-0.242313,-0.520223,-0.818898,-1.38392,-0.737879,-1.07069,-0.61834,-0.616248,0.331699,0.00527254,1 +0.788863,-0.8816,-1.13855,0.186671,-0.163793,-0.915393,0.559569,0.464956,0.602653,-0.0955221,0.76197,-0.0713164,0.205634,2.05072,2.30297,-0.358642,0.66813,0.0682304,-0.346757,-0.500655,-0.279832,0.532042,-0.0908461,-0.817488,-0.796573,0.857075,0.0602539,0.432005,0.110003,-0.868225,-0.363541,-0.907217,-0.192288,-1.07115,0.17069,-1.12434,-0.53213,0.403963,-0.930449,-0.310678,-1.01567,-0.927188,0.061825,1.85204,1.83283,0.37108,-0.379935,0.139225,-0.126281,-0.424734,-0.324886,0.576853,0.387915,0.431347,-0.968712,-0.00635777,0.45915,-0.487177,-0.437064,-0.658062,-0.0293348,-1.00596,0.541329,-0.92552,0.288552,0.318316,-0.145623,-1.14055,-1.03239,-1.34119,-1.03525,-0.996032,0.646009,1.24156,1.1119,-0.18139,0.746111,1.05258,-0.137517,0.338232,-0.178263,0.508055,0.0979924,-0.766748,-0.700918,0.721319,-0.93452,0.626409,0.395592,-0.961812,-0.621737,-1.22065,0.241264,-0.718704,0.324224,-0.848368,-0.423516,0.777899,-0.936384,0.303513,-1.02844,-1.17924,1.6677,1.90104,2.35949,-0.252277,-0.574838,0.211686,1.34859,1.68776,0.684922,-0.152926,-0.094108,0.006682,-1.02386,-1.24391,-0.838852,0.90877,0.649103,0.233202,-0.807525,-0.960235,-0.985927,-0.990574,-0.789618,-0.713757,-0.500989,-1.01707,-0.733297,0.197934,-0.207211,-0.800502,-0.0492268,-0.15681,1.17709,-0.852173,0.6694,-0.752148,0.204653,0.0365061,0.23723,-0.125841,0.329311,0.584831,-0.154676,-0.327558,-0.433602,-1.26728,-1.1051,-0.148214,0.0441631,0.557684,0.583261,-1.18577,-0.767168,-1.22057,-0.226446,-0.654202,-0.810688,-1.38392,-0.760784,-1.07069,-0.639398,-0.616248,0.331699,-0.0131814,1 +0.788863,-0.858953,-0.96507,0.186671,-0.163793,-0.89366,0.728486,-0.260767,0.69609,0.0148719,1.23024,-0.324469,1.30712,0.753107,0.139572,-0.0768331,0.650847,-0.528111,-0.677507,0.207531,0.22121,0.532042,-0.208441,-0.843053,-0.807236,0.476842,0.493336,-0.225825,0.110003,-0.597097,-0.363541,-0.896569,-0.192288,0.340775,0.17069,-1.12434,-0.540866,-0.0376798,-0.930449,0.456003,-0.933233,-0.927188,0.871075,0.547058,0.0848068,1.64151,-0.216055,0.364063,-0.503143,-0.289108,0.126089,0.488885,0.28171,0.0208013,-0.968712,0.185788,0.728462,-0.499762,-0.437064,-0.244058,-0.0293348,-1.00596,0.541329,-0.579638,0.276298,0.318316,-0.145623,-1.08886,-1.03239,-0.633656,-0.932341,-0.996032,1.35825,0.0202188,0.0609658,-0.18139,0.763691,0.208368,-0.55226,0.555276,0.165086,0.698267,0.148364,-0.756492,-0.711054,0.692887,-0.644341,-0.595006,0.395592,-0.789689,-0.621737,-1.22065,0.241264,1.83044,0.324224,-0.848368,-0.433731,0.463228,-0.936384,0.717916,-0.984661,-1.17924,0.376387,0.515914,0.67201,0.707796,0.325722,0.769558,-0.0667803,-0.056255,0.342634,0.0495261,-0.0328703,-0.0141065,-0.860389,-0.396621,-0.847155,0.626362,0.72518,0.43397,-0.77821,-0.960235,-0.976479,-0.990574,-0.789618,-0.713757,0.674877,-0.299536,1.44242,0.197934,-0.207211,-0.800502,-0.201383,-0.196513,0.16135,-1.36442,0.211533,-1.05058,-0.118486,-0.192943,-0.157738,0.274787,0.677718,0.477465,-0.154676,-0.311488,-0.505242,-0.687258,-0.687094,0.490825,0.0441631,0.557684,0.583261,-1.18577,-0.754429,-1.22057,-0.194711,1.51179,-0.69574,-1.38392,-0.772237,-1.07069,-0.639398,-0.616248,0.331699,-0.0131814,1 +-0.206275,0.0695574,0.82755,-1.42888,-0.163793,0.442926,-1.32668,1.33582,-1.4322,0.111467,-0.286064,-0.143646,0.100011,0.500792,-0.13577,-0.530859,-1.50951,0.343465,-0.297757,0.221984,-0.999277,-1.31868,-1.34163,1.33854,1.00544,-0.339541,-1.48801,-0.852329,-1.28469,1.25843,-0.363541,-0.992395,-0.368275,1.16814,-1.04779,-1.36896,-0.523394,-1.47302,0.749019,-1.52253,0.491829,-0.655689,0.108512,0.187064,0.311169,-0.652006,-0.91627,-1.43464,0.533229,0.645205,-0.402197,-1.35845,-1.24764,0.672845,0.0790512,1.67492,-1.4799,-0.726297,-0.467147,0.703793,-0.935393,-0.482236,0.541329,1.20992,-1.24315,-0.635487,-0.145623,-0.0380013,0.00366355,-0.199485,0.649928,0.766008,-0.166195,0.362193,-0.499531,-0.432141,-1.4338,0.39597,-0.362663,0.458812,-1.4601,-1.3201,-0.821295,-0.264201,0.495095,-1.18364,-0.467711,1.84783,-1.64317,1.15842,-0.586837,-1.28525,-1.18519,0.0911804,0.661592,-0.868515,-0.443946,-1.37564,1.05371,-1.45047,0.339779,-1.00999,-0.518582,-0.19411,0.287364,0.283867,-0.738576,-1.59476,-0.495287,0.185224,0.561698,-1.41263,-1.43113,-1.36536,0.447409,0.265806,1.09568,-0.738613,-1.33735,-1.27785,1.24454,0.474734,0.979258,-1.44668,-0.902442,-1.32226,0.534285,1.2484,0.41035,-1.22678,0.133685,-0.995501,-0.27746,0.240219,0.643826,0.300379,-1.55888,-0.0255413,-0.903253,0.617777,-0.618535,-1.48281,-1.39223,-1.36924,-0.154676,-0.311488,-0.147042,-0.107232,-0.201667,-1.60057,-0.625679,-1.22478,-1.20423,0.351567,-0.920035,-0.106747,-0.274048,-0.955654,1.14342,-0.0727097,-0.795142,-0.969207,-0.807863,0.00799982,0.693711,-0.086997,1 +-0.206275,0.092204,0.842006,-1.41564,-0.163793,0.453793,-1.34545,0.689271,-1.4322,1.94677,-0.297213,-0.155701,0.311256,0.500792,0.205129,-0.468235,-1.50951,0.389337,-0.518257,2.25983,-0.973583,-1.31868,-1.7051,1.38115,1.00544,-1.62562,-1.65042,-0.899317,-1.23304,1.26691,-0.363541,-0.981748,-0.336278,1.0962,-1.06035,-1.39342,-0.540866,-1.47302,0.749019,-1.52253,0.503606,-0.64276,1.5247,0.187064,0.286018,-0.550822,-0.91627,-1.37843,0.142907,2.69467,-0.402197,-1.35845,-1.48129,0.226074,0.0790512,-1.78371,-1.48887,-0.713712,-0.40698,1.06332,-0.935393,-0.464177,0.577207,1.19488,-1.2554,-0.635487,-0.145623,-0.020774,-0.0168523,-0.183405,0.662792,0.766008,-0.266158,0.362193,1.67239,-0.264974,-1.4338,0.41942,-0.445612,0.314116,-1.43721,-1.3201,-1.14871,-0.202665,1.06269,-1.40162,-0.442478,-0.914901,-1.62646,1.17407,-0.586837,-1.28525,-1.17331,0.170841,0.661592,-0.898735,-0.484807,-1.37564,1.05371,-1.45047,0.350725,-1.00999,0.376387,-0.0893521,0.262548,0.333741,-0.722202,-1.54163,1.15382,0.0779002,0.0688029,-1.5476,-1.43113,-1.44851,1.32609,1.29796,1.06247,-1.54818,-1.46414,-1.58428,1.28363,0.554455,1.01705,-1.43286,-0.892185,-1.26431,0.777126,1.23227,0.326668,-1.22678,0.114746,-0.995501,-0.231814,0.253453,0.656523,0.284372,-1.56906,-0.0385165,-1.75726,-1.92146,-1.61912,-1.48281,-1.39223,-1.36924,-0.154676,-0.311488,-0.290322,-0.0923592,-0.188182,-1.58896,-0.625679,-1.23928,-1.20423,0.365543,-0.894557,-0.0961394,-0.242313,-0.989149,1.08595,-0.0727097,-0.818048,-0.969207,-0.828921,0.00799982,0.676472,-0.123905,1 +-0.206275,0.0808807,0.82755,-1.21701,-0.163793,-0.0352022,-1.35483,0.623296,-1.47373,0.566842,0.171057,-0.649952,-0.0508774,0.380642,-0.161993,-0.0768331,-1.50951,0.00706718,0.0207426,1.52273,-1.88574,-1.31868,-1.54474,1.0914,1.09074,-1.46906,-1.67207,-0.914979,-1.64628,1.17371,-0.363541,-0.992395,-0.368275,1.45592,-1.04779,-1.36896,-0.48845,-1.47302,0.749019,-1.53489,0.491829,-0.655689,0.544262,0.389561,-0.0661017,0.20244,-0.91627,-1.84216,0.560148,0.901388,-1.20107,-1.35845,-1.42819,-0.268996,0.773764,-0.646844,-1.49785,-0.726297,-1.14403,0.8999,-0.935393,-0.482236,0.541329,1.11969,-1.31667,-0.635487,-0.145623,-0.020774,-0.0065944,-0.199485,0.649928,0.766008,-0.203681,-0.0774882,-0.107183,-0.348557,-1.4338,0.630473,-0.457462,0.579392,-1.72333,-1.3201,-1.32501,0.320394,0.636995,-1.40162,-0.467711,-0.958523,-1.35908,0.947183,-0.586837,-1.28525,-1.18519,0.0380732,0.661592,-0.868515,-0.627817,-1.37564,1.05371,-1.46011,0.339779,-1.00999,-0.198951,0.0852439,0.200508,0.732733,-0.607586,-1.70102,-0.209616,-0.00259291,0.164644,-1.78379,-1.55361,-1.43812,0.815228,2.42255,1.24513,-1.51994,-1.47259,-1.58428,1.01002,0.33807,0.563546,-1.44668,-0.902442,-1.32226,0.853813,1.29677,0.368509,-1.22678,0.133685,-0.995501,-1.28169,-0.395027,0.466072,0.300379,-1.55888,-0.0255413,-1.48029,-0.452985,-0.855516,-1.48281,-1.40247,-1.36924,-0.154676,-0.311488,-0.290322,-0.0923592,-0.201667,-1.60057,-0.625679,-1.22478,-1.20423,0.351567,-0.920035,-0.106747,-0.274048,1.27733,1.17626,-0.0727097,-0.795142,-0.969207,-0.807863,0.00799982,0.676472,-0.086997,1 +0.788863,-0.870277,-1.12409,0.186671,-0.163793,-0.904526,0.559569,0.359397,0.633799,-0.4957,0.44979,0.36266,0.296167,0.272508,0.336244,-0.452579,0.676771,2.02545,-0.469257,-0.486202,1.39031,0.486345,-0.037394,-0.808966,-0.807236,0.778792,0.179351,0.604294,0.110003,-0.868225,-0.363541,-0.907217,-0.192288,-0.90927,0.17069,-1.12434,-0.53213,0.416231,-0.930449,-0.18702,-0.99212,-0.940117,-0.0159875,0.378311,-0.12898,0.258653,-0.320342,1.93793,-0.180118,-0.54529,1.07958,0.521873,0.313572,0.455497,-0.968712,-0.0704064,0.504036,-0.449421,-0.437064,-0.865064,-0.0293348,-1.00596,0.541329,-0.933039,0.276298,0.318316,-0.145623,-1.08886,-1.03239,-1.22863,-1.02239,-0.996032,0.458577,0.34998,0.243127,-0.18139,0.719742,0.290444,-0.232316,0.374406,1.0349,0.48692,0.450596,-0.756492,-0.873225,0.692887,-0.820972,0.539165,0.395592,-0.969635,-0.621737,-1.22065,0.241264,-0.0548644,0.324224,-0.848368,-0.423516,0.758232,-0.936384,0.361337,-1.0175,-1.17924,0.465883,0.504274,0.274956,0.159183,-0.607586,1.40713,-0.00185501,-0.257488,0.0824944,0.533162,0.222287,0.121019,-1.09538,-1.04364,-0.838852,0.889943,0.666009,0.349436,-0.817297,-0.960235,-0.985927,-0.990574,-0.789618,-0.713757,-0.743831,-0.91226,-0.35673,0.197934,-0.207211,-0.800502,2.14182,1.25926,0.923154,-0.820158,0.679574,-0.700247,0.123868,0.250658,0.131905,-0.0741472,0.349806,0.563358,-0.154676,-0.311488,-0.433602,-1.16318,-0.997228,-0.00878739,0.0441631,0.557684,0.56824,-1.18577,-0.767168,-1.22057,-0.226446,-0.643037,-0.818898,-1.38392,-0.760784,-1.07069,-0.639398,-0.616248,0.331699,-0.0316353,1 +-0.206275,0.0808807,0.842006,-1.23025,-0.163793,-0.165601,-1.34545,0.610101,-1.48411,2.27795,0.237953,-0.662006,1.38257,0.380642,0.205129,-0.061177,-1.50951,-0.0999685,0.0697426,1.94186,-1.94997,-1.31868,-1.53405,1.04879,1.13339,-1.46906,-1.66125,-0.899317,-1.68072,1.16523,-0.363541,-0.992395,-0.368275,1.47391,-1.04779,-1.36896,-0.505922,-1.47302,0.749019,-1.52253,0.491829,-0.655689,2.24057,0.42331,-0.0661017,0.269896,-0.91627,-1.91243,0.600526,2.75494,-1.26549,-1.35845,-1.41757,-0.764066,0.785153,-0.662856,-1.49785,-0.726297,-1.24932,1.23764,-0.935393,-0.473206,0.541329,1.0821,-1.34118,-0.635487,-0.145623,-0.020774,-0.0065944,-0.199485,0.662792,0.766008,0.221164,-0.114128,2.03672,-0.348557,-1.4338,0.642198,-0.421912,-0.059682,-1.75767,-1.3201,-1.29983,0.27937,1.04242,-1.40162,-0.455094,-0.987604,-1.35908,0.900241,-0.586837,-1.28525,-1.18519,0.144288,0.661592,-0.868515,-0.709537,-1.3658,1.05371,-1.45047,0.339779,-1.00999,1.09236,0.283119,0.225324,0.720264,-0.62396,-1.76743,1.21874,0.0376536,0.246793,-1.78379,-1.55361,-1.42772,1.19326,0.435264,1.26173,-1.51994,-1.47259,-1.58428,0.990479,0.33807,0.487962,-1.44668,-0.902442,-1.32226,1.3395,1.29677,0.842704,-1.22678,0.133685,-0.995501,-1.54035,-0.487667,0.427981,0.300379,-1.55888,-0.0255413,-1.48029,-0.422392,-0.802853,-1.48281,-1.39223,-1.36924,-0.154676,-0.311488,-0.290322,-0.0923592,-0.201667,-1.60057,-0.625679,-1.22478,-1.20423,0.351567,-0.920035,-0.106747,-0.274048,1.40014,1.127,-0.0727097,-0.795142,-0.969207,-0.828921,0.00799982,0.676472,-0.105451,1 +0.788863,-0.858953,-0.936156,0.173429,-0.163793,-0.871927,0.737871,0.781636,0.613035,-1.29606,0.460939,-0.445018,-0.322477,0.248478,0.00845638,0.0014472,0.676771,-0.436366,0.228993,0.221984,0.208363,0.520618,0.358152,-0.826009,-0.807236,0.946542,0.525817,-0.351125,0.110003,-0.88517,-0.363541,-0.949806,-0.208287,-0.963228,0.183252,-1.07542,-0.523394,0.0481951,-0.916569,0.554929,-0.933233,-0.953045,-0.90305,0.46831,-0.279889,0.517235,-0.111768,0.364063,0.923551,-0.726125,0.048779,0.422908,0.419777,0.0811757,-0.980101,2.34743,0.73744,-0.512348,-0.422022,-1.12654,-0.0595368,-1.00596,0.505451,-0.933039,0.300805,0.318316,-0.145623,-0.916591,-1.03239,-0.456772,-0.906613,-0.996032,0.171182,-0.346182,-0.401444,-0.348557,0.737321,0.560122,-0.338964,0.543218,0.0964167,0.719402,0.236515,-0.807772,-1.02526,0.654977,-0.631725,-0.507762,0.378881,-0.953988,-0.621737,-1.24218,0.229377,-0.307124,0.354894,-0.787927,-0.382656,0.41406,-0.936384,0.756465,-0.984661,-1.20039,-0.00717157,0.329678,0.212916,0.5083,0.620451,0.769558,-0.0797654,-0.284319,0.287868,0.0270314,0.0181612,0.10023,-0.850172,-0.288784,-0.847155,0.541639,0.699821,0.412837,-0.807525,-0.948846,-0.976479,-1.01822,-0.830645,-0.829662,-1.22951,-0.968695,-0.9425,0.208258,-0.150395,-0.777561,0.118144,-0.222981,0.110563,-1.3164,0.201359,-0.998675,0.897095,1.97917,0.89551,0.416946,0.739202,0.509675,-0.154676,-0.327558,-0.290322,-0.58315,-0.633158,0.560538,0.0441631,0.572175,0.56824,-1.19974,-0.792646,-1.23118,-0.242313,-0.497893,-0.818898,-1.38392,-0.726426,-1.07069,-0.61834,-0.616248,0.348938,0.00527254,1 +-0.0404188,-0.870277,-1.00844,0.199913,0.532951,-0.915393,0.0340477,0.491346,2.26376,-0.440503,0.360595,0.820746,0.281078,0.0682531,0.480471,-0.374298,1.27303,-0.00822363,0.976242,-0.529561,1.28753,2.17713,1.35236,-0.7834,-0.807236,0.0518756,-1.43388,-0.914979,0.110003,-0.88517,-0.363541,1.28614,-0.512264,-0.981215,0.158129,-0.170311,-0.540866,0.722927,-0.930449,-0.953701,-1.03923,1.27066,-0.000425026,0.355811,0.13511,0.0225563,2.13786,0.687269,0.708201,-0.394595,1.29863,2.43518,0.812734,0.564171,-0.957323,0.506031,-0.618097,-0.864735,-0.437064,-0.875958,-0.0192675,1.22438,-0.786141,-0.933039,0.276298,0.272897,0.0202061,-0.29641,-0.940068,-1.48592,-1.07384,-0.582336,0.408596,0.0690722,0.355227,1.74103,1.84485,-0.0495855,0.952664,0.265884,1.2638,1.25834,1.72249,-0.705211,-0.86309,-0.169558,-1.69151,-0.769494,0.395592,-0.977459,-0.423973,1.08348,0.241264,-0.254016,0.262884,-0.767781,-0.443946,2.10542,-0.90553,-0.467468,-1.07223,1.21141,0.52981,0.527554,0.361812,-0.327088,2.94553,0.689862,0.166951,0.131562,-0.0407295,1.39921,1.35519,1.2332,-1.09538,-1.2131,-0.830549,-0.409137,-0.407518,-1.34125,-0.817297,-0.948846,-0.985927,-0.880004,1.03608,-0.974544,-0.807737,-0.960633,-0.496199,0.177286,0.417764,-0.708738,0.422456,0.293156,-0.295733,-0.179851,1.05604,-0.440745,1.17407,2.07095,1.93559,-0.0741472,0.831427,1.92691,-0.154676,-0.311488,-0.290322,-1.96629,-1.91415,-1.42629,0.00140723,0.557684,0.56824,0.533252,1.37296,1.11316,-0.162975,-0.83284,-0.827109,0.735361,0.224145,0.7966,-0.15506,0.382549,0.521324,0.706521,1 +0.236008,0.205437,0.87092,-0.23708,-0.163793,-1.29572,-1.38298,0.517736,-1.38029,0.953221,0.873463,-0.215975,1.66926,0.476762,-0.293109,-0.311674,-1.47494,0.542245,-0.530507,0.106362,-0.935041,-1.33011,-1.73717,1.96915,2.40226,-1.71509,-1.61794,-0.97763,-1.97343,0.411159,-0.363541,-0.981748,-0.144292,1.06922,-1.3367,1.61544,-0.575811,-1.46075,0.679619,-1.48543,0.562493,-0.435904,1.50914,0.220813,0.185412,1.29298,-0.886474,-1.20981,0.115988,0.735623,-0.415082,-1.34745,-1.50253,0.1174,0.933206,-2.07193,-1.52478,-0.600444,-1.88107,1.22674,-0.140075,-0.409998,0.541329,0.021894,-1.45146,0.908766,-0.145623,-0.00354679,0.619141,-0.119083,0.714248,0.78133,1.39574,0.31334,0.032941,0.0693602,-1.38106,0.501496,-0.52856,0.22971,-1.39143,-1.34123,-1.21168,1.72547,1.75192,-1.44901,-0.278464,-1.14755,-1.05828,0.180456,-0.528672,-0.596165,-0.995,2.26858,-1.1786,1.61962,-1.3633,-1.34613,1.03828,-1.46974,0.427346,-0.0791135,0.0951106,0.108523,0.200508,0.545706,-0.591212,-1.27597,-0.547228,0.0242381,0.21941,-1.55884,-1.42093,-1.4693,2.19455,0.897422,2.04219,-1.60467,-1.52331,-1.58428,1.09797,-0.208584,-0.135607,0.695623,-0.881929,0.821992,1.59512,0.555052,2.16766,-1.22678,-1.85487,-0.616974,-0.14052,0.266688,0.70731,0.268364,-1.54871,-0.142317,-1.80343,-2.07442,-1.71128,-1.45696,-1.41272,-1.36924,-0.154676,-0.311488,-0.648521,0.011748,-0.0668256,-1.54248,-1.06749,-1.23928,-1.20423,0.393494,-1.06016,-0.0537079,-0.194711,2.00304,-0.646477,0.15599,1.19762,0.7966,-0.639398,-0.11685,0.124835,-1.30495,1 +-0.0404188,-0.8816,-1.21083,0.199913,0.184579,-0.89366,-0.106717,-0.168402,2.243,-1.25466,0.44979,1.21856,-0.201766,0.320568,0.139572,0.236288,0.970579,0.221138,0.755742,0.0485504,1.86566,1.91437,1.192,-0.808966,-0.807236,-0.395457,-1.11989,-0.899317,0.110003,-0.902116,-0.363541,1.28614,-0.512264,-0.981215,0.158129,-0.170311,-0.53213,0.170874,-0.930449,-1.18865,-1.05101,1.27066,-0.731863,0.490809,0.22314,0.416051,0.677836,1.38989,0.142907,-0.876821,1.80114,2.29223,0.228608,0.310598,-0.957323,0.0897152,-0.402648,-0.864735,-0.422022,-1.09386,-0.0293348,1.21535,-0.822018,-0.933039,0.276298,0.272897,0.0616633,-1.67459,-1.03239,-1.90401,-1.07384,-0.582336,0.221164,0.545394,-0.289345,2.82761,1.92396,0.489771,1.07116,0.555276,1.4927,0.835643,1.84842,-0.725723,-1.0354,-0.330674,-1.60319,-1.14755,0.395592,-0.969635,-0.435607,1.08348,0.241264,-0.333677,0.232214,-0.747634,-0.423516,2.03659,-0.936384,-0.332547,-1.08317,1.21141,0.133466,0.399517,0.31218,0.570643,3.96071,1.60637,-0.131706,0.0779002,0.233101,1.56792,1.30415,0.962951,-0.942127,-0.381216,-0.838852,-0.62565,-0.339895,-1.24615,-0.817297,-0.948846,-0.985927,-0.893825,1.03608,-1.00352,-1.19117,-0.984819,-0.886713,0.18761,0.417764,-0.697267,1.73099,1.27249,0.364498,-0.884188,1.09674,-0.518596,0.48163,1.18375,1.72494,-0.940022,0.401042,1.73365,-0.154676,-0.311488,-0.290322,-1.81756,-1.76582,-1.14744,0.00140723,0.557684,0.56824,0.533252,1.37296,1.11316,-0.0677703,-0.598378,-0.827109,0.735361,0.224145,0.7966,-0.15506,0.382549,0.521324,0.724975,1 +0.180723,0.194114,0.87092,-1.36267,-0.163793,1.59478,-1.35483,0.451761,-1.48411,-0.0679236,0.460939,-0.553512,-0.337566,0.308553,0.047791,-0.0768331,-1.50086,-0.864509,0.216743,0.3087,-1.97567,-1.33011,-1.34163,0.759052,2.8501,-1.41314,-1.59628,-0.914979,1.91794,1.02967,-0.363541,-0.981748,-0.192288,0.214872,-1.34927,1.61544,-0.575811,-1.47302,0.693499,-1.48543,0.562493,-0.448832,-0.513988,0.502059,-0.0661017,0.483507,-0.931168,-2.17942,0.627444,0.705484,-1.13664,-1.35845,-1.3857,1.84411,1.68486,-0.486723,-1.48887,-0.600444,2.02978,0.725582,-0.895124,-0.419028,0.541329,0.94675,-0.998076,0.863346,-0.145623,0.0136805,0.629399,-0.119083,0.701384,0.78133,0.171182,-0.309542,-0.121196,-0.18139,-1.4338,0.583572,-0.173067,-0.180262,-1.83778,-1.33067,-0.783516,-0.428298,2.40061,-1.39214,-0.29108,-1.07485,0.562704,1.58091,-0.540305,-0.596165,-1.07821,-0.227463,-1.23994,1.62969,-1.08749,-1.37564,1.05371,-1.45047,0.427346,-0.121426,0.0311842,0.352958,0.274956,0.483363,-0.705829,-2.03309,-0.404392,0.104731,0.178335,-1.5476,-1.49237,-1.38614,2.32737,1.46742,1.95916,-1.51994,-1.48105,-1.56315,2.13378,2.31969,2.05633,0.695623,-0.881929,0.850968,-0.168679,0.329312,-0.342783,-1.22678,-1.87381,-0.605503,-2.25548,-0.884696,0.174047,0.268364,-1.56906,-0.142317,-1.33026,-0.11646,-0.407885,-1.45696,-1.40247,-1.36924,-0.154676,-0.279346,0.282797,-0.00312447,-0.0803097,-1.53086,-1.08174,-0.978427,-1.20423,0.393494,-1.08564,-0.0537079,-0.194711,-0.464399,-0.753214,0.15599,1.18617,0.756007,-0.61834,-0.179275,0.090358,-1.30495,1 +0.567721,-0.553224,-0.733764,0.160187,-0.163793,-0.817594,2.13613,-0.313547,0.197758,-1.35125,0.44979,1.14623,-0.428099,0.236463,-0.0702128,0.502441,-0.645365,0.465791,0.486242,0.265342,1.91704,2.40561,1.17062,-0.851575,-0.807236,1.71819,0.688222,3.47055,0.127221,-0.876697,-0.363541,-0.460028,0.0156963,-0.936249,0.183252,0.245548,-0.505922,-0.025412,-0.73613,0.666222,-0.839014,0.688879,-1.04311,0.43456,0.0596553,0.595934,-0.946066,1.1791,-0.126281,-0.665847,1.77537,1.48952,2.09781,-0.124097,-0.980101,0.217812,1.4556,0.595156,-0.391939,-1.13743,-0.099806,-0.978871,0.792472,-0.92552,0.313059,0.0458009,-0.145623,-0.089683,0.916621,0.218606,-0.842293,-0.858133,0.121201,0.53318,-0.457494,-0.348557,-0.255943,0.595297,0.905264,0.555276,1.28669,2.47358,1.73508,-0.828284,-1.02526,2.07659,0.200962,1.60063,0.378881,-0.93834,-0.59847,-0.316224,0.21749,-0.293847,-0.319842,0.793599,-0.341796,0.541896,-0.920957,1.68164,-0.689125,0.492104,-0.135024,0.2482,0.101245,0.67039,-0.62396,-0.651688,-0.0148401,0.0913157,0.3974,1.53418,1.11023,1.5866,-0.860389,-0.396621,-0.855458,1.38887,1.32534,1.45895,-0.797754,-0.937458,-0.967031,0.0736652,-0.789618,0.532228,-1.25508,-0.944508,-0.956447,0.218582,-1.21096,-0.639915,1.95923,1.3519,0.466072,-1.39643,-0.897521,-1.86801,1.33564,0.724853,1.51429,0.636645,1.95862,1.7766,1.13417,-0.279346,1.50067,-0.211339,-0.430896,0.455968,0.00140723,0.572175,0.56824,-1.04601,0.213724,-0.944769,-0.226446,-0.397409,-0.810688,0.933567,1.31215,1.08075,-0.828921,-0.491399,0.19379,-0.769791,1 +-0.0404188,0.692339,-0.661481,0.199913,-0.163793,-0.904526,2.02352,0.478151,0.519598,-0.399106,0.460939,-0.469128,0.371611,0.0682531,0.375579,-0.421266,-0.636723,1.79609,-0.408007,-0.544014,0.478155,2.31422,0.668174,-0.843053,-0.807236,2.16552,1.5219,2.57778,0.110003,-0.842807,-0.363541,1.30743,-0.528263,-0.891283,0.158129,-0.121386,-0.540866,-0.638804,-0.916569,0.777514,0.103176,1.25774,0.0773875,0.367061,-0.39307,0.24741,-0.91627,1.62878,-0.0724431,-0.424734,0.113204,1.44554,2.32084,0.274374,-0.968712,0.217812,1.17732,1.22442,-0.437064,-0.810589,-0.0192675,1.25147,-0.893773,-0.918001,0.276298,0.272897,-0.145623,-1.22668,-1.03239,0.282928,-0.37919,-0.521047,0.508559,-0.333969,0.313189,-0.348557,-0.159253,0.313894,-0.54041,0.326174,0.714445,2.35734,0.160957,-0.715467,-0.842818,2.15241,1.42476,0.611869,0.395592,-0.93834,-0.272743,1.10502,0.241264,-0.015034,0.201545,-0.757707,-0.433731,0.089555,-0.936384,1.22869,0.460183,1.21141,0.517025,0.539194,0.274956,0.894823,-0.0181282,1.8853,0.0500852,-0.270903,0.164644,0.229484,0.865283,1.85685,-1.11582,-1.38256,-0.86376,0.927598,1.2239,1.79708,-0.797754,-0.948846,-0.967031,-0.852361,1.08737,-0.945568,-0.667144,-0.888073,-0.286996,0.177286,0.417764,-0.685797,1.38104,0.359328,0.491465,-1.73259,-0.602451,-1.72528,1.82035,0.00591297,0.210899,0.00339378,1.4975,1.2505,-0.0741224,-0.311488,-0.361962,0.755371,1.09281,1.2112,0.00140723,0.557684,0.56824,0.547227,1.37296,1.13437,-0.194711,-0.654202,-0.802477,0.674375,0.155429,0.756007,-0.112944,0.382549,0.504085,0.761882,1 +0.567721,-0.836307,-0.96507,0.173429,-0.163793,-0.850194,2.11736,0.280227,-0.196755,-0.619894,0.527835,1.06184,0.265989,0.116313,0.283798,-0.389954,-0.576233,-0.13055,1.02524,-0.428391,1.54447,2.18855,1.34167,-0.834531,-0.807236,1.89712,0.341757,2.84405,0.127221,-0.851279,-0.363541,-0.449381,0.0156963,-0.88229,0.17069,0.245548,-0.523394,-0.810554,-0.73613,0.332344,-0.886124,0.688879,-0.0938,0.43456,0.160261,0.404808,-0.946066,-0.0294038,0.613985,-0.711055,1.56921,1.07167,2.02347,0.322673,-0.968712,1.01842,1.52742,-0.147375,-0.40698,-0.886853,-0.0796714,-0.978871,0.792472,-0.92552,0.300805,0.000381674,-0.145623,-1.60568,0.916621,-0.697978,-0.868021,-0.858133,0.483568,0.264486,0.159053,-0.264974,-0.299892,0.196642,1.09486,0.434696,0.703,2.36791,1.84842,-0.797516,-0.903632,2.12398,-0.568642,2.96746,0.378881,-0.946164,-0.621737,-0.29469,0.21749,0.0115196,-0.350512,0.793599,-0.372441,0.148556,-0.936384,1.66237,-0.973715,0.492104,0.427528,0.515914,0.274956,-0.302151,-0.820445,-0.239925,-0.0667803,0.0779002,0.21941,1.50043,0.844871,1.44109,-1.11582,-1.02824,-0.855458,1.50183,1.47749,0.560772,-0.807525,-0.948846,-0.967031,0.115129,-0.769105,0.561204,-0.782174,-0.896135,-0.35673,0.208258,-1.24884,-0.662856,0.939785,0.756357,-0.0925848,-1.82864,-0.673675,-1.73826,1.54337,1.8721,1.94876,-0.164612,1.8459,1.51892,0.811962,-0.247205,2.64691,-0.493916,-0.44438,0.409492,0.00140723,0.572175,0.56824,-1.03203,0.213724,-1.15693,-0.210578,-0.553718,-0.810688,0.933567,1.3007,1.08075,-0.828921,-0.553823,0.19379,-0.788245,1 +0.733577,-0.00970569,0.813093,-0.475441,-0.163793,0.171262,-1.34545,0.464956,-1.40106,0.994619,0.650477,0.0492326,0.733744,0.440717,-0.227551,2.91347,-1.51815,0.389337,-0.506007,-0.0526191,-0.575319,-1.33011,-1.54474,-0.672616,2.6795,-1.71509,-1.6829,-0.899317,1.34973,2.30058,0.129222,1.58426,-1.79217,1.15016,-0.934733,-0.0724618,-0.575811,-1.46075,0.776778,-1.53489,0.432942,0.572523,0.637637,0.0295663,0.348897,1.45038,-0.886474,-1.09739,-0.207037,0.84111,-0.105841,-1.36945,-1.47067,0.431347,2.34541,-2.34413,-1.48887,-0.789224,0.495524,2.83918,-0.935393,1.33274,-1.61132,0.909154,-1.31667,0.136639,-0.104166,-0.00354679,0.0549533,-0.215565,0.611336,0.720041,0.795954,0.435473,0.0189285,0.0693602,-1.44259,0.220093,-0.208616,0.386464,-1.27698,-1.3201,-0.695365,0.77166,2.76549,-1.40162,-0.581259,-1.14755,1.24786,1.06454,1.87938,1.88024,-1.24463,1.88355,-0.197163,-0.878588,-0.964913,-1.38547,1.05371,-1.46011,0.263159,1.25373,-0.352374,-0.18247,0.1881,0.0719033,-0.771324,-1.51506,-0.469317,0.144978,0.123569,-1.22142,-1.34948,-1.41733,1.70412,-0.535269,1.31155,-1.56701,-1.45569,-1.59485,2.76894,2.23997,1.42331,-1.05968,1.79508,1.31459,1.99134,1.74019,1.59584,-1.1958,0.512458,0.553018,0.0116354,0.385796,0.618433,0.348402,-1.53853,0.0782596,-1.79189,-2.27328,-1.22415,-1.46989,-1.40247,-1.37997,-0.154676,-0.311488,-0.218682,-0.151849,-0.282571,-1.61219,-1.06749,-1.15233,-1.20423,0.463373,1.25831,0.625196,0.281315,2.21518,0.0349983,0.0797565,-0.978385,0.228295,0.308219,1.31892,0.624756,1.20478,1 +-0.0957042,-0.462638,-0.950613,1.51089,-0.163793,-1.33919,0.756639,-0.221182,0.664944,-1.35125,0.438641,1.15828,-0.352655,0.296538,0.047791,-0.108145,0.650847,0.0376488,0.718992,0.164173,1.86566,0.543466,1.22408,-0.817488,-0.807236,0.476842,0.51499,-0.351125,0.0583475,-0.910588,0.0435241,1.36067,0.479662,-0.990208,0.359115,0.0743119,-0.575811,0.0113916,-0.916569,0.530198,-0.685908,1.20602,-0.918613,0.479559,0.160261,0.461022,-0.156462,0.996421,0.115988,-0.831612,1.76249,0.455896,0.579084,0.177775,-0.934546,0.12174,0.746417,-0.524933,-0.181354,-1.13743,1.97406,1.3508,-1.00141,-0.940558,-0.164831,0.363735,-0.18708,-0.968273,-1.03239,-0.521093,-0.919477,-0.61298,0.146191,0.472113,-0.415457,-0.432141,0.737321,0.548397,1.02376,0.567334,1.1608,0.740536,1.83582,0.935757,-1.04553,0.683409,-0.429861,-0.66771,0.51257,-0.985283,-0.237844,1.12655,1.45375,-0.386784,0.0175256,-0.798001,-1.44502,0.404227,-0.936384,0.756465,-0.393588,1.14795,0.0056137,0.329678,0.25014,0.458426,0.571329,0.809406,-0.105735,0.0510691,0.301559,1.57917,0.773427,0.56797,-0.891041,-0.335,-0.830549,0.56988,0.716727,0.40227,-0.817297,-0.459135,-0.787519,0.640338,1.21045,-0.539898,-1.26786,-1.00094,-1.01223,0.414738,0.360948,-0.800502,1.68535,1.20632,0.364498,-1.34841,0.160659,-1.0376,0.700903,1.22964,1.72494,0.391099,0.739202,0.498938,-0.154676,3.65797,-0.218682,-0.627768,-0.565737,0.5373,0.129675,0.0214939,0.973806,0.561203,1.37296,1.19802,-0.274048,-0.564883,-0.83532,0.491415,-0.0621716,0.593634,0.0134047,0.320124,0.400654,0.872606,1 +0.236008,2.32289,1.20342,-1.20376,-0.163793,-0.0460687,-1.36421,0.530931,-1.47373,0.60824,0.249102,-0.637897,-0.0508774,0.356612,-0.188216,0.0797275,-1.50086,-0.0388052,0.0819926,1.36375,-1.92428,-1.33011,-1.51267,0.98062,1.14405,-1.49142,-1.42305,-0.836666,-1.64628,1.16523,-0.363541,-0.268376,-0.30428,1.4919,-1.31158,1.86006,-0.479714,-1.00684,0.735139,-1.37414,1.964,0.0553809,0.559825,0.42331,-0.0912531,0.326109,-0.931168,-1.88432,0.573607,0.82604,-1.21395,-1.35845,-1.42819,-0.136172,0.830708,-0.710893,-1.49785,2.40744,-1.18915,0.8999,-0.885057,0.90834,0.361941,1.12721,-1.34118,1.27212,-0.145623,0.151498,0.660172,0.0256408,1.7305,1.5934,-0.141204,-0.150768,-0.0791584,-0.18139,-1.42501,0.677373,-0.374513,0.519102,-1.75767,-1.34123,-1.19908,0.289626,0.606588,-1.42058,1.79064,-1.04577,-1.32566,0.939359,1.15813,-0.553097,-1.07821,0.131011,-1.73065,1.75057,-0.627817,-1.37564,0.745166,-1.45047,2.113,-0.269519,-0.17338,0.120163,0.175692,0.807544,-0.558464,-1.70102,-0.287526,0.0376536,0.21941,-1.75005,-1.5434,-1.42772,0.753925,2.37633,1.25343,-1.53877,-1.4895,-1.37295,0.990479,0.406402,0.525754,0.76473,0.195029,0.966874,0.879376,1.30483,0.424297,-1.22678,-1.64655,-0.433446,-1.49471,-0.500902,0.440678,0.188326,-1.46731,-0.972725,-1.46875,-0.422392,-0.750191,-0.991716,-1.38198,-1.3585,-0.154676,-0.311488,-0.433602,0.859478,1.5243,-1.57734,-1.16725,-1.23928,-1.20423,1.70722,-0.321308,1.3041,-0.226446,1.42247,1.2009,0.262716,1.09455,0.634227,-0.449874,-0.11685,-0.0130738,-1.45259,1 +-0.0957042,-0.383375,-1.13855,1.49765,-0.163793,-1.37179,0.559569,0.478151,0.623417,-0.468102,0.416342,0.989515,0.296167,0.0802681,0.414914,-0.530859,0.659489,-0.0999685,0.976242,-0.529561,1.51878,0.509194,1.36305,-0.757835,-0.807236,0.845892,0.103562,0.557306,0.0583475,-0.893643,0.150646,1.37132,0.463663,-0.954235,0.371676,0.0743119,-0.575811,0.428498,-0.930449,-0.261215,-0.980343,1.19309,-0.000425026,0.378311,0.160261,0.146226,-0.379935,0.265697,0.600526,-0.454873,1.50479,0.620837,0.589704,0.467572,-0.923157,0.474007,0.477105,-0.424251,-0.181354,-0.875958,1.97406,1.36886,-0.965528,-0.940558,-0.177085,0.363735,-0.18708,-1.10609,-1.03239,-1.29295,-1.03525,-0.61298,0.433587,0.191206,0.299177,-0.348557,0.737321,0.00904018,1.03561,0.35029,0.760225,0.48692,1.82323,0.946013,-0.86309,0.702364,-0.694807,0.626409,0.495859,-0.993107,1.12323,1.14809,1.44187,-0.161079,0.0175256,-0.828221,-1.44502,0.787733,-0.936384,0.322788,-0.62345,1.12679,0.504239,0.527554,0.336996,-0.539052,-0.673081,0.18512,0.0890404,0.104731,0.0688029,1.51168,0.68157,0.526393,-1.1056,-1.2131,-0.822247,0.90877,0.657556,0.296602,-0.827069,-0.459135,-0.796967,0.640338,1.24122,-0.510922,-0.782174,-0.95257,-0.426465,0.404414,0.360948,-0.811972,0.848492,0.650482,-0.219552,-0.820158,0.679574,-0.726198,1.05866,1.91799,1.93559,-0.0870707,0.339559,0.595568,-0.154676,3.7544,-0.290322,-1.22267,-1.06465,-0.0901196,0.129675,0.00700225,0.943764,0.547227,1.3857,1.20863,-0.258181,-0.754686,-0.83532,0.445675,-0.107982,0.573337,-0.00765348,0.320124,0.400654,0.854152,1 +0.236008,2.33422,1.17451,-1.38915,-0.163793,0.529859,-1.35483,0.649686,-1.42182,1.61559,0.940359,-0.17981,2.25772,0.476762,-0.0833243,-0.40561,-1.50086,0.43521,-0.518257,0.135267,-0.960736,-1.33011,-1.7051,1.3641,1.00544,-1.63681,-1.39057,-0.789678,-1.16416,1.24996,-0.363541,-0.268376,-0.288281,1.16814,-1.32414,1.86006,-0.523394,-1.00684,0.735139,-1.34941,1.95222,0.0553809,2.25614,0.254563,0.235715,0.416051,-0.931168,-1.32222,0.156366,0.976736,-0.415082,-1.36945,-1.49191,0.153625,0.124606,-1.7677,-1.48887,2.44519,-0.271605,1.15048,-0.874989,0.90834,0.326064,1.21744,-1.24315,1.31754,-0.145623,0.168726,0.639656,0.0256408,1.70477,1.54743,1.72062,0.337766,1.13992,-0.0978067,-1.4338,0.44287,-0.481161,0.145304,-1.42576,-1.33067,-1.1739,-0.171897,0.657267,-1.42058,1.80325,-0.958523,-1.59304,1.18972,1.1814,-0.531563,-1.06632,2.04287,-1.79199,1.73043,-0.362226,-1.37564,0.714312,-1.44083,2.113,-0.184894,1.06679,0.504274,0.225324,0.408552,-0.673081,-1.46193,-0.248571,0.0376536,0.0824944,-1.5476,-1.43113,-1.4589,0.447409,0.358238,1.07077,-1.5576,-1.47259,-1.35181,1.25432,0.588621,1.04539,0.792372,0.215542,0.966874,1.77406,1.21615,2.19555,-1.22678,-1.66549,-0.467857,-0.216598,0.240219,0.656523,0.188326,-1.47748,-1.02463,-1.75726,-1.87557,-1.60596,-0.978792,-1.37173,-1.3585,-0.114399,-0.311488,-0.433602,0.844606,1.5243,-1.56572,-1.16725,-1.25377,-1.20423,1.69324,-0.308569,1.29349,-0.178843,-0.821675,1.13521,0.247469,1.106,0.695117,-0.428816,-0.11685,-0.0130738,-1.48949,1 +0.567721,-0.77969,-0.661481,0.173429,-0.163793,-0.817594,0.597106,0.0295224,0.550743,0.0424704,0.527835,0.543484,0.688478,-0.148016,0.152683,-0.421266,0.8496,0.267011,0.216743,-0.182694,0.0798904,0.520618,0.775078,-0.817488,-0.871212,0.241992,0.904763,-0.288475,0.127221,-0.808916,-0.363541,-0.502617,0.0156963,-0.684441,0.133005,0.318935,-0.523394,0.453034,-0.76389,0.963001,-0.744795,0.650094,0.497575,0.187064,0.286018,0.382323,0.0670106,0.0127534,-0.382009,-0.108273,0.113204,0.576853,0.632186,0.503796,-0.957323,0.506031,0.836187,-0.348739,-0.391939,-0.538219,-0.0696041,-0.9879,0.828349,-0.948077,0.276298,0.0912201,-0.145623,-0.0552285,0.896105,0.443732,-0.687925,-0.888777,0.683495,0.31334,0.439301,-0.348557,0.728531,-0.190287,0.514221,0.47087,0.416876,0.539757,0.198736,-0.715467,-0.700918,0.399087,0.125264,-0.507762,0.378881,-0.969635,-0.621737,-0.29469,0.205603,0.4231,-0.319842,0.833893,-0.372441,0.571396,-0.936384,0.872112,-0.83142,0.51326,0.568166,0.492635,0.0516129,-0.539052,-0.132745,0.371078,0.0111301,0.19864,0.123569,0.578151,0.844871,0.890192,-0.921692,-0.550674,-0.888668,0.33454,0.699821,0.76154,-0.856384,-0.948846,-0.995375,0.12895,-0.799875,0.561204,-0.0919921,-0.751017,0.256934,0.177286,-1.26778,-0.685797,-0.14052,0.0946419,-0.206856,-0.836165,0.598176,-0.47967,0.608578,-0.07057,0.0134145,0.817574,0.780191,0.552622,-0.114399,-0.279346,-0.576881,0.294325,0.162404,0.967199,-0.0270967,0.543192,0.538199,-1.05999,0.188246,-1.15693,-0.147108,-0.363915,-0.818898,0.872581,1.31215,1.10105,-0.828921,-0.553823,0.211029,-0.788245,1 +0.733577,0.00161761,0.798636,-0.753528,-0.163793,0.464659,-1.38298,0.834415,-1.34915,0.511645,-0.308362,-0.0110419,0.175456,0.320568,0.231352,-0.515203,-1.54407,0.679863,-0.310007,0.438776,-0.292679,-1.3758,-1.45922,1.00619,1.00544,-1.51379,-1.67207,-0.914979,-1.16416,1.19912,0.0649486,1.58426,-1.79217,1.34801,-0.947294,-0.0724618,-0.453505,-1.47302,0.749019,-1.53489,0.432942,0.624237,0.09295,-0.127931,0.122534,-0.854375,-0.901372,-0.422871,0.371716,0.780831,-0.0156461,-1.39144,-1.48129,-0.0878726,1.21792,-0.758929,-1.5158,-0.776638,-0.57244,0.943479,-0.935393,1.34177,-1.61132,1.26255,-1.20639,0.136639,-0.145623,0.0136805,0.0241795,-0.183405,0.611336,0.689397,0.121201,0.337766,0.593438,-0.264974,-1.4338,0.243543,-0.303414,-0.059682,-0.956521,-1.37294,-0.582028,0.946013,1.22487,-1.43005,-0.530793,-0.624088,-0.824325,1.12713,1.84449,1.85871,-1.23274,0.0646268,-0.135823,-0.888662,-0.178355,-1.43464,1.03828,-1.48902,0.263159,1.27488,0.0567548,-0.368706,0.026797,0.321273,-0.656707,-0.678254,0.894114,-0.0696705,0.0824944,-0.917746,-1.26783,-1.40693,1.37717,0.758775,1.22852,-1.50112,-1.47259,-1.61598,1.06865,0.75945,0.856434,-1.10114,1.78482,1.25664,0.48316,1.28065,0.326668,-1.20613,0.531396,0.484195,0.315947,0.438734,0.643826,0.348402,-1.56906,0.0652845,-1.63032,-0.973069,-0.947675,-1.48281,-1.44346,-1.43366,-0.154676,-0.295417,-0.218682,-0.122104,-0.255603,-1.61219,-1.06749,-1.23928,-1.21925,0.463373,1.28379,0.646412,-0.353386,0.0380216,1.3569,0.0645099,-0.978385,0.289184,0.266102,1.2565,0.624756,1.16787,1 +-0.0404188,-0.134262,-0.96507,1.52414,-0.163793,-1.24139,0.615875,-0.115622,0.457306,-0.785485,0.516686,0.290331,0.100011,0.0922831,0.152683,-0.358642,0.754544,-0.222295,0.559742,0.366512,0.156974,0.49777,0.710935,-0.621485,-0.871212,0.476842,0.612433,0.807908,0.00669205,-0.936007,0.000675141,1.37132,0.431665,-0.918263,0.346553,0.0498496,-0.575811,0.82107,-0.930449,0.332344,-0.697686,1.20602,-0.327238,0.43456,0.147685,0.483507,-0.186259,0.420273,-0.00514623,-0.394595,-0.144496,0.609841,0.600325,0.455497,-0.934546,0.12174,0.710508,-0.222886,-0.181354,-0.995802,1.94386,1.3508,-1.00141,-0.985673,-0.152578,0.363735,-0.145623,-0.244728,-1.03239,-0.553254,-0.932341,-0.643624,0.3961,-0.0897016,-0.065146,-0.599308,0.543943,0.313894,0.537921,0.519102,0.645775,0.48692,0.198736,0.976781,-0.944175,0.617067,-0.190148,-0.100624,0.545993,-1.03223,-0.26111,1.19115,1.42998,-0.0283108,0.0788652,-0.798001,-1.45524,0.758232,-0.90553,0.611906,-0.306022,1.1691,0.274104,0.446076,0.225324,-0.0777185,-0.607586,0.291382,-0.0667803,0.19864,0.0824944,0.623141,0.906108,0.848615,-0.615177,0.342832,-0.847155,0.833461,0.78435,0.708706,-0.8857,-0.41358,-0.787519,0.585053,1.23096,-0.510922,-0.922767,-0.960633,-0.468305,0.425062,0.398826,-0.789031,-0.110089,-0.474433,-0.257642,0.0122412,0.954294,0.0263591,0.412386,-0.131756,0.131905,0.404022,0.513762,0.606305,-0.114399,3.57762,-0.147042,-0.672385,-0.471348,0.490825,0.115423,0.0214939,0.973806,0.477349,1.3857,1.17681,-0.305783,-0.486729,-0.876372,0.445675,-0.0621716,0.634227,0.0134047,0.320124,0.435131,0.872606,1 +0.236008,2.30025,1.23233,-1.19052,-0.163793,1.06232,-1.40175,0.596906,-1.49449,0.898024,-0.02963,-0.432963,-0.216855,0.404672,0.178906,-0.155113,-1.54407,0.374047,0.118743,0.641114,-1.37185,-1.38723,-1.18127,1.42376,0.984112,-1.22302,-1.39057,-0.758353,-0.30324,1.08898,-0.363541,-0.289671,-0.320279,0.763452,-1.31158,1.8356,-0.453505,-0.945501,0.721259,-1.34941,1.95222,0.0424523,0.170762,0.310812,-0.0409503,-0.0111718,-0.975863,-1.58922,0.613985,0.81097,-0.762977,-1.41343,-1.35384,-0.84859,0.614322,0.105727,-1.50683,2.40744,0.6309,1.03064,-0.885057,0.872221,0.361941,1.32271,-0.949061,1.27212,-0.145623,0.117044,0.67043,0.0417213,1.7305,1.56276,-0.253663,0.0690722,0.369239,-0.18139,-1.46896,0.630473,-0.303414,-0.337016,-1.62033,-1.3835,-0.745737,0.463979,1.36677,-1.38267,1.81587,-0.638628,-1.30895,1.30708,1.1116,-0.510029,-1.0901,0.330163,-1.76132,1.73043,0.526482,-1.4248,0.760593,-1.47938,2.10205,-0.206051,-0.186165,-0.0777123,0.138469,0.807544,-0.558464,-1.43537,0.855159,-0.0965015,0.109878,-1.42388,-1.49237,-1.37575,1.23413,0.234995,1.19531,-1.33167,-1.48105,-1.12991,1.09797,0.93028,1.27215,0.76473,0.184772,0.99585,0.777126,1.01459,0.800863,-1.22678,-1.70336,-0.479328,-0.65785,-0.0906383,0.593039,0.15631,-1.48766,-0.933799,-1.11099,0.158879,-0.315726,-0.927098,-1.41272,-1.41218,-0.114399,-0.295417,-0.290322,0.918968,1.55127,-1.56572,-1.16725,-1.18131,-1.20423,1.67926,-0.334047,1.26167,-0.258181,-0.319255,1.34869,0.262716,1.11745,0.695117,-0.428816,-0.179275,-0.0303125,-1.45259,1 +0.236008,-0.598517,0.581787,-0.793254,-0.163793,0.540725,-1.41114,0.702466,-1.32838,0.691035,-0.174571,-0.119536,0.175456,0.320568,0.323133,-0.32733,-0.705854,0.81748,-0.261007,0.221984,-0.369763,-1.38723,-1.52336,0.946533,1.03743,-1.55852,-1.15238,-0.97763,-1.14695,1.18218,-0.363541,-0.971101,-0.416272,1.37499,-1.31158,1.8356,-0.418561,-0.920965,1.29033,-1.3865,0.138508,-0.38419,0.1552,-0.0716822,0.0219282,-0.517094,1.72071,-0.352609,0.412094,0.81097,-0.118726,-1.39144,-1.50253,-0.32937,1.20654,-0.887026,-1.4799,-0.789224,-0.497231,0.997953,-0.895124,-0.888573,0.326064,1.30015,-1.20639,1.13586,-0.145623,0.685543,1.15255,0.00956042,0.186825,0.628109,0.183678,0.2767,0.747575,0.152944,-1.258,0.37252,-0.386363,-0.083798,-0.990856,-1.3835,-0.75833,0.884477,1.28568,-1.46796,0.112647,-0.856738,-0.857748,1.1506,-0.621737,-0.510029,-1.0901,0.277056,-1.91467,1.76065,-0.0353449,-1.34613,1.2234,-1.46974,-0.0214317,-0.354144,0.28689,-0.287228,0.0392049,0.570643,-0.476595,-0.425883,0.881129,-0.0965015,0.137261,-1.06396,-1.29845,-1.43812,1.32609,0.74337,1.22852,-1.56701,-1.51486,-1.49975,1.03934,0.770839,0.87533,0.737087,-0.871672,1.02483,0.508722,1.28065,0.396403,-1.2371,-1.66549,-0.421975,0.331162,0.399031,0.681916,1.78909,-0.38878,2.0894,-1.63032,-0.896586,-1.0135,-1.39234,-1.45371,-1.40145,-0.154676,-0.295417,-0.648521,0.190217,0.256793,-1.14744,-1.19576,-1.26826,-1.21925,0.477349,-1.08564,-0.0112764,-0.210578,0.339474,1.43079,0.0950031,1.0831,0.593634,-0.3867,-0.241699,-0.0820284,-1.47104,1 +1.01,1.47365,1.73832,-1.17728,-0.163793,1.00799,-1.38298,0.702466,-1.50488,0.760032,-0.107675,-0.432963,-0.216855,0.416687,0.139572,-0.358642,-1.55271,0.297593,0.0452426,0.742284,-1.38469,-1.38723,-1.24541,1.49193,0.97345,-1.14474,0.709876,-0.570402,-0.354896,1.09745,2.31452,1.59491,-1.71218,0.700501,-0.984979,0.123236,-0.479714,-1.44848,0.471421,0.19632,1.68134,0.262238,0.1552,0.277063,0.0470796,-0.16857,-0.990761,-1.60327,0.613985,0.765762,-0.762977,-1.42443,-1.34322,-0.679542,0.62571,0.249837,-1.1657,1.81593,0.570733,0.8999,-0.925326,1.28759,-1.6472,1.29263,-0.961315,0.136639,-0.145623,1.01286,-0.58104,1.63368,1.74337,0.888584,-0.291149,0.130139,0.131028,-0.515724,-1.49533,0.548397,-0.362663,-0.264668,-1.60888,-1.37294,-0.833888,0.546027,1.31609,-1.35423,1.9925,-0.275112,-1.30895,1.29143,2.00735,1.96638,-1.23274,0.0911804,-0.595871,-0.798001,0.434547,-1.44447,0.991999,-1.20954,1.56571,1.1691,-0.314018,-0.0893521,0.1881,0.645453,-0.656707,-1.54163,0.790234,-0.083086,0.096186,-1.48011,-1.50258,-1.38614,1.29544,0.234995,1.18701,-0.870404,-1.12602,0.655873,1.12728,0.941669,1.2627,-0.72797,1.9079,1.74924,0.70044,1.01459,0.703235,-0.989324,0.417764,0.690665,-0.627418,-0.0509354,0.580342,0.332395,-1.42661,0.324787,-1.11099,0.174175,-0.381554,-0.772016,-1.35124,-1.43366,-0.114399,-0.295417,0.0678772,1.97491,2.03669,0.548919,-1.18151,-1.18131,-1.21925,0.882646,1.1564,0.901001,-0.385121,-0.643037,1.283,0.140743,-0.95548,-0.0152651,0.5188,1.50619,0.521324,1.40777,1 +-0.0404188,0.114851,0.82755,-0.780012,-0.163793,0.508126,-1.40175,0.755246,-1.32838,0.622039,-0.219168,-0.0833713,0.190545,0.320568,0.29691,-0.389954,-1.51815,0.771608,-0.273257,0.294248,-0.344068,-1.3758,-1.50198,0.972098,1.02676,-1.54734,-1.66125,-0.961967,-1.14695,1.19065,-0.363541,-0.960453,-0.368275,1.36599,-1.07291,-1.39342,-0.427297,-1.49755,0.707379,-1.52253,0.503606,-0.64276,0.139637,-0.0829321,0.0596553,-0.640763,-0.901372,-0.380714,0.398635,0.81097,-0.0800712,-1.38044,-1.50253,-0.244846,1.20654,-0.83899,-1.53376,-0.688541,-0.527314,0.976163,-0.935393,-0.464177,0.613084,1.29263,-1.19413,-0.544649,-0.145623,-0.00354679,-0.0476262,-0.167324,0.662792,0.735363,0.158687,0.301126,0.705537,-0.0142232,-1.38985,0.337344,-0.350814,-0.07174,-0.979411,-1.3835,-0.695365,0.904989,1.26541,-1.44901,-0.392012,-0.784035,-0.841037,1.14278,-0.575204,-1.26372,-1.18519,0.210672,0.630922,-0.918882,-0.0864201,-1.41497,1.03828,-1.49866,0.361671,-1.00999,0.197393,-0.310507,0.0392049,0.483363,-0.558464,-0.518862,0.894114,-0.0965015,0.123569,-1.01897,-1.28824,-1.42772,1.34652,0.74337,1.22852,-1.54818,-1.51486,-1.61598,1.04911,0.75945,0.865882,-1.43286,-0.871672,-1.1484,0.495941,1.28065,0.368509,-1.22678,0.0768686,-1.00697,0.331162,0.425499,0.681916,0.284372,-1.57923,-0.0644667,-1.63032,-0.927179,-1.00034,-1.49573,-1.45371,-1.43366,-0.114399,-0.295417,-0.505242,-0.0626143,-0.161214,-1.58896,-0.654183,-1.25377,-1.21925,0.337591,-0.881818,-0.106747,-0.258181,0.250155,1.40616,-0.103203,-0.818048,-0.969207,-0.828921,-0.11685,0.641995,-0.123905,1 +-0.0957042,0.0695574,0.82755,-1.19052,-0.163793,1.02972,-1.38298,0.649686,-1.49449,0.856626,-0.0630779,-0.420908,-0.216855,0.416687,0.165795,-0.233394,-1.54407,0.358756,0.0942426,0.684473,-1.359,-1.3758,-1.19196,1.45784,0.97345,-1.18947,-1.65042,-0.899317,-0.337677,1.09745,-0.363541,-0.981748,-0.416272,0.736473,-1.06035,-1.3445,-0.462241,-1.49755,0.721259,-1.53489,0.480052,-0.655689,0.1552,0.288312,-0.0157989,-0.0786281,-0.931168,-1.57517,0.627444,0.795901,-0.750092,-1.41343,-1.34322,-0.80029,0.614322,0.185788,-1.5158,-0.713712,0.585775,0.976163,-0.935393,-0.491266,0.577207,1.30767,-0.961315,-0.49923,-0.145623,-0.00354679,-0.0168523,-0.183405,0.637064,0.720041,-0.266158,0.093499,0.271152,-0.348557,-1.46896,0.607022,-0.327114,-0.3129,-1.60888,-1.37294,-0.770923,0.484491,1.33636,-1.36371,-0.442478,-0.609547,-1.30895,1.29925,-0.586837,-1.26372,-1.18519,0.237225,0.661592,-0.878588,0.475407,-1.43464,1.03828,-1.48902,0.328833,-1.00999,-0.250092,-0.0893521,0.163284,0.745201,-0.591212,-1.46193,0.842174,-0.0965015,0.109878,-1.42388,-1.49237,-1.37575,1.25457,0.21959,1.18701,-1.42581,-1.48105,-1.59485,1.11751,0.93028,1.2627,-1.44668,-0.892185,-1.26431,0.738783,1.01459,0.759022,-1.22678,0.114746,-1.00697,-0.627418,-0.0641697,0.593039,0.300379,-1.58941,-0.0255413,-1.09944,0.189472,-0.315726,-1.49573,-1.44346,-1.43366,-0.114399,-0.295417,-0.147042,-0.0923592,-0.201667,-1.60057,-0.654183,-1.18131,-1.21925,0.323615,-0.894557,-0.127963,-0.321651,-0.430904,1.31584,-0.103203,-0.806595,-0.969207,-0.807863,-0.054425,0.659233,-0.086997,1 +0.788863,-0.791014,-0.661481,0.186671,-0.163793,-0.882793,0.597106,0.0163274,0.550743,0.0562696,0.527835,0.531429,0.703567,-0.148016,0.139572,-0.421266,0.8496,0.267011,0.216743,-0.168241,0.0798904,0.509194,0.775078,-0.817488,-0.860549,0.230809,0.893936,-0.304138,0.110003,-0.800443,-0.363541,-0.917864,-0.192288,-0.675448,0.133005,-1.1488,-0.53213,0.440766,-0.930449,0.963001,-0.744795,-0.965974,0.497575,0.187064,0.286018,0.393566,0.0670106,0.0268058,-0.382009,-0.108273,0.100319,0.565857,0.632186,0.503796,-0.968712,0.506031,0.836187,-0.348739,-0.422022,-0.527324,-0.0293348,-1.01499,0.577207,-0.940558,0.264044,0.272897,-0.145623,-0.0552285,-1.03239,0.443732,-0.687925,-0.996032,0.695991,0.31334,0.439301,-0.264974,0.728531,-0.190287,0.514221,0.47087,0.416876,0.550324,0.198736,-0.694955,-0.690783,0.399087,0.112647,-0.522303,0.395592,-0.961812,-0.621737,-1.22065,0.229377,0.436377,0.385563,-0.858441,-0.413301,0.571396,-0.936384,0.872112,-0.842366,-1.15808,0.568166,0.480995,0.0392049,-0.539052,-0.0999973,0.384361,-0.00185501,0.212055,0.123569,0.589399,0.844871,0.879797,-0.921692,-0.535269,-0.896971,0.325126,0.699821,0.750974,-0.846612,-0.960235,-0.995375,-0.990574,-0.799875,-0.771709,-0.0792109,-0.742954,0.270881,0.166962,-0.150395,-0.811972,-0.155736,0.0946419,-0.206856,-0.852173,0.588001,-0.609422,0.608578,-0.07057,0.0134145,0.830498,0.790438,0.552622,-0.114399,-0.295417,-0.576881,0.279452,0.14892,0.967199,0.0299111,0.543192,0.553219,-1.18577,-0.767168,-1.22057,-0.147108,-0.35275,-0.810688,-1.39917,-0.78369,-1.05039,-0.639398,-0.616248,0.366176,-0.0131814,1 +0.844148,-0.824983,-0.950613,0.689876,-0.163793,0.801522,0.615875,-0.155207,0.467688,-0.813083,0.527835,0.326495,0.0849225,0.0922831,0.113349,-0.280362,0.754544,-0.207004,0.535242,0.380964,0.156974,0.509194,0.700245,-0.766357,-0.636631,0.488025,0.612433,0.792245,2.03847,-0.817388,-0.363541,-0.960453,-0.0962954,-0.88229,0.17069,-1.02649,-0.575811,0.845605,-0.930449,0.332344,-0.909678,-0.953045,-0.358363,0.43456,0.147685,0.528478,-0.201157,0.448378,-0.0589837,-0.394595,-0.118726,0.620837,0.610945,0.395122,1.32042,0.12174,0.719485,-0.310983,1.51836,-0.995802,0.443829,-1.01499,0.505451,-0.948077,0.496863,0.409154,-0.145623,-0.193047,-1.03239,-0.537174,-0.919477,-0.996032,0.3961,-0.0530614,-0.0931708,-0.599308,0.535153,0.349069,0.537921,0.519102,0.668665,0.497487,0.198736,0.0742486,-0.954311,0.626545,-0.379395,-0.115164,1.83275,-0.0386092,-0.621737,-1.24218,0.348249,-0.015034,0.354894,-0.757707,-0.16814,0.768066,-0.890103,0.611906,-0.929932,-1.22155,0.248534,0.434436,0.200508,0.00956091,-0.591212,0.33123,-0.0667803,0.185224,0.096186,0.623141,0.926521,0.848615,-0.615177,0.296616,-0.456928,0.842875,0.78435,0.708706,-0.827069,1.45416,0.92257,-0.797076,-0.840902,-0.800686,-0.935548,-0.775203,-0.482252,0.538626,-0.112518,-0.697267,-0.125305,-0.447964,-0.232249,0.0602642,0.964469,0.0523093,0.389304,-0.147053,0.118739,0.429869,0.524009,0.617041,-0.154676,-0.295417,-0.218682,-0.672385,-0.565737,0.490825,-0.297884,0.630142,0.162674,-1.18577,-0.818124,-1.22057,-0.258181,-0.453234,-0.859951,-1.36867,-0.692068,-1.07069,-0.597281,-0.678673,0.31446,0.0237264,1 +-0.26156,2.09643,1.49255,-1.19052,-0.163793,1.01885,-1.38298,0.689271,-1.50488,0.815229,-0.0853765,-0.420908,-0.216855,0.416687,0.152683,-0.311674,-1.56135,0.328174,0.0697426,0.713378,-1.37185,-1.38723,-1.23472,1.45784,0.97345,-1.17829,-0.589369,-0.601727,-0.354896,1.09745,-0.363541,-0.555854,-0.464268,0.736473,-1.02266,-1.3445,-0.462241,-1.12952,0.679619,-1.4607,1.92867,-0.397118,0.1552,0.288312,0.0219282,-0.123599,-0.990761,-1.60327,0.613985,0.780831,-0.750092,-1.42443,-1.34322,-0.739916,0.62571,0.217812,-1.42603,2.34451,0.570733,0.954374,-0.935393,0.502003,0.469574,1.30767,-0.961315,-0.544649,-0.145623,0.0998167,0.178049,0.540214,1.80769,1.37889,-0.278654,0.117926,0.215102,-0.432141,-1.49533,0.571847,-0.350814,-0.288784,-1.60888,-1.37294,-0.821295,0.515259,1.33636,-1.35423,1.9925,-0.391437,-1.30895,1.29925,0.436877,-1.22065,-1.19708,0.197395,0.722931,-0.918882,0.465192,-1.43464,0.88401,-1.46011,1.99259,-0.946518,-0.275662,-0.0893521,0.175692,0.695327,-0.62396,-1.51506,0.829189,-0.083086,0.096186,-1.46887,-1.50258,-1.38614,1.26478,0.234995,1.19531,-1.13399,-1.40497,-0.421938,1.11751,0.918891,1.2627,-1.43286,-0.522943,-1.43817,0.726002,1.02266,0.745075,-1.22678,0.228378,-1.00697,-0.612203,-0.0509354,0.593039,0.252356,-1.36556,-0.259093,-1.12253,0.174175,-0.368388,-1.39234,-1.44346,-1.42292,-0.114399,-0.295417,-0.0754024,1.4395,1.83443,-1.19391,-0.625679,-1.18131,-1.21925,1.39975,-0.512391,0.964648,-0.337518,-0.509058,1.31584,-0.0574631,-0.737879,-0.989504,-0.744688,0.00799982,0.693711,-0.0131814,1 +-0.0957042,-0.723074,0.307112,-0.793254,0.149741,0.529859,-1.42052,0.715661,-1.32838,0.649637,-0.196869,-0.119536,0.190545,0.320568,0.310021,-0.342986,-1.13793,0.802189,-0.261007,0.265342,-0.369763,-1.38723,-1.53405,0.972098,1.02676,-1.56971,-1.49884,-0.97763,-1.14695,1.19065,-0.363541,-0.896569,-0.240285,1.36599,-1.08547,-1.41789,-0.427297,-1.44848,1.73449,-0.768214,0.162063,-0.539332,0.1552,-0.0604324,0.0345039,-0.562065,2.15276,-0.380714,0.412094,0.81097,-0.118726,-1.39144,-1.50253,-0.30522,1.20654,-0.855002,-1.48887,-0.87732,-0.497231,0.987058,-0.935393,-0.563504,0.684839,1.30015,-1.19413,-0.726326,-0.145623,0.0825895,1.32694,0.122123,0.109641,0.658753,0.171182,0.288913,0.733562,0.152944,-1.38106,0.37252,-0.374513,-0.083798,-1.01375,-1.39407,-0.75833,0.894733,1.27554,-1.46796,-1.08592,-0.842198,-0.857748,1.1506,-0.621737,-1.28525,-1.16142,0.237225,0.630922,-0.687193,-0.055775,-1.41497,1.19255,-1.41192,0.120864,-1.0523,0.235749,-0.287228,0.0392049,0.558174,-0.492969,-0.465731,0.894114,-0.0965015,0.137261,-1.07521,-1.30866,-1.43812,1.34652,0.74337,1.22852,-1.56701,-1.53176,-1.64768,1.04911,0.75945,0.87533,-1.40521,-0.892185,-0.974544,0.495941,1.28065,0.382456,-1.22678,0.00111404,-0.995501,0.315947,0.399031,0.681916,1.02072,-1.40626,1.9856,-1.64186,-0.896586,-1.0135,-1.01756,-1.41272,-1.42292,-0.114399,-0.295417,-0.576881,0.0563654,-0.242119,-0.856966,-0.625679,-1.25377,-1.21925,0.617106,-0.843601,0.232705,-0.226446,0.272484,1.41437,-0.0269699,-0.394299,-0.94891,-0.871037,-0.11685,0.659233,-0.216174,1 +-0.206275,2.11908,1.43473,-0.76677,-0.163793,0.508126,-1.40175,0.781636,-1.33877,0.59444,-0.241467,-0.0472066,0.190545,0.320568,0.283798,-0.436922,-1.53543,0.741026,-0.297757,0.352059,-0.331221,-1.38723,-1.50198,0.963576,1.02676,-1.53616,-0.611023,-0.445101,-1.14695,1.19065,-0.363541,-0.53456,-0.400273,1.36599,-1.03523,-1.36896,-0.436033,-1.10498,0.679619,-1.47307,1.91689,-0.397118,0.124075,-0.0941819,0.0848068,-0.719462,-0.960965,-0.394766,0.385176,0.81097,-0.0671862,-1.39144,-1.49191,-0.184472,1.21792,-0.83899,-1.45296,2.40744,-0.542356,0.976163,-0.935393,0.529092,0.541329,1.28511,-1.19413,-0.590068,-0.145623,0.0825895,0.116501,0.443732,1.76909,1.33292,0.146191,0.31334,0.677512,-0.0978067,-1.41622,0.302169,-0.338964,-0.059682,-0.979411,-1.3835,-0.670179,0.915245,1.26541,-1.43953,2.00512,-0.493222,-0.824325,1.14278,0.529942,-1.19912,-1.18519,0.170841,0.692262,-0.949102,-0.10685,-1.4248,0.806874,-1.46974,1.99259,-0.925361,0.146252,-0.333786,0.0392049,0.433489,-0.591212,-0.571992,0.894114,-0.083086,0.109878,-0.98523,-1.28824,-1.41733,1.35674,0.758775,1.22852,-1.43522,-1.46414,-0.495906,1.05888,0.770839,0.865882,-1.41903,-0.481916,-1.35124,0.495941,1.28065,0.368509,-1.22678,0.171562,-1.00697,0.315947,0.425499,0.66922,0.252356,-1.36556,-0.323969,-1.64186,-0.957772,-0.987172,-1.3665,-1.44346,-1.42292,-0.114399,-0.295417,-0.361962,1.39489,1.82095,-1.22877,-0.625679,-1.25377,-1.21925,1.38577,-0.499652,0.964648,-0.274048,0.205495,1.39795,-0.0574631,-0.749332,-0.989504,-0.786805,0.00799982,0.693711,-0.0685431,1 +0.844148,-0.824983,-0.950613,0.676634,-0.163793,0.790656,0.644028,-0.128817,0.509216,-0.785485,0.505536,0.36266,0.130189,0.0682531,0.152683,-0.374298,0.771827,-0.207004,0.535242,0.3087,0.195515,0.520618,0.668174,-0.749313,-0.636631,0.521575,0.590779,0.666944,2.02125,-0.783497,-0.363541,-0.939159,-0.0802965,-0.891283,0.145567,-1.00203,-0.575811,0.845605,-0.930449,0.332344,-0.909678,-0.940117,-0.28055,0.42331,0.172837,0.472265,-0.216055,0.434325,-0.0724431,-0.439803,-0.0800712,0.631833,0.589704,0.503796,1.33181,0.169776,0.719485,-0.336154,1.51836,-0.974012,0.40356,-1.01499,0.541329,-0.955596,0.484609,0.409154,-0.145623,-0.210274,-1.03239,-0.569335,-0.919477,-0.98071,0.408596,-0.0408481,-0.0371211,-0.599308,0.543943,0.290444,0.56162,0.519102,0.74878,0.529189,0.223922,0.0947607,-0.954311,0.654977,-0.429861,-0.0860832,1.81604,0.00050953,-0.621737,-1.24218,0.360136,-0.015034,0.416233,-0.787927,-0.219216,0.768066,-0.890103,0.621543,-0.929932,-1.20039,0.28689,0.446076,0.212916,-0.102655,-0.62396,0.357795,-0.0797654,0.19864,0.0688029,0.645635,0.946934,0.827826,-0.67648,0.281211,-0.440322,0.842875,0.78435,0.677006,-0.827069,1.45416,0.932018,-0.810897,-0.830645,-0.858639,-0.884424,-0.767141,-0.440412,0.54895,-0.0746406,-0.697267,-0.125305,-0.408261,-0.283036,0.0602642,0.984819,0.0652845,0.331601,-0.11646,0.0924082,0.429869,0.544504,0.627778,-0.154676,-0.311488,-0.147042,-0.70213,-0.592705,0.479206,-0.283632,0.586667,0.162674,-1.17179,-0.779907,-1.20997,-0.274048,-0.486729,-0.868162,-1.36867,-0.737879,-1.07069,-0.576223,-0.678673,0.348938,0.0421803,1 +0.567721,-0.77969,-0.618111,0.173429,-0.163793,-0.817594,0.587722,-0.168402,0.540361,-0.0541244,0.572432,2.08651,0.643211,0.753107,0.414914,-0.358642,0.832317,0.25172,1.95624,-0.0670718,0.735099,0.49777,0.796459,-0.817488,-0.871212,0.208442,0.91559,-0.3198,0.127221,-0.800443,-0.363541,-0.502617,0.0156963,-0.621489,0.133005,0.318935,-0.523394,0.453034,-0.77777,1.0001,-0.72124,0.650094,0.419762,0.220813,1.85798,0.528478,0.0372142,0.153277,1.21966,-0.243899,1.87845,0.554861,0.695909,0.491722,-0.968712,0.457995,0.836187,-0.348739,-0.391939,-0.560008,-0.0796714,-0.9879,0.828349,-0.940558,0.276298,0.0912201,-0.145623,0.0309077,0.896105,0.508053,-0.662198,-0.873455,0.683495,1.84001,0.327202,-0.348557,0.737321,-0.143387,2.07839,0.494986,0.268091,0.539757,1.62174,-0.725723,-0.731325,0.389609,0.150497,-0.68225,0.378881,-0.961812,-0.621737,-0.29469,0.205603,0.516038,-0.319842,0.843966,-0.362226,0.561563,-0.936384,0.872112,-0.83142,0.51326,0.491454,0.457715,0.659602,-0.539052,-0.0181282,0.410926,-0.0537952,1.94266,0.876604,0.758109,0.753014,0.879797,-0.901258,-0.319595,-0.896971,0.287471,0.682915,0.750974,-0.856384,-0.948846,-0.995375,0.12895,-0.799875,0.561204,-0.104773,-0.718768,0.284827,0.177286,-1.26778,-0.674326,0.483318,1.82833,0.491465,-0.852173,0.547302,-0.544546,0.758607,0.495404,1.4748,0.869268,0.790438,0.552622,-0.114399,-0.279346,-0.576881,0.338942,0.202856,0.978818,-0.0270967,0.543192,0.538199,-1.03203,0.188246,-1.16753,-0.147108,-0.151782,-0.818898,0.872581,1.31215,1.10105,-0.828921,-0.553823,0.211029,-0.806699,1 +0.678292,0.0129409,0.798636,-0.965403,-0.163793,0.877588,-1.38298,0.728856,-1.29724,1.10501,1.31944,0.254166,1.23168,0.164373,0.388691,0.0797275,-1.55271,0.389337,-0.236507,0.106362,0.0670431,-1.3758,-0.892628,1.39819,0.952124,-1.64799,-1.66125,-0.899317,-0.819794,1.15676,0.129222,1.58426,-1.77617,1.0962,-0.947294,-0.0724618,-0.453505,-1.47302,0.735139,-1.52253,0.432942,0.611308,0.917762,0.254563,0.22314,1.78766,-0.901372,-0.324504,-0.032065,0.660275,0.293594,-1.35845,-1.40695,0.455497,0.89904,-1.87978,-1.50683,-0.764053,0.269898,1.3139,-0.935393,1.35983,-1.57545,1.32271,-1.04709,0.136639,-0.145623,0.0136805,0.0139215,-0.183405,0.611336,0.689397,1.37074,0.38662,0.789612,-0.348557,-1.45138,0.220093,0.0520793,0.157362,-0.555947,-1.37294,-0.0531233,0.833196,1.36677,-1.42058,-0.530793,-0.827657,-1.20868,1.26796,1.91428,1.85871,-1.23274,1.83044,-0.135823,-0.918882,0.311966,-1.44447,1.02285,-1.48902,0.263159,1.25373,0.644877,0.480995,0.0019811,-0.040313,-0.820445,-1.03689,0.803219,0.0510691,-0.054421,-0.377873,-1.04329,-1.26141,0.927617,0.943638,1.20361,-1.54818,-1.47259,-1.60542,1.12728,0.782228,1.15877,-1.08732,1.79508,1.25664,1.08387,1.13553,1.34479,-1.09256,0.531396,0.392431,0.437671,0.518139,0.440678,0.348402,-1.57923,0.0652845,-1.51491,-1.21781,-0.394719,-1.46989,-1.44346,-1.43366,-0.154676,-0.295417,-0.0037626,-0.122104,-0.255603,-1.60057,-1.05324,-1.22478,-1.21925,0.463373,1.28379,0.667627,-0.337518,1.64577,1.36511,0.0645099,-1.00129,0.248591,0.245044,1.19407,0.624756,1.14941,1 +-0.0404188,-0.349405,-0.96507,0.173429,-0.163793,-0.828461,0.60649,-0.155207,0.498834,-0.633693,0.527835,2.00213,0.2509,0.584897,0.362468,-0.421266,0.72862,-0.237586,2.07874,0.250889,0.786488,0.486345,0.657483,-0.732269,-0.871212,0.532759,0.558298,0.82357,0.127221,-0.910588,-0.363541,1.29678,-0.560261,-0.873297,0.133005,-0.145849,-0.523394,0.857873,-0.902689,0.270515,-0.76835,1.27066,-0.109363,0.389561,1.7448,0.483507,-0.230953,0.378116,1.5696,-0.394595,1.73672,0.609841,0.547222,0.588321,-0.957323,0.137752,0.692554,-0.298398,-0.40698,-0.908643,-0.0696041,1.20632,-0.822018,-0.978154,0.276298,0.318316,-0.145623,-0.158592,-1.03239,-0.585415,-0.945205,-0.628302,0.471073,1.65681,0.0749782,-0.599308,0.508783,0.196642,2.09024,0.482928,0.77167,0.476353,1.62174,-0.705211,-0.913768,0.636022,-0.278464,0.0447828,0.378881,-1.01658,-0.44724,1.14809,0.205603,0.0911804,0.293554,-0.717413,-0.372441,0.758232,-0.890103,0.573357,-0.41548,1.27488,0.350816,0.469355,0.585155,-0.22734,-0.689455,0.344513,-0.0797654,1.92924,0.972445,0.814346,0.916315,0.775855,-0.67648,0.312022,-0.855458,0.861702,0.775897,0.666439,-0.875928,-0.960235,-1.01427,-0.921468,1.04634,-0.945568,-0.743831,-0.91226,-0.286996,0.177286,0.47458,-0.674326,0.392025,1.55041,0.212137,0.0922795,0.964469,0.0652845,0.285438,0.663666,1.60645,0.416946,0.503515,0.617041,-0.114399,-0.279346,-0.218682,-0.76162,-0.579221,0.421111,-0.0270967,0.543192,0.538199,0.40747,1.37296,1.07073,-0.289916,-0.453234,-0.868162,0.704868,0.24705,0.837194,-0.134002,0.382549,0.538563,0.743429,1 +0.236008,0.171467,0.842006,-0.938919,-0.163793,0.855855,-1.42052,0.135082,-1.48411,0.663437,0.360595,-0.155701,0.0396559,0.272508,0.047791,0.549409,-1.51815,-0.176423,0.339242,0.742284,-0.857958,-1.3758,-0.529153,1.18514,1.00544,-1.18947,-1.61794,-0.961967,-0.957542,1.12287,-0.363541,-0.981748,-0.176289,1.14116,-1.3367,1.59097,-0.383617,-1.48529,0.665739,-1.48543,0.538939,-0.435904,0.59095,0.43456,-0.103829,0.517235,-0.91627,-1.95458,0.546688,0.47944,-0.363542,-1.39144,-1.23702,1.98901,1.0357,-0.102431,-1.54274,-0.600444,0.134522,0.758267,-0.905191,-0.446117,0.577207,1.35278,-1.04709,0.863346,-0.145623,0.0309077,0.649914,-0.103003,0.68852,0.735363,0.00874156,-0.175195,-0.0090963,-0.0142232,-1.42501,0.700824,0.0994785,0.507044,-1.52877,-1.39407,-0.0783093,0.792172,1.02215,-1.38267,-0.29108,-1.17663,-1.10842,1.23666,-0.540305,-0.574631,-1.0901,-0.107972,-1.1786,1.61962,0.403902,-1.41497,1.02285,-1.50829,0.394508,-0.0579573,-0.186165,0.143443,0.0888367,0.91976,-0.509343,-1.7143,0.686353,0.0108226,0.164644,-0.60282,-1.25763,-1.20944,1.39761,1.28255,1.23682,-1.51994,-1.53176,-1.59485,1.01979,0.736673,1.06429,0.681802,-0.881929,0.879945,0.943281,1.17584,0.6335,-1.22678,-1.89275,-0.639915,-1.22083,-0.447964,0.339104,0.284372,-1.56906,-0.116367,-0.660899,0.388328,0.171402,-1.46989,-1.46396,-1.43366,-0.154676,-0.295417,-0.361962,-0.00312447,-0.0803097,-1.54248,-1.06749,-1.23928,-1.21925,0.351567,-1.08564,-0.0855315,-0.242313,0.629761,1.49648,0.140743,1.20907,0.7966,-0.61834,-0.241699,0.107597,-1.2865,1 +0.678292,-0.836307,-0.950613,-0.356261,-0.163793,0.323394,0.615875,-0.221182,0.509216,-0.661291,0.572432,2.05035,0.2509,0.656987,0.349356,-0.296018,0.72862,-0.191713,2.02974,0.294248,0.863572,0.49777,0.625412,-0.766357,-0.871212,0.555125,0.536644,0.776582,0.196095,-0.88517,-0.363541,-0.85398,0.0956904,-0.7384,1.10025,0.441246,2.19353,0.882409,-0.361373,0.270515,-0.921456,0.430309,-0.15605,0.412061,1.7951,0.573449,-0.230953,0.406221,1.43501,-0.379525,1.81403,0.609841,0.536602,0.467572,-0.285388,0.105727,0.683577,-0.336154,0.299982,-0.908643,-0.603172,-1.00596,0.756594,-0.820251,1.57518,0.0912201,-0.145623,-0.089683,1.13204,-0.585415,-0.945205,-0.919422,0.496064,1.73009,0.00491612,-0.432141,0.499993,0.266993,2.09024,0.482928,0.81745,0.48692,1.64693,-1.46416,-0.913768,0.645499,-0.480327,0.00116081,-0.00547678,-0.860103,-0.621737,-0.40236,0.395797,0.144288,-0.289173,1.02529,1.46627,0.758232,-0.890103,0.573357,-0.940878,0.238229,0.325245,0.457715,0.622378,-0.102655,-0.640333,0.410926,-0.0797654,1.92924,0.93137,0.814346,0.936727,0.765461,-0.645829,0.281211,-0.888668,0.861702,0.767445,0.645306,-0.866156,-0.550244,-0.976479,0.184235,-0.840902,0.735063,-0.743831,-0.871949,-0.259102,1.71556,-0.245088,1.20684,0.498534,1.68276,0.364498,0.15631,0.974644,0.143135,0.262357,0.525997,1.58012,0.416946,0.503515,0.617041,-0.114399,-0.279346,-0.361962,-0.791365,-0.660126,0.409492,0.072667,1.29676,0.342926,-1.10191,-0.130225,-1.19936,-0.210578,-0.241101,-0.498687,0.689621,1.3236,0.958973,-0.72363,-0.678673,0.0731194,-0.825153,1 +1.17586,-0.71175,0.177002,-0.912434,0.741974,0.812389,-1.40175,0.293422,-1.52564,0.691035,0.2937,-0.300359,-0.00561078,0.320568,0.0346794,0.0327593,-1.52679,-0.237586,0.302492,0.800095,-1.12775,-1.38723,-0.614677,1.2448,0.984112,-1.11119,-1.802,-0.914979,-0.974761,1.13982,0.322042,1.59491,-1.74417,1.12318,-0.959856,0.0498496,-0.409825,-1.14179,1.80389,-0.879506,0.326946,0.378594,0.59095,0.412061,-0.0912531,0.359837,2.16766,-2.01079,0.600526,0.419162,-0.569702,-1.41343,-1.23702,2.1339,1.05848,0.0897152,-1.50683,-0.87732,0.0893973,0.747372,-0.935393,1.2605,-1.6472,1.33023,-1.04709,0.182058,-0.145623,0.168726,1.61416,-0.00652,0.135369,0.658753,-0.0537357,-0.175195,-0.149221,-0.348557,-1.47775,0.630473,0.00468017,0.422638,-1.65466,-1.3835,-0.204239,0.863965,0.951202,-1.35423,-1.67889,-1.00214,-1.07499,1.22884,1.83285,2.00945,-1.23274,-0.254016,-0.503861,0.199267,0.311966,-1.43464,0.945718,-1.42156,0.306942,1.27488,-0.211736,0.155082,0.175692,0.720264,-0.509343,-1.82056,0.530532,-0.0428395,0.150952,-0.760283,-1.32907,-1.24063,1.39761,1.32877,1.24513,-1.46346,-1.49795,-1.68995,1.04911,0.748062,1.06429,-0.852361,1.87713,1.69128,0.879376,1.17584,0.41035,-0.989324,0.455642,0.759488,-1.3882,-0.500902,0.339104,0.444448,-1.57923,1.76502,-0.672439,0.434217,0.105574,-0.759093,-1.40247,-1.42292,-0.154676,-0.295417,-0.0037626,-0.285701,-0.916324,-1.37982,-1.153,-1.22478,-1.21925,0.589155,1.20735,0.60398,-0.385121,0.462288,1.439,0.354196,-0.211056,0.167405,0.497742,1.56862,0.590279,1.38932,1 +-0.0404188,-0.179555,-0.96507,1.52414,-0.163793,-1.24139,0.615875,-0.128817,0.488452,-0.606094,0.494387,1.99007,0.2509,0.536837,0.375579,-0.483891,0.737261,-0.252877,2.09099,0.193078,0.773641,0.49777,0.668174,-0.442527,-0.871212,0.521575,0.579952,0.807908,0.00669205,-0.936007,-0.0421738,1.37132,0.415667,-0.900276,0.333991,0.0498496,-0.575811,0.845605,-0.930449,0.295247,-0.744795,1.20602,-0.109363,0.378311,1.71965,0.416051,-0.216055,0.364063,1.6369,-0.409664,1.72383,0.609841,0.557843,0.66077,-0.923157,0.153764,0.701531,-0.248057,-0.181354,-0.908643,1.93379,1.33274,-1.00141,-0.993192,-0.152578,0.363735,-0.145623,-0.175819,-1.03239,-0.569335,-0.945205,-0.658946,0.458577,1.60796,0.103003,-0.682891,0.517573,0.161467,2.07839,0.482928,0.760225,0.48692,1.63434,0.987037,-0.923904,0.636022,-0.240614,0.0447828,0.545993,-1.04787,-0.284376,1.19115,1.42998,0.0380732,0.0788652,-0.767781,-1.45524,0.758232,-0.890103,0.592631,-0.338859,1.19026,0.363601,0.457715,0.560339,-0.302151,-0.705829,0.317947,-0.0667803,1.90241,0.986136,0.814346,0.926521,0.786249,-0.707132,0.312022,-0.838852,0.861702,0.78435,0.687573,-0.895471,-0.41358,-0.787519,0.585053,1.21045,-0.510922,-0.756612,-0.944508,-0.314889,0.414738,0.398826,-0.789031,0.361594,1.49748,0.135956,0.0762718,0.964469,0.0652845,0.296979,0.755446,1.64595,0.416946,0.513762,0.617041,-0.114399,3.57762,-0.147042,-0.731875,-0.538769,0.455968,0.115423,0.0214939,0.973806,0.463373,1.3857,1.1662,-0.321651,-0.520223,-0.884583,0.460922,-0.0278136,0.654524,0.0134047,0.320124,0.45237,0.872606,1 +0.236008,-0.598517,0.581787,-0.76677,-0.163793,0.497259,-1.42052,0.662881,-1.32838,1.13261,-0.174571,-0.27625,0.718656,0.392657,2.28986,-0.217738,-0.67993,0.832771,-0.138507,2.21647,-0.511082,-1.38723,-1.52336,0.861314,1.03743,-1.51379,-1.13072,-0.993292,-1.12973,1.19065,-0.363541,-0.960453,-0.416272,1.40196,-1.31158,1.8356,-0.418561,-0.920965,1.29033,-1.3865,0.138508,-0.371261,0.995575,0.175814,0.323745,-0.415909,1.72071,-0.380714,0.479391,2.01654,-0.273346,-1.39144,-1.48129,-0.522568,1.22931,-0.630832,-1.48887,-0.776638,-0.57244,0.943479,-0.895124,-0.888573,0.326064,1.30015,-1.21864,1.18128,-0.145623,0.685543,1.15255,0.00956042,0.186825,0.628109,0.296137,0.178993,2.48511,0.236527,-1.258,0.431145,-0.410063,0.338232,-1.08242,-1.39407,-0.859074,0.884477,1.22487,-1.46796,0.112647,-0.856738,-0.790903,1.13495,-0.621737,-0.488495,-1.0901,0.250502,-1.94534,1.75057,-0.0966351,-1.34613,1.2234,-1.46974,-0.0214317,-0.311832,1.98733,1.0397,1.05666,0.732733,-0.329231,-0.319621,2.59516,0.695014,1.3695,-1.23267,-1.33928,-1.4589,1.35674,0.635533,1.22022,-1.53877,-1.52331,-1.49975,1.02957,0.793616,0.837538,0.750908,-0.851159,1.0538,0.636534,1.29677,0.424297,-1.2371,-1.68443,-0.433446,0.239869,0.306391,0.66922,1.78909,-0.378605,2.07643,-1.54953,-0.590654,-0.934509,-1.39234,-1.46396,-1.40145,-0.154676,-0.295417,-0.720161,0.190217,0.256793,-1.13582,-1.21001,-1.26826,-1.21925,0.477349,-1.0729,-0.0112764,-0.194711,0.585102,1.43079,0.0950031,1.09455,0.613931,-0.365642,-0.241699,-0.0992671,-1.47104,1 +-0.0404188,-0.0776455,-0.603655,1.49765,-0.163793,-1.35006,0.578337,-0.0892324,0.550743,-0.0403251,0.516686,2.0624,0.628122,0.632957,0.414914,-0.452579,0.823675,0.205848,2.00524,-0.11043,0.658016,0.509194,0.807149,-0.570354,-0.871212,0.219625,0.926417,-0.3198,0.00669205,-0.825861,0.107797,1.38196,0.415667,-0.675448,0.346553,0.0498496,-0.575811,0.465302,-0.930449,1.02483,-0.238368,1.20602,0.419762,0.198314,1.80768,0.427294,0.022316,0.125173,1.36771,-0.19869,1.8398,0.554861,0.727771,0.588321,-0.911769,0.490019,0.836187,-0.336154,-0.211438,-0.570903,1.94386,1.3508,-0.965528,-0.963115,-0.177085,0.363735,-0.145623,0.0998167,-1.03239,0.556295,-0.44351,-0.597658,0.646009,1.76673,0.369239,-0.515724,0.746111,-0.202012,2.07839,0.494986,0.233756,0.539757,1.64693,0.987037,-0.72119,0.389609,0.200962,-0.609547,0.495859,-1.00875,-0.249477,1.19115,1.40621,0.4231,0.0788652,-0.818148,-1.45524,0.571396,-0.920957,0.88175,-0.0323775,1.1691,0.504239,0.446076,0.609971,-0.663737,-0.0836234,0.397643,-0.0408102,1.92924,0.903987,0.746862,0.732602,0.900586,-0.901258,-0.319595,-0.872063,0.268644,0.682915,0.76154,-0.875928,-0.402191,-0.796967,0.598874,1.24122,-0.481946,-0.130336,-0.759079,0.22904,0.39409,0.398826,-0.811972,0.361594,1.72246,0.275621,-0.852173,0.537127,-0.674297,0.804769,0.60248,1.55379,0.882192,0.790438,0.563358,-0.114399,3.80261,-0.433602,0.398432,0.243309,1.00206,0.086919,0.00700225,0.898702,0.463373,1.3857,1.17681,-0.194711,-0.296925,-0.84353,0.430429,-0.0736243,0.634227,-0.00765348,0.320124,0.435131,0.854152,1 +0.291294,2.32289,1.1456,-0.978646,-0.163793,0.942788,-1.41114,0.623296,-1.27647,1.13261,1.34173,0.193891,1.15623,0.212433,0.414914,2.4751,-1.52679,0.588118,-0.322257,-0.0526191,0.0413487,-1.38723,-1.06367,1.33854,0.962787,-1.69272,-1.37974,-0.664378,-0.768139,1.14829,-0.363541,-0.289671,-0.30428,1.14116,-1.32414,1.8356,-0.427297,-0.957769,0.735139,-1.32468,1.92867,0.0424523,0.855512,0.198314,0.172837,1.90009,-0.946066,-0.198033,0.0352319,0.554788,0.254939,-1.35845,-1.44943,0.262299,0.89904,-1.94383,-1.52478,2.48295,0.345107,1.41196,-0.885057,0.872221,0.326064,1.35278,-1.03484,1.31754,-0.145623,0.134271,0.619141,0.0417213,1.67905,1.47082,1.34575,0.38662,0.859674,0.0693602,-1.40743,0.290444,-0.0664186,0.181478,-0.555947,-1.3835,-0.16646,0.77166,1.36677,-1.45849,1.8411,-0.943982,-1.20868,1.29143,1.1814,-0.466961,-1.07821,1.93666,-1.82266,1.71028,0.424332,-1.4248,0.683458,-1.47938,2.0911,-0.10027,0.683233,0.411156,0.0392049,0.209057,-0.705829,-0.718102,0.712323,-0.0160084,0.0414198,-0.467852,-1.08412,-1.30299,0.845879,0.820396,1.20361,-1.59525,-1.5064,-1.33068,1.09797,0.782228,1.16822,0.792372,0.215542,0.99585,1.1989,1.14359,1.38663,-1.22678,-1.74124,-0.513739,0.498534,0.544608,0.542252,0.140302,-1.48766,-1.02463,-1.63032,-1.43197,-0.592204,-0.901251,-1.42297,-1.41218,-0.0741224,-0.311488,-0.433602,0.889223,1.56475,-1.5541,-1.18151,-1.22478,-1.20423,1.62336,-0.321308,1.25106,-0.194711,1.82441,1.43079,0.216976,1.14036,0.756007,-0.407758,-0.11685,-0.0303125,-1.48949,1 +0.678292,-0.77969,-0.632568,-0.329776,-0.163793,0.323394,0.587722,-0.194792,0.540361,-0.109321,0.60588,2.09857,0.643211,0.813181,0.388691,-0.280362,0.8496,0.282302,1.91949,-0.0237135,0.799335,0.509194,0.796459,-0.843053,-0.881875,0.197259,0.904763,-0.335463,0.230532,-0.79197,-0.363541,-0.800743,0.0956904,-0.45062,1.13794,0.441246,2.16732,0.453034,-0.76389,0.987733,-0.733018,0.456166,0.388637,0.254563,1.87056,0.607177,0.0521124,0.16733,1.11198,-0.304177,1.91711,0.554861,0.685289,0.407197,-0.274,0.441983,0.836187,-0.348739,0.360149,-0.581798,-0.432027,-1.00596,0.756594,-0.647311,1.61194,0.0458009,-0.145623,0.0309077,1.10126,0.491973,-0.675061,-0.919422,0.708486,1.87665,0.285165,-0.264974,0.746111,-0.0964861,2.06654,0.494986,0.290981,0.539757,1.63434,-1.46416,-0.761732,0.389609,0.13788,-0.725872,0.0112344,-0.828808,-0.621737,-0.359292,0.395797,0.542591,-0.319842,1.00514,1.46627,0.571396,-0.936384,0.872112,-0.820474,0.280542,0.478669,0.457715,0.684418,-0.439304,-0.00175434,0.410926,-0.0667803,1.91583,0.849221,0.780604,0.773427,0.890192,-0.911475,-0.335,-0.921879,0.287471,0.691368,0.750974,-0.846612,-0.58441,-0.967031,0.239521,-0.820388,0.764039,-0.117554,-0.678457,0.298774,1.72588,-0.264027,1.17243,0.605043,1.89451,0.631129,-0.836165,0.567652,-0.505621,0.735525,0.449514,1.46163,0.856345,0.790438,0.563358,-0.114399,-0.279346,-0.648521,0.338942,0.189372,0.978818,0.101171,1.35472,0.372968,-1.10191,-0.0920088,-1.19936,-0.0995054,0.0156918,-0.367318,0.704868,1.3236,0.97927,-0.702572,-0.678673,0.0731194,-0.862061,1 +1.01,1.47365,1.72386,-1.21701,-0.163793,1.02972,-1.38298,0.755246,-1.48411,1.20161,-0.230317,-0.360634,0.281078,0.416687,2.04074,-0.421266,-1.53543,0.404628,-0.0772573,2.47662,-1.16629,-1.38723,-1.34163,1.49193,0.97345,-1.15592,0.709876,-0.492089,-0.251585,1.08051,2.37879,1.59491,-1.71218,0.682514,-0.984979,0.123236,-0.479714,-1.44848,0.471421,0.19632,1.66957,0.262238,0.684325,0.209564,0.298594,-0.325968,-0.990761,-1.40654,0.546688,1.97133,-0.621242,-1.42443,-1.36446,-0.546718,0.591544,0.265849,-1.17468,1.82851,0.615858,1.01974,-0.935393,1.28759,-1.6472,1.28511,-0.949061,0.136639,-0.145623,0.995634,-0.591298,1.63368,1.74337,0.873262,-0.328635,0.191206,2.21888,-0.515724,-1.48654,0.501496,-0.410063,1.00142,-1.51732,-1.37294,-0.88426,0.474235,1.34649,-1.35423,1.9925,-0.0279205,-1.29224,1.29143,2.01898,1.96638,-1.23274,0.237225,-0.595871,-0.808074,0.454977,-1.44447,0.991999,-1.21918,1.56571,1.1691,1.52706,0.341318,0.684418,0.583111,-0.656707,-1.39552,2.56919,0.695014,1.75286,-1.45762,-1.48216,-1.40693,1.20348,0.342832,1.18701,-0.832749,-1.12602,0.666439,1.11751,0.975835,1.27215,-0.72797,1.91816,1.74924,0.687658,0.982346,0.675341,-0.979,0.417764,0.679194,-0.368754,0.0946419,0.605736,0.332395,-1.42661,0.324787,-1.18023,0.0670993,-0.539541,-0.78494,-1.35124,-1.43366,-0.114399,-0.295417,-0.0037626,1.97491,2.03669,0.548919,-1.18151,-1.18131,-1.21925,0.882646,1.1564,0.901001,-0.385121,-0.85517,1.26658,0.140743,-0.95548,-0.0152651,0.5188,1.44377,0.521324,1.40777,1 +-1.42255,-0.858953,-0.979526,1.86843,-0.163793,-1.48045,0.728486,-0.287157,0.633799,-1.24086,0.483238,-0.360634,-0.262122,0.224448,0.0215679,-0.0142089,0.616282,-0.482239,-0.726507,0.236437,0.131279,0.532042,-0.283274,-0.817488,-0.743259,0.499209,0.417546,-0.25715,0.299406,-0.851279,-0.363541,-1.40764,1.50359,-0.927256,0.597786,-0.855255,-0.575811,-0.111287,-0.902689,0.394174,-0.956788,-1.4314,-0.825238,0.46831,-0.355343,0.528478,-0.17136,0.392168,-0.530062,-0.711055,0.113204,0.433904,0.324192,0.153625,0.135995,0.137752,0.692554,-0.524933,-1.35461,-1.08296,1.30962,-1.00596,0.756594,-0.895443,0.374327,-0.908002,-0.104166,-1.12332,-1.02213,-0.697978,-0.932341,-0.98071,0.208669,-0.321756,-0.359407,-0.18139,0.710952,0.536672,-0.54041,0.555276,0.119307,0.719402,0.0602135,1.46907,-1.00499,0.692887,-0.72004,-0.565925,1.66564,-0.93834,-0.621737,-0.40236,1.12091,-0.254016,1.64303,-0.969249,-1.00577,0.364893,-0.920957,0.689004,-1.00655,-0.142582,0.0439695,0.352958,0.212916,0.458426,0.653199,0.849254,-0.0927504,-0.364812,0.246793,-0.0966894,-0.094108,-0.0245007,-0.819521,-0.227163,-0.805641,0.607535,0.691368,0.349436,-0.758667,-0.903292,-1.07096,1.64929,-0.974239,-0.800686,-1.17839,-0.936446,-0.858819,0.435386,1.78135,-0.892266,-0.170951,-0.262684,0.0724728,-1.41244,0.0996105,-1.07653,-0.130027,-0.208239,-0.263063,0.236017,0.667471,0.434518,-0.154676,-0.343629,-0.290322,-0.76162,-0.767999,0.421111,0.785265,0.398276,1.12402,-1.18577,-1.06016,-1.23118,-0.258181,-0.475564,-0.794267,-1.49065,-1.0242,-0.197935,1.84546,-0.11685,-2.20238,0.669613,1 +-1.42255,-0.870277,-1.13855,1.86843,-0.163793,-1.49132,0.512647,0.385787,0.602653,-0.399106,0.44979,-0.662006,0.356522,-0.0278667,0.362468,-0.499547,0.633564,0.022358,-0.432507,-0.457297,-0.38261,0.49777,-0.176369,-0.749313,-0.743259,0.845892,0.00611864,0.541643,0.264969,-0.825861,-0.363541,-1.38635,1.50359,-0.88229,0.597786,-0.904179,-0.575811,0.342624,-0.916569,-0.384873,-1.0039,-1.4314,0.0773875,0.355811,-0.405646,0.236168,-0.379935,0.11112,-0.180118,-0.424734,-0.389312,0.576853,0.356054,0.491722,0.135995,0.00965439,0.405288,-0.474592,-1.36965,-0.799695,1.31969,-1.00596,0.756594,-0.902962,0.374327,-0.908002,-0.104166,-1.19223,-1.02213,-1.37336,-1.03525,-0.965388,0.496064,-0.66373,0.313189,-0.18139,0.719742,-0.00268496,-0.54041,0.374406,-0.201153,0.455218,0.0350275,1.47933,-0.822547,0.692887,-0.93452,0.670031,1.64893,-0.946164,-0.610103,-0.380826,1.10903,-0.0283108,1.6737,-0.989396,-1.05685,0.738565,-0.920957,0.236052,-1.02844,-0.121426,0.504239,0.527554,0.262548,-0.688674,-0.62396,0.18512,0.0500852,-0.364812,0.0688029,-0.254152,-0.114521,-0.0141065,-1.07495,-1.04364,-0.789036,0.899357,0.615291,0.212068,-0.758667,-0.91468,-1.08041,1.66311,-0.963983,-0.771709,-0.667144,-0.888073,-0.286996,0.425062,1.78135,-0.903736,-0.0948736,-0.606776,-0.308429,-0.900196,0.608351,-0.791073,0.170031,0.00591297,0.184567,-0.203382,0.278075,0.552622,-0.154676,-0.327558,-0.290322,-1.29703,-1.11859,-0.217927,0.785265,0.383784,1.09397,-1.17179,-0.996468,-1.23118,-0.258181,-0.665367,-0.802477,-1.49065,-1.15018,-0.218231,1.84546,-0.11685,-2.21962,0.651159,1 +-1.14613,-0.858953,-0.96507,0.23964,-0.163793,1.20358,0.728486,-0.247572,0.644181,-1.25466,0.460939,-0.360634,-0.247033,0.236463,0.0346794,-0.0768331,0.60764,-0.482239,-0.714257,0.207531,0.118432,0.532042,-0.283274,-0.800444,-0.743259,0.499209,0.428373,-0.272812,1.41861,-0.88517,-0.363541,-1.33311,1.66357,-0.846318,0.93695,-0.879717,1.93144,-0.0990191,-0.902689,0.406539,-0.94501,-1.40554,-0.809675,0.46831,-0.330192,0.49475,-0.17136,0.392168,-0.530062,-0.741195,0.100319,0.433904,0.324192,0.201924,-1.2876,0.153764,0.692554,-0.512348,1.48828,-1.09386,-0.583037,-1.00596,1.40239,-0.707464,1.77124,-1.08968,-0.104166,-1.10609,-1.02213,-0.681898,-0.932341,-0.98071,0.208669,-0.321756,-0.359407,-0.264974,0.710952,0.524946,-0.54041,0.555276,0.119307,0.719402,0.0728065,-1.1975,-1.01513,0.692887,-0.72004,-0.551384,0.51257,-0.594095,-0.610103,-0.316224,0.336362,-0.28057,1.33633,-0.969249,1.74207,0.355059,-0.920957,0.689004,-0.995607,-0.10027,0.0567548,0.352958,0.225324,0.408552,0.636825,0.849254,-0.105735,-0.351396,0.233101,-0.0966894,-0.094108,-0.0245007,-0.839955,-0.227163,-0.789036,0.598121,0.691368,0.360003,-0.768438,-0.698296,-0.437943,1.38669,-0.974239,-1.06147,-1.17839,-0.936446,-0.872766,1.40584,1.62984,1.64272,-0.186167,-0.262684,0.059776,-1.41244,0.0894357,-1.0895,-0.141567,-0.208239,-0.236732,0.24894,0.667471,0.445255,-0.154676,-0.327558,-0.218682,-0.746747,-0.754514,0.43273,0.785265,1.58659,0.493136,-1.18577,-0.843601,-1.23118,-0.305783,-0.464399,-0.728582,-1.49065,-1.32197,-0.218231,1.84546,-0.179275,-2.21962,0.595797,1 +-1.14613,-0.870277,-1.13855,0.226398,-0.163793,1.20358,0.512647,0.398981,0.602653,-0.371507,0.44979,-0.662006,0.371611,-0.0398816,0.362468,-0.515203,0.633564,0.022358,-0.432507,-0.457297,-0.38261,0.49777,-0.176369,-0.7834,-0.743259,0.845892,0.00611864,0.525981,1.48748,-0.842807,-0.363541,-1.25858,1.66357,-0.747393,0.949511,-0.953104,1.88776,0.318088,-0.916569,-0.384873,-1.0039,-1.39262,0.09295,0.344562,-0.405646,0.224925,-0.365037,0.0970678,-0.180118,-0.409664,-0.389312,0.576853,0.356054,0.491722,-1.27621,0.00965439,0.405288,-0.487177,1.51836,-0.799695,-0.462229,-1.00596,1.43827,-0.594677,1.78349,-1.1351,-0.104166,-1.20945,-1.02213,-1.38944,-1.03525,-0.98071,0.483568,-0.66373,0.313189,-0.18139,0.728531,-0.0261352,-0.52856,0.374406,-0.201153,0.455218,0.0350275,-1.18725,-0.822547,0.692887,-0.947137,0.670031,0.612838,-0.609743,-0.621737,-0.273156,0.336362,-0.0283108,1.30566,-0.989396,1.73186,0.738565,-0.920957,0.24569,-1.02844,-0.0791135,0.504239,0.515914,0.262548,-0.713611,-0.607586,0.198403,0.0500852,-0.364812,0.0551113,-0.254152,-0.114521,-0.0141065,-1.06473,-1.05905,-0.780733,0.899357,0.615291,0.212068,-0.768438,-0.66413,-0.428495,1.37287,-0.963983,-1.00352,-0.654363,-0.799389,-0.286996,1.39552,1.6109,1.64272,-0.0948736,-0.606776,-0.308429,-0.916204,0.608351,-0.791073,0.170031,0.00591297,0.184567,-0.216306,0.278075,0.541885,-0.154676,-0.327558,-0.290322,-1.29703,-1.11859,-0.217927,0.785265,1.63006,0.553219,-1.17179,-0.767168,-1.22057,-0.274048,-0.676532,-0.777846,-1.50589,-1.43649,-0.238528,1.8244,-0.179275,-2.23686,0.55889,1 +-1.2567,-0.870277,-1.13855,0.292609,-0.163793,-1.48045,0.493879,0.359397,0.592271,-0.330109,0.438641,1.04979,0.3867,0.0201932,0.349356,-0.515203,0.633564,-0.0999685,1.03749,-0.442844,1.45454,0.486345,1.24546,-0.7834,-0.732596,0.823525,0.0169457,0.604294,-1.11251,-0.834334,-0.363541,-1.34376,1.59958,-0.873297,0.547539,-0.928642,-0.575811,0.367159,-0.916569,-0.360142,-1.0039,-1.41847,0.124075,0.333312,0.172837,0.213682,-0.365037,0.251644,0.627444,-0.364455,1.50479,0.576853,0.515361,0.515871,-1.31037,0.457995,0.405288,-0.462006,-1.20419,-0.777905,-0.734047,-1.00596,1.11537,-0.902962,0.411087,-0.998841,-0.104166,-1.15777,-1.02213,-1.35728,-1.03525,-0.98071,0.496064,0.240059,0.341214,-0.18139,0.710952,-0.0730358,1.09486,0.362348,0.668665,0.434083,1.78545,-1.20776,-0.802275,0.664454,-0.921904,0.670031,-0.506813,-0.946164,-0.621737,-0.316224,0.336362,-0.00175722,1.42834,-0.989396,-1.16921,0.738565,-0.920957,0.236052,-1.02844,-0.10027,0.517025,0.515914,0.237732,-0.501647,-0.62396,0.18512,0.0630703,0.118147,0.0414198,1.41045,0.569301,0.422451,-1.05452,-0.997427,-0.789036,0.889943,0.606838,0.233202,-0.768438,-1.31328,-1.07096,1.55254,-0.963983,-0.887615,-0.603238,-0.880011,-0.245155,0.39409,1.70559,1.34448,0.863707,0.729888,-0.257642,-0.868181,0.618526,-0.765123,0.908635,1.81091,1.88293,-0.177535,0.278075,0.552622,-0.154676,-0.327558,-0.290322,-1.28216,-1.1051,-0.19469,0.785265,0.180902,0.0274858,-1.18577,-0.869079,-1.23118,-0.274048,-0.665367,-0.802477,-1.50589,-1.34487,-0.218231,1.8244,-0.179275,-2.21962,0.595797,1 +-1.2567,-0.858953,-0.936156,0.292609,-0.163793,-1.46959,0.709718,0.90039,0.592271,-1.15806,0.483238,-0.432963,-0.216855,0.176388,-0.00465514,0.0484154,0.633564,-0.51282,0.228993,0.279795,0.105585,0.509194,0.197795,-0.808966,-0.743259,0.868258,0.471682,-0.288475,-1.12973,-0.859752,-0.363541,-1.38635,1.61558,-0.90927,0.547539,-0.855255,-0.575811,-0.025412,-0.902689,0.480734,-0.933233,-1.4314,-0.762988,0.44581,-0.342767,0.550964,-0.111768,0.350011,0.95047,-0.605568,0.035894,0.38992,0.366674,0.129475,-1.32176,2.26737,0.701531,-0.512348,-1.18915,-1.07207,-0.754182,-1.00596,1.11537,-0.902962,0.411087,-0.998841,-0.104166,-0.9855,-1.02213,-0.537174,-0.919477,-0.98071,0.23366,-0.382822,-0.331382,-0.264974,0.693372,0.501496,-0.350814,0.53116,0.0620818,0.698267,0.148364,-1.22827,-0.984718,0.645499,-0.656958,-0.144246,-0.490101,-0.946164,-0.621737,-0.359292,0.348249,-0.187632,1.39767,-0.969249,-1.11814,0.355059,-0.920957,0.708279,-0.995607,-0.10027,0.0439695,0.341318,0.175692,0.421021,0.751441,0.809406,-0.0797654,-0.351396,0.192027,-0.0966894,-0.022664,0.0482589,-0.768435,-0.119326,-0.805641,0.541639,0.674462,0.381136,-0.758667,-1.32467,-1.06151,1.51108,-0.974239,-0.974544,-1.12727,-0.928384,-0.775137,0.404414,1.70559,1.42478,0.026851,-0.222981,-0.00370766,-1.36442,0.109785,-1.0376,0.735525,1.8721,0.77702,0.352328,0.698213,0.455992,-0.154676,-0.327558,-0.218682,-0.64264,-0.67361,0.490825,0.785265,0.151918,0.0124649,-1.18577,-0.958251,-1.23118,-0.274048,-0.430904,-0.802477,-1.50589,-1.2418,-0.218231,1.84546,-0.179275,-2.20238,0.632705,1 +-1.2567,-0.858953,-0.96507,0.292609,-0.163793,-1.46959,0.719102,-0.300352,0.623417,-1.19946,0.483238,1.2065,-0.231944,0.260493,0.00845638,0.0327593,0.616282,0.0376488,0.780242,0.250889,1.78857,0.520618,1.09579,-0.808966,-0.743259,0.488025,0.4392,-0.272812,-1.12973,-0.859752,-0.363541,-1.3757,1.59958,-0.918263,0.547539,-0.879717,-0.575811,-0.0744834,-0.902689,0.431271,-0.94501,-1.4314,-0.77855,0.45706,0.197988,0.539721,-0.141564,0.954264,0.0890694,-0.665847,1.7496,0.411912,0.515361,0.153625,-1.31037,0.00965439,0.692554,-0.512348,-1.20419,-1.07207,-0.754182,-1.00596,1.11537,-0.902962,0.411087,-0.998841,-0.104166,-1.07164,-1.02213,-0.649737,-0.932341,-0.98071,0.221164,0.557607,-0.345394,-0.264974,0.702162,0.513221,1.07116,0.543218,1.02346,0.708834,1.78545,-1.22827,-0.994854,0.673932,-0.694807,-0.624088,-0.490101,-0.946164,-0.621737,-0.337758,0.348249,-0.214186,1.39767,-0.969249,-1.12835,0.355059,-0.920957,0.698641,-0.995607,-0.10027,0.0439695,0.341318,0.1881,0.433489,0.718694,0.822689,-0.0927504,0.0913157,0.233101,1.47794,0.620332,0.474422,-0.799086,-0.180947,-0.797339,0.579294,0.682915,0.360003,-0.758667,-1.32467,-1.06151,1.5249,-0.974239,-0.945568,-1.15283,-0.936446,-0.803031,0.404414,1.70559,1.39037,1.67013,1.25926,0.351801,-1.39643,0.0996105,-1.06355,0.608578,1.12256,1.65912,0.274787,0.677718,0.445255,-0.154676,-0.327558,-0.218682,-0.717002,-0.727546,0.455968,0.785265,0.151918,0.0124649,-1.18577,-0.945512,-1.23118,-0.274048,-0.442069,-0.802477,-1.50589,-1.25325,-0.218231,1.84546,-0.11685,-2.20238,0.632705,1 +-1.2567,-0.858953,-1.12409,0.292609,-0.163793,-1.48045,0.493879,0.346202,0.581889,-0.274912,0.416342,0.157727,0.401789,0.236463,0.336244,-0.515203,0.624923,2.02545,-0.493757,-0.428391,1.08197,0.474921,-0.165679,-0.7834,-0.743259,0.801158,0.0494268,0.698269,-1.09529,-0.834334,-0.363541,-1.33311,1.61558,-0.864304,0.547539,-0.928642,-0.575811,0.416231,-0.916569,-0.323044,-1.0039,-1.41847,0.170762,0.288312,-0.204434,0.179954,-0.365037,1.7412,-0.207037,-0.304177,0.808995,0.543865,0.292331,0.540021,-1.31037,-0.0223699,0.414265,-0.449421,-1.18915,-0.74522,-0.734047,-1.00596,1.11537,-0.902962,0.411087,-0.998841,-0.104166,-1.07164,-1.02213,-1.30903,-1.02239,-0.98071,0.496064,0.2767,0.355227,-0.18139,0.684582,0.313894,-0.374513,0.362348,0.74878,0.423516,0.198736,-1.20776,-0.782004,0.654977,-0.884054,0.684572,-0.506813,-0.953988,-0.610103,-0.316224,0.336362,0.0115196,1.39767,-0.989396,-1.17943,0.748399,-0.920957,0.24569,-1.0175,-0.10027,0.517025,0.492635,0.200508,0.445958,-0.591212,1.46026,0.0760554,-0.337981,0.000345165,0.195742,0.0589864,0.0170762,-1.03408,-0.966617,-0.789036,0.899357,0.615291,0.275469,-0.768438,-1.32467,-1.07096,1.53872,-0.963983,-0.887615,-0.552114,-0.871949,-0.203314,0.39409,1.68665,1.36742,1.9288,1.11368,0.961245,-0.80415,0.64905,-0.726198,0.112328,0.143582,0.0792426,-0.112918,0.288322,0.574095,-0.154676,-0.327558,-0.290322,-1.25241,-1.07813,-0.171452,0.785265,0.180902,0.0274858,-1.17179,-0.869079,-1.22057,-0.274048,-0.665367,-0.810688,-1.50589,-1.36778,-0.218231,1.8244,-0.179275,-2.21962,0.595797,1 +1.23115,0.126174,0.639614,0.173429,0.950997,-1.05666,0.418804,0.451761,0.820673,-0.523299,0.327148,-0.746391,0.190545,0.0442232,0.414914,-0.624795,0.382963,-0.207004,-0.457007,-0.486202,-0.318374,0.85192,-0.144298,-0.766357,-0.817898,0.857075,0.0602539,1.15249,0.0583475,-0.88517,-0.363541,0.253344,-0.336278,-0.990208,0.233498,-0.463858,-0.540866,0.551177,1.79001,-0.285947,0.44472,0.908665,-0.0938,0.322062,-0.279889,0.033799,2.28684,0.153277,-0.153199,-0.485012,-0.440852,0.939722,0.249849,0.672845,-1.04843,0.2018,0.36938,-0.197716,-0.512273,-0.908643,0.0109345,1.23341,-0.0327119,-0.948077,0.288552,0.863346,-0.145623,-0.141365,1.6039,-0.231646,0.611336,0.474888,0.346119,-0.602663,0.25714,-0.766474,0.763691,-0.0378604,-0.599659,0.374406,-0.018033,0.539757,-0.103495,-0.910332,-0.883361,0.636022,-0.164915,1.10625,0.36217,-0.977459,-0.435607,-0.746903,0.288813,-0.293847,-0.381182,-0.747634,-0.495022,0.954902,0.976572,0.197503,0.350725,-0.840737,0.440313,0.469355,0.324588,-1.03779,-0.935062,-0.133664,0.0890404,-0.284319,-0.0407295,-0.299142,0.0998115,0.121019,-1.09538,-0.966617,-0.847155,1.0688,0.657556,0.391703,-0.827069,-1.01718,-1.01427,-0.962932,-0.0613896,-0.68478,-0.858861,-0.960633,-0.551987,0.228906,-0.548107,-0.811972,0.0116354,-0.514136,-0.308429,0.396425,0.638875,1.79097,0.112328,0.311845,0.210899,0.0292408,0.431784,0.896194,-0.154676,-0.3597,0.282797,-0.00312447,0.000594887,-0.206308,0.0299111,0.586667,0.613303,0.561203,0.264679,1.07073,-0.305783,-0.810511,-0.84353,1.29949,0.292861,-0.380605,-0.302467,-0.865947,-0.0820284,0.152904,1 +1.12058,-0.553224,0.610701,0.173429,0.428439,-1.02406,0.841098,-0.102427,0.862201,-1.33745,0.315998,-0.336524,-0.382833,0.332582,0.178906,-0.40561,0.443453,-0.344621,-0.518257,0.0919088,0.00280696,0.680557,-0.144298,-0.757835,-0.817898,0.599858,0.493336,-0.382451,0.0583475,-0.919061,-0.363541,0.317228,-0.336278,-1.06215,0.24606,-0.414934,-0.540866,-0.0744834,1.83165,0.480734,0.503606,0.805236,-0.90305,0.44581,-0.0786774,0.213682,2.15276,0.771583,-0.597359,-0.861751,-0.00276107,0.653825,0.419777,0.503796,-1.03704,0.281861,0.791302,-0.550103,-0.497231,-1.15922,0.000867143,1.24244,-0.0327119,-0.955596,0.300805,0.863346,-0.145623,-0.0724558,1.56287,0.00956042,0.6242,0.49021,0.0712188,-0.211835,-0.345394,-0.766474,0.781271,0.44287,-0.386363,0.543218,0.371096,0.835643,0.211329,-0.930844,-1.05567,0.806615,-0.139682,-0.507762,0.36217,-0.993107,-0.493772,-0.768437,0.288813,-0.61249,-0.319842,-0.747634,-0.474592,0.41406,1.08456,0.795014,0.372617,-0.883049,0.0695401,0.341318,0.349404,0.159183,-0.165493,1.00865,-0.157676,-0.230657,0.0414198,-0.0179579,0.181462,0.141807,-0.870607,-0.103921,-0.830549,0.67343,0.78435,0.381136,-0.827069,-1.01718,-1.02372,-0.976753,-0.102417,-0.858639,-1.31898,-1.04125,-1.16565,0.23923,-0.472352,-0.800502,-0.414401,-0.408261,0.135956,0.540494,-0.032662,1.86883,0.0315429,-0.223536,0.131905,0.313558,0.769943,0.520412,-0.194952,-0.3597,0.0678772,0.175345,0.121952,0.514062,0.0299111,0.586667,0.613303,0.533252,0.302896,1.09194,-0.321651,-0.743521,-0.851741,1.22325,0.441746,-0.319715,-0.323526,-0.803522,-0.0303125,0.189812,1 +1.28643,2.33422,1.13114,0.160187,-0.163793,-1.01319,0.897404,-0.432302,0.509216,-1.26846,0.572432,-0.396799,-0.216855,0.164373,-0.0439897,0.439817,0.745903,-0.344621,-0.775507,0.178625,0.259752,0.943314,-0.251202,-0.868619,-0.817898,0.532759,0.395892,-0.727028,0.0583475,-0.88517,-0.363541,-0.438733,-0.320279,-0.891283,0.24606,-0.610632,-0.53213,0.121802,0.485301,0.456003,1.92867,1.07674,-0.825238,0.490809,-0.455949,0.708361,0.0968069,0.46243,-0.449306,-0.741195,0.164744,0.521873,0.642807,-0.112022,-1.05982,-0.0543942,0.701531,2.53329,-0.497231,-1.09386,-0.00920017,0.872221,0.0749208,-0.918001,0.300805,0.817927,-0.145623,-0.124138,1.36797,0.266847,1.67905,1.47082,0.271146,-0.370609,-0.401444,0.152944,0.710952,0.607022,-0.623359,0.494986,0.0620818,1.03642,-0.0657163,-0.961613,-1.0354,0.816093,1.87895,-1.27842,0.36217,-0.961812,1.13486,-0.897641,0.276926,-0.0946948,-0.411852,-0.304403,-0.454162,0.394393,0.822301,0.814289,2.10205,-0.671487,-0.00717157,0.341318,0.126061,0.632985,1.37365,1.06178,-0.0667803,-0.31115,0.356325,-0.119184,-0.0430765,0.308115,-0.891041,-0.489053,-0.855458,0.306299,0.623744,0.360003,-0.817297,-1.01718,-1.01427,-1.14261,-0.502429,-0.452969,-1.14005,-0.920322,-0.733297,0.249554,-0.623861,-0.720208,0.224653,-0.103873,0.0470793,0.124295,0.018212,0.0912347,0.066165,-0.0399768,-0.355223,0.455716,0.923652,0.788828,-0.114399,-0.3597,-0.791801,0.918968,1.57823,0.409492,0.0156592,0.586667,0.613303,1.62336,0.239202,1.24045,-0.13124,-0.319255,-0.794267,1.2385,0.338672,-0.461791,-0.323526,-0.928372,-0.0992671,0.0790881,1 +1.28643,2.30025,1.30462,0.173429,-0.163793,-1.03493,0.60649,0.267032,0.706472,-0.454303,0.594731,-0.384744,0.416878,-0.111971,0.165795,-0.217738,0.711337,0.114103,-0.371257,-0.486202,-0.0871237,0.657709,-0.0160132,-0.87714,-0.817898,1.05837,0.190178,0.275379,0.0583475,-0.825861,-0.363541,-0.470675,-0.288281,-0.76538,0.24606,-0.732943,-0.540866,0.403963,0.49918,-0.285947,1.97578,1.11552,0.0773875,0.389561,-0.493676,0.550964,-0.439528,0.0970678,-0.13974,-0.635708,0.0101239,0.675817,0.664048,0.0811757,-1.04843,0.34591,0.324495,2.47036,-0.497231,-0.7888,0.000867143,0.790954,0.182553,-0.910481,0.300805,0.727089,-0.145623,-0.0380013,1.3372,0.170365,1.76909,1.51679,0.583532,-0.55381,0.173065,0.152944,0.834011,0.138017,-0.386363,0.374406,-0.018033,0.613728,0.211329,-0.930844,-0.86309,0.82557,1.92942,0.364677,0.36217,-0.953988,0.902202,-0.811505,0.288813,0.263779,-0.381182,-0.35477,-0.474592,0.846734,0.88401,0.187866,2.10205,-0.608018,0.440313,0.515914,0.138469,-0.0901869,-0.574838,0.397643,-0.118721,-0.284319,0.301559,-0.0517,-0.022664,0.266538,-1.12604,-1.27472,-0.872063,0.842875,0.55612,0.423404,-0.807525,-1.01718,-1.00482,-1.08732,-0.522943,-0.337064,-0.552114,-0.815514,-0.0777921,0.23923,-0.6428,-0.743149,-0.216598,-0.553839,-0.359216,0.124295,0.710099,0.18206,0.493171,-0.254129,0.105574,-0.112918,0.308817,0.638515,-0.154676,-0.3597,-0.791801,1.09744,1.68611,-0.0901196,0.0299111,0.586667,0.613303,1.63734,0.404807,1.21924,-0.115373,-0.341585,-0.786056,1.11653,0.361577,-0.482088,-0.3867,-0.865947,-0.0647898,0.00527254,1 +1.06529,-0.587194,0.480591,0.160187,-0.163793,-0.947993,0.634643,-0.155207,0.561125,-0.647492,0.550134,0.374715,0.235811,-0.0158517,0.047791,-0.233394,0.694054,-0.222295,0.424992,0.352059,0.388224,0.543466,0.646793,-0.749313,-0.871212,0.734058,0.406719,0.713932,0.0755659,-0.893643,-0.363541,0.434349,-0.352276,-0.810345,0.208375,-0.439396,-0.53213,0.943748,0.5547,0.134491,0.574271,0.59838,-0.15605,0.367061,0.273442,0.584692,-0.499121,0.364063,-0.0859025,-0.334316,-0.0156461,0.664821,0.557843,0.455497,-1.04843,0.185788,0.638692,-0.386495,-0.467147,-0.897748,-0.0293348,1.1702,0.0390432,-0.970635,0.300805,0.817927,-0.104166,0.134271,0.229338,-0.167324,0.6242,0.428922,0.471073,0.0690722,-0.0231087,-0.599308,0.623052,0.220093,0.514221,0.458812,0.81745,0.518622,0.211329,-0.88982,-0.903632,0.730796,0.0369482,0.175649,0.36217,-1.00093,-0.59847,-0.725369,0.253152,0.170841,-0.166493,-0.818148,-0.423516,0.915568,0.297781,0.496259,0.405454,-0.904205,0.28689,0.422796,0.101245,-0.0901869,-0.705829,0.344513,-0.105735,0.332795,0.0688029,0.724367,0.895902,0.682307,-0.574308,0.373643,-0.872063,0.955838,0.78435,0.550205,-0.875928,-1.01718,-1.03317,-1.03204,-0.430632,-0.945568,-0.718269,-0.863887,-0.231208,0.228906,-0.377659,-0.789031,-0.125305,-0.34209,-0.397307,0.140302,1.00517,0.402637,0.354682,-0.147053,-0.0129167,0.416946,0.534256,0.799564,-0.154676,-0.327558,-0.218682,-0.00312447,0.121952,0.235209,0.00140723,0.572175,0.583261,0.575179,0.506718,1.15559,-0.242313,-0.28576,-0.851741,0.903074,0.750968,-0.421198,-0.365642,-0.741098,0.0386421,0.208265,1 +1.23115,0.499843,0.0758061,0.186671,-0.163793,-0.980592,0.747255,-0.142012,0.613035,0.0424704,0.538984,0.434989,0.688478,-0.232121,0.0609025,-0.374298,0.823675,0.282302,0.339242,-0.11043,0.0285014,0.577739,0.849911,-0.800444,-0.871212,0.241992,0.828974,-0.586065,0.0755659,-0.79197,-0.363541,-0.385497,-0.272282,-0.603503,0.208375,-0.830792,-0.540866,0.47757,0.51306,1.02483,0.680267,1.12845,0.497575,0.153314,0.323745,0.461022,-0.0372768,0.16733,-0.408928,-0.153482,-0.0800712,0.532869,0.664048,0.552096,-1.03704,0.457995,0.89005,-0.499762,-0.482189,-0.494639,-0.00920017,-0.446117,0.290186,-0.940558,0.288552,0.63625,-0.104166,0.20318,1.19359,0.37941,0.43124,0.428922,0.695991,0.203419,0.383252,-0.264974,0.798851,-0.190287,0.514221,0.446754,0.336761,0.708834,0.198736,-0.83854,-0.690783,0.522293,0.314511,-0.769494,0.36217,-0.977459,-0.610103,-0.660767,0.265039,0.516038,-0.258503,-0.616679,-0.464377,0.541896,0.374917,0.968485,0.744773,-0.54455,0.517025,0.446076,-0.0104268,-0.601395,0.0964886,0.610166,-0.0667803,0.34621,0.096186,0.611893,0.722395,0.807038,-0.870607,-0.30419,-0.896971,0.278058,0.733633,0.581905,-0.856384,-1.01718,-1.02372,-1.03204,-0.769105,-0.279111,-0.0280863,-0.702644,0.326668,0.218582,-0.623861,-0.789031,-0.110089,-0.0244668,-0.130675,0.0442565,0.435379,0.208011,0.758607,-0.0246802,0.158236,0.946809,0.954394,0.681461,-0.154676,-0.343629,-0.648521,0.32407,0.351181,0.95558,0.00140723,0.572175,0.598282,0.673009,0.736017,0.45547,-0.13124,-0.196441,-0.810688,0.750608,0.556273,-0.705351,-0.449874,-0.865947,-0.0130738,-0.0316353,1 +1.28643,2.44745,0.813093,0.186671,-0.163793,-1.01319,0.841098,-0.445497,0.550743,-0.0403251,0.661627,2.09857,0.733744,1.37789,0.506694,0.0953836,0.936014,0.511664,1.64999,0.0919088,0.902113,0.783375,0.710935,-0.87714,-0.871212,0.197259,0.62326,-0.821004,0.0755659,-0.732661,-0.363541,-0.279023,-0.288281,-0.270757,0.208375,-0.732943,-0.549602,0.661588,0.49918,0.987733,1.86978,1.03795,0.46645,0.310812,2.1095,0.809546,0.513956,0.335959,0.371716,-0.289108,1.8398,0.510877,0.557843,0.153625,-1.04843,0.185788,0.845164,2.58363,-0.497231,-0.418375,0.0109345,1.0799,0.254309,-0.820251,0.276298,0.727089,-0.104166,0.306544,1.30642,0.540214,1.51181,1.42486,0.770964,2.13313,0.14504,0.403694,0.737321,-0.0144101,1.9599,0.434696,0.714445,0.909614,1.26914,-0.818028,-0.711054,0.579158,1.70232,-1.35112,0.378881,-0.930517,1.56529,-0.940709,0.276926,0.847958,-0.258503,-0.233889,-0.495022,0.512395,0.77602,1.00703,2.12394,-0.608018,0.363601,0.364598,1.09388,0.00956091,1.0298,0.72971,-0.0797654,2.0634,0.849221,0.791851,0.855077,0.71349,-0.850172,-0.335,-0.913577,0.02389,0.64065,0.40227,-0.846612,-1.02857,-1.02372,-1.08732,-0.348578,-0.395016,0.125288,-0.557525,0.577712,0.208258,-0.585984,-0.75462,0.863707,2.10626,1.35484,0.204333,0.364155,0.10421,0.296979,0.0823959,0.842848,1.02435,1.07736,0.917667,-0.0338459,-0.343629,-1.22164,0.799988,1.29507,0.827772,0.0156592,0.572175,0.598282,1.67926,0.213724,1.37835,-0.0201678,0.518112,-0.769635,1.13177,0.395935,-0.258825,-0.407758,-0.928372,-0.0130738,0.0237264,1 +1.23115,2.44745,0.726353,0.160187,-0.163793,-0.937126,0.869251,1.30943,0.415778,-0.606094,0.561283,0.0251228,-0.171588,0.104298,-0.0964358,0.502441,1.00515,0.0682304,0.547492,0.655567,0.208363,0.829072,0.807149,-0.826009,-0.871212,0.488025,0.569125,0.604294,0.0755659,-0.936007,-0.342116,-0.279023,-0.30428,-0.891283,0.220937,-0.684019,-0.523394,0.575713,0.49918,0.901172,1.81089,1.07674,-0.607363,0.44581,0.0596553,0.708361,0.856615,0.617007,0.573607,0.193118,-0.196036,0.466893,0.70653,-0.208621,-1.04843,1.70694,0.82721,2.65914,-0.452106,-1.07207,-0.0394021,1.0799,0.218431,-0.963115,0.300805,0.772508,-0.104166,0.237635,1.32694,0.411571,1.42177,1.30228,0.296137,-0.199622,-0.149221,-0.0142232,0.675792,0.548397,0.395723,0.314116,0.428321,0.951884,0.0979924,-0.920588,-0.741461,0.645499,1.71494,1.96415,0.36217,-1.01658,1.63509,-0.962243,0.253152,-0.0283108,-0.227833,-0.26411,-0.413301,0.502562,0.745166,0.978122,2.0911,-0.586862,0.0056137,0.329678,0.0764288,0.545706,1.14441,0.610166,0.0500852,0.212055,0.123569,0.600646,0.76322,0.817432,-0.175838,0.419859,-0.855458,0.325126,0.649103,0.40227,-0.8857,-1.02857,-1.04262,-1.15643,-0.317808,-0.481946,-1.11448,-0.944508,-0.635668,0.23923,-0.529168,-0.708738,0.376809,-0.368559,-0.0417979,0.172318,0.486253,0.18206,0.677822,0.678963,0.171402,0.933886,1.06711,0.906931,0.0869839,-0.343629,-0.576881,0.710754,1.25462,0.758059,0.0156592,0.586667,0.598282,1.60939,0.290157,1.34653,-0.178843,-0.28576,-0.83532,1.10128,0.37303,-0.279121,-0.407758,-0.865947,0.0041648,0.0606342,1 +1.17586,0.48852,0.726353,0.186671,3.3896,-0.991459,0.47511,-0.207987,0.727236,-0.192117,0.594731,2.07446,0.567767,1.01744,0.401802,-0.202082,0.521226,0.114103,1.83374,0.135267,0.580932,0.726254,0.860601,-0.834531,-0.881875,0.510392,0.893936,1.57538,0.0755659,-0.758079,-0.363541,0.253344,-0.320279,-0.486593,0.208375,-0.561707,-0.540866,0.624784,1.51241,0.431271,0.303391,0.85695,0.295262,0.232063,1.97116,0.674633,2.73379,0.0408582,0.95047,-0.319247,1.82691,0.829762,0.664048,0.383048,-1.05982,0.506031,0.773348,0.267939,-0.482189,-0.570903,0.000867143,1.19729,0.146676,-0.918001,0.276298,0.817927,-0.104166,-0.0380013,1.727,0.0738821,0.572744,0.474888,0.658505,1.94993,0.131028,-0.264974,0.763691,-0.108211,2.01914,0.507044,0.176531,0.455218,1.45803,-0.828284,-0.782004,0.503338,0.289278,0.117486,0.36217,-0.914869,-0.482139,-0.789971,0.265039,0.595699,-0.227833,-0.505872,-0.474592,0.954902,0.760593,0.602269,0.175592,-0.798424,0.350816,0.364598,0.79609,-0.401899,-0.869567,0.0124455,-0.105735,2.00973,0.903987,0.645635,0.528476,0.734278,-0.829738,-0.119326,-0.95509,0.937011,0.851974,1.07854,-0.836841,-1.01718,-1.00482,-0.962932,-0.102417,-0.68478,-0.104773,-0.646209,0.326668,0.208258,-0.472352,-0.823443,0.54418,1.92098,0.872367,0.0922795,0.740623,1.45362,0.966339,0.464811,1.22465,0.326481,0.544504,0.853248,-0.154676,-0.343629,-0.147042,0.249707,0.243309,0.688346,0.00140723,0.572175,0.598282,0.5053,0.290157,1.07073,-0.0995054,0.227825,-0.794267,1.14702,0.453198,-0.197935,-0.365642,-0.865947,0.0041648,0.13445,1 +1.12058,0.443226,0.726353,0.160187,3.04123,-0.92626,0.493879,1.75806,0.561125,-0.440503,0.371745,-0.264195,-0.488455,0.188403,-0.0964358,0.236288,0.538509,-0.31404,0.596492,0.756737,0.182668,0.703405,0.753697,-0.817488,-0.881875,0.711692,0.785666,1.57538,0.0927844,-0.902116,-0.363541,0.263992,-0.336278,-0.999201,0.220937,-0.488321,-0.523394,0.882409,1.58181,0.332344,0.326946,0.908665,-0.747425,0.389561,0.0219282,0.472265,2.6295,0.364063,0.72166,0.373953,-0.260461,0.719801,0.727771,0.0691008,-1.05982,1.37069,0.73744,0.230184,-0.452106,-1.08296,-0.0494694,1.20632,0.110798,-0.970635,0.313059,0.817927,-0.104166,0.134271,1.74752,-0.00652,0.598472,0.474888,0.0462279,-0.236262,-0.149221,-1.01722,0.693372,0.524946,0.277225,0.265884,0.256646,0.465785,-0.116088,-0.930844,-0.629968,0.56968,0.175729,2.10956,0.36217,-0.961812,-0.44724,-0.811505,0.253152,-0.400061,-0.197163,-0.505872,-0.403086,0.994236,0.77602,0.544445,0.153701,-0.777268,-0.122239,0.213281,0.113653,0.558174,-0.427474,-0.4126,0.0890404,0.185224,0.164644,0.206989,0.283525,0.64073,-0.0225808,0.543101,-0.896971,1.00291,0.851974,1.00458,-0.856384,-1.01718,-1.01427,-0.990574,-0.0716463,-0.829662,-1.29342,-0.968695,-1.04013,0.249554,-0.415536,-0.789031,0.102929,-0.500902,0.110563,0.268364,0.893245,1.4666,1.11637,0.633073,0.184567,0.442793,0.585493,0.928404,-0.154676,-0.327558,0.282797,0.175345,0.162404,0.560538,0.0156592,0.586667,0.598282,0.491324,0.302896,1.0389,-0.242313,-0.497893,-0.851741,1.13177,0.407388,-0.177638,-0.365642,-0.803522,0.0214034,0.171358,1 +1.17586,0.375287,0.682984,0.160187,1.75225,-0.937126,0.465726,0.0823022,0.519598,-0.4957,0.382894,1.78514,0.235811,0.332582,0.441137,-0.656107,0.469378,-0.421075,2.18899,0.106362,0.323988,0.71483,0.81784,-0.621485,-0.871212,0.644592,0.482509,1.49706,0.0755659,-0.910588,-0.363541,0.274639,-0.336278,-0.918263,0.220937,-0.488321,-0.523394,1.04189,1.76225,0.171589,0.409387,0.986236,-0.0471125,0.277063,1.66935,0.236168,2.24215,0.223539,2.0003,-0.349386,1.2342,0.752789,0.579084,0.878118,-1.04843,0.233825,0.584829,0.192428,-0.452106,-0.875958,-0.0394021,1.22438,0.110798,-1.00071,0.300805,0.817927,-0.104166,0.272089,1.75777,-0.0386808,0.6242,0.459566,0.3961,1.35148,0.173065,-1.18439,0.623052,-0.0261352,2.01914,0.398522,0.371096,0.476353,1.26914,-0.900076,-0.883361,0.598112,-0.0135176,0.655491,0.36217,-1.0244,-0.365808,-0.768437,0.253152,-0.0548644,-0.197163,-0.596532,-0.413301,1.02374,0.868583,0.428798,0.241267,-0.692643,0.376387,0.411156,0.510707,-0.701142,-0.96781,-0.0805332,-0.0278251,2.04998,1.42427,0.724367,0.76322,0.765461,-0.625394,0.543101,-0.847155,1.07822,0.78435,0.772107,-0.8857,-1.02857,-1.04262,-0.962932,0.0309211,-0.771709,-0.705488,-0.928384,-0.342783,0.23923,-0.434475,-0.800502,0.0572821,0.901934,-0.295733,0.476464,0.964469,1.55742,0.631659,0.816632,1.4353,0.597875,0.605987,1.0143,-0.154676,-0.311488,0.569356,0.0414929,0.0545313,0.200353,0.0156592,0.586667,0.598282,0.519276,0.341112,0.996472,-0.369253,-0.620707,-0.892793,1.17751,0.269956,-0.218231,-0.344584,-0.803522,0.0041648,0.152904,1 +1.17586,0.48852,0.711897,0.186671,2.41416,-1.00233,0.418804,0.359397,0.633799,0.401251,0.159908,0.471154,0.688478,0.0442232,0.152683,-0.061177,0.460736,1.73493,-0.114007,-0.153789,0.439613,0.737678,0.668174,-0.791922,-0.871212,0.488025,0.688222,1.77899,0.0755659,-0.775025,-0.363541,0.274639,-0.30428,-0.76538,0.208375,-0.561707,-0.540866,0.968284,1.66509,0.245784,0.374055,0.94745,0.684325,0.0408161,0.424351,-0.0673854,2.46562,0.81374,-0.314712,0.389023,0.126089,0.818766,0.462259,0.68492,-1.04843,0.618116,0.647669,0.418963,-0.482189,-0.254953,0.0109345,1.22438,0.146676,-0.955596,0.276298,0.817927,-0.104166,0.20318,1.74752,-0.0386808,0.611336,0.474888,0.508559,0.484327,0.635475,-0.682891,0.667002,0.642198,0.348324,0.35029,0.737335,0.455218,0.110585,-0.818028,-0.447526,0.474906,0.163113,0.771816,0.378881,-0.961812,-0.41234,-0.768437,0.276926,0.170841,-0.197163,-0.566312,-0.484807,1.03357,0.822301,0.467347,0.197484,-0.713799,0.580951,0.306399,-0.0104268,1.58059,1.09529,1.30087,0.205906,0.238886,-0.0270379,0.679377,0.885696,0.734278,-0.625394,-0.874185,-0.913577,1.03115,0.801256,0.972876,-0.846612,-1.02857,-1.02372,-0.935289,-0.0101059,-0.68478,0.0997252,-0.742954,0.22904,0.208258,-0.472352,-0.823443,0.802845,0.478437,0.78349,0.348402,0.913595,1.5185,0.377764,0.357735,-0.0655791,0.520334,0.605987,1.0143,-0.114399,-0.343629,-0.0037626,0.130728,0.14892,0.421111,0.0156592,0.572175,0.598282,0.5053,0.315635,1.0283,-0.178843,-0.788181,-0.827109,1.14702,0.338672,-0.197935,-0.3867,-0.803522,0.0214034,0.115996,1 +1.23115,2.45877,0.65407,0.160187,-0.163793,-0.937126,0.878635,-0.260767,0.571507,-0.385306,0.505536,1.91774,0.401789,0.488777,0.441137,-0.40561,1.04835,0.0835212,2.10324,0.0630032,0.863572,0.817648,0.454365,-0.681138,-0.871212,0.454475,0.460854,-0.586065,0.0755659,-0.927534,-0.299267,-0.268376,-0.30428,-0.828331,0.220937,-0.684019,-0.523394,0.391695,0.471421,0.592027,1.72845,1.11552,0.108512,0.322062,1.75738,0.416051,0.722531,0.476483,1.71765,-0.349386,1.54344,0.521873,0.579084,0.733219,-1.03704,-0.00635777,0.773348,2.75982,-0.452106,-0.810589,-0.0394021,1.0799,0.218431,-0.985673,0.300805,0.772508,-0.104166,-0.020774,1.32694,0.0417213,1.28026,1.13374,0.53355,1.57132,0.215102,-0.0142232,0.675792,0.00904018,2.05469,0.386464,1.00057,0.962451,1.45803,-0.910332,-0.86309,0.778183,1.71494,-0.914901,0.36217,-1.06352,1.75142,-0.919175,0.253152,0.170841,-0.258503,-0.334624,-0.413301,0.522229,0.729739,0.862475,2.04732,-0.54455,0.440313,0.469355,0.585155,-0.252277,0.276601,0.543753,-0.0537952,1.99632,1.15043,0.780604,0.865283,0.609547,-0.727566,0.281211,-0.822247,0.391021,0.691368,0.455104,-0.915015,-1.02857,-1.07096,-1.14261,-0.266524,-0.481946,-0.526551,-0.904197,-0.119633,0.23923,-0.529168,-0.720208,0.315947,1.33867,-0.0164044,0.220341,0.699924,0.233961,0.193113,0.617777,1.50113,0.559104,0.923652,0.745881,0.973068,-0.327558,-0.433602,0.472794,1.1872,0.514062,0.00140723,0.586667,0.583261,1.51156,0.417546,1.3041,-0.258181,-0.464399,-0.868162,1.05554,0.350124,-0.340011,-0.3867,-0.865947,-0.0130738,0.0606342,1 +1.28643,2.4701,0.668527,0.186671,-0.163793,-1.01319,0.859867,0.425371,0.654563,0.566842,0.226804,0.447044,0.763922,0.284523,0.139572,0.236288,1.03107,1.82667,-0.322257,-0.0959774,0.606627,0.760527,0.240557,-0.834531,-0.871212,0.320275,0.590779,-0.398113,0.0755659,-0.783497,-0.320692,-0.247081,-0.272282,-0.756386,0.208375,-0.757406,-0.540866,0.514373,0.485301,0.851709,1.76379,1.10259,0.824387,0.232063,0.512381,0.224925,0.633142,0.982369,-0.260874,0.569857,0.164744,0.532869,0.377295,0.419272,-1.03704,-0.24654,0.836187,2.72207,-0.497231,-0.102425,0.0109345,1.09796,0.254309,-0.948077,0.276298,0.727089,-0.104166,0.185953,1.31668,0.299008,1.33172,1.21035,0.521055,0.618674,0.71955,0.320111,0.710952,1.14638,0.206127,0.241768,1.10357,0.920182,-0.103495,-0.807772,-0.305626,0.673932,1.70232,-0.420518,0.378881,-1.01658,1.73979,-0.876107,0.276926,0.170841,-0.258503,-0.314477,-0.495022,0.532062,0.745166,0.94921,2.08016,-0.54455,0.606521,0.25984,0.0516129,2.1292,1.70112,1.14147,0.244861,0.225471,-0.0133464,0.488173,0.783633,0.432845,-0.441485,-1.2131,-0.86376,0.23099,0.682915,0.476237,-0.856384,-1.02857,-1.05206,-1.0735,-0.266524,-0.395016,0.227537,-0.751017,0.312721,0.208258,-0.585984,-0.76609,0.665905,0.478437,0.999335,0.172318,0.608351,0.169085,0.262357,0.220065,-0.170904,0.843421,1.01588,0.821038,0.207814,-0.343629,-0.935081,0.621519,1.20068,0.734821,0.0156592,0.572175,0.598282,1.56746,0.36659,1.33592,-0.115373,-0.788181,-0.818898,1.05554,0.361577,-0.299418,-0.428816,-0.928372,-0.0130738,0.0237264,1 +1.28643,2.45877,0.798636,0.848783,-0.163793,0.71459,0.850482,-0.221182,0.581889,0.0838681,0.617029,0.519374,0.779011,0.0201932,-0.0833243,-0.123801,0.961938,0.389337,-0.261007,-0.11043,0.465307,0.806223,0.657483,-0.87714,-0.732596,0.241992,0.634087,-0.821004,2.09013,-0.444588,-0.363541,-0.268376,-0.160291,-0.30673,0.24606,-0.732943,-0.567074,0.64932,0.49918,1.0001,1.86978,1.05088,0.575387,0.108315,0.487229,0.652148,0.543753,0.237592,-0.543521,-0.21376,0.216284,0.532869,0.536602,0.226074,1.32042,0.2018,0.863118,2.6088,1.50332,-0.342112,0.544502,1.0799,0.218431,-0.775137,0.52137,0.772508,-0.104166,0.323771,1.31668,0.540214,1.48609,1.40954,0.770964,0.594247,0.313189,0.403694,0.737321,-0.0730358,0.324625,0.422638,0.84034,0.920182,0.148364,0.238345,-0.670511,0.598112,1.71494,-1.2348,1.94973,-0.179437,1.58856,-0.897641,0.360136,0.741743,-0.319842,-0.254036,-1.11814,0.522229,0.77602,1.01667,2.113,-0.608018,0.478669,0.411156,0.026797,0.0220294,0.882432,0.689862,-0.105735,0.292548,0.192027,0.746862,0.906108,0.703095,-0.911475,-0.581485,-0.764128,0.0521309,0.657556,0.412837,-0.573003,1.4086,0.82809,-0.769434,-0.338322,-0.337064,0.138069,-0.355971,0.535872,0.538626,-0.434475,-0.708738,-0.0340113,0.346094,-0.00370766,0.204333,0.404855,0.117185,0.239275,-0.0399768,-0.170904,1.02435,1.08761,0.917667,-0.0338459,-0.3597,-1.22164,0.799988,1.29507,0.839391,-0.354892,0.731583,0.267821,1.66529,0.213724,1.37835,-0.0201678,0.23899,-0.786056,1.14702,0.384482,-0.258825,-0.3867,-0.928372,-0.0475511,0.0237264,1 +1.34172,2.31157,1.36244,1.61683,-0.163793,-0.415532,0.484494,-0.683006,0.675326,-0.454303,0.672776,0.38677,0.431967,0.236463,-0.188216,0.392849,0.391605,-0.283458,-0.0895073,0.40987,0.619474,0.63486,0.133653,-0.757835,-0.871212,1.02482,0.179351,0.807908,0.0755659,-0.808916,0.150646,-0.438733,0.351671,-0.486593,0.434484,-0.879717,-0.575811,1.21364,0.51306,0.233418,2.02289,1.10259,0.061825,0.254563,0.524956,0.865759,-0.811983,0.799688,0.0486913,-0.243899,0.151859,0.697809,0.49412,0.129475,-0.968712,0.474007,0.279609,2.38227,-0.015895,-0.723431,1.84319,0.854162,0.361941,-0.918001,-0.164831,0.63625,-0.104166,0.685543,1.28591,0.620616,1.82055,1.65469,0.633514,0.679741,-0.0511336,-0.18139,0.508783,0.102841,0.0757789,0.47087,1.08068,0.550324,-0.103495,1.22293,-0.842818,0.730796,1.86634,0.829979,0.763238,-0.899222,0.890569,-0.746903,1.323,0.622252,-0.258503,-0.304403,-1.37352,1.03357,0.961145,0.322788,2.14583,-0.502237,0.235749,0.352958,0.0764288,0.0968403,-0.509343,0.53047,-0.0797654,0.238886,0.0414198,0.49942,0.76322,0.422451,-0.594743,0.173374,-0.896971,0.974666,0.573026,0.476237,-0.856384,-0.755239,-0.796967,0.44684,-0.492173,-0.134229,-0.296491,-0.686519,0.22904,0.259878,-0.434475,-0.903736,0.194222,0.438734,0.0470793,0.476464,1.03569,0.259911,0.354682,-0.0399768,-0.197235,0.830498,0.657224,1.06798,-0.154676,3.51334,-0.648521,1.05282,1.64565,-0.0320252,0.0441631,-0.00748936,0.898702,1.73517,0.417546,1.28288,-0.115373,0.372969,-0.802477,1.02505,0.41884,-0.340011,-0.449874,-0.990797,-0.0303125,-0.086997,1 +1.17586,0.409256,0.69744,0.769329,1.8916,0.812389,0.47511,0.0954972,0.509216,-0.730288,0.394043,-0.0954262,0.0698336,0.0442232,0.205129,-0.562171,0.478019,-0.405785,0.620992,0.279795,0.0541959,0.737678,0.871292,-0.672616,-0.700608,0.633408,0.536644,1.54405,2.10735,-0.868225,-0.363541,0.263992,-0.192288,-0.963228,0.220937,-0.439396,-0.567074,1.04189,1.74837,0.19632,0.39761,0.986236,-0.296113,0.344562,0.072231,0.292381,2.31664,0.307854,0.317879,-0.394595,-0.350657,0.763785,0.642807,0.696994,1.28626,0.2018,0.620738,0.217598,1.57853,-0.984907,0.463964,1.22438,0.0390432,-0.985673,0.582638,0.863346,-0.104166,0.272089,1.75777,-0.0226004,0.6242,0.474888,0.321128,-0.333969,0.00491612,-1.18439,0.640632,0.161467,0.395723,0.434696,0.279536,0.476353,0.123178,-0.00779977,-0.934039,0.588635,0.0243318,0.582787,1.91631,-0.382854,-0.377441,-0.789971,0.38391,-0.161079,-0.258503,-0.586459,-0.0353449,1.0434,0.853155,0.448072,0.230321,-0.692643,0.28689,0.399517,0.225324,-0.401899,-0.935062,-0.160229,-0.0927504,0.279133,0.0414198,0.634388,0.712189,0.817432,-0.53344,0.558506,-0.415414,1.0688,0.801256,0.824941,-0.856384,1.41999,0.87533,-0.714148,0.0104076,-0.829662,-0.922767,-0.847762,-0.53804,0.54895,-0.301904,-0.708738,-0.0340113,-0.633244,-0.321126,0.460456,0.974644,1.55742,0.781688,0.0518027,0.263561,0.597875,0.616235,1.02503,-0.154676,-0.327558,0.569356,0.0712378,0.0680154,0.270066,-0.354892,0.775058,0.282842,0.519276,0.328374,1.00708,-0.353386,-0.609542,-0.884583,1.19276,0.281408,-0.218231,-0.323526,-0.865947,-0.0130738,0.189812,1 +1.12058,-0.643811,0.596244,1.59035,0.184579,-0.54593,0.784792,-0.234377,0.716854,0.0424704,0.338297,-0.107481,0.567767,-0.220106,0.257575,-0.609139,0.538509,-0.31404,0.584242,-0.124883,-0.202749,0.680557,0.743007,-0.195394,-0.860549,0.420925,0.666568,-0.774016,0.0927844,-0.876697,-0.299267,0.402407,0.383669,-0.828331,0.421923,-0.414934,-0.567074,0.882409,1.92881,1.14849,0.538939,0.831093,0.419762,0.0970652,-0.191859,0.0675271,1.85479,0.715373,0.627444,0.0122836,-0.170266,0.499881,0.749012,1.01094,-0.980101,0.313885,0.845164,-0.701127,-0.0459784,-0.581798,1.88346,1.2605,0.0749208,-0.985673,-0.177085,0.863346,-0.104166,0.685543,1.62442,0.636697,0.637064,0.520854,0.53355,-0.175195,0.481338,-0.766474,0.728531,-0.483416,0.123178,0.362348,0.268091,0.84621,-0.141274,1.16139,-0.690783,0.512816,-0.190148,0.335596,0.662971,-1.03223,-0.493772,-0.768437,1.35866,0.144288,-0.135823,-0.727487,-1.41438,0.502562,1.1617,1.04558,0.394508,-0.798424,0.55538,0.422796,0.0019811,-0.563989,0.784189,1.16804,0.115011,0.158393,-0.0133464,0.0832682,0.375381,0.588759,-0.788869,0.0809425,-0.838852,0.0615445,0.573026,0.138101,-0.895471,-0.698296,-0.834759,0.391555,0.0104076,-0.916591,-0.219804,-0.863887,0.0477301,0.301174,-0.22615,-0.892266,-0.0187957,0.121111,-0.168765,0.828632,0.0894357,1.84288,1.09329,0.418921,0.158236,1.23113,1.1286,0.982087,-0.154676,3.6419,-0.0754024,0.443049,0.229825,0.943961,0.0584151,-0.00748936,0.898702,0.5053,0.353851,1.04951,-0.321651,-0.687697,-0.876372,1.14702,0.476104,-0.197935,-0.344584,-0.803522,0.0386421,0.208265,1 +1.06529,-0.575871,0.466135,0.173429,-0.163793,-0.947993,0.625259,-0.181597,0.571507,-0.4957,0.538984,2.02624,0.341433,0.789151,0.454248,-0.342986,0.685413,-0.145841,1.99299,0.221984,0.837877,0.532042,0.58265,-0.723747,-0.871212,0.756425,0.374238,0.698269,0.0755659,-0.88517,-0.363541,0.434349,-0.352276,-0.783366,0.208375,-0.439396,-0.53213,0.956016,0.5547,0.122125,0.574271,0.59838,0.0151375,0.322062,1.94601,0.528478,-0.514019,0.350011,1.35425,-0.349386,1.68518,0.653825,0.525982,0.600395,-1.03704,0.185788,0.629715,-0.39908,-0.467147,-0.821484,-0.0293348,1.17923,0.0749208,-0.978154,0.288552,0.817927,-0.104166,0.151498,0.219081,-0.167324,0.6242,0.428922,0.521055,1.8278,0.0889907,-0.599308,0.614262,0.0911162,2.06654,0.434696,0.874675,0.518622,1.42026,-0.879564,-0.873225,0.730796,0.0369482,0.248352,0.36217,-1.00875,-0.59847,-0.725369,0.253152,0.237225,-0.166493,-0.828221,-0.433731,0.915568,0.297781,0.486621,0.4164,-0.904205,0.350816,0.434436,0.73405,-0.239809,-0.771324,0.33123,-0.0927504,2.09023,1.08198,0.791851,0.885696,0.64073,-0.635611,0.358238,-0.86376,0.955838,0.775897,0.529071,-0.875928,-1.01718,-1.04262,-1.03204,-0.430632,-0.945568,-0.539333,-0.847762,-0.105686,0.228906,-0.377659,-0.789031,0.376809,1.68276,0.402588,0.15631,1.01534,0.415613,0.296979,0.311845,1.30364,0.429869,0.524009,0.799564,-0.154676,-0.327558,-0.218682,-0.00312447,0.121952,0.200353,0.00140723,0.572175,0.583261,0.575179,0.519456,1.15559,-0.258181,-0.28576,-0.851741,0.903074,0.750968,-0.421198,-0.365642,-0.741098,0.0386421,0.208265,1 +1.23115,0.647046,0.0179796,0.186671,-0.163793,-0.980592,0.737871,0.359397,0.664944,0.484046,0.13761,0.459099,0.718656,0.320568,0.178906,-0.296018,0.884165,2.02545,0.118743,-0.0959774,0.555238,0.554891,0.604031,-0.774878,-0.871212,0.409742,0.796493,-0.3198,0.0755659,-0.800443,-0.363541,-0.364202,-0.256283,-0.801352,0.208375,-0.879717,-0.540866,0.440766,0.52694,0.802246,0.656712,1.14138,0.746575,0.220813,0.424351,-0.0898708,-0.0819713,0.785635,-0.328171,0.509579,0.151859,0.587849,0.472879,0.696994,-1.03704,0.425971,0.863118,-0.37391,-0.482189,-0.200479,0.000867143,-0.34679,0.326064,-0.955596,0.276298,0.590831,-0.104166,-0.0552285,1.17307,0.0738821,0.354057,0.4136,0.496064,0.472113,0.691525,-0.264974,0.798851,1.0174,0.431273,0.29,0.86323,0.655998,0.148364,-0.828284,-0.396847,0.60759,0.364977,-0.0133799,0.378881,-1.00875,-0.59847,-0.639233,0.265039,0.117734,-0.227833,-0.6469,-0.464377,0.709065,0.436625,0.88175,0.788556,-0.502237,0.606521,0.283119,0.0019811,1.78009,0.14561,1.18132,0.257846,0.359626,-0.054421,0.701872,0.895902,0.661518,-0.523223,-0.88959,-0.872063,0.560466,0.792803,0.677006,-0.866156,-1.01718,-1.04262,-1.0044,-0.748591,-0.250134,0.125288,-0.783265,0.22904,0.208258,-0.623861,-0.800502,0.970216,0.637248,1.18979,0.0282488,0.720274,0.246936,0.296979,0.158879,-0.105076,0.636645,0.810932,0.638515,-0.154676,-0.343629,-0.433602,0.130728,0.297245,0.827772,0.0156592,0.572175,0.598282,0.659034,0.761495,0.487294,-0.178843,-0.888665,-0.83532,0.720115,0.54482,-0.685054,-0.470933,-0.865947,0.0041648,-0.0500892,1 +1.23115,0.477196,0.0758061,0.173429,-0.163793,-0.969726,0.737871,-0.273962,0.613035,-0.0541244,0.572432,2.01418,0.643211,0.705047,0.454248,-0.280362,0.815034,0.25172,2.01749,-0.00926071,0.439613,0.566315,0.83922,-0.800444,-0.871212,0.230809,0.839801,-0.601727,0.0755659,-0.783497,-0.363541,-0.396144,-0.272282,-0.540551,0.208375,-0.80633,-0.540866,0.47757,0.51306,1.0372,0.680267,1.12845,0.419762,0.175814,1.92086,0.573449,-0.052175,0.265697,1.42155,-0.243899,1.65941,0.521873,0.685289,0.515871,-1.04843,0.409958,0.89005,-0.499762,-0.467147,-0.516429,-0.00920017,-0.455147,0.290186,-0.933039,0.288552,0.63625,-0.104166,0.220407,1.20384,0.411571,0.444104,0.428922,0.683495,1.79116,0.271152,-0.264974,0.798851,-0.155112,2.06654,0.458812,0.268091,0.698267,1.42026,-0.848796,-0.72119,0.512816,0.314511,-0.914901,0.36217,-0.969635,-0.610103,-0.660767,0.265039,0.569145,-0.258503,-0.596532,-0.454162,0.541896,0.359489,0.968485,0.733828,-0.54455,0.440313,0.411156,0.696826,-0.514115,0.194732,0.623449,-0.0797654,2.09023,1.10936,0.679377,0.650951,0.796643,-0.839955,-0.134731,-0.896971,0.259231,0.72518,0.581905,-0.856384,-1.01718,-1.02372,-1.04586,-0.789618,-0.308087,-0.0408675,-0.678457,0.340615,0.218582,-0.604923,-0.789031,0.224653,1.62982,0.301014,0.0442565,0.415029,0.208011,0.827851,0.480107,1.32998,0.959733,0.954394,0.681461,-0.154676,-0.327558,-0.576881,0.338942,0.364665,0.967199,0.00140723,0.572175,0.583261,0.673009,0.723278,0.444862,-0.13124,0.0380216,-0.810688,0.750608,0.556273,-0.705351,-0.449874,-0.865947,0.0041648,-0.0316353,1 +1.23115,0.590429,0.0324363,0.160187,-0.163793,-0.915393,0.775408,1.36221,0.47807,-0.647492,0.416342,-0.348579,-0.367744,0.248478,-0.00465514,-0.0768331,0.901448,-0.207004,0.571992,0.67002,0.272599,0.543466,0.775078,-0.791922,-0.871212,0.521575,0.785666,-0.3198,0.0927844,-0.952952,-0.363541,-0.470675,-0.288281,-1.00819,0.220937,-0.781868,-0.514658,0.440766,0.51306,0.901172,0.66849,1.14138,-0.77855,0.44581,-0.0283746,0.461022,0.0968069,0.51864,0.627444,0.193118,-0.196036,0.455896,0.791494,0.0811757,-1.04843,1.48277,0.881073,-0.474592,-0.437064,-1.13743,-0.0595368,-0.382909,0.290186,-0.978154,0.313059,0.63625,-0.104166,0.048135,1.22436,0.170365,0.379785,0.4136,0.121201,-0.272902,-0.20527,-0.599308,0.772481,0.536672,0.158727,0.326174,0.268091,0.729969,-0.0909023,-0.930844,-0.731325,0.617067,0.301894,2.45853,0.36217,-1.01658,-0.59847,-0.703835,0.241264,-0.386784,-0.197163,-0.546165,-0.392871,0.58123,0.405771,0.939573,0.766665,-0.523394,-0.0199568,0.306399,0.212916,0.470895,0.342096,0.344513,0.0111301,0.0913157,0.109878,0.296968,0.395794,0.765461,-0.124753,0.527696,-0.855458,0.532226,0.767445,0.581905,-0.8857,-1.01718,-1.04262,-1.10114,-0.820388,-0.395016,-1.28064,-1.02513,-0.998288,0.249554,-0.548107,-0.743149,0.346378,-0.395027,0.12326,-0.00376651,0.598176,0.259911,1.03558,0.464811,0.158236,0.791727,0.903158,0.659988,-0.154676,-0.327558,0.354437,0.190217,0.297245,0.874248,0.0156592,0.586667,0.583261,0.659034,0.723278,0.434254,-0.258181,-0.553718,-0.859951,0.750608,0.521915,-0.664758,-0.449874,-0.865947,0.0214034,0.00527254,1 +-1.03556,-0.824983,-0.979526,0.226398,-0.163793,-0.295999,0.597106,-0.115622,0.446924,-0.744087,0.527835,0.278276,0.130189,0.0682531,0.139572,-0.358642,0.737261,-0.222295,0.547492,0.380964,0.156974,0.474921,0.710935,-0.740791,-0.839224,0.488025,0.590779,0.886221,-0.113837,-0.919061,-0.363541,0.114929,0.671648,-0.900276,1.91676,-0.757406,-0.575811,0.808802,-0.930449,0.295247,-0.921456,-1.49604,-0.28055,0.42331,0.147685,0.505993,-0.186259,0.392168,-0.00514623,-0.349386,-0.170266,0.587849,0.589704,0.455497,-1.37871,0.105727,0.692554,-0.298398,-0.0610202,-0.963117,-0.522633,-0.879544,0.97186,-0.978154,0.104748,-1.77097,-0.104166,-0.261956,-1.03239,-0.585415,-0.945205,-1.01135,0.421091,-0.101915,-0.0371211,-0.599308,0.535153,0.302169,0.514221,0.507044,0.622885,0.465785,0.186143,-1.05392,-0.923904,0.617067,-0.379395,-0.0424612,-0.389834,-1.00093,-0.621737,-0.746903,0.241264,0.0115196,0.99896,0.592131,-0.270291,0.748399,-0.90553,0.582994,-0.940878,-1.2427,0.28689,0.446076,0.200508,-0.102655,-0.607586,0.264816,-0.0667803,0.225471,0.0824944,0.634388,0.885696,0.817432,-0.574308,0.389048,-0.830549,0.852289,0.767445,0.69814,-0.866156,-1.08551,-0.929239,0.142772,0.0309211,-0.539898,-0.884424,-0.936446,-0.426465,0.631542,0.777599,1.78036,-0.125305,-0.474433,-0.283036,-0.00376651,0.933945,0.00040888,0.412386,-0.147053,0.118739,0.378175,0.493267,0.595568,-0.114399,-0.279346,-0.147042,-0.717002,-0.579221,0.455968,1.98243,0.441751,0.853639,-1.18577,-0.499652,-1.1251,-0.321651,-0.464399,-0.868162,-1.64311,-1.36778,-1.98404,-0.913154,0.0704246,0.900574,-0.71443,1 +-1.86484,-0.77969,-0.675938,-0.0649315,-0.163793,-1.78472,0.587722,-0.0232575,0.540361,0.125266,0.505536,0.495264,0.733744,-0.196076,0.12646,-0.468235,0.823675,0.236429,0.228993,-0.139336,0.0541959,0.474921,0.775078,-0.791922,-0.828561,0.219625,0.872282,-0.225825,-0.251585,-0.775025,-0.320692,-0.566502,1.96755,-0.648469,0.333991,-0.659556,-0.575811,0.403963,-0.930449,0.925904,-0.756573,-1.27626,0.559825,0.130815,0.323745,0.348595,0.0819087,-0.00129896,-0.408928,-0.0178555,0.023009,0.521873,0.600325,0.576246,-0.877602,0.490019,0.818233,-0.336154,-1.9262,-0.45106,1.5915,-1.00596,0.254309,-0.92552,0.0557333,-2.0889,-0.104166,-0.10691,-1.03239,0.37941,-0.700789,-0.996032,0.695991,0.301126,0.481338,-0.348557,0.719742,-0.237188,0.490522,0.47087,0.382541,0.518622,0.186143,-1.41288,-0.640104,0.389609,0.100031,-0.478681,0.195058,-0.985283,-0.621737,-0.897641,1.5964,0.462931,-0.841229,0.279855,-1.40416,0.541896,-0.936384,0.843201,-0.842366,-1.0523,0.580951,0.469355,0.026797,-0.613863,-0.0672496,0.384361,0.0111301,0.252302,0.096186,0.589399,0.793839,0.827826,-0.870607,-0.442837,-0.86376,0.343953,0.691368,0.740407,-0.817297,-0.994401,-1.15599,1.3314,-0.922956,0.850968,-0.00252401,-0.710706,0.326668,0.569598,-0.585984,0.530077,-0.201383,0.0284704,-0.206856,-0.884188,0.537127,-0.635372,0.608578,-0.07057,0.0265802,0.778804,0.759696,0.531148,-0.114399,-0.279346,-0.505242,0.249707,0.121952,0.932342,1.58337,-0.0509642,0.583261,-1.19974,-0.703474,-1.22057,-0.178843,-0.363915,-0.810688,-1.52114,-1.86024,-1.25336,-0.15506,0.257699,0.228267,-1.93239,1 +-1.03556,-0.81366,-0.950613,0.226398,-0.163793,-0.274266,0.719102,-0.115622,1.63046,-0.619894,0.472088,1.84541,0.220722,0.416687,0.401802,-0.515203,0.797751,-0.268167,2.15224,0.164173,1.8785,1.73159,2.05793,-0.681138,-0.849887,0.767608,0.677395,0.666944,-0.113837,-0.927534,-0.363541,0.114929,0.655649,-0.90927,1.91676,-0.757406,-0.575811,0.64932,-0.930449,0.468369,-0.886124,-1.49604,-0.124925,0.367061,1.65677,0.37108,0.141502,1.37584,1.89263,-0.409664,1.50479,1.89638,1.90664,0.721144,-1.3901,0.137752,0.73744,-0.310983,-0.0610202,-0.908643,-0.542768,-0.888573,0.97186,-0.985673,0.104748,-1.77097,-0.104166,-0.330865,-1.03239,-0.440691,-0.893749,-1.01135,0.433587,1.41254,0.103003,-0.682891,0.587892,0.138017,2.03099,0.422638,2.22518,1.07869,1.73508,-1.05392,-0.913768,0.806615,-0.265847,-0.144246,-0.389834,-1.01658,-0.621737,-0.746903,0.229377,-0.00175722,0.99896,0.592131,-0.229431,0.679564,-0.920957,0.66973,-0.918986,-1.22155,0.363601,0.457715,0.535523,-0.38943,-0.525717,0.238251,-0.0667803,1.96949,1.24628,2.0628,2.23293,2.19986,-0.666263,0.389048,-0.830549,0.748739,0.767445,0.72984,-0.8857,-1.08551,-0.929239,0.115129,0.0206643,-0.568875,-0.782174,-0.944508,-0.35673,0.641866,0.777599,1.78036,0.665905,1.10045,-0.105282,-0.0677972,0.862721,0.117185,1.9473,1.38261,1.77761,0.391099,0.544504,0.563358,-0.114399,-0.263276,-0.0754024,-0.493916,-0.417412,0.595395,1.96818,0.441751,0.853639,-1.19974,-0.499652,-1.13571,-0.337518,-0.553718,-0.884583,-1.64311,-1.36778,-1.98404,-0.913154,0.132849,0.917813,-0.695976,1 +-1.86484,-0.824983,-0.950613,-0.0516892,-0.128956,-1.80645,0.690949,-0.155207,1.62008,-0.592295,0.516686,1.85747,0.265989,0.464747,0.414914,-0.436922,0.78911,-0.252877,2.12774,0.221984,1.91704,1.67446,2.03655,-0.68966,-0.828561,0.745242,0.634087,0.666944,-0.217148,-0.893643,-0.320692,-0.587796,1.95155,-0.864304,0.3968,-0.684019,-0.575811,0.637052,-0.930449,0.418905,-0.897901,-1.28919,-0.0938,0.367061,1.73222,0.449779,0.1564,1.4461,1.82533,-0.364455,1.51767,1.86339,1.86416,0.648695,-0.877602,0.073703,0.719485,-0.310983,-1.8209,-0.886853,1.63177,-1.00596,0.290186,-0.963115,0.0557333,-2.04348,-0.104166,-0.348092,-1.03239,-0.488933,-0.906613,-1.01135,0.471073,1.48582,0.0889907,-0.599308,0.587892,0.161467,2.03099,0.41058,2.23663,1.03642,1.72249,-1.40262,-0.893497,0.787661,-0.303697,-0.158786,0.195058,-1.0244,-0.621737,-0.897641,1.52508,0.0779036,-0.68788,0.310075,-1.41438,0.669731,-0.920957,0.640818,-0.918986,-1.0523,0.363601,0.457715,0.572747,-0.31462,-0.476595,0.264816,-0.0797654,2.02315,1.27366,2.07405,2.22272,2.16868,-0.60496,0.419859,-0.838852,0.748739,0.758992,0.69814,-0.856384,-0.994401,-1.18434,1.30376,-0.943469,0.821992,-0.718269,-0.896135,-0.273049,0.569598,-0.529168,0.564489,0.787629,1.16662,-0.0544946,-0.0838048,0.862721,0.10421,1.91268,1.29083,1.73811,0.352328,0.524009,0.541885,-0.114399,-0.279346,-0.147042,-0.553405,-0.471348,0.548919,1.72589,-0.0509642,0.643345,-1.19974,-0.716213,-1.22057,-0.305783,-0.464399,-0.859951,-1.52114,-1.84879,-1.25336,-0.197177,0.257699,0.245506,-1.89548,1 +-1.03556,-0.77969,-0.762677,0.226398,-0.163793,-0.285133,0.831714,1.45458,1.02831,-0.633693,0.438641,-0.17981,-0.382833,0.224448,-0.0177667,0.0327593,0.8496,-0.207004,0.596492,0.713378,1.35177,1.69731,2.18621,-0.808966,-0.849887,1.43861,0.872282,0.0874276,-0.113837,-0.936007,-0.363541,0.104281,0.655649,-0.990208,1.91676,-0.781868,-0.575811,0.489838,-0.930449,0.826977,-0.791905,-1.48312,-0.762988,0.44581,-0.00322319,0.517235,0.230891,0.490535,0.600526,0.238327,0.113204,1.58849,2.20402,-0.0395731,-1.3901,1.70694,0.82721,-0.298398,-0.0459784,-1.12654,-0.532701,-0.888573,0.97186,-0.970635,0.104748,-1.77097,-0.104166,-0.279183,-1.03239,0.170365,-0.765109,-1.01135,0.133696,-0.224049,-0.163233,-0.682891,0.614262,0.560122,0.312775,0.374406,1.68727,1.2372,1.23136,-1.07443,-0.731325,1.05303,0.0621812,2.28404,-0.389834,-0.985283,-0.621737,-0.746903,0.241264,-0.333677,0.99896,0.592131,-0.260076,0.600897,-0.967238,0.814289,-0.864257,-1.22155,-0.0455274,0.294759,0.175692,0.545706,0.211105,0.0522936,0.102025,0.0779002,0.123569,1.93908,2.04921,2.26223,-0.165621,0.450669,-0.847155,0.56988,0.742086,0.793241,-0.856384,-1.08551,-0.919791,0.115129,0.000150834,-0.568875,-1.26786,-1.00094,-0.970394,0.631542,0.777599,1.78036,0.13336,-0.395027,0.12326,-0.580043,0.730448,-0.220168,2.40893,1.65794,1.44847,0.636645,0.70846,0.552622,-0.114399,-0.279346,-0.0037626,0.0861103,0.0275631,0.874248,1.96818,0.441751,0.853639,-1.19974,-0.499652,-1.13571,-0.289916,-0.509058,-0.859951,-1.62787,-1.36778,-1.98404,-0.913154,0.132849,0.917813,-0.695976,1 +-1.86484,-0.824983,-0.415719,-0.0649315,-0.128956,-1.78472,0.531416,0.398981,0.550743,-0.357708,0.617029,1.83336,0.477233,0.332582,0.336244,-0.186426,0.719978,-0.0540961,2.16449,0.323153,0.105585,0.474921,0.764387,-0.7834,-0.828561,1.02482,0.796493,-0.163174,-0.234367,-0.808916,-0.320692,-0.587796,1.96755,-0.639476,0.371676,-0.684019,-0.575811,0.771998,-0.930449,1.16085,-0.744795,-1.27626,0.1552,0.288312,1.68192,0.663391,0.0074178,0.279749,1.933,-0.274038,1.35017,0.422908,0.749012,0.407197,-0.888991,2.09124,0.764371,-0.550103,-1.86603,-0.701641,1.61164,-1.00596,0.290186,-0.933039,0.0557333,-2.04348,-0.104166,0.651089,-1.03239,0.861823,-0.597878,-1.01135,0.621018,1.40033,0.117016,-0.432141,0.710952,0.0324905,2.03099,0.519102,0.119307,0.560891,1.35729,-1.42313,-0.822547,0.380132,-0.0513671,2.6621,0.195058,-0.985283,-0.621737,-0.897641,1.54885,0.462931,-0.74922,0.310075,-1.38373,0.423894,-0.843821,0.910661,-0.886149,-1.0523,0.363601,0.434436,0.473483,-0.22734,0.784189,0.796124,-0.0537952,2.00973,1.31473,0.476925,0.487651,0.786249,-0.67648,0.204185,-0.86376,0.899357,0.488496,0.423404,-0.827069,-0.994401,-1.15599,1.31758,-0.943469,0.821992,-0.322053,-0.734892,0.131411,0.569598,-0.548107,0.553018,0.026851,1.03428,-0.0925848,-0.483997,0.231883,-0.95975,0.943258,1.24494,1.50113,1.16651,0.923652,0.692198,-0.114399,-0.279346,-0.147042,0.532284,0.202856,1.01367,1.66889,-0.0509642,0.628324,-1.19974,-0.716213,-1.23118,-0.226446,-0.0178029,-0.818898,-1.52114,-1.83734,-1.25336,-0.197177,0.257699,0.245506,-1.89548,1 +-1.80955,-0.734397,-0.690394,0.107218,-0.163793,-1.32832,0.728486,-0.221182,1.36053,-0.0679236,0.594731,2.09857,0.6583,1.16162,0.46736,-0.233394,0.832317,0.312883,1.76024,-0.0237135,1.73718,1.75443,2.13276,-0.843053,-0.860549,0.912992,0.904763,0.46333,-0.699265,-0.758079,-0.342116,0.0510446,1.51958,-0.495586,0.698279,-0.904179,-0.567074,0.428498,-0.958208,0.839343,-0.709463,-1.8839,0.419762,0.254563,2.00889,0.629662,0.0372142,0.673216,0.72166,-0.289108,1.86557,1.79741,2.06595,0.370973,-0.888991,0.441983,0.773348,-0.18513,-1.11394,-0.505534,1.23915,-0.915663,0.0390432,-0.918001,0.337566,-1.36219,-0.104166,-0.227501,-1.03239,0.315088,-0.687925,-0.996032,0.708486,2.02321,0.243127,-0.18139,0.702162,-0.119936,1.99545,0.482928,2.00773,1.16323,1.73508,-0.910332,-0.72119,0.844525,0.276661,-0.478681,-0.0388992,-0.969635,-0.59847,-0.596165,1.35866,0.622252,1.12164,-0.153302,-0.0251299,0.650064,-0.967238,0.756465,-0.765745,-1.75045,0.427528,0.399517,0.882945,-0.31462,-0.181866,0.278099,-0.0927504,2.00973,0.862912,2.01781,2.17169,2.25184,-0.891041,-0.365811,-0.905274,0.428676,0.682915,0.867208,-0.836841,-1.23356,-1.1182,1.31758,0.677096,-0.829662,-0.0153052,-0.646209,0.382456,0.228906,0.720783,-0.892266,1.12237,2.01362,1.08821,-0.756127,0.6694,-0.492645,2.18965,1.19905,1.64595,0.636645,0.626482,0.541885,-0.114399,-0.279346,-0.648521,0.26458,0.229825,0.897486,2.01093,0.209885,1.33431,-1.18577,-1.55698,-1.15693,-0.0995054,0.138506,-0.794267,-1.59737,-0.417204,-1.5984,-0.3867,0.694673,1.12468,0.282081,1 +-2.47298,-0.734397,-0.690394,-0.303292,-0.163793,-1.56739,0.719102,-0.194792,1.30862,0.00107263,0.561283,2.07446,0.673389,1.12557,0.493583,-0.311674,0.815034,0.25172,1.78474,-0.0381663,1.72434,1.70874,2.13276,-0.817488,-0.839224,0.935358,0.893936,0.478993,0.127221,-0.758079,-0.342116,-1.3757,-0.272282,-0.495586,1.94188,-0.488321,1.4597,0.403963,-0.944329,0.826977,-0.72124,-1.53483,0.46645,0.220813,2.02147,0.573449,0.0372142,0.631059,0.829335,-0.228829,1.81403,1.74243,2.05533,0.443422,-1.27621,0.457995,0.773348,-0.172545,-0.256563,-0.461955,0.614973,-1.01499,-1.57545,-0.918001,0.104748,-1.72555,-0.104166,-0.244728,-1.03239,0.315088,-0.687925,-0.996032,0.695991,1.99878,0.285165,-0.264974,0.693372,-0.178562,1.99545,0.482928,1.97339,1.13153,1.72249,-1.46416,-0.690783,0.844525,0.276661,-0.435059,-0.105744,-0.985283,-0.621737,-1.11298,0.312587,0.608975,0.293554,-0.888662,-1.29179,0.630397,-0.951811,0.746828,-0.776691,-1.36964,0.440313,0.387877,0.895353,-0.38943,-0.19824,0.264816,-0.0797654,2.04998,0.903987,2.01781,2.14107,2.23105,-0.870607,-0.30419,-0.872063,0.438089,0.682915,0.856641,-0.827069,-0.91468,-0.976479,0.198057,-0.0101059,-0.0472997,0.0230383,-0.646209,0.396403,1.15806,1.06168,1.57389,1.01586,1.94744,0.999335,-0.788142,0.64905,-0.518596,2.18965,1.26023,1.65912,0.623722,0.616235,0.520412,-0.114399,-0.279346,-0.576881,0.249707,0.21634,0.885867,1.64038,0.311326,0.222758,-1.18577,-1.87545,-1.23118,-0.162975,0.0938461,-0.802477,-1.50589,-0.646258,-1.11128,0.792556,2.38014,1.00401,1.5554,1 +-1.03556,-0.858953,-0.762677,0.226398,-0.163793,-0.328599,0.503263,-0.181597,0.540361,-0.0955221,0.483238,2.11062,0.567767,1.12557,0.55914,-0.296018,0.443453,1.32208,1.79699,-0.0381663,0.966349,0.463497,0.390223,-0.706704,-0.839224,0.756425,0.22266,0.980196,-0.0966188,-0.859752,-0.363541,0.114929,0.735643,-0.783366,1.87907,-0.757406,-0.575811,1.1523,-0.944329,0.221052,-1.0039,-1.48312,0.357512,0.277063,2.02147,0.314867,-0.528917,1.46015,0.788957,-0.183621,1.87845,0.609841,0.451638,0.781519,-1.37871,0.185788,0.495059,-0.37391,-0.0610202,-0.647167,-0.452162,-0.879544,1.00774,-0.970635,0.092494,-1.81639,-0.104166,0.530498,-1.03239,-0.231646,-1.00952,-1.01135,0.608523,2.02321,0.397264,-0.515724,0.447253,0.0676659,2.01914,0.458812,0.9319,0.402381,1.44544,-1.02315,-0.751597,0.654977,-0.732657,0.626409,-0.389834,-1.00875,-0.621737,-0.746903,0.276926,0.263779,0.93762,0.582057,-0.464377,0.817233,-0.79754,0.370974,-0.995607,-1.2427,0.542595,0.492635,0.895353,0.782607,2.30695,2.13767,0.0371002,2.02315,0.835529,0.724367,0.895902,0.588759,-0.819521,0.0501319,-0.830549,0.974666,0.691368,0.465671,-0.866156,-1.08551,-0.929239,0.239521,0.0514345,-0.481946,-0.270928,-0.8397,0.0756239,0.610894,0.75866,1.78036,1.30496,2.01362,1.03743,0.524487,1.00517,0.0652845,0.193113,0.0976925,1.14566,0.76588,0.503515,0.810301,-0.114399,-0.279346,-0.218682,-0.969834,-0.97026,0.0376881,1.99668,0.441751,0.898702,-1.18577,-0.486913,-1.10389,-0.289916,-0.509058,-0.859951,-1.64311,-1.37923,-1.98404,-0.913154,0.0704246,0.900574,-0.751337,1 +-1.92012,-0.768367,-0.87833,-0.0516892,-0.128956,-1.79558,0.615875,0.464956,1.79657,0.484046,0.13761,0.483209,0.718656,0.0922831,0.205129,0.204976,0.797751,1.68906,-0.224257,-0.0815246,2.08406,1.57165,1.94033,-0.800444,-0.828561,0.465659,0.785666,0.933208,-0.268803,-0.775025,-0.299267,-0.545207,1.96755,-0.810345,0.333991,-0.659556,-0.575811,0.624784,-0.944329,0.567295,-0.803682,-1.26333,0.762137,0.0970652,0.386624,0.033799,-0.0670732,1.98009,-0.247415,0.524649,0.89919,1.89638,1.65175,0.564171,-0.866214,0.233825,0.73744,-0.172545,-1.94124,-0.222268,1.60157,-1.00596,0.182553,-0.940558,0.0557333,-2.0889,-0.104166,-0.365319,-1.03239,-0.215565,-0.816565,-0.996032,0.508559,0.53318,0.71955,-0.264974,0.710952,0.8298,0.277225,0.314116,2.39686,0.930749,1.30692,-1.40262,-0.396847,0.636022,0.0495647,0.262893,0.195058,-1.00093,-0.621737,-0.897641,1.58451,0.0911804,-0.810559,0.259708,-1.41438,0.738565,-0.951811,0.660092,-0.83142,-1.0523,0.619307,0.306399,0.014389,1.82996,1.2754,1.15476,0.296801,0.144978,-0.0133464,2.0853,2.24313,2.08553,-0.53344,-1.10526,-0.855458,0.682843,0.742086,0.846074,-0.827069,-1.00579,-1.17489,1.3314,-0.912699,0.821992,0.112506,-0.783265,0.215093,0.559274,-0.585984,0.518607,1.42668,0.504905,0.796187,-0.32392,0.862721,-0.155292,1.62416,0.373031,1.00084,0.429869,0.513762,0.574095,-0.114399,-0.279346,-0.433602,-0.196466,-0.120762,0.699965,1.59763,-0.0509642,0.56824,-1.18577,-0.690735,-1.20997,-0.194711,-0.83284,-0.818898,-1.52114,-1.87169,-1.27366,-0.134002,0.320124,0.211029,-1.95084,1 +-1.6437,-0.791014,-0.661481,0.0939753,-0.163793,1.02972,0.597106,-0.0232575,0.540361,0.0700689,0.538984,0.531429,0.718656,-0.148016,0.113349,-0.40561,0.840958,0.267011,0.192243,-0.153789,0.0798904,0.49777,0.764387,-0.817488,-0.849887,0.219625,0.883109,-0.272812,0.747086,-0.766552,-0.320692,0.0829867,1.61558,-0.333709,1.10025,-0.904179,2.13237,0.428498,-0.944329,0.950636,-0.756573,-1.87097,0.5287,0.175814,0.311169,0.416051,0.0968069,0.0127534,-0.422387,-0.0932033,0.087434,0.543865,0.610945,0.503796,-0.877602,0.474007,0.82721,-0.348739,1.08215,-0.494639,1.21901,-0.906633,0.146676,-0.293911,1.59969,-1.31678,-0.145623,-0.0724558,-1.03239,0.411571,-0.700789,-0.996032,0.708486,0.337766,0.439301,-0.264974,0.728531,-0.190287,0.502371,0.47087,0.416876,0.529189,0.186143,-0.920588,-0.670511,0.389609,0.100031,-0.536844,0.178346,-0.570624,-0.59847,-0.596165,1.45375,0.476207,1.12164,-0.0827882,1.73186,0.551729,-0.951811,0.852838,-0.842366,-1.7293,0.568166,0.480995,0.0392049,-0.501647,-0.0672496,0.384361,-0.00185501,0.225471,0.123569,0.589399,0.824458,0.848615,-0.901258,-0.489053,-0.880366,0.33454,0.691368,0.740407,-0.836841,-1.00579,-0.645799,1.24847,0.666839,-0.858639,-0.0280863,-0.525276,0.312721,1.43681,0.682905,0.58743,-0.170951,0.0814076,-0.206856,-0.868181,0.567652,-0.609422,0.585496,-0.0858666,0.00024893,0.804651,0.769943,0.541885,-0.114399,-0.279346,-0.576881,0.26458,0.135436,0.943961,1.96818,1.26777,1.30427,-1.18577,-1.46781,-1.14632,-0.147108,-0.140617,0.0349983,-1.59737,-0.428657,-1.639,-0.449874,0.632248,1.10744,0.208265,1 +-0.980271,-0.81366,-0.96507,0.226398,-0.163793,1.50785,0.60649,-0.0892324,0.446924,-0.757886,0.483238,0.254166,0.1151,0.0682531,0.178906,-0.436922,0.745903,-0.237586,0.571992,0.323153,0.144127,0.49777,0.710935,-0.715226,-0.839224,0.476842,0.62326,0.854895,1.81463,-0.817388,-0.363541,0.104281,0.815637,-0.540551,1.84139,-0.757406,1.2675,0.808802,-0.916569,0.332344,-0.909678,-1.4314,-0.28055,0.412061,0.13511,0.438536,-0.186259,0.392168,0.0217725,-0.409664,-0.183151,0.598845,0.600325,0.552096,-0.365109,0.137752,0.710508,-0.298398,1.84928,-0.984907,-0.502499,-0.870514,0.97186,0.0895664,1.39137,-1.86181,-0.145623,-0.244728,-1.03239,-0.553254,-0.932341,-0.996032,0.383605,-0.126342,-0.0231087,-0.766474,0.535153,0.266993,0.514221,0.519102,0.622885,0.476353,0.186143,-1.0334,-0.954311,0.617067,-0.354162,-0.0424612,0.963773,0.454287,-0.621737,-0.789971,0.336362,-0.0548644,0.93762,0.592131,1.62971,0.748399,-0.90553,0.602269,-0.929932,-1.2427,0.28689,0.434436,0.212916,-0.177466,-0.640333,0.251534,-0.0667803,0.212055,0.0688029,0.623141,0.895902,0.83822,-0.635611,0.358238,-0.813944,0.842875,0.78435,0.719273,-0.875928,0.713896,0.78085,0.350091,-0.0408761,-0.308087,-0.897205,-0.589774,-0.468305,0.899965,0.796537,1.81477,-0.125305,-0.500902,-0.283036,-0.00376651,0.944119,0.013384,0.423926,-0.131756,0.145071,0.404022,0.513762,0.606305,-0.114399,-0.279346,-0.0037626,-0.672385,-0.552253,0.490825,2.06794,1.32574,1.04891,-1.18577,-0.448697,-1.1145,-0.369253,-0.486729,-0.745004,-1.61262,-1.40213,-1.96374,-0.934212,0.0704246,0.83162,-0.825153,1 +-0.980271,-0.824983,-0.979526,1.64332,-0.163793,-0.285133,0.597106,-0.128817,0.446924,-0.744087,0.527835,0.290331,0.130189,0.0682531,0.139572,-0.342986,0.737261,-0.222295,0.547492,0.380964,0.156974,0.474921,0.710935,-0.314699,-0.839224,0.488025,0.590779,0.886221,0.00669205,-0.910588,-0.342116,0.125576,0.623651,-0.891283,1.95444,-0.80633,-0.575811,0.808802,-0.930449,0.295247,-0.921456,-1.50897,-0.28055,0.42331,0.147685,0.505993,-0.201157,0.392168,-0.0186056,-0.349386,-0.157381,0.587849,0.589704,0.443422,-0.53594,0.105727,0.692554,-0.298398,-0.0610202,-0.963117,1.55123,-0.879544,0.97186,-0.970635,0.117001,-1.72555,-0.104166,-0.244728,-1.03239,-0.585415,-0.945205,-1.01135,0.421091,-0.0897016,-0.0511336,-0.599308,0.535153,0.302169,0.526071,0.507044,0.63433,0.465785,0.186143,1.45882,-0.923904,0.617067,-0.392012,-0.0424612,0.997195,-0.993107,-0.621737,-0.746903,1.09714,0.0115196,1.02963,0.571984,-0.280506,0.748399,-0.90553,0.573357,-0.940878,-1.26386,0.28689,0.446076,0.200508,-0.0901869,-0.607586,0.278099,-0.0667803,0.225471,0.0824944,0.634388,0.885696,0.817432,-0.574308,0.373643,-0.805641,0.852289,0.767445,0.69814,-0.866156,-1.05134,-0.919791,0.377734,0.0822048,-0.655804,-0.884424,-0.928384,-0.412518,0.65219,0.796537,1.74595,-0.125305,-0.474433,-0.283036,-0.00376651,0.933945,0.00040888,0.412386,-0.16235,0.118739,0.391099,0.493267,0.606305,-0.114399,-0.279346,-0.147042,-0.717002,-0.579221,0.455968,1.91117,0.456242,1.28925,-1.18577,-0.512391,-1.1251,-0.305783,-0.453234,-0.859951,-1.64311,-1.29906,-1.98404,-0.892095,0.0704246,0.917813,-0.62216,1 +-1.6437,-0.77969,-0.661481,1.29902,-0.163793,-0.0569353,0.587722,-0.0100625,0.540361,0.0976674,0.505536,0.495264,0.703567,-0.196076,0.139572,-0.452579,0.832317,0.236429,0.241243,-0.153789,0.0413487,0.486345,0.775078,-0.800444,-0.78591,0.219625,0.893936,-0.241487,1.95238,-0.732661,-0.21357,-0.555854,1.93555,-0.666455,0.283745,-0.659556,-0.575811,0.416231,-0.930449,0.950636,-0.756573,-1.21162,0.544262,0.153314,0.298594,0.348595,0.0670106,-0.00129896,-0.395468,-0.0479947,0.035894,0.543865,0.621566,0.564171,1.28626,0.506031,0.82721,-0.336154,1.11224,-0.483744,1.5009,-0.99693,0.361941,-0.933039,0.38658,-2.0889,-0.104166,-0.0724558,-1.03239,0.411571,-0.687925,-0.996032,0.683495,0.2767,0.467326,-0.348557,0.728531,-0.225463,0.502371,0.47087,0.371096,0.529189,0.186143,0.843453,-0.660375,0.389609,0.125264,-0.478681,2.10013,-0.860103,-0.621737,-0.876107,1.67961,0.436377,-1.14793,0.360442,-1.42459,0.551729,-0.936384,0.852838,-0.83142,-1.09461,0.568166,0.469355,0.026797,-0.626332,-0.0999973,0.384361,0.0111301,0.238886,0.096186,0.578151,0.804046,0.848615,-0.880824,-0.458242,-0.764128,0.33454,0.691368,0.750974,-0.827069,1.14666,0.270658,1.34522,-0.933212,0.937898,-0.0408675,-0.686519,0.284827,0.559274,-0.718555,0.553018,-0.186167,0.0284704,-0.219552,-0.868181,0.557477,-0.635372,0.631659,-0.07057,0.0397458,0.804651,0.769943,0.541885,-0.154676,-0.295417,-0.505242,0.279452,0.14892,0.943961,1.25558,0.804041,1.16908,-1.18577,-0.665257,-1.20997,-0.178843,-0.37508,-0.810688,-1.50589,-1.81443,-1.27366,-0.218235,0.0704246,0.211029,-1.84012,1 +-1.75427,-0.870277,-1.13855,0.133702,-0.163793,-1.35006,0.531416,0.412176,0.613035,-0.454303,0.460939,1.02568,0.341433,0.0802681,0.375579,-0.468235,0.650847,-0.0846777,0.976242,-0.500655,1.54447,0.49777,1.32029,-0.817488,-0.78591,0.845892,0.0602539,0.557306,-0.699265,-0.851279,-0.342116,0.0510446,1.56758,-0.900276,0.811333,-0.904179,-0.567074,0.428498,-0.944329,-0.298312,-1.0039,-1.87097,0.0307,0.389561,0.172837,0.24741,-0.379935,0.293801,0.587066,-0.485012,1.54344,0.598845,0.568463,0.431347,-0.877602,0.441983,0.441196,-0.474592,-1.21923,-0.832379,1.20895,-0.906633,0.0390432,-0.918001,0.349819,-1.27136,-0.145623,-1.10609,-1.02213,-1.32511,-1.03525,-0.996032,0.483568,0.240059,0.299177,-0.18139,0.719742,0.0442156,1.05931,0.362348,0.760225,0.465785,1.82323,-1.01289,-0.852954,0.692887,-0.909287,0.626409,0.0279456,-0.961812,-0.59847,-0.617699,1.29922,-0.0548644,1.15231,-0.173449,-0.0455599,0.777899,-0.936384,0.274601,-1.02844,-1.75045,0.504239,0.539194,0.299772,-0.439304,-0.656707,0.198403,0.0371002,0.0913157,0.096186,1.48919,0.650951,0.495211,-1.1056,-1.13607,-0.838852,0.899357,0.632197,0.254335,-0.787982,-1.18801,-1.08986,1.34522,0.666839,-0.829662,-0.718269,-0.904197,-0.328836,0.270202,0.720783,-0.880795,0.939785,0.729888,-0.181462,-0.820158,0.679574,-0.739173,0.98942,1.8415,1.92243,-0.112918,0.319064,0.584831,-0.154676,-0.311488,-0.433602,-1.26728,-1.09162,-0.148214,2.05369,0.195393,1.24418,-1.18577,-1.5315,-1.15693,-0.226446,-0.665367,-0.802477,-1.59737,-0.394299,-1.6187,-0.3867,0.694673,1.0902,0.318989,1 +-0.924986,-0.858953,-0.936156,0.226398,-0.163793,-0.350332,0.728486,0.834415,0.613035,-1.26846,0.44979,-0.445018,-0.2923,0.236463,0.0346794,-0.108145,0.650847,-0.482239,0.179993,0.207531,0.169821,0.509194,0.283319,-0.800444,-0.78591,0.935358,0.525817,-0.304138,-0.0794003,-0.902116,-0.363541,0.104281,0.671648,-0.972222,1.91676,-0.781868,-0.575811,0.0236594,-0.916569,0.542563,-0.94501,-1.47019,-0.8408,0.45706,-0.267313,0.472265,-0.141564,0.350011,0.910091,-0.741195,0.048779,0.411912,0.387915,0.18985,-1.35593,2.36344,0.73744,-0.499762,-0.0459784,-1.11564,-0.462229,-0.870514,0.97186,-0.933039,0.117001,-1.77097,-0.145623,-0.933818,-1.03239,-0.456772,-0.919477,-1.01135,0.183678,-0.333969,-0.373419,-0.432141,0.719742,0.524946,-0.374513,0.555276,0.0964167,0.708834,0.186143,-1.06417,-1.02526,0.645499,-0.606492,-0.318734,-0.373123,-0.961812,-0.621737,-0.768437,0.276926,-0.3204,1.02963,0.582057,-1.16921,0.394393,-0.936384,0.746828,-0.995607,-1.2427,0.0311842,0.341318,0.225324,0.408552,0.604077,0.769558,-0.105735,-0.297734,0.233101,-0.0179579,0.0079549,0.0794416,-0.839955,-0.227163,-0.813944,0.551053,0.699821,0.423404,-0.807525,-1.05134,-0.900895,0.142772,0.000150834,-0.510922,-1.21673,-0.984819,-0.914606,0.610894,0.815476,1.79183,0.0420666,-0.236216,0.0851695,-1.3324,0.170834,-1.02463,0.850932,1.94858,0.816517,0.404022,0.728954,0.488202,-0.154676,-0.295417,-0.147042,-0.58315,-0.619673,0.560538,2.01093,0.427259,0.793555,-1.19974,-0.474175,-1.1251,-0.305783,-0.531388,-0.83532,-1.64311,-1.34487,-1.98404,-0.934212,0.0704246,0.866097,-0.71443,1 +-0.924986,-0.858953,-0.950613,0.226398,-0.163793,-0.350332,0.737871,-0.221182,0.654563,-1.30986,0.438641,1.17034,-0.307388,0.284523,0.047791,-0.139457,0.633564,-0.00822363,0.755742,0.178625,1.82711,0.532042,1.20269,-0.800444,-0.78591,0.488025,0.504163,-0.304138,-0.0794003,-0.902116,-0.363541,0.104281,0.687646,-0.981215,1.91676,-0.781868,-0.575811,-0.025412,-0.916569,0.4931,-0.94501,-1.47019,-0.871925,0.46831,0.172837,0.449779,-0.17136,0.968317,0.142907,-0.801473,1.7496,0.4449,0.557843,0.201924,-1.35593,0.105727,0.73744,-0.512348,-0.0459784,-1.12654,-0.452162,-0.870514,0.97186,-0.933039,0.117001,-1.77097,-0.145623,-1.00273,-1.03239,-0.553254,-0.932341,-0.996032,0.158687,0.484327,-0.387432,-0.432141,0.719742,0.524946,1.03561,0.567334,1.10357,0.719402,1.82323,-1.06417,-1.0354,0.683409,-0.656958,-0.624088,-0.373123,-0.961812,-0.621737,-0.768437,0.276926,-0.360231,1.02963,0.582057,-1.16921,0.394393,-0.936384,0.737191,-0.995607,-1.2427,0.0311842,0.341318,0.25014,0.421021,0.571329,0.809406,-0.105735,0.0644847,0.274176,1.55667,0.722395,0.536788,-0.870607,-0.273379,-0.813944,0.579294,0.716727,0.412837,-0.807525,-1.05134,-0.900895,0.156593,0.0104076,-0.481946,-1.2423,-0.992881,-0.970394,0.60057,0.815476,1.79183,1.65492,1.20632,0.351801,-1.38043,0.14031,-1.05058,0.689362,1.24494,1.72494,0.352328,0.718707,0.477465,-0.154676,-0.295417,-0.147042,-0.64264,-0.67361,0.525681,2.02519,0.427259,0.793555,-1.18577,-0.474175,-1.1251,-0.305783,-0.553718,-0.83532,-1.64311,-1.35632,-1.98404,-0.934212,0.0704246,0.866097,-0.71443,1 +-1.75427,-0.870277,-1.12409,0.133702,-0.163793,-1.36092,0.531416,0.385787,0.592271,-0.399106,0.44979,0.109507,0.356522,0.236463,0.362468,-0.468235,0.650847,2.05604,-0.493757,-0.47175,1.14621,0.486345,-0.112227,-0.817488,-0.78591,0.801158,0.092735,0.619956,-0.699265,-0.842807,-0.342116,0.0510446,1.56758,-0.891283,0.798772,-0.904179,-0.567074,0.47757,-0.944329,-0.261215,-1.0039,-1.87097,0.0773875,0.355811,-0.204434,0.224925,-0.365037,1.85362,-0.166659,-0.424734,0.82188,0.532869,0.324192,0.443422,-0.877602,-0.0543942,0.450173,-0.462006,-1.20419,-0.810589,1.21901,-0.906633,0.0390432,-0.918001,0.349819,-1.27136,-0.145623,-1.01995,-1.02213,-1.27687,-1.03525,-0.996032,0.483568,0.215633,0.313189,-0.18139,0.702162,0.325619,-0.398213,0.362348,0.851785,0.465785,0.223922,-1.00264,-0.832682,0.683409,-0.871438,0.626409,0.0112344,-0.969635,-0.59847,-0.617699,1.29922,-0.0283108,1.12164,-0.183522,-0.0455599,0.777899,-0.951811,0.293876,-1.0175,-1.75045,0.504239,0.515914,0.262548,0.421021,-0.607586,1.56652,0.0500852,-0.297734,0.0824944,0.251978,0.0998115,0.0586532,-1.08517,-1.10526,-0.838852,0.899357,0.64065,0.286035,-0.797754,-1.1994,-1.0993,1.34522,0.666839,-0.829662,-0.667144,-0.896135,-0.286996,0.259878,0.720783,-0.880795,1.98966,1.10045,0.910458,-0.756127,0.699924,-0.687272,0.14695,0.174175,0.131905,-0.0612237,0.329311,0.595568,-0.154676,-0.295417,-0.433602,-1.23754,-1.06465,-0.113357,2.05369,0.195393,1.24418,-1.18577,-1.54424,-1.15693,-0.226446,-0.654202,-0.810688,-1.59737,-0.394299,-1.6187,-0.3867,0.694673,1.0902,0.318989,1 +-0.8697,-0.870277,-1.15301,1.64332,-0.163793,-0.372065,0.550185,0.478151,0.613035,-0.481901,0.416342,-0.674061,0.296167,0.0562381,0.414914,-0.530859,0.642206,0.00706718,-0.432507,-0.515108,-0.318374,0.520618,-0.122917,-0.485136,-0.78591,0.845892,0.0710809,0.525981,0.0239105,-0.876697,-0.342116,0.125576,0.655649,-0.945242,1.94188,-0.80633,-0.575811,0.379427,-0.930449,-0.310678,-1.01567,-1.49604,-0.000425026,0.378311,-0.317616,0.157469,-0.394833,0.139225,-0.126281,-0.469942,-0.376427,0.587849,0.356054,0.479647,-0.581495,-0.00635777,0.450173,-0.474592,-0.0459784,-0.865064,1.5915,-0.861484,0.97186,-0.933039,0.117001,-1.72555,-0.145623,-1.15777,-1.03239,-1.34119,-1.04812,-0.996032,0.446082,-0.614876,0.299177,-0.348557,0.737321,0.0324905,-0.56411,0.374406,-0.178263,0.48692,0.0602135,1.45882,-0.86309,0.711841,-0.909287,0.655491,0.947061,-0.961812,-0.621737,-0.768437,1.1328,-0.147802,1.0603,0.56191,-1.19986,0.768066,-0.936384,0.293876,-1.03939,-1.28502,0.504239,0.527554,0.336996,-0.763485,-0.673081,0.171838,0.0760554,-0.270903,0.0824944,-0.197915,-0.094108,-0.0141065,-1.1056,-1.18229,-0.797339,0.918184,0.649103,0.264902,-0.807525,-1.01718,-0.900895,0.433019,0.0924615,-0.539898,-0.782174,-0.944508,-0.426465,0.610894,0.815476,1.75742,-0.0340113,-0.580307,-0.270339,-0.884188,0.64905,-0.778098,0.193113,0.0976925,0.23723,-0.151688,0.319064,0.574095,-0.154676,3.15978,-0.290322,-1.26728,-1.09162,-0.136595,1.96818,0.427259,1.27423,-1.18577,-0.486913,-1.10389,-0.274048,-0.743521,-0.827109,-1.64311,-1.28761,-1.98404,-0.913154,0.0704246,0.883336,-0.659068,1 +-1.69898,-0.858953,-0.96507,1.3255,-0.163793,0.0299972,0.747255,-0.234377,0.654563,-1.32366,0.44979,-0.384744,-0.322477,0.272508,0.0346794,-0.0768331,0.633564,-0.436366,-0.702007,0.178625,0.182668,0.543466,-0.251202,-0.817488,-0.743259,0.488025,0.460854,-0.288475,2.02125,-0.876697,-0.277843,-0.598444,2.01555,-0.972222,0.333991,-0.659556,-0.575811,-0.0622155,-0.916569,0.443637,-0.956788,-1.19869,-0.90305,0.479559,-0.292464,0.483507,-0.186259,0.378116,-0.503143,-0.801473,0.126089,0.4449,0.313572,0.1657,1.26348,0.185788,0.719485,-0.524933,1.18744,-1.11564,1.5311,-0.99693,0.326064,-0.918001,0.460102,-2.13432,-0.145623,-1.08886,-1.02213,-0.649737,-0.932341,-0.996032,0.171182,-0.297329,-0.401444,-0.348557,0.737321,0.560122,-0.56411,0.567334,0.142197,0.729969,0.0979924,0.77166,-1.0354,0.702364,-0.707424,-0.595006,2.15027,-0.907045,-0.621737,-0.897641,1.62017,-0.360231,-0.994578,0.360442,-1.40416,0.394393,-0.936384,0.717916,-1.00655,-1.11577,0.018399,0.341318,0.25014,0.470895,0.571329,0.835972,-0.105735,-0.297734,0.287868,-0.0292053,-0.0736954,-0.0141065,-0.870607,-0.319595,-0.772431,0.598121,0.708274,0.381136,-0.787982,1.13528,0.26121,1.34522,-0.933212,0.937898,-1.22951,-0.976757,-0.970394,0.569598,-0.680677,0.575959,-0.155736,-0.24945,0.135956,-1.39643,0.14031,-1.06355,-0.130027,-0.16235,-0.223566,0.287711,0.698213,0.466728,-0.154676,-0.311488,-0.218682,-0.717002,-0.727546,0.479206,1.45511,0.919974,1.22916,-1.19974,-0.677996,-1.22057,-0.274048,-0.542553,-0.810688,-1.49065,-1.78007,-1.27366,-0.218235,0.0704246,0.176551,-1.84012,1 +-1.6437,-0.8816,-1.13855,0.12046,-0.163793,1.01885,0.550185,0.438566,0.602653,-0.4957,0.460939,-0.637897,0.311256,0.0562381,0.388691,-0.468235,0.659489,0.0376488,-0.420257,-0.515108,-0.305527,0.520618,-0.112227,-0.817488,-0.78591,0.857075,0.0385998,0.46333,0.712649,-0.859752,-0.342116,0.0829867,1.66357,-0.693434,1.13794,-0.904179,2.14985,0.391695,-0.944329,-0.323044,-1.01567,-1.87097,-0.0159875,0.412061,-0.342767,0.24741,-0.379935,0.139225,-0.126281,-0.530221,-0.350657,0.576853,0.377295,0.407197,-0.866214,-0.00635777,0.441196,-0.487177,1.05207,-0.865064,1.20895,-0.888573,0.146676,-0.549562,1.61194,-1.27136,-0.145623,-1.15777,-1.02213,-1.34119,-1.03525,-0.996032,0.471073,-0.602663,0.271152,-0.18139,0.737321,0.079391,-0.55226,0.374406,-0.178263,0.48692,0.0853994,-1.00264,-0.86309,0.711841,-0.93452,0.611869,0.195058,-0.609743,-0.59847,-0.617699,1.40621,-0.081418,1.12164,-0.102935,1.73186,0.768066,-0.936384,0.284239,-1.02844,-1.75045,0.491454,0.539194,0.324588,-0.613863,-0.62396,0.211686,0.0371002,-0.270903,0.123569,-0.175421,-0.094108,-0.00371222,-1.11582,-1.18229,-0.830549,0.90877,0.64065,0.233202,-0.797754,-0.983012,-0.636351,1.27612,0.656582,-0.887615,-0.769393,-0.823576,-0.384624,1.46778,0.682905,0.644782,-0.0340113,-0.606776,-0.257642,-0.868181,0.659225,-0.765123,0.193113,0.0365061,0.224064,-0.151688,0.308817,0.574095,-0.154676,-0.311488,-0.433602,-1.28216,-1.1051,-0.159833,2.01093,1.26777,1.2592,-1.18577,-1.45507,-1.14632,-0.242313,-0.676532,-0.293424,-1.59737,-0.405752,-1.65929,-0.449874,0.569823,1.07296,0.245173,1 +-0.8697,-0.858953,-0.950613,0.226398,-0.163793,1.50785,0.756639,-0.128817,0.675326,-1.37885,0.394043,-0.384744,-0.352655,0.308553,0.100237,-0.24905,0.624923,-0.436366,-0.665257,0.0919088,0.182668,0.543466,-0.219131,-0.7834,-0.78591,0.465659,0.51499,-0.304138,1.86629,-0.919061,-0.363541,0.104281,0.847634,-0.76538,1.82882,-0.781868,1.25877,-0.025412,-0.902689,0.505466,-0.956788,-1.40554,-0.90305,0.46831,-0.191859,0.37108,-0.216055,0.392168,-0.489684,-0.90696,0.113204,0.466893,0.292331,0.298523,-0.365109,0.281861,0.746417,-0.512348,1.87936,-1.15922,-0.391758,-0.852455,0.97186,-0.196162,1.44039,-1.86181,-0.145623,-1.01995,-1.02213,-0.569335,-0.932341,-0.996032,0.121201,-0.260689,-0.401444,-0.515724,0.737321,0.513221,-0.55226,0.579392,0.153642,0.729969,0.135771,-1.04366,-1.0658,0.702364,-0.669574,-0.536844,1.04733,0.399521,-0.621737,-0.811505,0.372023,-0.466445,0.99896,0.582057,1.63992,0.404227,-0.936384,0.746828,-1.00655,-1.26386,0.0439695,0.341318,0.299772,0.358678,0.456713,0.822689,-0.144691,-0.244072,0.260485,0.0157841,-0.0532828,-0.0141065,-0.921692,-0.350405,-0.797339,0.598121,0.72518,0.412837,-0.817297,0.713896,0.761954,0.363912,-0.0613896,-0.221158,-1.29342,-0.831638,-1.05408,0.910289,0.834415,1.82625,-0.231814,-0.275918,0.148653,-1.38043,0.14031,-1.07653,-0.130027,-0.147053,-0.157738,0.352328,0.718707,0.488202,-0.154676,-0.311488,-0.0754024,-0.657513,-0.687094,0.525681,2.09645,1.35472,1.04891,-1.18577,-0.435958,-1.10389,-0.337518,-0.643037,-0.786056,-1.61262,-1.37923,-1.96374,-0.95527,0.0704246,0.797142,-0.825153,1 +-0.8697,-0.870277,-1.13855,1.64332,-0.163793,-0.372065,0.531416,0.464956,0.613035,-0.426704,0.416342,0.989515,0.311256,0.0682531,0.414914,-0.546515,0.642206,-0.0999685,1.00074,-0.500655,1.49309,0.509194,1.33098,-0.468092,-0.78591,0.845892,0.092735,0.619956,0.0239105,-0.876697,-0.342116,0.125576,0.655649,-0.936249,1.94188,-0.80633,-0.575811,0.416231,-0.930449,-0.285947,-1.01567,-1.49604,0.0307,0.355811,0.160261,0.146226,-0.394833,0.237592,0.627444,-0.424734,1.4919,0.609841,0.568463,0.503796,-0.581495,0.506031,0.450173,-0.462006,-0.0459784,-0.843274,1.5915,-0.861484,0.97186,-0.933039,0.117001,-1.72555,-0.145623,-1.10609,-1.03239,-1.30903,-1.03525,-0.996032,0.446082,0.191206,0.327202,-0.348557,0.719742,-0.0144101,1.04746,0.362348,0.714445,0.465785,1.81064,1.45882,-0.852954,0.692887,-0.884054,0.670031,0.947061,-0.961812,-0.621737,-0.768437,1.12091,-0.134525,1.0603,0.56191,-1.19986,0.777899,-0.936384,0.284239,-1.02844,-1.28502,0.504239,0.527554,0.31218,-0.563989,-0.689455,0.171838,0.0890404,0.118147,0.0551113,1.47794,0.650951,0.495211,-1.08517,-1.15148,-0.805641,0.918184,0.649103,0.296602,-0.807525,-1.01718,-0.900895,0.433019,0.0924615,-0.539898,-0.743831,-0.936446,-0.384624,0.610894,0.815476,1.75742,0.818061,0.637248,-0.244946,-0.836165,0.6694,-0.752148,1.03558,1.90269,1.93559,-0.112918,0.319064,0.595568,-0.154676,3.15978,-0.290322,-1.25241,-1.07813,-0.124976,1.96818,0.427259,1.27423,-1.18577,-0.486913,-1.10389,-0.274048,-0.743521,-0.827109,-1.64311,-1.28761,-1.98404,-0.913154,0.0704246,0.883336,-0.659068,1 +-1.92012,-0.858953,-0.936156,1.64332,-0.163793,-1.27399,0.728486,0.755246,0.602653,-1.29606,0.494387,-0.445018,-0.337566,0.224448,-0.0308782,0.18932,0.694054,-0.390494,0.290242,0.250889,0.208363,0.520618,0.390223,-0.860097,-0.796573,0.924175,0.51499,-0.335463,1.07424,-0.842807,-0.363541,0.0191026,1.48759,-0.936249,1.23843,-0.830792,-0.575811,0.0481951,-0.930449,0.530198,-0.921456,-1.87097,-0.949738,0.479559,-0.317616,0.584692,-0.0968695,0.350011,0.93701,-0.650777,0.035894,0.411912,0.419777,-0.0395731,1.16098,2.28338,0.728462,-0.512348,-0.286646,-1.11564,1.18881,-0.915663,-0.140345,-0.910481,0.337566,-1.27136,-0.145623,-0.951046,-1.02213,-0.488933,-0.906613,-0.98071,0.183678,-0.370609,-0.401444,-0.18139,0.737321,0.595297,-0.291565,0.519102,0.0964167,0.719402,0.261701,1.55112,-1.00499,0.654977,-0.631725,-0.595006,1.84947,-0.930517,-0.59847,-0.574631,1.14469,-0.267293,1.15231,-0.233889,0.0157303,0.41406,-0.936384,0.746828,-0.984661,-1.75045,-0.0327421,0.318039,0.175692,0.608048,0.669572,0.742993,-0.0537952,-0.284319,0.315251,0.0382788,0.0181612,0.10023,-0.829738,-0.319595,-0.656193,0.541639,0.699821,0.40227,-0.787982,0.474734,-0.938687,1.42815,0.646325,-0.771709,-1.21673,-0.920322,-0.914606,0.259878,0.777599,-0.811972,0.163791,-0.209747,0.12326,-1.3164,0.221708,-0.9857,0.897095,1.97917,0.935007,0.404022,0.728954,0.498938,-0.154676,-0.311488,-0.433602,-0.598023,-0.646642,0.5373,2.1392,0.398276,1.42444,-1.18577,-1.58246,-1.16753,-0.178843,-0.430904,-0.786056,-1.56688,-0.348488,-1.6187,-0.260351,0.881947,1.07296,0.485074,1 +-0.8697,-0.858953,-0.950613,1.64332,-0.163793,-0.350332,0.737871,-0.234377,0.654563,-1.30986,0.438641,1.17034,-0.322477,0.296538,0.047791,-0.123801,0.633564,0.00706718,0.755742,0.193078,1.82711,0.532042,1.20269,-0.664095,-0.78591,0.488025,0.504163,-0.304138,0.0239105,-0.893643,-0.342116,0.114929,0.63965,-0.981215,1.95444,-0.80633,-0.575811,-0.025412,-0.916569,0.4931,-0.94501,-1.49604,-0.887488,0.46831,0.172837,0.461022,-0.156462,0.968317,0.129448,-0.786403,1.7496,0.455896,0.557843,0.18985,-0.581495,0.105727,0.73744,-0.512348,-0.0459784,-1.12654,1.58144,-0.861484,0.97186,-0.933039,0.117001,-1.68013,-0.145623,-1.01995,-1.03239,-0.553254,-0.932341,-0.996032,0.158687,0.484327,-0.387432,-0.432141,0.728531,0.536672,1.03561,0.567334,1.10357,0.719402,1.82323,1.44856,-1.0354,0.683409,-0.656958,-0.624088,0.980484,-0.953988,-0.621737,-0.768437,1.12091,-0.360231,1.0603,0.56191,-1.16921,0.394393,-0.936384,0.737191,-0.995607,-1.26386,0.0311842,0.341318,0.25014,0.433489,0.571329,0.796124,-0.105735,0.0644847,0.274176,1.55667,0.732602,0.547182,-0.870607,-0.288784,-0.805641,0.579294,0.716727,0.412837,-0.797754,-1.01718,-0.891447,0.405376,0.0616913,-0.597851,-1.2423,-0.984819,-0.970394,0.621218,0.834415,1.75742,1.65492,1.20632,0.351801,-1.36442,0.150485,-1.05058,0.689362,1.24494,1.72494,0.352328,0.718707,0.477465,-0.154676,2.983,-0.218682,-0.64264,-0.67361,0.525681,1.95393,0.427259,1.27423,-1.18577,-0.499652,-1.1251,-0.289916,-0.553718,-0.827109,-1.64311,-1.28761,-1.98404,-0.913154,0.0704246,0.883336,-0.640614,1 +-1.86484,-0.870277,-1.10964,1.64332,-0.163793,-1.32832,0.5408,0.359397,0.602653,-0.468102,0.483238,0.0733424,0.341433,0.236463,0.336244,-0.40561,0.659489,2.05604,-0.493757,-0.500655,1.15906,0.486345,-0.101537,-0.791922,-0.796573,0.812342,0.092735,0.588631,1.05702,-0.825861,-0.363541,0.0297499,1.53558,-0.873297,1.13794,-0.855255,-0.575811,0.502106,-0.944329,-0.248849,-0.99212,-1.85804,0.0307,0.389561,-0.242162,0.303624,-0.379935,1.90983,-0.153199,-0.530221,0.808995,0.532869,0.324192,0.383048,1.16098,-0.0543942,0.45915,-0.462006,-0.31673,-0.832379,1.19888,-0.915663,-0.0685894,-0.910481,0.337566,-1.22594,-0.145623,-0.9855,-1.02213,-1.26079,-1.02239,-0.98071,0.496064,0.166779,0.25714,-0.0978067,0.702162,0.349069,-0.421912,0.362348,0.897565,0.476353,0.223922,1.56138,-0.86309,0.692887,-0.871438,0.597328,1.83275,-0.946164,-0.59847,-0.596165,1.18035,-0.00175722,1.15231,-0.284257,-0.0353449,0.787733,-0.936384,0.303513,-1.00655,-1.75045,0.478669,0.527554,0.262548,0.445958,-0.607586,1.63293,-0.00185501,-0.284319,0.123569,0.263226,0.120224,0.0690474,-1.1056,-1.12067,-0.714312,0.899357,0.649103,0.286035,-0.787982,0.463346,-0.957583,1.41433,0.666839,-0.771709,-0.692706,-0.871949,-0.300943,0.259878,0.75866,-0.834913,2.00488,1.07398,0.885064,-0.724112,0.720274,-0.661322,0.158491,0.174175,0.131905,-0.0353767,0.339559,0.617041,-0.154676,-0.311488,-0.505242,-1.22267,-1.05116,-0.101738,2.12495,0.383784,1.40941,-1.17179,-1.56972,-1.14632,-0.162975,-0.598378,-0.794267,-1.56688,-0.348488,-1.5984,-0.302467,0.819522,1.07296,0.448166,1 +-1.6437,-0.858953,-0.950613,0.12046,-0.163793,1.01885,0.737871,-0.287157,0.654563,-1.30986,0.472088,1.18239,-0.322477,0.284523,0.00845638,0.0171033,0.650847,0.114103,0.706742,0.221984,1.86566,0.543466,1.18131,-0.826009,-0.78591,0.476842,0.482509,-0.335463,0.695431,-0.876697,-0.342116,0.0829867,1.64757,-0.819338,1.1505,-0.904179,2.15858,-0.0131441,-0.930449,0.480734,-0.94501,-1.87097,-0.90305,0.479559,0.147685,0.528478,-0.141564,1.01047,0.07561,-0.741195,1.77537,0.4449,0.557843,0.0811757,-0.877602,0.073703,0.728462,-0.524933,1.03703,-1.11564,1.19888,-0.897603,0.110798,-0.65483,1.59969,-1.27136,-0.145623,-1.01995,-1.02213,-0.569335,-0.932341,-0.996032,0.171182,0.508754,-0.401444,-0.264974,0.728531,0.571847,1.02376,0.555276,1.14935,0.729969,1.81064,-1.0334,-1.02526,0.683409,-0.682191,-0.696791,0.178346,-0.594095,-0.59847,-0.617699,1.38243,-0.307124,1.12164,-0.0827882,1.74207,0.394393,-0.936384,0.737191,-0.995607,-1.75045,0.0056137,0.329678,0.212916,0.5083,0.653199,0.796124,-0.0797654,0.0779002,0.315251,1.55667,0.732602,0.536788,-0.860389,-0.30419,-0.838852,0.56988,0.708274,0.381136,-0.787982,-0.983012,-0.636351,1.27612,0.646325,-0.887615,-1.22951,-0.928384,-0.9425,1.45746,0.701844,0.667724,1.73099,1.24603,0.389891,-1.36442,0.160659,-1.0376,0.65474,1.13786,1.68545,0.339405,0.718707,0.488202,-0.154676,-0.295417,-0.361962,-0.672385,-0.700578,0.502444,2.02519,1.25328,1.2592,-1.19974,-1.45507,-1.15693,-0.242313,-0.28576,-0.211318,-1.59737,-0.405752,-1.67959,-0.428816,0.632248,1.07296,0.263627,1 +-0.8697,-0.858953,-1.12409,0.226398,-0.163793,1.50785,0.5408,0.504541,0.613035,-0.385306,0.338297,0.242111,0.296167,0.248478,0.414914,-0.593483,0.642206,1.99487,-0.506007,-0.486202,1.22329,0.49777,-0.0801557,-0.766357,-0.796573,0.789975,0.168524,0.698269,1.88351,-0.766552,-0.363541,0.104281,0.879632,-0.711421,1.8037,-0.757406,1.24129,0.465302,-0.916569,-0.211752,-1.0039,-1.40554,0.0462625,0.299562,-0.116405,0.0225563,-0.394833,1.82551,-0.153199,-0.334316,0.92496,0.554861,0.292331,0.576246,-0.342332,-0.0383821,0.495059,-0.436836,1.87936,-0.854169,-0.230681,-0.843425,0.97186,-0.0984125,1.44039,-1.86181,-0.145623,-1.03718,-1.02213,-1.24471,-1.03525,-0.996032,0.3961,0.288913,0.341214,-0.432141,0.702162,0.231818,-0.327114,0.338232,0.90901,0.465785,0.312073,-1.01289,-0.842818,0.683409,-0.820972,0.684572,1.06404,0.391697,-0.621737,-0.811505,0.395797,-0.200909,0.96829,0.571984,1.62971,0.777899,-0.936384,0.332425,-1.0175,-1.28502,0.504239,0.480995,0.287364,0.221525,-0.689455,1.43369,0.140981,-0.257488,-0.0133464,0.364452,0.140637,0.0586532,-1.06473,-1.15148,-0.789036,0.918184,0.674462,0.360003,-0.827069,0.725284,0.761954,0.419197,-0.0306194,-0.163205,-0.718269,-0.605898,-0.412518,0.899965,0.815476,1.81477,2.02009,1.15339,0.910458,-0.772135,0.689749,-0.700247,0.135409,0.281252,0.131905,-0.0483002,0.349806,0.606305,-0.154676,-0.311488,-0.147042,-1.17805,-1.01071,-0.0320252,2.1107,1.35472,1.07895,-1.17179,-0.435958,-1.09328,-0.321651,-0.821675,-0.802477,-1.61262,-1.39068,-1.96374,-0.934212,0.0704246,0.779904,-0.880515,1 +-1.6437,-0.870277,-1.13855,0.12046,-0.163793,1.01885,0.531416,0.425371,0.613035,-0.454303,0.460939,1.02568,0.326345,0.0802681,0.375579,-0.483891,0.659489,-0.0846777,0.976242,-0.500655,1.53163,0.49777,1.33098,-0.808966,-0.78591,0.845892,0.0710809,0.557306,0.712649,-0.859752,-0.342116,0.0829867,1.66357,-0.684441,1.13794,-0.904179,2.14985,0.428498,-0.944329,-0.298312,-1.0039,-1.87097,0.0307,0.389561,0.160261,0.236168,-0.379935,0.279749,0.587066,-0.469942,1.53056,0.598845,0.568463,0.431347,-0.866214,0.441983,0.441196,-0.474592,1.05207,-0.843274,1.20895,-0.888573,0.146676,-0.534524,1.61194,-1.27136,-0.145623,-1.10609,-1.02213,-1.30903,-1.03525,-0.996032,0.483568,0.227846,0.299177,-0.18139,0.728531,0.0442156,1.05931,0.362348,0.760225,0.476353,1.82323,-1.00264,-0.852954,0.692887,-0.896671,0.626409,0.178346,-0.609743,-0.59847,-0.617699,1.40621,-0.0681412,1.12164,-0.102935,1.73186,0.777899,-0.936384,0.284239,-1.02844,-1.75045,0.504239,0.527554,0.299772,-0.451773,-0.656707,0.198403,0.0500852,0.0913157,0.096186,1.48919,0.661157,0.495211,-1.09538,-1.15148,-0.830549,0.899357,0.64065,0.264902,-0.797754,-0.983012,-0.636351,1.27612,0.656582,-0.887615,-0.73105,-0.807452,-0.342783,1.46778,0.682905,0.644782,0.92457,0.716654,-0.194159,-0.820158,0.6694,-0.739173,1.00096,1.8568,1.92243,-0.112918,0.319064,0.584831,-0.154676,-0.295417,-0.361962,-1.25241,-1.07813,-0.136595,2.01093,1.26777,1.2592,-1.18577,-1.45507,-1.14632,-0.242313,-0.676532,-0.285213,-1.59737,-0.405752,-1.65929,-0.449874,0.569823,1.07296,0.245173,1 +-0.8697,-0.858953,-0.9217,0.226398,-0.163793,1.50785,0.728486,0.82122,0.623417,-1.29606,0.416342,-0.457073,-0.307388,0.248478,0.0609025,-0.202082,0.650847,-0.497529,0.130993,0.14972,0.182668,0.520618,0.31539,-0.7834,-0.796573,0.980092,0.547471,-0.3198,1.86629,-0.910588,-0.363541,0.104281,0.831636,-0.720414,1.84139,-0.781868,1.25877,0.0481951,-0.902689,0.579661,-0.933233,-1.40554,-0.8408,0.44581,-0.242162,0.416051,-0.141564,0.350011,0.869713,-0.816542,0.048779,0.422908,0.398536,0.274374,-0.376498,2.42749,0.746417,-0.499762,1.87936,-1.13743,-0.42196,-0.852455,0.97186,-0.151047,1.44039,-1.86181,-0.145623,-0.882137,-1.02213,-0.40853,-0.906613,-0.996032,0.158687,-0.321756,-0.373419,-0.515724,0.728531,0.489771,-0.398213,0.555276,0.107862,0.708834,0.186143,-1.04366,-1.04553,0.645499,-0.593875,-0.318734,1.03062,0.407344,-0.621737,-0.811505,0.360136,-0.373508,0.99896,0.582057,1.63992,0.404227,-0.936384,0.766102,-0.995607,-1.26386,0.0439695,0.341318,0.25014,0.333741,0.554956,0.769558,-0.131706,-0.284319,0.21941,-0.0067106,0.0181612,0.0898358,-0.880824,-0.257974,-0.797339,0.551053,0.708274,0.444537,-0.827069,0.713896,0.761954,0.350091,-0.0613896,-0.250134,-1.2423,-0.791327,-0.956447,0.910289,0.834415,1.82625,0.026851,-0.24945,0.0851695,-1.3324,0.170834,-1.02463,0.908635,1.96388,0.816517,0.442793,0.739202,0.498938,-0.154676,-0.311488,-0.0754024,-0.538533,-0.592705,0.583776,2.09645,1.35472,1.04891,-1.18577,-0.435958,-1.1145,-0.337518,-0.564883,-0.769635,-1.61262,-1.37923,-1.96374,-0.95527,0.0704246,0.797142,-0.825153,1 +-2.52826,-0.791014,-0.690394,0.0542486,-0.163793,-1.51305,0.587722,-0.0892324,0.519598,0.208061,0.494387,0.447044,0.763922,-0.232121,0.0871255,-0.468235,0.806393,0.205848,0.192243,-0.11043,0.0541959,0.440648,0.764387,-0.774878,-0.78591,0.197259,0.839801,-0.194499,-0.699265,-0.732661,-0.342116,-0.598444,-0.0962954,-0.59451,0.145567,-0.610632,-0.575811,0.354891,-0.930449,0.888807,-0.76835,-2.0649,0.622075,0.0745656,0.361472,0.337352,0.0968069,-0.0153514,-0.462765,0.0424227,-0.0285311,0.477889,0.557843,0.600395,-1.46982,0.457995,0.800279,-0.336154,-0.888316,-0.374796,0.272685,-0.99693,-1.50369,-0.910481,0.362073,-2.13432,-0.104166,-0.175819,-1.03239,0.315088,-0.713653,-0.996032,0.708486,0.301126,0.495351,-0.264974,0.702162,-0.260638,0.454972,0.47087,0.371096,0.508055,0.160957,-1.33083,-0.589425,0.389609,0.0621812,-0.46414,-0.857748,-0.953988,-0.621737,-0.617699,0.158054,0.516038,0.140205,0.279855,-1.32244,0.512395,-0.936384,0.823926,-0.853311,-2.4063,0.568166,0.434436,0.0019811,-0.613863,0.0146195,0.397643,-0.00185501,0.319379,0.0824944,0.600646,0.753014,0.765461,-0.809303,-0.335,-0.830549,0.36278,0.682915,0.719273,-0.787982,-1.31328,-1.07096,-0.271867,0.543758,-0.308087,0.0869441,-0.670395,0.396403,0.0533984,0.247316,-0.777561,-0.231814,-0.0244668,-0.206856,-0.932211,0.496428,-0.674297,0.585496,-0.07057,0.0134145,0.740033,0.739202,0.509675,-0.154676,-0.295417,-0.433602,0.175345,0.0680154,0.885867,0.329202,0.209885,-0.032598,-1.18577,-2.05379,-1.23118,-0.210578,-0.30809,-0.802477,-1.67361,-1.42504,-2.34938,0.0976372,3.62864,1.86594,-0.086997,1 +-2.52826,-0.824983,-0.993983,0.266124,-0.163793,-1.65432,0.568953,-0.155207,0.42616,-0.619894,0.572432,0.242111,0.220722,-0.0158517,0.074014,-0.24905,0.72862,-0.191713,0.486242,0.453228,0.208363,0.4178,0.678864,-0.740791,-0.775247,0.521575,0.504163,0.901883,-1.73237,-0.859752,-0.363541,-0.0873709,0.527658,-0.801352,0.0325124,-0.463858,-0.575811,0.747463,-0.930449,0.19632,-0.921456,-1.8839,-0.171613,0.400811,0.185412,0.595934,-0.156462,0.335959,-0.0455244,-0.228829,-0.183151,0.521873,0.525982,0.370973,-1.2876,0.0256665,0.638692,-0.310983,-1.89611,-0.886853,-0.814585,-0.978871,-0.750263,-0.933039,0.288552,-2.17974,-0.104166,-0.348092,-1.03239,-0.697978,-0.945205,-0.996032,0.483568,-0.101915,-0.0231087,-0.432141,0.535153,0.266993,0.478672,0.458812,0.63433,0.434083,0.160957,-1.28981,-0.852954,0.60759,-0.455094,-0.0133799,-0.239434,-0.977459,-0.621737,-0.380826,0.0272955,0.170841,-0.166493,0.56191,-1.2305,0.728732,-0.90553,0.525171,-0.940878,-1.49658,0.299675,0.446076,0.126061,-0.0901869,-0.54209,0.278099,-0.0667803,0.305964,0.0824944,0.645635,0.824458,0.71349,-0.441485,0.496885,-0.805641,0.842875,0.733633,0.634739,-0.807525,-1.38161,-1.15599,0.0598439,0.297596,-0.945568,-0.743831,-0.855825,-0.245155,0.476682,-0.604923,0.0712569,-0.125305,-0.461199,-0.359216,-0.0998125,0.893245,-0.0514916,0.366223,-0.223536,0.0397458,0.313558,0.452278,0.563358,-0.154676,-0.295417,-0.218682,-0.806237,-0.660126,0.363017,0.343454,0.00700225,-0.032598,-1.18577,-1.58246,-1.20997,-0.305783,-0.30809,-0.83532,-1.67361,-1.81443,-3.20184,-0.218235,3.06681,1.65907,-1.02815,1 +0.0701521,0.2847,0.263742,-0.713801,-0.128956,0.692857,0.437573,-2.2664,0.820673,1.13261,-2.53822,-1.61434,-0.594077,-2.13049,-2.31228,-0.624795,0.123721,-0.466948,-2.24551,0.0196449,0.285446,0.406376,-0.0587749,2.21629,1.12273,0.879442,-0.0588436,0.698269,-1.07807,1.17371,-0.363541,-0.949806,-0.57626,1.17714,-1.08547,-1.29558,-0.444769,1.04189,0.762898,0.678588,0.633158,-0.875474,0.559825,-2.34415,-2.12852,-2.09107,-0.782186,1.12289,-2.49513,1.09729,-0.595472,0.642829,0.377295,-1.68176,0.534601,0.169776,0.324495,-0.361324,-0.106145,0.976163,-0.945461,-0.67186,0.541329,1.29263,-1.13287,-0.272134,-0.145623,1.04732,0.0549533,0.604536,0.469832,0.0611918,-2.6278,-1.89728,-0.359407,-0.348557,0.412093,-2.23046,-1.90314,-2.36276,0.81745,0.338977,-0.607214,0.710124,1.08297,0.654977,0.13788,0.815438,-0.991437,1.19754,-0.621737,-1.24218,-1.20897,-2.47124,0.600252,-0.898735,0.117881,0.138722,0.344062,0.303513,0.635315,-0.98883,-1.9761,-2.3591,-2.33071,-1.67368,-0.574838,0.902385,-1.80678,-2.22957,-2.34091,0.139505,0.579507,0.349692,1.10131,0.496885,1.41948,0.946425,0.581479,0.190934,1.0882,0.520289,1.0076,-1.47432,-0.851159,-1.23533,0.751564,1.20809,-0.231208,-1.22678,0.0958073,-1.00697,0.224653,-1.05674,-1.71777,0.380418,0.170834,0.272886,0.158491,-1.20252,-1.053,1.15359,0.278075,0.187576,-0.114399,0.749178,2.00215,0.160473,0.0545313,0.107401,-0.725443,-1.25377,-1.23427,-0.0816819,-0.805385,-0.24465,-0.305783,-1.08963,1.37332,-0.438629,-0.78369,-0.989504,-0.765747,-0.179275,0.590279,-0.0316353,1 +0.567721,-0.77969,-0.950613,0.226398,-0.163793,0.71459,2.08921,-2.51711,0.488452,0.939422,-2.40443,-0.505293,-0.186677,-1.85414,-2.32539,-0.624795,0.771827,-0.788055,-0.898007,-2.48069,0.645169,1.53737,0.550579,1.40671,0.653566,1.83002,0.742358,0.071765,0.282188,0.894106,-0.342116,-0.992395,-0.256283,0.997274,0.233498,-1.3445,-0.558338,0.698391,-0.944329,0.690953,-0.76835,-1.1599,0.622075,-2.1979,-1.67579,-2.09107,-0.111768,0.602954,-1.52606,-0.138412,0.151859,0.653825,1.53493,-1.91118,1.08126,-0.646844,1.80571,-0.462006,0.330065,1.42285,-0.391758,-1.01499,0.684839,0.698618,0.104748,-0.0904567,-0.145623,-0.48591,-1.04265,-0.521093,-0.816565,-1.01135,-1.85308,-1.12784,-1.98485,-0.432141,0.596682,-2.30081,-0.647058,-2.39893,0.737335,2.09316,0.337259,0.217833,1.14378,2.09554,0.163113,0.524625,0.0780792,0.563819,-0.621737,-1.22065,-0.0440274,0.38327,0.446903,-0.908808,0.526482,0.768066,-0.951811,1.80693,-0.83142,-1.11577,-2.19345,-2.20778,-2.13219,-2.0228,-0.705829,-0.173512,-2.26126,-1.84052,-2.23138,0.623141,0.640745,0.879797,0.610884,0.358238,0.954532,1.35121,1.80716,0.486804,0.795044,1.32888,0.648578,-1.10114,-0.799875,-0.597851,1.55678,0.95816,1.21927,0.435386,-0.188272,-0.926678,0.346378,-0.395027,-1.37496,-0.32392,0.852546,-0.181243,0.804769,0.00591297,0.23723,0.597875,1.77417,1.19682,-0.114399,-0.279346,-0.290322,-0.360063,-0.0128892,0.862629,-0.212372,0.151918,-0.137745,-1.19974,-0.881818,-1.24179,-0.258181,-0.8775,0.576894,-1.42966,-0.760784,-1.0098,-0.765747,-0.491399,0.435131,-0.160813,1 +0.401865,-0.892923,-0.430175,-0.038447,0.149741,0.0408637,0.381267,-1.39553,0.997166,-0.357708,-2.11455,-1.37325,-2.55563,-1.74601,-2.28606,1.25393,0.624923,-0.222295,-1.84126,-1.80141,-0.369763,0.543466,0.0802006,-0.27209,0.674892,1.02482,-0.0371895,-0.445101,0.385498,1.08898,-0.363541,-0.981748,-0.0962954,1.52787,-0.243843,-1.09988,-0.479714,1.29952,-0.944329,0.963001,-0.956788,-1.09526,-2.02355,-2.16415,-1.92731,-1.33781,0.48416,1.09479,-1.67411,-0.575429,-0.853172,0.631833,0.557843,-1.69383,0.944595,1.06646,0.297563,-0.776638,0.194689,0.965269,-0.68371,-1.01499,0.469574,1.0069,0.374327,0.0912201,0.144578,1.04732,-1.03239,0.717099,-0.765109,-0.996032,-2.41537,-1.39653,-2.58738,3.49628,0.412093,-1.74973,-1.68984,-2.39893,0.84034,0.529189,-0.821295,0.82294,0.819438,0.53177,-1.23732,0.815438,0.0446568,0.790708,-0.621737,-1.26372,0.38391,0.0779036,0.538913,-0.808074,0.220031,0.718898,-0.751259,0.698641,-1.06128,-1.07345,-2.51308,-2.39402,-2.11978,-0.38943,4.04258,1.64622,-2.28723,-2.16249,-2.3546,-0.276647,0.446825,0.360086,1.07066,1.32877,0.589213,0.579294,0.125019,-0.834043,0.843903,1.35166,0.818642,-1.08732,-0.861415,-1.29328,1.04553,1.27258,0.772969,0.34247,0.0768686,-0.915207,-0.170951,-0.699416,-0.892479,0.460456,0.679574,-0.933799,0.700903,0.220065,-0.618535,1.32159,0.944147,1.04651,-0.114399,-0.279346,-0.505242,0.011748,-0.781483,0.514062,-0.212372,0.0504771,0.0575278,-1.18577,-0.779907,-1.23118,0.233713,1.74625,1.08595,-1.44491,-0.909669,-1.0301,-0.639398,-0.366549,0.486847,0.0606342,1 +0.401865,-0.892923,-0.488002,-0.038447,-0.163793,0.0408637,1.34785,-1.03927,0.633799,-0.371507,-2.1703,-1.45763,-2.57072,-1.93825,-2.29917,-0.515203,-0.109597,0.098812,-1.91476,-1.80141,0.259752,1.27462,1.24546,-0.0505223,0.664229,2.63522,-0.340347,0.134415,0.36828,1.09745,-0.342116,-0.960453,-0.0962954,1.51888,-0.243843,-1.12434,-0.48845,1.32405,-0.958208,0.777514,-1.0039,-1.09526,-2.02355,-2.23165,-2.04049,-1.52894,-0.767288,1.22126,-1.55297,-0.620638,-0.531047,0.697809,2.18278,-1.87495,0.955984,2.25136,0.378357,-0.625615,0.164606,0.987058,-0.68371,-1.01499,0.469574,0.999384,0.374327,0.0912201,-0.145623,0.995634,-1.03239,0.540214,-0.829429,-0.996032,-2.46536,-1.68965,-2.58738,-0.264974,0.350564,-1.78491,-1.78464,-2.30247,0.703,1.49082,-0.519063,0.833196,0.809302,1.94391,-1.33825,0.291974,0.0446568,0.790708,-0.621737,-1.26372,0.38391,0.05135,0.538913,-0.828221,0.220031,0.787733,-0.751259,0.621543,-1.08317,-1.07345,-2.51308,-2.4173,-2.21904,-0.950512,-0.0508758,1.20789,-2.28723,-2.18932,-2.34091,0.319462,0.76322,1.62818,1.06044,1.32877,0.589213,0.993493,0.691368,-0.517039,0.853674,1.35166,0.809194,-1.0735,-0.861415,-1.26431,1.05831,1.27258,0.772969,0.332146,0.0768686,-0.926678,0.422456,-0.765587,-1.1972,0.588517,0.832197,-0.557521,2.36276,1.24494,-0.473713,1.2182,0.89291,1.02503,-0.114399,-0.279346,-0.505242,-0.270829,-1.14555,0.246828,-0.212372,0.0504771,0.0575278,-1.18577,-0.767168,-1.22057,-0.194711,1.71276,1.06953,-1.44491,-0.932575,-1.0301,-0.660456,-0.366549,0.486847,0.0606342,1 +0.236008,-0.281465,-0.690394,-1.49509,-0.163793,0.486392,0.850482,-1.19761,0.592271,0.332255,-1.04422,-0.84283,-0.171588,-0.820855,-1.15847,-0.530859,0.806393,-1.41498,-1.10626,-0.00926071,0.580932,0.657709,0.764387,1.35558,1.04809,0.499209,0.482509,3.50188,-1.07807,1.24149,-0.363541,0.796359,-0.240285,0.862377,-1.07291,-0.390471,-0.558338,0.698391,-0.638971,0.208686,-0.2737,1.23188,0.0151375,-1.05042,-0.946401,-1.91119,-0.052175,0.476483,-1.18957,0.82604,-0.0800712,0.697809,0.738391,-1.00556,-0.0234474,-0.0383821,0.89005,0.544815,-0.211438,0.638424,-0.945461,-0.184256,0.505451,1.13473,-1.26765,0.136639,-0.145623,-0.10691,-0.858004,0.0738821,-0.44351,-0.53637,-0.31614,-0.956851,-0.513543,-0.264974,0.579102,-1.24555,-0.967003,-0.927857,0.828895,0.655998,0.286887,-0.459066,0.535638,0.598112,0.35236,2.5894,-1.55962,1.17407,-0.563571,0.652805,-1.17331,0.369993,0.600252,-0.818148,-0.546097,0.718898,-0.936384,0.843201,-0.360751,1.25373,-1.00442,-1.11365,-0.891391,-2.0228,-0.656707,-0.505579,-1.06663,-1.14291,-1.20451,0.713119,0.865283,0.869403,0.416758,0.466074,0.904716,1.38887,0.801256,1.01514,1.32272,0.736673,1.09263,-1.39139,-0.451146,-0.858639,0.380911,1.14359,0.396403,-1.2371,0.0389913,-1.00697,-0.00358013,-0.80529,-1.00675,-0.163843,0.913595,-0.0255413,0.781688,0.174175,0.263561,0.261864,0.677718,0.617041,1.53694,-0.182922,4.43791,0.353815,0.432086,0.421111,-0.582923,-1.25377,-1.23427,-0.123609,1.07997,0.0311551,-0.147108,-1.0673,0.921737,1.13177,0.991474,1.30402,-0.934212,0.257699,0.710949,-0.19772,1 +0.180723,-0.8816,-1.10964,-0.793254,-0.163793,0.106063,0.418804,-0.999685,0.540361,0.180463,-1.46789,-0.505293,-0.775144,-1.16929,-0.883127,-0.609139,0.581716,-0.0693869,-0.787757,-0.775258,-0.0100403,0.509194,-0.0587749,0.707921,1.60255,0.890625,-0.210422,0.541643,0.764305,1.08898,-0.363541,0.700533,-0.352276,1.4919,-1.06035,-0.341547,-0.567074,0.563445,-0.861049,-0.434337,-1.03923,1.21895,-0.249425,-1.16292,-1.12246,-1.54018,-0.469324,-0.0996657,-1.06844,-0.680916,-0.0156461,0.587849,0.356054,-1.33159,1.49125,0.249837,0.270632,-0.512348,0.510566,1.33569,-0.935393,-0.653801,0.505451,0.728695,-1.29216,0.136639,-0.145623,-0.916591,-0.919552,-1.37336,-1.06098,-0.674268,-1.02838,-1.03013,-1.15811,-0.18139,0.675792,-1.14002,-0.52856,-1.04844,-0.0981478,0.412948,0.236515,0.0332244,1.48839,0.654977,-1.04807,0.800897,0.412303,0.743766,-0.621737,0.480533,-1.17331,0.728467,0.569582,-0.67712,-1.11814,0.817233,-0.951811,0.110768,-1.06128,1.14795,-0.966067,-0.915773,-1.04029,-0.850764,-0.722202,0.171838,-1.0926,-1.11608,-1.20451,0.0607735,-0.0634891,0.006682,2.38867,3.39308,1.52742,0.90877,0.539214,0.0641332,1.03934,1.57943,1.13043,-1.4605,-0.62551,-0.974544,1.51843,1.26452,1.33085,-1.22678,0.0389913,-1.00697,-0.307892,-0.686182,-0.879783,-0.708104,0.710099,-0.687272,0.216194,-0.315315,0.145071,-0.00952972,0.278075,0.681461,-0.114399,-0.295417,-0.218682,-1.44575,-1.25343,-0.473543,-0.639931,-1.13784,-1.21925,-0.542882,1.01627,-0.19161,-0.321651,1.64577,0.552263,1.20801,1.03728,1.26342,-0.892095,0.132849,0.659233,-0.142359,1 +0.236008,-0.892923,-1.09518,-0.462198,-0.163793,0.975387,0.371883,-1.07886,0.540361,1.24301,-1.32295,-0.565567,-0.895855,-1.13324,-0.922462,-0.546515,0.54715,-0.0388052,-0.775507,-0.587372,-0.0614292,0.520618,-0.0587749,2.17368,1.03743,0.868258,-0.210422,0.698269,-0.561517,1.1144,-0.363541,0.71118,-0.272282,0.835397,-1.08547,-0.390471,-0.444769,0.612516,-0.874929,-0.409605,-1.02745,1.21895,0.513137,-1.06167,-1.14761,-1.95616,-0.528917,-0.0434562,-1.06844,1.02194,-0.0671862,0.609841,0.292331,-0.401819,0.500434,0.249837,0.243701,-0.487177,0.450399,1.22674,-0.935393,-0.635741,0.541329,1.33023,-0.998076,0.0912201,-0.145623,-0.830455,-0.92981,-1.34119,-1.06098,-0.674268,-1.2408,-1.04234,-0.709717,-0.0142232,0.658212,-1.1283,-0.55226,-1.04844,-0.121038,0.402381,0.223922,0.843453,1.35663,0.617067,-1.02284,0.917223,-0.958015,1.29143,-0.621737,0.502067,-1.16142,-2.27209,0.538913,-0.73756,0.454977,0.8369,-0.951811,0.101131,-1.05034,1.1691,-0.902141,-0.857575,-1.00306,-1.21235,-0.738576,0.171838,-1.14454,-1.10267,-1.16344,0.0495261,-0.0532828,-0.0141065,1.30565,0.435264,1.44439,0.918184,0.522308,0.0958335,1.10774,0.805005,1.20601,-1.41903,-0.59474,-0.858639,0.956063,1.07909,-0.314889,-1.2371,-0.0178246,-1.01844,-0.27746,-0.699416,-0.879783,-0.676089,0.730448,-0.713222,0.193113,-0.269426,0.171402,0.0680113,0.308817,0.724408,-0.114399,0.829531,2.64691,-1.44575,-1.23994,-0.485162,-0.625679,-1.21029,-1.21925,-0.542882,1.01627,-0.127963,-0.274048,-1.14546,1.38153,1.19276,1.02583,1.26342,-0.934212,0.132849,0.659233,-0.19772,1 +0.180723,-0.870277,-0.907243,-0.832981,-0.163793,0.899321,0.737871,-0.709396,0.644181,1.00842,-1.02192,-0.577622,0.145278,-0.916975,-1.26336,-0.577827,0.503943,-1.03271,-0.763257,-1.19439,-0.048582,0.543466,-0.0801557,1.18514,2.90341,0.309092,0.51499,-0.413776,0.0583475,1.94473,-0.363541,0.764417,-0.416272,1.12318,-1.04779,-0.390471,-0.575811,0.0481951,-0.861049,0.604393,-0.874346,1.24481,0.83995,-0.847921,-1.14761,-1.67509,-0.230953,0.560797,-0.920384,-0.123342,-0.0929562,0.411912,0.239229,-1.33159,1.98097,0.12174,0.73744,-0.537518,0.736192,1.46643,-0.935393,-0.545444,0.433696,0.638465,-0.900047,0.136639,-0.145623,-0.796,-0.940068,-0.344209,-0.906613,-0.658946,-0.72849,-1.01792,-1.24219,-0.264974,0.667002,-0.917246,-0.54041,-0.879625,0.165086,0.740536,0.223922,-0.684699,1.15392,0.636022,-0.606492,-0.711332,0.161635,2.05816,-0.621737,0.545135,-1.17331,0.781574,0.600252,-0.757707,0.444762,0.286225,-0.951811,0.77574,-0.90804,1.19026,-1.20899,-1.04381,-0.990655,-1.01285,0.800563,1.00865,-1.32633,-1.11608,-1.09498,0.0382788,-0.022664,-0.0141065,0.713056,1.03607,1.19531,0.456917,0.674462,0.37057,2.72008,2.88913,2.60432,-1.47432,-0.512686,-1.06147,1.68459,1.16778,1.47031,-1.22678,0.114746,-1.00697,-0.581772,-0.990571,-1.10832,-1.42845,-0.11406,-1.21925,-0.0492419,-0.223536,0.197733,0.494487,0.780191,0.520412,-0.114399,-0.295417,-0.218682,-0.52366,-0.606189,0.583776,-0.639931,-1.18131,-1.21925,-0.459027,1.06723,0.147842,-0.289916,0.774905,-0.580793,1.20801,0.991474,1.24313,-0.849979,0.195274,0.676472,-0.0685431,1 +0.899434,-0.202202,0.292655,-1.19052,-0.163793,0.214729,0.503263,-1.05247,0.592271,0.649637,-1.46789,-1.55407,0.0698336,-1.99832,-2.40406,-0.499547,-0.196011,0.098812,-1.65751,-1.96039,0.118432,0.817648,0.122962,0.639746,1.36797,0.980092,-0.0913247,-0.539077,0.36828,0.868688,-0.384965,0.338523,-1.18421,1.2311,-1.18597,-0.757406,-0.575811,1.27498,0.5547,0.93827,0.66849,0.805236,0.559825,-1.9504,-2.14109,-1.0455,-0.677899,1.1791,-1.28379,-0.439803,-0.698552,0.576853,0.49412,-0.87274,1.28626,1.16253,0.414265,-0.789224,0.37519,1.23764,-0.925326,0.456854,0.218431,0.442967,-1.29216,0.499993,-0.104166,0.702771,0.383208,0.491973,0.585608,0.398278,-0.75348,-1.78736,-2.0409,-0.348557,0.359354,-1.46833,-1.71354,-2.24218,0.61144,0.761671,-0.607214,-0.910332,0.819438,0.455951,-0.467711,0.85906,-0.222722,0.814179,-0.621737,-0.703835,-1.18519,1.02056,-0.043814,-0.717413,-1.22029,0.876234,0.297781,0.814289,0.580587,-0.861893,-2.19345,-2.17286,-2.3059,-0.701142,0.456713,1.2743,-2.35215,-2.28323,-2.39568,-0.085442,0.252906,0.245749,0.743707,1.4212,0.813386,0.46633,0.0912068,-0.781209,1.05888,1.49971,1.18711,-1.59871,-0.748591,-0.742733,1.51843,0.99847,1.44242,-1.20613,-0.453414,-1.02991,0.315947,-0.884696,-1.23529,0.348402,0.64905,0.169085,0.712444,0.418921,-0.407885,1.28282,1.09786,1.21829,-0.194952,-0.343629,-0.290322,0.20509,0.0275631,0.479206,-1.02473,-1.16682,-1.17419,0.686985,0.786972,0.95404,-0.242313,1.47829,-0.137423,0.643882,0.819684,-0.705351,-0.534107,-0.553823,0.124835,0.0790881,1 +1.01,0.443226,0.0613495,-1.0581,-0.163793,0.68199,0.766024,-1.80458,0.592271,1.10501,-2.56052,-0.589677,-0.488455,-2.19056,-2.01072,-0.562171,0.78911,-1.82783,-0.567257,0.0340976,0.323988,0.532042,0.625412,1.30445,0.962787,0.443292,0.742358,-0.539077,-1.16416,1.16523,-0.384965,-0.374849,-1.16822,1.19512,-1.21109,-0.80633,-0.427297,0.354891,0.51306,0.888807,0.680267,1.10259,0.575387,-2.52415,-1.62549,-2.09107,-0.0372768,0.237592,-0.78579,1.06715,-0.0543011,0.433904,0.525982,-2.044,0.80793,0.2018,0.854141,-0.512348,-0.136229,0.954374,-0.925326,-0.491266,0.254309,1.29263,-1.12061,0.545412,-0.104166,0.0309077,1.18333,0.186445,0.456968,0.428922,-2.60281,-1.39653,-0.289345,-0.264974,0.781271,-2.57049,-0.54041,-2.06131,0.359651,0.740536,0.349852,0.628075,1.03229,0.579158,0.251428,-1.32204,-1.27553,1.18972,-0.610103,-0.768437,-1.18519,-2.43141,-0.135823,-0.556239,0.128096,0.492728,0.359489,0.920299,0.733828,-0.565706,-1.75875,-2.44058,-2.19423,-1.96046,0.178358,0.689862,-1.4432,-1.57221,-1.76586,0.521915,0.446825,0.515999,1.05022,0.342832,1.20361,0.36278,0.733633,0.518504,1.06865,0.577232,0.988706,-1.62635,-0.830645,-0.510922,0.738783,1.20809,-0.161474,-1.21645,-0.623861,-1.01844,-0.353538,-0.831759,-2.11137,-0.0357818,0.343806,0.208011,0.723984,0.617777,0.461045,0.804651,0.913405,0.649251,-0.154676,-0.343629,-0.361962,0.20509,0.283761,0.85101,-1.05324,-1.22478,-1.18921,0.659034,0.736017,0.434254,-0.210578,-1.04497,1.38974,0.704868,0.579178,-0.705351,-0.534107,-0.678673,0.0731194,0.00527254,1 +-0.0957042,-0.485284,-0.936156,1.51089,-0.163793,-1.32832,0.756639,-0.207987,0.685708,-1.33745,0.427491,2.5446,-0.322477,0.440717,0.0609025,-0.155113,0.659489,0.63399,2.80149,0.106362,1.416,0.600587,1.39512,-0.800444,-0.807236,0.465659,0.51499,-0.366788,0.0583475,-0.910588,0.0220996,1.36067,0.479662,-0.990208,0.359115,0.0743119,-0.575811,0.0236594,-0.916569,0.542563,-0.685908,1.20602,-0.871925,0.46831,1.29207,0.438536,-0.111768,0.898055,2.28295,-0.861751,2.5227,0.532869,0.759632,0.274374,-0.934546,0.153764,0.746417,-0.524933,-0.181354,-1.12654,1.97406,1.3508,-1.00141,-0.948077,-0.164831,0.363735,-0.145623,-0.951046,-1.03239,-0.505013,-0.919477,-0.61298,0.158687,1.43697,-0.401444,-0.432141,0.719742,0.524946,2.73013,0.543218,0.966234,0.740536,2.74252,0.935757,-1.04553,0.683409,-0.429861,-0.624088,0.51257,-0.985283,-0.249477,1.12655,1.45375,-0.373508,0.0175256,-0.777854,-1.44502,0.38456,-0.936384,0.766102,-0.404534,1.14795,0.0311842,0.341318,0.361812,0.396084,0.636825,0.809406,-0.144691,1.4597,0.739689,1.55667,1.19188,0.962951,-0.901258,-0.30419,-0.830549,0.551053,0.716727,0.40227,-0.827069,-0.459135,-0.787519,0.626517,1.20019,-0.539898,-1.2423,-1.00094,-0.970394,0.425062,0.360948,-0.800502,1.53319,1.59012,0.389891,-1.34841,0.160659,-1.02463,0.735525,2.48396,2.93618,0.404022,0.749449,0.509675,-0.154676,3.62583,-0.218682,-0.612895,-0.552253,0.548919,0.143927,0.0214939,0.973806,0.561203,1.37296,1.19802,-0.289916,-0.576048,-0.83532,0.506662,-0.050719,0.613931,0.0134047,0.320124,0.417892,0.872606,1 +0.678292,-0.8816,-1.03735,-0.329776,0.776811,0.203862,0.484494,0.596906,0.561125,-0.164518,0.338297,-0.457073,0.462145,0.140343,0.55914,2.55338,0.521226,1.49028,-0.420257,-0.399486,0.118432,0.646284,-0.0694653,-0.851575,-0.807236,0.935358,-0.177941,0.385017,0.196095,-0.842807,-0.363541,-0.800743,0.0956904,-0.963228,1.17562,0.392322,2.17606,0.808802,-0.680611,-0.248849,-1.02745,0.430309,0.264137,0.310812,-0.30504,0.236168,0.0670106,1.40394,0.0217725,-0.0630642,-0.0156461,0.686813,0.419777,0.274374,-0.319554,0.281861,0.324495,-0.524933,0.224773,-0.76701,-0.502499,-1.00596,0.684839,-0.902962,1.59969,0.000381674,2.2589,-0.606501,1.1423,-1.19647,-1.06098,-0.9041,0.483568,-0.443889,0.565413,9.34713,0.675792,0.560122,-0.493011,0.277942,0.0506368,0.518622,0.198736,-1.4539,-0.771868,0.702364,-1.06068,0.800897,0.0446568,-0.836632,-0.621737,-0.359292,0.407685,-0.214186,-0.350512,0.995067,1.42541,0.954902,-0.936384,0.216778,-1.05034,0.217073,0.657663,0.574113,0.361812,1.50578,4.56654,1.92515,0.348742,-0.19041,0.137261,0.0270314,-0.0430765,0.0482589,-1.01365,-1.53661,-0.86376,0.918184,0.581479,0.0641332,-0.797754,-0.607187,-0.948135,0.239521,-0.789618,0.793016,-0.628801,-0.928384,-0.342783,1.75686,-0.207211,1.26419,0.300731,-0.0641697,0.796187,-0.53202,0.842371,-0.518596,0.250816,-0.361205,0.0924082,0.313558,0.452278,0.885458,-0.154676,-0.327558,-0.505242,-1.41601,-1.23994,-0.392211,0.129675,1.34023,0.372968,-1.08794,-0.117487,-1.18875,1.2651,-0.553718,-0.753214,0.704868,1.31215,0.938677,-0.660456,-0.678673,0.0214034,-0.880515,1 +0.678292,-0.858953,-0.950613,-0.329776,-0.163793,0.225595,0.737871,-0.366327,0.706472,-1.30986,0.472088,1.72486,-0.352655,0.572882,-0.0308782,0.236288,0.676771,2.83587,1.25799,0.265342,2.8292,0.554891,1.50203,-0.860097,-0.817898,0.543942,0.51499,-0.304138,0.196095,-0.868225,-0.363541,-0.811391,0.0956904,-0.936249,1.16306,0.392322,2.18479,0.0236594,-0.73613,0.517832,-0.933233,0.430309,-0.9653,0.45706,0.235715,0.573449,-0.141564,2.71081,0.694741,-0.665847,2.66444,0.521873,0.865837,-0.0637229,-0.319554,-0.0864186,0.73744,-0.512348,0.239815,-1.12654,-0.542768,-1.00596,0.720717,-0.902962,1.58743,0.000381674,-0.145623,-1.00273,1.1423,-0.537174,-0.919477,-0.9041,0.158687,1.38812,-0.415457,-0.264974,0.746111,0.607022,1.18966,0.555276,1.82461,0.719402,1.93657,-1.4539,-1.01513,0.673932,-0.631725,-0.754954,0.0279456,-0.828808,-0.621737,-0.380826,0.407685,-0.28057,-0.319842,0.995067,1.43562,0.433727,-0.936384,0.746828,-0.984661,0.217073,-0.0583127,0.294759,0.163284,0.608048,0.604077,1.15476,-0.0278251,0.158393,0.370017,1.71413,0.885696,0.921374,-0.850172,-0.350405,-0.872063,0.579294,0.716727,0.423404,-0.797754,-0.595798,-0.948135,0.225699,-0.810132,0.764039,-1.22951,-0.936446,-0.928553,1.74653,-0.207211,1.25272,3.70902,2.7018,1.60878,-1.3324,0.221708,-0.972725,1.3241,1.04608,1.44847,0.365252,0.718707,0.498938,-0.154676,-0.311488,-0.433602,-0.627768,-0.660126,0.5373,0.115423,1.32574,0.357947,-1.10191,-0.117487,-1.19936,-0.194711,-0.37508,-0.671109,0.720115,1.31215,0.938677,-0.681514,-0.678673,0.0386421,-0.862061,1 +1.06529,1.53026,1.75277,-1.4024,-0.163793,0.453793,-1.33606,0.742051,-1.44259,4.05805,-0.364109,-0.107481,0.552678,0.488777,0.441137,-0.562171,-1.51815,0.282302,-0.518257,2.1153,-0.947888,-1.33011,-1.67303,1.42376,0.984112,-1.60326,0.677395,-0.523414,-1.23304,1.24149,2.93583,1.58426,-1.68018,1.07821,-0.984979,0.123236,-0.53213,-1.43621,0.457541,0.0973938,1.71668,0.158809,3.67233,0.142065,0.323745,-0.730705,-0.960965,-1.4487,0.07561,4.36739,-0.363542,-1.36945,-1.47067,0.334748,0.113217,-1.71966,-1.17468,1.87885,-0.391939,2.3707,-0.915259,1.26953,-1.53957,1.17984,-1.23089,0.0912201,-0.145623,0.943952,-0.591298,1.60152,1.78196,0.934551,-0.291149,0.374406,2.07875,-0.515724,-1.46017,0.337344,-0.374513,0.217652,-1.44865,-1.3201,-1.04797,-0.100104,2.55264,-1.39214,2.03035,-0.493222,-1.62646,1.1506,2.06551,1.96638,-1.23274,0.0380732,-0.626541,-0.798001,-0.443946,-1.38547,1.00743,-1.1999,1.62044,1.10563,0.120681,-0.15919,0.287364,0.18412,-0.771324,-1.64789,1.56934,0.118147,0.096186,-1.51385,-1.43113,-1.44851,2.68497,1.63688,1.07077,-1.35991,-1.32044,0.634739,1.26409,0.531677,0.998154,-0.603578,1.93867,1.83617,2.20862,1.20809,0.368509,-1.1958,0.398826,0.702135,-0.262245,0.253453,0.618433,0.348402,-1.41644,0.337762,-1.75726,-1.93675,-1.55329,-0.952945,-1.31025,-1.36924,-0.154676,-0.311488,-0.0754024,1.97491,2.05018,0.490825,-1.19576,-1.22478,-1.20423,0.910597,1.10544,0.901001,-0.305783,-1.05614,1.08595,0.171236,-0.95548,-0.137045,0.539858,1.50619,0.521324,1.42622,1 +0.678292,-0.870277,-1.12409,-0.329776,-0.163793,0.214729,0.559569,0.412176,1.35015,-0.5095,0.472088,1.19445,0.296167,0.128328,0.375579,-0.436922,0.694054,-0.0540961,0.988492,-0.544014,3.22746,0.817648,2.59245,-0.826009,-0.817898,0.857075,0.103562,0.510318,0.196095,-0.851279,-0.363541,-0.779449,0.0956904,-0.90927,1.17562,0.367859,2.17606,0.428498,-0.72225,-0.248849,-1.0039,0.469094,-0.0159875,0.400811,0.462078,0.258653,-0.305444,2.34545,0.277501,-0.54529,2.29077,1.23661,1.29066,0.407197,-0.319554,0.858299,0.468128,-0.474592,0.239815,-0.865064,-0.472297,-1.00596,0.720717,-0.910481,1.59969,0.000381674,-0.18708,-1.08886,1.12178,-1.27687,-1.02239,-0.9041,0.471073,0.42326,0.25714,-0.18139,0.710952,0.0911162,1.23706,0.338232,2.94621,0.571459,2.66696,-1.4539,-0.873225,0.711841,-0.884054,0.568247,0.0446568,-0.836632,-0.621737,-0.337758,0.407685,-0.081418,-0.319842,0.97492,1.42541,0.748399,-0.936384,0.322788,-1.0175,0.259386,0.491454,0.539194,0.324588,-0.414367,-0.591212,0.211686,0.0241151,0.359626,0.123569,2.98508,2.55953,2.11671,-1.12604,-1.18229,-0.86376,0.889943,0.649103,0.275469,-0.807525,-0.607187,-0.957583,0.239521,-0.789618,0.793016,-0.769393,-0.91226,-0.384624,1.75686,-0.207211,1.25272,2.55264,0.597545,-0.143372,-0.788142,0.689749,-0.492645,1.79727,1.71913,2.35689,-0.0870707,0.329311,0.552622,-0.154676,-0.311488,-0.505242,-1.22267,-1.06465,-0.0901196,0.129675,1.34023,0.372968,-1.08794,-0.07927,-1.18875,-0.194711,-0.665367,-0.769635,0.735361,1.31215,0.958973,-0.681514,-0.678673,0.0386421,-0.862061,1 +1.23115,-0.71175,0.205916,-1.23025,0.602625,-0.165601,-1.34545,0.676076,-1.49449,1.83637,0.193356,-0.698171,1.54854,0.380642,1.83096,-0.186426,-1.50951,-0.13055,-0.0282573,3.71956,-1.94997,-1.33011,-1.56612,1.07436,1.12273,-1.44669,-1.78034,-0.883654,-1.68072,1.15676,0.450589,1.58426,-1.72817,1.45592,-0.947294,0.000925044,-0.497186,-1.16632,1.84553,-0.941335,0.315168,0.313952,1.75814,0.400811,-0.0409503,0.179954,2.06337,-1.92648,0.560148,3.10154,-1.29126,-1.36945,-1.42819,-0.558793,0.80793,-0.550771,-1.47092,-0.864735,-1.24932,1.24853,-0.925326,1.23341,-1.57545,1.06706,-1.32892,0.182058,-0.145623,0.20318,1.64494,0.0256408,0.135369,0.674075,0.521055,-0.0774882,2.87746,-0.432141,-1.45138,0.595297,-0.516711,1.4958,-1.75767,-1.3201,-1.40057,0.33065,1.34649,-1.39214,-1.67889,-0.856738,-1.34237,0.892417,1.82122,2.00945,-1.24463,0.117734,-0.534531,0.209341,-0.699322,-1.38547,0.961145,-1.39265,0.306942,1.25373,1.41199,0.306399,0.399035,0.620516,-0.673081,-1.80728,3.24441,0.118147,1.32842,-1.81753,-1.56381,-1.43812,1.64282,0.558506,1.26173,-1.50112,-1.46414,-1.65825,0.990479,0.349459,0.487962,-0.783255,1.88739,1.77821,1.16056,1.28871,0.968226,-1.1958,0.455642,0.793899,-1.46427,-0.447964,0.415285,0.428441,-1.54871,1.75205,-1.48029,-0.452985,-0.908178,-0.82371,-1.35124,-1.3585,-0.154676,-0.311488,-0.147042,-0.255956,-0.916324,-1.40305,-1.16725,-1.21029,-1.20423,0.617106,1.16914,0.593372,-0.337518,1.36664,1.11058,0.369442,-0.199604,0.126811,0.5188,1.63104,0.607517,1.38932,1 +-0.15099,-0.417345,-1.12409,1.14011,-0.163793,0.0299972,0.568953,0.451761,1.33977,-0.4957,0.427491,1.17034,0.281078,0.116313,0.388691,-0.483891,0.694054,-0.0693869,1.01299,-0.544014,3.21462,0.829072,2.61383,-0.817488,-0.668619,0.868258,0.125216,0.525981,1.86629,-0.868225,-0.320692,1.37132,-0.224286,-0.936249,0.0325124,0.0743119,-0.575811,0.428498,-0.930449,-0.224118,-0.968565,1.19309,-0.0159875,0.389561,0.449502,0.191197,-0.305444,2.27519,0.29096,-0.515151,2.27789,1.23661,1.32252,0.443422,1.45709,0.906335,0.486082,-0.436836,1.09719,-0.875958,0.363291,1.3508,-1.28843,-0.933039,0.337566,0.318316,-0.18708,-1.08886,-1.02213,-1.26079,-1.02239,-0.628302,0.446082,0.362193,0.271152,-0.264974,0.719742,0.0559408,1.23706,0.326174,2.93477,0.582026,2.66696,0.904989,-0.873225,0.721319,-0.682191,0.582787,1.96644,-0.883574,-0.237844,1.16962,0.372023,-0.134525,-0.0131442,-0.757707,-1.40416,0.758232,-0.936384,0.342062,-0.634396,1.1691,0.491454,0.527554,0.324588,-0.489178,-0.607586,0.198403,0.0500852,0.373042,0.096186,2.98508,2.55953,2.1375,-1.12604,-1.1977,-0.689404,0.889943,0.657556,0.296602,-0.807525,1.34027,0.554098,-0.327152,1.23096,-0.742733,-0.782174,-0.928384,-0.412518,0.538626,0.379887,-0.605503,2.49177,0.531374,-0.168765,-0.788142,0.689749,-0.661322,1.84343,1.73443,2.38322,-0.0870707,0.339559,0.552622,-0.154676,-0.327558,-0.433602,-1.20779,-1.03768,-0.0552629,-0.26938,0.499717,0.267821,0.477349,1.3857,1.17681,-0.210578,-0.710027,-0.818898,0.430429,-0.085077,0.613931,0.0344628,0.444973,0.417892,0.909514,1 +0.180723,-0.621164,0.581787,-1.20376,-0.163793,-0.0786684,-1.36421,0.517736,-1.47373,3.57508,0.28255,-0.649952,1.63908,0.332582,0.506694,0.18932,-1.09472,-0.0693869,0.0942426,2.80903,-1.93713,-1.33011,-1.52336,1.04879,1.1014,-1.50261,-1.24982,-0.930642,-1.6635,1.16523,-0.363541,-0.992395,-0.43227,1.4829,-1.29902,1.8356,-0.48845,-0.982304,1.33197,-1.3865,0.162063,-0.397118,2.41176,0.412061,-0.103829,0.37108,1.7803,-1.89837,0.587066,4.27697,-1.23972,-1.35845,-1.42819,-0.933114,0.773764,-0.790954,-1.45296,-0.801809,-1.20419,1.77149,-0.885057,-0.888573,0.290186,1.11217,-1.34118,1.13586,-0.145623,0.599407,1.17307,0.00956042,0.225417,0.612787,0.571036,-0.199622,1.68641,-0.0978067,-1.42501,0.677373,-0.350814,-0.119972,-1.75767,-1.33067,-1.19908,0.299882,2.36007,-1.42058,0.0874141,-1.07485,-1.34237,0.931536,-0.621737,-0.553097,-1.10198,0.237225,-1.884,1.79087,-0.648247,-1.31663,1.23883,-1.42156,-0.0214317,-0.502237,0.644877,0.190002,0.163284,0.832481,-0.394726,-1.64789,1.62128,0.0510691,0.370017,-1.7613,-1.5434,-1.42772,2.90975,1.9912,1.23682,-1.54818,-1.48105,-1.48918,0.990479,0.33807,0.516306,0.723266,-0.902442,1.02483,1.46731,1.30483,1.20532,-1.22678,-1.57079,-0.341681,-1.57078,-0.567073,0.402588,1.77308,-0.531227,2.10238,-1.48029,-0.437688,-0.763357,-1.40527,-1.40247,-1.34776,-0.154676,-0.311488,-0.505242,0.219962,0.270277,-1.20553,-1.21001,-1.23928,-1.20423,0.477349,-1.11112,-0.0218843,-0.210578,1.4113,1.18447,0.11025,1.03728,0.492151,-0.3867,-0.241699,-0.0992671,-1.45259,1 +0.567721,-0.77969,-0.632568,0.173429,-0.163793,-0.817594,0.578337,-0.194792,0.550743,-0.0955221,0.594731,3.20762,0.643211,0.729077,0.690256,-0.311674,0.832317,0.526955,1.85824,-0.0237135,3.45871,0.49777,1.05303,-0.817488,-0.871212,0.197259,0.904763,-0.3198,0.127221,-0.800443,-0.363541,-0.502617,0.0156963,-0.59451,0.133005,0.343397,-0.523394,0.440766,-0.77777,0.987733,-0.72124,0.650094,0.388637,0.232063,1.92086,0.584692,0.022316,1.05263,1.65036,-0.289108,3.86274,0.543865,0.695909,0.455497,-0.968712,0.441983,0.82721,-0.348739,-0.391939,-0.570903,-0.0696041,-0.9879,0.828349,-0.933039,0.276298,0.0912201,-0.145623,0.0309077,0.896105,0.508053,-0.662198,-0.873455,0.683495,2.49953,0.285165,-0.348557,0.746111,-0.119936,2.71828,0.494986,0.9319,0.539757,3.38476,-0.715467,-0.751597,0.399087,0.13788,-0.711332,0.378881,-0.961812,-0.621737,-0.29469,0.205603,0.542591,-0.319842,0.843966,-0.362226,0.561563,-0.936384,0.872112,-0.83142,0.51326,0.465883,0.446076,1.03184,-0.501647,0.0146195,0.424209,-0.0278251,1.92924,0.698614,2.32149,0.742808,0.879797,-0.891041,-0.288784,-0.896971,0.287471,0.682915,0.750974,-0.856384,-0.948846,-0.995375,0.142772,-0.789618,0.561204,-0.104773,-0.710706,0.298774,0.177286,-1.26778,-0.674326,3.93725,3.61497,0.973941,-0.868181,0.537127,-0.570496,0.781688,0.403624,2.68603,0.856345,0.790438,0.552622,-0.114399,-0.279346,-0.576881,0.338942,0.202856,0.978818,-0.0270967,0.543192,0.538199,-1.04601,0.188246,-1.16753,-0.13124,-0.0624624,-0.810688,0.872581,1.31215,1.10105,-0.828921,-0.553823,0.211029,-0.806699,1 +-0.0404188,-0.236172,-0.777134,0.173429,-0.163793,-0.828461,0.615875,1.77126,0.332723,-0.468102,0.416342,-0.119536,-0.533722,0.248478,-0.0439897,0.251944,0.858241,-0.115259,0.608742,0.756737,0.182668,0.452073,0.732316,-0.843053,-0.860549,1.40506,0.861455,0.244054,0.127221,-0.927534,-0.363541,1.30743,-0.560261,-1.00819,0.145567,-0.145849,-0.523394,0.489838,-0.930449,0.814612,-0.391474,1.25774,-0.77855,0.44581,0.00935252,0.517235,0.141502,0.588902,0.775498,0.358884,-0.196036,0.455896,0.844596,-0.486344,-0.968712,4.26889,0.818233,-0.298398,-0.40698,-1.11564,-0.0696041,1.22438,-0.893773,-0.963115,0.276298,0.272897,-0.145623,-0.313637,-1.03239,0.138204,-0.662198,-0.628302,0.0462279,-0.162982,-0.107183,-0.599308,0.658212,0.618748,0.372024,0.326174,0.336761,0.529189,-0.0783093,-0.715467,-0.690783,0.541248,0.0874141,2.74935,0.378881,-0.985283,-0.435607,1.14809,0.205603,-0.439892,0.262884,-0.727487,-0.372441,0.620564,-0.967238,0.814289,-0.163727,1.25373,-0.122239,0.23656,0.150876,0.695327,0.243853,0.0390109,0.218891,0.0913157,0.150952,0.229484,0.416207,0.827826,-0.13497,0.358238,-0.880366,0.974666,0.750539,0.793241,-0.856384,-0.960235,-1.00482,-0.893825,1.07711,-0.916591,-1.34455,-1.00901,-1.13776,0.177286,0.455642,-0.662856,0.224653,-0.43473,0.212137,-0.612058,0.750798,-0.285044,1.12791,2.00977,0.197733,0.623722,0.698213,0.541885,-0.114399,-0.295417,0.640996,0.0563654,0.014079,0.862629,-0.0270967,0.543192,0.538199,0.421446,1.37296,1.09194,-0.226446,-0.509058,-0.84353,0.674375,0.20124,0.816897,-0.112944,0.444973,0.538563,0.761882,1 +0.236008,0.21676,0.856463,-1.01837,-0.163793,0.953654,-1.41114,0.596906,-1.24533,1.2844,2.21138,0.218001,2.84619,0.188403,0.428025,2.64732,-1.50951,0.557536,-0.310007,-0.0815246,0.0927376,-1.3758,-0.967461,1.35558,0.962787,-1.71509,-1.58546,-0.993292,-0.716484,1.13134,-0.363541,-0.960453,-0.176289,1.69874,-1.34927,1.59097,-0.427297,-1.49755,0.651859,-1.47307,0.550716,-0.397118,1.91376,0.108315,0.172837,2.9569,-0.901372,-0.169928,-0.00514623,0.524649,0.293594,-1.33646,-1.43881,0.274374,0.842096,-2.02389,-1.54274,-0.537518,0.37519,1.44464,-0.905191,-0.409998,0.541329,1.34527,-1.02258,0.908766,-0.104166,0.0136805,0.608883,-0.0869221,0.701384,0.735363,2.73275,0.38662,0.873686,0.403694,-1.38106,0.595297,-0.0308692,0.193536,-0.498722,-1.3835,-0.103495,0.730636,1.34649,-1.46796,-0.240614,-1.03123,-1.24211,1.2836,-0.517038,-0.531563,-1.07821,3.99456,-1.23994,1.5894,0.444762,-1.41497,1.02285,-1.49866,0.427346,0.0266675,0.862227,0.294759,0.0392049,0.34621,-0.705829,-0.718102,0.686353,-0.0160084,0.0414198,-0.400368,-1.03309,-1.2822,0.805011,0.77418,1.20361,-1.61408,-1.53176,-1.59485,1.0882,0.782228,1.17767,0.709445,-0.851159,0.879945,2.10637,1.23227,3.52051,-1.2371,-1.91169,-0.662856,0.513749,0.557842,0.516859,0.268364,-1.58941,-0.155292,-1.59569,-1.38608,-0.500044,-1.45696,-1.45371,-1.43366,-0.114399,-0.295417,-0.505242,0.0266204,-0.0398574,-1.51924,-1.08174,-1.22478,-1.21925,0.365543,-1.00921,-0.0643158,0.18611,3.01905,1.42258,0.15599,1.22053,0.85749,-0.597281,-0.179275,0.090358,-1.32341,1 +0.733577,-0.0436756,0.78418,-1.23025,-0.163793,1.00799,-1.36421,0.794831,-1.49449,1.312,-0.274915,-0.324469,0.431967,0.416687,1.49006,-0.483891,-1.57,0.404628,-0.126257,4.64453,-1.08921,-1.38723,-1.3737,1.49193,0.97345,-1.14474,-1.66125,-0.852329,-0.286022,1.08051,0.0220996,1.58426,-1.79217,0.673521,-0.934733,-0.0724618,-0.479714,-1.47302,0.749019,-1.53489,0.39761,0.663022,0.575387,0.220813,0.361472,-0.393424,-0.931168,-1.36438,0.519769,3.79474,-0.569702,-1.43542,-1.36446,-0.474269,0.580155,0.297873,-1.49785,-0.776638,0.600817,1.03064,-0.935393,1.33274,-1.61132,1.28511,-0.949061,0.182058,-0.145623,0.0136805,0.0446954,-0.199485,0.585608,0.674075,-0.228672,0.215633,2.5832,-0.599308,-1.50412,0.454596,-0.421912,2.00223,-1.49443,-1.36237,-0.896853,0.463979,1.33636,-1.34476,-0.581259,0.0738641,-1.30895,1.2836,1.77469,1.85871,-1.24463,0.237225,-0.135823,-0.858441,0.444762,-1.4543,1.02285,-1.47938,0.230321,1.3172,1.73163,0.818547,0.448667,0.520769,-0.689455,-1.4088,3.27038,1.12431,2.04039,-1.45762,-1.48216,-1.41733,1.24435,1.52904,1.18701,-1.3505,-1.44723,-1.59485,1.11751,0.953057,1.2627,-1.14261,1.76431,1.22766,0.662096,0.982346,0.6335,-1.00997,0.550335,0.518607,-0.323107,0.121111,0.605736,0.36441,-1.57923,0.0912347,-1.19177,0.0365061,-0.618535,-1.48281,-1.44346,-1.44439,-0.114399,-0.295417,0.139517,-0.151849,-0.296055,-1.60057,-1.05324,-1.18131,-1.21925,0.449397,1.29653,0.646412,-0.400988,-0.92216,1.26658,0.0797565,-0.932575,0.350074,0.28716,1.2565,0.641995,1.16787,1 +0.0148667,-0.372051,-0.96507,0.173429,-0.163793,-0.828461,0.615875,-0.155207,0.509216,-0.606094,0.527835,2.4361,0.265989,0.669002,0.401802,-0.421266,0.72862,-0.0999685,3.09549,0.207531,1.03059,0.486345,1.51272,-0.723747,-0.860549,0.711692,0.536644,0.776582,0.127221,-0.910588,-0.363541,1.29678,-0.560261,-0.864304,0.133005,-0.170311,-0.523394,0.857873,-0.888809,0.25815,-0.780127,1.27066,-0.0938,0.389561,1.25435,0.472265,-0.216055,0.364063,2.67327,-0.409664,2.65155,0.598845,0.525982,0.624545,-0.957323,0.313885,0.683577,-0.323568,-0.40698,-0.886853,-0.0696041,1.20632,-0.822018,-0.978154,0.276298,0.318316,-0.145623,-0.158592,-1.03239,-0.601495,-0.958069,-0.628302,0.483568,1.52246,0.0889907,-0.599308,0.508783,0.173192,2.86048,0.47087,0.806005,0.48692,3.40995,-0.705211,-0.913768,0.645499,-0.303697,0.0593235,0.378881,-1.00875,-0.44724,1.12655,0.205603,0.104457,0.293554,-0.727487,-0.372441,0.758232,-0.890103,0.573357,-0.426426,1.25373,0.363601,0.469355,0.399035,-0.239809,-0.689455,0.344513,-0.0408102,1.87558,1.56118,1.81536,0.916315,0.744672,-0.686697,0.296616,-0.855458,0.861702,0.775897,0.645306,-0.875928,-0.960235,-1.01427,-0.921468,1.04634,-0.945568,-0.718269,-0.904197,-0.259102,0.177286,0.455642,-0.674326,0.331162,1.72246,0.770793,0.108287,0.964469,0.0652845,0.839391,3.99832,3.87094,0.404022,0.503515,0.617041,-0.114399,-0.279346,-0.218682,-0.791365,-0.606189,0.409492,-0.0270967,0.543192,0.538199,0.421446,1.37296,1.08133,-0.274048,-0.453234,-0.859951,0.704868,0.24705,0.837194,-0.134002,0.382549,0.538563,0.743429,1 +0.236008,0.171467,0.842006,-0.925677,-0.163793,0.823256,-1.41114,0.319812,-1.47373,0.691035,0.394043,-0.0954262,0.0547447,0.248478,0.0346794,0.674658,-1.51815,-0.268167,0.351492,0.886812,-0.729485,-1.3758,-0.465011,1.18514,0.994775,-1.18947,-1.61794,-0.961967,-0.991979,1.13134,-0.363541,-0.992395,-0.176289,1.16814,-1.3367,1.59097,-0.383617,-1.48529,0.665739,-1.48543,0.538939,-0.448832,0.622075,0.43456,-0.0912531,0.562206,-0.91627,-1.96863,0.519769,0.46437,-0.273346,-1.39144,-1.21578,3.0999,1.04709,-0.166479,-1.54274,-0.600444,0.0743555,0.758267,-0.905191,-0.437088,0.577207,1.34527,-1.0716,0.863346,-0.145623,0.0136805,0.660172,-0.103003,0.68852,0.735363,0.0337324,-0.175195,-0.0371211,-0.0142232,-1.4338,0.689098,0.135028,0.338232,-1.44865,-1.3835,-0.0153444,0.812684,0.971473,-1.37319,-0.29108,-1.22025,-1.07499,1.22884,-0.540305,-0.596165,-1.0901,-0.081418,-1.14793,1.61962,0.363042,-1.41497,1.02285,-1.50829,0.394508,-0.0791135,-0.17338,0.155082,0.0764288,0.894823,-0.525717,-1.75415,0.660383,0.0242381,0.150952,-0.512841,-1.2168,-1.17826,1.38739,3.43929,1.23682,-1.51994,-1.53176,-1.59485,1.01979,0.736673,1.04539,0.667981,-0.892185,0.850968,0.9305,1.1839,0.563766,-1.22678,-1.87381,-0.628444,-1.17518,-0.43473,0.301014,0.284372,-1.57923,-0.116367,-0.626276,0.388328,0.210899,-1.46989,-1.45371,-1.43366,-0.114399,-0.295417,0.0678772,-0.00312447,-0.0803097,-1.54248,-1.06749,-1.23928,-1.21925,0.351567,-1.08564,-0.0855315,-0.258181,0.685586,1.48826,0.140743,1.20907,0.7966,-0.639398,-0.241699,0.107597,-1.26805,1 +0.0148667,-0.156909,-0.849417,0.199913,-0.163793,-0.871927,0.587722,0.570516,0.644181,0.442649,0.672776,0.543484,0.6583,1.40191,0.29691,0.565065,0.823675,3.21814,-0.101757,-0.00926071,0.426766,0.463497,0.379532,-0.817488,-0.860549,0.398559,0.818147,0.604294,0.110003,-0.825861,-0.363541,1.31808,-0.528263,-0.900276,0.120444,-0.170311,-0.540866,0.575713,-0.944329,0.678588,-0.450361,1.25774,0.699887,1.44704,0.361472,0.0675271,0.022316,1.01047,-0.180118,0.539718,0.229169,0.609841,0.345433,0.540021,-0.945935,0.297873,0.791302,-0.222886,-0.422022,-0.309427,-0.0192675,1.24244,-0.786141,-0.955596,0.251791,0.272897,-0.145623,-0.365319,-1.03239,-0.103003,-0.752245,-0.628302,0.446082,0.765234,0.747575,0.0693602,0.614262,2.76445,0.372024,0.253826,0.954789,0.465785,0.00984157,-0.653931,-0.447526,0.484383,0.0621812,0.248352,0.395592,-0.993107,-0.41234,1.14809,0.21749,-0.081418,0.293554,-0.798001,-0.433731,0.679564,-0.951811,0.737191,-0.185618,1.25373,0.632092,0.562473,0.349404,3.42592,1.29178,1.69935,0.387697,0.158393,-0.054421,0.521915,0.926521,0.609547,-0.53344,-1.25932,-0.880366,0.645189,0.767445,0.824941,-0.856384,-0.960235,-1.00482,-0.866183,1.09762,-0.858639,-0.00252401,-0.847762,0.061677,0.156638,0.455642,-0.708738,0.787629,0.848997,2.54834,-0.403958,0.832197,-0.155292,0.32006,0.265955,-0.157738,0.481563,0.59574,0.541885,-0.114399,-0.295417,-0.433602,-0.122104,-0.0803097,0.769678,-0.0128447,0.5287,0.538199,0.435421,1.3857,1.10255,-0.115373,-0.844005,-0.83532,0.643882,0.178334,0.7966,-0.15506,0.382549,0.538563,0.724975,1 +0.236008,0.205437,0.856463,-0.806497,-0.163793,0.584191,-1.4299,0.610101,-1.318,1.3672,-0.174571,-0.324469,1.71452,0.572882,1.97518,-0.139457,-1.47494,0.878643,-0.0650073,3.80627,-0.536777,-1.38723,-1.51267,0.989142,1.0161,-1.53616,-1.60711,-1.00895,-1.14695,1.19065,-0.363541,-0.971101,-0.208287,1.357,-1.34927,1.59097,-0.418561,-1.48529,0.651859,-1.48543,0.550716,-0.435904,1.60251,0.108315,0.763895,-0.280997,-0.886474,-0.324504,0.492851,2.27272,-0.337772,-1.39144,-1.48129,-0.703691,1.17237,-0.662856,-1.55171,-0.562689,-0.40698,0.976163,-0.905191,-0.419028,0.541329,1.31519,-1.20639,0.863346,-0.145623,0.0136805,0.639656,-0.103003,0.68852,0.735363,0.408596,0.191206,2.70931,0.320111,-1.3459,0.454596,-0.410063,2.60513,-1.07097,-1.39407,-0.859074,0.874221,1.26541,-1.47744,-0.253231,-0.958523,-0.874459,1.17407,-0.528672,-0.553097,-1.07821,0.303609,-1.23994,1.60955,0.0157303,-1.40514,1.02285,-1.50829,0.4164,-0.0791135,2.3581,0.643951,1.56538,0.820012,-0.280109,-0.173512,3.11456,1.07065,2.41006,-1.25517,-1.34948,-1.4589,1.32609,0.835801,1.21192,-1.57643,-1.54867,-1.60542,1.04911,0.748062,0.903674,0.695623,-0.871672,0.908921,0.726002,1.28065,0.382456,-1.2371,-1.91169,-0.628444,0.239869,0.253453,0.643826,0.268364,-1.56906,-0.142317,-1.53799,-0.544764,-0.895013,-1.46989,-1.46396,-1.43366,-0.114399,-0.295417,-0.791801,0.011748,-0.0533415,-1.54248,-1.09599,-1.26826,-1.21925,0.365543,-1.0729,-0.0749237,-0.162975,0.417628,1.44721,0.140743,1.20907,0.7966,-0.597281,-0.241699,0.0731194,-1.30495,1 +-1.03556,-0.802337,-0.936156,0.226398,-0.163793,-0.285133,0.709718,-0.128817,1.3813,-0.799284,0.505536,0.145672,0.0547447,0.116313,0.139572,-0.342986,0.78911,-0.237586,0.584242,0.40987,1.82711,1.62877,2.14345,-0.740791,-0.849887,0.912992,0.699049,0.776582,-0.113837,-0.936007,-0.363541,0.114929,0.671648,-0.927256,1.91676,-0.757406,-0.575811,0.686123,-0.930449,0.468369,-0.874346,-1.49604,-0.373925,0.43456,0.0848068,0.483507,0.022316,0.968317,0.115988,-0.349386,0.602835,1.74243,1.98099,0.419272,-1.3901,0.185788,0.746417,-0.273227,-0.0459784,-1.0067,-0.532701,-0.888573,0.97186,-0.978154,0.104748,-1.77097,-0.104166,-0.330865,-1.03239,-0.424611,-0.880885,-1.01135,0.371109,-0.199622,-0.0931708,-0.682891,0.570312,0.337344,0.466822,0.494986,2.08784,1.04699,1.42026,-1.05392,-0.934039,0.844525,-0.190148,-0.275112,-0.389834,-1.00875,-0.621737,-0.746903,0.241264,-0.0681412,0.99896,0.592131,-0.249861,0.699231,-0.920957,0.660092,-0.90804,-1.22155,0.248534,0.434436,0.225324,-0.0278445,-0.476595,0.198403,-0.0667803,0.185224,0.0688029,2.0853,2.18189,2.21026,-0.543657,0.404453,-0.830549,0.758152,0.775897,0.76154,-0.875928,-1.08551,-0.929239,0.12895,0.0206643,-0.568875,-0.961111,-0.960633,-0.524093,0.631542,0.777599,1.78036,0.376809,-0.34209,-0.206856,-0.11582,0.883071,0.0393342,2.12041,1.10727,1.40897,0.404022,0.534256,0.574095,-0.114399,-0.279346,-0.147042,-0.464171,-0.37696,0.607014,1.98243,0.441751,0.853639,-1.18577,-0.499652,-1.1251,-0.321651,-0.497893,-0.868162,-1.62787,-1.36778,-1.98404,-0.913154,0.132849,0.917813,-0.71443,1 +-1.86484,-0.824983,-0.415719,0.107218,-0.163793,-1.30659,0.5408,0.385787,0.550743,-0.412905,0.639328,0.0130679,0.462145,-0.172046,0.00845638,-0.170769,0.737261,0.0376488,0.584242,0.294248,-0.0228875,0.509194,0.775078,-0.808966,-0.849887,1.10311,0.796493,-0.25715,-0.699265,-0.817388,-0.342116,0.0403973,1.48759,-0.675448,0.874141,-0.879717,-0.575811,0.796534,-0.944329,1.17322,-0.733018,-1.8839,0.124075,0.344562,-0.053526,0.685876,0.0074178,0.321906,0.304419,-0.319247,-0.144496,0.4449,0.759632,0.358898,-0.888991,2.1713,0.773348,-0.562689,-1.11394,-0.74522,1.21901,-0.924692,-0.0327119,-0.933039,0.337566,-1.36219,-0.104166,0.685543,-1.03239,0.877903,-0.585014,-0.996032,0.633514,-0.248475,0.103003,-0.348557,0.719742,0.114566,0.383874,0.519102,0.153642,0.582026,-0.0405303,-1.00264,-0.852954,0.399087,-0.0639835,2.57486,-0.00547678,-0.969635,-0.59847,-0.574631,1.28733,0.436377,1.12164,-0.123082,0.0259453,0.433727,-0.843821,0.929936,-0.886149,-1.75045,0.389172,0.457715,-0.0104268,-0.177466,0.800563,0.809406,-0.0537952,0.144978,0.164644,0.319462,0.548888,0.827826,-0.727566,0.111753,-0.888668,0.899357,0.496949,0.412837,-0.827069,-1.22217,-1.1182,1.31758,0.666839,-0.800686,-0.39874,-0.759079,0.0895708,0.228906,0.75866,-0.869325,0.163791,0.0681733,-0.0544946,-0.467989,0.242058,-0.95975,0.943258,0.60248,0.184567,1.19236,0.933899,0.713671,-0.114399,-0.279346,-0.361962,0.547156,0.202856,1.02529,2.03944,0.209885,1.33431,-1.19974,-1.55698,-1.16753,-0.162975,-0.0847922,-0.810688,-1.59737,-0.405752,-1.639,-0.344584,0.757097,1.12468,0.337443,1 +-0.8697,2.36819,1.17451,0.292609,-0.163793,1.19272,0.822329,-0.287157,0.664944,0.263258,0.550134,0.326495,0.839367,-0.208091,-0.0177667,-0.358642,0.737261,0.236429,0.0942426,0.077456,0.144127,0.589163,0.81784,-0.774878,-0.78591,0.387375,0.655741,-0.476426,1.28086,-0.639461,-0.363541,-0.0873709,1.56758,-0.13586,1.05,-0.684019,1.9926,0.183141,0.415901,0.728051,1.99933,0.0295238,0.699887,-0.0154331,0.600411,0.528478,-0.141564,0.265697,-0.543521,-0.00278597,-0.105841,0.488885,0.589704,0.527946,-1.2876,0.329898,0.845164,2.21866,1.41307,-0.211374,-0.703845,1.06185,0.433696,-0.188642,1.73448,-0.408391,-0.104166,0.168726,0.403724,0.331169,1.74337,1.80791,0.770964,0.374406,0.397264,-0.18139,0.798851,-0.202012,0.360174,0.47087,0.405431,0.803941,0.261701,-1.16673,-0.538747,0.711841,1.57616,-0.696791,0.378881,-0.429797,1.23956,-0.165486,0.360136,0.75502,1.52035,-1.03976,1.7625,0.502562,0.837728,0.88175,2.15678,-0.0791135,0.504239,0.364598,0.0019811,-0.539052,0.14561,0.756276,-0.105735,0.641352,0.164644,0.713119,0.559095,0.56797,-0.696915,-0.0114892,-0.847155,0.541639,0.78435,0.560772,-0.77821,-0.789405,-0.475735,1.63547,-0.328065,-0.858639,0.278661,-0.339847,0.619553,1.41616,1.70559,0.0597864,-0.231814,-0.103873,-0.0417979,0.380418,0.292932,-0.246118,0.597037,0.0365061,0.224064,0.597875,0.862169,0.617041,-0.154676,-0.343629,-0.576881,0.799988,1.32204,0.711583,0.870777,1.49964,0.387989,1.91685,-0.07927,1.46322,-0.162975,0.21666,-0.0635282,0.277963,-0.428657,-0.258825,1.59277,-0.678673,-1.9438,0.632705,1 +-0.537988,-0.621164,0.480591,0.23964,0.114904,1.31225,0.634643,-0.0364525,0.623417,-0.31631,0.538984,0.0974522,0.447056,-0.184061,0.100237,-0.436922,0.737261,-0.0540961,0.424992,0.352059,0.59378,0.554891,0.646793,-0.664095,-0.78591,0.845892,0.211832,0.416342,1.57357,-0.817388,-0.363541,-0.49197,1.77557,-0.45062,0.86158,-0.855255,1.84408,0.637052,2.03985,-0.0633619,0.0678436,-0.422975,0.1552,0.277063,0.336321,0.505993,0.931106,0.209487,0.0217725,-0.153482,-0.0671862,0.631833,0.525982,0.624545,-1.24204,0.185788,0.557898,-0.462006,1.62366,-0.723431,-0.562903,-0.0578395,1.223,-0.331506,1.73448,-0.635487,-0.104166,0.168726,1.78855,0.0738821,0.212553,0.597465,0.571036,-0.150768,0.187078,-0.515724,0.772481,-0.0378604,0.383874,0.398522,0.703,0.560891,0.261701,-1.15648,-0.782004,0.759228,-0.455094,0.233811,0.662971,-0.484563,-0.621737,0.0498539,0.38391,0.316886,1.21365,-0.515945,1.7625,0.886068,1.13084,0.419161,-0.0761606,0.00551128,0.414742,0.446076,0.0640208,-0.376962,-0.689455,0.251534,-0.0927504,0.614521,0.150952,0.791851,0.701983,0.495211,-0.390399,0.666343,-0.780733,0.937011,0.72518,0.360003,-0.827069,-0.504689,-0.230087,0.916764,-0.953726,-1.1484,-0.385959,-0.605898,0.0337832,1.28195,1.44045,1.8033,-0.0492268,-0.447964,-0.486184,0.412433,0.842371,1.5704,0.400845,-0.208239,0.0397458,0.0938583,0.442031,0.702935,-0.154676,-0.327558,-0.147042,0.0563654,-0.242119,0.0609259,0.956288,1.54311,0.493136,0.589155,-0.486913,0.402431,-0.353386,-0.185276,-0.589003,0.491415,0.00654438,-0.299418,1.55065,-0.741098,-1.97828,0.429712,1 +-0.924986,2.36819,1.1456,1.84195,-0.163793,-1.43699,0.812945,-0.313547,0.675326,0.208061,0.583581,0.326495,0.839367,-0.196076,-0.0308782,-0.311674,0.737261,0.25172,0.0942426,0.120814,0.131279,0.589163,0.81784,-0.672616,-0.796573,0.398559,0.655741,-0.445101,0.437154,-0.664879,-0.363541,-0.119313,1.43959,-0.324716,0.748525,-0.610632,-0.575811,0.170874,0.415901,0.715685,1.99933,0.0295238,0.668762,0.0183164,0.600411,0.595934,-0.17136,0.265697,-0.556981,-0.0479947,-0.105841,0.499881,0.589704,0.479647,0.432102,0.313885,0.845164,2.21866,-1.08386,-0.244058,1.24921,1.07088,0.290186,-0.872886,0.374327,-0.362972,-0.104166,0.168726,0.403724,0.315088,1.7305,1.80791,0.783459,0.374406,0.369239,-0.0978067,0.798851,-0.178562,0.360174,0.458812,0.382541,0.793373,0.261701,1.54086,-0.569154,0.711841,1.56354,-0.696791,1.69907,-0.914869,1.27446,-0.251622,1.00204,0.794851,1.85771,-1.02969,-0.903623,0.512395,0.822301,0.872112,2.15678,-0.121426,0.491454,0.376237,0.014389,-0.501647,0.112862,0.72971,-0.105735,0.627936,0.164644,0.701872,0.548888,0.56797,-0.696915,0.0193213,-0.813944,0.560466,0.78435,0.571338,-0.768438,-0.800794,-1.07096,1.69076,-0.328065,-0.800686,0.26588,-0.525276,0.6335,0.404414,1.72453,-0.892266,-0.231814,-0.103873,-0.0417979,0.380418,0.303107,-0.272069,0.608578,0.0518027,0.23723,0.572028,0.851921,0.606305,-0.154676,-0.343629,-0.648521,0.785116,1.29507,0.711583,0.927785,0.354801,0.973806,1.91685,-0.0920088,1.47383,-0.115373,0.272484,-0.761425,0.293209,-0.405752,-0.238528,1.59277,-0.616248,-1.92656,0.688067,1 +-0.593273,-0.621164,0.495048,1.78898,0.080067,-1.38265,0.625259,-0.0496475,0.623417,-0.343909,0.561283,0.109507,0.447056,-0.172046,0.0871255,-0.389954,0.719978,-0.0540961,0.412742,0.395417,0.580932,0.554891,0.657483,-0.306177,-0.78591,0.845892,0.211832,0.46333,-0.0449634,-0.817388,-0.363541,-0.545207,1.75957,-0.711421,0.622909,-0.80633,-0.575811,0.64932,2.03985,-0.0633619,0.0678436,-0.422975,0.139637,0.299562,0.348897,0.550964,0.871513,0.209487,0.00831314,-0.138412,-0.0671862,0.642829,0.515361,0.564171,-0.148723,0.185788,0.557898,-0.462006,-0.767982,-0.723431,1.43043,-0.0578395,1.15125,-0.933039,0.38658,-0.590068,-0.104166,0.168726,1.78855,0.0738821,0.212553,0.597465,0.583532,-0.138555,0.159053,-0.515724,0.772481,0.00904018,0.383874,0.386464,0.691555,0.550324,0.261701,1.48958,-0.771868,0.759228,-0.455094,0.248352,1.39826,-0.977459,-0.621737,0.00678592,1.12091,0.330163,1.18298,-0.515945,-1.01599,0.895901,1.14627,0.409523,-0.0761606,-0.0156449,0.401957,0.446076,0.0764288,-0.327088,-0.673081,0.251534,-0.105735,0.614521,0.150952,0.791851,0.691776,0.495211,-0.349531,0.666343,-0.722614,0.937011,0.72518,0.360003,-0.807525,-1.06273,-1.06151,1.09644,-0.963983,-1.1484,-0.39874,-0.783265,0.0337832,0.435386,1.49727,1.74595,-0.0492268,-0.447964,-0.473487,0.428441,0.842371,1.58337,0.412386,-0.208239,0.0529114,0.0938583,0.442031,0.713671,-0.154676,-0.327558,-0.218682,0.0563654,-0.228635,0.049307,0.927785,0.282343,0.928744,0.589155,-0.499652,0.402431,-0.321651,-0.229936,-0.83532,0.491415,0.00654438,-0.299418,1.55065,-0.741098,-1.97828,0.46662,1 +0.954719,0.114851,0.856463,0.0410064,-0.163793,0.0951965,-1.39237,0.834415,-1.29724,0.249459,-0.419855,-0.0833713,0.220722,0.272508,0.165795,-0.483891,-1.51815,0.756317,-0.212007,0.554398,-0.292679,-1.36438,-1.34163,1.22775,1.13339,-1.31249,-1.65042,-0.930642,-0.0794003,1.3008,-0.363541,-0.85398,-0.000302499,1.43794,0.3968,-1.5402,-0.401089,-1.48529,0.721259,-1.51016,0.515384,-0.836688,0.108512,-0.139181,0.0345039,-0.753191,-0.91627,-0.296399,0.479391,0.509579,-0.0671862,-1.36945,-1.42819,-0.112022,1.09265,0.0256665,-1.52478,-0.688541,-0.256563,1.16138,-0.099806,-0.446117,0.684839,1.08961,0.337566,-0.998841,-0.145623,0.0136805,-0.0476262,-0.135163,0.675656,0.766008,0.0712188,0.264486,0.173065,-0.264974,-1.37227,0.278718,-0.338964,-0.180262,-0.876406,-1.36237,-0.619807,0.781916,1.00188,-1.40162,-0.379395,-0.0715425,0.211769,0.986302,-0.575204,-0.488495,0.276926,-0.24074,-0.841229,-0.908808,-0.00469978,-1.3953,1.05371,-1.48902,0.372617,-1.68698,-0.0327421,-0.310507,-0.0476507,0.458426,-0.558464,-0.425883,0.842174,-0.0696705,0.233101,-0.928993,-1.24742,-1.39654,1.29544,0.74337,1.32815,-1.42581,-1.5064,-1.59485,1.21523,0.543066,0.63913,0.156593,-0.707564,1.02483,1.03275,1.36127,0.507978,0.39409,-1.24884,-0.502269,0.346378,0.399031,0.631129,0.300379,-1.55888,-0.0514916,-1.3995,-0.254129,-0.72386,-1.48281,-1.43322,-1.40145,-0.154676,-0.327558,-0.218682,-0.0477418,-0.14773,-1.57734,0.143927,0.61565,0.613303,0.365543,-1.27672,-0.0961394,-0.400988,0.0491865,0.971001,-0.103203,-0.26832,-1.15188,-0.470933,-0.990797,-0.116506,-0.917422,1 +-0.759129,0.0582341,0.842006,0.186671,-0.163793,0.910188,-1.36421,0.596906,-1.40106,1.49139,-0.208019,-0.348579,-0.126322,0.296538,0.650921,-0.123801,-1.52679,0.741026,0.0819926,0.178625,-0.857958,-1.36438,-1.09575,1.17662,1.11207,-1.12237,-1.65042,-0.914979,0.110003,1.25843,-0.363541,-0.0341341,-0.336278,1.06922,0.283745,0.367859,-0.479714,-1.48529,0.749019,-1.52253,0.491829,-0.578118,0.622075,0.0858154,-0.12898,-0.0673854,-0.901372,-0.774181,0.587066,0.765762,-0.492392,-1.40243,-1.31136,-0.82444,0.261271,0.233825,-1.49785,-0.738882,0.345107,1.24853,0.262617,-0.391939,-1.53957,1.38286,0.153762,0.590831,-0.145623,0.0136805,-0.0065944,-0.167324,0.649928,0.750686,-0.328635,0.093499,0.551401,-0.18139,-1.42501,0.548397,-0.315264,-0.3129,-1.34565,-1.3518,-0.644993,0.105017,1.11337,-1.33528,-0.455094,-0.551384,0.245191,1.33837,-0.586837,-1.00531,0.419572,0.675359,-0.197163,-0.687193,0.352827,-1.41497,1.05371,-1.46974,0.328833,-0.98883,0.210178,-0.18247,0.113653,0.882355,-0.378352,-0.55871,0.907099,-0.0965015,0.096186,-1.15394,-1.40051,-1.34457,0.856096,0.435264,1.18701,-1.40698,-1.46414,-1.60542,1.23477,0.75945,1.22491,-0.783255,-0.830645,-1.98872,1.03275,1.23227,0.647447,0.166962,0.285194,-0.616974,-0.0492268,0.134345,0.643826,0.332395,-1.57923,0.00040888,-1.00712,0.220065,-0.289395,-1.48281,-1.42297,-1.40145,-0.154676,-0.327558,-0.433602,-0.0774868,-0.188182,-1.58896,0.143927,0.514209,0.643345,0.337591,-0.334047,-0.0961394,-0.147108,-0.30809,1.40616,-0.0879564,-1.10436,-1.53751,0.202928,0.132849,0.297222,1.02024,1 +-0.814415,-0.0436756,0.726353,0.213155,-0.163793,-0.89366,0.747255,-0.181597,0.820673,0.0976674,0.483238,0.145672,0.703567,-0.316226,0.100237,-0.530859,0.616282,0.0376488,0.522992,-0.00926071,-0.189902,0.566315,0.83922,-0.732269,-0.839224,0.476842,0.861455,-0.225825,0.127221,-0.775025,-0.363541,0.0191026,-0.528263,-0.639476,0.158129,-0.0969241,-0.540866,0.207677,0.887818,0.851709,0.421165,-0.552261,0.5287,0.119565,0.22314,0.359837,-0.379935,0.392168,-0.13974,-0.0479947,-0.247576,0.664821,0.653427,0.769444,-0.957323,0.441983,0.899027,-0.386495,-0.422022,-0.461955,-0.0293348,-0.36485,-0.822018,-0.940558,0.276298,0.227478,-0.145623,0.151498,0.229338,0.331169,0.572744,0.842618,0.671,-0.101915,0.439301,-0.766474,0.834011,-0.307539,0.454972,0.47087,0.233756,0.64543,0.0350275,-0.705211,-0.65024,0.60759,0.100031,-0.405978,0.412303,-0.953988,-0.59847,-0.746903,0.241264,0.449654,0.324224,-0.959175,-0.433731,0.61073,1.06913,0.901024,0.263159,-0.925361,0.542595,0.434436,-0.0352427,-0.788422,-0.378352,0.67658,-0.0278251,0.493781,0.150952,0.375699,0.457032,0.588759,-0.758218,0.0655372,-0.880366,0.579294,0.826615,0.750974,-0.836841,-0.948846,-0.985927,-0.907647,-0.758848,-1.72793,-0.0153052,-0.710706,0.312721,0.177286,0.512458,-0.697267,-0.125305,-0.0906383,-0.105282,0.108287,0.303107,0.00040888,0.98942,0.296548,0.316224,0.662492,0.82118,0.595568,-0.154676,-0.327558,-0.147042,0.279452,0.175888,0.885867,0.00140723,0.557684,0.56824,0.435421,-0.423219,-0.0431001,-0.226446,-0.319255,-0.827109,0.140743,-1.01274,-1.639,-0.0708279,0.257699,0.555801,0.780336,1 +0.844148,-0.791014,-0.993983,0.213155,-0.163793,-0.752395,0.522032,-0.0496475,0.467688,-0.0265259,0.561283,-0.312414,-0.307388,0.0922831,-0.30622,1.20696,0.711337,-0.115259,0.437242,0.265342,0.169821,0.474921,0.775078,-0.834531,-0.0501778,0.577492,0.634087,1.18381,0.110003,0.224759,-0.363541,-0.864627,-0.128293,-0.108881,0.145567,-1.3445,-0.549602,0.710659,-0.944329,0.270515,-0.850791,-0.953045,-0.420613,0.44581,0.00935252,0.798303,-0.42463,0.490535,0.223663,0.705484,-0.299116,0.565857,0.579084,-0.570868,-0.422053,-0.278564,0.6746,-0.197716,-0.452106,0.0392077,0.0109345,-1.00596,0.684839,-0.369102,0.264044,0.136639,-0.145623,-0.658182,-1.02213,-0.697978,-0.893749,-0.950066,0.208669,-0.333969,-0.0791584,0.0693602,0.710952,0.653923,0.135028,-0.879625,0.210866,0.391814,-0.103495,-0.520602,-0.0623687,0.550725,-0.227998,0.248352,0.412303,-0.234203,-0.621737,-1.17758,0.265039,-0.0548644,0.293554,-0.939029,-0.484807,0.866401,-0.936384,0.534808,-0.853311,-1.17924,-0.122239,0.2482,-0.0104268,0.844949,-0.19824,-0.133664,-0.482302,0.305964,-0.054421,0.308215,0.303937,0.547182,-0.0736667,-0.242568,0.240499,0.871116,0.767445,0.793241,0.0230745,-0.652742,-0.504079,-0.880004,-0.687051,-0.36604,-0.283709,0.256752,-0.384624,0.166962,-0.377659,-0.834913,0.285516,-0.487667,0.0470793,-0.500004,0.862721,-0.518596,0.954798,0.250658,0.184567,0.300634,0.48302,0.702935,-0.154676,-0.327558,-0.791801,-0.64264,-0.471348,0.467587,0.0441631,0.557684,0.583261,-1.14384,-0.767168,-1.18875,-0.0995054,-0.151782,-0.802477,-1.36867,-0.78369,-1.07069,-0.702572,-0.678673,0.31446,-0.160813,1 +-0.26156,-0.0323523,0.813093,-1.58779,-0.163793,0.986254,-0.444552,0.97956,-0.477067,1.20161,-0.620543,-0.25214,0.1151,-0.508466,0.323133,-0.828324,-0.61944,-0.252877,-0.420257,0.641114,-0.0742764,-0.53041,-0.486392,1.07436,1.11207,-0.294807,-1.11989,-0.852329,-0.217148,1.09745,-0.363541,-1.07757,-0.496266,0.673521,-0.997541,-1.24665,-0.514658,-0.896429,0.776778,-1.11446,0.432942,-0.694475,0.96445,-0.0716822,-0.4811,-0.550822,-0.946066,-0.732024,0.0217725,0.47944,0.087434,-0.500758,-0.451103,0.491722,0.261271,-0.534759,-0.788662,-0.776638,0.615858,1.16138,-0.935393,-0.554474,0.469574,1.24752,-0.961315,-0.49923,-0.145623,-0.020774,0.0549533,-0.231646,0.611336,0.735363,-0.278654,-0.578236,0.0889907,-0.682891,-0.291102,-0.647568,-0.315264,-0.01145,-0.636061,-0.506412,0.17355,-0.777004,0.870116,-0.264332,-0.581259,0.262893,-1.29224,1.2836,-0.610103,-1.39292,-1.22086,0.409823,0.661592,-0.626753,0.332397,-0.411953,1.05371,-0.881871,0.263159,-1.13692,0.222963,0.329678,0.175692,-0.302151,-0.787698,-0.55871,0.179936,-0.57946,-0.39671,-0.164173,-0.614629,-0.596183,0.73349,0.681748,1.12059,-0.550341,-0.542766,-1.30955,1.17614,1.04417,1.29104,-1.5296,-0.963983,-1.55407,1.44175,0.95816,0.745075,-1.1958,0.209439,-0.961089,-0.505694,-0.487667,-0.625848,0.332395,-0.68385,0.0652845,-0.545492,-0.682434,0.00024893,-1.13387,-0.869617,-0.682093,-0.154676,-0.311488,0.712636,-0.151849,-0.282571,-1.11258,-0.639931,-1.15233,-1.20423,0.309639,-1.0729,-0.159787,-0.480326,1.05403,1.14342,-0.0727097,-0.65771,-0.94891,-0.765747,0.00799982,0.676472,0.00527254,1 +-0.0957042,0.160144,0.856463,-1.12431,-0.163793,0.725457,-0.33194,-0.419107,-0.290192,0.677236,0.315998,-0.336524,0.0698336,0.224448,-0.00465514,0.956467,-0.895966,0.0529396,-0.457007,0.438776,-0.38261,-0.53041,-0.475701,1.52602,1.03743,-0.563207,-0.849218,-0.961967,-0.923105,1.26691,-0.363541,-0.843333,-0.320279,0.952308,-1.07291,-1.49127,-0.53213,-1.10498,0.721259,-0.842409,0.538939,-0.616903,0.637637,0.389561,-0.443373,0.539721,-0.901372,-0.746076,-0.799249,0.419162,-0.0929562,-0.478766,-0.589169,-0.0999475,0.557378,-0.358625,-0.447533,-0.675956,0.0743555,0.758267,-0.935393,-0.428058,0.613084,1.27759,-1.18188,-0.635487,-0.145623,-0.00354679,-0.0681421,-0.151244,0.68852,0.78133,-0.0537357,-0.297329,-0.233295,0.236527,-0.308682,0.747724,-0.303414,-0.144088,-0.567392,-0.421873,0.160957,0.587051,0.849845,-0.349629,-0.354162,-0.914901,-1.40922,1.27578,-0.563571,-1.19912,-1.13765,-0.24074,0.630922,-0.999469,-0.157925,-0.706958,1.05371,-0.506017,0.394508,-0.946518,-0.365159,0.0270453,-0.0228348,1.08185,-0.378352,-0.505579,0.491577,-0.431889,0.137261,-0.242905,-0.604423,-0.585789,1.25457,0.281211,1.13719,-0.653891,-0.373707,-1.08765,1.30318,0.805005,1.18711,-1.36375,-0.779361,-1.11943,0.802689,1.20002,0.396403,-1.22678,0.0389913,-1.01844,-0.840436,-0.34209,0.389891,0.284372,-0.989094,-0.103392,-0.649358,-0.391798,0.145071,-0.927098,-0.5622,-0.735776,-0.154676,-0.327558,-0.648521,-0.0328694,-0.120762,-0.833728,-0.639931,-1.23928,-1.18921,0.379518,-0.754429,-0.0643158,-0.147108,0.294814,1.16805,-0.0879564,-0.944027,-1.0301,-0.849979,-0.054425,0.641995,-0.160813,1 +-0.0404188,0.205437,0.87092,-0.806497,-0.163793,-0.654596,-0.350709,-0.419107,-0.259046,0.318455,0.215655,-0.348579,-0.201766,0.152358,-0.266886,1.26959,-0.92189,0.374047,-0.432507,0.0919088,-0.38261,-0.53041,-0.465011,0.65679,1.14405,-0.585574,-0.838391,-1.00895,-1.18138,1.29232,-0.363541,-0.790096,-0.272282,1.4919,-1.1106,-1.5402,-0.567074,-1.10498,0.693499,-0.854775,0.562493,-0.603975,0.264137,0.299562,-0.56913,0.528478,-0.886474,-0.675814,-0.731953,0.419162,-0.0929562,-0.445778,-0.589169,-0.256921,1.26348,-0.566783,-0.45651,-0.61303,-1.48999,1.36838,-0.935393,-0.391939,0.684839,0.954269,-1.48822,-0.680906,-0.145623,-0.00354679,-0.109174,-0.135163,0.714248,0.78133,-0.266158,-0.346182,0.621463,0.570861,-0.291102,0.794625,-0.303414,0.35029,-0.555947,-0.464142,0.160957,0.802428,0.951202,-0.359106,-0.29108,-0.973064,-0.757481,0.837651,-0.528672,-1.15605,-1.12576,0.277056,0.600252,-1.02969,-1.0262,-0.677457,1.05371,-0.544567,0.427346,-0.946518,0.299675,-0.0195137,-0.208954,1.30628,-0.116371,-0.372752,0.231876,-0.592876,0.123569,-0.231657,-0.58401,-0.585789,0.9174,1.32877,1.22852,-0.62565,-0.365254,-1.02424,1.18591,0.873337,0.506858,-1.32229,-0.697307,-0.945568,1.37784,1.37739,0.884544,-1.22678,-0.0367633,-1.01844,-0.65785,-0.289153,0.440678,0.252356,-0.978919,-0.155292,-0.649358,-0.422392,0.145071,-0.965869,-0.603189,-0.746513,-0.154676,-0.327558,-0.935081,-0.00312447,-0.0803097,-0.833728,-0.639931,-1.25377,-1.18921,0.40747,-0.728952,-0.0431001,-0.0677703,1.04286,0.716474,-0.0879564,-0.978385,-1.05039,-0.892095,-0.11685,0.641995,-0.216174,1 +0.512436,-0.8816,-0.950613,0.12046,-0.163793,-0.513331,0.709718,0.438566,0.498834,0.277058,-0.50905,-0.17981,-0.382833,0.392657,-0.384889,-0.734388,0.642206,-0.329331,0.241243,0.0630032,0.529544,0.612012,-0.0267036,-0.655573,-0.103492,1.09192,-0.286212,-0.382451,0.14444,0.25865,-0.363541,-1.10952,-0.320279,-0.243778,0.208375,-0.732943,-0.453505,0.93148,-0.888809,-0.137557,-1.10989,-1.03062,-0.124925,-0.341678,0.197988,-0.573307,-0.409732,1.13695,0.0890694,0.750692,-0.157381,0.400916,0.749012,1.10754,-0.649828,0.249837,0.414265,-0.663371,-0.346813,-0.13511,-0.190412,-1.01499,0.254309,-0.0157018,0.349819,0.409154,-0.145623,-0.0380013,-1.02213,-0.923104,-1.11244,-0.996032,-0.303644,0.252273,0.0189285,-0.933641,0.499993,-0.741369,0.0283798,0.265884,0.88612,0.729969,-0.0783093,-0.797516,-0.0725044,0.90139,-1.26255,0.568247,0.36217,0.078747,-0.621737,-1.34985,0.181829,0.0247964,0.416233,-0.566312,-0.249861,0.817233,-0.874676,0.322788,-1.10506,-1.2427,-0.646435,-0.61314,0.113653,-0.38943,-0.0508758,0.291382,-0.534242,-0.163579,-0.39671,0.105763,0.375381,0.412057,-0.0430152,-0.427432,0.0744453,0.833461,0.615291,-0.242303,0.150107,-0.561632,-0.230087,-1.15643,-0.922956,-1.55407,-0.296491,0.184193,-0.245155,0.280526,0.0768686,-0.639915,0.422456,-0.0906383,0.250227,0.108287,0.964469,-0.0514916,0.527793,-0.0246802,-0.144573,0.416946,0.462526,0.702935,-0.154676,-0.311488,0.569356,-1.43088,-1.38827,-0.368973,0.0441631,0.601158,0.553219,-1.21372,-0.881818,-1.24179,-0.385121,-0.989149,-0.884583,-1.36867,-0.65771,-1.07069,-0.513049,-0.428974,0.400654,0.208265,1 +0.0148667,-0.0549989,-0.979526,0.23964,-0.163793,-0.774128,0.522032,-0.0496475,0.467688,-0.0127266,0.561283,-0.300359,-0.307388,0.0922831,-0.319332,1.22262,0.719978,-0.115259,0.437242,0.265342,0.169821,0.474921,0.775078,-0.843053,-0.0501778,0.577492,0.634087,1.16815,0.0927844,0.224759,-0.342116,1.36067,-0.480267,-0.108881,0.145567,-0.170311,-0.558338,0.698391,-0.944329,0.282881,-0.674131,1.20602,-0.420613,0.44581,0.00935252,0.798303,-0.409732,0.490535,0.223663,0.705484,-0.299116,0.554861,0.579084,-0.607092,-0.422053,-0.278564,0.6746,-0.0215219,-0.482189,0.0501025,0.0512037,1.33274,-0.786141,-0.376621,0.239537,0.272897,-0.145623,-0.658182,-1.02213,-0.697978,-0.893749,-0.61298,0.208669,-0.333969,-0.065146,0.0693602,0.710952,0.653923,0.135028,-0.867567,0.210866,0.391814,-0.103495,-0.50009,-0.0623687,0.550725,-0.0892165,0.233811,0.412303,-0.234203,-0.296009,1.16962,0.276926,-0.0681412,0.232214,-0.908808,-0.535882,0.866401,-0.936384,0.544445,-0.262239,1.19026,-0.122239,0.23656,-0.0104268,0.844949,-0.181866,-0.120381,-0.469317,0.305964,-0.054421,0.308215,0.303937,0.547182,-0.0838839,-0.242568,0.240499,0.861702,0.758992,0.782674,0.0230745,-0.652742,-0.504079,-0.741791,1.21045,-0.68478,-0.283709,0.256752,-0.384624,0.146314,0.398826,-0.75462,0.285516,-0.487667,0.0470793,-0.516012,0.862721,-0.505621,0.954798,0.235362,0.184567,0.287711,0.48302,0.692198,-0.154676,-0.311488,-0.791801,-0.627768,-0.417412,0.479206,0.00140723,0.543192,0.583261,0.463373,1.3857,1.1662,-0.0995054,-0.151782,-0.802477,0.476169,-0.0278136,0.654524,-0.15506,0.382549,0.486847,0.706521,1 +0.180723,0.114851,0.856463,-1.12431,-0.163793,0.595058,-0.491473,0.794831,-0.477067,1.4086,-0.0853765,-0.240085,-0.1565,-0.844885,0.677144,-0.656107,-0.628082,-0.13055,-0.408007,-0.153789,-0.0100403,-0.541834,-0.518463,0.903923,1.21869,-0.294807,-1.07659,-0.930642,-1.28469,1.1144,-0.363541,-1.04563,-0.240285,1.37499,-1.29902,1.56651,-0.348672,-0.847358,0.721259,-1.10209,0.515384,-0.539332,0.6532,-0.791671,-0.4811,0.0900125,-0.931168,-0.619604,0.0352319,0.49451,0.126089,-0.489762,-0.472344,0.395122,1.0357,-0.790954,-0.815593,-0.688541,-0.422022,1.22674,-0.905191,-0.482236,0.577207,1.31519,-1.12061,0.727089,-0.145623,0.0309077,0.72172,-0.119083,0.675656,0.750686,-0.166195,-0.70037,0.467326,-0.264974,-0.291102,-0.682743,-0.338964,0.0729559,-0.613172,-0.538114,0.160957,0.474235,1.06269,-0.292764,-0.366779,-0.522303,-1.19197,1.13495,-0.575204,-0.703835,-1.10198,0.0646268,-1.11726,1.66999,0.168956,-0.372619,1.05371,-0.910783,0.361671,-0.332988,0.453098,0.0037658,-0.208954,-0.202403,-0.673081,-0.399318,0.569488,-0.431889,-0.054421,-0.164173,-0.604423,-0.606578,0.66197,0.697154,1.31155,-0.559754,-0.585031,-1.22501,0.951392,0.656953,0.82809,0.612696,-0.943469,0.821992,1.14778,1.24034,0.103518,-1.21645,-1.79806,-0.53668,-0.368754,-0.421496,-0.727422,0.316387,-0.653325,-0.0385165,-0.568573,-0.881289,-0.0655791,-1.0951,-0.879865,-0.649883,-0.154676,-0.327558,0.0678772,-0.0328694,-0.134246,-1.08934,-1.05324,-1.22478,-1.18921,0.337591,-1.23851,-0.106747,-0.337518,0.953543,1.5129,0.11025,1.16326,0.634227,-0.660456,-0.241699,0.0731194,-1.21268,1 +0.567721,-0.84763,-0.849417,0.133702,-0.163793,-0.535064,0.766024,0.570516,0.561125,0.249459,-0.520199,0.242111,-0.307388,-0.0518966,-0.463558,-0.703075,0.875524,-0.268167,-0.371257,0.077456,0.658016,0.532042,0.294009,-0.732269,-0.103492,0.398559,0.699049,-0.413776,0.127221,0.267123,-0.363541,-0.832685,-0.0163013,-0.252771,0.208375,0.416784,-0.479714,0.354891,-0.72225,0.777514,-0.897901,0.469094,-0.0938,-0.85917,0.562684,-0.539579,0.290483,0.490535,-0.35509,0.750692,0.061664,0.38992,0.334813,0.817743,-0.672605,0.185788,0.836187,-0.499762,-0.376897,-0.124215,-0.150143,-1.00596,0.756594,-0.0608167,0.337566,0.0912201,-0.145623,-0.589273,1.09101,-0.0869221,-0.855157,-0.919422,-0.228672,0.520967,0.0189285,-0.766474,0.684582,-0.37789,0.0757789,0.265884,0.966234,0.729969,-0.0783093,-0.756492,-0.0725044,0.636022,-0.455094,0.0884048,0.36217,0.078747,-0.621737,-0.466961,0.193716,0.157564,-0.350512,0.984994,-0.280506,0.492728,-0.936384,0.872112,-0.973715,0.301698,-0.787073,-0.857575,-0.270994,0.0469664,-0.0836234,0.251534,-0.443347,0.386457,-0.0954956,0.600646,0.722395,0.391269,-0.0532324,-0.59689,0.0495371,0.485157,0.758992,0.529071,0.189194,-0.538855,-0.211191,0.0322013,-0.881929,0.532228,-0.258147,0.160007,-0.0777921,0.259878,-1.17308,-0.399034,-0.00358013,0.0284704,-0.156069,-0.916204,0.557477,-0.388845,0.204653,0.342438,-0.157738,0.649569,0.841674,0.595568,-0.154676,-0.327558,0.211157,-0.285701,-0.417412,0.758059,0.0156592,0.586667,0.56824,-1.11589,-0.0665311,-1.19936,-0.289916,-0.989149,-0.851741,0.720115,1.3236,0.999567,-0.828921,-0.553823,0.176551,-0.751337,1 +0.567721,0.103527,0.842006,-1.11107,-0.163793,0.68199,-0.322556,-0.419107,-0.290192,0.691035,0.2937,-0.360634,0.024567,0.260493,-0.0308782,0.659002,-0.913248,0.022358,-0.420257,0.438776,-0.485388,-0.53041,-0.44363,1.5601,1.04809,-0.563207,-0.849218,-0.946305,-0.957542,1.27538,0.900503,1.58426,-1.72817,0.934322,-0.959856,-0.0479995,-0.540866,-1.08045,0.735139,-0.817677,0.480052,0.482023,0.637637,0.389561,-0.380494,0.472265,-0.901372,-0.746076,-0.799249,0.404092,-0.170266,-0.478766,-0.589169,0.0811757,0.568767,-0.310589,-0.429579,-0.738882,0.0292303,0.769162,-0.925326,1.39594,-1.46781,1.25504,-1.19413,0.0458009,-0.145623,0.0309077,-0.0168523,-0.151244,0.649928,0.735363,-0.0787265,-0.260689,-0.289345,0.0693602,-0.317472,0.712549,-0.327114,0.012666,-0.578837,-0.43244,0.148364,0.638331,0.819438,-0.359106,-0.442478,-0.784035,-1.39251,1.26796,2.14695,1.81564,-1.18519,-0.307124,-0.135823,-0.999469,-0.270291,-0.716791,1.05371,-0.486743,0.317888,1.12679,-0.365159,0.0503247,0.0392049,0.994571,-0.460221,-0.545427,0.387697,-0.431889,0.178335,-0.2654,-0.604423,-0.585789,1.23413,0.466074,1.13719,-0.635063,-0.356801,-1.09821,1.32272,0.805005,1.17767,-0.907647,1.85662,1.34357,0.764345,1.19196,0.22904,-1.21645,0.493519,-0.158153,-0.901299,-0.355324,0.402588,0.348402,-0.978919,0.013384,-0.626276,-0.300019,0.171402,-0.901251,-0.541705,-0.735776,-0.154676,-0.327558,-0.505242,-0.0626143,-0.188182,-0.822109,-1.03899,-1.23928,-1.18921,0.491324,1.23283,0.678235,-0.210578,0.183165,1.11879,0.0340166,-1.12727,0.00503152,0.202928,1.13165,0.57304,1.09405,1 +-0.8697,-0.0549989,0.711897,0.199913,-0.163793,-0.882793,0.737871,-0.194792,0.831055,0.0286711,0.505536,1.8213,0.6583,0.344597,0.519806,-0.515203,0.598999,-0.0388052,2.16449,0.0630032,0.0927376,0.554891,0.807149,-0.723747,-0.849887,0.499209,0.872282,-0.194499,0.127221,-0.775025,-0.363541,0.00845525,-0.544262,-0.603503,0.158129,-0.0969241,-0.540866,0.207677,0.901697,0.876441,0.409387,-0.552261,0.46645,0.119565,1.84541,0.427294,-0.394833,0.392168,1.91954,-0.123342,1.16978,0.675817,0.642807,0.745294,-0.957323,0.393946,0.899027,-0.37391,-0.40698,-0.483744,-0.0394021,-0.382909,-0.857896,-0.948077,0.276298,0.182058,-0.145623,0.168726,0.239596,0.347249,0.55988,0.842618,0.658505,1.49804,0.355227,-0.850058,0.825221,-0.295814,2.03099,0.47087,0.222311,0.624296,1.10543,-0.705211,-0.680647,0.598112,0.112647,-0.391437,0.412303,-0.953988,-0.610103,-0.746903,0.241264,0.476207,0.324224,-0.939029,-0.413301,0.61073,1.06913,0.901024,0.252213,-0.925361,0.491454,0.411156,0.585155,-0.713611,-0.394726,0.663297,0.0241151,2.21097,1.57487,0.353204,0.426413,0.56797,-0.727566,0.188779,-0.880366,0.56988,0.826615,0.76154,-0.836841,-0.948846,-0.985927,-0.921468,-0.789618,-1.72793,-0.0408675,-0.694582,0.312721,0.177286,0.531396,-0.674326,-0.079658,0.98134,-0.0798881,0.108287,0.292932,0.00040888,1.02404,0.939005,1.23782,0.675416,0.810932,0.595568,-0.154676,-0.311488,-0.0754024,0.294325,0.175888,0.909105,0.00140723,0.557684,0.56824,0.421446,-0.435958,-0.0537079,-0.242313,-0.185276,-0.83532,0.140743,-1.00129,-1.6187,-0.0497698,0.257699,0.555801,0.79879,1 +1.06529,0.137497,0.856463,0.0410064,-0.163793,0.377727,-1.38298,0.84761,-1.18304,1.11881,1.45323,0.133617,1.6089,0.164373,0.532917,-0.483891,-1.51815,0.664572,-0.285507,0.207531,0.131279,-1.35295,-0.94608,1.46636,1.1014,-1.49142,-1.63959,-0.930642,-0.0621818,1.35163,-0.363541,-0.864627,0.0156963,1.28505,0.384238,-1.5402,-0.479714,-1.48529,0.721259,-1.51016,0.527161,-0.810831,1.19789,0.513309,0.072231,1.63026,-0.91627,0.0268058,0.304419,0.901388,0.254939,-1.30347,-1.41757,-0.0033485,0.773764,-0.582795,-1.5158,-0.675956,-0.0309367,1.08511,0.000867143,-0.446117,0.720717,1.23248,0.300805,-0.771745,-0.145623,0.0136805,-0.0578841,-0.135163,0.68852,0.766008,1.62065,0.31334,0.691525,-0.18139,-1.3459,0.313894,-0.137517,-0.144088,-0.372827,-1.36237,-0.153867,0.6691,1.15392,-1.43953,-0.366779,-0.333274,0.161635,1.18972,-0.575204,-0.531563,0.312587,1.79061,-0.71855,-0.888662,0.0872356,-1.3953,1.05371,-1.47938,0.383562,-1.66583,0.862227,0.876746,0.014389,0.0843718,-0.689455,-0.386035,0.894114,-0.0294239,0.109878,-0.377873,-0.961643,-1.25102,1.23413,0.77418,1.26173,-1.4917,-1.49795,-1.59485,1.33249,0.543066,0.979258,0.0874865,-0.738334,0.966874,1.05831,1.34514,1.42847,0.352794,-1.19202,-0.559621,0.589827,0.531374,0.504162,0.300379,-1.56906,-0.0644667,-1.50337,-0.835399,-0.565872,-1.46989,-1.43322,-1.40145,-0.154676,-0.327558,-0.218682,-0.0328694,-0.120762,-1.56572,0.172431,0.586667,0.628324,0.365543,-1.27672,-0.0855315,-0.353386,1.31082,1.11879,-0.103203,-0.26832,-1.13158,-0.513049,-1.05322,-0.0820284,-0.843607,1 +0.623006,0.31867,0.798636,0.173429,-0.163793,-0.828461,0.728486,-0.419107,0.633799,-0.274912,0.650477,2.07446,0.552678,1.37789,0.664033,-0.170769,0.8496,0.190557,1.73574,0.323153,0.953502,0.589163,0.219176,-0.757835,-0.839224,0.912992,0.0602539,-0.210162,0.14444,-0.817388,-0.363541,-0.896569,0.0636927,-0.585517,0.17069,-1.36896,-0.523394,0.698391,0.762898,-0.100459,0.609603,-0.668617,0.248575,0.378311,2.18495,0.708361,-0.230953,0.645111,0.640904,-0.19869,1.67229,0.521873,0.600325,0.443422,-0.968712,0.105727,0.548921,-0.298398,-0.391939,-0.658062,-0.0796714,-0.229404,0.900105,-0.933039,0.300805,-1.1351,-0.145623,0.0825895,-0.0168523,-0.215565,0.701384,0.919228,0.683495,2.1087,0.14504,-0.0142232,0.719742,0.0559408,1.9836,0.434696,1.0349,0.719402,1.09284,-0.78726,-0.79214,0.844525,-0.152299,-0.115164,0.395592,-0.985283,-0.435607,-1.11298,0.21749,0.555868,-0.350512,-0.818148,-0.362226,0.827067,1.05371,0.467347,0.503966,-1.81392,0.389172,0.434436,1.19314,-0.0278445,-0.525717,0.450774,-0.0148401,2.22438,1.0409,0.66813,0.732602,0.495211,-0.564091,0.358238,-0.847155,0.814634,0.682915,0.0958335,-0.856384,-0.948846,-0.995375,0.225699,-0.871672,0.706086,-0.219804,-0.72683,0.242987,0.208258,-1.30565,-0.743149,0.787629,1.96068,1.17709,0.348402,0.944119,0.18206,0.296979,-0.0399768,0.645364,0.132629,0.493267,0.649251,-0.154676,-0.327558,-0.791801,-0.107232,-0.107278,-0.0204063,0.00140723,0.572175,0.56824,0.575179,-1.17481,0.137234,-0.194711,0.0826812,-0.827109,0.125496,-0.359941,-1.17217,-0.744688,-0.741098,0.19379,-0.862061,1 +-0.814415,0.0469108,0.726353,0.213155,-0.163793,-0.915393,0.681565,0.0954972,0.727236,0.497846,0.226804,0.374715,0.809189,0.392657,0.12646,-0.40561,0.72862,2.05604,0.228993,-0.0815246,0.568085,0.554891,0.807149,-0.749313,-0.849887,0.454475,0.753185,0.510318,0.127221,-0.741134,-0.363541,0.00845525,-0.496266,-0.684441,0.145567,-0.145849,-0.549602,0.342624,0.873938,0.542563,0.456497,-0.526403,0.808825,0.220813,0.487229,-0.0449,-0.394833,0.827793,-0.368549,0.449301,0.190514,0.697809,0.547222,0.793593,-0.957323,0.538056,0.818233,-0.235472,-0.422022,-0.13511,-0.00920017,-0.310672,-0.750263,-0.940558,0.264044,0.182058,-0.145623,-0.0724558,0.198565,0.106043,0.598472,0.873262,0.596027,0.508754,0.677512,-0.599308,0.842801,0.947052,0.431273,0.398522,0.542771,0.550324,0.236515,-0.674443,-0.376576,0.636022,0.100031,0.146567,0.412303,-0.961812,-0.586837,-0.746903,0.253152,0.330163,0.385563,-0.959175,-0.454162,0.8074,1.06913,0.737191,0.317888,-0.925361,0.606521,0.318039,0.014389,1.60553,-0.296483,1.15476,0.153966,0.534028,0.0551113,0.758109,0.732602,0.651124,-0.584526,-0.442837,-0.880366,0.805221,0.835068,0.782674,-0.817297,-0.948846,-0.995375,-0.907647,-0.789618,-1.69895,0.240318,-0.694582,0.396403,0.166962,0.512458,-0.720208,1.16802,0.769591,1.25327,0.15631,0.64905,0.0523093,0.504711,0.112989,0.105574,0.300634,0.605987,0.638515,-0.154676,-0.327558,-0.290322,0.130728,0.108468,0.676727,0.0156592,0.557684,0.583261,0.477349,-0.423219,0.00993931,-0.194711,-0.721191,-0.818898,0.171236,-1.01274,-1.5984,-0.112944,0.257699,0.57304,0.743429,1 +-0.593273,0.0242642,0.82755,0.146944,-0.163793,0.692857,-1.36421,0.346202,-1.47373,1.03602,-0.0184807,-0.324469,0.160367,0.320568,0.270687,0.142352,-1.53543,0.43521,0.228993,0.612209,-0.947888,-1.36438,-0.497082,1.1681,1.16538,-0.84279,-1.66125,-0.899317,-0.0449634,1.23302,-0.363541,-0.0767235,-0.336278,1.33002,0.32143,0.343397,-0.418561,-1.47302,0.749019,-1.52253,0.468274,-0.565189,0.388637,0.254563,-0.154132,0.0675271,-0.901372,-1.4768,0.573607,0.901388,-0.518162,-1.40243,-1.14143,1.78373,0.694043,0.361922,-1.49785,-0.751468,0.104439,0.976163,0.212281,-0.437088,-1.3243,1.3603,0.190523,0.63625,-0.145623,0.0136805,0.00366355,-0.183405,0.637064,0.735363,-0.141204,-0.0530614,0.131028,-0.264974,-1.46017,0.642198,-0.101968,0.904957,-1.50588,-1.3518,-0.216832,0.310138,1.11337,-1.27842,-0.492944,-0.813116,0.211769,1.23666,-0.59847,-1.04838,0.395797,0.223948,-0.105154,-0.667046,0.301751,-1.41497,1.05371,-1.46974,0.306942,-0.98883,-0.275662,-0.15919,0.0516129,0.944697,-0.427474,-1.22284,0.842174,-0.083086,0.205718,-0.704046,-1.28824,-1.16787,1.20348,1.37499,1.31155,-1.38815,-1.46414,-1.60542,1.11751,0.543066,1.01705,-0.824719,-0.861415,-1.98872,0.726002,1.29677,0.703235,0.228906,0.304132,-0.571092,-0.627418,-0.170044,0.554949,0.332395,-1.56906,0.0263591,-0.464707,0.525997,0.131905,-1.48281,-1.42297,-1.40145,-0.154676,-0.311488,-0.290322,-0.0923592,-0.215151,-1.60057,0.172431,0.5287,0.643345,0.323615,-0.334047,-0.117355,-0.242313,0.495782,1.46363,-0.0879564,-1.09291,-1.47662,0.160812,0.0704246,0.297222,0.964875,1 +0.45715,0.114851,0.74081,0.199913,-0.163793,-0.806727,0.644028,-0.128817,1.19442,0.221861,0.516686,0.543484,0.809189,-0.0278667,0.00845638,-0.421266,0.711337,0.175266,-0.0405073,-0.0526191,2.1226,1.13753,2.1969,-0.817488,-0.849887,0.890625,0.709876,0.964534,0.161658,-0.724188,-0.363541,-0.907217,0.111689,-0.468606,0.145567,-1.46681,-0.53213,0.330356,0.873938,0.394174,0.491829,-0.629832,0.6532,0.0295663,0.575259,0.438536,-0.379935,1.02453,-0.301253,-0.00278597,1.15689,1.35757,1.74734,0.503796,-0.945935,0.441983,0.755394,-0.0844482,-0.361855,-0.298532,-0.0796714,-0.328731,1.00774,-0.895443,0.300805,-1.1351,-0.145623,-0.124138,0.157533,0.00956042,0.6242,0.903906,0.733477,0.557607,0.439301,-0.348557,0.807641,-0.248913,0.419423,0.494986,2.11073,0.803941,1.82323,-0.725723,-0.57929,0.778183,0.13788,0.117486,0.412303,-0.922693,-0.563571,-1.22065,0.21749,0.635529,0.0175256,-0.949102,-0.362226,0.787733,1.06913,0.640818,0.372617,-1.47542,0.52981,0.399517,0.0640208,-0.289683,-0.574838,0.278099,-0.0537952,0.413288,0.137261,2.24276,2.10024,2.04395,-0.809303,-0.30419,-0.896971,0.871116,0.818162,0.814374,-0.817297,-0.926069,-0.967031,0.156593,-0.840902,0.474275,0.189193,-0.61396,0.521925,0.18761,-1.09733,-0.789031,0.894138,0.319625,-0.130675,0.15631,0.64905,0.0263591,2.07425,1.53557,1.83027,0.184323,0.503515,0.595568,-0.154676,-0.311488,-0.505242,0.0861103,0.108468,0.572157,0.0299111,0.572175,0.56824,0.519276,-1.18755,0.0523708,-0.13124,-0.0512975,-0.802477,0.186483,-0.428657,-1.0301,-0.849979,-0.616248,0.366176,-0.769791,1 +-1.6437,0.0695574,0.842006,0.133702,-0.163793,-0.0352022,-1.40175,0.517736,-1.34915,0.387452,-0.208019,-0.336524,0.371611,0.224448,0.00845638,0.0484154,-1.4663,0.81748,0.155493,0.511039,-0.793722,-1.36438,-0.999532,0.852792,1.48526,-1.16711,-1.70455,-0.961967,0.0583475,1.13982,-0.363541,0.178813,-0.544262,1.55485,0.308868,0.734793,-0.453505,-1.48529,0.762898,-1.55963,0.491829,-0.668617,0.264137,0.0295663,-0.204434,-0.123599,-0.856677,-0.5915,0.600526,0.554788,-0.466622,-1.38044,-1.31136,1.84411,1.32042,0.153764,-1.54274,-0.751468,-0.40698,1.05243,0.091473,-0.247464,-2.86704,1.02946,0.264044,0.499993,-0.145623,-0.020774,0.00366355,-0.183405,0.649928,0.766008,0.146191,0.0202188,0.229115,0.0693602,-1.35469,0.548397,-0.244165,-0.035566,-1.27698,-1.37294,-0.556842,0.392186,0.941066,-1.37319,-0.467711,-0.754954,0.328747,0.814179,-0.586837,-0.725369,0.336362,0.237225,-0.933239,0.360442,-0.0762051,-1.37564,1.05371,-1.49866,0.339779,-1.11577,0.159037,-0.147551,-0.122098,0.969634,-0.214614,-0.293056,0.673368,-0.109917,0.342634,-1.06396,-1.36989,-1.32378,1.28522,1.83714,1.36136,-1.45405,-1.52331,-1.62655,1.02957,1.05556,0.563546,-0.921468,-0.0203626,-2.01769,1.10944,1.31289,0.81481,0.259878,-0.0557019,0.105668,0.0116354,0.107876,0.631129,0.316387,-1.54871,-0.0125662,-0.972497,0.250658,-0.197235,-1.49573,-1.43322,-1.39071,-0.154676,-0.327558,-0.505242,-0.0923592,-0.201667,-1.63543,0.086919,0.572175,0.628324,0.351567,-0.372264,-0.0643158,-0.258181,1.71276,1.08595,-0.0727097,-1.09291,-1.96374,0.708323,0.382549,-0.0303125,1.44468,1 +0.567721,0.25073,0.769723,0.173429,-0.163793,-0.795861,0.775408,-0.234377,1.40206,-0.523299,0.628179,0.483209,0.326345,-0.0639116,-0.0308782,-0.061177,0.892807,-0.00822363,0.388242,0.482134,2.3667,1.09183,2.04724,-0.766357,-0.849887,0.834708,0.320103,-0.178837,0.14444,-0.868225,-0.363541,-0.917864,0.0636927,-0.720414,0.17069,-1.3445,-0.514658,0.489838,0.818418,0.159223,0.562493,-0.64276,-0.062675,0.367061,0.361472,0.719604,0.0074178,1.95198,-0.0993619,-0.153482,1.40171,1.41255,1.4181,0.262299,-0.968712,0.0256665,0.683577,-0.361324,-0.361855,-0.843274,-0.109873,-0.247464,0.935982,-0.955596,0.313059,-1.1351,-0.145623,-0.0724558,0.0754692,-0.119083,0.675656,0.934551,0.558541,0.0690722,-0.0090963,-0.264974,0.719742,0.231818,0.514221,0.422638,2.36252,0.867345,1.81064,-0.818028,-0.832682,0.82557,-0.114449,-0.420518,0.395592,-0.985283,-0.493772,-1.15605,0.205603,0.356716,-0.289173,-0.767781,-0.321366,0.709065,1.05371,0.631181,0.460183,-1.85623,0.28689,0.434436,0.0764288,-0.00290757,-0.230988,0.424209,-0.0797654,0.520612,0.137261,2.26525,2.14107,1.90883,-0.380182,0.48148,-0.847155,0.795807,0.758992,0.317736,-0.856384,-0.948846,-0.995375,0.211878,-0.902442,0.67711,-0.577676,-0.815514,-0.0638452,0.228906,-1.26778,-0.720208,1.68535,0.121111,-0.244946,0.268364,0.832197,0.195036,1.65878,0.801336,1.59329,0.145552,0.585493,0.574095,-0.154676,-0.311488,-0.505242,-0.0626143,-0.0803097,0.270066,0.0156592,0.586667,0.56824,0.589155,-1.17481,0.126626,-0.226446,-0.0847922,-0.83532,0.186483,-0.371394,-1.19247,-0.786805,-0.678673,0.228267,-0.843607,1 +0.733577,0.114851,0.842006,0.12046,-0.163793,0.768923,-1.35483,0.860805,-1.318,1.43619,0.661627,0.00101302,1.15623,0.272508,0.72959,-0.233394,-1.54407,0.695154,-0.248757,0.207531,-0.228443,-1.36438,-1.26679,1.39819,1.29333,-1.21184,-1.61794,-0.867991,0.282188,1.28385,-0.363541,-0.779449,-0.128293,1.33901,0.32143,-1.41789,-0.540866,-1.49755,0.735139,-1.51016,0.515384,-0.91426,1.07339,-0.105432,0.0973825,1.45038,-0.960965,-0.324504,0.425554,0.750692,0.0101239,-1.36945,-1.39633,-0.0757978,0.386547,0.2018,-1.4799,-0.688541,0.435357,1.18317,0.0512037,-0.437088,0.0390432,1.18736,0.276298,-1.58929,-0.145623,-0.020774,-0.0168523,-0.167324,0.675656,0.766008,1.04586,0.31334,0.523376,-0.515724,-1.41622,0.208368,-0.279715,-0.144088,-0.830626,-1.34123,-0.519063,0.0434805,1.14378,-1.34476,-0.404628,0.335596,0.261902,1.33055,-0.575204,0.13599,0.324475,2.26858,-1.63864,-0.32455,0.0770205,-1.41497,1.05371,-1.45047,0.372617,-1.77161,0.453098,-0.0311534,0.163284,0.296336,-0.656707,-0.55871,0.790234,-0.0696705,-0.0407295,-0.827767,-1.22701,-1.37575,0.876531,0.620127,1.00435,-1.33167,-1.43878,-1.55258,1.4693,1.19222,1.37607,0.198057,-0.728078,1.28561,1.44175,1.11134,2.02819,0.280526,-1.45716,-0.697267,0.361594,0.438734,0.618433,0.284372,-1.60976,-0.0644667,-1.33026,-0.192943,-0.658032,-1.48281,-1.41272,-1.40145,-0.154676,-0.327558,-0.0754024,-0.0626143,-0.161214,-1.57734,0.086919,0.586667,0.628324,0.379518,-1.25124,-0.0855315,-0.289916,2.43847,0.675421,-0.0727097,-0.291225,-1.45633,-0.00765348,-1.11565,-0.581949,-1.15732,1 +-0.8697,0.0808807,0.842006,0.252882,-0.163793,0.975387,-1.35483,0.768441,-1.29724,1.43619,0.617029,-0.0833713,0.779011,0.260493,0.742702,3.27356,-1.49222,0.832771,-0.187507,0.3087,-0.228443,-1.36438,-1.30955,1.13401,1.12273,-1.31249,-1.62876,-0.914979,0.247751,1.24996,-0.363541,-0.0021921,-0.336278,1.40196,0.220937,0.367859,-0.540866,-1.49755,0.735139,-1.51016,0.503606,-0.591046,0.96445,-0.0716822,-0.00322319,1.65275,-0.91627,-0.169928,0.465932,0.49451,-0.0285311,-1.36945,-1.41757,-0.281071,0.227105,-0.0704064,-1.4799,-0.713712,0.54065,1.3139,0.343156,-0.36485,-1.61132,1.33023,0.0802404,0.545412,-0.104166,-0.00354679,-0.0271103,-0.167324,0.662792,0.750686,0.833441,0.264486,0.593438,-0.0142232,-1.39864,0.290444,-0.327114,-0.180262,-0.784846,-1.34123,-0.582028,0.0229684,1.04242,-1.37319,-0.429861,-0.24603,0.261902,1.36967,-0.586837,-0.962243,0.443346,2.2553,-0.227833,-0.697267,0.271106,-1.4248,1.05371,-1.46011,0.350725,-0.98883,0.632092,0.23656,0.212916,0.5083,-0.54209,-0.279773,0.595458,-0.150164,-0.0681126,-0.884004,-1.22701,-1.38614,0.764142,0.604722,1.06247,-1.41639,-1.43878,-1.59485,1.33249,1.06694,1.36663,-0.741791,-0.820388,-1.95974,1.46731,1.14359,1.86083,0.0843704,0.304132,-0.697267,0.422456,0.425499,0.656523,0.316387,-1.59958,-0.0255413,-1.38796,-0.284722,-0.710694,-1.48281,-1.41272,-1.41218,-0.154676,-0.311488,-0.433602,-0.0774868,-0.174698,-1.57734,0.115423,0.470734,0.643345,0.351567,-0.334047,-0.0855315,0.12264,2.66177,1.18447,-0.0879564,-1.11582,-1.57811,0.223986,0.195274,0.297222,1.03869,1 +0.567721,-0.734397,-0.675938,0.173429,-0.163793,-0.828461,0.747255,-0.168402,1.40206,-0.0817229,0.583581,2.11062,0.643211,1.11356,0.441137,-0.24905,0.840958,0.312883,1.77249,-0.0526191,1.73718,1.81155,2.13276,-0.843053,-0.881875,0.912992,0.926417,0.416342,0.127221,-0.783497,-0.363541,-0.502617,0.0316951,-0.522565,0.120444,0.343397,-0.53213,0.453034,-0.73613,0.864075,-0.674131,0.650094,0.388637,0.254563,1.98374,0.607177,0.022316,0.673216,0.748579,-0.304177,1.90422,1.8414,2.09781,0.370973,-0.957323,0.457995,0.791302,-0.18513,-0.40698,-0.538219,-0.0595368,-0.9879,0.828349,-0.910481,0.264044,0.0912201,-0.145623,-0.193047,0.875589,0.347249,-0.675061,-0.888777,0.683495,2.011,0.243127,-0.264974,0.710952,-0.119936,2.01914,0.482928,2.01917,1.2055,1.74767,-0.694955,-0.741461,0.86348,0.289278,-0.46414,0.378881,-0.953988,-0.621737,-0.29469,0.205603,0.582422,-0.350512,0.843966,-0.382656,0.659898,-0.951811,0.77574,-0.765745,0.534416,0.427528,0.411156,0.845722,-0.31462,-0.230988,0.264816,-0.0927504,1.96949,0.835529,2.01781,2.18189,2.27262,-0.921692,-0.412027,-0.905274,0.428676,0.691368,0.877775,-0.856384,-0.948846,-0.995375,0.170414,-0.779361,0.590181,-0.0664298,-0.678457,0.340615,0.166962,-1.30565,-0.697267,1.13759,2.02685,1.06282,-0.724112,0.699924,-0.349919,2.18965,1.16845,1.64595,0.662492,0.646976,0.563358,-0.114399,-0.279346,-0.648521,0.294325,0.243309,0.920723,-0.0270967,0.543192,0.538199,-0.990106,0.188246,-1.15693,-0.115373,0.0826812,-0.810688,0.857334,1.31215,1.12135,-0.828921,-0.553823,0.211029,-0.825153,1 +0.678292,-0.0436756,0.78418,-1.11107,-0.163793,1.00799,-1.3736,0.781636,-1.51526,2.95411,-0.263765,-0.348579,0.0849225,0.428702,1.85718,-0.515203,-1.57864,0.312883,-0.175257,2.51998,-1.20483,-1.39865,-1.3737,1.40671,1.27201,-1.12237,-1.66125,-0.852329,-0.475425,1.21607,0.000675141,1.57362,-1.80817,0.790432,-0.947294,-0.0479995,-0.383617,-1.48529,0.749019,-1.53489,0.39761,0.675951,1.74257,0.198314,0.323745,-0.415909,-0.931168,-1.50491,0.479391,2.77001,-0.621242,-1.44642,-1.36446,-0.450119,0.762375,0.329898,-1.49785,-0.776638,0.510566,2.47965,-0.935393,1.33274,-1.6472,1.31519,-0.912301,0.182058,-0.145623,0.0136805,0.0446954,-0.199485,0.585608,0.674075,-0.378617,0.215633,1.92462,-0.599308,-1.52169,0.44287,-0.433762,1.41139,-1.55166,-1.37294,-0.934632,0.648588,2.654,-1.34476,-0.581259,0.20473,-1.27553,1.25231,1.76305,1.85871,-1.23274,0.0380732,-0.166493,-0.848368,0.577557,-1.47397,1.02285,-1.48902,0.230321,1.3172,1.10515,0.120163,0.572747,0.458426,-0.722202,-1.55491,2.47829,0.802338,1.98562,-1.49136,-1.50258,-1.42772,2.61345,0.820396,1.22022,-1.32226,-1.44723,-1.59485,1.39112,0.793616,1.16822,-1.15643,1.75405,1.19868,2.06802,1.04684,0.661394,-0.886084,0.531396,0.507136,-0.429616,0.0814076,0.580342,0.36441,-1.58941,0.10421,-1.18023,0.0365061,-0.644866,-1.48281,-1.45371,-1.45513,-0.114399,-0.295417,0.211157,-0.151849,-0.296055,-1.61219,-1.06749,-1.18131,-1.21925,0.449397,1.29653,0.65702,-0.416856,-0.587213,1.41437,0.0797565,-0.921122,0.350074,0.28716,1.2565,0.624756,1.18632,1 +0.567721,-0.824983,-0.328979,0.160187,-0.163793,-0.795861,0.531416,0.359397,0.561125,-0.440503,0.628179,1.89363,0.431967,0.380642,0.310021,-0.155113,0.754544,0.00706718,2.17674,0.294248,0.208363,0.520618,0.785768,-0.808966,-0.871212,1.09192,0.828974,-0.194499,0.127221,-0.834334,-0.363541,-0.566502,0.0156963,-0.675448,0.145567,0.343397,-0.505922,0.808802,-0.76389,1.19795,-0.72124,0.624237,0.09295,0.322062,1.66935,0.685876,0.022316,0.279749,1.89263,-0.334316,1.4919,0.466893,0.802114,0.358898,-0.968712,2.12326,0.782325,-0.562689,-0.376897,-0.756115,-0.099806,-0.99693,0.828349,-0.955596,0.288552,0.0912201,-0.145623,0.719998,0.926879,0.910064,-0.50783,-0.735557,0.608523,1.44918,0.0749782,-0.432141,0.737321,0.102841,2.06654,0.53116,0.142197,0.582026,1.49581,-0.766748,-0.86309,0.399087,-0.0261341,2.61848,0.378881,-0.969635,-0.621737,-0.337758,0.193716,0.4231,-0.289173,0.864113,-0.331581,0.453394,-0.735832,0.939573,-0.875203,0.492104,0.350816,0.434436,0.473483,-0.177466,0.735068,0.769558,-0.0667803,1.96949,1.19151,0.544409,0.538682,0.848615,-0.727566,0.111753,-0.888668,0.937011,0.505402,0.43397,-0.856384,-0.948846,-0.985927,0.101308,-0.820388,0.532228,-0.411521,-0.767141,0.0756239,0.197934,-1.2299,-0.616974,0.118144,1.16662,-0.0544946,-0.435974,0.282757,-0.894874,0.954798,1.32142,1.60645,1.2182,0.944147,0.702935,-0.114399,-0.279346,-0.290322,0.576901,0.243309,1.04853,-0.0128447,0.543192,0.538199,-1.04601,0.150029,-1.17814,-0.178843,-0.0512975,-0.827109,0.857334,1.3236,1.10105,-0.828921,-0.553823,0.211029,-0.788245,1 +0.678292,0.0242642,0.798636,-0.925677,-0.163793,0.921055,-1.38298,0.742051,-1.29724,3.1473,1.28599,0.242111,1.38257,0.152358,0.388691,1.77058,-1.55271,0.404628,-0.248757,0.193078,0.0670431,-1.38723,-0.903318,1.41523,1.24002,-1.64799,-1.66125,-0.914979,-0.716484,1.31774,0.129222,1.58426,-1.77617,1.06922,-0.947294,-0.0479995,-0.453505,-1.48529,0.735139,-1.52253,0.432942,0.611308,2.33395,0.209564,0.210564,1.76518,-0.901372,-0.310452,-0.00514623,2.75494,0.293594,-1.35845,-1.40695,0.419272,0.887651,-1.83174,-1.5158,-0.764053,0.345107,2.66486,-0.935393,1.36886,-1.57545,1.32271,-1.02258,0.136639,-0.145623,0.0136805,0.0139215,-0.183405,0.611336,0.689397,1.30827,0.374406,0.915724,-0.348557,-1.45138,0.208368,0.0283798,0.145304,-0.555947,-1.37294,-0.0657163,0.874221,2.68441,-1.42058,-0.518177,-0.813116,-1.17526,1.27578,1.92592,1.85871,-1.22086,1.80389,-0.135823,-0.918882,0.352827,-1.4543,1.02285,-1.48902,0.263159,1.25373,0.619307,0.422796,-0.0104268,-0.00290757,-0.820445,-0.983755,0.777249,0.0376536,-0.054421,-0.38912,-1.04329,-1.26141,2.49084,0.804991,1.1787,-1.54818,-1.47259,-1.60542,1.44975,0.805005,1.18711,-1.08732,1.79508,1.25664,2.54093,1.17584,1.63768,-1.08224,0.531396,0.36949,0.422456,0.518139,0.440678,0.348402,-1.57923,0.0652845,-1.51491,-1.21781,-0.407885,-1.46989,-1.45371,-1.44439,-0.154676,-0.295417,-0.0037626,-0.122104,-0.242119,-1.60057,-1.05324,-1.21029,-1.21925,0.463373,1.28379,0.667627,-0.321651,1.65693,1.3569,0.0645099,-1.00129,0.228295,0.245044,1.19407,0.607517,1.14941,1 +-0.0404188,-0.315435,-0.936156,0.173429,-0.163793,-0.806727,0.737871,-0.115622,1.65123,-0.675091,0.472088,1.86952,0.190545,0.428702,0.388691,-0.483891,0.806393,-0.268167,2.16449,0.164173,1.85281,1.78871,2.05793,-0.698182,-0.871212,0.767608,0.699049,0.619956,0.127221,-0.936007,-0.363541,1.30743,-0.57626,-0.918263,0.133005,-0.121386,-0.514658,0.661588,-0.888809,0.505466,-0.615244,1.27066,-0.171613,0.389561,1.64419,0.382323,0.141502,1.34773,1.89263,-0.439803,1.53056,1.94036,1.93851,0.68492,-0.957323,0.153764,0.755394,-0.298398,-0.391939,-0.941327,-0.0796714,1.20632,-0.929651,-0.993192,0.276298,0.272897,-0.145623,-0.29641,-1.03239,-0.39245,-0.880885,-0.643624,0.421091,1.42476,0.0749782,-0.682891,0.605472,0.184917,2.04284,0.434696,2.22518,1.12096,1.74767,-0.715467,-0.934039,0.816093,-0.127066,-0.187868,0.378881,-1.0244,-0.44724,1.14809,0.193716,-0.0283108,0.262884,-0.687193,-0.352011,0.699231,-0.920957,0.689004,-0.316968,1.27488,0.350816,0.457715,0.523115,-0.327088,-0.525717,0.251534,-0.0797654,1.94266,1.17782,2.0628,2.25334,2.23105,-0.67648,0.342832,-0.855458,0.739325,0.775897,0.72984,-0.895471,-0.960235,-1.02372,-0.921468,1.05659,-0.916591,-0.833299,-0.95257,-0.398571,0.177286,0.47458,-0.639915,0.635474,1.14015,-0.0544946,-0.0517895,0.883071,0.13016,1.95884,1.3979,1.79077,0.416946,0.564998,0.584831,-0.114399,-0.279346,-0.0754024,-0.464171,-0.336507,0.618632,-0.0270967,0.543192,0.538199,0.365543,1.37296,1.07073,-0.305783,-0.553718,-0.876372,0.674375,0.235598,0.85749,-0.091886,0.444973,0.555801,0.780336,1 +0.236008,0.21676,0.856463,-0.740285,-0.163793,0.692857,-1.43929,0.596906,-1.318,2.82992,-0.141123,-0.348579,1.05061,0.440717,2.40787,-0.108145,-1.47494,0.848062,-0.101757,1.94186,-0.562471,-1.39865,-1.54474,1.15106,1.31466,-1.56971,-1.59628,-1.02462,-1.07807,1.24996,-0.363541,-0.949806,-0.176289,1.25807,-1.34927,1.56651,-0.418561,-1.49755,0.637979,-1.47307,0.562493,-0.38419,1.8982,0.344562,0.348897,-0.247269,-0.886474,-0.338557,0.465932,2.78508,-0.363542,-1.39144,-1.50253,-0.631242,1.09265,-0.790954,-1.56069,-0.512348,-0.181354,2.34891,-0.895124,-0.409998,0.541329,1.32271,-1.15737,0.908766,-0.145623,0.0309077,0.608883,-0.0869221,0.701384,0.735363,0.496064,0.105712,2.54116,0.403694,-1.3459,0.44287,-0.433762,0.133246,-1.09386,-1.40464,-0.909446,0.956269,2.62359,-1.48692,-0.227998,-0.987604,-0.907881,1.20537,-0.517038,-0.510029,-1.07821,0.330163,-1.23994,1.57933,0.138311,-1.41497,1.00743,-1.51793,0.427346,0.0478237,2.16632,1.42381,1.4289,0.820012,-0.263735,-0.186795,2.5562,0.829169,1.15043,-1.28891,-1.34948,-1.4693,2.66454,1.09769,1.1621,-1.58584,-1.56558,-1.60542,1.35203,0.713896,0.988706,0.709445,-0.840902,0.879945,1.69737,1.24034,0.424297,-1.2371,-1.93063,-0.674326,0.209438,0.226985,0.631129,0.268364,-1.56906,-0.168268,-1.58415,-0.65184,-0.974006,-1.45696,-1.47421,-1.44439,-0.114399,-0.295417,-0.791801,0.0266204,-0.0398574,-1.51924,-1.08174,-1.26826,-1.21925,0.365543,-0.983729,-0.0643158,-0.162975,0.149671,1.439,0.15599,1.23198,0.877787,-0.597281,-0.179275,0.090358,-1.32341,1 +0.0148667,-0.428668,-0.748221,0.186671,-0.163793,-0.86106,0.522032,-0.194792,0.571507,-0.150719,0.516686,2.13473,0.552678,1.1496,0.546029,-0.264706,0.460736,1.32208,1.78474,-0.0381663,1.00489,0.474921,0.379532,-0.732269,-0.860549,0.756425,0.233487,0.933208,0.110003,-0.859752,-0.363541,1.31808,-0.544262,-0.783366,0.133005,-0.170311,-0.540866,1.17684,-0.833289,0.233418,-0.956788,1.25774,0.310825,0.310812,2.00889,0.359837,-0.514019,1.4742,0.708201,-0.228829,1.92999,0.631833,0.462259,0.733219,-0.945935,0.169776,0.504036,-0.348739,-0.422022,-0.679851,-0.0394021,1.23341,-0.786141,-0.970635,0.251791,0.272897,-0.145623,0.564953,-1.03239,-0.215565,-1.00952,-0.551692,0.608523,2.03542,0.369239,-0.432141,0.464833,0.0911162,2.03099,0.458812,0.954789,0.412948,1.49581,-0.664187,-0.782004,0.664454,-0.581259,0.582787,0.395592,-1.00875,-0.423973,1.14809,0.21749,0.277056,0.293554,-0.787927,-0.413301,0.827067,-0.674124,0.380611,-0.612504,1.25373,0.52981,0.504274,0.882945,0.782607,2.35608,2.16424,0.0111301,1.9829,0.794455,0.746862,0.906108,0.599153,-0.839955,0.00391605,-0.86376,0.965252,0.699821,0.465671,-0.875928,-0.960235,-1.01427,-0.866183,1.08737,-0.858639,-0.309272,-0.831638,0.061677,0.156638,0.455642,-0.708738,1.36582,2.06655,1.10091,0.57251,1.02552,0.0912347,0.181572,0.112989,1.17199,0.791727,0.513762,0.810301,-0.114399,-0.279346,-0.361962,-0.969834,-0.956776,0.0609259,-0.0270967,0.5287,0.538199,0.421446,1.3857,1.10255,-0.226446,-0.475564,-0.851741,0.659128,0.189787,0.816897,-0.15506,0.382549,0.538563,0.724975,1 +0.236008,0.171467,0.842006,-0.912434,-0.163793,0.877588,-1.42052,0.148277,-1.48411,2.59533,0.349446,-0.17981,-0.0357885,0.284523,0.0215679,0.518097,-1.51815,-0.115259,0.326992,1.0747,-0.883652,-1.38723,-0.539844,1.14253,1.31466,-1.17829,-1.61794,-0.97763,-0.923105,1.15676,-0.363541,-0.992395,-0.192288,1.12318,-1.3367,1.59097,-0.348672,-1.48529,0.665739,-1.48543,0.527161,-0.448832,0.746575,0.42331,-0.103829,0.49475,-0.91627,-1.94053,0.546688,2.64946,-0.389312,-1.39144,-1.23702,1.97693,1.08126,-0.0864186,-1.55171,-0.61303,0.164606,2.04386,-0.905191,-0.446117,0.577207,1.35278,-1.02258,0.817927,-0.145623,0.0309077,0.660172,-0.103003,0.675656,0.735363,-0.0287448,-0.175195,0.0189285,-0.0142232,-1.4338,0.700824,0.0757789,0.458812,-1.52877,-1.39407,-0.0909023,0.812684,2.52224,-1.38267,-0.29108,-1.16209,-1.05828,1.22884,-0.551938,-0.574631,-1.0901,-0.0946948,-1.1786,1.61962,0.465192,-1.41497,1.02285,-1.50829,0.394508,-0.0791135,-0.198951,0.120163,0.0888367,0.91976,-0.509343,-1.68774,0.647398,-0.00259291,0.150952,-0.614067,-1.26783,-1.20944,2.72584,2.08363,1.24513,-1.51053,-1.54022,-1.59485,1.27386,0.748062,1.04539,0.681802,-0.892185,0.879945,1.08387,1.15165,0.591659,-1.22678,-1.89275,-0.628444,-1.20561,-0.43473,0.364498,0.284372,-1.57923,-0.103392,-0.660899,0.373031,0.158236,-1.46989,-1.46396,-1.43366,-0.154676,-0.295417,-0.290322,-0.00312447,-0.0803097,-1.54248,-1.08174,-1.23928,-1.21925,0.351567,-1.09838,-0.0961394,-0.258181,0.629761,1.52111,0.140743,1.20907,0.7966,-0.61834,-0.241699,0.090358,-1.2865,1 +0.733577,-0.77969,-0.618111,0.186671,-0.163793,-0.871927,0.587722,-0.155207,0.540361,-0.0541244,0.572432,2.07446,0.643211,0.729077,0.414914,-0.358642,0.832317,0.236429,1.95624,-0.0670718,0.709405,0.49777,0.796459,-0.808966,-0.871212,0.208442,0.91559,-0.335463,0.110003,-0.800443,-0.363541,-0.939159,-0.192288,-0.621489,0.133005,-1.12434,-0.53213,0.453034,-0.930449,1.0001,-0.733018,-0.991831,0.419762,0.220813,1.85798,0.517235,0.0372142,0.153277,1.24658,-0.243899,1.86557,0.554861,0.695909,0.503796,-0.968712,0.457995,0.836187,-0.348739,-0.422022,-0.560008,-0.0394021,-1.01499,0.541329,-0.940558,0.264044,0.272897,-0.145623,0.048135,-1.03239,0.508053,-0.662198,-0.996032,0.683495,1.8278,0.327202,-0.348557,0.746111,-0.155112,2.07839,0.494986,0.256646,0.539757,1.62174,-0.694955,-0.731325,0.389609,0.150497,-0.68225,0.378881,-0.969635,-0.621737,-1.24218,0.21749,0.502761,0.385563,-0.838294,-0.413301,0.561563,-0.936384,0.872112,-0.83142,-1.15808,0.491454,0.457715,0.659602,-0.563989,-0.0181282,0.410926,-0.0537952,1.94266,0.890296,0.758109,0.753014,0.879797,-0.891041,-0.30419,-0.896971,0.278058,0.682915,0.750974,-0.856384,-0.960235,-1.00482,-1.0044,-0.820388,-0.800686,-0.104773,-0.718768,0.284827,0.166962,-0.131456,-0.800502,0.452887,1.80187,0.453375,-0.852173,0.547302,-0.661322,0.758607,0.495404,1.48796,0.869268,0.790438,0.552622,-0.114399,-0.279346,-0.576881,0.353815,0.202856,0.990437,0.0299111,0.543192,0.553219,-1.18577,-0.779907,-1.23118,-0.147108,-0.151782,-0.818898,-1.39917,-0.772237,-1.05039,-0.639398,-0.616248,0.366176,-0.0131814,1 +0.733577,-0.791014,-0.79159,0.160187,-0.163793,-0.806727,0.625259,1.48097,0.332723,-0.619894,0.438641,-0.0954262,-0.458277,0.248478,-0.0439897,0.158008,0.858241,-0.13055,0.608742,0.727831,0.144127,0.463497,0.753697,-0.826009,-0.860549,0.499209,0.850628,0.0874276,0.127221,-0.927534,-0.363541,-0.992395,-0.224286,-0.999201,0.145567,-1.05095,-0.514658,0.514373,-0.930449,0.802246,-0.803682,-1.03062,-0.809675,0.45706,0.0219282,0.528478,0.141502,0.617007,0.627444,0.268466,-0.208921,0.466893,0.844596,-0.160322,-0.980101,1.65891,0.82721,-0.310983,-0.391939,-1.13743,-0.0897387,-1.01499,0.505451,-0.970635,0.288552,0.318316,-0.145623,-0.330865,-1.03239,0.0899625,-0.777973,-0.996032,0.0962097,-0.162982,-0.163233,-0.599308,0.640632,0.607022,0.383874,0.374406,0.336761,0.539757,-0.0657163,-0.777004,-0.731325,0.53177,0.0243318,2.1968,0.378881,-0.985283,-0.621737,-1.26372,0.205603,-0.386784,0.416233,-0.747634,-0.341796,0.630397,-0.951811,0.814289,-0.864257,-1.17924,-0.0966685,0.27148,0.163284,0.645453,0.161984,0.0257282,0.153966,0.0913157,0.150952,0.240731,0.477444,0.859009,-0.196273,0.373643,-0.872063,0.598121,0.758992,0.793241,-0.866156,-0.960235,-1.00482,-1.04586,-0.861415,-0.945568,-1.31898,-1.00094,-1.05408,0.197934,-0.0746406,-0.76609,0.209438,-0.447964,0.174047,-0.564035,0.771148,-0.233143,0.98942,0.571887,0.197733,0.597875,0.698213,0.541885,-0.114399,-0.295417,-0.147042,0.011748,-0.0263733,0.85101,0.0299111,0.557684,0.538199,-1.18577,-0.830863,-1.23118,-0.242313,-0.497893,-0.851741,-1.38392,-0.714974,-1.05039,-0.61834,-0.553823,0.383415,0.0237264,1 +-0.0957042,0.103527,0.82755,-0.978646,-0.163793,0.888455,-1.39237,0.689271,-1.27647,1.13261,1.33058,0.230056,1.2015,0.188403,0.414914,0.283256,-1.53543,0.496373,-0.285507,0.0340976,0.0798904,-1.3758,-0.95677,1.38115,0.962787,-1.67036,-1.65042,-0.946305,-0.819794,1.15676,-0.363541,-0.960453,-0.368275,1.11418,-1.07291,-1.39342,-0.453505,-1.50982,0.721259,-1.53489,0.503606,-0.64276,0.886637,0.232063,0.197988,1.84387,-0.91627,-0.24019,0.0217725,0.615066,0.280709,-1.34745,-1.42819,0.334748,0.876262,-1.86377,-1.52478,-0.701127,0.28494,1.34659,-0.935393,-0.464177,0.613084,1.33023,-1.05934,-0.544649,-0.145623,-0.020774,-0.0373682,-0.167324,0.649928,0.735363,1.37074,0.38662,0.817637,-0.0978067,-1.41622,0.255268,-0.00716962,0.157362,-0.533057,-1.37294,-0.103495,0.802428,1.35663,-1.43953,-0.404628,-0.90036,-1.22539,1.27578,-0.575204,-1.26372,-1.17331,1.87027,0.661592,-0.908808,0.342612,-1.4248,1.03828,-1.48902,0.350725,-1.00999,0.657663,0.446076,0.026797,0.0968403,-0.771324,-0.837646,0.764264,0.0108226,0.000345165,-0.400368,-1.04329,-1.2822,0.886748,0.897422,1.20361,-1.56701,-1.4895,-1.60542,1.11751,0.770839,1.15877,-1.43286,-0.871672,-1.17738,1.12222,1.14359,1.35874,-1.22678,0.0768686,-1.00697,0.483318,0.544608,0.491465,0.284372,-1.58941,-0.0514916,-1.57261,-1.2943,-0.473713,-1.49573,-1.45371,-1.43366,-0.154676,-0.279346,-0.290322,-0.0774868,-0.161214,-1.58896,-0.654183,-1.22478,-1.21925,0.337591,-0.881818,-0.106747,-0.274048,1.72392,1.38153,-0.103203,-0.818048,-0.969207,-0.828921,-0.11685,0.659233,-0.123905,1 +0.733577,-0.836307,-0.96507,0.160187,-0.163793,-0.817594,0.615875,-0.181597,0.498834,-0.619894,0.538984,2.01418,0.265989,0.608927,0.362468,-0.374298,0.72862,-0.222295,2.05424,0.265342,0.812183,0.486345,0.636102,-0.740791,-0.860549,0.543942,0.547471,0.792245,0.110003,-0.902116,-0.363541,-0.971101,-0.208287,-0.855311,0.145567,-1.09988,-0.514658,0.870141,-0.930449,0.270515,-0.933233,-1.01769,-0.109363,0.389561,1.76995,0.517235,-0.230953,0.378116,1.51576,-0.394595,1.76249,0.609841,0.536602,0.552096,-0.968712,0.12174,0.683577,-0.336154,-0.391939,-0.897748,-0.0796714,-1.01499,0.541329,-0.978154,0.288552,0.272897,-0.145623,-0.141365,-1.03239,-0.601495,-0.945205,-0.996032,0.483568,1.69345,0.0609658,-0.515724,0.508783,0.208368,2.07839,0.482928,0.79456,0.48692,1.62174,-0.766748,-0.913768,0.645499,-0.467711,0.0302421,0.378881,-1.00875,-0.621737,-1.24218,0.205603,0.117734,0.416233,-0.787927,-0.352011,0.758232,-0.890103,0.573357,-0.940878,-1.17924,0.350816,0.469355,0.597563,-0.189935,-0.673081,0.371078,-0.0797654,1.94266,0.972445,0.814346,0.926521,0.755067,-0.666263,0.312022,-0.86376,0.861702,0.767445,0.655873,-0.875928,-0.960235,-1.01427,-1.03204,-0.840902,-0.858639,-0.73105,-0.896135,-0.259102,0.197934,-0.112518,-0.777561,0.422456,1.60335,0.262924,0.108287,0.964469,0.0782596,0.273897,0.587183,1.58012,0.404022,0.503515,0.617041,-0.114399,-0.279346,-0.290322,-0.776492,-0.646642,0.409492,0.0299111,0.557684,0.538199,-1.18577,-0.818124,-1.23118,-0.274048,-0.408574,-0.859951,-1.39917,-0.726426,-1.05039,-0.61834,-0.616248,0.366176,0.00527254,1 +0.733577,-0.77969,-0.863873,0.186671,-0.163793,-0.871927,0.578337,0.544126,0.675326,0.428849,0.13761,0.519374,0.688478,0.0922831,0.270687,0.0797275,0.823675,1.79609,-0.163007,-0.0959774,0.413918,0.452073,0.347461,-0.817488,-0.860549,0.409742,0.80732,0.713932,0.110003,-0.817388,-0.363541,-0.928511,-0.192288,-0.855311,0.133005,-1.1488,-0.540866,0.624784,-0.944329,0.629124,-0.815459,-0.991831,0.699887,0.108315,0.348897,-0.0336573,-0.052175,0.884002,-0.193578,0.47944,0.216284,0.620837,0.324192,0.503796,-0.968712,0.249837,0.782325,-0.235472,-0.422022,-0.309427,-0.0394021,-1.01499,0.577207,-0.955596,0.264044,0.272897,-0.145623,-0.365319,-1.03239,-0.167324,-0.816565,-0.996032,0.496064,0.520967,0.71955,-0.348557,0.631842,0.8298,0.336474,0.29,0.977679,0.44465,-0.0279374,-0.694955,-0.457661,0.493861,0.0117153,0.233811,0.395592,-0.993107,-0.621737,-1.22065,0.21749,0.0247964,0.385563,-0.848368,-0.413301,0.718898,-0.936384,0.717916,-0.842366,-1.15808,0.632092,0.341318,0.026797,1.82996,1.14441,1.23445,0.335757,0.131562,-0.0133464,0.488173,0.916315,0.56797,-0.594743,-1.25932,-0.872063,0.67343,0.767445,0.835508,-0.856384,-0.960235,-1.01427,-0.990574,-0.810132,-0.771709,0.0230383,-0.823576,0.131411,0.166962,-0.150395,-0.800502,0.681121,0.531374,0.846974,-0.355935,0.872896,-0.155292,0.331601,0.296548,-0.157738,0.46864,0.575246,0.563358,-0.114399,-0.295417,-0.505242,-0.166722,-0.120762,0.74644,0.0299111,0.543192,0.553219,-1.18577,-0.779907,-1.22057,-0.178843,-0.8775,-0.827109,-1.39917,-0.772237,-1.05039,-0.639398,-0.616248,0.366176,-0.0316353,1 +-0.15099,0.0582341,0.813093,-0.938919,-0.163793,0.812389,-1.39237,0.267032,-1.51526,0.677236,0.2937,-0.264195,0.0094781,0.308553,0.0346794,0.126696,-1.54407,-0.176423,0.314742,0.771189,-1.03782,-1.3758,-0.561225,1.22775,0.994775,-1.10001,-1.67207,-0.914979,-0.991979,1.13982,-0.363541,-1.00304,-0.43227,1.14116,-1.04779,-1.32004,-0.401089,-1.49755,0.735139,-1.53489,0.480052,-0.655689,0.59095,0.412061,-0.0912531,0.393566,-0.931168,-1.98269,0.600526,0.434231,-0.505277,-1.40243,-1.21578,2.09768,1.0357,0.073703,-1.52478,-0.726297,0.0743555,0.747372,-0.935393,-0.500296,0.541329,1.33023,-1.05934,-0.49923,-0.145623,-0.020774,-0.0168523,-0.183405,0.637064,0.735363,-0.0537357,-0.162982,-0.121196,-0.348557,-1.46896,0.653923,0.0283798,0.458812,-1.62033,-1.37294,-0.153867,0.82294,0.961338,-1.34476,-0.455094,-1.03123,-1.10842,1.22884,-0.586837,-1.28525,-1.19708,-0.227463,0.661592,-0.838294,0.322181,-1.4248,1.03828,-1.49866,0.317888,-1.03114,-0.224521,0.143443,0.150876,0.782607,-0.607586,-1.794,0.582473,-0.0428395,0.164644,-0.692799,-1.30866,-1.21984,1.39761,1.29796,1.23682,-1.46346,-1.4895,-1.60542,1.03934,0.725284,1.05484,-1.47432,-0.912699,-1.32226,0.879376,1.17584,0.480084,-1.22678,0.152623,-0.995501,-1.31212,-0.474433,0.364498,0.300379,-1.58941,-0.0125662,-0.637817,0.434217,0.145071,-1.49573,-1.45371,-1.43366,-0.114399,-0.295417,-0.0754024,-0.0923592,-0.201667,-1.61219,-0.654183,-1.23928,-1.21925,0.323615,-0.920035,-0.127963,-0.337518,0.506947,1.45542,-0.103203,-0.78369,-0.94891,-0.786805,-0.054425,0.659233,-0.0685431,1 +0.0701521,0.918805,1.57929,-1.70697,-0.094119,-1.82818,-1.33606,0.781636,-1.45297,0.553043,-0.319512,-0.336524,-0.0357885,0.416687,0.0871255,-0.342986,-0.144163,0.572827,-0.114007,0.800095,-0.98643,-1.39865,-1.55543,-0.843053,-0.743259,-1.32367,1.03469,-0.3198,-2.45555,-0.842807,-0.320692,0.210755,-1.56819,-1.21504,-0.846801,2.15361,-0.575811,0.060463,2.17865,0.765148,1.38691,0.960379,0.419762,0.175814,0.0596553,-0.404667,2.09316,-1.13954,0.533229,0.991805,-0.518162,-1.42443,-1.46005,-0.643317,-1.56093,-0.278564,-0.348785,1.53905,-2.67828,-0.363901,-0.925326,0.0685765,-1.50369,-0.910481,-1.45146,1.59005,-0.145623,1.34018,0.752494,1.698,1.52468,2.57401,-0.491076,0.215633,0.691525,-0.18139,-1.21405,0.524946,-0.433762,-0.107914,-1.43721,-1.3835,-1.02278,-1.48467,-0.15359,-1.38267,1.82849,-0.23149,-1.92726,-0.946164,-0.365808,0.329796,-1.20897,-1.68791,-0.442522,1.93189,-1.45524,-1.23797,2.16446,-0.554204,1.2045,-1.00999,0.222963,-0.135911,0.113653,0.682859,-0.361978,-0.784515,0.569488,-0.083086,0.0551113,-1.53635,-1.47196,-1.47969,0.130677,-0.288784,-0.789036,-0.766854,-0.813261,0.983443,-0.758667,-1.41578,-1.15599,-0.562114,0.974541,0.937898,-0.437083,-1.00094,-1.04013,-0.968676,1.0238,1.91801,-0.170951,0.174048,0.66922,1.58099,0.272582,1.89478,-1.48029,-0.376502,-0.921344,0.326481,-1.1258,-1.30482,-0.154676,-0.311488,-0.290322,1.88568,1.87488,0.95558,-1.21001,-1.22478,-1.20423,2.02866,0.0863352,1.0389,-0.305783,-1.00031,-0.810688,2.13805,0.361577,-0.786537,0.75044,-0.491399,-1.30597,-1.5264,0 +-0.15099,-0.8816,-1.2542,1.61683,-0.128956,1.32312,-1.29852,0.84761,-1.32838,0.249459,-0.575946,-0.155701,-0.307388,0.368627,0.152683,-0.483891,-1.49222,0.710444,-0.101757,0.756737,-0.562471,-1.28441,-1.35232,-0.834531,-0.348736,-1.20066,-1.95358,-0.867991,1.86629,-0.470006,-0.299267,-0.704917,0.383669,-1.30497,1.81626,1.17511,1.49464,-1.82879,-0.847169,-2.04189,-1.08634,-1.35383,0.108512,0.0295663,0.0848068,-0.753191,-0.946066,-0.647709,0.573607,0.780831,-0.234691,-1.32546,-1.3326,-0.836515,0.876262,0.2018,-1.45296,-0.864735,1.75903,-0.516429,1.88346,-0.99693,-0.570875,0.247469,1.31785,-0.181295,-0.145623,-2.58763,1.07049,-2.54723,-1.09957,-0.98071,-0.703499,0.288913,0.579425,-0.599308,-1.37227,0.41942,-0.327114,-0.095856,-1.17398,-1.27783,-0.720551,1.0896,-0.29549,-1.31633,-1.83029,-0.158786,1.39826,0.759413,-0.621737,0.265194,1.42998,-2.03311,0.170875,1.60955,1.05766,-1.31663,-0.936384,-1.41192,-1.09412,-0.608018,0.159037,-0.240669,0.0516129,0.558174,-0.591212,-0.731385,0.608443,-0.0965015,0.0551113,-1.18768,-1.31886,-1.37575,-0.104318,-0.412027,-0.830549,-1.36933,-1.42187,-1.62655,-0.27985,1.36305,1.16822,0.8753,0.707866,1.16971,-0.84608,-1.04125,-1.58406,1.82912,1.0238,1.97536,0.148576,0.346094,0.681916,-2.35689,-1.71151,-2.04966,-1.26101,-0.0246802,-0.644866,-1.96098,-1.3205,-1.29408,-0.154676,-0.311488,-0.218682,-2.45708,-2.22428,-2.07695,1.21282,1.38371,1.28925,-1.18577,-1.69711,-1.23118,-0.289916,-1.12313,-0.859951,-1.00275,1.11745,0.329778,0.350335,-0.741098,-0.943961,-1.41568,0 +0.236008,2.14172,1.57929,-1.73345,-0.163793,-1.83905,-1.26099,-0.471886,-1.03769,-0.150719,0.538984,0.290331,0.567767,-0.123986,0.178906,-0.577827,-0.98238,-1.18562,0.351492,0.14972,-0.125665,-0.953106,-0.400868,-0.698182,-0.743259,-1.43551,-0.611023,-0.758353,-2.43833,-0.79197,-0.363541,0.508881,-1.63218,-0.729407,-0.356898,1.98237,-0.575811,1.18911,2.31745,0.480734,1.99933,-0.138547,0.326387,0.277063,0.147685,0.427294,-0.856677,-1.40654,0.196744,-0.19869,0.229169,-0.929604,-1.07771,0.745294,-1.56093,-1.17525,-1.24649,2.25641,-2.67828,-0.636272,-0.935393,0.763865,-1.07316,-0.92552,-1.4147,1.95341,-0.145623,1.89145,1.89113,1.29599,1.87201,1.70065,0.633514,0.105712,0.355227,-0.515724,-1.06462,-0.143387,0.336474,0.53116,-0.876406,-1.07705,0.236515,-1.48467,-0.741461,-1.38267,1.9168,-1.42382,-1.94398,-0.961812,0.785871,0.523601,-1.22086,0.330163,1.30566,1.62969,-1.45524,-0.284118,1.65536,-0.554204,2.04732,-0.608018,0.517025,0.492635,0.0640208,-1.66122,-0.935062,-2.15263,-0.00185501,0.238886,0.0277283,-0.22041,-0.849373,-0.928799,-0.727566,0.250401,-0.789036,-1.5576,-1.43878,-1.17218,-0.77821,-1.42717,-1.16544,-1.32229,0.933514,0.0686059,-0.283709,-0.783265,0.103518,-0.669281,1.83816,2.28507,-0.338323,0.0814076,-0.371913,1.93316,0.771148,1.32387,-0.834009,0.0518027,0.263561,1.01143,-0.33676,-0.198944,-0.154676,-0.311488,-0.0037626,1.36514,1.7805,-0.136595,-0.611427,-1.22478,-1.20423,1.58143,-0.232136,1.09194,-0.369253,-0.408574,-0.827109,1.31473,0.281408,-1.31425,1.36113,-0.491399,-1.97828,-1.15732,0 +-0.15099,-0.8816,-1.2542,1.63007,-0.128956,1.32312,-1.28914,-0.221182,-1.26609,-0.426704,0.505536,0.31444,0.371611,-0.0278667,0.231352,-0.515203,-1.49222,-0.956254,0.326992,-0.0526191,0.144127,-1.22729,-0.101537,-0.544789,-0.625968,-1.29012,-1.94275,-0.852329,1.84907,-0.410697,-0.320692,-0.736859,0.383669,-0.513572,1.81626,1.17511,1.50338,-1.82879,-0.847169,-2.02953,-1.08634,-1.35383,0.061825,0.344562,0.0596553,0.393566,-0.946066,-0.984967,0.115988,-0.454873,0.370904,-1.2155,-1.03523,0.68492,0.876262,-0.935063,-1.44399,-0.864735,1.74399,-0.701641,1.88346,-0.99693,-0.570875,0.277545,1.33011,-0.181295,-0.145623,-2.58763,1.07049,-2.53115,-1.09957,-0.98071,0.521055,0.0568589,0.215102,-0.682891,-1.42501,0.0442156,0.336474,0.53116,-0.498722,-1.25669,0.412817,1.09985,-0.883361,-1.29737,-1.83029,-1.36566,1.38155,0.767237,-0.621737,0.24366,1.42998,0.117734,0.140205,1.60955,1.05766,-1.3068,-0.936384,-1.40228,-1.09412,-0.608018,0.440313,0.492635,0.175692,-1.08767,-0.885941,-1.99324,-0.0408102,0.0779002,0.0140367,0.0607735,-0.66566,-0.876828,-0.93191,-0.134731,-0.813944,-1.51994,-1.42187,-1.62655,-0.533916,1.36305,1.16822,0.8753,0.687352,1.16971,-0.539333,-0.380158,-0.17542,1.82912,1.00486,1.96389,-0.0644424,0.160813,-0.270339,-2.35689,-1.71151,-2.04966,-0.464707,0.235362,0.421548,-1.94805,-1.31025,-1.28335,-0.154676,-0.311488,-0.147042,-2.44221,-2.22428,-2.06533,1.19857,1.3982,1.28925,-1.18577,-1.70984,-1.23118,-0.289916,-0.520223,-0.859951,-1.00275,1.12891,0.329778,0.350335,-0.741098,-0.926722,-1.41568,0 +-0.814415,2.26628,1.56484,-1.12431,-0.094119,0.345127,-1.16714,-3.08449,-1.52564,0.635838,-2.50477,-3.07299,-0.1565,-2.75527,-2.32539,-0.593483,-1.40581,-3.64744,-3.04176,-2.10491,-2.83643,-1.28441,-2.05788,0.699399,1.36797,-1.80456,0.0494268,-0.914979,0.660994,0.97036,-0.363541,-0.364202,-0.112294,1.33002,-0.959856,-1.46681,-0.575811,1.26271,2.13701,1.06193,2.04644,-0.0221904,0.46645,-2.62539,-2.56867,-2.0461,-0.543815,-2.69936,-3.26232,-0.665847,-3.15959,-1.39144,-1.52377,-1.88703,1.41153,-3.36891,-0.294923,2.01729,0.600817,1.35748,-0.935393,0.962519,0.577207,0.525677,-1.2554,-1.1351,-0.18708,2.08095,1.73726,1.698,1.85914,1.93049,-1.76561,-2.95984,-2.16701,-0.0978067,-1.44259,-2.79327,-2.99332,-2.42305,-2.03235,-1.19329,-2.98729,-0.900076,0.920795,-1.44901,1.56354,-1.58377,0.0780792,0.845474,0.867303,-1.24218,-1.13765,0.954172,0.814941,-0.586459,-1.19986,-0.274284,1.65536,0.178229,2.13489,-0.925361,-2.25738,-2.4173,-2.44238,-2.35945,-0.869567,-2.39172,-2.27424,-2.44422,-2.42306,-2.35741,-1.62505,-1.52127,0.835662,1.43661,0.863202,-1.61408,-1.31199,-1.29898,1.07843,1.6136,1.27215,-1.33611,-0.399862,-1.43817,1.6079,1.1194,1.48426,-1.21645,0.247316,-0.98403,-3.56402,-3.33304,-3.17789,1.72506,0.496428,1.63527,-1.965,-3.45112,-3.09367,1.36036,0.226839,0.123156,-0.154676,-0.327558,-0.290322,1.32052,1.40294,0.618632,-0.397648,-1.15233,-1.18921,1.95878,-0.270353,1.43139,-0.289916,1.46713,-0.0635282,0.811594,-0.153793,-0.969207,-0.828921,0.257699,0.866097,-0.160813,0 +-0.0404188,1.03204,1.53592,-1.01837,-0.163793,0.910188,-1.28914,-3.15047,-1.47373,1.22921,-2.44903,-3.03682,-0.488455,-2.59907,-2.27295,-0.468235,-0.887324,-3.58627,-3.09076,-0.269411,-2.79789,-1.41007,-2.07926,1.31297,1.0161,-1.89402,1.11048,-0.241487,-0.905887,1.18218,-0.363541,-0.257728,-0.0482989,1.10519,-1.29902,-0.953104,-0.427297,0.060463,1.81777,0.839343,1.55179,1.01209,0.684325,-2.4454,-2.51836,-2.00113,1.825,-2.60099,-3.36999,1.06715,-3.13382,-1.41343,-1.55563,-2.08023,0.910429,-3.43296,-0.025611,1.5013,0.239815,1.1178,-0.915259,0.60133,0.792472,1.37534,-1.04709,-1.58929,-0.145623,1.32295,0.393466,1.56936,1.61473,2.72723,-2.47785,-2.88656,-0.499531,0.403694,-1.38106,-2.72292,-3.00517,-2.5798,-1.98657,-1.39407,-2.98729,0.710124,1.20459,-1.47744,1.74017,-1.65647,-1.22539,1.29143,-0.400707,-0.940709,-1.05444,-2.28537,-0.68788,-0.133155,0.373257,-1.28713,2.1336,-0.168713,1.37963,-1.5812,-2.01446,-2.31254,-2.35553,-2.28464,-0.787698,-2.33859,-1.97558,-2.44422,-2.49152,-2.34616,-1.61485,-1.53166,1.14218,0.173374,1.25343,-1.53877,-0.534313,1.11024,1.10774,0.748062,1.14932,0.626517,-0.861415,0.793016,0.943281,1.20002,0.0198363,-1.21645,-1.68443,-0.961089,-3.47273,-3.25364,-3.07632,1.75708,0.14031,1.9856,-2.0227,-3.5429,-3.13317,0.429869,-0.961843,-1.29408,-0.154676,-0.343629,-0.720161,1.73695,1.75353,1.02529,-0.953474,-1.22478,-1.17419,2.32215,0.150029,1.42079,-0.178843,-1.02264,1.47184,2.01608,-0.107982,-1.17217,-0.72363,-0.366549,0.228267,-1.15732,0 +-1.20141,2.23231,1.57929,-0.991888,-0.128956,0.844989,-1.22345,-3.0581,-1.5464,1.16021,-2.57167,-3.08504,-0.790233,-2.80333,-2.35162,-0.640451,-1.32804,-3.67802,-3.02951,-0.168241,-2.84928,-1.29583,-2.04719,1.33854,1.0161,-1.78219,-0.25373,-0.867991,-0.974761,1.19912,-0.363541,-0.236434,-0.608257,1.12318,-0.871925,-1.29558,-0.444769,1.28725,2.19253,0.901172,2.05822,-0.138547,0.5287,-2.68164,-2.59382,-2.10232,-0.692797,-2.74152,-3.2354,1.06715,-3.18536,-1.40243,-1.51315,-1.97155,0.955984,-3.33689,-0.573212,2.10539,0.134522,1.05243,-0.935393,0.845132,0.0749208,1.35278,-1.05934,-0.908002,-0.145623,2.0465,1.80906,1.5372,1.89773,1.83855,-2.74026,-2.99648,-0.61163,-0.18139,-1.4338,-2.81672,-3.00517,-2.41099,-2.05524,-1.22499,-2.99988,0.792172,1.18432,-1.43953,1.71494,-1.55469,-1.19197,1.27578,0.681173,-0.940709,-1.18519,-2.4978,0.814941,-0.556239,0.271106,-0.185783,1.65536,0.0143952,2.12394,-0.81958,-2.21902,-2.49878,-2.47961,-2.38439,-0.902315,-2.41828,-1.98857,-2.44422,-2.40937,-2.36865,-1.63526,-1.52127,1.18305,0.419859,1.26173,-1.59525,-1.38806,-1.38351,1.13706,0.736673,1.12098,-1.33611,-0.440889,-1.66998,0.802689,1.20809,-0.300943,-1.20613,0.531396,-0.97256,-3.59445,-3.37274,-3.20329,1.8051,0.6287,1.45362,-1.95346,-3.42052,-3.09367,1.28282,0.124366,0.101682,-0.154676,-0.343629,-0.147042,1.29078,1.56475,0.397874,-0.497411,-1.21029,-1.18921,1.84697,-0.270353,1.32532,-0.337518,-1.13429,1.43079,0.887828,-0.107982,-1.15188,-0.555165,0.507398,0.900574,0.226719,0 +-1.20141,2.23231,1.59375,-0.991888,-0.128956,0.844989,-1.23283,-3.0581,-1.5464,1.16021,-2.57167,-3.08504,-0.790233,-2.80333,-2.35162,-0.640451,-1.31939,-3.67802,-3.02951,-0.168241,-2.84928,-1.29583,-2.04719,1.34706,1.0161,-1.78219,-0.264557,-0.867991,-0.957542,1.19912,-0.363541,-0.236434,-0.624256,1.11418,-0.871925,-1.29558,-0.444769,1.28725,2.19253,0.888807,2.05822,-0.138547,0.5287,-2.68164,-2.59382,-2.10232,-0.692797,-2.74152,-3.2354,1.06715,-3.18536,-1.40243,-1.51315,-1.95948,0.955984,-3.33689,-0.582189,2.10539,0.134522,1.05243,-0.935393,0.845132,0.0749208,1.35278,-1.05934,-0.908002,-0.18708,2.0465,1.80906,1.5372,1.89773,1.83855,-2.74026,-2.99648,-0.61163,-0.18139,-1.4338,-2.81672,-3.00517,-2.39893,-2.05524,-1.23556,-2.99988,0.792172,1.18432,-1.43953,1.71494,-1.55469,-1.20868,1.27578,0.66954,-0.919175,-1.18519,-2.4978,0.814941,-0.556239,0.271106,-0.185783,1.65536,0.0047579,2.12394,-0.81958,-2.21902,-2.49878,-2.47961,-2.38439,-0.902315,-2.41828,-1.98857,-2.44422,-2.40937,-2.36865,-1.63526,-1.52127,1.18305,0.419859,1.26173,-1.59525,-1.38806,-1.39408,1.13706,0.748062,1.12098,-1.33611,-0.451146,-1.66998,0.802689,1.20809,-0.300943,-1.21645,0.550335,-0.97256,-3.59445,-3.37274,-3.20329,1.8051,0.638875,1.45362,-1.95346,-3.42052,-3.09367,1.28282,0.114119,0.101682,-0.154676,-0.327558,-0.147042,1.29078,1.56475,0.386255,-0.497411,-1.21029,-1.18921,1.84697,-0.270353,1.32532,-0.337518,-1.14546,1.42258,0.887828,-0.107982,-1.15188,-0.555165,0.507398,0.900574,0.245173,0 +0.125438,-0.598517,-0.892787,-0.0516892,-0.163793,-0.535064,0.625259,-2.33238,0.488452,-2.55179,-2.53822,-0.577622,-3.38552,-2.08243,-2.29917,-0.577827,0.832317,-1.35381,-0.787757,-2.74084,0.542391,0.429224,0.646793,-0.860097,0.0884384,0.398559,0.753185,0.46333,0.282188,0.267123,-0.363541,1.14772,-0.256283,-0.0369361,-0.21872,-0.390471,-0.575811,0.428498,-0.944329,0.604393,-0.579912,1.30945,-3.15961,-2.4904,-1.75125,-2.06859,0.0074178,0.293801,-1.24341,-2.76052,0.074549,0.488885,0.515361,-1.98363,1.01293,-0.374637,0.773348,-0.310983,0.0893973,-0.331217,-0.693778,0.90834,-0.2121,-0.00818261,0.374327,0.227478,-0.145623,-0.623728,-1.03239,-0.263807,-0.829429,-0.643624,-2.86521,-1.31104,-2.75553,-0.432141,0.684582,-2.47669,-0.623359,-2.43511,0.622885,0.497487,0.362445,0.812684,-0.29549,0.541248,-0.101833,-0.987604,0.0279456,0.078747,-0.563571,0.997349,0.372023,-2.65712,0.569582,-0.777854,-0.137495,0.659898,-0.967238,0.727553,-0.393588,1.3172,-2.57701,-2.45222,-2.23145,-2.11008,-0.460221,-0.160229,-2.30021,-1.84052,-2.21769,0.634388,0.630539,0.609547,-0.186056,-2.0758,0.0661426,0.664016,0.767445,0.750974,0.0719333,1.34027,0.648578,-1.11497,0.687352,-1.11943,-1.57461,0.32125,-2.7277,0.280526,0.455642,-0.903736,0.0572821,-0.62001,-1.80664,-0.692096,0.730448,-0.40182,0.631659,0.327141,0.368886,0.404022,0.605987,0.520412,-0.114399,-0.263276,-0.361962,-0.285701,-0.228635,0.699965,-0.169616,0.0359855,0.0575278,0.127955,1.30927,0.837353,-0.210578,-1.26827,-0.786056,0.964061,0.602083,1.08075,-0.428816,0.382549,0.676472,0.429712,0 +0.291294,-0.428668,0.234829,-1.19052,-0.128956,0.290794,-0.519626,-2.84698,-0.404393,0.622039,-2.38213,-2.78367,-0.00561078,-2.56303,-2.27295,-0.530859,-0.55895,-3.18871,-2.58851,-1.91703,-2.36108,-0.450441,-0.914008,0.588615,1.35731,-0.350724,0.471682,-0.758353,0.488809,0.919524,-0.363541,-0.917864,-0.000302499,1.30304,-1.31158,1.15065,-0.575811,1.01736,0.388141,0.740417,0.550716,0.132952,0.5287,-2.4904,-2.41776,-1.95616,-0.946066,-1.53301,-2.7374,-0.515151,-2.81169,-0.511754,-0.355518,-1.86288,1.32042,-1.54353,-0.196175,-0.424251,0.480483,1.28122,-0.925326,-0.635741,0.756594,0.50312,-1.30442,0.590831,-0.145623,0.909498,0.762752,0.556295,0.366921,0.536176,-0.965903,-2.72779,-2.06892,-0.0978067,-0.238363,-2.71119,-2.62597,-2.41099,-1.24264,-0.495844,-2.40801,-0.951357,0.849845,-0.444403,0.314511,-1.56923,-0.122455,0.837651,-0.621737,-0.40236,-1.0901,1.06039,-0.473191,1.27712,-1.19986,-0.333285,0.297781,-0.0337912,0.536803,0.470948,-2.1551,-2.31254,-2.34312,-2.23477,-0.853193,-1.24941,-2.26126,-2.33689,-2.38198,-1.62633,-0.828961,-0.544212,0.815228,1.43661,0.821689,-0.776268,-0.365254,0.613605,1.06865,1.53388,1.22491,0.543589,-0.851159,0.561204,1.56956,1.06297,1.49821,-1.2371,-1.87381,-0.915207,-2.98583,-3.00218,-2.84778,0.380418,-0.337906,0.298837,-0.487788,-1.87557,-2.19841,1.16651,-0.0395897,-0.17747,-0.114399,-0.279346,-0.505242,0.20509,0.162404,0.32816,-0.910718,-1.21029,-1.21925,0.477349,-0.308569,0.0735865,-0.226446,1.55645,-0.0635282,0.232223,1.3236,1.14164,-0.871037,-0.179275,0.31446,-1.06505,0 +0.512436,-0.802337,-0.892787,0.133702,-0.163793,0.964521,0.634643,-2.41155,0.498834,-2.09641,-2.57167,-0.589677,-3.20445,-2.09444,-2.33851,-0.593483,0.840958,-1.27736,-0.849007,-2.62521,0.568085,0.452073,0.646793,-0.843053,1.70918,0.398559,0.753185,0.432005,2.4345,0.199341,-0.363541,-0.822038,-0.0962954,0.0529952,0.359115,0.539095,-0.558338,0.489838,-0.69449,0.616758,-0.850791,0.365666,-2.81724,-2.50165,-1.7764,-2.09107,0.0074178,0.364063,-1.35108,-2.57968,0.074549,0.510877,0.525982,-1.9957,0.887651,-0.486723,0.791302,-0.310983,1.48828,0.017418,0.40356,-1.00596,0.648962,0.32266,0.251791,0.000381674,-0.145623,-0.572046,1.09101,-0.279887,-0.842293,-0.919422,-2.8902,-1.33547,-2.78356,-0.432141,0.675792,-2.47669,-0.670758,-2.45922,0.668665,0.508055,0.362445,0.443466,-0.173861,0.560203,-0.164915,-0.987604,1.91631,0.376049,-0.621737,-0.316224,0.241264,-2.57746,-0.77989,1.06558,0.924869,0.679564,-0.951811,0.737191,-0.886149,0.238229,-2.62815,-2.48714,-2.25627,-2.12255,-0.525717,-0.200077,-2.35215,-1.89418,-2.25876,0.645635,0.661157,0.630336,-0.20649,-0.735537,0.697148,0.682843,0.775897,0.750974,0.951392,1.26055,0.705266,0.363912,-0.758848,0.879945,-0.232585,0.216442,-2.10009,0.414738,-0.983696,-0.594033,0.102929,-0.606776,-1.79395,-0.59605,0.781323,-0.207193,0.620118,0.250658,0.342555,0.416946,0.616235,0.541885,-0.154676,-0.311488,-0.361962,-0.300574,-0.282571,0.711583,-0.226624,0.485225,-0.017577,-1.11589,-0.168442,-1.19936,-0.258181,-1.26827,-0.827109,0.582895,1.31215,0.958973,-0.639398,-0.616248,0.0041648,-0.991238,0 +0.844148,1.17924,1.3769,-1.17728,-0.163793,0.269061,0.709718,-2.78101,-0.54974,0.718634,-2.52707,-2.42202,0.024567,-2.76728,-2.37784,-0.671763,-0.498461,-3.43336,-2.29451,-2.10491,-1.50032,-0.221956,-0.646748,0.767574,1.36797,-0.563207,0.493336,-0.0535358,0.506028,0.902579,2.70016,1.58426,-1.72817,1.2221,-0.984979,0.147699,-0.575811,-0.38118,0.263222,1.0372,0.609603,0.262238,0.59095,-2.71539,-2.48064,-2.09107,-0.946066,-1.88432,-2.50859,-0.469942,-2.14167,-0.489762,-0.366139,-1.74213,1.3432,-1.7677,0.73744,1.6649,0.465441,1.3139,-0.925326,1.32371,-1.6472,0.435448,-1.26765,0.0912201,-0.145623,2.06372,-0.611813,2.30906,0.791432,0.566821,-0.978398,-2.66672,-2.02689,-0.515724,-0.291102,-2.81672,-2.29418,-2.31453,-1.04808,0.48692,-1.46354,-0.879564,0.890388,-0.0653065,1.52569,-1.10393,-0.0723216,0.822003,2.12368,1.90178,-1.23274,0.940895,-0.534531,-0.868515,-1.2305,-0.293951,0.544614,0.929936,0.83234,1.10563,-2.21902,-2.48714,-2.49202,-2.37192,-0.935062,-1.99324,-2.28723,-2.37714,-2.3546,-0.928993,-0.696279,-0.523424,0.753925,1.43661,0.846597,0.456917,0.378608,0.581905,1.05888,1.54527,1.22491,-0.714148,1.91816,1.69128,1.55678,1.02266,1.44242,-1.20613,0.398826,0.58743,-2.97062,-2.90954,-3.06362,0.57251,-0.653325,0.480488,-0.557032,-1.40137,-1.36897,0.817574,0.933899,0.241259,-0.154676,-0.295417,-0.0037626,1.96004,1.30855,0.781297,-1.18151,-1.16682,-1.21925,0.267712,1.14366,0.550941,-0.369253,1.33315,-0.227739,0.186483,-1.27615,-0.116748,0.476684,1.38135,0.504085,1.37086,0 +0.180723,-0.156909,0.480591,-1.15079,-0.163793,0.269061,-0.369477,-3.03171,-0.259046,0.59444,-2.39328,-2.21709,-0.0659663,-2.47892,-2.29917,-0.515203,0.460736,-2.8829,-2.47826,-1.91703,-0.98643,-0.267653,-0.807104,0.56305,1.36797,-0.77569,-0.600196,-0.961967,0.506028,0.927997,-0.363541,-1.1734,-0.448269,1.33002,-1.31158,1.76221,-0.575811,0.722927,0.443661,-0.743482,0.338723,-0.578118,0.482012,-2.47915,-2.35488,-1.95616,-0.0819713,-0.956862,-2.95275,-0.54529,-1.65204,-0.137889,-0.663512,-1.88703,1.3432,-2.8245,-0.429579,-0.675956,0.465441,1.29211,-0.895124,-0.915663,0.361941,0.510639,-1.31667,0.954185,-0.145623,1.63304,0.885847,0.106043,0.276873,0.49021,-1.11585,-2.3736,-2.12497,0.0693602,0.183555,-2.67602,-2.27048,-2.45922,-0.578837,-0.369036,-1.41316,-0.910332,0.849845,-0.387539,0.377593,-1.61285,-0.0723216,0.822003,-0.621737,-0.553097,-1.0901,1.04711,-1.82266,1.76065,-1.19986,0.945069,0.683458,-0.467468,0.306942,-0.502237,-2.19345,-2.32418,-2.35553,-2.20983,-0.525717,-1.06345,-2.28723,-2.36372,-2.43675,-0.805272,-0.512566,-0.606578,0.825445,1.43661,0.829991,-0.540927,-0.314536,-0.738942,1.05888,1.54527,1.22491,0.681802,-0.902442,1.02483,1.56956,1.07909,1.49821,-1.22678,-1.68443,-0.387564,-1.61643,-2.2743,-2.60654,2.30134,0.781323,1.32387,-0.984038,-2.39565,-1.65862,-0.371388,-0.172804,0.617041,-0.154676,-0.295417,-0.576881,0.100983,0.351181,-0.764015,-1.19576,-1.1958,-1.20423,0.0441,-1.42959,-0.637141,-0.210578,1.56761,-0.014265,0.216976,1.07164,0.492151,-0.407758,-0.304124,-0.0992671,-1.39722,0 +-0.206275,-0.0436756,-0.87833,1.24605,-0.163793,-0.2308,0.634643,-2.39835,0.498834,-1.08907,-2.52707,-0.601732,-3.40061,-2.08243,-2.31228,-0.546515,0.8496,-1.33852,-0.824507,-2.58186,0.555238,0.452073,0.646793,1.22775,1.25068,0.387375,0.764012,0.40068,0.351061,0.233232,-0.256419,1.4352,-0.320279,-1.20604,-0.256405,0.245548,-0.567074,0.465302,-0.930449,0.629124,-0.568135,1.08966,-2.97286,-2.4454,-1.7764,-2.05734,0.022316,0.335959,-1.31071,-1.67551,0.061664,0.499881,0.525982,-2.03193,1.2407,-0.438686,0.791302,-0.248057,-0.346813,-0.353006,-0.0394021,1.40497,-1.93422,0.202354,0.288552,0.272897,-0.145623,-0.572046,-1.03239,-0.231646,-0.829429,-0.735557,-2.84022,-1.33547,-2.65744,-0.264974,0.684582,-2.46496,-0.658908,-2.4954,0.65722,0.508055,0.362445,1.15113,-0.0826401,0.550725,-0.0387506,-1.04577,1.68235,0.164808,1.53039,1.32036,0.181829,-2.67039,-0.258503,-0.697267,0.209816,0.669731,-0.951811,0.746828,-0.20751,1.1691,-2.57701,-2.42894,-2.23145,-2.09761,-0.460221,-0.173512,-2.33917,-1.88076,-2.25876,0.634388,0.650951,0.630336,-0.0736667,-2.53796,1.22852,0.654603,0.767445,0.750974,0.208738,0.155852,-0.163951,-0.783255,1.39507,-0.279111,-1.70242,0.240628,-2.82533,-0.122109,0.360948,-0.628444,0.0877133,-0.62001,-1.80664,-0.644073,0.760973,-0.362894,0.631659,0.281252,0.35572,0.429869,0.626482,0.541885,-0.154676,-0.311488,-0.505242,-0.270829,-0.201667,0.723202,0.143927,-0.021981,0.132633,0.0441,1.37296,1.14498,-0.162975,-1.24594,-0.736793,-0.0727097,-0.382846,0.492151,0.266102,0.694673,0.383415,1.13096,0 +0.0701521,0.409256,0.263742,1.65656,-0.128956,0.627658,0.465726,-2.2796,0.872583,-1.65484,-2.53822,-1.69873,-3.24972,-2.16653,-2.28606,-0.609139,0.106438,-0.558693,-2.25776,-2.78419,0.259752,0.463497,-0.0587749,-0.817488,0.0991012,0.901808,-0.0263625,0.651282,0.867615,0.063777,-0.320692,-0.69427,0.111689,-1.17007,1.76602,1.73775,1.63442,1.02962,0.762898,0.740417,0.62138,-1.03062,-2.69274,-2.43415,-2.12852,-2.06859,-0.811983,1.13695,-2.48167,-2.56461,-0.672782,0.697809,0.398536,-1.95948,0.933206,0.169776,0.351426,-0.323568,0.585775,0.169946,1.64184,-0.428058,-0.463243,0.698618,1.59969,0.727089,-0.145623,1.13345,0.711462,0.701018,0.43124,0.0765139,-2.86521,-1.93392,-2.68547,-0.432141,0.464833,-2.30081,-1.95054,-2.38687,0.828895,0.370679,-0.670179,1.39728,0.0389884,0.683409,0.188346,0.771816,1.01391,0.485582,-0.621737,0.0498539,1.1328,-2.63056,-0.442522,1.81101,0.955514,0.168223,0.359489,0.322788,0.668153,-0.756112,-2.56423,-2.45222,-2.3059,-1.71109,-0.607586,0.915668,-2.27424,-2.20274,-2.28614,0.128258,0.610126,0.380874,-0.727566,-2.81525,0.18238,0.965252,0.606838,0.212068,0.0523898,1.35166,0.78085,0.76473,0.605298,1.22766,-0.207022,0.0390743,-2.46271,1.84977,0.569273,1.63125,0.163791,-1.17585,-1.81934,0.444448,0.160659,0.298837,0.158491,-1.24841,-1.13199,1.17943,0.278075,0.198312,-0.114399,-0.279346,-0.290322,0.20509,0.0814995,0.165496,1.0418,1.7315,1.31929,-0.109633,-1.48054,-0.308297,-0.242313,-1.26827,0.913527,-0.347149,1.00293,0.289184,0.223986,-0.678673,-0.737097,-1.5264,0 +0.236008,1.94923,1.55038,0.199913,-0.163793,0.758056,-0.407015,-2.87337,-0.300574,0.911823,-2.52707,-2.54257,-0.337566,-2.57504,-2.28606,-0.624795,0.11508,-2.91348,-2.73551,-2.48069,-1.39754,-0.439016,-1.27748,1.41523,0.696217,-0.417824,0.114389,-0.664378,0.351061,0.953415,-0.363541,0.594059,-1.07222,1.03325,0.308868,2.32484,-0.558338,1.09096,2.37297,0.542563,1.84623,-0.267833,0.575387,-2.61414,-2.41776,-2.07983,-0.677899,-0.703919,-2.92583,-0.258969,-2.32206,-0.434782,-0.631651,-1.91118,1.12681,-2.40818,-0.438556,2.30675,0.360149,1.46643,-0.00920017,0.628419,-1.79071,0.691099,0.0802404,2.36218,-0.145623,1.08177,1.67571,1.15127,1.75623,1.50147,-2.3404,-2.54459,-2.06892,-0.348557,-0.484481,-2.71119,-2.57857,-2.37482,-0.533057,-0.47471,-2.26949,0.248602,1.17419,-0.292764,2.04297,-1.45291,0.128213,0.579467,0.588108,0.437465,-0.0678018,0.316886,0.692262,1.84123,0.567342,-0.372619,1.9022,-0.187988,1.88314,-0.565706,-2.28295,-2.45222,-2.38034,-2.24723,-0.902315,-1.14315,-2.23529,-2.29665,-2.29983,-1.23267,-0.522772,-0.668943,0.621101,0.342832,0.987743,-0.352655,-0.365254,0.286035,0.863446,1.32888,0.620234,-0.672685,0.954028,-0.279111,1.58234,1.01459,1.21927,0.383766,1.53514,2.09007,-2.0729,-2.59192,-2.72081,1.08475,0.221708,1.38875,-1.12253,-2.91574,-2.60654,1.08897,-0.0703315,-0.145261,-0.114399,-0.279346,-0.218682,1.6031,1.92882,0.107401,-0.383396,0.151918,-0.122724,1.17614,-0.244875,0.763098,-0.289916,-0.933324,-0.621845,1.14702,0.132524,-1.31425,1.59277,-0.304124,-2.20238,-1.17578,0 +0.567721,-0.870277,-0.9217,0.160187,-0.163793,-0.828461,0.784792,-0.366327,0.623417,-1.59964,-1.15571,1.15828,-2.43492,-0.66466,-0.489781,-0.562171,0.590357,-0.69631,0.890492,0.40987,1.73718,0.600587,1.24546,-0.851575,-0.796573,0.465659,0.482509,-0.507751,0.127221,-0.88517,-0.363541,-0.545207,-0.000302499,-1.30497,0.183252,0.27001,-0.514658,0.0727308,-0.73613,0.592027,-0.94501,0.637165,-2.39705,-0.847921,-0.053526,-1.69758,-0.156462,0.884002,0.264041,-0.454873,1.69806,0.433904,0.600325,-0.30522,-0.980101,0.0897152,0.746417,-0.575274,-0.391939,-1.47517,-0.0897387,-0.9879,0.792472,-0.92552,0.313059,0.0458009,-0.145623,-0.847682,0.967911,-0.424611,-0.919477,-0.873455,-1.69064,0.362193,-0.66768,-0.348557,0.693372,-0.905521,1.09486,0.567334,0.966234,0.803941,1.84842,-0.83854,-0.984718,0.683409,-0.732657,-0.842198,0.378881,-0.946164,-0.621737,-0.337758,0.21749,-2.35175,-0.350512,0.833893,-0.352011,0.325559,-0.936384,0.804651,-1.00655,0.449791,-1.13228,-1.05545,-0.841759,-0.987918,0.833311,0.982081,0.115011,0.171809,0.438475,1.53418,0.661157,0.56797,-0.788869,-0.319595,-0.847155,0.456917,0.691368,0.307169,-0.797754,-0.948846,-0.967031,0.0874865,-0.799875,0.561204,-2.21366,-1.12994,-2.58824,0.228906,-1.2299,-0.594033,1.41147,1.07398,-0.511577,-1.41244,-0.032662,-1.1414,0.770147,1.48968,1.8171,0.50741,0.810932,0.574095,-0.154676,-0.311488,-0.290322,-0.598023,-0.687094,0.560538,0.00140723,0.572175,0.56824,-1.04601,0.162768,-1.16753,-0.242313,-1.26827,-0.818898,0.903074,1.31215,1.06046,-0.828921,-0.553823,0.176551,-0.788245,0 +-0.0404188,-0.609841,-1.12409,0.199913,-0.163793,-0.904526,0.522032,0.412176,0.581889,-2.04122,-1.14456,-0.167756,-1.75592,-0.148016,-0.935573,-0.530859,0.633564,1.97958,-0.420257,-0.587372,0.696558,0.532042,-0.133608,-0.817488,-0.796573,0.857075,0.00611864,0.541643,0.110003,-0.893643,-0.363541,1.29678,-0.512264,-1.30497,0.158129,-0.145849,-0.540866,0.514373,-0.930449,-0.323044,-1.01567,1.25774,-2.11693,-0.645424,-0.455949,-1.75379,-0.439528,1.53041,-0.126281,-1.90155,0.409559,0.587849,0.356054,0.395122,-0.957323,0.0256665,0.414265,-0.474592,-0.437064,-1.43159,-0.0293348,1.24244,-0.822018,-0.933039,0.276298,0.272897,-0.145623,-1.00273,-1.03239,-1.32511,-1.04812,-0.582336,-1.26579,0.0568589,-1.34028,-0.264974,0.710952,0.231818,-0.469311,0.422638,0.439766,0.476353,0.123178,-0.725723,-1.19757,0.702364,-0.808355,0.655491,0.395592,-0.961812,-0.41234,1.10502,0.241264,-2.33847,0.232214,-0.777854,-0.433731,0.817233,-0.936384,0.24569,-0.743854,1.21141,-1.02999,-0.880854,-0.804535,0.907292,-0.4111,1.55324,-0.793944,-0.405058,0.178335,-0.0067106,-0.0634891,-0.00371222,-1.18734,-1.12067,-0.838852,0.918184,0.623744,0.222635,-0.807525,-0.948846,-0.976479,-0.866183,1.06685,-0.945568,-1.95804,-1.138,-2.35114,0.18761,0.417764,-0.697267,1.6397,0.848997,0.897761,-0.756127,0.720274,-0.726198,0.193113,0.0823959,0.224064,-0.0483002,0.329311,0.659988,-0.154676,-0.327558,-0.290322,-1.3119,-1.13207,-0.217927,0.00140723,0.557684,0.56824,0.533252,1.37296,1.12377,-0.242313,-1.26827,-0.818898,0.704868,0.189787,0.776304,-0.134002,0.382549,0.504085,0.724975,0 +0.733577,-0.00970569,0.813093,-1.21701,-0.163793,-0.306866,-1.33606,-1.224,-1.49449,0.566842,0.159908,-0.81872,-0.397922,0.452732,-0.0177667,-0.296018,-1.51815,-0.0846777,-1.44926,0.626662,-1.93713,-1.31868,-1.91891,0.98062,1.16538,-1.75982,-1.67207,-0.883654,-1.6635,1.14829,0.129222,1.58426,-1.79217,1.47391,-0.934733,-0.0969241,-0.505922,-1.44848,0.776778,-1.52253,0.432942,0.585451,0.264137,0.42331,0.0345039,0.101255,-0.901372,-1.92648,-1.21649,0.720553,-1.433,-1.36945,-1.47067,1.40941,0.876262,-2.85652,-1.4799,-0.776638,-1.33957,1.00885,-0.935393,1.33274,-1.57545,1.02946,-1.34118,0.136639,-0.145623,-0.00354679,0.0549533,-0.215565,0.611336,0.720041,-0.253663,0.0202188,0.00491612,-0.515724,-1.46017,0.607022,-1.204,0.434696,-1.74622,-1.30953,-2.21912,0.33065,0.545774,-1.39214,-0.568642,-1.51107,-1.29224,0.853298,1.86775,1.88024,-1.24463,0.144288,-0.166493,-0.888662,-0.781043,-1.38547,1.05371,-1.45047,0.263159,1.25373,-0.14781,0.155082,0.31218,0.570643,-0.705829,-1.84713,-0.404392,-0.257488,-0.834839,-1.9525,-1.56381,-1.47969,0.406541,2.08363,1.27003,-1.5576,-1.44723,-1.58428,0.980707,0.42918,0.431274,-1.0735,1.79508,1.31459,1.00719,1.28871,0.577712,-1.1958,0.531396,0.530077,-1.35777,-0.34209,0.478768,0.348402,-1.54871,0.0782596,-1.90729,-2.77807,-2.51438,-1.46989,-1.39223,-1.36924,-0.154676,-0.327558,-0.147042,-0.151849,-0.282571,-1.60057,-1.06749,-1.21029,-1.20423,0.463373,1.27105,0.635804,-0.321651,1.45596,1.06132,0.0797565,-0.966933,0.248591,0.28716,1.31892,0.641995,1.16787,0 +-0.0404188,-0.632487,-1.13855,0.199913,-0.163793,-0.904526,0.550185,0.438566,0.623417,-2.01362,-1.2226,1.0739,-1.72574,-0.88093,-0.935573,-0.593483,0.659489,-0.0999685,0.976242,-0.645183,1.58302,0.520618,1.3096,-0.808966,-0.796573,0.868258,0.0385998,0.46333,0.110003,-0.893643,-0.363541,1.29678,-0.512264,-1.30497,0.158129,-0.145849,-0.540866,0.428498,-0.930449,-0.323044,-1.0039,1.27066,-2.07024,-1.07292,-0.342767,-1.9674,-0.379935,0.350011,0.573607,-1.91662,1.5821,0.609841,0.579084,0.431347,-0.957323,0.409958,0.441196,-0.487177,-0.437064,-1.43159,-0.0293348,1.23341,-0.822018,-0.933039,0.276298,0.272897,-0.145623,-1.10609,-1.03239,-1.34119,-1.04812,-0.582336,-1.26579,0.130139,-1.31225,-0.348557,0.737321,-1.11657,1.08301,0.398522,0.79456,0.48692,1.83582,-0.725723,-1.19757,0.711841,-0.795739,0.611869,0.395592,-0.961812,-0.41234,1.08348,0.241264,-2.36503,0.232214,-0.767781,-0.433731,0.787733,-0.936384,0.284239,-0.732908,1.21141,-1.01721,-0.892494,-0.891391,-1.24976,-0.673081,0.198403,-0.832899,-0.176995,0.137261,1.50043,0.661157,0.495211,-1.20777,-1.15148,-0.838852,0.90877,0.64065,0.222635,-0.807525,-0.948846,-0.976479,-0.880004,1.05659,-0.974544,-1.95804,-1.138,-2.35114,0.18761,0.417764,-0.697267,1.04629,0.809294,-0.727422,-0.836165,0.679574,-0.739173,0.954798,1.78032,1.90926,-0.112918,0.319064,0.595568,-0.154676,-0.327558,-0.290322,-1.28216,-1.11859,-0.171452,0.00140723,0.557684,0.56824,0.533252,1.37296,1.12377,-0.258181,-1.26827,-0.818898,0.720115,0.20124,0.776304,-0.15506,0.382549,0.504085,0.724975,0 +0.236008,0.205437,0.87092,-1.50833,-0.163793,0.551592,-1.36421,-2.30599,-1.39068,0.635838,0.996105,0.145672,1.36748,0.500792,-0.148882,-0.186426,-1.48358,0.328174,-0.481507,-0.0670718,-0.562471,-1.31868,-1.54474,1.27888,1.1014,-1.83811,-1.60711,-0.946305,-0.957542,1.25843,-0.363541,-0.971101,-0.160291,1.16814,-1.36183,1.61544,-0.567074,-1.47302,0.693499,-1.48543,0.562493,-0.435904,1.04226,0.130815,0.449502,1.56281,-0.901372,-1.23791,-1.36454,0.84111,-0.0414161,-1.34745,-1.48129,-1.58516,0.0221075,-3.19278,-1.49785,-0.600444,-0.0911037,0.790951,-0.895124,-0.409998,0.541329,1.14977,-1.26765,0.908766,-0.145623,-0.00354679,0.608883,-0.119083,0.714248,0.78133,1.28328,0.508754,0.00491612,-0.0142232,-1.40743,0.208368,-0.101968,-0.951973,-1.29987,-1.33067,-0.619807,-0.602651,0.525502,-1.43005,-0.278464,-1.59831,-1.49277,1.20537,-0.528672,-0.596165,-1.06632,2.13581,-1.20927,1.61962,-0.546097,-1.35597,1.03828,-1.46011,0.427346,-0.0579573,-0.0199568,0.0852439,0.274956,-0.102655,-0.75495,-1.62132,-0.469317,0.279133,-0.629466,-1.21018,-1.34948,-1.41733,0.467844,0.666343,0.896413,-1.59525,-1.4895,-1.57372,1.36181,0.85056,1.15877,0.709445,-0.881929,0.850968,1.1989,1.12746,1.86083,-1.22678,-1.87381,-0.616974,0.0116354,0.451968,0.643826,0.268364,-1.55888,-0.142317,-1.80343,-2.54862,-1.13199,-1.45696,-1.39223,-1.3585,-0.154676,-0.311488,-0.576881,-0.00312447,-0.0668256,-1.54248,-1.08174,-1.25377,-1.20423,0.393494,-1.06016,-0.0431001,-0.162975,2.0477,0.880685,0.15599,1.19762,0.7966,-0.61834,-0.11685,0.107597,-1.32341,0 +-0.0404188,-0.632487,-1.10964,0.199913,-0.163793,-0.915393,0.456341,-1.06566,0.633799,-0.288712,0.315998,1.13417,0.356522,0.0922831,0.532917,-0.562171,0.598999,-0.0693869,0.927242,-0.601825,1.67295,0.543466,1.26684,-0.860097,-0.796573,0.890625,-0.123806,0.588631,0.110003,-0.868225,-0.363541,1.30743,-0.512264,-0.990208,0.158129,-0.170311,-0.540866,0.563445,-0.930449,-0.397239,-1.02745,1.25774,0.124075,0.310812,0.273442,-0.112356,-0.499121,0.434325,0.223663,-0.19869,1.65941,0.664821,0.515361,-1.76628,-0.957323,0.425971,0.324495,-0.487177,-0.437064,-0.832379,-0.00920017,1.25147,-0.822018,-0.92552,0.276298,0.272897,-0.145623,-0.933818,-1.03239,-1.35728,-1.06098,-0.582336,0.421091,0.374406,0.467326,-0.264974,0.710952,-0.202012,1.09486,-1.07255,0.88612,0.44465,1.84842,-0.715467,-0.812411,0.673932,-0.896671,0.728194,0.395592,-0.961812,-0.400707,1.08348,0.253152,-0.28057,0.232214,-0.798001,-0.443946,0.846734,-0.936384,0.158954,-0.820474,1.21141,0.593736,0.539194,0.37422,-0.501647,-0.722202,0.171838,0.283816,0.212055,-0.533625,1.52293,0.68157,0.474422,-1.0443,-2.78444,-0.838852,0.927598,0.573026,0.138101,-0.807525,-0.948846,-0.976479,-0.866183,1.06685,-0.945568,-0.743831,-0.95257,-0.454359,0.177286,0.417764,-0.708738,1.28974,0.994574,-0.143372,-0.740119,0.730448,-0.752148,0.862473,1.59676,1.8566,-0.00952972,0.319064,0.713671,-0.154676,-0.327558,-0.361962,-1.40114,-1.19949,-0.380592,0.00140723,0.557684,0.56824,0.533252,1.37296,1.12377,-0.242313,-0.910995,-0.818898,0.704868,0.178334,0.776304,-0.15506,0.382549,0.504085,0.724975,0 +0.180723,0.194114,0.87092,-1.42888,-0.163793,0.518992,-1.36421,0.649686,-1.46335,1.02222,1.11875,-1.61434,1.91068,-0.8569,-0.581562,-0.499547,-1.49222,-2.59237,-0.481507,0.221984,-2.42532,-1.31868,-1.82269,1.33854,1.0161,-1.64799,-1.60711,-0.946305,-1.14695,1.26691,-0.363541,-0.981748,-0.160291,1.15915,-1.34927,1.61544,-0.540866,-1.47302,0.693499,-1.48543,0.562493,-0.435904,1.74257,-0.487926,-0.883523,1.22553,-0.901372,-2.41831,0.264041,0.705484,-2.42514,-1.34745,-1.49191,0.044951,0.0334963,-1.78371,-1.50683,-0.61303,-0.271605,0.965269,-0.895124,-0.419028,0.541329,1.2024,-1.2554,0.908766,-0.145623,-0.00354679,0.619141,-0.119083,0.701384,0.78133,1.62065,-1.16448,0.60745,-0.0978067,-1.40743,-0.987597,-1.1803,0.181478,-1.95223,-1.33067,-2.33245,-0.346249,0.505231,-1.43005,-0.29108,-1.04577,-1.59304,1.19754,-0.540305,-0.596165,-1.06632,2.0827,-1.20927,1.62969,-0.443946,-1.35597,1.05371,-1.46011,0.427346,-0.0791135,0.759945,0.434436,-0.903799,-1.99786,-0.853193,-2.28546,-0.378422,-0.405058,0.21941,-2.10996,-1.60464,-1.47969,0.406541,0.358238,1.02926,-1.57643,-1.49795,-1.57372,1.2934,0.634175,1.06429,0.709445,-0.881929,0.850968,1.45453,1.21615,2.01424,-1.22678,-1.87381,-0.605503,-2.74238,-1.8508,-1.01945,0.268364,-1.55888,-0.142317,-1.74572,-1.76849,-2.07992,-1.45696,-1.40247,-1.3585,-0.154676,-0.311488,-0.505242,-0.00312447,-0.0803097,-1.54248,-1.06749,-1.25377,-1.20423,0.393494,-1.0729,-0.0537079,-0.178843,1.36664,1.07774,0.15599,1.19762,0.776304,-0.61834,-0.11685,0.107597,-1.30495,0 +-0.0404188,-0.632487,-1.13855,0.199913,-0.163793,-0.904526,0.550185,0.438566,0.623417,-2.01362,-1.2226,1.0739,-1.72574,-0.88093,-0.935573,-0.593483,0.659489,-0.0999685,0.976242,-0.645183,1.59586,0.520618,1.3096,-0.808966,-0.796573,0.857075,0.0385998,0.46333,0.110003,-0.893643,-0.363541,1.29678,-0.512264,-1.30497,0.158129,-0.170311,-0.540866,0.428498,-0.930449,-0.323044,-1.01567,1.27066,-2.07024,-1.07292,-0.342767,-1.95616,-0.379935,0.350011,0.573607,-1.91662,1.59498,0.609841,0.579084,0.419272,-0.957323,0.393946,0.441196,-0.487177,-0.437064,-1.43159,-0.0192675,1.23341,-0.822018,-0.933039,0.276298,0.272897,-0.18708,-1.12332,-1.03239,-1.34119,-1.04812,-0.582336,-1.26579,0.130139,-1.31225,-0.264974,0.737321,-1.11657,1.08301,0.398522,0.806005,0.48692,1.83582,-0.725723,-1.19757,0.711841,-0.795739,0.611869,0.395592,-0.961812,-0.423973,1.08348,0.241264,-2.36503,0.232214,-0.767781,-0.433731,0.787733,-0.936384,0.284239,-0.743854,1.21141,-1.01721,-0.892494,-0.891391,-1.24976,-0.673081,0.198403,-0.832899,-0.176995,0.137261,1.51168,0.661157,0.495211,-1.20777,-1.15148,-0.838852,0.90877,0.64065,0.222635,-0.807525,-0.948846,-0.976479,-0.880004,1.05659,-0.974544,-1.95804,-1.138,-2.35114,0.177286,0.417764,-0.708738,1.06151,0.822528,-0.727422,-0.836165,0.679574,-0.739173,0.954798,1.78032,1.90926,-0.125841,0.319064,0.595568,-0.154676,-0.311488,-0.290322,-1.28216,-1.11859,-0.171452,0.00140723,0.557684,0.56824,0.533252,1.37296,1.12377,-0.258181,-1.26827,-0.818898,0.720115,0.20124,0.776304,-0.15506,0.382549,0.504085,0.724975,0 +0.236008,0.205437,0.87092,-1.50833,-0.163793,0.551592,-1.36421,-2.31918,-1.39068,0.635838,0.996105,0.145672,1.35239,0.500792,-0.148882,-0.170769,-1.48358,0.343465,-0.481507,-0.0815246,-0.562471,-1.31868,-1.54474,1.27036,1.1014,-1.83811,-1.60711,-0.946305,-0.957542,1.25843,-0.363541,-0.971101,-0.160291,1.16814,-1.36183,1.61544,-0.558338,-1.47302,0.693499,-1.48543,0.562493,-0.435904,1.04226,0.130815,0.449502,1.56281,-0.901372,-1.23791,-1.378,0.84111,-0.0414161,-1.34745,-1.48129,-1.59723,0.0221075,-3.20879,-1.49785,-0.600444,-0.0760619,0.790951,-0.895124,-0.409998,0.541329,1.14977,-1.2554,0.908766,-0.145623,-0.00354679,0.608883,-0.119083,0.714248,0.78133,1.28328,0.508754,0.00491612,-0.0142232,-1.40743,0.208368,-0.101968,-0.951973,-1.29987,-1.33067,-0.619807,-0.602651,0.525502,-1.43005,-0.278464,-1.59831,-1.49277,1.21319,-0.528672,-0.574631,-1.06632,2.13581,-1.23994,1.61962,-0.535882,-1.35597,1.03828,-1.46011,0.427346,-0.0579573,-0.0327421,0.0852439,0.274956,-0.102655,-0.75495,-1.62132,-0.469317,0.265717,-0.629466,-1.22142,-1.34948,-1.41733,0.467844,0.666343,0.896413,-1.59525,-1.49795,-1.57372,1.36181,0.85056,1.15877,0.709445,-0.871672,0.850968,1.1989,1.12746,1.86083,-1.22678,-1.87381,-0.616974,0.0116354,0.451968,0.643826,0.268364,-1.55888,-0.155292,-1.80343,-2.56391,-1.13199,-1.45696,-1.40247,-1.3585,-0.154676,-0.311488,-0.576881,0.011748,-0.0668256,-1.54248,-1.08174,-1.25377,-1.20423,0.393494,-1.06016,-0.0431001,-0.162975,2.05887,0.888895,0.15599,1.19762,0.7966,-0.61834,-0.11685,0.107597,-1.32341,0 +0.180723,-0.870277,-0.979526,-1.69373,-0.163793,-1.83905,0.737871,-0.260767,0.654563,-1.30986,0.472088,-0.372689,-0.2923,0.284523,0.047791,-0.061177,0.633564,-0.436366,-0.702007,0.207531,0.182668,0.543466,-0.261893,-0.826009,-0.775247,0.499209,0.4392,-0.304138,-2.45555,-0.876697,-0.363541,0.75377,-0.336278,-0.963228,-1.04779,-0.366009,-0.575811,-0.0744834,-0.874929,0.418905,-0.956788,1.21895,-0.887488,0.502059,-0.30504,0.517235,-0.17136,0.392168,-0.489684,-0.756264,0.126089,0.4449,0.334813,0.1174,-1.61787,0.169776,0.710508,-0.524933,-2.69333,-1.11564,-0.935393,-0.599623,0.433696,-0.918001,-1.45146,0.136639,-0.145623,-1.10609,-0.940068,-0.681898,-0.945205,-0.674268,0.196173,-0.297329,-0.373419,-0.264974,0.728531,0.583572,-0.55226,0.567334,0.130752,0.729969,0.0853994,-1.50518,-1.02526,0.702364,-0.72004,-0.624088,-1.92726,-0.961812,-0.621737,0.566669,-1.18519,-0.3204,0.600252,-0.747634,-1.46545,0.38456,-0.936384,0.708279,-0.984661,1.19026,0.0311842,0.352958,0.25014,0.495832,0.604077,0.849254,-0.0797654,-0.284319,0.315251,-0.0404526,-0.0839017,-0.00371222,-0.860389,-0.30419,-0.830549,0.598121,0.699821,0.360003,-0.77821,-1.47272,-1.20323,-1.4605,-0.543456,-1.0325,-1.21673,-0.968695,-0.9425,-1.22678,0.0958073,-1.00697,-0.125305,-0.236216,0.135956,-1.41244,0.11996,-1.07653,-0.118486,-0.147053,-0.223566,0.274787,0.687965,0.466728,-0.154676,-0.311488,-0.290322,-0.746747,-0.754514,0.455968,-0.611427,-1.23928,-1.21925,-0.542882,1.04175,-0.0112764,-0.258181,-0.520223,-0.810688,1.17751,1.00293,1.26342,-0.892095,0.257699,0.693711,-0.105451,0 +0.180723,-0.8816,-1.23975,-1.26997,-0.163793,-0.241667,-1.32668,0.636491,-1.47373,0.580641,0.237953,-0.649952,-0.352655,0.404672,-0.109547,-0.108145,-1.49222,-0.0693869,0.0697426,-0.385033,-1.93713,-1.29583,-1.53405,1.06584,1.11207,-1.45787,-1.99688,-0.899317,-1.73237,1.16523,-0.363541,0.743122,-0.320279,1.4829,-1.03523,-0.317085,-0.505922,-1.89013,-0.874929,-2.10372,-1.06278,1.20602,0.295262,0.43456,-0.0409503,0.24741,-0.946066,-1.89837,0.613985,0.720553,-1.23972,-1.34745,-1.40695,-0.80029,0.71682,-0.646844,-1.49785,-0.87732,-1.30949,0.997953,-0.935393,-0.635741,0.433696,1.05954,-1.36568,0.136639,-0.145623,-2.63932,-0.940068,-2.57939,-1.08671,-0.68959,-0.203681,-0.0774882,0.032941,-0.348557,-1.42501,0.653923,-0.410063,-0.180262,-1.74622,-1.29896,-1.29983,0.207577,0.525502,-1.39214,-1.85552,-0.987604,-1.40922,0.876769,-0.621737,0.566669,-1.19708,0.170841,0.600252,-0.70734,-0.760613,-1.34613,-0.951811,-1.46011,-1.08317,1.21141,-0.14781,0.155082,0.25014,0.720264,-0.62396,-1.75415,-0.521257,0.0510691,0.21941,-1.78379,-1.5434,-1.42772,0.314586,0.419859,1.24513,-1.51053,-1.45569,-1.66882,0.990479,0.269739,0.45017,-1.4605,-0.574227,-1.06147,0.981625,1.29677,0.521925,-1.22678,0.114746,-1.00697,-1.47949,-0.447964,0.466072,-2.38891,-1.7522,-2.06263,-1.46875,-0.407095,-0.802853,-2.0256,-1.37173,-1.33703,-0.154676,-0.295417,-0.290322,-2.47195,-2.25125,-2.13504,-0.597175,-1.23928,-1.21925,-0.584809,1.04175,-0.287081,-0.258181,1.43363,1.09416,1.14702,1.01438,1.28372,-0.892095,0.257699,0.710949,-0.105451,0 +0.180723,1.24718,1.43473,-1.41564,-0.163793,0.475526,-1.33606,0.610101,-1.42182,0.152864,-0.18572,-0.264195,0.160367,0.512807,-0.175105,-0.342986,-0.835476,0.43521,-0.530507,0.193078,-1.15344,-1.33011,-1.75855,1.33002,1.00544,-1.67036,0.969726,-0.241487,-1.25026,1.27538,-0.363541,-0.971101,-0.496266,1.15016,-1.29902,1.88452,-0.53213,-0.31984,1.1793,0.4931,1.42224,-0.448832,0.170762,0.254563,0.22314,-0.415909,1.52703,-1.42059,0.156366,0.645205,-0.531047,-1.35845,-1.50253,0.1174,0.044885,-1.9118,-0.851501,1.89144,-0.40698,0.692898,-0.885057,-0.247464,0.254309,1.21744,-1.26765,1.18128,-0.145623,1.30572,1.07049,1.56936,1.46036,0.689397,-0.116213,0.31334,-0.485519,-0.0142232,-1.37227,0.524946,-0.55226,0.193536,-1.48299,-1.34123,-1.37539,-0.294969,0.495095,-1.43953,1.9925,-0.595006,-1.62646,1.18972,-0.22621,-0.553097,-1.0901,0.184118,-1.97601,1.81101,-0.454162,-1.2773,1.26969,-0.978244,1.34679,-0.608018,-0.505797,-0.147551,0.262548,0.520769,-0.640333,-1.20956,-0.547228,0.0376536,0.164644,-1.64882,-1.45154,-1.4693,0.437192,0.296616,1.07077,-1.18105,-1.18519,1.01514,1.27386,0.531677,1.01705,0.723266,-0.410119,1.0538,0.572628,1.25646,0.480084,-1.22678,-1.4761,-0.261388,-0.307892,0.200516,0.694613,1.86913,-0.0937108,2.06345,-1.78035,-1.95205,-1.77711,-0.0741472,-1.21802,-1.31555,-0.154676,-0.327558,-0.576881,1.88568,1.96927,0.792916,-1.23851,-1.23928,-1.18921,0.491324,-1.20029,0.0205472,-0.162975,-0.788181,1.13521,0.171236,0.991474,0.410964,-0.344584,-0.241699,-0.133744,-1.48949,0 +-0.482702,-0.224848,-1.12409,1.20632,-0.163793,0.649391,0.578337,0.438566,0.592271,-0.606094,0.494387,-0.625842,0.265989,0.104298,0.349356,-0.389954,0.694054,0.0682304,-0.420257,-0.572919,-0.24129,0.532042,-0.0587749,-0.851575,-0.828561,0.857075,0.0602539,0.353692,0.59212,-0.859752,2.95725,1.50973,1.53558,-0.88229,1.11281,0.612482,2.14985,0.440766,-0.930449,-0.285947,-0.99212,0.753522,-0.0938,0.44581,-0.330192,0.314867,-0.365037,0.181382,-0.0993619,-0.665847,-0.324886,0.565857,0.409156,0.298523,-0.205667,-0.0223699,0.468128,-0.273227,0.796359,-0.897748,2.07473,1.53139,-0.965528,-0.872886,1.74673,0.182058,-0.145623,-1.10609,-1.02213,-1.30903,-1.02239,-0.827489,0.471073,-0.566023,0.20109,-0.0978067,0.754901,0.184917,-0.56411,0.362348,-0.166818,0.518622,0.123178,-1.00264,-0.903632,0.740274,-0.75789,0.539165,0.345458,-0.789689,2.27491,1.38496,1.81037,-0.081418,-0.258503,0.441029,1.59906,0.797566,-0.936384,0.322788,-0.721962,0.915228,0.453098,0.539194,0.336996,-0.439304,-0.607586,0.238251,-0.0278251,-0.244072,0.178335,-0.107937,-0.0839017,0.0170762,-1.15669,-1.29013,-0.880366,0.899357,0.657556,0.233202,-0.807525,-0.550244,-0.863103,1.38669,1.68226,0.590181,-0.820518,-0.91226,-0.426465,1.72588,0.209439,1.22978,-0.0187957,-0.606776,-0.219552,-0.820158,0.699924,-0.713222,0.216194,0.00591297,0.23723,-0.0999942,0.349806,0.595568,-0.154676,-0.327558,-0.576881,-1.25241,-1.09162,-0.124976,1.02755,1.54311,1.4695,-0.361197,1.27105,1.09194,-0.162975,-0.631872,-0.769635,-1.018,-1.61973,-0.0558584,0.708323,0.881947,0.0214034,1.50004,0 +0.180723,-0.768367,-0.675938,-1.654,-0.163793,-1.88252,0.597106,0.00313242,0.540361,0.111467,0.505536,0.507319,0.718656,-0.184061,0.139572,-0.468235,0.823675,0.25172,0.241243,-0.139336,0.0541959,0.486345,0.775078,-0.800444,-0.839224,0.230809,0.883109,-0.241487,-2.45555,-0.783497,-0.363541,0.775064,-0.30428,-0.666455,-1.06035,-0.341547,-0.575811,0.416231,-0.888809,0.93827,-0.49747,1.21895,0.544262,0.153314,0.311169,0.348595,0.0670106,0.0127534,-0.395468,-0.0329251,0.048779,0.543865,0.610945,0.564171,-1.66342,0.506031,0.82721,-0.348739,-2.73845,-0.483744,-0.945461,-0.626712,0.469574,-0.933039,-1.47597,0.182058,-0.104166,-0.10691,-0.92981,0.39549,-0.57215,-0.597658,0.695991,0.301126,0.481338,-0.348557,0.719742,-0.225463,0.514221,0.482928,0.382541,0.529189,0.186143,-1.53595,-0.660375,0.399087,0.100031,-0.478681,-1.89384,-0.993107,-0.621737,0.631271,-1.18519,0.449654,0.630922,-0.757707,-1.47567,0.551729,-0.951811,0.852838,-0.513992,1.23257,0.580951,0.480995,0.0392049,-0.626332,-0.0999973,0.384361,0.0241151,0.252302,0.109878,0.589399,0.804046,0.848615,-0.880824,-0.458242,-0.872063,0.343953,0.699821,0.750974,-0.836841,-1.52967,-1.25047,-1.44668,-0.5332,-1.00352,-0.0280863,-0.72683,0.298774,-1.2371,0.114746,-1.00697,-0.170951,0.0417047,-0.206856,-0.884188,0.547302,-0.635372,0.620118,-0.07057,0.0397458,0.791727,0.769943,0.541885,-0.114399,-0.279346,-0.505242,0.249707,0.135436,0.943961,-0.597175,-1.26826,-1.23427,-0.277343,1.05449,-0.0643158,-0.178843,-0.37508,-0.810688,1.13177,1.00293,1.30402,-0.892095,0.257699,0.728188,-0.123905,0 +0.180723,-0.892923,-1.22529,-0.819739,-0.128956,0.464659,-1.38298,0.781636,-1.29724,0.60824,-0.230317,-0.0472066,0.160367,0.308553,0.323133,-0.421266,-1.50951,0.786898,-0.261007,0.279795,-0.266985,-1.35295,-1.45922,1.00619,1.0161,-1.51379,-2.05102,-0.946305,-1.1986,1.18218,-0.363541,0.732475,-0.320279,1.36599,-1.06035,-0.341547,-0.436033,-1.95146,-0.888809,-2.15319,-1.05101,1.21895,0.108512,-0.116682,0.0596553,-0.70822,-0.946066,-0.296399,0.425554,0.795901,-0.0414161,-1.35845,-1.48129,-0.256921,1.17237,-0.710893,-1.54274,-0.87732,-0.602523,0.965269,-0.945461,-0.635741,0.505451,1.27007,-1.21864,0.136639,-0.145623,-2.67377,-0.940068,-2.62763,-1.07384,-0.68959,0.158687,0.301126,0.649488,-0.0978067,-1.37227,0.302169,-0.327114,-0.107914,-0.899296,-1.36237,-0.6324,0.884477,1.21473,-1.43953,-1.88076,-0.725872,-0.89117,1.11931,-0.621737,0.523601,-1.18519,0.170841,0.600252,-0.727487,-0.14771,-1.3953,-0.967238,-1.51793,-1.08317,1.19026,0.171822,-0.322147,0.026797,0.458426,-0.558464,-0.452448,0.894114,-0.0965015,0.123569,-0.928993,-1.24742,-1.39654,1.3363,0.727964,1.22022,-1.51994,-1.49795,-1.72165,1.03934,0.725284,0.837538,-1.44668,-0.584483,-0.974544,0.495941,1.27258,0.354562,-1.2371,0.05793,-1.00697,0.376809,0.438734,0.66922,-2.42092,-1.7929,-2.08858,-1.60724,-0.820103,-0.921344,-2.09021,-1.43322,-1.40145,-0.114399,-0.279346,-0.505242,-2.48682,-2.27822,-2.18152,-0.625679,-1.26826,-1.23427,-0.556858,1.02901,-0.138571,-0.258181,0.294814,1.38153,1.17751,1.02583,1.28372,-0.892095,0.195274,0.676472,-0.142359,0 +0.180723,1.20189,1.3769,-0.793254,-0.163793,0.551592,-1.38298,0.676076,-1.32838,0.691035,-0.163422,-0.155701,0.190545,0.320568,0.323133,-0.296018,-0.602158,0.832771,-0.248757,0.207531,-0.408305,-1.38723,-1.54474,0.955054,1.03743,-1.55852,0.980553,-0.0848611,-1.14695,1.19065,-0.363541,-0.971101,-0.480267,1.37499,-1.29902,1.86006,-0.418561,-0.246233,1.12378,0.517832,1.36335,-0.448832,0.170762,-0.0491826,-0.00322319,-0.46088,1.54193,-0.366661,0.398635,0.82604,-0.157381,-1.39144,-1.51315,-0.365595,1.20654,-0.903039,-0.76173,1.89144,-0.467147,0.997953,-0.895124,-0.274553,0.290186,1.30767,-1.19413,1.13586,-0.145623,1.2885,1.06023,1.5372,1.39604,0.658753,0.183678,0.264486,0.775599,0.236527,-1.19647,0.39597,-0.398213,-0.083798,-1.03664,-1.40464,-0.796109,0.884477,1.29582,-1.46796,1.96727,-0.376896,-0.841037,1.15842,-0.237844,-0.531563,-1.0901,0.290332,-1.97601,1.80094,-0.0149148,-1.3068,1.2234,-0.958969,1.30301,-0.523394,0.299675,-0.263948,0.0392049,0.620516,-0.443848,-0.4126,0.881129,-0.0965015,0.137261,-1.13145,-1.31886,-1.44851,1.3363,0.727964,1.22852,-0.936299,-1.08376,1.04684,1.03934,0.770839,0.884778,0.723266,-0.461402,1.0538,0.508722,1.28871,0.41035,-1.2371,-1.55186,-0.330211,0.300731,0.385796,0.694613,1.85312,-0.032662,2.0375,-1.64186,-0.881289,-1.03983,-0.00952972,-1.24877,-1.36924,-0.154676,-0.295417,-0.720161,1.84106,1.9423,0.816153,-1.22426,-1.26826,-1.20423,0.463373,-1.21303,-0.0112764,-0.194711,0.328309,1.439,0.15599,1.03728,0.471854,-0.344584,-0.241699,-0.133744,-1.47104,0 +-0.372131,0.18279,-0.632568,1.23281,-0.163793,0.703723,0.597106,0.00313242,0.561125,-0.0265259,0.561283,0.555538,0.673389,-0.111971,0.12646,-0.358642,0.866882,0.297593,0.167743,-0.197147,0.0927376,0.532042,0.764387,-0.851575,-0.892538,0.241992,0.91559,-0.3198,0.660994,-0.808916,2.87155,1.52038,1.47159,-0.495586,1.07513,0.58802,2.13237,0.47757,-0.930449,0.987733,-0.379697,0.779379,0.450887,0.232063,0.260867,0.461022,0.0819087,0.0268058,-0.382009,-0.19869,0.164744,0.598845,0.642807,0.431347,-0.194278,0.490019,0.845164,-0.260642,0.856526,-0.570903,2.06467,1.51333,-1.00141,-0.594677,1.74673,0.227478,-0.145623,-0.00354679,-1.03239,0.475893,-0.63647,-0.842811,0.695991,0.337766,0.397264,-0.18139,0.737321,-0.131662,0.502371,0.458812,0.439766,0.550324,0.211329,-0.961613,-0.741461,0.389609,0.188346,-0.565925,0.395592,-0.781865,2.24001,1.42803,1.7866,0.449654,-0.258503,0.400736,1.60928,0.591063,-0.936384,0.88175,-0.054269,0.95754,0.542595,0.492635,0.0516129,-0.426836,-0.132745,0.384361,-0.0278251,0.158393,0.150952,0.566904,0.87549,0.91098,-0.962561,-0.612295,-0.930182,0.315712,0.699821,0.76154,-0.856384,-0.516078,-0.881999,1.34522,1.68226,0.590181,-0.130336,-0.686519,0.242987,1.69491,0.228378,1.19537,-0.110089,0.147579,-0.206856,-0.788142,0.6287,-0.557521,0.585496,-0.0858666,-0.0129167,0.856345,0.790438,0.563358,-0.154676,-0.295417,-0.720161,0.32407,0.189372,0.990437,0.984792,1.52862,1.45448,-0.31927,1.28379,1.08133,-0.0836379,-0.274596,-0.605424,-1.00275,-1.60828,-0.0152651,0.687265,0.819522,0.0731194,1.48158,0 +0.733577,-0.77969,-0.647024,1.17984,-0.163793,0.39946,0.597106,-0.0232575,0.561125,-0.0403251,0.583581,0.555538,0.673389,-0.0999565,0.113349,-0.342986,0.866882,0.312883,0.155493,-0.182694,0.105585,0.532042,0.764387,-0.851575,-0.689945,0.241992,0.91559,-0.304138,1.59079,-0.715715,-0.363541,-0.949806,0.0796916,-0.504579,1.08769,0.58802,2.18479,0.47757,-0.76389,0.975367,-0.733018,0.107095,0.435325,0.243313,0.273442,0.49475,0.0819087,0.0268058,-0.408928,-0.228829,0.164744,0.587849,0.642807,0.407197,1.46848,0.490019,0.845164,-0.348739,0.88661,-0.549113,-0.653508,-1.01499,0.577207,-0.669868,1.55067,0.000381674,-0.145623,-0.0380013,1.24488,0.459812,-0.675061,-0.950066,0.708486,0.34998,0.383252,-0.18139,0.737321,-0.119936,0.502371,0.47087,0.439766,0.550324,0.211329,1.14088,-0.741461,0.399087,0.13788,-0.565925,1.83275,-0.766218,-0.621737,-0.29469,0.360136,0.476207,-0.595871,1.19654,1.43562,0.591063,-0.936384,0.88175,-0.820474,-0.0368011,0.542595,0.492635,0.0516129,-0.38943,-0.132745,0.384361,-0.0278251,0.171809,0.150952,0.578151,0.865283,0.900586,-0.962561,-0.581485,-0.415414,0.33454,0.708274,0.772107,-0.748895,1.23777,0.346242,0.280985,-0.810132,0.99585,-0.130336,-0.678457,0.256934,1.71556,-0.35872,1.26419,-0.110089,0.160813,-0.206856,-0.80415,0.6287,-0.414795,0.597037,-0.0858666,-0.0129167,0.830498,0.790438,0.563358,-0.154676,-0.295417,-0.720161,0.309197,0.175888,0.978818,0.0584151,1.25328,0.433052,-1.14384,-0.537869,-1.20997,-0.0677703,-0.174111,-0.408371,0.338949,1.3007,0.7966,-0.491991,-0.803522,-0.133744,-0.972784,0 +-0.15099,0.0242642,-0.950613,1.45793,-0.163793,1.32312,0.615875,-0.102427,0.467688,-0.826883,0.494387,0.278276,0.0698336,0.104298,0.165795,-0.40561,0.763185,-0.237586,0.571992,0.323153,0.131279,0.520618,0.710935,-0.527745,-0.71127,0.454475,0.644914,0.807908,2.00403,-0.664879,2.22882,1.4352,0.36767,-0.666455,0.371676,0.343397,-0.549602,0.833337,-0.916569,0.369442,-0.697686,1.07674,-0.3428,0.42331,0.122534,0.449779,-0.201157,0.434325,-0.00514623,-0.439803,-0.144496,0.620837,0.621566,0.515871,0.853485,0.153764,0.728462,-0.0970335,1.8192,-1.0067,1.95393,1.45915,-1.39606,-0.241276,0.901231,0.409154,-0.145623,-0.210274,-1.03239,-0.505013,-0.919477,-0.704912,0.371109,-0.101915,-0.065146,-0.682891,0.535153,0.302169,0.537921,0.53116,0.63433,0.497487,0.198736,0.956269,-0.974582,0.617067,-0.139682,-0.100624,1.4484,0.634233,1.75142,1.25576,1.39432,-0.081418,-0.258503,-0.787927,1.07809,0.758232,-0.890103,0.631181,-0.251293,1.08448,0.274104,0.434436,0.225324,-0.102655,-0.640333,0.291382,-0.0797654,0.171809,0.0688029,0.611893,0.916315,0.869403,-0.666263,0.296616,-0.73922,0.833461,0.792803,0.72984,-0.787982,1.34027,1.10208,0.667981,1.41558,-0.250134,-0.897205,-0.581711,-0.510146,0.311498,0.285194,-0.777561,-0.125305,-0.487667,-0.244946,0.0442565,0.964469,0.0523093,0.423926,-0.11646,0.158236,0.429869,0.534256,0.617041,-0.154676,3.89903,-0.0754024,-0.627768,-0.44438,0.525681,0.072667,0.760566,0.86866,0.295664,1.37296,1.20863,-0.321651,-0.531388,-0.884583,-0.0574631,-0.508826,0.390668,0.245044,0.382549,0.297222,1.0756,0 +0.125438,-0.824983,-0.979526,-1.70697,-0.163793,-1.89338,0.597106,-0.155207,0.457306,-0.730288,0.561283,0.31444,0.160367,0.0562381,0.100237,-0.264706,0.745903,-0.207004,0.522992,0.424323,0.182668,0.474921,0.689555,-0.757835,-0.828561,0.510392,0.558298,0.839233,-2.43833,-0.893643,-0.363541,-1.09887,-0.57626,-0.864304,-1.09803,-1.29558,-0.575811,0.796534,-0.944329,0.270515,-0.921456,-1.23747,-0.28055,0.43456,0.172837,0.562206,-0.186259,0.406221,-0.0455244,-0.304177,-0.144496,0.576853,0.568463,0.370973,-1.65204,0.073703,0.683577,-0.310983,-2.72341,-0.952222,-0.935393,-1.01499,0.541329,-0.963115,-1.42695,-0.272134,-0.145623,-0.279183,-1.03239,-0.617576,-0.945205,-0.996032,0.446082,-0.0652748,-0.0511336,-0.515724,0.535153,0.325619,0.526071,0.494986,0.65722,0.465785,0.186143,-1.51544,-0.903632,0.617067,-0.429861,-0.0715425,-1.91055,-1.0244,-0.621737,-1.28525,-1.23274,0.0779036,0.569582,-0.838294,-1.47567,0.748399,-0.90553,0.573357,-0.940878,-1.07345,0.274104,0.446076,0.175692,-0.0278445,-0.574838,0.304665,-0.0537952,0.238886,0.096186,0.645635,0.885696,0.786249,-0.543657,0.389048,-0.847155,0.842875,0.758992,0.666439,-0.846612,-1.52967,-1.26937,-1.48814,-0.871672,-1.17738,-0.858861,-0.904197,-0.370677,-1.22678,0.05793,-1.00697,-0.125305,-0.447964,-0.295733,-0.0197742,0.933945,0.00040888,0.377764,-0.177646,0.0792426,0.365252,0.493267,0.595568,-0.114399,-0.279346,-0.290322,-0.746747,-0.619673,0.421111,-0.753947,-1.23928,-1.23427,-1.19974,-0.920035,-1.23118,-0.289916,-0.386244,-0.851741,-1.46015,-0.863858,-0.989504,-0.765747,-0.179275,0.555801,-0.0500892,0 +0.236008,-0.892923,-1.23975,-1.20376,-0.163793,0.99712,-1.36421,0.636491,-1.47373,0.884225,-0.0853765,-0.408854,-0.201766,0.404672,0.178906,-0.233394,-1.53543,0.404628,0.106493,0.626662,-1.28192,-1.35295,-1.11713,1.44932,0.962787,-1.13356,-2.02937,-0.899317,-0.406551,1.09745,-0.363541,-1.04563,-0.640255,0.754459,-1.1106,-1.27111,-0.462241,-1.96373,-0.944329,-2.14082,-1.07456,-1.19869,0.170762,0.277063,-0.0157989,-0.101114,-0.975863,-1.51896,0.627444,0.780831,-0.698552,-1.40243,-1.31136,-0.812365,0.580155,0.249837,-1.52478,-0.87732,0.54065,0.954374,-0.945461,-1.01499,0.541329,1.30015,-0.973569,-0.181295,-0.104166,-2.67377,-1.03239,-2.61155,-1.09957,-1.02668,-0.278654,0.105712,0.229115,-0.432141,-1.46017,0.595297,-0.315264,-0.3129,-1.57455,-1.3518,-0.720551,0.453723,1.30595,-1.34476,-1.86814,-0.565925,-1.34237,1.2836,-0.621737,-1.26372,-1.19708,0.250502,0.538913,-0.848368,0.444762,-1.40514,-0.951811,-1.50829,-1.09412,-1.07345,-0.275662,-0.124271,0.138469,0.75767,-0.574838,-1.39552,0.842174,-0.0965015,0.109878,-1.35639,-1.46175,-1.34457,1.23413,0.188779,1.1704,-1.40698,-1.46414,-1.68995,1.10774,0.896114,1.2438,-1.50196,-0.861415,-1.09045,0.70044,1.02266,0.745075,-1.22678,0.0200527,-1.00697,-0.551341,-0.0377011,0.605736,-2.40492,-1.81325,-2.08858,-1.01866,0.250658,-0.276229,-2.09021,-1.42297,-1.40145,-0.114399,-0.295417,-0.147042,-2.5017,-2.26473,-2.15828,-0.768199,-1.1958,-1.21925,-1.22769,-0.869079,-1.2524,-0.289916,-0.408574,1.31584,-1.46015,-0.852406,-0.989504,-0.765747,-0.241699,0.521324,-0.0500892,0 +0.180723,1.19056,1.40581,-1.23025,-0.163793,1.08405,-1.36421,0.623296,-1.46335,1.3672,-0.141123,-0.420908,0.567767,0.416687,2.21119,-0.170769,-0.67993,0.511664,0.0329926,2.33209,-1.20483,-1.38723,-1.2561,1.42376,0.984112,-1.07764,0.980553,-0.210162,-0.165493,1.06356,-0.363541,-0.981748,-0.512264,0.736473,-1.28646,1.86006,-0.462241,-0.246233,1.08214,0.530198,1.37513,-0.474689,0.948887,0.299562,0.248291,-0.101114,1.69091,-1.35033,0.560148,2.01654,-0.685667,-1.41343,-1.37508,-0.715766,0.580155,0.105727,-0.76173,1.85368,0.706109,1.17227,-0.895124,-0.274553,0.254309,1.31519,-0.912301,1.09044,-0.145623,1.2885,1.06023,1.56936,1.42177,0.674075,-0.141204,0.105712,2.41505,-0.0978067,-1.36348,0.595297,-0.374513,0.458812,-1.52877,-1.39407,-0.821295,0.371674,1.3769,-1.3258,1.96727,-0.23149,-1.27553,1.3149,-0.249477,-0.510029,-1.10198,0.462931,-1.97601,1.81101,0.557127,-1.31663,1.19255,-0.968607,1.30301,-0.586862,1.83391,0.748709,0.882945,0.807544,-0.378352,-0.970473,2.59516,0.708429,1.52011,-1.42388,-1.48216,-1.39654,1.09109,0.281211,1.18701,-0.719786,-0.855526,1.01514,1.0882,0.975835,1.29104,0.709445,-0.471659,1.08278,0.802689,0.966222,0.759022,-1.22678,-1.53292,-0.295799,-0.383969,0.0284704,0.631129,1.82111,-0.0123124,2.02453,-1.16869,0.0823959,-0.434216,0.00339378,-1.24877,-1.36924,-0.114399,-0.311488,-0.361962,1.87081,1.9423,0.816153,-1.22426,-1.18131,-1.20423,0.449397,-1.23851,-0.0324922,-0.242313,-0.531388,1.32405,0.15599,1.02583,0.431261,-0.344584,-0.304124,-0.150983,-1.45259,0 +-0.372131,0.148821,-0.777134,1.23281,-0.163793,0.71459,0.625259,1.46777,0.332723,-0.564697,0.438641,0.00101302,-0.533722,0.236463,-0.0571012,0.392849,0.875524,-0.0846777,0.596492,0.727831,0.144127,0.486345,0.753697,-0.860097,-0.892538,0.499209,0.872282,0.0247772,0.59212,-0.910588,2.70016,1.52038,1.50359,-0.990208,1.03744,0.58802,2.15858,0.538909,-0.930449,0.826977,-0.509248,0.792308,-0.825238,0.45706,0.00935252,0.562206,0.1564,0.673216,0.613985,0.283536,-0.183151,0.477889,0.876457,-0.268996,-0.194278,1.67492,0.836187,-0.134789,0.826443,-1.13743,2.04453,1.5043,-0.965528,-0.918001,1.72222,0.182058,-0.145623,-0.261956,-1.03239,0.138204,-0.752245,-0.842811,0.0587233,-0.138555,-0.135208,-0.515724,0.640632,0.642198,0.419423,0.35029,0.371096,0.550324,-0.0405303,-1.01289,-0.731325,0.53177,0.100031,2.1241,0.378881,-0.805337,2.18185,1.44956,1.81037,-0.400061,-0.227833,0.47125,1.61949,0.640231,-0.951811,0.823926,-0.13089,0.978696,-0.135024,0.23656,0.126061,0.745201,0.227479,0.0390109,0.218891,0.0779002,0.150952,0.251978,0.518269,0.890192,-0.226924,0.281211,-0.913577,0.588707,0.758992,0.793241,-0.866156,-0.493301,-0.881999,1.31758,1.672,0.590181,-1.34455,-0.992881,-1.10986,1.68459,0.209439,1.22978,0.209438,-0.43473,0.212137,-0.500004,0.801672,-0.168268,0.97788,0.587183,0.210899,0.623722,0.718707,0.552622,-0.154676,-0.295417,-0.290322,0.0563654,0.000594887,0.874248,1.05605,1.48515,1.49954,-0.403124,1.29653,1.06012,-0.162975,-0.386244,-0.613635,-0.987507,-1.57392,0.0456248,0.729381,0.881947,0.0731194,1.51849,0 +-0.372131,0.18279,-0.603655,1.23281,-0.163793,0.703723,0.578337,-0.181597,0.550743,-0.13692,0.60588,2.09857,0.613033,0.789151,0.375579,-0.264706,0.858241,0.282302,1.90724,-0.0526191,0.850724,0.520618,0.796459,-0.843053,-0.892538,0.208442,0.926417,-0.351125,0.643775,-0.800443,2.87155,1.52038,1.47159,-0.432634,1.06257,0.58802,2.13237,0.47757,-0.930449,1.01246,-0.344364,0.779379,0.357512,0.254563,1.84541,0.607177,0.0521124,0.16733,1.09852,-0.334316,1.94288,0.576853,0.70653,0.395122,-0.194278,0.441983,0.836187,-0.273227,0.841485,-0.603588,2.06467,1.51333,-1.00141,-0.5646,1.73448,0.227478,-0.145623,0.0825895,-1.03239,0.540214,-0.597878,-0.842811,0.695991,1.86444,0.25714,-0.264974,0.746111,-0.084761,2.06654,0.482928,0.302426,0.550324,1.67211,-0.961613,-0.771868,0.389609,0.200962,-0.725872,0.378881,-0.781865,2.22838,1.42803,1.7866,0.529315,-0.227833,0.400736,1.60928,0.58123,-0.920957,0.88175,-0.0433232,0.95754,0.465883,0.457715,0.659602,-0.414367,-0.00175434,0.410926,-0.0797654,1.88899,0.821838,0.791851,0.793839,0.91098,-0.93191,-0.381216,-0.930182,0.268644,0.682915,0.76154,-0.856384,-0.516078,-0.881999,1.3314,1.68226,0.590181,-0.155898,-0.662333,0.270881,1.68459,0.228378,1.19537,0.681121,1.90774,0.631129,-0.80415,0.588001,-0.609422,0.735525,0.480107,1.50113,0.882192,0.800685,0.563358,-0.154676,-0.295417,-0.720161,0.383559,0.229825,1.00206,0.984792,1.52862,1.45448,-0.291318,1.28379,1.08133,-0.0677703,0.00452694,-0.39195,-0.987507,-1.60828,0.00503152,0.687265,0.819522,0.0731194,1.48158,0 +0.788863,-0.791014,-0.777134,1.17984,-0.163793,0.442926,0.634643,1.48097,0.322341,-0.550897,0.438641,0.0130679,-0.518633,0.236463,-0.0571012,0.439817,0.875524,-0.0846777,0.596492,0.727831,0.131279,0.486345,0.753697,-0.868619,-0.561991,0.499209,0.861455,0.0561024,1.62523,-0.893643,-0.363541,-1.00304,0.0796916,-0.990208,1.02488,0.612482,2.211,0.538909,-0.680611,0.814612,-0.791905,0.0165952,-0.809675,0.45706,0.0219282,0.573449,0.141502,0.659164,0.627444,0.298605,-0.183151,0.477889,0.865837,-0.281071,1.46848,1.65891,0.836187,-0.310983,0.916693,-1.12654,-0.744114,-1.01499,0.577207,-0.933039,1.51391,0.000381674,8.80915,-0.29641,1.27565,0.106043,-0.765109,-0.965388,0.0712188,-0.126342,-0.135208,-0.515724,0.631842,0.642198,0.419423,0.35029,0.371096,0.550324,-0.0279374,1.11011,-0.72119,0.541248,0.0243318,2.09502,1.84947,-0.828808,-0.621737,-0.337758,0.348249,-0.386784,-0.626541,1.23683,1.45605,0.640231,-0.951811,0.823926,-0.853311,-0.142582,-0.122239,0.23656,0.126061,0.745201,0.211105,0.0390109,0.218891,0.0913157,0.150952,0.251978,0.518269,0.879797,-0.216707,0.281211,-0.191241,0.598121,0.767445,0.803807,-0.846612,1.24916,0.374586,0.225699,-0.861415,0.966874,-1.33176,-0.968695,-1.09592,1.69491,-0.35872,1.27566,0.194222,-0.43473,0.212137,-0.500004,0.811847,-0.0774418,0.97788,0.60248,0.210899,0.610798,0.70846,0.552622,-0.114399,-0.295417,-0.290322,0.0266204,-0.0263733,0.862629,0.0299111,1.19531,0.40301,-1.15782,-0.677996,-1.22057,-0.13124,-0.35275,-0.589003,0.232223,1.28924,0.756007,-0.513049,-0.865947,-0.150983,-0.935876,0 +0.180723,1.20189,1.3769,-0.76677,-0.163793,0.508126,-1.38298,0.649686,-1.33877,1.14641,-0.163422,-0.288305,0.763922,0.392657,2.30297,-0.186426,-0.576233,0.832771,-0.126257,2.20201,-0.549624,-1.39865,-1.53405,0.869836,1.03743,-1.48024,0.99138,-0.116186,-1.11251,1.19065,-0.363541,-0.971101,-0.496266,1.40196,-1.29902,1.86006,-0.418561,-0.233965,1.12378,0.517832,1.35158,-0.448832,1.0267,0.198314,0.311169,-0.382181,1.52703,-0.408819,0.465932,2.03161,-0.299116,-1.39144,-1.49191,-0.546718,1.2407,-0.646844,-0.743776,1.89144,-0.542356,0.954374,-0.895124,-0.274553,0.254309,1.30015,-1.21864,1.18128,-0.145623,1.2885,1.06023,1.52112,1.38317,0.658753,0.321128,0.166779,2.49913,0.320111,-1.19647,0.454596,-0.421912,0.314116,-1.11675,-1.40464,-0.871667,0.894733,1.235,-1.45849,1.96727,-0.405978,-0.790903,1.14278,-0.22621,-0.510029,-1.0901,0.263779,-2.00668,1.79087,-0.0762051,-1.3068,1.2234,-0.958969,1.29206,-0.502237,2.0129,1.07462,1.06906,0.770138,-0.296483,-0.306339,2.59516,0.668183,1.31473,-1.27766,-1.35969,-1.4693,1.35674,0.635533,1.22022,-0.889231,-1.02459,1.05741,1.03934,0.805005,0.856434,0.723266,-0.440889,1.08278,0.649315,1.29677,0.438243,-1.22678,-1.57079,-0.330211,0.224653,0.279922,0.66922,1.85312,-0.032662,2.02453,-1.56107,-0.590654,-0.947675,-0.00952972,-1.24877,-1.36924,-0.114399,-0.311488,-0.720161,1.84106,1.92882,0.816153,-1.22426,-1.26826,-1.20423,0.463373,-1.20029,-0.0112764,-0.178843,0.573937,1.439,0.15599,1.03728,0.492151,-0.344584,-0.241699,-0.133744,-1.48949,0 +-0.372131,0.21676,-0.849417,1.23281,-0.163793,0.692857,0.578337,0.504541,0.69609,0.373652,0.204505,0.531429,0.703567,0.0682531,0.270687,0.126696,0.832317,1.81138,-0.199757,-0.182694,0.413918,0.474921,0.336771,-0.851575,-0.892538,0.409742,0.818147,0.682607,0.643775,-0.808916,2.93583,1.52038,1.47159,-0.711421,1.07513,0.58802,2.13237,0.661588,-0.944329,0.653856,-0.603467,0.753522,0.684325,0.119565,0.311169,0.0225563,-0.0670732,0.940212,-0.166659,0.404092,0.254939,0.642829,0.313572,0.419272,-0.194278,0.185788,0.791302,0.129501,0.841485,-0.353006,2.06467,1.52236,-0.965528,-0.65483,1.73448,0.227478,-0.145623,-0.29641,-1.03239,-0.135163,-0.790837,-0.842811,0.53355,0.53318,0.691525,-0.264974,0.623052,0.7829,0.312775,0.277942,0.989124,0.455218,-0.0405303,-0.951357,-0.518475,0.484383,0.100031,0.190189,0.378881,-0.797513,2.26328,1.42803,1.7866,0.104457,-0.258503,0.400736,1.59906,0.728732,-0.936384,0.727553,-0.152781,0.936384,0.644877,0.387877,0.0516129,1.82996,1.29178,1.34071,0.283816,0.0779002,0.0277283,0.454431,0.926521,0.578365,-0.686697,-1.32094,-0.913577,0.664016,0.767445,0.835508,-0.866156,-0.516078,-0.891447,1.34522,1.69251,0.590181,0.0102571,-0.686519,0.159305,1.69491,0.228378,1.20684,0.681121,0.557842,0.796187,-0.275897,0.90342,-0.0904169,0.343142,0.281252,-0.157738,0.494487,0.585493,0.574095,-0.154676,-0.295417,-0.648521,-0.151849,-0.0937938,0.758059,0.984792,1.52862,1.45448,-0.403124,1.28379,1.07073,-0.0995054,-0.810511,-0.777846,-1.03325,-1.64264,-0.0355618,0.687265,0.819522,0.0558807,1.48158,0 +0.733577,-0.77969,-0.863873,1.17984,-0.163793,0.39946,0.587722,0.491346,0.69609,0.373652,0.215655,0.531429,0.718656,0.0682531,0.270687,0.142352,0.832317,1.79609,-0.212007,-0.182694,0.413918,0.474921,0.336771,-0.860097,-0.51934,0.409742,0.818147,0.698269,1.60801,-0.707243,-0.363541,-0.939159,0.0796916,-0.693434,1.08769,0.58802,2.18479,0.673855,-0.625091,0.64149,-0.803682,0.107095,0.684325,0.119565,0.311169,0.0450417,-0.0670732,0.940212,-0.166659,0.389023,0.254939,0.642829,0.313572,0.407197,1.46848,0.169776,0.782325,-0.235472,0.901652,-0.331217,-0.653508,-1.01499,0.577207,-0.707464,1.55067,-0.0450375,-0.145623,-0.313637,1.24488,-0.167324,-0.803701,-0.950066,0.558541,0.545394,0.691525,-0.18139,0.623052,0.7829,0.289075,0.29,1.00057,0.455218,-0.0405303,1.14088,-0.447526,0.493861,0.0117153,0.175649,1.83275,-0.797513,-0.621737,-0.29469,0.360136,0.131011,-0.626541,1.19654,1.43562,0.738565,-0.936384,0.727553,-0.83142,-0.0368011,0.644877,0.387877,0.0516129,1.84243,1.3409,1.34071,0.283816,0.0779002,0.0414198,0.454431,0.926521,0.578365,-0.686697,-1.32094,-0.589771,0.67343,0.775897,0.835508,-0.641405,1.23777,0.346242,0.294806,-0.810132,0.99585,0.0230383,-0.718768,0.187199,1.70524,-0.35872,1.26419,0.665905,0.557842,0.78349,-0.259889,0.90342,-0.0125662,0.343142,0.281252,-0.157738,0.494487,0.585493,0.574095,-0.154676,-0.295417,-0.648521,-0.166722,-0.120762,0.74644,0.0584151,1.25328,0.433052,-1.12986,-0.537869,-1.20997,-0.0836379,-0.788181,-0.753214,0.338949,1.3007,0.7966,-0.491991,-0.803522,-0.150983,-0.991238,0 +-0.15099,-0.00970569,-0.950613,1.45793,-0.163793,1.33398,0.625259,-0.115622,0.498834,-0.633693,0.483238,1.99007,0.220722,0.512807,0.362468,-0.499547,0.737261,-0.268167,2.09099,0.164173,0.786488,0.509194,0.668174,-0.391396,-0.721933,0.510392,0.601606,0.792245,2.00403,-0.588624,2.18597,1.4352,0.351671,-0.630483,0.371676,0.343397,-0.549602,0.870141,-0.916569,0.319979,-0.744795,1.08966,-0.124925,0.367061,1.68192,0.393566,-0.216055,0.364063,1.6369,-0.454873,1.73672,0.620837,0.568463,0.68492,0.842096,0.185788,0.719485,-0.122204,1.8192,-0.886853,1.94386,1.45012,-1.39606,-0.181123,0.901231,0.409154,-0.145623,-0.141365,-1.03239,-0.537174,-0.932341,-0.704912,0.433587,1.59574,0.0889907,-0.766474,0.508783,0.149742,2.07839,0.482928,0.760225,0.497487,1.65952,0.976781,-0.934039,0.636022,-0.190148,0.0447828,1.4484,0.642057,1.73979,1.25576,1.38243,0.0115196,-0.258503,-0.787927,1.08831,0.758232,-0.890103,0.611906,-0.284131,1.08448,0.363601,0.457715,0.547931,-0.327088,-0.722202,0.317947,-0.0797654,1.87558,0.945062,0.825593,0.936727,0.807038,-0.748,0.265806,-0.730917,0.852289,0.792803,0.69814,-0.758667,1.32888,1.10208,0.654159,1.41558,-0.250134,-0.718269,-0.517214,-0.342783,0.301174,0.285194,-0.777561,0.376809,1.49748,0.12326,0.108287,0.974644,0.0912347,0.296979,0.831929,1.68545,0.429869,0.524009,0.617041,-0.114399,3.89903,-0.0754024,-0.70213,-0.511801,0.479206,0.0584151,0.760566,0.86866,0.295664,1.37296,1.20863,-0.337518,-0.542553,-0.892793,-0.0422165,-0.497373,0.390668,0.245044,0.382549,0.297222,1.0756,0 +1.06529,1.34909,1.66603,-0.713801,-0.094119,0.39946,-1.38298,0.808026,-1.34915,0.856626,-0.330661,-0.143646,0.416878,0.332582,2.14563,-0.452579,-0.299708,0.695154,-0.261007,2.40435,-0.421152,-1.38723,-1.49129,0.929489,1.0161,-1.45787,0.839801,-0.476426,-1.12973,1.2076,3.25719,1.58426,-1.66418,1.38398,-0.997541,0.172161,-0.462241,-0.172626,0.860058,0.456003,1.55179,0.120024,0.637637,0.0070666,0.361472,-0.696977,2.12296,-0.450976,0.439013,1.9864,-0.157381,-1.41343,-1.48129,-0.208621,1.26348,-0.454698,-1.049,1.70266,-0.66269,0.8999,-0.915259,1.26953,-1.50369,1.25504,-1.21864,0.136639,-0.145623,1.32295,0.208823,1.71408,1.64045,0.766008,0.0962097,0.252273,2.31697,-0.264974,-1.10857,0.313894,-0.386363,0.748203,-1.04808,-1.3835,-0.745737,0.966525,1.14378,-1.43005,1.94204,-0.23149,-0.740769,1.11148,2.13531,1.96638,-1.23274,-0.015034,-0.68788,-0.123082,-0.260076,-1.2773,1.14627,-1.10353,1.42341,1.04216,1.69327,0.457715,0.758866,0.483363,-0.460221,-0.505579,2.59516,0.748676,1.65702,-1.08646,-1.31886,-1.43812,1.39761,0.666343,1.22022,-0.983367,-1.19364,0.772107,1.07843,0.793616,0.82809,-0.52065,1.96944,1.89412,0.610971,1.29677,0.354562,-1.20613,0.379887,0.644782,0.224653,0.346094,0.618433,1.62902,0.160659,1.95965,-1.56107,-0.636544,-0.934509,-0.0612237,-1.3,-1.34776,-0.154676,-0.295417,-0.218682,1.97491,1.99624,0.723202,-1.21001,-1.23928,-1.21925,0.700961,1.07997,0.794922,-0.353386,0.339474,1.34048,0.186483,-1.08146,-0.238528,0.560916,1.44377,0.486847,1.42622,0 +0.567721,-0.134262,-0.198869,0.186671,-0.163793,-0.828461,0.925557,0.0295224,0.550743,0.166664,1.59817,0.555538,1.75979,1.40191,2.21119,-0.233394,0.840958,0.282302,0.167743,0.0485504,0.105585,0.600587,0.753697,-0.826009,-0.871212,0.241992,0.872282,3.84645,0.127221,-0.783497,-0.363541,-0.428086,0.0156963,-0.88229,0.133005,0.294472,-0.53213,0.293552,-0.76389,0.592027,-0.615244,0.688879,0.980012,1.91954,0.889652,0.550964,0.0819087,0.0268058,-0.395468,-0.0781338,0.151859,0.576853,0.685289,0.467572,-0.957323,0.506031,0.845164,1.40061,-0.40698,-0.124215,-0.0595368,-0.825365,0.828349,-0.940558,0.276298,0.0912201,-0.145623,0.461589,0.855073,0.797501,-0.417782,-0.61298,1.84557,0.545394,1.93863,-0.264974,0.719742,0.630473,0.502371,0.458812,0.462656,0.772239,0.198736,-0.694955,-0.406983,0.493861,0.81917,1.25166,0.395592,-0.961812,-0.458873,-0.273156,0.205603,-0.107972,-0.319842,0.803672,-0.382656,0.571396,-0.782113,0.94921,-0.382643,0.555572,2.28139,2.25023,2.03688,-0.264746,0.0309933,0.371078,1.50441,0.708429,0.301559,0.578151,0.865283,0.890192,-0.788869,-0.59689,-0.896971,1.19118,0.767445,1.68085,-0.836841,-0.948846,-0.995375,0.142772,-0.779361,0.561204,0.0486006,-0.880011,-0.231208,0.166962,-1.26778,-0.720208,-0.14052,0.147579,0.212137,-0.580043,0.598176,-0.45372,0.562415,-0.07057,-0.0260823,0.404022,0.89291,0.606305,1.69805,-0.231134,1.71559,0.562029,0.297245,0.525681,-0.0270967,0.543192,0.538199,-0.906252,0.239202,-0.679572,-0.13124,-0.218771,-0.810688,0.918321,1.31215,1.12135,-0.828921,-0.553823,0.211029,-0.806699,0 +0.678292,0.0129409,0.798636,-0.727043,-0.163793,1.75778,-1.38298,2.37823,-1.35953,0.442649,-0.408706,0.0853973,0.160367,0.296538,0.165795,-0.593483,-1.56135,0.572827,0.865992,0.568851,-0.215596,-1.38723,-1.35232,0.835749,1.12273,-1.31249,-1.66125,-0.899317,0.041129,1.50414,0.086373,1.58426,-1.77617,1.06023,-0.871925,-0.0724618,1.582,-1.48529,0.735139,-1.52253,0.421165,0.624237,0.0773875,-0.19543,0.248291,-0.831889,-0.91627,-0.465028,2.25603,0.750692,0.061664,-1.40243,-1.46005,0.443422,1.27487,-0.278564,-1.50683,-0.764053,1.20249,0.987058,-0.935393,1.3508,-1.57545,1.61596,0.178269,0.136639,-0.145623,0.0136805,0.0139215,-0.183405,0.598472,0.689397,0.0837142,0.362193,0.467326,-0.348557,-1.46017,0.114566,0.0994785,1.19435,-0.887851,-1.37294,-0.443506,0.925501,1.235,-1.38267,-0.530793,-0.478681,-0.690636,1.27578,1.86775,1.85871,-1.22086,0.184118,-0.135823,-0.898735,1.8953,-1.4543,1.02285,-1.48902,0.263159,1.27488,-0.0455274,-0.391985,0.0019811,0.0843718,-0.738576,-0.864211,0.881129,0.534028,1.56118,-0.782777,-1.23721,-1.37575,1.39761,0.697154,1.22852,-1.36933,-1.46414,-1.60542,1.37158,0.93028,0.988706,-1.10114,1.78482,1.25664,0.329786,1.36127,0.242987,-0.0911374,0.531396,0.5989,0.315947,0.451968,0.580342,0.348402,-1.57923,0.0652845,-1.53799,-1.08014,-0.802853,-1.46989,-1.45371,-1.44439,-0.114399,-0.295417,-0.0037626,-0.122104,-0.255603,-1.60057,-1.05324,-0.905969,-1.21925,0.463373,1.28379,0.65702,4.31167,1.53412,2.24364,0.0645099,-0.978385,0.268888,0.266102,1.2565,0.624756,1.14941,0 +0.236008,0.205437,0.856463,-1.01837,-0.163793,0.74719,-1.41114,1.26985,-1.28686,1.13261,-0.152272,0.145672,0.0849225,0.260493,0.401802,-0.311674,-1.51815,0.649281,-0.346757,-0.168241,-0.0357347,-1.38723,-1.02091,1.33854,1.05875,-0.663857,-1.35809,-0.492089,-0.19993,1.33469,-0.363541,-0.971101,-0.176289,1.78867,-1.34927,1.56651,0.0706595,-1.49755,0.651859,-1.47307,0.550716,-0.410047,0.544262,-0.22918,0.172837,0.0562844,-0.91627,-0.24019,0.223663,0.47944,0.190514,-1.35845,-1.36446,0.455497,0.853485,1.41872,-1.50683,-0.449421,0.555691,1.47733,-0.905191,-0.419028,0.577207,1.38286,-0.765257,0.863346,1.34684,0.0309077,0.629399,-0.0869221,0.68852,0.735363,0.021237,0.38662,0.859674,0.738028,-1.38985,0.0559408,-0.137517,0.277942,-0.658951,-1.39407,-0.279797,0.730636,1.32622,-1.27842,-0.253231,2.28404,-1.14184,1.26796,-0.528672,-0.531563,-1.07821,0.555868,-1.20927,1.59947,0.567342,-1.41497,1.02285,-1.50829,0.4164,-0.0156449,0.734374,0.0154055,0.0888367,0.0344979,-0.673081,-0.664971,0.595458,0.0779002,0.548007,-0.591573,-1.14536,-1.33417,0.794793,0.789585,1.20361,-0.616236,-1.33735,-1.09821,1.39112,0.543066,1.04539,0.695623,-0.861415,0.879945,1.23725,1.20002,0.41035,-1.22678,-1.91169,-0.651385,0.468103,0.531374,0.593039,0.268364,-1.58941,-0.142317,-1.15715,0.00591297,-0.500044,-1.45696,-1.46396,-1.43366,-0.114399,-0.295417,0.282797,0.0266204,-0.0533415,-1.51924,-1.08174,-1.09436,-1.21925,0.365543,-1.03468,-0.0749237,5.45413,2.84041,2.04658,0.15599,1.22053,0.837194,-0.597281,-0.179275,0.090358,-1.30495,0 +0.236008,0.194114,0.856463,-0.687316,-0.163793,0.312528,-1.4299,1.41499,-1.40106,0.497846,-0.129974,-0.396799,0.477233,0.308553,-0.0308782,0.0014472,-1.50951,0.710444,0.351492,0.698926,-0.999277,-1.38723,-0.988841,0.264786,1.49593,-1.10001,-1.60711,-0.727028,-0.802576,2.42767,-0.363541,-0.981748,-0.176289,2.61604,-1.3367,1.56651,-0.453505,-1.48529,0.651859,-1.48543,0.538939,-0.422975,0.513137,0.142065,-0.0409503,-0.0336573,-0.901372,-0.94281,0.72166,0.47944,-0.685667,-1.39144,-1.25826,1.13169,1.36598,-0.262552,-1.55171,-0.537518,-0.617565,2.53412,-0.905191,-0.428058,0.577207,1.78138,-1.15737,0.863346,-0.145623,0.0309077,0.639656,-0.103003,0.68852,0.735363,0.171182,0.0446455,0.285165,0.152944,-1.38985,0.607022,-0.291565,0.0729559,-1.41432,-1.39407,-0.947225,0.833196,1.6607,-1.37319,-0.265847,1.51339,-0.456679,1.70609,-0.528672,-0.574631,-1.0901,0.144288,-1.1786,1.60955,0.189386,-1.40514,1.02285,-1.50829,0.4164,-0.0368011,-0.00717157,-0.17083,-0.0600586,0.944697,-0.312857,-0.651688,0.725308,0.0913157,0.452166,-1.17643,-1.41072,-1.31339,1.38739,0.527696,1.18701,-1.46346,-1.54867,-1.51032,2.27058,1.04417,1.07374,0.681802,-0.881929,0.850968,2.65596,2.50609,1.47031,-1.22678,-1.89275,-0.639915,-0.170951,0.0681733,0.643826,0.268364,-1.56906,-0.129342,-0.741683,-0.330612,-0.802853,-1.45696,-1.46396,-1.43366,-0.114399,-0.263276,1.78723,0.011748,-0.0668256,-1.54248,-1.06749,-1.25377,-1.21925,0.351567,-1.06016,-0.0749237,-0.226446,1.57878,1.25837,0.140743,1.22053,0.816897,-0.61834,-0.241699,0.107597,-1.2865,0 +-0.0404188,0.0129409,-0.762677,0.173429,-0.163793,-0.828461,0.972478,-0.0364525,0.384633,-0.440503,0.695074,0.41088,-0.141411,0.0322082,0.664033,3.25791,0.815034,0.175266,0.449492,0.193078,0.0927376,0.600587,0.764387,-0.732269,-0.871212,0.588675,0.482509,3.18862,0.127221,-0.842807,-0.363541,1.30743,-0.560261,-0.846318,0.133005,-0.145849,-0.523394,0.637052,-0.930449,0.19632,-0.261923,1.27066,-0.15605,0.490809,0.336321,1.43914,0.0670106,0.617007,-0.0589837,-0.500082,-0.0671862,0.554861,0.759632,0.624545,-0.957323,0.425971,0.773348,0.582571,-0.391939,-0.603588,-0.0696041,1.20632,-0.857896,-0.978154,0.276298,0.272897,-0.0212512,-0.175819,-1.03239,-0.00652,-0.57215,-0.628302,0.0462279,0.0568589,-0.191258,1.82461,0.552733,1.02913,0.537921,0.482928,0.451211,0.814508,0.17355,-0.705211,-0.802275,0.702364,0.112647,2.67664,0.378881,-1.00875,-0.26111,1.14809,0.205603,0.157564,0.262884,-0.717413,-0.372441,0.669731,-0.936384,0.814289,-0.119944,1.25373,0.414742,0.597392,0.585155,1.97958,1.42277,0.317947,0.0890404,0.332795,0.0140367,0.533162,0.834664,0.91098,-0.707132,0.265806,-0.86376,1.55831,0.767445,0.941175,-0.875928,-0.960235,-1.01427,-0.907647,1.05659,-0.916591,-0.168679,-0.863887,-0.00805756,0.177286,0.47458,-0.662856,0.0116354,-0.262684,0.059776,-0.179851,0.883071,0.013384,0.65474,-0.00938362,0.105574,0.223093,0.749449,0.638515,0.892515,-0.247205,2.43199,0.219962,0.256793,0.397874,-0.0270967,0.543192,0.538199,0.40747,1.37296,1.08133,0.328918,0.0715163,-0.84353,0.674375,0.224145,0.837194,-0.112944,0.444973,0.538563,0.761882,0 +0.0701521,0.092204,1.68049,0.213155,-0.163793,-0.795861,0.709718,-0.339937,0.623417,1.2568,0.538984,0.157727,1.71452,0.116313,0.454248,-0.139457,0.763185,0.129394,0.584242,0.14972,-0.0871237,0.4178,0.753697,-0.826009,-0.860549,0.409742,1.078,-0.194499,0.110003,0.0214133,-0.363541,1.30743,-0.496266,0.952308,0.107882,-0.243698,-0.549602,2.17053,-0.874929,2.34797,0.432942,1.27066,1.75814,0.592058,0.210564,0.719604,-0.111768,0.307854,0.0621507,0.404092,-0.118726,0.521873,0.812734,0.370973,-0.934546,0.313885,0.881073,0.116916,-0.437064,1.06332,0.000867143,1.23341,-0.64263,-0.354064,0.239537,0.272897,-0.145623,3.35577,-1.04265,3.097,0.894344,0.628109,1.25829,-0.162982,0.341214,-0.264974,0.781271,-0.178562,0.478672,0.507044,0.0506368,0.423516,-0.0279374,-0.602651,0.363331,0.645499,0.339744,-0.536844,0.395592,-0.445444,-0.423973,1.12655,0.229377,2.00304,0.324224,-0.848368,-0.464377,0.620564,0.714312,1.14196,0.0114057,1.25373,0.580951,0.725429,0.597563,0.196588,0.260227,0.596883,-0.0148401,0.265717,0.164644,0.162,0.426413,0.786249,-0.359748,-0.103921,-0.896971,-0.0137645,0.801256,0.539638,-0.533916,-0.948846,-0.749727,-0.866183,1.06685,-0.887615,1.73571,0.522803,2.11187,0.125666,0.436703,-0.75462,0.224653,0.00200183,-0.0544946,2.30134,0.781323,-0.829998,1.03558,0.0670993,0.224064,2.60102,1.07736,0.767354,-0.114399,-0.279346,-0.648521,2.33185,1.2681,1.86185,-0.0128447,0.514209,0.538199,0.77084,1.3857,1.10255,-0.115373,1.48946,-0.745004,0.704868,0.212692,0.816897,-0.218235,0.320124,0.538563,0.651159,0 +0.567721,-0.0436756,0.986572,0.173429,-0.163793,-0.795861,1.01002,0.372592,0.664944,2.19515,0.315998,0.459099,1.62399,0.248478,-0.0308782,-0.421266,0.832317,0.0529396,-0.383507,1.19032,0.426766,0.63486,0.379532,-0.868619,-0.817898,0.387375,1.86837,0.10309,0.127221,-0.622515,-0.363541,-0.374849,0.0156963,-0.45062,0.120444,0.27001,-0.523394,0.722927,-0.500172,1.61839,0.856928,0.727665,2.2717,0.547058,0.22314,-0.0898708,0.0074178,0.195435,-0.166659,2.34807,0.254939,0.631833,0.515361,0.286449,-0.957323,0.233825,0.916981,0.934959,-0.391939,1.12869,-0.0796714,-0.852455,0.828349,-0.842809,0.276298,0.0912201,-0.145623,1.32295,0.834558,2.18042,0.984391,0.291023,0.571036,0.582034,1.70042,-0.348557,0.640632,-0.143387,0.0994785,0.386464,0.966234,0.825075,-0.0783093,-0.705211,1.05256,0.835048,2.16913,0.437381,0.395592,-0.946164,-0.621737,-0.273156,0.193716,0.237225,-0.197163,0.773452,-0.352011,0.689398,-0.242166,0.872112,0.635315,0.576729,0.951724,0.643951,0.175692,-0.00290757,-0.476595,0.158555,0.582473,0.0376536,0.21941,0.510667,0.946934,0.682307,1.02979,-0.566079,-0.921879,0.551053,0.716727,1.75482,-0.61209,-0.937458,-0.948135,0.0598439,-0.810132,0.474275,1.39062,-0.670395,0.912438,0.177286,-1.17308,-0.731679,0.0116354,0.637248,0.059776,0.0922795,0.822022,-0.116367,0.30852,0.281252,-0.210401,1.08897,0.677718,0.617041,-0.114399,-0.279346,-0.576881,2.31698,2.25244,1.827,-0.0128447,0.543192,0.523178,0.183858,0.264679,-0.223434,-0.0995054,0.417628,-0.802477,0.948814,1.31215,1.14164,-0.871037,-0.491399,0.245506,-0.751337,0 +0.567721,-0.723074,1.62266,0.173429,-0.163793,-0.806727,0.784792,-0.0760374,0.550743,0.152864,0.906911,0.41088,0.0849225,-0.184061,0.546029,4.08768,0.823675,0.267011,0.449492,-0.197147,-0.0357347,0.463497,0.807149,-0.800444,-0.871212,0.331459,1.20792,-0.0691985,0.127221,-0.800443,-0.363541,-0.417439,0.0156963,-0.13586,0.133005,0.27001,-0.505922,2.13373,0.207703,2.39744,-0.261923,0.701808,0.124075,0.299562,0.273442,1.81015,0.0521124,0.139225,-0.233956,-0.304177,-0.0800712,0.521873,0.759632,0.576246,-0.957323,0.457995,0.899027,-0.0592777,-0.391939,-0.200479,-0.0897387,-0.9879,0.828349,-0.677388,0.276298,0.0912201,0.227492,3.30409,0.865331,3.097,0.701384,0.214413,0.521055,-0.00420797,0.0889907,2.32611,0.754901,0.278718,0.549771,0.458812,0.210866,0.508055,0.17355,-0.715467,-0.447526,0.683409,0.276661,-0.66771,0.378881,-0.907045,-0.621737,-0.29469,0.193716,1.1666,-0.258503,0.793599,-0.352011,0.591063,0.77602,1.19978,-0.787637,0.555572,0.644877,0.71379,0.361812,1.08185,1.43914,0.543753,0.0371002,0.292548,0.096186,0.476925,0.712189,0.879797,-0.758218,-0.396621,-0.888668,-0.107901,0.758992,0.550205,-0.856384,-0.948846,-0.995375,0.0736652,-0.799875,0.503252,0.0102571,-0.589774,0.298774,0.18761,-1.21096,-0.708738,-0.0187957,-0.0244668,-0.130675,2.17328,0.760973,-0.557521,0.827851,-0.07057,0.171402,2.60102,1.13884,0.756618,-0.114399,-0.279346,-0.576881,2.37647,1.349,1.93157,-0.0128447,0.543192,0.538199,-0.486979,0.239202,-1.14632,0.804944,1.57878,-0.342687,0.933567,1.31215,1.12135,-0.849979,-0.491399,0.228267,-0.769791,0 +0.0148667,-0.428668,-0.531371,0.199913,0.114904,-0.871927,0.578337,-0.128817,0.903729,0.0286711,1.36403,0.242111,1.6089,1.42594,2.3292,-0.342986,1.37673,0.144684,0.571992,0.207531,-0.0999709,0.577739,0.796459,-0.766357,-0.871212,0.253175,0.904763,-0.507751,0.110003,-0.783497,-0.363541,1.29678,-0.512264,-0.972222,0.120444,-0.194773,-0.540866,0.673855,-0.347493,1.08666,-0.238368,1.27066,0.871075,1.81829,0.95253,0.461022,2.80828,0.0830154,-0.00514623,-0.0329251,-0.131611,0.752789,0.780873,0.68492,-0.945935,0.409958,0.82721,-0.424251,-0.422022,-0.211374,-0.0192675,1.21535,-0.714385,-0.963115,0.251791,0.272897,-0.145623,0.39268,-0.437428,0.684938,-0.37919,-0.459759,1.65814,0.227846,2.00869,-0.432141,0.94828,0.161467,0.514221,0.446754,0.0620818,0.560891,0.0602135,-0.643675,-0.538747,0.399087,0.125264,-0.68225,0.395592,-0.993107,-0.435607,1.12655,0.21749,-0.3204,0.293554,-0.787927,-0.433731,0.640231,-0.874676,0.910661,-0.13089,1.25373,2.26861,2.19204,2.09892,-0.22734,0.227479,0.557035,1.71217,0.97674,0.315251,0.319462,0.589713,0.848615,-0.809303,-0.242568,-0.880366,0.183922,0.64065,0.666439,-0.856384,-0.960235,-1.01427,-0.893825,1.04634,-0.916591,0.0486006,-0.831638,-0.105686,0.146314,0.455642,-0.731679,0.0724977,-0.0377011,0.275621,0.204333,0.862721,1.34982,0.954798,-0.00938362,0.23723,0.998503,0.851921,0.659988,-0.114399,-0.279346,-0.505242,0.457922,0.243309,1.02529,-0.0128447,0.5287,0.538199,0.449397,1.37296,1.09194,-0.178843,-0.542553,-0.83532,0.704868,0.235598,0.837194,-0.176119,0.382549,0.538563,0.688067,0 +0.236008,0.194114,0.856463,-0.64759,-0.163793,0.71459,-1.38298,1.1379,-1.29724,1.09121,-0.174571,0.0371777,0.0396559,0.296538,0.375579,-0.436922,-1.50951,0.741026,-0.346757,-0.0670718,-0.177054,-1.38723,-0.94608,2.26742,1.21869,-0.071141,-1.29313,-0.586065,-0.750921,1.1144,-0.363541,-0.971101,-0.160291,1.28505,-1.3367,1.56651,-0.348672,-1.48529,0.651859,-1.47307,0.550716,-0.410047,0.310825,-0.161681,0.122534,-0.258511,-0.901372,-0.282347,0.398635,0.690414,0.061664,-1.36945,-1.25826,0.455497,0.842096,1.65891,-1.46194,-0.487177,-0.181354,1.28122,-0.281018,-0.428058,0.577207,1.33775,-1.10836,0.863346,-0.145623,0.0309077,0.629399,-0.0869221,0.68852,0.735363,0.0462279,0.34998,0.887699,0.0693602,-1.37227,0.208368,-0.267865,0.0488399,-0.796291,-1.3835,-0.430913,0.976781,1.40731,-1.16469,-0.253231,2.15318,-0.239434,1.17407,-0.528672,-0.553097,-1.0901,0.343439,-1.1786,1.59947,0.281321,-1.41497,1.00743,-1.50829,0.4164,-0.0156449,0.632092,-0.135911,0.0764288,0.296336,-0.607586,-0.545427,0.725308,0.0913157,0.57539,-0.749035,-1.2168,-1.32378,1.04001,0.851207,1.43609,-0.390309,-1.22746,-1.06651,0.970936,0.554455,0.92257,0.695623,-0.871672,0.850968,0.662096,1.21615,0.22904,-1.22678,-1.89275,-0.651385,0.422456,0.491671,0.643826,0.268364,-1.57923,-0.142317,-0.753224,0.449514,-0.460547,-1.45696,-1.46396,-1.43366,-0.114399,0.909884,0.784276,0.011748,-0.0533415,-1.46115,-1.06749,-1.25377,-1.21925,0.351567,-1.03468,-0.0749237,-0.226446,0.696751,1.5129,0.15599,1.22053,0.837194,-0.61834,-0.179275,0.107597,-1.2865,0 +0.0148667,-0.496608,1.3769,0.186671,-0.128956,-0.850194,0.531416,-0.181597,0.727236,-0.192117,0.951508,0.519374,-0.0659663,0.0922831,0.650921,3.63365,0.184211,-0.222295,-0.0405073,-0.00926071,0.439613,0.429224,0.32608,-0.749313,-0.871212,0.789975,0.4392,0.901883,0.110003,-0.800443,-0.363541,1.29678,-0.528263,-0.657462,0.120444,-0.194773,-0.540866,2.41589,-0.278094,1.9028,-0.309032,1.28359,-0.0782375,0.42331,0.411775,1.70896,-0.186259,0.46243,-0.0186056,-0.54529,0.216284,0.631833,0.472879,0.672845,-0.945935,0.2018,0.575852,-0.37391,-0.40698,-0.320322,-0.0394021,1.19729,-0.714385,-0.948077,0.264044,0.318316,0.0202061,3.35577,-1.03239,2.63067,0.43124,0.551498,0.358614,0.520967,0.20109,1.65745,0.719742,0.911876,0.336474,0.482928,0.977679,0.402381,-0.0153444,-0.664187,-0.640104,0.683409,-0.581259,0.582787,0.395592,-1.00875,-0.44724,1.12655,0.205603,0.582422,0.324224,-0.767781,-0.403086,0.895901,0.88401,0.77574,-0.579667,1.25373,0.657663,0.643951,0.411443,1.76762,0.767815,0.543753,0.166951,0.171809,-0.0407295,0.533162,0.916315,0.588759,-0.788869,-0.0114892,-0.872063,0.984079,0.708274,0.455104,-0.866156,-0.960235,-1.01427,-0.921468,1.02582,-0.945568,0.0102571,-0.799389,0.0198363,0.156638,0.455642,-0.720208,-0.079658,0.359328,0.135956,2.81358,1.38164,0.415613,0.181572,0.0823959,-0.157738,2.45886,0.882663,0.863984,-0.114399,-0.279346,-0.361962,1.51387,-0.323023,1.07177,-0.0270967,0.5287,0.538199,0.631082,1.37296,1.08133,0.424123,0.71908,-0.679319,0.735361,0.258503,0.85749,-0.176119,0.382549,0.538563,0.706521,0 +0.733577,-0.0776455,0.78418,-1.09783,-0.163793,1.01885,-1.00761,0.636491,-1.49449,1.07741,-0.386408,-0.191865,-0.2923,0.416687,0.257575,-0.656107,-1.58728,0.358756,-0.212007,0.525492,-0.678096,-1.23871,0.219176,2.1055,0.994775,1.10311,-1.22816,-0.821004,-0.42377,1.05509,1.09332,1.57362,-1.80817,0.790432,-0.934733,-0.0724618,-0.418561,-1.47302,0.749019,-1.36177,0.385833,0.688879,0.124075,0.0970652,0.197988,-0.562065,-0.931168,-1.30817,0.73512,0.795901,-0.337772,-1.39144,0.0905418,0.503796,0.80793,2.25136,-1.11184,-0.776638,0.54065,1.16138,-0.935393,1.31468,-1.68308,1.31519,-0.924554,0.182058,-0.145623,0.0136805,0.0652113,-0.215565,0.572744,0.658753,-0.45359,0.288913,0.495351,-0.766474,-1.5129,0.349069,-0.327114,-0.083798,-1.34565,-1.12989,-0.254611,0.607563,1.34649,-0.0653065,-0.619108,1.12079,-1.15855,1.27578,1.66999,1.85871,-1.25652,0.356716,-0.166493,-0.798001,0.536697,-1.46414,1.02285,-1.28664,0.20843,1.33835,-0.186165,-0.263948,0.175692,0.321273,-0.771324,-1.4885,0.881129,0.0510691,0.287868,-0.490346,-1.15556,-0.461058,1.08087,0.466074,1.19531,0.146267,-0.821714,-1.19331,1.03934,0.839171,1.20601,-1.18407,1.7438,1.16971,0.726002,1.01459,0.647447,-0.906732,0.550335,0.575959,-0.216598,0.200516,0.593039,0.36441,-1.57923,0.117185,0.908635,1.50498,0.329389,-1.44404,-1.42297,-1.44439,-0.0741224,1.48843,1.71559,-0.181594,-0.323023,-1.3101,-1.06749,-1.18131,-1.23427,0.435421,1.30927,0.635804,-0.448591,-1.01148,1.37332,0.0950031,-0.886764,0.390668,0.308219,1.31892,0.641995,1.18632,0 +0.236008,0.18279,0.856463,-1.08458,-0.163793,1.08405,-1.41114,1.19068,-1.45297,1.20161,-0.118824,-0.517348,-0.231944,0.368627,0.336244,-0.0924892,-1.52679,0.526955,0.143243,0.323153,-1.06351,-1.3758,-0.678819,1.01471,1.95443,-1.16711,-1.5638,-0.272812,-0.0105264,1.03814,-0.363541,-0.971101,-0.176289,0.691507,-1.34927,1.59097,-0.48845,-1.48529,0.665739,-1.47307,0.538939,-0.422975,0.248575,0.232063,-0.0409503,-0.0224146,-0.931168,-1.33628,0.788957,0.765762,-0.737207,-1.40243,-1.19454,0.733219,0.637099,0.073703,-1.53376,-0.39908,0.766276,1.29211,-0.905191,-0.437088,0.577207,1.27007,-0.912301,0.863346,-0.145623,0.0309077,0.639656,-0.103003,0.68852,0.735363,-0.378617,0.0690722,0.71955,-0.0978067,-1.4338,0.618748,-0.493011,-0.276726,-1.50588,-1.3835,-0.808702,0.638331,1.39717,-1.36371,-0.278464,2.34221,-1.19197,1.30708,-0.540305,-0.553097,-1.07821,0.529315,-1.20927,1.60955,0.516267,-1.41497,1.02285,-1.49866,0.405454,-0.0368011,0.222963,-0.0893521,0.101245,0.869886,-0.460221,-1.14315,0.894114,0.0242381,0.342634,-1.04147,-1.39031,-1.23023,1.37717,1.05148,2.25806,-1.17164,-1.4895,-1.25671,1.18591,1.07833,1.31939,0.695623,-0.871672,0.879945,0.892157,0.901725,0.703235,-1.22678,-1.89275,-0.639915,-0.414401,-0.0112325,0.618433,0.284372,-1.58941,-0.129342,-0.568573,-0.16235,-0.526376,-1.45696,-1.45371,-1.43366,-0.0338459,-0.215064,3.64987,0.011748,-0.0668256,-1.53086,-1.08174,-1.16682,-1.21925,0.351567,-1.06016,-0.0855315,-0.226446,-0.598378,1.22553,0.140743,1.22053,0.816897,-0.61834,-0.179275,0.090358,-1.2865,0 +0.567721,-0.77969,-0.849417,0.173429,0.428439,-0.806727,0.568953,0.544126,0.748,2.09856,-0.107675,0.519374,1.09588,0.164373,0.270687,-0.155113,1.26439,0.0682304,-0.236507,1.55164,0.426766,0.49777,0.336771,-0.826009,-0.78591,0.420925,0.80732,0.745257,0.127221,-0.758079,-0.363541,-0.545207,0.0156963,-0.540551,0.133005,0.343397,-0.523394,0.30582,-0.236454,0.629124,-0.803682,0.624237,1.96045,0.378311,0.336321,-0.393424,1.88459,0.406221,-0.166659,2.43848,0.242054,0.741793,0.302951,0.479647,-0.957323,0.233825,0.773348,-0.222886,-0.391939,0.932584,-0.0796714,-0.99693,0.828349,-0.910481,0.276298,0.0912201,0.0202061,-0.158592,0.916621,-0.135163,-0.803701,-0.888777,0.146191,0.557607,1.58832,1.99178,0.667002,-0.295814,0.277225,0.314116,0.989124,0.44465,-0.0531233,-0.725723,1.04242,0.474906,0.0243318,0.219271,0.378881,-0.977459,-0.621737,-0.316224,0.193716,0.131011,-0.350512,0.864113,-0.362226,1.0434,-0.874676,0.708279,-0.842366,0.492104,0.811086,0.667231,0.324588,-0.040313,3.43675,0.942233,0.686353,0.0644847,0.0140367,0.465678,0.916315,0.557576,1.2137,0.0655372,-0.880366,0.664016,0.758992,0.835508,-0.700036,-0.948846,-1.00482,0.156593,-0.799875,0.590181,0.981625,-0.718768,0.215093,0.18761,-1.28671,-0.651385,-0.0340113,0.491671,-0.105282,0.172318,0.64905,0.259911,0.366223,0.281252,-0.157738,0.378175,0.59574,0.724408,-0.114399,-0.279346,-0.505242,-0.166722,-0.120762,0.74644,-0.0270967,0.543192,0.538199,-1.05999,0.162768,-1.15693,-0.0836379,-0.140617,-0.83532,0.857334,1.31215,1.10105,-0.828921,-0.553823,0.19379,-0.825153,0 +0.0148667,-0.145585,-0.87833,0.186671,-0.163793,-0.817594,0.587722,-0.142012,1.67199,0.0562696,1.09645,-0.0954262,1.18641,0.572882,0.362468,0.173664,1.11748,-0.237586,0.620992,0.539945,0.0670431,1.46883,0.807149,-0.800444,-0.871212,0.409742,0.742358,1.02718,0.110003,-0.554733,-0.363541,1.31808,-0.544262,0.610569,0.133005,-0.170311,-0.53213,1.69209,-0.70837,0.505466,-0.556357,1.25774,0.7777,0.547058,0.273442,1.63026,-0.141564,0.631059,0.344798,0.0273532,-0.286231,1.8194,0.780873,0.0811757,-0.945935,-0.0864186,0.728462,-0.122204,-0.40698,-0.102425,-0.0494694,1.23341,-0.822018,-0.444294,0.264044,0.272897,-0.145623,-0.158592,-1.03239,-0.312048,-0.855157,-0.643624,1.23329,-0.175195,-0.0231087,-0.515724,1.85364,0.0676659,0.383874,0.482928,0.405431,0.825075,0.00984157,-0.674443,-0.619833,0.522293,0.0117153,-0.0424612,0.395592,-0.68798,-0.423973,1.14809,0.205603,1.9101,0.293554,-0.777854,-0.403086,2.28242,-0.828394,0.689004,-0.229402,1.25373,0.197393,0.504274,0.73405,0.558174,-0.214614,0.0788589,0.0371002,0.238886,0.123569,0.420689,0.804046,0.952557,-0.431268,0.373643,-0.86376,0.767566,0.767445,0.835508,-0.817297,-0.960235,-0.995375,-0.880004,1.08737,-0.858639,0.789908,-0.106044,1.5261,0.166962,0.455642,-0.697267,0.118144,-0.553839,-0.244946,0.300379,1.98195,0.208011,0.862473,-0.00938362,0.23723,0.72711,1.04662,2.03428,-0.114399,-0.279346,-0.361962,-0.389808,-0.228635,0.630251,-0.0270967,0.5287,0.538199,0.40747,1.3857,1.09194,-0.226446,1.81324,-0.433003,0.659128,0.20124,0.816897,-0.134002,0.382549,0.538563,0.724975,0 +0.678292,0.0129409,0.798636,-0.541652,-0.163793,0.301661,-1.39237,1.24346,-1.39068,0.484046,-0.241467,-0.288305,0.371611,0.308553,0.0609025,-0.32733,-1.50951,0.695154,0.00849264,0.67002,-0.690944,-1.38723,-1.29886,2.26742,1.25068,-1.11119,-1.6829,-0.883654,-0.320459,1.17371,1.73606,1.58426,-1.79217,1.41995,-0.947294,-0.0479995,-0.444769,-1.47302,0.735139,-1.53489,0.421165,0.624237,0.264137,0.0295663,-0.0157989,-0.438395,-0.886474,-0.675814,0.748579,0.645205,-0.376427,-1.41343,-1.34322,1.49394,0.944595,-0.166479,-1.52478,-0.764053,-0.57244,0.932584,-0.57297,1.3508,-1.61132,1.22496,-1.23089,0.136639,-0.145623,0.0136805,0.0241795,-0.183405,0.598472,0.689397,0.171182,0.178993,0.313189,-0.264974,-1.42501,0.44287,-0.386363,0.012666,-1.25409,-1.37294,-0.909446,1.48958,1.16405,-1.35423,-0.530793,1.28074,0.178346,1.05672,1.87938,1.85871,-1.24463,-0.0946948,-0.135823,-0.898735,-0.311151,-1.43464,1.02285,-1.49866,0.263159,1.27488,-0.0455274,-0.252308,-0.0228348,0.682859,-0.492969,-0.625123,0.816204,0.0242381,0.438475,-1.21018,-1.39031,-1.40693,1.40782,0.712559,1.42779,-1.47288,-1.4895,-1.61598,1.02957,0.565843,0.73361,-0.990574,1.79508,1.25664,0.59819,1.28871,0.41035,-1.20613,0.531396,0.449784,0.0572821,0.240219,0.643826,0.348402,-1.56906,0.0652845,-1.09944,-0.422392,-0.934509,-1.48281,-1.45371,-1.43366,-0.114399,1.05452,2.64691,-0.122104,-0.255603,-1.61219,-1.06749,-1.22478,-1.21925,0.463373,1.28379,0.65702,-0.353386,0.953543,1.33226,0.0645099,-0.989838,0.268888,0.266102,1.2565,0.624756,1.16787,0 +-0.0404188,-0.338081,-0.83496,0.173429,0.91616,-0.817594,0.597106,0.121887,0.540361,-0.730288,0.505536,0.290331,0.0698336,0.0922831,0.428025,0.0484154,1.28167,-0.207004,0.571992,1.78288,0.131279,0.566315,0.710935,-0.749313,-0.860549,0.454475,0.601606,0.82357,0.127221,-0.927534,-0.363541,1.28614,-0.560261,-0.918263,0.133005,-0.145849,-0.523394,0.403963,-0.77777,0.332344,-0.709463,1.28359,-0.358363,0.42331,0.13511,0.49475,2.82318,0.448378,0.210204,-0.379525,-0.144496,0.752789,0.610945,0.68492,-0.957323,0.12174,0.701531,-0.285813,-0.391939,-0.995802,-0.0796714,1.17923,-0.822018,-0.985673,0.276298,0.318316,0.144578,0.237635,-0.570782,-0.312048,-0.932341,-0.567014,0.383605,-0.101915,0.117016,2.15895,0.614262,0.325619,0.537921,2.33986,0.599995,0.48692,0.186143,-0.725723,-0.86309,0.60759,-0.215381,0.0593235,0.378881,-1.00875,-0.458873,1.10502,0.205603,-0.0415876,0.293554,-0.697267,-0.362226,1.02374,-0.612415,0.602269,-0.371697,1.25373,0.248534,0.434436,0.212916,0.0594348,2.68355,0.570318,1.06292,0.574274,2.12253,0.600646,0.906108,0.859009,-0.186056,0.173374,-0.855458,0.824048,0.767445,0.69814,-0.875928,-0.948846,-1.01427,-0.94911,1.00531,-1.00352,-0.948329,-0.95257,-0.496199,0.18761,0.455642,-0.662856,-0.0948736,-0.474433,-0.232249,0.620533,0.64905,0.208011,0.435467,-0.131756,0.145071,0.274787,0.513762,0.681461,-0.114399,-0.279346,-0.147042,-0.64264,-0.484833,0.490825,-0.0270967,0.543192,0.538199,0.435421,1.37296,1.07073,-0.162975,-0.475564,-0.868162,0.750608,0.281408,0.85749,-0.134002,0.382549,0.538563,0.743429,0 +0.236008,0.205437,0.856463,-0.938919,-0.163793,1.07319,-1.42052,0.412176,-0.965017,0.842827,-0.0407793,-0.384744,-0.2923,0.813181,0.375579,0.0640714,-0.878683,1.56673,0.216743,0.612209,-0.318374,-1.38723,-0.935389,1.3641,1.90111,-1.26776,-1.59628,-0.97763,-0.113837,1.07203,-0.363541,-0.960453,-0.176289,0.682514,-1.36183,1.59097,-0.48845,-1.48529,0.651859,-1.47307,0.550716,-0.397118,0.139637,0.479559,0.160261,0.539721,-0.722594,0.954264,0.613985,0.81097,-0.350657,-1.30347,-1.3326,-0.727841,0.876262,-0.0383821,-1.54274,-0.562689,0.706109,0.987058,-0.905191,-0.419028,0.541329,1.28511,-0.949061,0.908766,-0.145623,0.0309077,0.608883,-0.0869221,0.68852,0.735363,-0.391113,0.0812856,0.453314,0.152944,-0.967928,0.501496,-0.149367,-0.397306,-0.441497,-1.39407,-0.443506,0.730636,1.35663,-1.40162,-0.253231,-0.958523,-1.19197,1.30708,-0.528672,-0.510029,-1.06632,0.343439,-1.27061,1.5894,0.495837,-1.41497,1.00743,-1.50829,0.4164,0.0266675,-0.198951,-0.100992,0.535523,1.43097,1.91398,1.64622,0.868144,0.0644847,0.123569,-0.749035,-1.16577,-1.32378,1.35674,0.604722,2.33278,-1.51053,-1.53176,-1.59485,1.17614,1.06694,1.30994,0.723266,-0.840902,0.879945,0.802689,0.950098,0.828757,-1.2371,-1.93063,-0.662856,0.696336,-0.0641697,0.720007,0.268364,-1.48766,-0.142317,-1.04174,0.204769,-0.157738,-1.45696,-1.46396,-1.43366,-0.114399,-0.295417,-0.648521,0.011748,-0.0533415,-1.53086,-1.08174,-1.18131,-1.21925,0.365543,-1.00921,-0.0749237,-0.178843,0.138506,1.25016,0.15599,1.22053,0.85749,-0.597281,-0.179275,0.090358,-1.32341,0 +0.678292,0.00161761,0.798636,-0.316534,-0.163793,1.02972,-1.38298,0.834415,-1.25571,1.18781,0.360595,-0.155701,-0.1565,0.596912,0.506694,2.78823,-1.49222,0.43521,-0.212007,0.3087,-0.549624,-1.38723,-1.34163,2.17368,1.13339,-1.36841,-1.67207,-0.899317,0.213314,1.01272,1.54324,1.58426,-1.77617,0.610569,-0.947294,-0.0724618,-0.549602,-1.47302,0.735139,-1.52253,0.421165,0.624237,0.326387,0.198314,0.487229,1.09061,-0.677899,-0.324504,0.465932,0.569857,-0.711437,-1.35845,-1.44943,0.0208013,0.864874,-0.134455,-1.50683,-0.764053,0.826443,1.34659,-0.432027,1.35983,-1.57545,1.16481,-0.949061,0.136639,-0.0212512,0.0136805,0.0241795,-0.183405,0.598472,0.689397,-0.191186,0.667527,0.789612,1.82461,-1.42501,1.04085,-0.350814,-0.119972,-0.647506,-1.37294,-0.947225,1.79727,1.33636,-1.40162,-0.54341,-0.275112,-0.790903,1.2836,1.90265,1.85871,-1.23274,0.489484,-0.135823,-0.908808,0.301751,-1.44447,1.02285,-1.48902,0.252213,1.25373,0.580951,0.108523,0.336996,2.10427,0.898806,-0.625123,0.725308,0.0644847,-0.0681126,-0.98523,-1.17597,-1.38614,0.907182,0.327427,1.1704,-1.43522,-1.46414,-1.60542,1.16637,1.24916,1.37607,-0.907647,1.79508,1.25664,0.943281,0.764668,0.619553,-1.16483,0.531396,0.403902,-0.323107,0.266688,0.66922,0.348402,-1.57923,0.0782596,-1.45721,-0.391798,-0.921344,-1.48281,-1.44346,-1.44439,-0.114399,0.0742088,-0.0754024,-0.136977,-0.269087,-1.60057,-1.05324,-1.13784,-1.21925,0.463373,1.28379,0.667627,0.217845,0.540442,0.905316,0.0645099,-0.989838,0.248591,0.245044,1.19407,0.624756,1.14941,0 +0.0148667,-0.168232,-0.849417,0.199913,0.463276,-0.86106,0.578337,0.135082,0.758382,0.346054,0.159908,0.507319,0.673389,-0.0398816,0.29691,-0.374298,1.2471,0.00706718,-0.248757,-0.0237135,0.426766,0.486345,0.32608,0.0176524,-0.871212,0.443292,0.796493,0.713932,0.110003,-0.834334,-0.363541,1.31808,-0.544262,-0.864304,0.120444,-0.170311,-0.540866,0.30582,-0.72225,0.616758,-0.485693,1.25774,0.6532,-0.116682,0.336321,-0.404667,1.88459,0.476483,-0.180118,0.404092,0.229169,0.719801,0.28171,2.12183,-0.945935,0.185788,0.773348,-0.210301,-0.422022,-0.396586,-0.0293348,1.23341,-0.822018,-0.963115,0.251791,0.272897,0.0616633,-0.175819,-1.03239,-0.167324,-0.790837,-0.643624,0.508559,0.557607,0.691525,2.07536,0.667002,-0.366164,0.253526,0.41058,1.01201,0.44465,-0.0657163,-0.612907,-0.528611,0.493861,0.0495647,0.42284,0.395592,-1.00093,-0.423973,1.14809,0.21749,0.0380732,0.262884,-0.777854,-0.423516,1.03357,-0.859248,0.708279,-0.196564,1.25373,0.632092,0.376237,0.0764288,-0.015376,3.43675,0.902385,0.322771,0.158393,0.356325,0.431936,0.895902,0.495211,-0.543657,0.882017,-0.805641,0.67343,0.767445,0.824941,-0.866156,-0.960235,-1.01427,-0.866183,1.08737,-0.858639,-0.0408675,-0.8397,0.103518,0.156638,0.455642,-0.697267,-0.0340113,0.478437,-0.105282,0.188326,0.64905,0.246936,0.412386,0.327141,-0.144573,0.365252,0.59574,0.713671,-0.114399,-0.279346,0.139517,-0.196466,-0.120762,0.734821,-0.0270967,0.5287,0.538199,0.421446,1.3857,1.09194,-0.115373,-0.92216,-0.84353,0.659128,0.189787,0.816897,-0.134002,0.382549,0.538563,0.724975,0 +0.567721,-0.791014,-0.516915,0.146944,-0.128956,-0.763261,0.60649,-0.102427,0.571507,1.47759,0.405193,-0.372689,-0.0206997,0.308553,0.139572,-0.296018,0.884165,-0.207004,0.596492,1.91296,0.118432,0.600587,0.775078,-0.647051,-0.78591,0.387375,0.818147,0.40068,0.127221,-0.961425,-0.363541,-0.555854,0.0156963,-1.04417,0.133005,0.367859,-0.505922,0.968284,0.651859,0.703319,-0.815459,0.637165,0.699887,0.479559,-0.00322319,0.37108,0.186196,0.560797,0.587066,2.22751,-0.299116,0.752789,0.844596,0.18985,-0.945935,-0.0704064,0.800279,-0.285813,-0.361855,-0.0152665,-0.119941,-0.99693,0.828349,-0.993192,0.300805,0.0912201,-0.145623,0.961179,1.0192,0.282928,-0.803701,-0.888777,0.146191,-0.236262,0.873686,-0.515724,0.869171,0.513221,0.194277,0.687913,0.313871,0.529189,-0.103495,-0.766748,0.768759,0.541248,-0.0135176,-0.0279205,0.378881,-1.03223,-0.621737,-0.316224,0.181829,-0.453168,-0.289173,0.864113,-0.311151,0.935235,-0.211312,0.766102,-0.853311,0.492104,0.248534,0.364598,0.31218,0.333741,-0.149119,0.145272,0.439637,0.0510691,-0.054421,0.28572,0.579507,0.900586,1.36696,1.68309,-0.822247,0.616948,0.758992,0.793241,-0.836841,-0.948846,-1.01427,0.115129,-0.820388,0.532228,-0.84608,-1.05738,-0.956447,0.197934,-1.2299,-0.605503,0.224653,-0.487667,0.148653,1.91715,1.29006,2.1413,0.966339,0.158879,0.210899,0.740033,0.636729,0.649251,-0.114399,-0.279346,-0.218682,-0.0923592,-0.107278,0.781297,-0.0270967,0.543192,0.523178,-1.05999,0.162768,-1.15693,-0.289916,-0.654202,-0.876372,0.857334,1.3236,1.10105,-0.849979,-0.491399,0.228267,-0.788245,0 +0.567721,-0.824983,-0.430175,0.160187,0.498113,-0.784994,0.578337,0.715661,0.934874,-0.468102,0.60588,-0.0351517,0.401789,-0.111971,0.0609025,-0.202082,1.39401,-0.0999685,0.608742,-0.0959774,-0.0614292,0.566315,0.753697,-0.468092,-0.871212,0.297909,0.850628,-0.601727,0.127221,-0.859752,-0.363541,-0.65168,-0.000302499,-0.7384,0.145567,0.392322,-0.505922,0.735195,-0.416893,1.16085,-0.733018,0.585451,0.061825,0.344562,-0.12898,0.61842,2.95726,0.181382,0.452473,-0.500082,-0.0929562,0.686813,0.833975,1.95278,-0.968712,0.329898,0.809256,-0.524933,-0.376897,-0.799695,-0.099806,-0.99693,0.792472,-0.963115,0.288552,0.0912201,-0.145623,0.564953,0.988427,0.813581,-0.57215,-0.812167,0.583532,-0.236262,0.103003,0.152944,0.94828,0.126292,0.300925,0.699971,0.0735267,0.592593,-0.0783093,-0.756492,-0.842818,0.389609,-0.0135176,0.611869,0.378881,-0.977459,-0.621737,-0.359292,0.193716,0.330163,-0.319842,0.904407,-0.331581,0.561563,-0.843821,0.939573,-0.875203,0.449791,0.376387,0.457715,0.0392049,-0.06525,0.980675,0.610166,0.0500852,0.0779002,0.424783,0.206989,0.518269,0.817432,-0.492571,0.111753,-0.880366,0.099199,0.55612,0.507938,-0.866156,-0.948846,-0.995375,0.101308,-0.830645,0.561204,-0.488208,-0.815514,-0.0220045,0.197934,-1.24884,-0.571092,0.179007,0.160813,-0.0417979,-0.0357818,0.618526,0.960567,1.0125,0.128286,0.184567,1.15359,0.933899,0.702935,-0.114399,-0.198993,2.43199,0.517412,0.21634,1.03691,-0.0270967,0.543192,0.538199,-1.07396,0.0990741,-1.17814,-0.194711,-0.207606,-0.83532,0.811594,1.3236,1.08075,-0.828921,-0.553823,0.211029,-0.788245,0 +0.567721,-0.870277,1.13114,0.133702,-0.128956,-0.741528,0.625259,-0.207987,0.727236,-0.219715,0.494387,0.531429,0.401789,0.0322082,0.218241,-0.546515,0.357039,-0.405785,0.0574926,0.395417,0.465307,0.429224,0.197795,-0.45957,-0.828561,0.756425,0.374238,0.557306,0.14444,-0.893643,-0.363541,-0.577149,-0.000302499,-0.846318,0.145567,0.318935,-0.479714,2.41589,0.651859,1.56893,-0.956788,0.637165,0.108512,0.310812,0.336321,0.37108,0.469262,0.51864,-0.0859025,0.14791,0.203399,0.510877,0.462259,0.938492,-0.854825,0.2018,0.611761,-0.436836,-0.346813,-0.7888,-0.150143,-0.99693,0.828349,-0.985673,0.313059,0.136639,-0.145623,3.21795,0.957653,2.30906,-0.392054,-0.337182,0.521055,0.42326,0.243127,-0.682891,0.781271,-0.0261352,0.443122,0.784377,1.01201,0.518622,0.0224345,-0.694955,-0.57929,0.730796,-0.745273,0.524625,0.36217,-1.00093,-0.621737,-0.380826,0.169941,0.144288,-0.197163,0.854039,-0.280506,0.777899,0.822301,0.698641,-1.0175,0.470948,0.453098,0.469355,0.163284,-0.277214,-0.689455,0.464057,0.0111301,0.238886,0.411091,0.488173,0.87549,0.526393,0.59045,2.20687,-0.357295,0.918184,0.742086,0.455104,-0.8857,-0.948846,-1.00482,-0.00926259,-0.861415,0.445299,-0.51377,-0.880011,-0.13358,0.218582,-1.09733,-0.571092,-0.110089,0.187282,-0.410003,2.90963,1.59531,1.03842,0.112328,0.128286,-0.157738,2.29085,0.810932,0.778091,-0.114399,-0.279346,-0.147042,0.963585,-0.700578,0.723202,-0.0128447,0.557684,0.523178,-1.07396,0.150029,-1.17814,-0.289916,-0.497893,-0.876372,0.872581,1.3236,1.08075,-0.849979,-0.553823,0.245506,-0.71443,0 +0.236008,0.21676,0.856463,-0.634348,-0.163793,0.573325,-1.4299,0.636491,-1.16227,0.732433,0.115311,1.27883,0.175456,2.12281,0.90004,-0.0768331,-1.50086,2.30069,0.0329926,0.14972,-0.279832,-1.38723,-1.3737,2.2589,1.18671,-1.60326,-1.59628,-1.02462,-0.733702,1.17371,-0.363541,-0.949806,-0.160291,1.34801,-1.34927,1.56651,-0.409825,-1.48529,0.637979,-1.47307,0.562493,-0.38419,0.201887,1.26705,1.71965,-0.202298,-0.886474,-0.212085,0.398635,0.81097,0.89919,-1.31446,-1.51315,-0.0154234,0.864874,-0.983099,-1.56069,-0.524933,-0.376897,1.03064,-0.150143,-0.409998,0.541329,1.30767,-1.19413,0.908766,-0.145623,0.0309077,0.598625,-0.0869221,0.701384,0.735363,0.183678,2.08428,0.817637,0.320111,-1.3459,1.65056,0.478672,-0.07174,-0.464387,-1.40464,-0.833888,1.13062,1.31609,-1.48692,-0.227998,-0.943982,-0.0890328,1.15842,-0.517038,-0.510029,-1.07821,0.356716,-1.23994,1.57933,0.0259453,-1.40514,1.00743,-1.51793,0.427346,0.0689799,0.427528,0.422796,1.55297,0.782607,-0.329231,-1.06345,0.855159,0.97674,0.192027,-0.816519,-1.0535,-1.36536,1.30565,0.74337,1.43609,-1.59525,-1.55712,-1.60542,1.02957,0.554455,0.884778,0.723266,-0.840902,0.879945,0.508722,1.26452,0.41035,-1.2371,-1.93063,-0.674326,1.38104,2.17243,2.54834,0.268364,-1.56906,-0.168268,-1.64186,-0.927179,-1.03983,-1.45696,-1.46396,-1.43366,-0.114399,1.13487,-0.290322,0.0266204,-0.0398574,-1.53086,-1.08174,-1.26826,-1.21925,0.365543,-0.983729,-0.0643158,-0.162975,0.518112,1.439,0.15599,1.23198,0.877787,-0.597281,-0.179275,0.107597,-1.32341,0 +0.567721,-0.292788,-0.328979,0.173429,-0.163793,-0.817594,0.944325,1.36221,0.592271,0.194262,0.416342,0.555538,0.718656,-0.0518966,0.349356,-0.483891,0.858241,0.144684,0.351492,0.279795,0.311141,0.612012,0.625412,-0.834531,-0.860549,0.297909,0.720704,3.7838,0.127221,-0.800443,-0.363541,-0.470675,0.0156963,-0.711421,0.133005,0.318935,-0.523394,0.330356,-0.72225,0.542563,-0.697686,0.675951,0.59095,0.0745656,0.386624,0.168711,0.141502,-0.00129896,1.38117,0.102701,0.254939,0.587849,0.568463,-0.0395731,-0.957323,0.457995,0.82721,1.11115,-0.391939,-0.440165,-0.0696041,-0.915663,0.828349,-0.948077,0.276298,0.0912201,-0.145623,0.220407,0.885847,0.717099,-0.44351,-0.658946,0.646009,0.520967,0.551401,-0.348557,0.684582,-0.284088,0.372024,1.97812,0.77167,0.782806,0.110585,-0.715467,-0.619833,0.560203,0.503758,1.6588,0.378881,-0.969635,-0.517038,-0.29469,0.205603,0.343439,-0.319842,0.823819,-0.372441,0.591063,-0.874676,0.901024,-0.557775,0.534416,0.606521,0.446076,0.0640208,-0.239809,-0.263735,0.278099,0.543518,0.882831,2.19099,0.611893,0.936727,0.807038,-0.839955,-0.427432,-0.888668,1.2759,0.775897,1.54348,-0.856384,-0.948846,-0.995375,0.12895,-0.789618,0.561204,-0.0153052,-0.759079,0.270881,0.177286,-1.26778,-0.697267,-0.155736,0.425499,-0.194159,-0.580043,0.6694,-0.323969,0.366223,0.0823959,-0.144573,0.339405,0.831427,0.595568,1.65777,-0.215064,2.07379,0.562029,0.21634,0.514062,-0.0270967,0.543192,0.538199,-1.00408,0.213724,-0.817475,-0.162975,-0.531388,-0.818898,0.903074,1.31215,1.12135,-0.828921,-0.553823,0.211029,-0.806699,0 +0.678292,0.00161761,0.798636,-0.687316,-0.163793,0.442926,-1.38298,0.82122,-1.25571,0.41505,0.0707137,-0.384744,0.326345,0.669002,0.218241,2.61601,-1.31939,0.664572,-0.297757,0.684473,-0.279832,-1.3758,-1.2561,0.65679,1.5599,-1.45787,-1.67207,-0.914979,-0.974761,2.46156,0.086373,1.58426,-1.79217,2.50812,-0.947294,-0.0724618,-0.497186,-1.47302,0.735139,-1.52253,0.421165,0.624237,0.310825,-0.0491826,0.436927,0.663391,-0.439528,-0.366661,0.412094,0.569857,-0.518162,-1.33646,-1.46005,-0.0999475,1.32042,-0.454698,-1.5158,-0.764053,-0.527314,2.51233,-0.935393,1.3508,-1.61132,1.80393,-1.0961,0.136639,0.0616633,0.0136805,0.0241795,-0.183405,0.598472,0.689397,0.108705,0.630887,0.313189,2.9112,-1.39864,0.771174,-0.504861,-0.07174,-0.498722,-1.37294,-0.770923,0.935757,1.69111,-1.42058,-0.530793,-0.493222,-0.60708,1.78432,1.86775,1.85871,-1.24463,0.157564,-0.135823,-0.888662,0.281321,-1.43464,1.02285,-1.48902,0.263159,1.27488,-0.0838832,-0.287228,0.274956,2.00452,2.35608,-0.0141198,0.829189,0.0644847,0.096186,-0.670304,-1.0535,-1.32378,1.40782,0.604722,1.20361,-1.48229,-1.48105,-1.61598,2.37807,0.964446,1.19656,-1.11497,1.78482,1.25664,2.50258,2.48997,1.09375,-1.07192,0.531396,0.461254,-0.201383,0.147579,0.694613,0.348402,-1.56906,0.0652845,-1.53799,-0.682434,-0.908178,-1.46989,-1.44346,-1.43366,-0.114399,-0.295417,-0.218682,-0.122104,-0.255603,-1.60057,-1.06749,-1.23928,-1.21925,0.463373,1.28379,0.65702,0.281315,1.50062,1.11879,0.0645099,-0.978385,0.289184,0.266102,1.2565,0.624756,1.16787,0 +0.567721,-0.723074,1.57929,0.160187,-0.163793,-0.795861,0.841098,0.82122,0.581889,-0.440503,0.60588,0.0130679,0.431967,-0.148016,0.047791,-0.217738,0.754544,0.0376488,0.608742,-0.11043,-0.048582,0.440648,0.775078,-0.519223,-0.871212,0.320275,0.62326,-0.25715,0.127221,-0.851279,-0.363541,-0.470675,0.0156963,-0.711421,0.133005,0.294472,-0.514658,2.31775,0.415901,2.19958,-0.591689,0.675951,0.09295,0.333312,-0.0661017,0.640905,-0.00748039,0.321906,0.317879,-0.500082,-0.118726,0.466893,0.823355,1.91656,-0.968712,0.377934,0.836187,-0.197716,-0.376897,-0.76701,-0.099806,-0.9879,0.828349,-0.955596,0.288552,0.0912201,-0.145623,3.40745,0.896105,2.9362,0.456968,0.0918359,0.596027,-0.236262,0.103003,-0.432141,0.746111,0.102841,0.383874,0.687913,0.119307,0.603161,-0.0531233,-0.746235,-0.842818,0.626545,0.213579,0.553706,0.378881,-0.977459,-0.621737,-0.316224,0.193716,0.38327,-0.258503,0.813746,-0.331581,0.591063,0.88401,1.0745,-0.743854,0.534416,0.376387,0.457715,0.0019811,-0.202403,0.685946,0.796124,0.0500852,0.118147,0.452166,0.263226,0.518269,0.83822,-0.53344,0.0963477,-0.888668,-0.126728,0.691368,0.507938,-0.866156,-0.948846,-0.995375,0.0736652,-0.820388,0.503252,-0.437083,-0.791327,0.0337832,0.18761,-1.19202,-0.674326,0.179007,0.107876,-0.0417979,2.57347,0.994993,-0.518596,0.97788,0.0518027,0.210899,2.57517,1.09786,0.810301,-0.114399,-0.215064,2.28871,2.0344,0.688284,1.57138,-0.0128447,0.543192,0.538199,-0.850349,0.213724,-1.13571,-0.178843,-0.151782,-0.83532,0.903074,1.31215,1.12135,-0.849979,-0.491399,0.228267,-0.751337,0 +0.236008,0.21676,0.856463,-0.727043,-0.163793,1.73605,-1.42052,0.742051,0.104321,0.456448,-0.297213,0.664033,0.341433,0.681017,0.283798,-0.155113,-1.49222,1.30679,-0.00375735,0.568851,1.69864,-1.13589,0.518508,0.588615,1.12273,-1.52497,-1.58546,-0.993292,-0.0105264,1.49567,-0.363541,-0.960453,-0.176289,1.0962,-1.34927,1.56651,1.60821,-1.47302,0.637979,-1.47307,0.550716,-0.397118,0.21745,0.367061,-0.0661017,-0.573307,-0.91627,1.7693,0.398635,0.720553,1.38882,-0.764663,-1.05647,-0.220696,1.30903,-0.646844,-1.54274,-0.537518,1.12728,0.997953,-0.905191,-0.419028,0.577207,1.63099,0.0802404,0.863346,-0.145623,0.0309077,0.619141,-0.0869221,0.68852,0.735363,0.208669,0.435473,0.467326,0.152944,-1.03825,0.431145,0.229826,-0.107914,1.32103,-1.34123,1.10543,0.874221,1.21473,-1.45849,-0.240614,-0.696791,-0.640502,1.26013,-0.517038,-0.531563,-1.07821,0.290332,-1.20927,1.5894,1.8953,-1.3363,1.00743,-1.50829,0.427346,0.00551128,0.0056137,-0.0893521,0.299772,0.383615,-0.263735,0.543753,0.868144,-0.176995,0.096186,1.12927,0.671364,-0.128443,1.38739,0.573911,1.21192,-1.54818,-1.53176,-1.59485,1.28363,0.964446,0.96981,0.709445,-0.851159,0.879945,0.470379,1.4177,0.326668,-0.658957,-1.91169,-0.0549187,2.06574,1.21956,0.796187,0.268364,-1.47748,-0.155292,-0.753224,-0.192943,0.605867,-1.45696,-1.46396,-1.44439,-0.114399,-0.295417,-0.576881,0.0266204,-0.0398574,-1.51924,-1.08174,-0.949444,-1.21925,0.365543,-1.02195,-0.0749237,4.69249,1.62344,2.27648,0.15599,1.22053,0.85749,-0.597281,-0.241699,0.107597,-1.30495,0 +-0.0404188,0.273377,-0.531371,0.186671,-0.128956,-0.839327,0.916172,-0.0892324,0.322341,1.80877,0.438641,-0.191865,0.281078,0.272508,0.0215679,0.0484154,0.858241,-0.13055,0.620992,1.82624,0.156974,0.543466,0.743007,-0.732269,-0.764584,0.666958,0.579952,3.51754,0.127221,-0.868225,-0.363541,1.30743,-0.560261,-1.00819,0.133005,-0.145849,-0.53213,0.428498,-0.930449,0.418905,-0.144149,1.25774,1.35351,0.479559,-0.00322319,0.517235,0.1564,0.645111,0.425554,2.37821,-0.234691,0.455896,0.876457,-0.136172,-0.945935,0.0576909,0.854141,0.909788,-0.40698,0.507686,-0.0595368,1.22438,-0.893773,-0.970635,0.264044,0.272897,-0.145623,-0.10691,-1.03239,0.39549,-0.302006,-0.490403,0.133696,-0.175195,1.26603,-0.599308,0.631842,0.618748,0.336474,0.712029,0.371096,0.772239,-0.0783093,-0.684699,0.930931,0.579158,0.213579,2.16772,0.395592,-0.993107,-0.086613,1.14809,0.205603,-0.400061,0.262884,-0.727487,-0.382656,0.620564,-0.936384,0.978122,-0.0980522,1.25373,0.338031,0.283119,0.200508,0.632985,0.14561,0.0257282,0.608443,0.0510691,0.192027,0.229484,0.467238,0.859009,1.34652,1.15931,-0.86376,1.53007,0.818162,1.34271,-0.768438,-0.960235,-1.00482,-0.893825,1.07711,-0.887615,0.0741629,-1.00901,-0.733297,0.166962,0.455642,-0.674326,0.209438,-0.461199,0.212137,-0.500004,0.771148,-0.220168,1.00096,0.112989,0.197733,0.236017,0.933899,0.649251,1.05362,-0.247205,1.93051,0.472794,0.351181,0.467587,-0.0270967,0.543192,0.538199,0.421446,1.37296,1.09194,-0.226446,-0.531388,-0.851741,0.659128,0.20124,0.816897,-0.112944,0.444973,0.538563,0.761882,0 +0.678292,-0.0436756,0.798636,-1.07134,-0.163793,0.942788,-1.3736,0.636491,-1.48411,0.59444,0.438641,0.41088,0.205634,2.24296,1.55562,-0.436922,-1.57,0.343465,0.155493,0.843453,-1.29476,-1.38723,-1.05298,1.44932,2.02907,-1.08882,-1.67207,-0.867991,-0.131056,2.52087,0.0220996,1.58426,-1.79217,1.33002,-0.934733,-0.0724618,-0.479714,-1.47302,0.749019,-1.53489,0.39761,0.663022,0.373075,1.78454,1.85798,0.258653,-0.91627,-1.32222,0.613985,0.49451,-0.724322,-1.43542,-1.31136,-0.293146,0.796541,0.313885,-1.50683,-0.776638,0.570733,1.58627,-0.935393,1.34177,-1.6472,2.0671,-0.777511,0.182058,-0.145623,0.0136805,0.0446954,-0.199485,0.585608,0.674075,0.208669,1.80337,0.117016,-0.599308,-1.48654,1.73264,0.123178,-0.059682,-1.58599,-1.36237,-0.695365,0.710124,1.5188,-1.33528,-0.581259,-0.493222,-1.19197,2.24593,1.79795,1.85871,-1.23274,-0.161079,-0.135823,-0.858441,0.179171,-1.4543,1.02285,-1.47938,0.230321,1.29604,0.568166,1.36561,2.09892,-0.06525,-0.820445,-1.11658,0.751278,1.39262,0.260485,-1.3114,-1.47196,-1.35496,1.39761,0.204185,1.19531,-1.38815,-1.45569,-1.59485,2.69077,1.39721,2.19805,-1.14261,1.76431,1.19868,1.07109,2.3126,0.605606,-1.17516,0.531396,0.495666,-0.886083,1.16662,2.16743,0.36441,-1.57923,0.10421,-0.960957,0.281252,-0.249898,-1.48281,-1.44346,-1.44439,-0.154676,-0.295417,0.139517,-0.151849,-0.296055,-1.61219,-1.06749,-1.09436,-1.21925,0.449397,1.29653,0.65702,-0.400988,0.674421,1.16805,0.0797565,-0.932575,0.329778,0.28716,1.2565,0.624756,1.16787,0 +0.567721,-0.824983,-0.907243,0.133702,-0.163793,-0.741528,2.05167,-0.207987,0.633799,-0.219715,0.472088,0.531429,0.416878,0.0201932,0.244464,-0.593483,0.66813,-0.405785,0.0574926,0.323153,0.478155,1.74301,0.32608,-0.416961,-0.828561,2.23262,0.450027,-0.304138,0.127221,-0.893643,-0.363541,-0.619738,-0.000302499,-0.855311,0.158129,0.367859,-0.479714,0.956016,-0.278094,0.208686,-0.886124,0.611308,0.1552,0.299562,0.348897,0.326109,-0.290546,0.588902,-0.0993619,0.117771,0.216284,0.818766,1.93851,1.03509,-0.866214,0.490019,1.52742,-0.462006,-0.361855,-0.777905,-0.150143,-0.99693,0.828349,-0.985673,0.313059,0.136639,-0.145623,0.117044,0.967911,-0.472852,-0.945205,-0.9041,0.521055,0.42326,0.285165,-0.599308,0.420883,-0.0613107,0.443122,0.784377,1.0349,2.13543,-0.00275141,-0.684699,-0.609697,2.1998,-0.215381,0.902682,0.36217,-1.00875,-0.621737,-0.380826,0.169941,0.131011,-0.227833,0.88426,-0.280506,0.777899,-0.859248,1.46962,-0.90804,0.449791,0.478669,0.480995,0.175692,-0.289683,-0.640333,0.437491,0.0241151,0.238886,0.383708,0.443183,0.87549,1.19162,0.498495,2.17606,-0.382203,1.37945,1.64655,0.592472,-0.875928,-0.948846,-1.00482,0.0322013,-0.851159,0.503252,-0.500989,-0.888073,-0.119633,0.218582,-1.15414,-0.53668,-0.079658,0.187282,-0.4227,0.332395,0.994993,0.208011,1.25486,0.235362,-0.170904,0.584951,1.48725,1.12166,-0.114399,-0.279346,-0.147042,-0.76162,-0.484833,0.200353,-0.0128447,0.557684,0.523178,-1.07396,0.124552,-1.17814,-0.305783,-0.542553,-0.876372,0.842088,1.3236,1.08075,-0.849979,-0.553823,0.228267,-0.751337,0 +0.236008,0.18279,0.842006,-1.26997,-0.163793,1.04059,-1.40175,0.715661,-1.30762,1.04982,0.594731,-0.396799,-0.141411,0.717062,0.454248,3.43012,-1.52679,0.098812,-0.0772573,0.323153,-0.793722,-1.38723,-1.36301,1.44932,1.09074,-1.30131,-1.59628,-0.946305,0.574902,1.28385,-0.363541,-0.981748,-0.176289,1.27606,-1.34927,1.59097,1.09278,-1.49755,0.665739,-1.47307,0.538939,-0.435904,0.233012,0.277063,0.411775,1.38292,-0.931168,-0.366661,0.519769,0.780831,-0.853172,-1.39144,-1.40695,-0.474269,0.500434,0.00965439,-1.52478,-0.587859,0.676025,1.17227,-0.905191,-0.437088,0.577207,1.52573,-0.753004,0.863346,1.42975,0.0309077,0.639656,-0.103003,0.68852,0.735363,-0.0787265,0.582034,0.71955,2.07536,-1.38985,1.04085,-0.386363,-0.25261,-1.01375,-1.3835,-0.934632,0.269114,1.3769,-1.4111,-0.278464,-0.435059,-0.740769,1.27578,-0.540305,-0.553097,-1.07821,0.635529,-1.20927,1.60955,1.26197,-1.4248,1.02285,-1.49866,0.405454,-0.0368011,0.248534,-0.00787394,0.399035,2.10427,0.342096,-0.678254,0.881129,0.0510691,0.0140367,-1.17643,-1.33928,-1.42772,1.11153,0.342832,1.13719,-1.43522,-1.51486,-1.57372,1.45952,0.691118,1.13987,0.695623,-0.871672,0.879945,0.841032,0.909787,0.842704,-0.979,-1.89275,-0.295799,-0.323107,-0.0509354,0.681916,0.284372,-1.58941,-0.116367,-1.31872,-0.11646,-0.671197,-1.45696,-1.45371,-1.43366,-0.114399,-0.295417,-0.433602,0.011748,-0.0803097,-1.53086,-1.08174,-1.09436,-1.21925,0.351567,-1.06016,-0.0855315,5.75561,1.83557,2.25185,0.140743,1.20907,0.816897,-0.61834,-0.241699,0.090358,-1.30495,0 +-0.0404188,-0.134262,-0.704851,1.51089,-0.163793,-1.36092,0.644028,-1.05247,0.561125,-1.48925,-1.47904,0.519374,-1.31834,-0.54451,-0.922462,-0.593483,0.840958,0.190557,0.0574926,-1.70024,0.182668,0.49777,0.753697,-0.851575,-0.860549,0.264359,0.872282,-0.272812,0.0239105,-0.944479,0.0649486,1.37132,0.431665,-1.29597,0.346553,0.0498496,-0.575811,0.416231,-0.916569,0.925904,-0.344364,1.20602,-1.38549,-1.14042,0.399199,-1.97865,0.0670106,-0.0153514,-0.933843,-1.52481,0.126089,0.543865,0.557843,-1.68176,-0.911769,0.490019,0.845164,-0.37391,-0.211438,-1.28996,1.95393,1.3508,-1.00141,-0.963115,-0.164831,0.363735,-0.145623,-0.210274,-1.03239,0.315088,-0.597878,-0.643624,-1.19082,0.447687,-1.032,-0.515724,0.728531,-0.741369,0.443122,-0.903741,0.56566,0.560891,0.186143,0.966525,-1.10635,0.446474,0.0747977,-1.2348,0.51257,-1.00875,-0.249477,1.19115,1.42998,-2.36503,0.0481954,-0.787927,-1.45524,0.571396,-0.951811,0.872112,-0.108998,1.1691,-0.953282,-1.11365,-0.730088,-0.601395,-0.19824,0.357795,-1.20947,0.225471,-0.807456,0.656883,0.855077,0.807038,-1.38147,-2.41471,-0.86376,0.400435,0.72518,0.72984,-0.866156,-0.402191,-0.787519,0.612696,1.23096,-0.481946,-1.67686,-1.15412,-2.0722,0.414738,0.398826,-0.800502,-0.231814,0.134345,-0.206856,-0.884188,0.588001,-0.596446,0.470089,-0.0246802,-0.0655791,0.778804,0.790438,0.563358,-0.154676,3.72225,-0.361962,0.160473,0.0545313,0.920723,0.115423,0.0214939,0.943764,0.463373,1.3857,1.17681,-0.226446,-1.2906,-0.84353,0.430429,-0.0736243,0.634227,0.0134047,0.382549,0.435131,0.872606,0 +0.125438,2.18701,1.20342,-0.899192,-0.163793,0.595058,-1.39237,-1.30317,-1.50488,1.00842,-0.196869,-1.36119,0.024567,-1.01309,0.519806,-0.515203,-1.51815,-1.67492,-1.78001,-0.0381663,-2.05275,-1.36438,-1.94029,1.04879,1.04809,-1.82692,-0.524406,-0.695703,-1.1986,1.18218,-0.342116,-0.310965,-0.848239,1.34801,-1.24877,1.98237,-0.418561,-1.16632,0.665739,-1.48543,1.84623,-0.38419,0.186325,-1.11792,-1.07216,-1.67509,-0.946066,-2.20753,-1.53952,0.795901,-1.67781,-1.40243,-1.51315,-1.8508,1.12681,-3.00063,-1.44399,2.57104,-0.391939,1.08511,-0.895124,0.61036,-0.176222,1.31519,-1.16963,1.31754,-0.145623,0.0653622,0.413982,0.234686,1.64045,1.14906,0.0837142,-1.01792,0.789612,-0.0142232,-1.44259,-1.3159,-1.58319,-1.09667,-1.82634,-1.37294,-2.21912,0.792172,1.29582,-1.44901,2.03035,-1.56923,-1.00815,1.16625,1.0069,-0.316224,-1.12576,0.303609,-2.55874,1.87145,0.0361604,-1.40514,0.590895,-1.46974,1.98165,-0.840737,0.542595,-0.380345,-0.767312,-2.01033,-0.853193,-2.21904,0.790234,-1.1295,-0.958063,-1.98624,-1.59443,-1.51088,1.20348,0.74337,1.24513,-1.61408,-1.46414,0.00073257,1.03934,0.713896,0.903674,0.626517,0.41042,1.16971,0.534285,1.27258,0.284827,-1.22678,-1.21096,-0.0434482,-2.01204,-1.18909,-0.96866,0.300379,-1.42661,-0.42777,-1.97654,-2.99222,-2.58021,-1.3665,-1.44346,-1.41218,-0.0338459,-0.311488,-0.505242,1.26103,1.7805,-1.26363,-1.36678,-1.25377,-1.20423,1.28794,-0.754429,0.95404,-0.226446,0.562772,1.44721,0.00352338,0.8884,0.228295,-0.0287116,-0.304124,-0.426801,-1.60022,0 +1.01,1.49629,1.73832,-1.16404,-0.163793,0.921055,-1.3736,-1.23719,-1.53602,0.691035,-1.20031,-1.92777,-0.126322,-0.92899,-0.620897,-0.687419,-1.54407,-2.85231,-1.25326,0.713378,-2.55379,-1.3758,-1.86546,1.50045,0.994775,-1.72627,0.699049,-0.648715,-0.595954,1.15676,2.67873,1.58426,-1.69618,0.772446,-0.984979,0.123236,-0.48845,-1.44848,0.471421,0.159223,1.69312,0.223452,0.264137,-0.91542,-1.24822,-1.86622,-0.975863,-2.54478,-0.987681,0.660275,-2.59265,-1.41343,-1.50253,-1.51271,0.614322,-2.48824,-1.18365,1.8411,0.405274,0.790951,-0.925326,1.28759,-1.61132,1.29263,-1.03484,0.136639,-0.145623,0.978407,-0.591298,1.6176,1.75623,0.903906,-0.89093,-1.42096,-0.135208,-0.432141,-1.48654,-1.01105,-1.63059,-0.385248,-2.03235,-1.36237,-2.39542,0.556283,1.19446,-1.42058,2.00512,-1.48199,-1.35908,1.2836,2.04225,1.94484,-1.22086,-0.254016,-0.626541,-0.798001,0.291536,-1.43464,0.991999,-1.21918,1.5876,1.12679,-0.991638,-1.10201,-0.953431,-2.01033,-0.918688,-2.37844,0.673368,-1.14291,-0.5747,-2.15495,-1.63526,-1.51088,1.3363,0.157969,1.18701,-1.57643,-1.32889,0.645306,1.17614,0.873337,1.22491,-0.672685,1.92842,1.77821,0.662096,1.07909,0.619553,-1.07192,0.398826,0.679194,-2.9554,-2.32723,-1.1845,0.332395,-1.42661,0.324787,-1.81497,-2.15091,-2.17208,-0.862481,-1.34099,-1.42292,-0.154676,-0.295417,-0.0754024,1.97491,2.03669,0.525681,-1.19576,-1.1958,-1.21925,0.896622,1.14366,0.901001,-0.369253,-1.26827,1.26658,0.15599,-0.95548,-0.076155,0.539858,1.50619,0.521324,1.40777,0 +0.567721,-0.81366,-0.979526,1.69629,-0.163793,-0.154734,0.60649,-0.142012,0.436542,-2.20681,-0.98847,0.0974522,-1.95208,-1.03712,-1.10602,-0.609139,0.763185,-0.31404,0.596492,-1.12212,0.131279,0.486345,0.785768,-0.843053,-0.860549,0.476842,0.612433,0.839233,0.0583475,-0.944479,-0.342116,-0.811391,0.271677,-1.31396,0.3968,0.490171,-0.575811,0.771998,-0.541812,0.319979,-0.897901,0.41738,-2.36593,-0.87042,-0.242162,-1.73131,-0.216055,0.420273,0.156366,-1.91662,-0.247576,0.576853,0.621566,-1.8991,-0.62705,0.00965439,0.710508,-0.298398,0.0141885,-1.50786,1.60157,-1.00596,0.720717,-0.970635,-0.152578,0.0458009,-0.145623,-0.382546,1.08075,-0.617576,-0.919477,-0.919422,-1.26579,-0.688157,-1.60651,-0.515724,0.596682,-1.1283,0.454972,-1.07255,0.474101,0.465785,0.148364,1.44856,-1.21784,0.617067,-0.366779,-0.202408,1.04733,-0.953988,-0.621737,-0.337758,1.10903,-2.19243,-0.626541,1.03536,-1.16921,0.777899,-0.920957,0.602269,-0.918986,0.280542,-1.1962,-0.892494,-0.903799,-1.89812,-0.787698,0.18512,-1.30036,0.118147,-0.533625,0.645635,0.824458,0.817432,-1.21799,-1.7985,-0.838852,0.842875,0.775897,0.708706,-0.866156,-0.83496,-0.759175,0.654159,-0.789618,0.821992,-2.02195,-1.17025,-2.37903,0.115342,-1.04051,-0.926678,-0.00358013,-0.567073,-1.03214,-0.163843,0.92377,-0.0385165,0.562415,-0.147053,0.184567,0.365252,0.513762,0.617041,-0.154676,-0.295417,-0.290322,-0.672385,-0.552253,0.490825,0.00140723,-0.021981,0.778534,-1.11589,-0.117487,-1.19936,-0.258181,-1.2906,-0.851741,0.643882,1.3236,0.97927,-0.681514,-0.616248,0.0558807,-0.935876,0 +2.171,2.02849,1.46364,-1.72021,-0.163793,-1.84992,-1.34545,-2.96574,-1.5464,-2.85537,-2.58282,-3.04888,-3.47605,-2.75527,-2.33851,-0.671763,-0.8614,-3.64744,-2.95601,-2.72638,-2.88782,-1.35295,-2.06857,-0.826009,-0.753922,-1.73746,-0.0371895,-0.586065,-2.43833,-0.902116,5.72101,1.06254,0.927628,-1.34094,-0.419706,1.90898,-0.575811,0.894677,2.49789,-0.100459,1.82267,1.67145,-3.4553,-2.68164,-2.50579,-2.11356,-0.633204,-2.81178,-3.12772,-2.97149,-3.18536,-1.41343,-1.48129,-1.92325,-1.59509,-3.30486,-1.35422,2.42002,-2.69333,-1.8347,0.272685,0.691627,2.15582,-0.92552,-1.42695,1.68089,-0.145623,1.71918,1.38849,1.11911,1.69191,1.74662,-2.9027,-2.94763,-2.72751,-0.515724,-1.44259,-2.78154,-2.94592,-2.3507,-2.10102,-1.34123,-2.98729,-1.49493,-1.3192,-1.39214,2.03035,-1.51107,-1.92726,-0.977459,1.43733,1.4711,-0.697821,-2.68367,1.15231,1.66999,-1.46545,-0.923295,1.62451,-1.21918,1.90503,1.99419,-2.60258,-2.5337,-2.45479,-2.37192,-0.935062,-2.41828,-2.28723,-2.35031,-2.32722,-2.39115,-1.63526,-1.49009,-1.66755,-3.23119,-0.797339,-1.54818,-1.37961,0.243768,-0.787982,-1.46134,-1.20323,2.14686,1.62072,3.1401,-2.54597,-1.14606,-2.93691,-0.648633,1.72453,2.2736,-3.6401,-3.37274,-3.1525,2.04521,0.659225,1.58337,-1.94192,-3.38993,-3.0805,0.533257,-1.07456,-0.950509,-0.0741224,-0.295417,-0.0754024,1.46925,1.8614,-0.380592,-0.4119,-1.23928,-1.21925,1.35782,1.74239,1.09194,-0.337518,-1.2906,-0.827109,1.86361,0.395935,1.66936,4.3935,-6.10963,-3.96072,0.429712,0 +2.39214,1.5982,1.63712,-1.68048,0.567788,-1.83905,-1.2516,-3.03171,-1.46335,-2.78638,-2.49362,-3.00066,-3.34025,-2.57504,-2.27295,-0.530859,-1.37124,-3.58627,-2.99276,-2.76974,-2.81074,-1.35295,-2.08995,-0.868619,-0.764584,-1.86047,0.91559,-0.852329,-2.45555,-0.876697,5.61389,0.423702,0.959626,-1.30497,-0.432268,1.81113,-0.575811,0.403963,1.63733,1.16085,1.29269,1.06381,-3.34636,-2.4904,-2.43033,-2.02362,2.49542,-2.67125,-3.24886,-2.94135,-3.12094,-1.36945,-1.51315,-2.01985,-1.59509,-3.38492,-0.0794734,-0.0215219,-2.69333,-1.78023,0.10154,0.989608,2.33521,-0.902962,-1.47597,1.49922,-0.145623,1.90868,1.26539,2.03569,1.52468,2.74256,-2.77774,-2.83771,-2.65744,-0.0142232,-1.40743,-2.71119,-2.93407,-2.48334,-2.0209,-1.3201,-2.97469,-1.50518,-1.29892,-1.44901,1.31121,-1.61285,-1.91055,-0.953988,1.61182,1.12655,-0.697821,-2.59073,1.09097,1.66999,-1.45524,-1.3068,1.57823,0.043307,1.09504,0.978696,-2.48751,-2.37074,-2.34312,-2.28464,-0.836819,-2.35187,-2.26126,-2.33689,-2.38198,-2.36865,-1.60464,-1.50048,-1.68798,-3.30822,-0.813944,-1.59525,-1.06685,0.497371,-0.77821,-1.46134,-1.18434,2.16068,1.62072,3.22703,-2.50763,-1.11381,-2.86717,-0.627985,1.66772,2.28507,-3.50316,-3.25364,-3.06362,1.40491,-1.14172,1.97263,-1.99962,-3.49701,-3.09367,1.0502,-0.490469,-1.07935,-0.114399,-0.295417,-0.576881,1.91542,1.61869,1.09501,-0.4119,-1.25377,-1.21925,2.2942,0.353851,1.14498,-0.226446,-1.21245,-0.794267,1.75689,1.66718,2.0144,4.56196,-5.11083,-3.58147,2.14592,0 +-1.36727,-0.858953,-0.979526,1.80222,-0.163793,1.07319,0.728486,-0.287157,0.633799,-1.24086,0.483238,-0.360634,-0.262122,0.224448,0.0215679,0.0014472,0.616282,-0.466948,-0.726507,0.236437,0.131279,0.532042,-0.283274,-0.808966,-0.743259,0.499209,0.417546,-0.272812,1.10867,-0.859752,-0.363541,-1.35441,1.56758,-0.828331,0.974634,-0.904179,2.06249,-0.111287,-0.916569,0.394174,-0.94501,-1.40554,-0.809675,0.46831,-0.355343,0.539721,-0.17136,0.392168,-0.530062,-0.695986,0.113204,0.433904,0.334813,0.153625,-0.194278,0.12174,0.692554,-0.524933,1.24761,-1.08296,1.43043,-1.00596,1.04361,-0.707464,1.70997,-0.998841,-0.104166,-1.12332,-1.02213,-0.697978,-0.932341,-0.98071,0.208669,-0.333969,-0.359407,-0.18139,0.719742,0.536672,-0.54041,0.555276,0.119307,0.719402,0.0602135,1.45882,-1.00499,0.692887,-0.732657,-0.580466,1.43169,-0.601919,-0.610103,-0.359292,1.1328,-0.254016,1.48968,-0.979322,1.73186,0.364893,-0.920957,0.689004,-0.995607,-0.121426,0.0439695,0.352958,0.212916,0.458426,0.669572,0.849254,-0.0927504,-0.364812,0.246793,-0.0966894,-0.094108,-0.0141065,-0.819521,-0.227163,-0.805641,0.598121,0.691368,0.349436,-0.758667,-0.789405,-0.570215,1.58019,-0.963983,-0.829662,-1.17839,-0.920322,-0.858819,1.47811,1.74347,1.24125,-0.170951,-0.24945,0.0724728,-1.41244,0.0894357,-1.07653,-0.130027,-0.208239,-0.263063,0.236017,0.667471,0.434518,-0.154676,-0.343629,-0.290322,-0.76162,-0.767999,0.421111,0.771013,1.45616,1.06393,-1.18577,-0.881818,-1.23118,-0.258181,-0.35275,-0.449424,-1.49065,-1.18453,-0.218231,1.86652,-0.11685,-2.23686,0.632705,0 +-1.2567,-0.870277,-1.13855,1.7625,-0.163793,1.12752,0.512647,0.372592,0.602653,-0.385306,0.460939,-0.649952,0.371611,-0.0398816,0.349356,-0.483891,0.642206,0.0376488,-0.420257,-0.457297,-0.38261,0.49777,-0.176369,-0.612963,-0.743259,0.845892,-0.0047084,0.510318,1.21198,-0.834334,-0.363541,-1.27987,1.61558,-0.702428,0.962073,-0.928642,2.01007,0.330356,-0.916569,-0.384873,-1.0039,-1.39262,0.09295,0.355811,-0.418221,0.258653,-0.365037,0.11112,-0.193578,-0.424734,-0.376427,0.576853,0.366674,0.467572,-0.376498,0.00965439,0.405288,-0.487177,1.3529,-0.799695,1.51096,-1.00596,1.25888,-0.5646,1.73448,-1.04426,-0.104166,-1.20945,-1.02213,-1.38944,-1.03525,-0.965388,0.496064,-0.66373,0.313189,-0.0978067,0.728531,-0.00268496,-0.52856,0.374406,-0.201153,0.455218,0.0350275,1.44856,-0.822547,0.692887,-0.947137,0.655491,1.33142,-0.601919,-0.610103,-0.29469,1.1328,-0.00175722,1.39767,-0.999469,1.73186,0.738565,-0.920957,0.236052,-1.02844,-0.10027,0.504239,0.527554,0.262548,-0.663737,-0.607586,0.198403,0.0371002,-0.364812,0.0688029,-0.242905,-0.114521,-0.0141065,-1.07495,-1.04364,-0.797339,0.899357,0.615291,0.201501,-0.768438,-0.766628,-0.522975,1.51108,-0.953726,-0.887615,-0.654363,-0.791327,-0.273049,1.45746,1.68665,1.45919,-0.0948736,-0.606776,-0.308429,-0.916204,0.608351,-0.791073,0.170031,-0.00938362,0.184567,-0.216306,0.267828,0.541885,-0.154676,-0.343629,-0.361962,-1.29703,-1.13207,-0.217927,0.771013,1.51413,1.03389,-1.17179,-0.779907,-1.22057,-0.258181,-0.643037,-0.728582,-1.49065,-1.35632,-0.218231,1.84546,-0.11685,-2.23686,0.577343,0 +-1.31198,-0.858953,-0.96507,1.78898,-0.163793,1.08405,0.719102,-0.313547,0.623417,-1.19946,0.483238,1.2065,-0.231944,0.260493,-0.00465514,0.0484154,0.624923,0.0529396,0.767992,0.250889,1.78857,0.520618,1.09579,-0.808966,-0.743259,0.488025,0.4392,-0.288475,1.10867,-0.859752,-0.363541,-1.34376,1.58358,-0.810345,0.974634,-0.904179,2.05375,-0.0744834,-0.916569,0.431271,-0.94501,-1.40554,-0.794113,0.45706,0.185412,0.550964,-0.141564,0.954264,0.07561,-0.650777,1.7496,0.411912,0.525982,0.14155,-0.217056,0.00965439,0.692554,-0.512348,1.26265,-1.07207,1.44049,-1.00596,1.07949,-0.692426,1.72222,-0.998841,-0.104166,-1.07164,-1.02213,-0.649737,-0.932341,-0.98071,0.221164,0.557607,-0.359407,-0.18139,0.702162,0.524946,1.05931,0.543218,1.0349,0.708834,1.78545,1.45882,-0.994854,0.683409,-0.707424,-0.638628,1.41497,-0.601919,-0.610103,-0.359292,1.1328,-0.214186,1.45901,-0.979322,1.73186,0.355059,-0.920957,0.698641,-0.995607,-0.10027,0.0311842,0.341318,0.175692,0.445958,0.718694,0.822689,-0.0927504,0.0913157,0.233101,1.47794,0.630539,0.474422,-0.799086,-0.180947,-0.805641,0.579294,0.691368,0.360003,-0.758667,-0.789405,-0.560767,1.58019,-0.963983,-0.858639,-1.15283,-0.904197,-0.803031,1.47811,1.74347,1.27566,1.67013,1.27249,0.364498,-1.39643,0.109785,-1.06355,0.608578,1.10727,1.65912,0.287711,0.677718,0.445255,-0.154676,-0.343629,-0.290322,-0.717002,-0.727546,0.455968,0.771013,1.47066,1.06393,-1.18577,-0.869079,-1.23118,-0.258181,-0.30809,-0.424792,-1.49065,-1.20744,-0.218231,1.84546,-0.11685,-2.23686,0.632705,0 +-1.31198,-0.870277,-1.12409,1.77574,-0.163793,1.10579,0.493879,0.333007,0.581889,-0.274912,0.427491,0.121562,0.416878,0.224448,0.323133,-0.483891,0.633564,2.04074,-0.493757,-0.428391,1.06913,0.474921,-0.165679,-0.570354,-0.743259,0.801158,0.0385998,0.651282,1.17755,-0.825861,-0.363541,-1.27987,1.59958,-0.675448,0.974634,-0.953104,2.01881,0.416231,-0.916569,-0.323044,-1.0039,-1.39262,0.170762,0.299562,-0.229586,0.213682,-0.365037,1.7412,-0.207037,-0.319247,0.783225,0.532869,0.313572,0.515871,-0.308166,-0.0223699,0.414265,-0.462006,1.32282,-0.74522,1.48076,-1.00596,1.15125,-0.542043,1.73448,-1.04426,-0.104166,-1.07164,-1.02213,-1.30903,-1.02239,-0.98071,0.508559,0.252273,0.355227,-0.0978067,0.693372,0.325619,-0.398213,0.362348,0.737335,0.434083,0.186143,1.45882,-0.79214,0.664454,-0.896671,0.670031,1.34813,-0.617567,-0.621737,-0.29469,1.12091,0.0380732,1.42834,-1.00954,1.73186,0.748399,-0.920957,0.24569,-1.0175,-0.0791135,0.517025,0.492635,0.200508,0.495832,-0.574838,1.48682,0.0500852,-0.337981,0.0140367,0.162,0.0487801,0.0274705,-1.03408,-0.966617,-0.797339,0.889943,0.615291,0.254335,-0.768438,-0.778017,-0.541871,1.56636,-0.953726,-0.800686,-0.539333,-0.759079,-0.189367,1.46778,1.70559,1.32154,1.9288,1.10045,0.961245,-0.80415,0.659225,-0.713222,0.123868,0.128286,0.0924082,-0.112918,0.288322,0.574095,-0.154676,-0.343629,-0.361962,-1.26728,-1.09162,-0.171452,0.771013,1.51413,1.03389,-1.17179,-0.779907,-1.22057,-0.242313,-0.631872,-0.712161,-1.50589,-1.36778,-0.218231,1.84546,-0.11685,-2.23686,0.577343,0 +-1.2567,-0.870277,-1.13855,1.7625,-0.163793,1.12752,0.503263,0.346202,0.602653,-0.343909,0.44979,1.04979,0.3867,0.0201932,0.349356,-0.499547,0.633564,-0.0999685,1.02524,-0.442844,1.46739,0.486345,1.24546,-0.578876,-0.743259,0.823525,0.0169457,0.604294,1.21198,-0.825861,-0.363541,-1.27987,1.61558,-0.693434,0.962073,-0.928642,2.00133,0.367159,-0.916569,-0.360142,-1.0039,-1.39262,0.124075,0.333312,0.172837,0.236168,-0.365037,0.265697,0.613985,-0.379525,1.51767,0.576853,0.515361,0.503796,-0.376498,0.457995,0.405288,-0.462006,1.3529,-0.777905,1.51096,-1.00596,1.25888,-0.557081,1.73448,-1.04426,-0.104166,-1.15777,-1.02213,-1.35728,-1.02239,-0.965388,0.508559,0.252273,0.327202,-0.0978067,0.710952,-0.0495855,1.09486,0.362348,0.68011,0.44465,1.78545,1.44856,-0.812411,0.673932,-0.921904,0.670031,1.33142,-0.601919,-0.610103,-0.29469,1.1328,0.0115196,1.39767,-0.999469,1.73186,0.748399,-0.920957,0.236052,-1.02844,-0.10027,0.517025,0.515914,0.237732,-0.47671,-0.62396,0.18512,0.0500852,0.118147,0.0414198,1.41045,0.579507,0.422451,-1.05452,-0.997427,-0.797339,0.889943,0.606838,0.233202,-0.768438,-0.766628,-0.522975,1.51108,-0.953726,-0.887615,-0.603238,-0.775203,-0.231208,1.44714,1.68665,1.47066,0.878923,0.743123,-0.244946,-0.868181,0.6287,-0.765123,0.908635,1.81091,1.88293,-0.177535,0.278075,0.552622,-0.154676,-0.343629,-0.290322,-1.28216,-1.1051,-0.19469,0.771013,1.51413,1.03389,-1.17179,-0.779907,-1.22057,-0.258181,-0.643037,-0.728582,-1.49065,-1.35632,-0.218231,1.84546,-0.11685,-2.23686,0.577343,0 +-1.31198,-0.858953,-0.936156,1.78898,-0.163793,1.08405,0.709718,0.874,0.592271,-1.15806,0.494387,-0.432963,-0.216855,0.164373,-0.0177667,0.0953836,0.642206,-0.497529,0.253493,0.279795,0.118432,0.509194,0.229866,-0.808966,-0.753922,0.868258,0.471682,-0.288475,1.10867,-0.859752,-0.363541,-1.35441,1.58358,-0.783366,0.974634,-0.879717,2.05375,-0.025412,-0.916569,0.480734,-0.933233,-1.40554,-0.762988,0.44581,-0.342767,0.573449,-0.111768,0.350011,0.963929,-0.590499,0.035894,0.38992,0.377295,0.1174,-0.217056,2.26737,0.701531,-0.512348,1.26265,-1.07207,1.44049,-1.00596,1.07949,-0.669868,1.70997,-0.998841,-0.104166,-0.9855,-1.02213,-0.553254,-0.919477,-0.98071,0.23366,-0.395036,-0.345394,-0.264974,0.702162,0.513221,-0.338964,0.519102,0.0620818,0.698267,0.17355,1.45882,-0.984718,0.645499,-0.656958,-0.260571,1.41497,-0.601919,-0.610103,-0.359292,1.1328,-0.187632,1.45901,-0.979322,1.74207,0.355059,-0.920957,0.708279,-0.984661,-0.121426,0.0311842,0.329678,0.163284,0.445958,0.751441,0.809406,-0.0797654,-0.351396,0.192027,-0.085442,-0.022664,0.0482589,-0.768435,-0.134731,-0.805641,0.541639,0.674462,0.37057,-0.758667,-0.789405,-0.560767,1.56636,-0.963983,-0.887615,-1.12727,-0.896135,-0.775137,1.47811,1.72453,1.31007,0.0420666,-0.222981,-0.00370766,-1.36442,0.11996,-1.0376,0.747066,1.88739,0.803351,0.339405,0.698213,0.455992,-0.154676,-0.343629,-0.290322,-0.64264,-0.687094,0.490825,0.771013,1.45616,1.06393,-1.18577,-0.894557,-1.23118,-0.258181,-0.274596,-0.39195,-1.49065,-1.19599,-0.218231,1.84546,-0.11685,-2.21962,0.632705,0 +-1.20141,0.0695574,0.82755,0.305851,-0.163793,0.551592,-0.322556,-0.207987,-0.362866,-0.937277,0.28255,-0.396799,-0.760055,0.344597,-0.00465514,-0.0768331,-0.783627,-0.283458,-0.457007,0.395417,-0.202749,-0.507562,-0.240512,-0.715226,0.589589,-0.518474,-0.870872,-0.883654,0.0755659,0.267123,-0.363541,-0.960453,1.11961,-0.486593,1.12537,-0.953104,2.23721,-1.06818,0.790658,-0.78058,0.491829,-0.552261,-1.0898,0.42331,-0.166707,0.326109,-0.960965,-0.83039,-0.516603,-0.575429,-0.105841,-0.522751,-0.578548,-0.112022,-0.239833,0.105727,-0.393671,-0.751468,0.495524,0.0392077,0.5143,-0.455147,0.469574,-0.0532975,1.58743,-0.590068,-0.104166,-0.10691,0.0549533,-0.279887,0.649928,0.796652,-0.116213,-0.187409,-0.513543,-0.432141,-0.317472,0.618748,-0.445612,0.675855,-0.544502,-0.400738,0.198736,-0.807772,0.261974,-0.425448,-0.54341,-0.769494,0.0446568,0.078747,-0.586837,-0.359292,0.241264,-0.678874,2.59379,-1.04984,1.57863,-0.697124,1.06913,-0.400008,0.339779,-0.10027,-0.237306,0.190002,0.212916,0.657922,-0.689455,-0.625123,0.0630703,-0.136748,0.493241,-0.0404526,-0.573804,-0.575395,-0.0225808,-0.211758,0.282013,-0.700959,-0.390612,-1.22501,0.472576,-0.106087,0.0250094,1.73222,-0.902442,-0.626827,-0.577676,0.0390743,-0.872766,1.67426,1.68665,0.965957,-0.886083,-0.355324,0.351801,0.252356,-0.989094,-0.0385165,-0.533951,-0.238832,0.184567,-0.849557,-0.418738,-0.649883,-0.154676,-0.343629,-0.0037626,-0.166722,-0.269087,-0.81049,1.0418,1.23879,0.222758,0.393494,-0.767168,-0.0749237,-0.385121,-0.598378,-0.589003,0.00352338,-0.577542,-0.177638,1.80335,-0.241699,-2.15067,0.688067,0 +-1.2567,0.160144,0.842006,0.319093,-0.163793,0.768923,-0.510242,0.662881,-0.508212,-0.219715,0.416342,-0.384744,0.401789,0.0922831,0.572252,-0.546515,-0.723137,-0.0540961,-0.395757,-0.558466,0.0156542,-0.518986,-0.326035,-0.715226,0.589589,-0.339541,-1.0441,-0.961967,0.523246,0.275596,-0.363541,-0.949806,1.18361,-0.459613,1.12537,-0.904179,2.18479,-0.773751,0.762898,-1.15155,0.538939,-0.552261,0.139637,0.412061,-0.204434,7.08574e-05,-0.91627,-0.422871,0.07561,-0.258969,0.048779,-0.489762,-0.546687,0.262299,-0.251222,-0.935063,-0.779685,-0.713712,0.826443,0.0609973,0.25255,-0.409998,0.469574,-0.0382592,1.68546,-0.635487,-0.104166,-0.10691,-0.0168523,-0.247726,0.68852,0.827296,0.496064,-0.431676,0.481338,-0.0142232,-0.361422,-0.0613107,-0.445612,0.217652,-0.510167,-0.569816,0.211329,-0.674443,0.261974,-0.321197,-0.429861,-0.784035,0.061368,0.102218,-0.551938,-0.380826,0.265039,-0.227463,2.40977,-1.03976,1.65014,-0.313618,1.06913,-0.910783,0.405454,-0.121426,0.644877,0.620672,0.436259,-0.327088,-0.689455,-0.146947,0.283816,-0.136748,0.096186,0.00453674,-0.563597,-0.585789,-0.0634495,-0.920401,0.27371,-0.437377,-0.508954,-1.12991,0.472576,-0.0605321,0.0722495,1.77368,-0.902442,-0.597851,-0.219804,0.0471365,-0.35673,1.64329,1.76241,0.644782,-0.307892,-0.553839,-0.38461,0.220341,-0.602451,-0.129342,-0.533951,-0.713027,0.066077,-1.08218,-0.797886,-0.53178,-0.154676,-0.343629,-0.361962,-0.107232,-0.188182,-1.10096,0.927785,1.3982,0.297863,0.435421,-0.767168,-0.0324922,-0.289916,-0.92216,-0.679319,0.00352338,-0.577542,-0.177638,1.8244,-0.241699,-2.1679,0.706521,0 +-0.648559,0.148821,0.842006,1.53738,-0.163793,-0.57853,-0.519626,0.596906,-0.508212,-0.233515,0.472088,-0.372689,0.416878,0.128328,0.585363,-0.468235,-0.723137,-0.0388052,-0.408007,-0.572919,0.0413487,-0.518986,-0.336726,-0.757835,0.578927,-0.339541,-1.06576,-0.97763,-0.389333,0.343377,-0.256419,-0.69427,1.64757,-0.297737,0.434484,-0.904179,-0.567074,-0.773751,0.762898,-1.16392,0.538939,-0.526403,0.139637,0.45706,-0.204434,0.0787698,-0.901372,-0.394766,0.0486913,-0.304177,0.061664,-0.489762,-0.546687,0.226074,-0.0917798,-0.951075,-0.788662,-0.726297,-0.542356,0.126366,1.89352,-0.419028,1.97643,-0.0382592,0.374327,-0.998841,-0.104166,-0.10691,-0.0065944,-0.247726,0.68852,0.827296,0.53355,-0.419463,0.481338,0.152944,-0.361422,0.00904018,-0.445612,0.217652,-0.498722,-0.569816,0.198736,1.17165,0.292381,-0.330674,-0.442478,-0.827657,0.529282,0.117866,-0.563571,-0.165486,1.29922,-0.187632,1.98039,-0.898735,-1.16921,-0.303785,1.06913,-0.92042,0.394508,-0.0368011,0.657663,0.643951,0.461075,-0.277214,-0.656707,-0.0805332,0.257846,-0.136748,0.109878,0.0157841,-0.563597,-0.585789,-0.0838839,-0.982022,0.215591,-0.446791,-0.52586,-1.14048,0.511663,-0.128864,0.0155614,0.529768,-0.984496,-1.72793,-0.155898,0.151944,-0.300943,0.383766,1.11849,1.96389,-0.292676,-0.52737,-0.359216,0.220341,-0.592276,-0.116367,-0.545492,-0.774213,0.0529114,-1.08218,-0.797886,-0.521043,-0.154676,3.99546,-0.505242,-0.122104,-0.188182,-1.11258,1.0703,0.311326,0.778534,0.435421,-0.627041,-0.0324922,-0.178843,-0.83284,-0.654688,0.00352338,-0.703521,-0.218231,1.78229,-0.366549,-2.18514,0.521982,0 +-0.703844,0.0582341,0.82755,1.6698,-0.163793,-0.535064,-0.322556,-0.247572,-0.362866,-0.895879,0.304849,-0.384744,-0.775144,0.356612,-0.00465514,0.0171033,-0.766344,-0.207004,-0.469257,0.40987,-0.164207,-0.507562,-0.251202,-0.834531,0.578927,-0.529657,-0.870872,-0.899317,-0.406551,0.334905,-0.342116,-0.662328,1.69557,-0.333709,0.421923,-0.904179,-0.567074,-1.06818,0.790658,-0.792945,0.491829,-0.526403,-1.0898,0.44581,-0.179283,0.359837,-0.946066,-0.816338,-0.556981,-0.515151,-0.0800712,-0.522751,-0.578548,-0.208621,-0.0120587,0.0576909,-0.393671,-0.764053,-0.57244,0.115472,1.78278,-0.473206,1.94055,-0.0457784,0.398834,-0.998841,-0.104166,-0.10691,0.0549533,-0.279887,0.649928,0.796652,-0.116213,-0.187409,-0.499531,-0.264974,-0.308682,0.653923,-0.445612,0.65174,-0.533057,-0.400738,0.198736,1.28446,0.282245,-0.425448,-0.556026,-0.827657,0.913639,0.117866,-0.586837,-0.165486,1.29922,-0.625767,1.64303,-0.928955,-1.03642,-0.697124,1.06913,-0.409645,0.339779,-0.0156449,-0.250092,0.190002,0.212916,0.732733,-0.656707,-0.61184,0.102025,-0.150164,0.493241,-0.0292053,-0.573804,-0.575395,-0.032798,-0.257974,0.223894,-0.719786,-0.399065,-1.22501,0.511663,-0.106087,0.0155614,0.502125,-0.984496,-1.55407,-0.488208,0.143882,-0.803031,0.404414,1.25106,1.95242,-0.825221,-0.328856,0.389891,0.252356,-0.978919,-0.0385165,-0.545492,-0.254129,0.171402,-0.849557,-0.428985,-0.649883,-0.154676,-0.3597,-0.147042,-0.166722,-0.269087,-0.81049,0.956288,0.311326,0.928744,0.393494,-0.627041,-0.0749237,-0.274048,-0.531388,-0.679319,0.00352338,-0.692068,-0.218231,1.80335,-0.366549,-2.20238,0.503528,0 +0.954719,1.34909,2.34549,0.199913,0.846485,-1.06752,0.503263,0.280227,0.903729,-0.31631,0.483238,-0.493238,0.431967,-0.160031,0.257575,-0.436922,0.555792,0.098812,-0.322257,-0.399486,-0.331221,0.726254,-0.133608,-0.808966,-0.807236,1.04719,0.450027,0.118753,0.0755659,-0.834334,-0.363541,0.413054,-0.30428,-0.819338,0.233498,-0.439396,-0.549602,0.416231,1.80389,0.208686,1.97578,0.714736,0.1552,0.310812,-0.468524,0.337352,2.24215,0.265697,-0.207037,-0.409664,-0.260461,0.895738,0.525982,0.443422,-1.02566,0.474007,0.279609,0.179842,-0.497231,-0.756115,0.0310691,1.23341,0.0390432,-0.92552,0.288552,0.772508,-0.145623,1.58136,1.61416,1.93921,2.18074,1.68533,0.53355,-0.651517,0.285165,-0.264974,0.869171,-0.0495855,-0.350814,0.41058,0.0735267,0.539757,0.110585,-0.879564,-0.822547,0.759228,1.76541,0.771816,0.378881,-0.961812,-0.505405,-0.789971,0.3007,0.131011,-0.135823,-0.6469,-0.525667,0.876234,1.9639,0.101131,1.69706,-0.861893,0.478669,0.492635,0.150876,-0.539052,-0.722202,0.317947,-0.0278251,-0.418474,0.109878,-0.175421,0.13043,0.235355,-1.05452,-0.920401,-0.847155,0.937011,0.564573,0.40227,-0.807525,-1.00579,-1.00482,-0.962932,-0.12293,-1.06147,-0.500989,-0.847762,-0.119633,0.228906,-0.339782,-0.811972,-0.155736,-0.553839,-0.321126,1.08475,0.557477,1.79097,0.389304,-0.0246802,0.197733,0.287711,0.267828,0.692198,-0.194952,-0.37577,-0.361962,2.16825,2.05018,0.386255,0.0441631,0.586667,0.628324,1.32987,0.36659,1.11316,-0.210578,-0.520223,-0.810688,1.14702,0.579178,-0.218231,-0.365642,-0.678673,0.0731194,0.226719,0 +1.23115,2.33422,1.63712,0.173429,-0.163793,-0.991459,0.897404,-0.260767,0.758382,-1.13047,0.494387,-0.215975,-0.1565,0.200418,0.047791,-0.0768331,0.521226,-0.359912,-0.640757,0.221984,0.0798904,0.817648,-0.154989,-0.808966,-0.807236,0.801158,0.417546,-0.492089,0.0927844,-0.88517,-0.363541,-0.406791,-0.240285,-0.936249,0.258622,-0.904179,-0.53213,0.244481,1.90105,0.319979,1.95222,1.12845,-0.685175,0.46831,-0.330192,0.528478,-0.201157,0.757531,-0.57044,-0.650777,0.151859,0.587849,0.695909,0.250224,-1.03704,0.169776,0.710508,2.50812,-0.467147,-1.07207,-0.0293348,0.863192,0.326064,-0.92552,0.313059,0.545412,-0.145623,1.30572,1.32694,0.556295,1.69191,1.51679,0.271146,-0.297329,-0.289345,-0.264974,0.754901,0.489771,-0.374513,0.519102,0.268091,0.973018,0.110585,-0.961613,-1.00499,0.910867,1.87895,-0.871279,0.378881,-0.961812,1.09997,-0.746903,0.288813,-0.200909,-0.258503,-0.395064,-0.443946,0.335392,2.08732,0.737191,2.10205,-0.502237,0.107896,0.376237,0.225324,0.333741,0.620451,1.15476,-0.105735,-0.405058,0.123569,-0.130431,0.0793989,0.29772,-0.799086,-0.103921,-0.838852,0.616948,0.72518,0.465671,-0.807525,-0.994401,-0.995375,-1.03204,-0.430632,-0.221158,-1.12727,-0.95257,-0.76119,0.259878,-0.623861,-0.743149,-0.125305,-0.236216,-0.00370766,2.25331,0.150485,2.12833,0.181572,-0.269426,-0.18407,0.391099,0.780191,0.563358,-0.154676,-0.37577,-0.361962,0.93384,1.59172,0.339779,0.0441631,0.601158,0.628324,1.63734,0.557673,1.25106,-0.226446,-0.475564,-0.818898,1.11653,0.41884,-0.461791,-0.491991,-0.865947,0.0041648,-0.086997,0 +-1.31198,-0.824983,-0.979526,1.78898,-0.163793,1.09492,0.578337,-0.168402,0.436542,-0.661291,0.572432,0.266221,0.190545,-0.00383671,0.047791,-0.202082,0.737261,-0.207004,0.486242,0.453228,0.208363,0.440648,0.678864,-0.638529,-0.796573,0.521575,0.525817,0.870558,1.09146,-0.859752,-0.363541,-1.3757,1.58358,-0.576524,0.962073,-0.879717,2.06249,0.771998,-0.930449,0.221052,-0.921456,-1.4314,-0.2183,0.400811,0.185412,0.607177,-0.17136,0.364063,-0.0589837,-0.243899,-0.170266,0.543865,0.536602,0.346823,-0.103169,0.0256665,0.656646,-0.310983,1.24761,-0.908643,1.40022,-1.01499,0.97186,-0.511966,1.68546,-0.953422,-0.104166,-0.313637,-1.02213,-0.681898,-0.932341,-0.98071,0.471073,-0.0774882,-0.0511336,-0.432141,0.535153,0.290444,0.478672,0.458812,0.645775,0.44465,0.160957,1.46907,-0.86309,0.617067,-0.455094,-0.0424612,1.43169,-0.62539,-0.621737,-0.316224,1.09714,0.157564,1.45901,-0.989396,1.73186,0.738565,-0.890103,0.534808,-0.929932,-0.10027,0.274104,0.434436,0.113653,-0.040313,-0.525717,0.291382,-0.0797654,0.279133,0.0824944,0.645635,0.844871,0.734278,-0.461919,0.450669,-0.772431,0.842875,0.742086,0.645306,-0.817297,-0.800794,-0.579663,1.56636,-0.963983,-0.887615,-0.769393,-0.783265,-0.273049,1.44714,1.72453,1.25272,-0.125305,-0.447964,-0.34652,-0.0517895,0.913595,-0.0255413,0.366223,-0.223536,0.0397458,0.326481,0.462526,0.584831,-0.154676,-0.327558,-0.290322,-0.776492,-0.646642,0.386255,0.785265,1.41269,1.03389,-1.17179,-0.958251,-1.22057,-0.274048,-0.129452,-0.23595,-1.50589,-1.31051,-0.218231,1.8244,-0.179275,-2.20238,0.614251,0 +-1.20141,-0.77969,-0.675938,1.73601,-0.163793,1.14925,0.587722,-0.0892324,0.52998,0.166664,0.505536,0.459099,0.748833,-0.208091,0.074014,-0.436922,0.815034,0.221138,0.192243,-0.124883,0.0541959,0.452073,0.764387,-0.451049,-0.796573,0.197259,0.850628,-0.210162,1.24642,-0.724188,-0.363541,-1.31182,1.63158,-0.333709,0.949511,-0.928642,1.98386,0.379427,-0.916569,0.901172,-0.756573,-1.41847,0.59095,0.0970652,0.348897,0.382323,0.0819087,-0.00129896,-0.462765,-0.0178555,-0.0156461,0.499881,0.568463,0.576246,-0.365109,0.457995,0.809256,-0.336154,1.36795,-0.407481,1.49083,-1.01499,1.18713,-0.308949,1.72222,-1.04426,-0.104166,-0.141365,-1.02213,0.347249,-0.700789,-0.98071,0.708486,0.31334,0.467326,-0.264974,0.710952,-0.237188,0.454972,0.458812,0.382541,0.518622,0.160957,1.45882,-0.609697,0.399087,0.0621812,-0.493222,1.298,-0.523682,-0.621737,-0.273156,1.09714,0.516038,1.33633,-0.999469,1.73186,0.532062,-0.920957,0.833563,-0.842366,-0.0791135,0.55538,0.446076,0.0019811,-0.563989,-0.0181282,0.397643,-0.0148401,0.292548,0.0824944,0.600646,0.76322,0.786249,-0.839955,-0.365811,-0.838852,0.353367,0.682915,0.72984,-0.797754,-0.766628,-0.513527,1.49726,-0.963983,-0.916591,0.0613818,-0.476903,0.382456,1.41616,1.64878,1.47066,-0.216598,-0.0112325,-0.206856,-0.916204,0.516778,-0.648347,0.585496,-0.0858666,0.0134145,0.76588,0.749449,0.520412,-0.154676,-0.327558,-0.505242,0.20509,0.0949836,0.909105,0.785265,1.49964,0.988827,-1.17179,-0.843601,-1.22057,-0.178843,-0.229936,-0.367318,-1.50589,-1.42504,-0.218231,1.8244,-0.241699,-2.21962,0.577343,0 +-1.2567,-0.8816,-1.22529,1.77574,-0.163793,1.10579,-0.39763,-0.234377,-0.0721718,-2.09641,-0.888126,0.242111,-1.69557,-0.989064,-1.06669,-0.593483,-0.723137,-0.252877,0.473992,-1.10767,0.259752,-0.153411,0.636102,-0.860097,-0.775247,-0.496107,-1.07659,-0.883654,1.14311,-0.88517,-0.363541,-1.33311,1.59958,-1.26,0.962073,-0.904179,2.03628,-0.565197,-0.916569,-1.31231,-1.05101,-1.40554,-2.17918,-0.90417,0.0973825,-1.59639,-0.946066,0.335959,-0.0859025,-1.8262,-0.170266,0.0820313,0.154265,-1.93533,-0.228445,-0.374637,-0.429579,-0.839565,1.29274,-1.44249,1.44049,-1.00596,1.07949,-0.827771,1.70997,-0.998841,-0.104166,-1.79518,-1.02213,-1.98441,-1.07384,-0.98071,-1.10335,-0.224049,-1.53645,-0.264974,-0.475691,-1.10485,0.466822,-1.09667,0.703,-0.369036,0.148364,1.45882,-1.21784,-0.311719,-1.56534,-1.27842,1.38155,-0.609743,-0.621737,-0.316224,1.10903,-1.98,1.42834,-0.999469,1.73186,-0.323452,-0.936384,-0.592753,-1.07223,-0.10027,-1.13228,-0.869214,-0.841759,-1.63628,-0.820445,0.291382,-1.27439,0.292548,-0.547317,0.656883,0.844871,0.682307,-1.19756,-1.75229,-0.813944,-0.399723,-0.280724,-1.08765,-0.787982,-0.789405,-0.551319,1.55254,-0.963983,-0.858639,-1.88135,-1.138,-2.18377,1.45746,1.70559,1.34448,-0.155736,-0.474433,-1.04484,-1.47647,-0.337906,-1.54363,0.112328,-0.300019,0.00024893,-1.08218,-0.582694,-0.445887,-0.154676,-0.327558,-0.361962,-1.84731,-1.72537,-1.22877,0.785265,1.47066,1.03389,-1.17179,-0.85634,-1.22057,-0.258181,-1.24594,-0.736793,-1.50589,-1.33342,-0.218231,1.84546,-0.179275,-2.21962,0.595797,0 +-1.31198,-0.8816,-1.15301,1.77574,-0.163793,1.09492,-0.407015,0.187862,-0.373247,-1.75143,-1.43444,-1.18037,-2.61599,-0.90496,-1.26336,-0.577827,-1.10336,-1.59847,0.412742,-0.977597,-1.33331,-0.336198,0.518508,-0.860097,-0.764584,0.499209,-1.34726,-0.68004,1.14311,-0.876697,-0.363541,-1.33311,1.58358,-1.32295,0.974634,-0.904179,2.03628,-0.479322,-0.916569,-0.595092,-1.05101,-1.40554,-2.44374,-0.949169,-0.845795,-1.81001,-0.946066,-0.661762,0.640904,-1.16314,-1.61339,-0.456774,0.515361,-1.16254,-0.239833,0.377934,-0.582189,-0.826979,1.29274,-1.50786,1.45056,-1.00596,1.07949,-0.820251,1.72222,-0.998841,-0.104166,-1.41618,-1.02213,-1.4216,-1.07384,-0.98071,-2.05301,-1.07898,-1.34028,-0.18139,-0.431742,-0.905521,-0.184916,-1.15696,-0.590282,-0.27393,-0.909446,1.45882,-1.07594,-0.19799,-1.70413,0.800897,1.38155,-0.609743,-0.621737,-0.316224,1.12091,-2.53763,1.45901,-0.989396,1.73186,-0.579122,-0.920957,-0.361458,-1.07223,-0.10027,-1.55419,-1.28824,-1.07751,-1.73603,-0.869567,-0.55871,-1.0926,-0.606291,-0.561008,-0.456604,-0.236996,0.287326,-1.1056,-2.3839,-0.805641,0.353367,-0.508954,-1.37295,-0.77821,-0.789405,-0.551319,1.56636,-0.963983,-0.829662,-2.30313,-1.12994,-2.7277,1.46778,1.72453,1.28713,-1.73816,-1.66552,-0.994053,-1.63655,-1.05014,-1.97181,0.966339,0.480107,-0.0129167,-0.423082,-0.234288,-0.295574,-0.154676,-0.327558,-0.361962,-1.62422,-1.84673,-0.880204,0.785265,1.48515,1.03389,-1.18577,-0.85634,-1.23118,-0.258181,-1.25711,-0.736793,-1.49065,-1.28761,-0.218231,1.84546,-0.11685,-2.21962,0.614251,0 +-0.0957042,2.22098,1.73832,0.252882,-0.0592818,-0.480731,0.578337,-0.524666,0.613035,-1.66864,-2.57167,-1.50585,-3.38552,-2.10646,-2.43029,-0.656107,0.0977968,-0.161132,-1.16751,-2.66857,0.0413487,0.829072,0.0802006,-0.749313,0.578927,0.823525,0.482509,-0.366788,-0.475425,0.284068,-0.363541,0.0510446,1.75957,-0.540551,0.560101,-1.05095,-0.567074,0.943748,2.13701,0.592027,2.05822,0.0683094,-2.89505,-2.3779,-2.17882,-2.10232,0.141502,1.05263,-0.718493,-2.41392,-0.775862,0.554861,0.366674,-1.86288,-0.319554,1.29063,0.324495,1.85368,-0.437064,0.0718922,-0.552835,0.935429,1.29476,-0.128489,0.38658,-0.544649,-0.145623,2.58054,1.9219,1.68192,1.89773,2.0071,-2.95268,-1.89728,-2.74152,-0.766474,0.350564,-2.01941,-1.48839,-2.32658,0.577105,0.920182,-0.544249,-0.571883,0.282245,0.342222,1.50046,1.00447,-0.523524,0.0552758,0.704439,0.329796,0.38391,-2.69695,1.6737,-0.193596,-0.883193,0.41406,1.60908,0.650455,2.113,0.0478237,-2.65372,-2.56862,-2.36794,-1.13754,0.309348,1.12819,-2.32618,-2.22957,-2.24507,-0.0966894,0.252906,0.162595,-0.0532324,-2.18363,0.257105,0.315712,0.141925,0.444537,0.472576,-0.16303,-0.0411266,-0.83854,-0.440889,-1.0325,-0.705488,0.0793851,-2.57429,0.456034,1.09956,1.96389,0.148576,-1.05674,-1.46383,2.18928,0.252233,1.24602,0.608578,0.60248,-0.210401,1.07604,1.08761,1.14314,-0.194952,-0.343629,0.211157,1.15693,1.37597,0.374636,1.28408,0.151918,0.0274858,1.98673,-0.0283145,1.43139,-0.369253,-1.31293,-0.769635,0.994554,0.143976,-0.461791,1.40324,-1.05322,-1.89209,0.189812,0 +-0.814415,2.36819,1.63712,0.345578,-0.128956,-0.57853,0.240502,-1.40873,0.467688,-1.62724,-2.31524,-1.08393,-3.08374,-1.5778,-2.29917,-0.389954,0.382963,0.511664,-1.73101,-2.74084,0.285446,0.783375,0.0695102,-0.834531,0.568264,0.935358,0.655741,-0.288475,-0.923105,0.317959,-0.363541,-0.0447815,1.18361,-0.432634,0.735964,-0.170311,-0.567074,1.00509,2.16477,0.653856,1.95222,0.288095,-2.7083,-1.96165,-1.86443,-1.87746,-0.0819713,1.1791,-1.60681,-2.38378,-0.337772,0.576853,0.515361,-2.06815,-0.262611,0.954372,-0.0345881,1.82851,-0.798066,0.104577,0.685445,1.24244,0.254309,-0.0833742,0.411087,0.0458009,-0.145623,2.63222,1.69623,2.06785,1.64045,1.99177,-2.70277,-1.21333,-2.62942,0.403694,0.183555,-1.23382,-1.48839,-2.56774,0.554215,0.582026,-0.519063,-0.592395,0.282245,0.455951,1.19766,0.728194,-0.139166,0.0865708,1.46059,-0.488495,0.265039,-2.51107,2.3791,-0.616679,-0.464377,0.994236,1.63994,0.149317,2.13489,-0.290675,-2.46194,-2.28926,-2.05774,-0.31462,0.423965,1.23445,-2.30021,-2.16249,-2.45044,-0.0517,0.161049,0.235355,-0.0634495,-2.3839,0.232197,0.485157,0.0658479,0.360003,0.492119,-0.151641,-0.0127826,1.73222,-0.0408761,-0.858639,-0.641582,0.119696,-2.36508,0.39409,1.59196,-0.869325,0.605043,-0.381793,-0.600454,1.91715,0.415029,1.63527,0.6432,0.189472,-0.526376,1.0502,0.698213,1.20756,-0.194952,-0.3597,-0.863441,1.20154,1.05235,0.548919,1.26983,0.137427,0.0425068,2.11251,0.0608575,1.64355,-0.162975,-1.13429,-0.68753,0.948814,0.0409024,-0.299418,1.52959,-0.678673,-1.73694,0.89106,0 +4.0507,-0.77969,-0.661481,0.0145219,-0.163793,0.888455,0.597106,0.00313242,0.550743,0.0700689,0.527835,0.519374,0.703567,-0.172046,0.139572,-0.436922,0.840958,0.25172,0.228993,-0.168241,0.0670431,0.49777,0.775078,-0.808966,-0.849887,0.230809,0.893936,-0.25715,0.540465,-0.79197,-0.299267,-0.875275,1.72757,-0.387668,0.987196,-0.561707,2.17606,0.428498,-0.930449,0.963001,-0.756573,-0.461761,0.513137,0.175814,0.298594,0.382323,0.0670106,0.0127534,-0.395468,-0.0932033,0.074549,0.554861,0.632186,0.527946,-0.581495,0.506031,0.82721,-0.348739,0.901652,-0.505534,1.46063,-1.01499,3.48329,-0.39166,1.59969,0.0912201,-0.145623,-0.0724558,-1.03239,0.427651,-0.687925,-0.996032,0.683495,0.301126,0.453314,-0.348557,0.728531,-0.202012,0.514221,0.47087,0.382541,0.539757,0.198736,-1.18725,-0.680647,0.399087,0.112647,-0.507762,0.111502,-0.656685,-0.621737,-0.143952,1.7866,0.449654,2.04173,-0.818148,1.691,0.571396,-0.936384,0.862475,-0.842366,-0.438769,0.568166,0.480995,0.0392049,-0.576458,-0.116371,0.384361,-0.00185501,0.225471,0.109878,0.578151,0.824458,0.869403,-0.901258,-0.489053,-0.888668,0.343953,0.699821,0.76154,-0.836841,-0.983012,-0.759175,1.41433,-0.861415,3.0242,-0.0664298,-0.581711,0.284827,1.52973,1.95179,1.42478,-0.155736,0.054939,-0.206856,-0.852173,0.567652,-0.622397,0.631659,-0.07057,0.0265802,0.817574,0.780191,0.552622,-0.114399,-0.279346,-0.505242,0.279452,0.14892,0.95558,1.59763,1.26777,1.61971,-1.18577,-0.423219,-1.22057,-0.162975,-0.207606,-0.0799493,-1.21621,-0.050719,-0.258825,2.56144,1.19407,-2.82297,0.89106,0 +1.12058,-0.824983,-0.96507,0.213155,-0.163793,1.41005,0.615875,-0.128817,0.467688,-0.799284,0.516686,0.31444,0.100011,0.0802681,0.139572,-0.342986,0.763185,-0.222295,0.547492,0.352059,0.156974,0.509194,0.700245,-0.740791,-0.78591,0.476842,0.612433,0.776582,2.02125,-0.724188,-0.363541,-0.257728,1.2956,-0.603503,2.0675,1.49312,0.944268,0.82107,-0.930449,0.332344,-0.909678,-0.241976,-0.327238,0.42331,0.147685,0.49475,-0.186259,0.420273,-0.032065,-0.409664,-0.131611,0.609841,0.600325,0.455497,0.591544,0.12174,0.719485,-0.310983,1.87936,-0.995802,0.333089,-0.9879,2.33521,-0.136008,1.19532,3.17973,-0.145623,-0.227501,-1.03239,-0.553254,-0.919477,-0.996032,0.3961,-0.0774882,-0.065146,-0.599308,0.535153,0.313894,0.537921,0.519102,0.668665,0.497487,0.198736,-1.25904,-0.954311,0.626545,-0.379395,-0.100624,1.36484,0.587291,-0.621737,-0.660767,0.229377,-0.015034,2.13374,-0.858441,1.29261,0.758232,-0.890103,0.611906,-0.929932,-0.311832,0.274104,0.434436,0.200508,-0.06525,-0.607586,0.317947,-0.0667803,0.185224,0.0824944,0.623141,0.916315,0.83822,-0.625394,0.312022,-0.838852,0.833461,0.78435,0.69814,-0.827069,1.18083,1.01705,1.63547,-0.820388,0.706086,-0.884424,-0.573649,-0.454359,1.09612,1.81922,1.64272,-0.125305,-0.461199,-0.257642,0.0282488,0.954294,0.0523093,0.389304,-0.147053,0.118739,0.416946,0.524009,0.606305,-0.154676,-0.295417,-0.147042,-0.672385,-0.552253,0.490825,1.52637,1.41269,0.808576,-1.15782,-0.117487,-1.17814,-0.305783,-0.475564,-0.859951,-1.20096,-0.325583,-0.319715,2.56144,1.0068,-2.9264,0.55889,0 +0.788863,-0.824983,-0.96507,1.60359,-0.163793,-0.317733,0.60649,-0.155207,0.457306,-0.757886,0.550134,0.31444,0.130189,0.0682531,0.113349,-0.296018,0.754544,-0.207004,0.535242,0.395417,0.169821,0.486345,0.689555,-0.382874,-0.849887,0.499209,0.579952,0.807908,0.0239105,-0.910588,-0.320692,-0.215139,1.3436,-0.88229,2.04237,1.54205,-0.549602,0.808802,-0.930449,0.295247,-0.909678,-0.267833,-0.296113,0.43456,0.160261,0.539721,-0.186259,0.420273,-0.0455244,-0.349386,-0.131611,0.587849,0.579084,0.395122,-0.786492,0.0897152,0.692554,-0.310983,-0.0309367,-0.974012,1.68211,-0.9879,2.55047,-0.970635,0.153762,2.72553,-0.145623,-0.261956,-1.03239,-0.585415,-0.932341,-0.996032,0.421091,-0.0652748,-0.065146,-0.515724,0.535153,0.337344,0.526071,0.507044,0.668665,0.476353,0.186143,1.37677,-0.923904,0.626545,-0.404628,-0.0860832,0.830083,-0.993107,-0.621737,-0.596165,1.1328,0.0380732,2.10307,-0.858441,-1.31222,0.748399,-0.90553,0.592631,-0.929932,-0.290675,0.274104,0.446076,0.1881,-0.0278445,-0.574838,0.317947,-0.0667803,0.212055,0.096186,0.634388,0.895902,0.817432,-0.574308,0.358238,-0.830549,0.842875,0.767445,0.687573,-0.866156,-0.891903,-0.834759,1.53872,-0.840902,0.67711,-0.884424,-0.928384,-0.412518,1.10645,1.8571,1.65419,-0.125305,-0.447964,-0.270339,0.0122412,0.944119,0.0263591,0.389304,-0.16235,0.0924082,0.391099,0.503515,0.595568,-0.114399,3.51334,-0.218682,-0.717002,-0.592705,0.455968,1.55487,0.833024,1.34933,-1.15782,-0.104748,-1.18875,-0.289916,-0.419739,-0.859951,-1.2467,-0.382846,-0.319715,2.51932,0.944372,-2.89193,0.521982,0 +4.54827,-0.77969,-0.647024,1.36523,-0.163793,-1.48045,0.597106,-0.0100625,0.550743,0.0148719,0.550134,0.543484,0.688478,-0.136001,0.12646,-0.389954,0.8496,0.282302,0.204493,-0.182694,0.0670431,0.520618,0.775078,-0.826009,-0.764584,0.230809,0.91559,-0.272812,1.5047,-0.79197,-0.277843,-0.822038,1.77557,-0.666455,0.434484,-0.610632,-0.575811,0.453034,-0.930449,0.975367,-0.744795,-0.397118,0.46645,0.209564,0.273442,0.438536,0.0521124,0.0268058,-0.395468,-0.153482,0.113204,0.576853,0.642807,0.479647,1.40014,0.490019,0.836187,-0.336154,0.450399,-0.549113,1.41029,-1.00596,3.55504,-0.933039,0.313059,0.318316,-0.145623,-0.0552285,-1.03239,0.443732,-0.675061,-0.98071,0.695991,0.31334,0.411276,-0.264974,0.737321,-0.166837,0.514221,0.47087,0.393986,0.539757,0.198736,1.29472,-0.72119,0.399087,0.13788,-0.522303,1.88289,-0.961812,-0.621737,-0.18702,1.81037,0.449654,1.94972,-0.777854,-1.03642,0.591063,-0.936384,0.872112,-0.83142,-0.459925,0.55538,0.492635,0.0516129,-0.489178,-0.132745,0.371078,-0.0148401,0.185224,0.123569,0.578151,0.844871,0.890192,-0.942127,-0.535269,-0.523349,0.33454,0.708274,0.772107,-0.846612,1.05556,-0.0978147,1.34522,-0.861415,2.82136,-0.104773,-0.72683,0.256934,0.44571,1.87604,-0.789031,-0.14052,0.107876,-0.206856,-0.820158,0.608351,-0.583471,0.620118,-0.0858666,0.0134145,0.830498,0.780191,0.552622,-0.154676,-0.295417,-0.648521,0.309197,0.175888,0.967199,1.59763,0.383784,1.52958,-1.17179,-0.385003,-1.20997,-0.0995054,-0.30809,-0.802477,-1.18571,-0.0621716,-0.279121,2.60356,1.19407,-2.85745,0.872606,0 +-2.47298,1.60953,0.466135,-0.793254,-0.163793,0.518992,-1.41114,0.728856,-1.318,0.649637,-0.196869,-0.0954262,0.175456,0.320568,0.323133,-0.358642,-1.50951,0.802189,-0.261007,0.250889,-0.344068,-1.3758,-1.51267,0.972098,1.0161,-1.55852,-1.49884,-0.97763,-1.16416,1.18218,-0.342116,-0.0234868,-1.3762,1.36599,-1.16084,-0.194773,-0.427297,-1.6693,0.790658,-1.17629,0.562493,0.831093,0.139637,-0.0716822,0.0345039,-0.58455,-0.91627,-0.352609,0.412094,0.81097,-0.0929562,-1.38044,-1.50253,-0.30522,1.19515,-0.83899,-1.49785,-0.87732,-0.512273,0.987058,-0.925326,1.03476,-2.00598,1.29263,-1.20639,-1.77097,-0.145623,-0.244728,0.0139215,0.0738821,0.6242,2.7732,0.171182,0.288913,0.71955,0.0693602,-1.37227,0.360794,-0.362663,-0.083798,-0.979411,-1.3835,-0.720551,0.894733,1.26541,-1.45849,-0.518177,-0.827657,-0.857748,1.14278,-0.0633467,-0.574631,-1.19708,0.237225,-2.25204,-0.898735,-0.06599,-1.40514,0.899437,-1.45047,0.887069,0.280542,0.235749,-0.298867,0.0392049,0.533237,-0.509343,-0.452448,0.894114,-0.0965015,0.137261,-1.04147,-1.28824,-1.42772,1.3363,0.74337,1.22022,-1.5576,-1.52331,-1.61598,1.03934,0.75945,0.865882,0.01838,0.307853,-0.0183233,0.495941,1.28065,0.382456,-1.22678,-0.491291,-0.226976,0.331162,0.412265,0.681916,-0.451981,-1.69116,0.285861,-1.63032,-0.881289,-1.00034,-1.40527,-1.43322,-1.42292,-0.114399,-0.295417,-0.576881,0.160473,0.000594887,-1.13582,-1.43804,-1.26826,-1.21925,2.15444,0.25194,1.15559,-0.226446,0.305979,1.41437,1.83312,1.7359,1.81143,4.56196,-4.54901,-3.47804,2.44119,0 +-2.30712,0.296023,0.177002,-1.19052,-0.163793,1.00799,-1.3736,0.676076,-1.49449,0.829028,-0.0853765,-0.420908,-0.216855,0.416687,0.165795,-0.296018,-1.55271,0.343465,0.0819926,0.698926,-1.34615,-1.3758,-1.20265,1.45784,0.97345,-1.16711,-1.79117,-0.883654,-0.372114,1.09745,-0.363541,1.30743,-1.15222,0.736473,-1.21109,-0.635094,-0.470978,-1.38714,2.42849,-1.8935,0.574271,1.60681,0.1552,0.288312,0.00935252,-0.123599,-0.990761,-1.57517,0.627444,0.780831,-0.737207,-1.41343,-1.3326,-0.751991,0.602933,0.233825,-1.52478,-0.801809,0.570733,0.943479,-0.925326,-0.608652,-1.39606,1.30767,-0.961315,-1.99806,-0.145623,-0.382546,1.48081,-1.06783,0.444104,1.67001,-0.278654,0.117926,0.215102,-0.432141,-1.48654,0.583572,-0.338964,-0.288784,-1.59744,-1.36237,-0.783516,0.494747,1.32622,-1.35423,0.0243318,-0.536844,-1.32566,1.29143,-0.621737,0.674339,-1.18519,0.197395,-2.62008,0.269781,0.465192,-1.43464,1.13084,-1.51793,0.602478,1.88841,-0.275662,-0.100992,0.175692,0.707796,-0.62396,-1.4885,0.829189,-0.0965015,0.109878,-1.43512,-1.49237,-1.37575,1.26478,0.21959,1.18701,-1.40698,-1.46414,-1.63712,1.10774,0.918891,1.25325,0.115129,-0.892185,-0.0762761,0.713221,1.01459,0.731128,-1.20613,-0.832186,-0.146683,-0.596987,-0.0377011,0.593039,0.252356,-1.43679,0.0263591,-1.0879,0.204769,-0.342057,-1.66374,-1.44346,-1.42292,-0.114399,-0.295417,-0.0754024,-0.553405,0.0545313,-1.87943,-1.45229,-1.1958,-1.21925,0.449397,1.8443,0.232705,-0.337518,-0.486729,1.31584,1.8941,0.292861,1.26342,4.33032,-5.98478,-3.9952,0.0421803,0 +-1.80955,-0.791014,-0.675938,0.372062,-0.163793,-1.32832,0.597106,-0.0364525,0.540361,0.0700689,0.550134,0.531429,0.718656,-0.148016,0.113349,-0.40561,0.840958,0.267011,0.179993,-0.139336,0.0798904,0.49777,0.764387,-0.826009,-0.849887,0.219625,0.883109,-0.272812,-0.699265,-0.775025,-0.342116,0.0510446,3.64743,-0.639476,3.0473,-0.904179,-0.567074,0.428498,-0.944329,0.93827,-0.756573,-1.8839,0.5287,0.175814,0.311169,0.427294,0.0968069,0.0127534,-0.422387,-0.0932033,0.087434,0.543865,0.610945,0.491722,-0.888991,0.474007,0.818233,-0.348739,-1.11394,-0.494639,1.27942,-0.915663,0.792472,-0.92552,0.472355,-1.36219,-0.145623,-0.089683,-1.03239,0.39549,-0.700789,-0.996032,0.708486,0.337766,0.439301,-0.264974,0.728531,-0.178562,0.490522,0.47087,0.416876,0.529189,0.186143,-0.920588,-0.680647,0.389609,0.100031,-0.536844,0.161635,-0.969635,-0.59847,-0.596165,2.93965,0.489484,3.88192,-0.163376,-0.0149148,0.551729,-0.951811,0.852838,-0.842366,-1.75045,0.568166,0.480995,0.0392049,-0.489178,-0.0672496,0.397643,-0.00185501,0.225471,0.123569,0.589399,0.824458,0.848615,-0.901258,-0.489053,-0.888668,0.33454,0.691368,0.740407,-0.827069,-1.23356,-1.1182,1.37287,0.677096,-0.742733,-0.0280863,-0.710706,0.326668,0.49733,1.28894,-0.892266,-0.170951,0.0946419,-0.206856,-0.868181,0.567652,-0.609422,0.585496,-0.0858666,0.00024893,0.804651,0.769943,0.541885,-0.114399,-0.279346,-0.648521,0.249707,0.135436,0.943961,3.80668,2.29668,3.55741,-1.18577,-1.55698,-1.15693,-0.13124,-0.296925,-0.802477,-1.59737,-0.405752,-1.5984,-0.3867,0.694673,1.12468,0.300535,0 +-2.47298,-0.824983,-0.979526,-0.223838,-0.163793,-1.17619,0.587722,-0.142012,0.446924,-0.702689,0.550134,0.290331,0.160367,0.0322082,0.100237,-0.280362,0.745903,-0.207004,0.522992,0.424323,0.182668,0.463497,0.689555,-0.749313,-0.817898,0.499209,0.558298,0.854895,0.110003,-0.893643,-0.363541,-1.45023,0.0156963,-0.855311,1.82882,-0.610632,2.90989,0.784266,-0.930449,0.25815,-0.921456,-1.56069,-0.249425,0.42331,0.172837,0.562206,-0.17136,0.392168,-0.0455244,-0.304177,-0.157381,0.565857,0.557843,0.395122,-1.2876,0.073703,0.6746,-0.310983,-0.181354,-0.941327,0.55457,-1.01499,-1.18079,-0.963115,1.45264,-1.90722,17.5566,-0.29641,-1.03239,-0.633656,-0.945205,-0.996032,0.446082,-0.0774882,-0.0511336,-0.515724,0.535153,0.302169,0.514221,0.494986,0.645775,0.465785,0.17355,-1.38211,-0.903632,0.617067,-0.417245,-0.0570018,-0.206011,-1.00093,-0.621737,-1.11298,0.348249,0.0779036,0.722931,-0.133155,1.40498,0.738565,-0.90553,0.56372,-0.940878,-1.41195,0.28689,0.446076,0.163284,-0.0527815,-0.558464,0.291382,-0.0667803,0.252302,0.096186,0.634388,0.87549,0.775855,-0.53344,0.404453,-0.830549,0.842875,0.758992,0.666439,-0.846612,-0.91468,-0.967031,0.156593,-0.789618,-0.0183233,-0.833299,-0.904197,-0.35673,2.27306,1.04274,2.52595,-0.125305,-0.447964,-0.308429,-0.0357818,0.92377,0.00040888,0.377764,-0.192943,0.0792426,0.352328,0.48302,0.584831,-0.114399,-0.279346,-0.218682,-0.746747,-0.619673,0.421111,1.88267,0.470734,0.222758,-1.19974,-1.96462,-1.23118,-0.305783,-0.37508,-0.810688,-1.50589,-0.600447,-1.11128,0.939963,2.94196,1.00401,1.68458,0 +-1.03556,-0.824983,-0.979526,0.23964,-0.163793,-0.295999,0.597106,-0.128817,0.446924,-0.744087,0.527835,0.278276,0.145278,0.0562381,0.139572,-0.342986,0.737261,-0.222295,0.547492,0.395417,0.156974,0.474921,0.700245,-0.740791,-0.839224,0.488025,0.579952,0.854895,-0.113837,-0.919061,-0.363541,0.114929,2.95948,-0.891283,3.44927,-0.757406,-0.575811,0.796534,-0.930449,0.295247,-0.921456,-1.49604,-0.28055,0.42331,0.147685,0.505993,-0.186259,0.392168,-0.0186056,-0.349386,-0.157381,0.576853,0.579084,0.443422,-1.37871,0.105727,0.692554,-0.310983,-0.0610202,-0.963117,-0.532701,-0.879544,1.223,-0.970635,0.766442,-1.77097,-0.145623,-0.261956,-1.03239,-0.601495,-0.945205,-1.01135,0.421091,-0.101915,-0.0371211,-0.599308,0.535153,0.302169,0.526071,0.507044,0.63433,0.465785,0.186143,-1.05392,-0.923904,0.617067,-0.392012,-0.0570018,-0.356412,-1.00093,-0.621737,-0.746903,2.29774,0.0247964,4.3113,0.582057,-0.260076,0.748399,-0.90553,0.582994,-0.940878,-1.2427,0.28689,0.446076,0.200508,-0.0901869,-0.607586,0.278099,-0.0667803,0.225471,0.0824944,0.634388,0.885696,0.807038,-0.574308,0.389048,-0.830549,0.842875,0.767445,0.69814,-0.866156,-1.08551,-0.929239,0.156593,0.0309211,-0.539898,-0.871643,-0.936446,-0.412518,2.00463,2.42526,1.79183,-0.125305,-0.474433,-0.283036,-0.0197742,0.933945,0.00040888,0.400845,-0.16235,0.118739,0.378175,0.493267,0.595568,-0.114399,-0.279346,-0.147042,-0.717002,-0.592705,0.455968,3.77818,2.7749,3.39218,-1.18577,-0.486913,-1.1251,-0.321651,-0.453234,-0.868162,-1.64311,-1.36778,-1.98404,-0.913154,0.0704246,0.900574,-0.71443,0 +-1.53313,-0.791014,-0.675938,0.199913,-0.128956,-1.39352,0.597106,-0.0232575,0.540361,0.0838681,0.538984,0.531429,0.718656,-0.148016,0.12646,-0.40561,0.840958,0.267011,0.192243,-0.153789,0.0798904,0.49777,0.764387,-0.817488,-0.849887,0.219625,0.883109,-0.25715,-0.699265,-0.775025,6.21377,0.104281,1.88756,-0.639476,0.874141,-0.904179,-0.567074,0.428498,-0.944329,0.93827,-0.756573,-1.85804,0.5287,0.175814,0.311169,0.416051,0.0819087,0.0127534,-0.422387,-0.0932033,0.087434,0.543865,0.610945,0.503796,-0.854825,0.490019,0.818233,-0.348739,-1.2794,-0.494639,2.52776,-0.897603,0.792472,-0.92552,0.337566,-1.31678,-0.145623,-0.089683,-1.03239,0.39549,-0.700789,-0.996032,0.708486,0.337766,0.453314,-0.264974,0.728531,-0.190287,0.502371,0.47087,0.416876,0.529189,0.186143,-1.01289,-0.670511,0.389609,0.100031,-0.522303,-0.00547678,-0.977459,-0.59847,-0.617699,1.52508,0.476207,1.15231,0.0078725,-0.10685,0.551729,-0.951811,0.852838,-0.842366,-1.7293,0.568166,0.480995,0.0392049,-0.501647,-0.0672496,0.384361,-0.00185501,0.225471,0.123569,0.589399,0.824458,0.848615,-0.901258,-0.489053,-0.888668,0.343953,0.691368,0.740407,-0.827069,-1.1994,-1.12765,2.79646,0.697609,0.184511,-0.0280863,-0.710706,0.312721,0.270202,0.645028,-0.915207,-0.170951,0.0814076,-0.206856,-0.868181,0.567652,-0.609422,0.585496,-0.0858666,0.00024893,0.804651,0.769943,0.541885,-0.114399,5.20076,-0.576881,0.249707,0.135436,0.943961,1.99668,0.209885,1.34933,-1.18577,-1.37863,-1.13571,-0.13124,-0.30809,-0.802477,-1.61262,-0.463015,-1.69989,-0.513049,0.444973,1.0902,0.13445,0 +-0.759129,-0.8816,-1.12409,1.61683,-0.163793,1.50785,0.456341,-1.01288,0.623417,-1.95842,-1.61283,-0.517348,-1.80119,-1.1813,-0.935573,-0.640451,0.573074,-0.0388052,-0.689757,-2.06156,-0.15136,0.577739,-0.0694653,-0.817488,-0.78591,0.935358,-0.188768,0.494655,1.81463,-0.952952,-0.342116,0.114929,0.751642,-1.34993,1.89163,-0.80633,1.31992,0.551177,-0.916569,-0.446702,-1.05101,-1.41847,-2.05468,-1.19667,-1.14761,-2.05734,-0.528917,-0.0294038,-1.00114,-2.05225,-0.0800712,0.675817,0.377295,-1.68176,-0.0234474,0.281861,0.30654,-0.512348,1.84928,-1.47517,1.60157,-0.834395,0.97186,-0.587158,1.44039,-1.77097,-0.145623,-0.9855,-1.02213,-1.40552,-1.07384,-0.996032,-1.42823,-1.01792,-1.20015,-0.432141,0.719742,-1.1752,-0.481161,-1.03638,-0.0981478,0.455218,0.236515,1.44856,-1.19757,0.692887,-1.06068,0.800897,1.298,0.399521,-0.621737,-0.811505,1.15658,-2.57746,1.0603,0.56191,1.65014,0.856567,-0.936384,0.13968,-1.06128,-1.30617,-0.978852,-0.962332,-1.10233,-1.24976,-0.804072,0.145272,-1.11857,-1.11608,-1.19082,-0.0067106,-0.0328703,0.0378647,-1.47342,-2.6766,-0.780733,0.946425,0.573026,0.0852668,-0.817297,0.668341,0.743058,0.543589,0.0206643,-0.308087,-2.07307,-1.17025,-2.49061,0.910289,0.853353,1.79183,-0.307892,-0.686182,-0.828996,-0.772135,0.710099,-0.791073,0.250816,-0.192943,0.210899,-0.0353767,0.308817,0.724408,-0.154676,3.33656,-0.0754024,-1.44575,-1.25343,-0.461924,2.06794,1.34023,1.24418,-1.17179,-0.448697,-1.09328,-0.337518,-1.31293,-0.777846,-1.61262,-1.31051,-1.98404,-0.95527,0.00799982,0.797142,-0.769791,0 +-1.75427,-0.870277,-0.936156,1.64332,-0.163793,0.99712,0.794176,-0.748981,0.654563,-2.4414,-1.06651,-0.408854,-2.4651,-0.941005,-1.26336,-0.515203,0.564433,-1.048,-0.787757,-1.35337,0.0670431,0.63486,-0.122917,-0.885662,-0.78591,0.409742,0.450027,-0.554739,1.21198,-0.842807,-0.342116,0.061692,1.64757,-1.27799,1.23843,-0.855255,2.15858,0.0359273,-0.930449,0.567295,-0.94501,-1.85804,-2.75499,-0.791671,-1.12246,-1.61888,-0.216055,0.574849,-0.933843,-2.35364,0.061664,0.455896,0.356054,-1.9957,1.12681,0.105727,0.746417,-0.587859,1.00694,-1.54054,1.19888,-0.897603,0.00316567,-0.767617,1.58743,-1.18052,-0.145623,-0.899364,-1.01187,-0.488933,-0.919477,-0.98071,-1.57818,-0.956851,-1.95682,-0.18139,0.702162,-0.85862,-0.481161,-0.939915,0.176531,0.825075,0.236515,1.57163,-1.22797,0.702364,-0.783123,-1.01669,1.78262,-0.578448,-0.59847,-0.596165,1.26356,-2.28537,1.15231,-0.183522,1.73186,0.325559,-0.936384,0.795014,-1.00655,-1.75045,-1.52862,-1.00889,-1.01547,-0.925575,0.833311,1.04849,-1.31335,-1.10267,-1.13605,0.0382788,-0.0328703,0.0482589,-1.37125,-2.46093,-0.714312,0.46633,0.682915,0.264902,-0.77821,0.395014,-0.608007,1.37287,0.646325,-0.858639,-2.13698,-1.09769,-2.5185,1.45746,0.720783,0.782429,-0.399185,-0.739119,-1.08293,-1.44446,-0.083536,-1.1933,-0.0492419,-0.300019,0.0924082,0.481563,0.810932,0.584831,-0.154676,-0.311488,-0.433602,-0.657513,-0.74103,0.525681,2.09645,1.23879,1.37937,-1.18577,-1.48054,-1.15693,-0.178843,-1.22361,-0.613635,-1.56688,-0.359941,-1.639,-0.344584,0.757097,1.03848,0.392804,0 +1.12058,1.74541,1.73832,-1.68048,-0.128956,-1.87165,-1.32668,0.768441,-1.34915,0.373652,-0.464453,-0.264195,-0.126322,0.356612,0.12646,-0.358642,-0.973738,0.710444,-0.0772573,0.713378,-0.703791,-1.30726,-1.40577,-0.860097,-0.828561,-1.27894,0.309276,-0.601727,-2.45555,-0.893643,-0.363541,0.114929,-1.3442,-1.24202,-1.23621,-0.610632,-0.575811,-1.22766,1.55405,-0.78058,1.83445,0.85695,0.264137,0.0633158,0.00935252,-0.573307,1.69091,-0.732024,0.560148,0.84111,-0.363542,-1.34745,-1.36446,-0.82444,-1.65204,0.00965439,-1.29138,2.01729,-2.72341,-0.549113,-0.935393,0.628419,0.0749208,-0.948077,-1.43921,0.727089,-0.104166,0.909498,1.19359,1.29599,1.84628,1.24099,-0.553553,0.215633,0.635475,-0.348557,-1.36348,0.478046,-0.374513,-0.168204,-1.25409,-1.29896,-0.821295,-1.51544,-0.346168,-1.35423,2.00512,-0.260571,-1.91055,-1.00093,-0.0168143,-0.703835,-1.22086,-1.82068,-0.319842,-0.697267,-1.46545,-1.32647,1.57823,-1.29627,1.78462,-0.883049,0.222963,-0.19411,0.026797,0.682859,-0.492969,-0.704819,0.582473,-0.136748,0.0277283,-1.3114,-1.36989,-1.40693,-0.0430152,-0.473648,-0.847155,-1.06809,-1.32889,0.307169,-0.836841,-1.52967,-1.25047,-1.64017,-0.646024,-0.626827,-0.628801,-1.04932,-1.16565,-1.21645,-0.718555,-1.02991,0.0572821,0.266688,0.66922,1.64502,-1.01962,2.07643,-1.31872,-0.131756,-0.697528,-1.26311,-1.33074,-1.32629,-0.154676,-0.311488,-0.361962,1.81132,1.98276,-0.00878739,-1.1245,-1.22478,-1.20423,1.3718,0.710539,1.13437,-0.242313,-1.04497,-0.827109,0.720115,0.71661,-0.867724,-0.3867,-0.741098,-0.0303125,0.097542,0 +1.12058,1.68879,1.78169,-1.68048,-0.094119,-1.88252,-1.32668,-0.432302,-1.27647,-0.412905,0.583581,0.31444,0.431967,-0.0518966,0.12646,-0.358642,-1.37124,-0.818636,0.290242,0.077456,0.118432,-1.26156,-0.19775,-0.766357,-0.828561,-1.37959,0.341757,-0.742691,-2.45555,-0.851279,-0.363541,0.178813,-1.3602,-0.76538,-1.23621,-0.58617,-0.575811,-1.26446,1.55405,-0.595092,1.83445,0.792308,0.108512,0.344562,0.072231,0.550964,1.85479,-0.94281,0.0486913,-0.424734,0.358019,-1.24849,-1.10957,0.564171,-1.66342,-1.17525,-1.2824,1.94178,-2.72341,-0.777905,-0.925326,0.700657,0.0749208,-0.948077,-1.43921,0.727089,-0.104166,0.926725,1.19359,1.3764,1.85914,1.24099,0.583532,0.105712,0.173065,-0.348557,-1.42501,0.079391,0.324625,0.519102,-0.533057,-1.2884,0.362445,-1.51544,-0.86309,-1.34476,1.9925,-1.43836,-1.89384,-1.00875,-0.0749799,-0.703835,-1.22086,0.290332,-0.289173,-0.70734,-1.46545,-1.32647,1.57823,-1.277,1.76273,-0.946518,0.414742,0.480995,0.0888367,-0.775953,-0.853193,-1.95339,-0.0797654,0.0913157,0.0414198,-0.0067106,-0.737104,-0.949587,-0.850172,-0.0422998,-0.855458,-1.54818,-1.38806,0.286035,-0.836841,-1.52967,-1.25992,-1.64017,-0.65628,-0.68478,-0.488208,-0.823576,-0.0359514,-1.22678,-0.680677,-1.02991,-0.0340113,0.200516,-0.219552,1.56498,-1.06032,2.07643,-0.603195,0.0976925,0.342555,-1.22434,-1.3205,-1.31555,-0.154676,-0.311488,-0.361962,1.85593,1.99624,0.0609259,-1.1245,-1.23928,-1.20423,1.35782,0.6978,1.14498,-0.242313,-0.30809,-0.83532,0.720115,0.739515,-0.867724,-0.3867,-0.741098,-0.0130738,0.115996,0 +0.0701521,1.66614,0.495048,-1.69373,-0.163793,-1.86078,-1.36421,0.781636,-1.39068,0.456448,-0.386408,-0.288305,-0.0810552,0.404672,0.113349,-0.342986,-1.51815,0.664572,-0.0650073,0.771189,-0.832263,-1.34153,-1.46991,-0.851575,-0.78591,-1.34604,-1.59628,-0.914979,-2.45555,-0.876697,-0.363541,1.00931,-0.57626,-1.22403,-1.03523,-0.80633,-0.575811,-1.58343,0.693499,-1.15155,0.633158,0.960379,0.34195,0.130815,0.0470796,-0.494608,-0.946066,-0.928757,0.573607,0.916457,-0.427967,-1.38044,-1.40695,-0.776141,-1.61787,-0.118443,-1.47092,-0.87732,-2.70837,-0.47285,-0.935393,0.998637,0.290186,-0.933039,-1.45146,-0.362972,-0.145623,-0.0724558,0.434497,0.122123,0.714248,2.74256,-0.516067,0.240059,0.677512,-0.264974,-1.41622,0.513221,-0.386363,-0.13203,-1.34565,-1.34123,-0.896853,-1.51544,-0.265083,-1.39214,-1.06068,-0.565925,-1.91055,-0.985283,1.1814,0.911213,-1.20897,-1.76757,0.600252,-0.818148,-1.46545,-1.38547,0.729739,-1.41192,0.930852,1.52876,0.235749,-0.15919,0.0764288,0.695327,-0.54209,-0.917342,0.595458,-0.0965015,0.0551113,-1.42388,-1.41072,-1.43812,0.0387222,-0.396621,-0.822247,-1.46346,-1.48105,-1.61598,-0.807525,-1.48411,-1.22213,-1.50196,-0.338322,-1.5251,-0.552114,-1.03319,-1.12381,-1.22678,0.228378,-1.00697,-0.0340113,0.240219,0.694613,-0.435974,-1.71151,0.143135,-1.38796,-0.208239,-0.776522,-1.3148,-1.39223,-1.37997,-0.114399,-0.295417,-0.361962,0.130728,-0.134246,-1.22877,-0.668435,-1.25377,-1.21925,2.2942,1.20735,1.1662,-0.274048,-1.02264,-0.818898,1.48245,0.991474,0.634227,-0.765747,0.257699,0.676472,0.0421803,0 +-0.15099,0.465873,0.162546,-1.69373,-0.163793,-1.86078,-1.35483,-0.485081,-1.34915,-0.302511,0.594731,0.326495,0.5225,-0.0518966,0.152683,-0.421266,-1.51815,-0.864509,0.314742,0.14972,0.0541959,-1.31868,-0.283274,-0.757835,-0.796573,-1.43551,-1.85613,-0.899317,-2.45555,-0.817388,-0.363541,0.775064,-0.256283,-0.7384,-1.1106,-0.317085,-0.575811,-1.31354,2.51177,-1.84404,0.62138,0.792308,0.21745,0.344562,0.13511,0.539721,-0.960965,-1.11144,0.07561,-0.319247,0.332249,-1.30347,-1.1733,0.588321,-1.62926,-1.28733,-1.50683,-0.826979,-2.70837,-0.712536,-0.935393,-0.34679,0.613084,-0.933039,-1.45146,0.0458009,-0.145623,-0.193047,1.37823,-0.971345,0.405513,1.11842,0.633514,0.154566,0.243127,-0.348557,-1.46017,0.0207653,0.348324,0.543218,-0.658951,-1.33067,0.324666,-1.51544,-0.812411,-1.37319,-0.278464,-1.45291,-1.91055,-0.977459,-0.610103,-0.445428,-1.17331,0.343439,0.508243,-0.526019,-1.46545,-1.38547,0.914864,-1.48902,0.690044,0.195917,0.478669,0.504274,0.0888367,-1.21235,-0.869567,-2.00652,-0.0408102,0.171809,0.0551113,-0.0741947,-0.869786,-1.04314,-0.799086,0.0655372,-0.830549,-1.56701,-1.45569,-1.65825,-0.807525,-1.48411,-1.22213,-1.39139,-0.851159,-0.887615,-0.385959,-0.791327,0.0477301,-1.22678,-0.112518,-1.00697,-0.0948736,0.200516,-0.232249,0.316387,-1.43679,-0.103392,-0.730143,0.0365061,0.303058,-1.54743,-1.40247,-1.37997,-0.114399,-0.295417,-0.290322,-0.865727,-0.201667,-1.9259,-0.654183,-1.25377,-1.21925,0.491324,1.01627,0.550941,-0.258181,-0.319255,-0.818898,1.63491,1.15181,1.20253,-0.95527,0.0704246,0.624756,-0.253082,0 +1.61814,-0.00970569,0.220372,1.35199,-0.163793,0.779789,-1.27976,0.781636,-1.28686,0.249459,-0.553647,-0.20392,-0.186677,0.344597,0.205129,-0.40561,-1.4663,0.786898,-0.0405073,0.684473,-0.52393,-1.26156,-1.28817,-0.868619,-0.146143,-1.17829,-1.75869,-0.867991,1.84907,-0.766552,-0.256419,-0.236434,1.03962,-1.26899,1.51478,-0.341547,1.9926,-1.64477,0.49918,-1.78221,0.62138,0.999164,0.1552,0.0070666,-0.00322319,-0.719462,-0.931168,-0.507185,0.587066,0.750692,-0.234691,-1.30347,-1.31136,-0.969339,1.3432,0.185788,-1.42603,-0.839565,1.41307,-0.570903,2.0546,-0.726039,-0.0327119,-0.92552,1.51391,1.13586,-0.145623,-1.86409,1.17307,-1.69496,0.534152,0.520854,-0.59104,0.240059,0.621463,-0.515724,-1.3459,0.44287,-0.327114,-0.168204,-1.11675,-1.25669,-0.682772,0.576795,-0.325897,-1.29737,-0.164915,-0.304193,1.5988,0.321283,-0.621737,-0.423894,1.65584,-1.94017,-0.0744838,-0.67712,1.0168,-1.28713,0.359489,-1.38301,0.569641,-0.713799,0.235749,-0.205749,0.014389,0.657922,-0.509343,-0.518862,0.621428,-0.123333,0.0688029,-1.13145,-1.29845,-1.35496,-0.175838,-0.612295,-0.548258,-1.35991,-1.41342,-1.59485,-0.377568,1.48832,1.0076,1.04116,-0.676794,-0.36604,-0.807737,-1.09769,-1.34696,1.83945,0.455642,1.67713,0.209438,0.346094,0.694613,-0.243882,-1.56906,0.324787,-1.20331,0.0365061,-0.565872,-1.8059,-1.28975,-1.26187,-0.154676,-0.327558,-0.361962,-0.374936,0.0680154,-1.75162,0.856525,1.3982,1.28925,0.9665,0.621367,0.943432,-0.194711,-1.07847,-0.851741,0.872581,0.579178,-0.908317,-0.00765348,-1.30292,-0.392324,0.152904,0 +1.72872,0.171467,0.177002,1.44468,-0.163793,1.50785,-1.27037,-0.247572,-1.21418,-0.550897,0.550134,0.326495,0.311256,0.00817826,0.192018,-0.389954,-1.4663,-0.818636,0.302492,-0.0237135,0.234057,-1.18159,-0.0587749,-0.067566,-0.892538,-1.26776,-1.75869,-0.867991,1.2292,-0.673352,-0.363541,-0.460028,1.61558,-0.252771,1.87907,-0.439396,1.65189,-1.5957,0.471421,-1.79458,0.644935,1.08966,-0.03155,0.389561,0.0470796,0.483507,-0.931168,-0.802286,0.0621507,-0.56036,0.422444,-1.17152,-0.992747,0.564171,0.978761,-0.983099,-1.41706,-0.839565,1.56349,-0.886853,0.564637,-0.635741,0.361941,0.728695,1.26884,1.18128,-0.145623,-1.7435,1.37823,-1.77537,0.521288,0.582143,0.521055,0.0690722,0.131028,-0.599308,-1.40743,0.161467,0.336474,0.519102,-0.384272,-1.22499,0.450596,1.68445,-0.934039,-1.27842,-0.177532,-1.3802,1.28129,0.618586,-0.621737,-0.208554,1.5013,0.131011,1.30566,-0.667046,1.74207,-1.2773,0.359489,-1.36373,0.613424,-0.608018,0.401957,0.492635,0.175692,-0.551521,-0.853193,-1.92683,-0.0797654,0.0376536,0.0551113,0.128258,-0.563597,-0.814462,-0.952344,-0.211758,-0.531652,-1.51053,-1.40497,-1.58428,-0.856384,0.5089,0.68637,-0.921468,-0.676794,-0.134229,-0.654363,-0.380158,-0.217261,1.12709,0.626089,-0.76609,0.0420666,0.213751,-0.194159,-0.0517895,-1.53853,0.311812,-0.418544,0.235362,0.44788,-1.79297,-1.27951,-1.2404,-0.154676,-0.311488,-0.361962,-0.568278,0.014079,-1.76324,2.06794,1.58659,2.01025,0.924573,0.493979,0.519117,-0.194711,-0.0624624,1.19269,1.10128,0.430293,-0.888021,0.0976372,-1.4902,-0.530233,0.0790881,0 +0.512436,-0.768367,-0.9217,0.173429,-0.163793,-0.795861,0.531416,-0.168402,0.353487,-0.537098,1.26369,0.0853973,0.854455,2.24296,1.79162,3.05438,0.771827,0.205848,0.559742,-1.03541,0.144127,0.474921,0.785768,-0.885662,-0.860549,0.510392,0.753185,1.07417,0.127221,-0.571679,-0.363541,-0.470675,0.0156963,0.646542,0.133005,0.318935,-0.523394,0.686123,-0.569571,0.468369,-0.827237,0.663022,0.34195,2.03204,1.68192,1.70896,-0.230953,0.574849,0.50631,-1.11793,-0.247576,0.521873,0.780873,-1.8991,-0.957323,-0.24654,0.728462,-0.172545,-0.391939,-0.342112,-0.0696041,-0.9879,0.792472,-0.399179,0.276298,0.0458009,-0.145623,-0.451455,0.875589,-0.39245,-0.842293,-0.873455,1.12084,1.51025,0.0189285,-0.0142232,0.649422,1.87334,0.265376,-1.21725,0.302426,0.402381,-0.116088,-0.715467,-0.842818,0.522293,-0.0261341,0.190189,0.395592,-0.695804,-0.621737,-0.273156,0.205603,1.84372,-0.381182,0.823819,-0.372441,0.787733,-0.951811,0.631181,-0.83142,0.534416,1.1435,1.74973,2.2106,0.707796,-0.247362,-0.0539679,0.244861,1.16456,-0.21872,0.28572,0.426413,0.796643,-1.1669,-2.01418,-0.880366,0.767566,0.767445,0.856641,-0.817297,-0.948846,-0.985927,0.184235,-0.758848,0.590181,0.547066,-0.138293,1.35874,0.177286,-1.32459,-0.697267,0.285516,0.412265,1.98968,-0.371943,0.883071,-0.168268,1.00096,0.158879,0.171402,0.391099,0.503515,0.606305,-0.114399,-0.295417,-0.648521,-0.360063,-0.242119,0.64187,-0.0270967,0.543192,0.538199,-1.03203,0.200985,-1.14632,0.0591699,1.96955,-0.252371,0.872581,1.31215,1.12135,-0.828921,-0.491399,0.19379,-0.843607,0 +0.733577,-0.0549989,0.78418,-1.3097,-0.163793,1.02972,-1.36421,1.74487,-1.56717,1.18781,-1.32295,-0.0833713,-0.307388,-0.916975,0.152683,-0.781356,-1.57864,-2.69941,1.91949,0.453228,-2.3097,-1.3758,-0.881937,1.46636,1.00544,-0.87634,-1.65042,-0.335463,-0.182711,1.07203,0.000675141,1.57362,-1.80817,0.664528,-0.934733,-0.0724618,-0.48845,-1.47302,0.749019,-1.53489,0.39761,0.675951,0.170762,-1.11792,-0.0157989,-2.05734,-0.931168,-2.51668,2.63289,0.780831,-1.89686,-1.43542,-1.18392,0.805668,0.523212,0.12174,-1.49785,-0.6382,0.660984,1.20495,-0.935393,1.32371,-1.6472,1.27007,-0.936808,0.182058,-0.145623,0.0136805,0.0549533,-0.215565,0.585608,0.674075,-0.928417,-0.798077,0.523376,-0.682891,-1.52169,-1.19865,1.11856,0.422638,-1.99801,-1.36237,-1.29983,0.269114,1.31609,-1.27842,-0.593875,2.60394,-1.29224,1.29143,1.73979,1.85871,-1.24463,0.409823,-0.166493,-0.828221,0.454977,-1.4543,1.02285,-1.47938,0.230321,1.3172,-0.198951,-1.17185,-0.854167,-2.13502,-0.96781,-2.39172,0.894114,1.29871,1.67071,-1.69381,-1.52299,-1.2822,0.978703,0.450669,1.1787,-1.15281,-1.43878,-1.36238,1.12728,1.01,1.29104,-1.15643,1.75405,1.19868,0.764345,0.950098,0.605606,-1.00997,0.531396,0.541548,-2.77281,-1.69199,-1.08293,0.36441,-1.57923,0.10421,-0.568573,0.908412,0.210899,-1.46989,-1.44346,-1.44439,0.00643071,-0.182922,4.36627,-0.151849,-0.296055,-1.61219,-1.06749,-1.16682,-1.21925,0.449397,1.29653,0.646412,-0.416856,-1.24594,1.22553,0.0797565,-0.909669,0.350074,0.28716,1.31892,0.641995,1.18632,0 +0.0148667,-0.179555,-0.96507,0.199913,-0.163793,-0.86106,0.568953,-0.128817,0.384633,1.4224,1.18564,-0.0833713,2.25772,0.608927,0.349356,3.94677,0.754544,-0.13055,0.608742,-0.572919,0.0670431,0.49777,0.81784,-0.860097,-0.860549,0.454475,0.677395,0.995859,0.127221,-0.715715,-0.363541,1.31808,-0.544262,-0.531558,0.133005,-0.170311,-0.514658,0.75973,-0.930449,0.381808,-0.638799,1.25774,2.1472,0.580808,0.185412,1.33795,-0.230953,0.532692,0.304419,1.12743,-0.312001,0.565857,0.70653,-1.8991,-0.945935,-0.118443,0.719485,-0.172545,-0.40698,0.257104,-0.0394021,1.23341,-0.822018,-0.887924,0.264044,0.272897,0.600608,-0.382546,-1.03239,-0.521093,-0.893749,-0.628302,1.83308,0.0690722,1.63036,5.50229,0.605472,0.548397,0.383874,-1.09667,0.336761,0.434083,0.0476205,-0.674443,-0.325897,0.560203,-0.0892165,0.00116081,0.395592,-0.953988,-0.41234,1.14809,0.21749,1.5118,0.262884,-0.787927,-0.413301,0.787733,-0.920957,0.611906,-0.284131,1.25373,1.60377,1.17938,0.361812,1.50578,1.84849,0.0921416,0.387697,0.19864,-0.437784,0.521915,0.712189,0.869403,-0.860389,-1.81391,-0.86376,0.824048,0.775897,0.793241,-0.817297,-0.948846,-1.00482,-0.866183,1.08737,-0.858639,1.14778,-0.654271,1.62373,0.156638,0.455642,-0.697267,0.102929,-0.408261,0.427981,-0.195859,0.92377,-0.155292,0.804769,-0.0399768,0.224064,0.391099,0.503515,0.627778,-0.114399,-0.295417,-0.433602,-0.538533,-0.349992,0.560538,-0.0128447,0.543192,0.553219,0.421446,1.37296,1.10255,1.02709,0.841894,-0.53974,0.643882,0.178334,0.7966,-0.15506,0.382549,0.538563,0.724975,0 +0.236008,0.194114,0.856463,-0.925677,-0.163793,0.660257,-1.39237,1.11151,-1.48411,1.14641,-0.18572,-0.396799,-0.00561078,-1.01309,0.493583,-0.530859,-1.50951,-1.65963,0.914992,-0.0815246,-1.69303,-1.36438,0.090891,0.989142,1.06941,-0.384274,-1.5638,-0.304138,-1.14695,1.14829,-0.363541,-0.981748,-0.176289,1.33002,-1.3367,1.56651,-0.374881,-1.48529,0.665739,-1.47307,0.550716,-0.422975,0.264137,-1.09542,-0.74519,-0.348453,-0.91627,-2.19347,1.5023,0.720553,-0.711437,-1.39144,-1.05647,1.28866,1.1382,1.85105,-1.54274,-0.348739,-0.286646,1.19406,-0.905191,-0.428058,0.577207,1.33023,-1.13287,0.863346,-0.145623,0.0309077,0.649914,-0.0869221,0.68852,0.735363,0.0337324,-0.944637,0.817637,0.0693602,-1.42501,-1.269,0.324625,0.47087,-1.76911,-1.36237,0.42541,0.761404,1.34649,-1.25946,-0.265847,1.64426,-1.00815,1.17407,-0.540305,-0.574631,-1.0901,0.303609,-1.1786,1.60955,0.179171,-1.40514,1.02285,-1.49866,0.4164,-0.0579573,0.619307,-0.275588,-0.767312,-1.96046,-0.836819,-2.19248,0.738293,-0.0696705,0.192027,-0.535336,-1.33928,-1.12629,1.08087,0.804991,1.26173,-1.33167,-1.48105,-1.45748,0.980707,0.736673,0.903674,0.681802,-0.881929,0.850968,0.636534,1.2484,0.201146,-1.22678,-1.89275,-0.639915,-2.01204,-1.12291,-0.96866,0.284372,-1.56906,-0.129342,0.343142,1.97917,1.11933,-1.45696,-1.45371,-1.42292,0.207814,-0.00614467,7.94826,0.011748,-0.0668256,-1.53086,-1.06749,-1.25377,-1.20423,0.365543,-1.06016,-0.0749237,-0.226446,0.74141,1.49648,0.140743,1.20907,0.816897,-0.639398,-0.179275,0.107597,-1.2865,0 +-0.0404188,-0.428668,-0.79159,0.173429,-0.163793,-0.817594,0.681565,1.6657,0.633799,-1.40645,-1.56823,0.422935,-1.49941,-0.111971,-0.725789,-0.656107,0.884165,-0.145841,0.498492,-0.486202,0.478155,0.509194,0.358152,0.128436,-0.860549,0.376192,0.80732,-0.210162,0.127221,-0.936007,-0.363541,1.29678,-0.57626,-1.34094,0.145567,-0.121386,-0.523394,0.440766,-0.916569,0.826977,-0.450361,1.27066,-1.44774,-1.16292,0.474654,-1.87746,0.290483,0.251644,1.82533,-1.23849,0.164744,0.499881,0.324192,2.03731,-0.957323,0.233825,0.836187,-0.386495,-0.391939,-1.30086,-0.0796714,1.19729,-0.929651,-0.970635,0.276298,0.272897,-0.145623,-0.382546,-1.03239,0.0899625,-0.713653,-0.628302,-1.5157,0.582034,-1.00398,-0.682891,0.649422,-0.612392,0.241676,1.84548,1.00057,0.582026,-0.0909023,-0.612907,-1.08608,0.522293,-0.0639835,0.306515,0.395592,-0.993107,-0.44724,1.12655,0.205603,-2.60401,0.232214,-0.667046,-0.362226,0.541896,-0.951811,0.852838,-0.251293,1.25373,-1.04278,-1.24169,-0.568784,0.00956091,-0.263735,0.158555,-0.326482,1.00357,2.24576,0.555657,0.885696,0.526393,-0.952344,1.05148,-0.755825,0.494571,0.750539,0.69814,-0.866156,-0.948846,-1.00482,-0.921468,1.03608,-0.974544,-1.79189,-1.17025,-2.33719,0.18761,0.47458,-0.639915,-0.0644424,0.451968,-0.0671914,-0.724112,0.679574,-0.323969,0.296979,0.296548,-0.18407,0.662492,0.769943,0.541885,-0.114399,-0.279346,0.282797,-0.0328694,-0.107278,0.839391,-0.0270967,0.543192,0.538199,0.393494,1.37296,1.06012,-0.289916,-1.33526,-0.859951,0.704868,0.24705,0.85749,-0.091886,0.444973,0.538563,0.780336,0 +0.236008,0.205437,0.856463,-1.12431,-0.0592818,0.964521,-1.41114,-1.56707,-1.05845,0.677236,0.2937,0.543484,0.0547447,0.620942,0.218241,3.89981,-1.47494,2.27011,-0.922507,0.67002,1.04343,-1.36438,-1.45922,1.4408,0.97345,-1.80456,-1.59628,-0.97763,-0.578736,1.15676,-0.363541,-0.960453,-0.176289,0.826404,-1.34927,1.59097,-0.470978,-1.48529,0.651859,-1.47307,0.550716,-0.410047,0.34195,0.648307,0.109958,1.12434,-0.484222,1.43205,-1.09536,0.645205,1.01516,-1.28148,-1.49191,-1.69383,0.637099,-2.72842,-1.53376,-0.562689,0.450399,0.780056,-0.905191,-0.419028,0.541329,1.33023,-1.03484,0.908766,0.683522,0.0309077,0.619141,-0.0869221,0.701384,0.750686,0.00874156,0.801874,0.0189285,6.67245,-1.28437,0.689098,-0.161217,-0.55406,0.348206,-1.3835,0.135771,0.566539,1.19446,-1.45849,-0.253231,-1.59831,-1.32566,1.30708,-0.528672,-0.531563,-1.06632,0.38327,-1.27061,1.5894,0.383472,-1.40514,1.02285,-1.49866,0.4164,0.00551128,-0.0455274,0.446076,0.237732,1.64293,2.27421,0.955516,0.725308,-0.19041,-0.615774,-0.0741947,-0.971849,-1.32378,1.35674,0.0347266,1.1787,-1.62349,-1.52331,-1.58428,1.1566,0.861948,1.2438,0.709445,-0.851159,0.879945,0.828251,1.09522,0.772969,-1.22678,-1.91169,-0.651385,2.05052,1.48424,1.43102,0.268364,-1.57923,-0.142317,-1.81497,-2.21209,-1.07933,-1.45696,-1.45371,-1.42292,-0.114399,-0.311488,-0.576881,0.0266204,-0.0533415,-1.53086,-1.08174,-1.22478,-1.20423,0.365543,-1.02195,-0.0749237,1.07469,1.14335,1.34048,0.15599,1.22053,0.837194,-0.597281,-0.179275,0.090358,-1.32341,0 +0.678292,0.00161761,0.798636,-1.11107,-0.163793,0.910188,-1.3736,-1.27678,-1.0896,0.60824,0.237953,0.760472,0.024567,0.669002,0.257575,3.64931,-1.44902,2.08662,-0.702007,0.742284,1.18475,-1.36438,-1.20265,1.50897,0.97345,-1.72627,-1.66125,-0.899317,-0.630391,1.16523,0.107797,1.58426,-1.77617,0.799425,-0.947294,-0.0724618,-0.497186,-1.47302,0.749019,-1.52253,0.421165,0.624237,0.4042,0.547058,0.260867,1.10186,-0.379935,1.33368,-1.02806,0.49451,1.19555,-1.28148,-1.42819,-1.22291,0.659877,-2.50425,-1.50683,-0.776638,0.37519,0.725582,-0.935393,1.35983,-1.57545,1.30015,-1.04709,0.136639,0.517693,0.0136805,0.0241795,-0.183405,0.598472,0.689397,-0.128708,0.924008,-0.135208,5.58587,-1.36348,0.607022,0.170577,-0.276726,0.428321,-1.36237,0.463189,0.6691,1.11337,-1.4111,-0.54341,-1.49653,-1.32566,1.2836,1.89102,1.85871,-1.22086,0.250502,-0.135823,-0.908808,0.271106,-1.44447,1.03828,-1.47938,0.252213,1.25373,-0.0710979,0.446076,0.411443,1.63046,1.9631,0.557035,0.556503,-0.00259291,-0.383018,0.206989,-0.85958,-1.25102,1.39761,0.157969,1.1787,-1.57643,-1.46414,-1.60542,1.18591,0.861948,1.22491,-1.10114,1.78482,1.22766,0.777126,1.09522,0.591659,-1.15451,0.531396,0.415372,2.05052,1.56365,1.38024,0.36441,-1.56906,0.0782596,-1.72264,-2.01324,-0.526376,-1.46989,-1.44346,-1.43366,-0.154676,-0.311488,-0.147042,-0.136977,-0.255603,-1.60057,-1.05324,-1.21029,-1.21925,0.463373,1.28379,0.667627,0.900149,1.06519,1.27479,0.0645099,-0.989838,0.248591,0.245044,1.2565,0.624756,1.14941,0 +0.567721,-0.802337,-0.733764,0.160187,-0.163793,-0.795861,0.644028,1.08512,0.592271,-1.57204,-1.30065,0.519374,-1.30325,-0.496451,-0.489781,-0.577827,0.866882,0.144684,0.241243,0.785642,0.349682,0.520618,0.593341,-0.621485,-0.860549,0.342642,0.850628,0.134415,0.127221,-0.919061,-0.363541,-0.598444,0.0156963,-1.26899,0.145567,0.367859,-0.505922,0.428498,-0.73613,0.888807,-0.791905,0.611308,-1.43218,-1.10667,0.462078,-1.91119,0.171298,0.0408582,0.869713,-1.40426,0.177629,0.554861,0.451638,1.51809,-0.968712,0.457995,0.836187,-0.361324,-0.376897,-1.27907,-0.099806,-0.99693,0.792472,-0.955596,0.300805,0.0912201,-0.145623,-0.279183,0.947395,0.250767,-0.752245,-0.888777,-1.11585,0.484327,-0.947929,-0.515724,0.693372,-0.671018,0.395723,2.11076,0.84034,0.560891,0.110585,-0.766748,-1.11648,0.465429,-0.0135176,1.55701,0.378881,-0.977459,-0.621737,-0.359292,0.193716,-2.13932,-0.289173,0.88426,-0.331581,0.561563,-0.951811,0.862475,-0.875203,0.470948,-0.966067,-1.07873,-0.705272,-0.31462,-0.230988,0.278099,0.673368,1.07065,2.39637,0.645635,0.926521,0.734278,-0.982996,0.0193213,-0.880366,0.438089,0.733633,0.72984,-0.856384,-0.948846,-0.985927,0.101308,-0.830645,0.532228,-1.63851,-1.138,-1.96062,0.197934,-1.2299,-0.594033,-0.186167,0.240219,-0.181462,-0.80415,0.638875,-0.349919,0.343142,0.128286,-0.131407,0.72711,0.780191,0.552622,0.0467073,-0.102569,5.08267,0.100983,0.000594887,0.897486,-0.0128447,0.557684,0.538199,-1.07396,0.124552,-1.16753,-0.210578,-1.27944,-0.83532,0.842088,1.3236,1.08075,-0.849979,-0.491399,0.211029,-0.788245,0 +-2.47298,1.6435,0.523961,-0.793254,0.358765,0.518992,-1.41114,0.728856,-1.318,0.635838,-0.196869,-0.107481,0.190545,0.320568,0.323133,-0.358642,-0.904607,0.802189,-0.261007,0.265342,-0.356916,-1.3758,-1.51267,0.972098,1.0161,-1.54734,-1.47719,-0.97763,-1.16416,1.19065,-0.342116,0.0191026,-1.29621,1.36599,-1.1734,-0.219235,-0.427297,-1.47302,1.62345,-1.16392,0.586048,0.973307,0.139637,-0.0716822,0.0345039,-0.58455,2.46562,-0.352609,0.412094,0.81097,-0.105841,-1.38044,-1.49191,-0.30522,1.19515,-0.822978,-1.49785,-0.87732,-0.527314,0.976163,-0.915259,1.00767,-1.86247,1.29263,-1.20639,-1.72555,-0.145623,0.0309077,1.19359,0.0578017,0.649928,2.75788,0.171182,0.288913,0.71955,0.0693602,-1.3459,0.360794,-0.362663,-0.083798,-0.990856,-1.3835,-0.733144,0.894733,1.26541,-1.45849,-0.50556,-0.813116,-0.857748,1.14278,0.611374,-0.531563,-1.18519,0.237225,-2.37472,-0.123082,-0.0762051,-1.3953,1.63994,-1.44083,0.90896,0.745978,0.222963,-0.298867,0.0392049,0.545706,-0.460221,-0.452448,0.894114,-0.0965015,0.137261,-1.04147,-1.28824,-1.42772,1.3363,0.727964,1.22022,-1.5576,-1.52331,-1.61598,1.03934,0.75945,0.865882,0.0874865,0.266826,-0.0472997,0.495941,1.28065,0.382456,-1.22678,-0.567045,-0.204035,0.331162,0.412265,0.681916,1.1808,-1.20276,2.01155,-1.63032,-0.865993,-1.00034,-1.40527,-1.43322,-1.42292,-0.114399,-0.295417,-0.576881,0.160473,-0.0128892,-1.11258,-1.45229,-1.25377,-1.21925,2.21034,0.328374,1.14498,-0.226446,0.305979,1.41437,1.78738,1.67863,1.97381,4.51985,-4.98598,-3.51252,2.23819,0 +-2.63883,0.533813,1.50701,-1.19052,-0.128956,1.02972,-1.2516,0.623296,-1.48411,0.870426,-0.0519286,-0.420908,-0.216855,0.404672,0.165795,-0.202082,-1.29347,0.374047,0.106493,0.655567,-1.34615,-1.36438,-1.15989,1.44932,0.97345,-1.08882,-0.73012,-0.914979,-0.337677,1.08898,-0.342116,0.00845525,-1.71218,0.745466,-1.1106,0.857105,-0.462241,1.09096,2.44237,0.728051,0.550716,-0.616903,0.1552,0.288312,-0.0283746,-0.0561427,-0.826881,-1.56112,0.613985,0.795901,-0.737207,-1.41343,-1.3326,-0.82444,0.602933,0.185788,-1.10286,-0.87732,0.585775,0.987058,-0.935393,0.0595468,-1.9701,1.30767,-0.961315,-1.31678,-0.145623,2.28768,1.46029,1.73017,0.791432,0.720041,-0.266158,0.0812856,0.299177,-0.348557,-1.3459,0.607022,-0.315264,-0.324958,-1.59744,-1.33067,-0.745737,0.474235,1.33636,-1.24998,-1.12377,-0.624088,-1.30895,1.29925,-0.59847,-0.574631,-1.20897,0.277056,-0.74922,1.65991,0.485622,-1.05113,1.5628,-0.689126,0.668153,-1.17924,-0.237306,-0.100992,0.138469,0.770138,-0.558464,-1.26269,0.842174,-0.0965015,0.109878,-1.40138,-1.48216,-1.36536,1.23413,0.21959,1.18701,-1.37874,-1.29508,-1.57372,1.10774,0.918891,1.2627,-1.40521,0.677096,-0.945568,0.738783,1.01459,0.759022,-1.22678,-0.301904,-0.98403,-0.612203,-0.077404,0.593039,2.17328,0.39468,1.03842,-1.07636,0.204769,-0.30256,1.10189,-0.726156,-0.853879,-0.114399,-0.295417,-0.218682,1.12718,0.270277,0.177115,-1.06749,-1.1958,-1.21925,0.449397,-0.920035,0.232705,-0.289916,-0.37508,1.32405,1.13177,1.36941,-0.177638,4.37244,-3.11324,-2.20238,3.71451,0 +-2.30712,1.92658,1.43473,-1.19052,-0.163793,1.01885,-1.3736,0.676076,-1.49449,0.842827,-0.0853765,-0.420908,-0.216855,0.416687,0.165795,-0.296018,-1.55271,0.358756,0.0819926,0.684473,-1.34615,-1.3758,-1.20265,1.45784,0.97345,-1.16711,0.233487,-0.335463,-0.354896,1.09745,-0.363541,1.10513,-1.21621,0.736473,-1.18597,-0.659556,-0.470978,-1.38714,2.45625,-1.18865,1.78734,1.61973,0.1552,0.288312,0.0219282,-0.123599,-0.990761,-1.56112,0.613985,0.780831,-0.737207,-1.41343,-1.3326,-0.751991,0.602933,0.233825,-1.34524,2.35709,0.570733,0.954374,-0.925326,0.565211,-1.53957,1.30767,-0.961315,-1.95264,-0.145623,0.117044,1.43978,0.877903,1.67905,1.80791,-0.278654,0.117926,0.229115,-0.432141,-1.47775,0.583572,-0.338964,-0.288784,-1.59744,-1.36237,-0.783516,0.494747,1.32622,-1.35423,2.05558,-0.304193,-1.32566,1.29143,0.390345,0.609737,-1.19708,0.210672,-2.55874,0.219414,0.465192,-1.43464,1.62451,-1.38301,1.82841,1.99419,-0.275662,-0.100992,0.175692,0.707796,-0.607586,-1.47521,0.829189,-0.0965015,0.109878,-1.43512,-1.49237,-1.37575,1.25457,0.21959,1.18701,-0.983367,-1.32044,0.465671,1.10774,0.918891,1.25325,0.101308,-0.143444,-0.0472997,0.713221,1.01459,0.745075,-1.18548,-0.718555,-0.0778597,-0.596987,-0.0377011,0.593039,0.252356,-1.42661,0.0263591,-1.0879,0.189472,-0.342057,-1.48281,-1.42297,-1.42292,-0.0741224,-0.295417,-0.0754024,1.58823,1.91534,-0.29926,-1.45229,-1.1958,-1.21925,1.28794,1.7806,1.04951,-0.337518,-0.497893,1.30763,1.87886,0.350124,1.54758,4.33032,-6.10963,-3.94348,0.263627,0 +-2.47298,1.41703,1.66603,-0.780012,-0.163793,0.573325,-1.30791,0.676076,-1.32838,0.663437,-0.163422,-0.167756,0.205634,0.332582,0.310021,-0.280362,-1.49222,0.832771,-0.236507,0.221984,-0.446846,-1.39865,-1.56612,0.98062,1.02676,-1.48024,0.937244,-0.883654,-1.12973,1.19065,-0.342116,-0.0341341,-1.4402,1.357,-1.12316,-0.0969241,-0.427297,0.256749,0.943337,1.12376,1.18669,0.675951,0.170762,-0.0266829,0.00935252,-0.449637,-0.886474,-0.408819,0.412094,0.82604,-0.183151,-1.39144,-1.52377,-0.389745,1.20654,-0.919051,-0.142313,0.230184,-0.437064,0.997953,-0.925326,1.08893,-2.11361,1.31519,-1.19413,-1.81639,-0.145623,1.857,0.0959851,2.03569,1.48609,2.74256,0.183678,0.264486,0.789612,0.320111,-1.36348,0.41942,-0.398213,-0.083798,-1.07097,-1.37294,-0.833888,0.904989,1.29582,-1.43005,1.42476,-0.711332,-0.857748,1.16625,-0.365808,-0.639233,-1.18519,0.303609,-1.884,-0.898735,-0.00469978,-1.34613,1.57823,-0.0530657,1.13882,-0.10027,0.31246,-0.252308,0.0392049,0.645453,-0.443848,-0.439166,0.881129,-0.0965015,0.150952,-1.18768,-1.32907,-1.4693,1.34652,0.727964,1.22852,-1.00219,-0.872432,0.571338,1.05888,0.770839,0.903674,-0.0645478,0.359137,-0.0183233,0.495941,1.28065,0.41035,-1.22678,-0.339782,-0.123742,0.285516,0.385796,0.70731,0.988709,-1.46731,0.311812,-1.6534,-0.881289,-1.053,0.959733,-0.726156,-1.16524,-0.114399,-0.295417,-0.720161,1.94517,1.69959,1.08339,-1.38103,-1.25377,-1.21925,2.01468,0.124552,1.18741,-0.194711,0.272484,1.43079,1.90935,1.7588,1.44609,4.5409,-3.86234,-3.27118,2.81027,0 +-1.14613,-0.870277,-1.03735,0.226398,-0.163793,1.19272,-0.209944,0.583711,0.592271,-0.0265259,0.249102,1.09801,0.477233,-0.0278667,0.454248,0.0171033,0.417529,1.50557,0.865992,-0.356127,1.64725,0.63486,1.21339,-0.791922,-0.732596,-0.194158,-1.58546,-0.930642,1.45304,-0.825861,-0.363541,-1.22664,1.66357,-0.873297,0.949511,-0.953104,1.90524,0.735195,-0.916569,-0.372507,-1.03923,-1.39262,0.34195,0.153314,0.197988,-0.146084,-0.663001,1.01047,0.439013,0.0574923,1.62075,0.708805,0.143644,0.455497,-1.27621,-0.598808,-0.60912,-0.864735,1.50332,-0.668957,-0.492431,-1.00596,1.40239,-0.624753,1.78349,-1.08968,-0.104166,-0.640955,-1.02213,-1.19647,-1.04812,-0.98071,0.446082,0.337766,0.565413,-0.0978067,0.614262,0.313894,1.04746,0.16942,0.88612,0.254438,1.78545,-1.18725,-0.690783,-0.349629,-1.75459,-0.522303,0.579415,-0.609743,-0.621737,-0.273156,0.336362,-0.161079,1.33633,-0.999469,1.73186,0.895901,-0.920957,-0.101252,-1.07223,-0.0791135,0.606521,0.480995,0.200508,1.35616,1.84849,1.56652,0.309786,0.144978,-0.0681126,1.47794,0.68157,0.474422,-0.901258,-1.45959,-0.789036,-0.380896,-0.585031,-1.43635,-0.768438,-0.686908,-0.447391,1.42815,-0.953726,-0.945568,-0.449864,-0.767141,-0.231208,1.41616,1.62984,1.60831,1.36582,0.98134,0.364498,-0.59605,0.740623,-0.804048,0.723984,1.48968,1.77761,0.287711,0.411289,0.853248,-0.154676,-0.343629,-0.147042,-1.72833,-1.98157,-1.1242,0.785265,1.63006,0.538199,-1.18577,-0.728952,-1.23118,-0.274048,-0.910995,-0.769635,-1.50589,-1.44794,-0.238528,1.84546,-0.179275,-2.23686,0.540436,0 +-1.14613,-0.870277,-1.19638,0.226398,-0.163793,1.19272,-0.350709,0.860805,0.654563,-1.17186,0.438641,1.17034,-0.367744,0.236463,-0.0439897,0.173664,0.624923,0.0682304,0.755742,0.395417,1.76288,0.0408008,1.11717,-0.808966,-0.732596,0.532759,-1.14155,-0.68004,1.43582,-0.876697,-0.363541,-1.27987,1.66357,-0.855311,0.949511,-0.928642,1.92271,-0.49159,-0.916569,-1.20102,-1.03923,-1.39262,-0.934175,0.43456,0.147685,0.528478,-0.186259,0.940212,0.304419,-0.424734,1.71095,0.422908,-0.121868,-0.0274983,-1.2876,1.96314,-0.420602,-0.85215,1.48828,-1.12654,-0.552835,-1.00596,1.40239,-0.730022,1.78349,-1.08968,-0.104166,-1.86409,-1.02213,-1.90401,-1.06098,-0.98071,0.133696,0.508754,-0.373419,-0.18139,0.719742,0.536672,1.03561,0.53116,1.0349,-0.284497,1.76027,-1.1975,-0.964447,-0.283287,-1.60319,2.05139,0.529282,-0.601919,-0.610103,-0.29469,0.336362,-0.307124,1.33633,-0.989396,1.74207,0.394393,-0.920957,-0.467468,-1.07223,-0.0791135,-0.0583127,0.27148,0.150876,0.533237,0.604077,0.782841,-0.0148401,0.0779002,0.233101,1.47794,0.650951,0.224961,-0.696915,-0.0731104,-0.789036,0.0803718,-0.38216,-1.28841,-0.768438,-0.698296,-0.447391,1.40051,-0.963983,-1.00352,-1.22951,-0.936446,-0.9425,1.41616,1.62984,1.63125,1.62449,1.20632,0.351801,-1.41244,0.150485,-1.06355,0.573955,1.32142,1.65912,-1.08218,-0.367502,0.0157892,-0.154676,-0.343629,-0.147042,-1.80269,-1.76582,-1.13582,0.785265,1.60108,0.508157,-1.18577,-0.767168,-1.23118,-0.289916,-0.386244,-0.679319,-1.50589,-1.40213,-0.218231,1.84546,-0.179275,-2.23686,0.55889,0 +-1.36727,-0.870277,-1.03735,1.85519,-0.163793,-1.49132,-0.20056,0.557321,0.592271,-0.0403251,0.28255,1.09801,0.477233,-0.0278667,0.441137,0.0171033,0.408888,1.50557,0.865992,-0.385033,1.6601,0.63486,1.21339,-0.715226,-0.743259,-0.194158,-1.58546,-0.930642,0.196095,-0.808916,-0.363541,-1.35441,1.50359,-0.90927,0.585224,-0.928642,-0.575811,0.747463,-0.916569,-0.360142,-1.03923,-1.41847,0.34195,0.175814,0.197988,-0.112356,-0.663001,1.02453,0.425554,0.0424227,1.62075,0.708805,0.143644,0.431347,0.0904399,-0.61482,-0.60912,-0.864735,-1.36965,-0.668957,1.33982,-1.00596,0.792472,-0.895443,0.38658,-0.953422,-0.104166,-0.623728,-1.02213,-1.19647,-1.04812,-0.98071,0.471073,0.337766,0.551401,-0.0978067,0.605472,0.313894,1.04746,0.181478,0.897565,0.265005,1.78545,1.47933,-0.700918,-0.349629,-1.75459,-0.551384,1.61551,-0.930517,-0.621737,-0.359292,1.12091,-0.134525,1.64303,-0.999469,-1.06706,0.895901,-0.920957,-0.0916148,-1.07223,-0.121426,0.606521,0.480995,0.200508,1.35616,1.88124,1.5798,0.296801,0.131562,-0.054421,1.47794,0.68157,0.474422,-0.921692,-1.45959,-0.797339,-0.380896,-0.585031,-1.43635,-0.748895,-0.926069,-1.07096,1.66311,-0.953726,-0.742733,-0.449864,-0.880011,-0.217261,0.414738,1.76241,-0.915207,1.36582,0.994574,0.364498,-0.59605,0.740623,-0.804048,0.712444,1.48968,1.77761,0.287711,0.421537,0.863984,-0.154676,-0.343629,-0.218682,-1.71346,-1.96808,-1.10096,0.785265,0.383784,1.07895,-1.17179,-0.907296,-1.23118,-0.242313,-0.8775,-0.794267,-1.50589,-1.21889,-0.218231,1.84546,-0.11685,-2.21962,0.632705,0 +-1.42255,-0.870277,-1.19638,1.86843,-0.163793,-1.48045,-0.350709,0.860805,0.654563,-1.17186,0.44979,1.17034,-0.382833,0.236463,-0.0439897,0.236288,0.624923,0.098812,0.743492,0.40987,1.77573,0.0408008,1.10648,-0.826009,-0.743259,0.521575,-1.14155,-0.68004,0.264969,-0.851279,-0.363541,-1.38635,1.50359,-0.927256,0.585224,-0.879717,-0.575811,-0.479322,-0.916569,-1.20102,-1.03923,-1.41847,-0.949738,0.43456,0.13511,0.550964,-0.186259,0.954264,0.317879,-0.394595,1.72383,0.422908,-0.121868,-0.0757978,0.113217,1.96314,-0.420602,-0.85215,-1.35461,-1.11564,1.31969,-1.00596,0.792472,-0.895443,0.374327,-0.908002,-0.104166,-1.86409,-1.02213,-1.92009,-1.06098,-0.98071,0.133696,0.508754,-0.373419,-0.18139,0.719742,0.548397,1.02376,0.53116,1.04635,-0.284497,1.76027,1.46907,-0.954311,-0.283287,-1.60319,2.02231,1.64893,-0.930517,-0.621737,-0.380826,1.12091,-0.293847,1.64303,-0.989396,-1.0262,0.404227,-0.920957,-0.467468,-1.07223,-0.121426,-0.0710979,0.27148,0.138469,0.570643,0.604077,0.769558,0.0111301,0.0913157,0.246793,1.47794,0.661157,0.214567,-0.696915,-0.0885156,-0.805641,0.0615445,-0.38216,-1.28841,-0.748895,-0.91468,-1.07096,1.64929,-0.963983,-0.771709,-1.22951,-0.936446,-0.9425,0.425062,1.78135,-0.903736,1.65492,1.21956,0.364498,-1.39643,0.160659,-1.05058,0.562415,1.30612,1.64595,-1.08218,-0.367502,0.0265258,-0.154676,-0.343629,-0.218682,-1.80269,-1.76582,-1.14744,0.785265,0.398276,1.109,-1.18577,-0.97099,-1.23118,-0.258181,-0.430904,-0.794267,-1.50589,-1.12727,-0.218231,1.84546,-0.11685,-2.21962,0.651159,0 +-1.42255,-0.870277,-0.863873,1.86843,-0.163793,-1.48045,0.766024,0.939975,-0.186373,-1.11667,0.360595,1.09801,-0.669522,0.212433,-0.0833243,0.596377,-0.826834,-0.00822363,0.853742,0.525492,1.6601,0.726254,1.21339,-0.843053,-0.743259,0.577492,0.395892,-0.492089,0.316624,-0.851279,-0.363541,-1.39699,1.48759,-0.972222,0.597786,-0.879717,-0.567074,0.354891,-0.916569,0.678588,-0.94501,-1.4314,-1.13649,0.389561,0.072231,0.505993,-0.960965,0.181382,0.371716,-0.168551,1.63364,0.27996,0.589704,-0.317295,0.147384,1.77099,0.710508,-0.663371,-1.35461,-1.19191,1.30962,-1.00596,0.756594,-0.895443,0.374327,-0.908002,-0.104166,-0.537592,-1.02213,-0.215565,-0.893749,-0.98071,-0.0412402,0.374406,-0.359407,-0.18139,-0.370212,0.607022,1.04746,0.494986,0.897565,0.856777,1.78545,1.46907,-0.883361,0.60759,-0.858821,2.28404,1.66564,-0.922693,-0.610103,-0.40236,1.12091,-0.492999,1.6737,-0.979322,-1.00577,0.178056,-0.920957,0.823926,-1.0175,-0.121426,-0.250092,0.155082,0.0640208,0.770138,-0.558464,-0.518862,0.153966,0.104731,0.287868,1.47794,0.630539,0.578365,-0.615177,-0.0731104,-0.805641,0.438089,0.573026,0.0852668,-0.748895,-0.891903,-1.06151,1.66311,-0.963983,-0.771709,-1.37011,-0.968695,-1.19354,0.435386,1.78135,-0.892266,1.33539,0.994574,0.326408,-1.26837,-0.561752,-1.90693,0.758607,1.47439,1.76444,0.688339,0.903158,0.756618,-0.154676,-0.343629,-0.0037626,-0.538533,-0.74103,0.560538,0.785265,0.412767,1.12402,-1.18577,-1.00921,-1.23118,-0.258181,-0.464399,-0.794267,-1.49065,-1.07001,-0.197935,1.86652,-0.11685,-2.21962,0.669613,0 +-1.36727,-0.870277,-1.13855,1.85519,-0.163793,-1.48045,0.5408,0.412176,-0.217519,-0.164518,0.394043,1.02568,0.477233,-0.0158517,0.388691,-0.264706,-0.628082,1.59731,0.976242,-0.428391,1.48024,0.155043,1.24546,-0.723747,-0.743259,0.834708,0.0385998,0.447668,0.213314,-0.800443,-0.363541,-1.36505,1.51958,-0.864304,0.585224,-0.904179,-0.567074,-0.933233,-0.916569,-0.372507,-1.0039,-1.41847,0.264137,0.265813,0.160261,0.101255,-0.826881,1.22126,0.573607,-0.153482,1.50479,-0.214862,0.547222,0.467572,0.0904399,0.393946,0.432219,-0.487177,-1.36965,-0.701641,1.33982,-1.00596,0.828349,-0.887924,0.38658,-0.953422,-0.104166,-1.82964,-1.02213,-1.4216,-1.02239,-0.98071,0.521055,0.227846,0.453314,-0.0978067,-0.247153,0.290444,1.05931,0.302058,0.691555,0.465785,1.76027,1.47933,-0.751597,0.702364,-0.93452,0.611869,1.61551,-0.930517,-0.610103,-0.359292,1.12091,-0.00175722,1.64303,-0.999469,-1.04663,-0.343119,-0.920957,0.284239,-1.02844,-0.121426,0.568166,0.515914,0.212916,1.15666,1.16079,1.68606,0.153966,0.118147,0.0140367,1.4217,0.508063,0.432845,-1.01365,-1.16689,-0.805641,0.871116,0.623744,0.212068,-0.748895,-0.926069,-1.06151,1.64929,-0.963983,-0.742733,-0.475427,-0.855825,-0.161474,0.425062,1.76241,-0.915207,1.27453,0.782825,0.402588,-1.81263,-0.6635,-1.73826,0.920176,1.76502,1.8566,-0.720322,0.18585,-0.166734,-0.154676,-0.343629,-0.290322,-1.25241,-1.1051,-0.148214,0.785265,0.383784,1.09397,-1.18577,-0.920035,-1.23118,-0.242313,-0.721191,-0.786056,-1.50589,-1.18453,-0.218231,1.84546,-0.11685,-2.21962,0.632705,0 +-1.20141,-0.870277,-0.863873,0.23964,-0.163793,1.19272,0.766024,0.92678,-0.186373,-1.14427,0.349446,1.09801,-0.654433,0.224448,-0.0833243,0.518097,-0.826834,-0.0235144,0.865992,0.525492,1.64725,0.726254,1.21339,-0.834531,-0.732596,0.577492,0.395892,-0.476426,1.41861,-0.876697,-0.363541,-1.29052,1.66357,-0.945242,0.949511,-0.928642,1.93144,0.367159,-0.916569,0.678588,-0.956788,-1.39262,-1.13649,0.389561,0.072231,0.49475,-0.960965,0.16733,0.371716,-0.183621,1.62075,0.290956,0.589704,-0.281071,-1.29899,1.77099,0.701531,-0.663371,1.48828,-1.2028,-0.583037,-1.00596,1.40239,-0.790175,1.78349,-1.08968,-0.104166,-0.520364,-1.02213,-0.215565,-0.893749,-0.98071,-0.0412402,0.374406,-0.373419,-0.18139,-0.370212,0.595297,1.04746,0.507044,0.897565,0.856777,1.78545,-1.20776,-0.903632,0.60759,-0.858821,2.29859,0.51257,-0.594095,-0.610103,-0.29469,0.336362,-0.506276,1.33633,-0.979322,1.74207,0.18789,-0.920957,0.833563,-1.02844,-0.0791135,-0.250092,0.155082,0.0764288,0.745201,-0.574838,-0.518862,0.140981,0.104731,0.274176,1.47794,0.630539,0.578365,-0.615177,-0.0577051,-0.797339,0.438089,0.573026,0.0747,-0.758667,-0.709685,-0.447391,1.41433,-0.963983,-1.00352,-1.37011,-0.984819,-1.19354,1.41616,1.62984,1.61978,1.30496,0.994574,0.326408,-1.25236,-0.551577,-1.90693,0.758607,1.48968,1.77761,0.701263,0.913405,0.767354,-0.154676,-0.343629,0.0678772,-0.538533,-0.74103,0.560538,0.785265,1.60108,0.493136,-1.18577,-0.792646,-1.23118,-0.274048,-0.408574,-0.654688,-1.50589,-1.36778,-0.218231,1.84546,-0.179275,-2.23686,0.577343,0 +-1.14613,-0.870277,-1.13855,0.226398,-0.163793,1.20358,0.5408,0.425371,-0.227901,-0.150719,0.371745,1.02568,0.462145,-0.0158517,0.388691,-0.280362,-0.628082,1.6126,0.988492,-0.428391,1.46739,0.155043,1.24546,-0.791922,-0.732596,0.834708,0.0494268,0.447668,1.48748,-0.817388,-0.363541,-1.23728,1.66357,-0.747393,0.949511,-0.953104,1.8965,-0.933233,-0.916569,-0.360142,-1.0039,-1.39262,0.264137,0.243313,0.147685,0.0562844,-0.841779,1.22126,0.587066,-0.138412,1.4919,-0.214862,0.547222,0.491722,-1.27621,0.409958,0.441196,-0.487177,1.51836,-0.701641,-0.462229,-1.00596,1.43827,-0.572119,1.78349,-1.1351,-0.104166,-1.82964,-1.02213,-1.40552,-1.02239,-0.98071,0.508559,0.215633,0.467326,-0.18139,-0.247153,0.290444,1.04746,0.302058,0.68011,0.465785,1.76027,-1.1975,-0.741461,0.702364,-0.921904,0.611869,0.612838,-0.601919,-0.610103,-0.273156,0.336362,-0.015034,1.33633,-0.999469,1.73186,-0.343119,-0.920957,0.293876,-1.02844,-0.0791135,0.568166,0.504274,0.212916,1.14419,1.09529,1.67278,0.179936,0.118147,0.000345165,1.41045,0.497857,0.432845,-0.993213,-1.16689,-0.789036,0.871116,0.623744,0.222635,-0.758667,-0.675519,-0.428495,1.37287,-0.963983,-1.00352,-0.475427,-0.751017,-0.17542,1.40584,1.6109,1.65419,1.25931,0.769591,0.415285,-1.81263,-0.673675,-1.73826,0.920176,1.78032,1.8566,-0.707399,0.18585,-0.155997,-0.154676,-0.343629,-0.218682,-1.25241,-1.09162,-0.148214,0.785265,1.63006,0.553219,-1.18577,-0.741691,-1.23118,-0.258181,-0.754686,-0.769635,-1.50589,-1.44794,-0.238528,1.84546,-0.179275,-2.23686,0.540436,0 +1.28643,2.07378,1.60821,0.160187,-0.163793,-1.01319,-0.247481,-0.300352,-0.310956,-1.46165,0.327148,-0.372689,-0.744966,0.308553,-0.0571012,0.142352,-0.429329,-0.283458,-0.530507,0.323153,-0.0100403,-0.416168,-0.229822,-0.834531,-0.807236,-0.462557,-0.0696707,-0.727028,0.0583475,-0.893643,-0.363541,-0.428086,-0.30428,-1.04417,0.24606,-0.708481,-0.53213,-0.344376,1.58181,-0.508531,1.91689,1.10259,-1.35436,0.43456,-0.254737,0.404808,-0.409732,-0.746076,-0.624278,-0.575429,0.0101239,-0.456774,-0.514826,-0.112022,-1.04843,0.153764,-0.36674,2.36968,-0.497231,-1.24638,-0.00920017,0.538122,0.110798,-0.933039,0.300805,0.727089,-0.145623,1.08177,1.31668,0.76534,1.79482,1.37889,-0.091222,-0.236262,-0.527556,-0.264974,-0.238363,0.642198,-0.457462,0.555276,-0.441497,-0.295065,0.249108,-0.961613,-1.01513,-0.378061,2.01773,-0.973064,0.36217,-0.969635,0.401978,-0.682301,0.276926,-0.665597,-0.411852,-0.586459,-0.454162,-0.618456,1.71707,-0.342184,1.9707,-0.650331,-0.262877,0.178362,0.163284,0.745201,-0.607586,-0.55871,-0.00185501,-0.244072,0.356325,0.0495261,-0.512566,-0.513029,-0.809303,-0.30419,-0.838852,-0.804509,-0.390612,-0.0098342,-0.807525,-1.00579,-1.00482,-1.0735,-0.584483,-0.36604,-1.45958,-1.03319,-1.34696,0.249554,-0.6428,-0.75462,-0.703496,-0.315621,0.326408,2.04521,-0.337906,2.10238,-0.476247,-0.254129,0.158236,-0.448929,-0.326513,-0.542516,-0.154676,-0.343629,-0.290322,1.48412,1.87488,-0.29926,0.0299111,0.586667,0.613303,1.49758,0.646845,1.09194,-0.242313,-0.598378,-0.818898,0.948814,0.499009,-0.827131,-0.365642,-0.865947,-0.0992671,0.0237264,0 +1.12058,1.37174,2.05636,0.186671,0.28909,-1.06752,-0.453936,0.649686,-0.445921,-0.330109,0.338297,-0.432963,0.326345,-0.0278667,0.46736,-0.546515,-0.662647,-0.0388052,-0.408007,-0.572919,-0.048582,-0.427592,-0.208441,-0.817488,-0.807236,-0.283624,0.460854,-0.821004,0.0583475,-0.876697,-0.363541,0.338523,-0.352276,-0.972222,0.233498,-0.366009,-0.549602,-0.454787,1.67897,0.10976,1.81089,0.585451,0.09295,0.310812,-0.292464,-0.0224146,2.28684,-0.324504,-0.00514623,-0.274038,-0.0156461,-0.41279,-0.493585,0.346823,-1.03704,-0.903039,-0.492418,1.36286,-0.512273,-0.832379,0.0210018,1.16117,-0.104467,-0.933039,0.288552,0.863346,-0.145623,1.35741,1.30642,1.82665,1.96205,1.34825,0.421091,-0.517169,0.397264,-0.264974,-0.343842,-0.155112,-0.457462,0.193536,-0.452942,-0.506412,0.249108,-0.900076,-0.822547,-0.264332,1.87895,-0.68225,0.36217,-0.977459,-0.365808,-0.725369,0.288813,-0.227463,-0.350512,-0.73756,-0.515452,-0.225117,1.67079,-0.640939,1.62044,-0.98883,0.542595,0.515914,0.324588,-0.489178,-0.787698,-0.133664,0.205906,-0.244072,0.0140367,0.0382788,-0.522772,-0.513029,-1.06473,-1.59823,-0.830549,-0.362068,-0.407518,0.0958335,-0.817297,-1.01718,-1.01427,-1.01822,-0.451146,-0.916591,-0.73105,-0.944508,-0.412518,0.228906,-0.472352,-0.800502,-0.292676,-0.633244,-0.4227,1.22882,-0.40913,1.99858,-0.441625,-0.498875,0.171402,-0.268,-0.654425,-0.40294,-0.194952,-0.343629,-0.290322,2.07902,2.03669,0.397874,0.0299111,0.586667,0.613303,1.21806,0.455762,1.19802,-0.242313,-0.844005,-0.818898,1.07079,0.693705,-0.563274,-0.281409,-0.803522,-0.0647898,0.226719,0 +-0.0404188,0.703662,-0.328979,1.49765,-0.163793,-1.36092,0.934941,1.52055,0.581889,0.208061,0.360595,0.555538,0.688478,-0.111971,0.323133,-0.546515,0.8496,0.129394,0.363742,0.265342,0.259752,0.612012,0.668174,-0.7834,-0.871212,0.309092,0.753185,3.81513,0.0239105,-0.825861,1.28614,1.39261,0.399668,-0.76538,0.346553,0.0743119,-0.575811,0.318088,-0.930449,0.567295,-0.167704,1.18016,0.59095,0.0520659,0.336321,0.0562844,0.111705,-0.0153514,1.35425,0.162979,0.229169,0.598845,0.600325,0.044951,-0.923157,0.506031,0.845164,1.47613,-0.211438,-0.45106,1.95393,1.38692,-0.965528,-0.963115,-0.177085,0.363735,-0.145623,0.289316,-1.03239,0.74926,-0.211958,-0.444437,0.608523,0.4599,0.565413,-0.432141,0.693372,-0.330989,0.419423,1.99018,0.714445,0.772239,0.148364,0.997293,-0.609697,0.53177,0.617306,1.60063,0.479148,-1.00875,1.30936,1.19115,1.39432,0.263779,0.0481954,-0.868515,-1.45524,0.591063,-0.859248,0.920299,0.0770804,1.14795,0.606521,0.434436,0.0516129,-0.364494,-0.280109,0.278099,0.504562,0.775507,2.10884,0.611893,0.936727,0.83822,-0.819521,-0.442837,-0.872063,1.24766,0.775897,1.59632,-0.866156,-0.41358,-0.796967,0.612696,1.28224,-0.452969,-0.0408675,-0.791327,0.201146,0.383766,0.360948,-0.834913,-0.201383,0.332859,-0.244946,-0.580043,0.64905,-0.47967,0.412386,0.0518027,-0.118242,0.352328,0.851921,0.595568,1.73832,3.85082,2.07379,0.576901,0.243309,0.514062,0.086919,0.00700225,0.883681,0.477349,1.3857,1.20863,-0.194711,-0.643037,-0.83532,0.338949,-0.188151,0.553041,-0.00765348,0.320124,0.417892,0.854152,0 +0.236008,2.30025,1.21788,-1.25673,-0.163793,1.01885,-1.39237,0.755246,-1.318,1.02222,0.617029,-0.372689,-0.1565,0.693032,0.428025,3.32053,-1.55271,0.114103,-0.138507,0.366512,-0.742333,-1.38723,-1.3737,1.45784,1.09074,-1.29012,-1.37974,-0.523414,0.557683,1.28385,-0.363541,-0.289671,-0.320279,1.30304,-1.32414,1.8356,1.05784,-0.957769,0.721259,-1.34941,1.95222,0.0295238,0.201887,0.299562,0.487229,1.36044,-0.975863,-0.394766,0.50631,0.795901,-0.840287,-1.40243,-1.41757,-0.401819,0.511823,0.0256665,-1.50683,2.42002,0.691067,1.13959,-0.885057,0.872221,0.361941,1.51821,-0.777511,1.27212,1.42975,0.117044,0.660172,0.0256408,1.71764,1.54743,-0.0662311,0.60646,0.677512,1.82461,-1.42501,1.0643,-0.398213,-0.25261,-0.967966,-1.3835,-0.947225,0.310138,1.3769,-1.39214,1.81587,-0.187868,-0.757481,1.26796,1.12323,-0.531563,-1.07821,0.595699,-1.76132,1.7405,1.23132,-1.43464,0.745166,-1.46974,2.0911,-0.227207,0.184608,-0.00787394,0.386627,2.0918,0.211105,-0.811081,0.894114,0.0913157,0.000345165,-1.16519,-1.32907,-1.42772,1.14218,0.358238,1.14549,-1.32226,-1.47259,-1.11935,1.4693,0.691118,1.13043,0.76473,0.184772,0.99585,0.828251,0.917849,0.828757,-0.937704,-1.68443,-0.0893302,-0.323107,-0.0377011,0.631129,0.15631,-1.49783,-0.946774,-1.3418,-0.16235,-0.750191,-0.927098,-1.41272,-1.41218,-0.114399,-0.295417,-0.290322,0.918968,1.55127,-1.56572,-1.18151,-1.09436,-1.20423,1.66529,-0.346786,1.26167,5.73974,1.8579,2.24364,0.247469,1.11745,0.674821,-0.428816,-0.179275,-0.0303125,-1.45259,0 +0.291294,2.31157,1.17451,-0.700559,-0.163793,1.59478,-1.41114,0.755246,-1.22456,0.401251,-0.252616,1.48377,0.401789,2.12281,0.913151,-0.233394,-1.53543,1.91842,0.192243,0.698926,-0.433999,-1.38723,-1.41646,0.213655,1.14405,-1.44669,-1.35809,-0.460764,-0.165493,1.4872,-0.363541,-0.300318,-0.30428,1.11418,-1.32414,1.8356,1.50338,-0.957769,0.735139,-1.34941,1.94045,0.0295238,0.310825,1.1658,1.92086,-0.16857,-0.960965,-0.268295,0.412094,0.554788,1.07958,-1.35845,-1.47067,-0.220696,1.3432,-0.406662,-1.5158,2.47036,0.826443,0.976163,-0.885057,0.863192,0.361941,1.62347,-0.226099,1.31754,-0.145623,0.117044,0.629399,0.0417213,1.69191,1.48615,0.171182,2.18199,0.299177,-0.0142232,-1.38106,1.38088,0.857865,-0.107914,-0.647506,-1.39407,-0.796109,0.874221,1.15392,-1.43953,1.8411,-0.347815,-0.556946,1.22101,1.1465,-0.488495,-1.07821,0.263779,-1.79199,1.72035,1.7625,-1.4248,0.698885,-1.47938,2.0911,-0.142582,0.107896,0.411156,1.66465,0.657922,-0.607586,-0.784515,0.803219,1.37921,0.246793,-1.04147,-1.18618,-1.40693,1.39761,0.543101,1.21192,-1.42581,-1.49795,-1.18275,1.27386,0.987223,0.92257,0.778551,0.195029,0.99585,0.559847,1.4177,0.368509,-0.700253,-1.7223,0.105668,1.22888,2.1989,2.43407,0.15631,-1.48766,-0.972725,-1.53799,-0.575357,-0.947675,-0.927098,-1.42297,-1.41218,-0.0741224,-0.295417,-0.433602,0.93384,1.57823,-1.5541,-1.18151,-1.03639,-1.21925,1.62336,-0.346786,1.24045,5.07331,1.57878,2.2929,0.216976,1.12891,0.73571,-0.428816,-0.179275,-0.0303125,-1.47104,0 +1.01,1.48497,1.7094,-0.687316,-0.163793,1.54045,-1.39237,0.834415,-1.27647,1.16021,0.460939,-0.17981,-0.216855,0.596912,0.480471,2.85085,-1.38853,0.343465,-0.212007,0.294248,-0.588166,-1.38723,-1.35232,1.53454,0.941461,-1.33486,0.720704,-0.413776,3.07158,1.35163,2.46449,1.59491,-1.71218,0.457686,-0.733747,0.123236,-0.409825,-1.44848,0.471421,0.19632,1.66957,0.249309,0.233012,0.232063,0.512381,1.16931,-0.931168,-0.338557,0.465932,0.675344,-0.750092,-1.38044,-1.43881,-0.148247,2.20874,-0.0543942,-1.17468,1.85368,2.58633,1.29211,-0.925326,1.29662,-1.61132,0.886597,-0.520186,0.136639,-0.0212512,0.978407,-0.611813,1.6176,1.7305,0.85794,-0.17869,0.667527,0.761587,1.65745,-1.41622,1.07603,-0.362663,-0.156146,-0.716176,-1.3835,-0.959818,0.197321,1.35663,-1.40162,2.00512,0.00116081,2.45107,1.26796,2.03062,1.96638,-1.22086,0.502761,-0.565201,-0.828221,0.454977,-1.44447,0.945718,-1.21918,1.56571,1.14795,0.453098,0.0619645,0.336996,2.10427,0.538582,-0.731385,0.803219,0.0913157,-0.0681126,-1.03022,-1.2168,-1.40693,0.948051,0.496885,1.08738,-0.917472,-1.219,0.687573,1.26409,2.54747,1.91461,-0.714148,1.91816,1.74924,0.853813,1.07103,0.661394,-0.906732,0.417764,0.667724,-0.323107,0.213751,0.643826,0.332395,-1.42661,0.324787,-1.43412,-0.315315,-0.895013,-0.78494,-1.35124,-1.43366,-0.154676,-0.295417,-0.0754024,1.96004,2.03669,0.548919,-1.18151,-0.108931,-1.02398,0.86867,1.1564,0.890393,0.217845,0.506947,0.913527,0.15599,-0.966933,-0.0355618,0.5188,1.44377,0.521324,1.38932,0 +0.678292,-0.824983,-0.0976732,-0.329776,-0.163793,0.301661,2.13613,1.04553,0.550743,-0.399106,0.672776,0.374715,0.492322,-0.196076,-0.0177667,-0.0298649,0.832317,0.328174,0.473992,-0.124883,0.0156542,1.76586,0.807149,-0.698182,-0.881875,0.767608,1.17544,0.10309,0.213314,-0.800443,-0.363541,-0.822038,0.0956904,-0.459613,1.13794,0.465708,2.17606,0.808802,-0.76389,1.9399,-0.815459,0.41738,0.139637,0.310812,0.147685,0.775818,0.0819087,0.153277,-0.0186056,-0.500082,-0.0800712,0.752789,1.22693,1.74751,-0.274,0.474007,2.00321,-0.285813,0.330065,-0.712536,-0.492431,-1.01499,0.756594,-0.677388,1.59969,0.0458009,-0.145623,0.668316,1.11152,0.813581,-0.482102,-0.766201,0.658505,-0.0408481,0.0609658,-0.264974,0.746111,0.102841,0.526071,0.579392,0.245201,2.21997,0.148364,-1.47442,-0.832682,1.80174,-0.467711,0.829979,-0.00547678,-0.820984,-0.621737,-0.359292,0.395797,0.555868,-0.319842,1.02529,1.45605,0.846734,-0.581561,2.22133,-0.929932,0.259386,0.350816,0.434436,-0.0476507,-0.22734,0.440339,0.503905,0.102025,0.292548,0.57539,0.49942,0.742808,1.00453,-0.574308,0.0347266,-0.938485,0.202749,1.69727,0.592472,-0.846612,-0.573021,-0.967031,0.253342,-0.810132,0.793016,-0.309272,-0.702644,0.187199,1.73621,-0.264027,1.19537,0.0877133,0.00200183,-0.0544946,-0.435974,0.465904,-0.622397,0.804769,-0.07057,0.158236,1.79976,2.31728,1.8947,-0.114399,-0.263276,1.57231,0.487667,-0.161214,1.72243,0.101171,1.34023,0.372968,-1.11589,-0.117487,-1.19936,-0.0836379,0.183165,-0.309845,0.659128,1.3236,0.97927,-0.702572,-0.678673,0.0558807,-0.880515,0 +-0.0957042,-0.0889688,-0.907243,-0.131143,-0.163793,1.01885,2.01414,0.201057,0.550743,-0.592295,0.572432,0.507319,0.235811,0.0442232,0.074014,-0.24905,0.66813,-0.298749,0.290242,-0.139336,0.401071,1.4574,0.497127,-0.110175,-0.860549,2.18789,0.525817,-0.0848611,0.764305,-0.88517,-0.320692,1.38196,-0.208287,-0.558538,0.610347,0.0987742,2.15858,0.956016,-0.944329,0.295247,-0.662354,1.19309,-0.15605,0.389561,0.286018,0.584692,-0.350139,0.420273,-0.166659,-0.424734,0.138974,0.730797,1.74734,2.08561,-0.410664,0.538056,1.60821,-0.39908,1.08215,-0.897748,-0.844787,1.34177,-1.36018,-0.504447,1.63645,0.318316,-0.145623,0.0653622,-1.03239,-0.456772,-0.906613,-0.674268,0.483568,0.240059,-0.0231087,-0.515724,0.456043,0.255268,0.526071,0.760261,0.9319,2.01919,0.148364,-0.541114,-0.842818,2.16189,0.0747977,1.23712,0.144924,-0.656685,-0.26111,1.23422,0.312587,0.170841,0.0175256,-0.73756,1.74207,0.787733,-0.874676,1.50817,-0.174673,1.21141,0.299675,0.446076,0.126061,-0.040313,-0.673081,0.450774,-0.0408102,0.265717,0.383708,0.600646,0.926521,1.08768,-0.226924,0.157969,-0.872063,1.56772,1.73954,0.603039,-0.866156,-0.91468,-0.693039,-0.741791,1.25147,-0.655804,-0.73105,-0.783265,-0.245155,1.48843,0.417764,0.943016,-0.170951,-0.117107,-0.34652,0.252356,0.994993,0.0912347,1.00096,-0.0246802,-0.118242,0.610798,1.43601,1.06798,-0.0741224,-0.13471,3.14839,-0.672385,-0.296055,0.316541,0.0156592,1.29676,0.267821,0.379518,1.3857,1.15559,-0.226446,-0.0959571,-0.112792,0.369442,-0.085077,0.634227,0.0555209,0.444973,0.45237,0.927968,0 +0.236008,-0.587194,0.581787,-0.912434,-0.163793,0.758056,-1.41114,0.676076,-1.15189,1.03602,0.0595644,1.50788,0.0849225,2.07475,0.913151,0.533753,-0.878683,2.13249,0.0942426,0.0485504,-0.048582,-1.3758,-0.999532,1.33002,1.06941,-1.62562,-1.11989,-0.993292,-0.458207,1.394,-0.363541,-0.949806,-0.416272,1.90558,-1.32414,1.8356,-0.0778539,-0.908697,1.29033,-1.3865,0.138508,-0.371261,0.2797,1.0758,1.84541,-0.16857,1.69091,-0.436923,0.277501,0.720553,1.22132,-1.29247,-1.43881,-0.0878726,0.933206,-1.41543,-1.4799,-0.776638,0.465441,1.22674,-0.874989,-0.879544,0.290186,1.33775,-0.863286,1.18128,1.01518,0.702771,1.1423,0.00956042,0.186825,0.628109,0.133696,2.15756,0.859674,0.654445,-1.13494,1.38088,0.857865,0.0488399,-0.395717,-1.39407,-0.493878,0.843453,1.39717,-1.46796,0.112647,-0.929442,-1.10842,1.19754,-0.621737,-0.488495,-1.0901,0.768297,-1.94534,1.75057,0.454977,-1.35597,1.23883,-1.46974,-0.0104859,-0.311832,0.55538,0.341318,1.54057,0.545706,-0.329231,-1.1033,0.803219,1.21822,0.233101,-0.512841,-0.828961,-1.23023,1.08087,0.882017,1.18701,-1.58584,-1.51486,-1.48918,1.45952,0.543066,0.941466,0.750908,-0.851159,1.0538,0.904938,1.28871,0.535872,-1.2371,-1.68443,-0.444916,1.53319,2.26507,2.47216,1.8051,-0.378605,2.07643,-1.61878,-1.21781,-0.974006,-1.39234,-1.45371,-1.40145,-0.114399,-0.295417,-0.576881,0.190217,0.256793,-1.13582,-1.21001,-1.15233,-1.21925,0.491324,-1.0729,-0.000668563,5.10504,2.99672,1.95627,0.0950031,1.09455,0.613931,-0.365642,-0.241699,-0.0992671,-1.48949,0 +1.01,1.47365,1.7094,-1.04486,-0.163793,0.921055,-1.38298,0.544126,-1.0896,0.59444,-0.02963,-0.396799,-0.1565,0.741092,0.336244,-0.061177,-0.792269,1.62789,0.167743,0.829001,-0.318374,-1.38723,-0.914008,1.50045,2.21033,-1.05527,0.720704,-0.61739,-0.0621818,2.52087,2.50734,1.59491,-1.71218,0.853384,-0.984979,0.123236,-0.505922,-1.44848,0.471421,0.208686,1.66957,0.249309,0.435325,0.389561,0.260867,0.382323,-0.841779,0.785635,0.627444,0.449301,-0.324886,-1.34745,-1.30074,-0.30522,0.80793,0.233825,-1.15672,1.8411,0.600817,1.45554,-0.925326,1.29662,-1.61132,2.00695,-0.802018,0.136639,-0.145623,0.995634,-0.601555,1.6176,1.7305,0.873262,-0.341131,0.0324321,-0.233295,-0.432141,-1.09978,0.513221,-0.244165,-0.095856,-0.578837,-1.37294,-0.456099,0.751148,1.49853,-1.33528,2.00512,-0.565925,-1.15855,2.25375,2.04225,1.94484,-1.22086,-0.107972,-0.565201,-0.828221,0.0770205,-1.44447,0.961145,-1.21918,1.56571,1.14795,-0.365159,0.0154055,0.709234,1.48084,1.20991,1.38056,0.504562,0.118147,0.109878,-0.77153,-1.20659,-1.32378,1.42826,0.234995,1.1621,-0.889231,-1.08376,0.677006,2.7494,1.62499,2.26419,-0.700327,1.91816,1.74924,1.07109,2.24004,0.591659,-1.17516,0.417764,0.667724,0.741983,0.107876,0.694613,0.332395,-1.40626,0.324787,-0.926334,0.311845,-0.157738,-0.772016,-1.35124,-1.43366,-0.154676,-0.295417,-0.0754024,1.96004,2.03669,0.548919,-1.18151,-1.09436,-1.21925,0.882646,1.1564,0.890393,-0.369253,0.640926,1.13521,0.15599,-0.966933,-0.0558584,0.5188,1.44377,0.521324,1.38932,0 +1.06529,-0.621164,0.205916,-0.76677,0.28909,0.768923,-1.42052,0.689271,0.395015,0.525444,-0.297213,-0.107481,0.326345,0.813181,0.375579,1.66099,-0.610799,1.45969,-0.150757,0.496587,1.18475,-1.11305,-0.176369,1.33854,1.09074,-1.52497,-1.78034,-0.97763,-0.630391,1.45331,1.1576,1.60556,-1.71218,1.93256,-0.972418,0.0498496,-0.112798,-0.970036,1.88717,-0.805311,0.374055,0.32688,0.233012,0.187064,0.22314,0.0787698,1.7952,1.88172,0.479391,0.765762,0.66726,-0.456774,-1.23702,-0.450119,1.02432,-0.678868,-1.5158,-0.87732,0.390232,0.8999,-0.935393,1.29662,-1.53957,1.24752,-0.985822,0.182058,0.807894,0.134271,1.6039,0.0256408,0.148233,0.658753,0.196173,0.42326,0.579425,0.570861,-0.343842,0.196642,-0.291565,-0.13203,1.12646,-1.3518,0.223922,1.00755,1.26541,-1.45849,-1.64104,-0.856738,-1.00815,1.0176,2.00735,1.96638,-1.20897,0.887788,-0.411852,0.11868,0.209816,-1.00196,1.11542,-1.4312,0.4164,1.19026,0.0439695,-0.147551,0.423851,0.695327,-0.476595,1.51339,0.881129,0.0376536,0.164644,0.533162,0.406,-0.481847,1.37717,0.77418,1.1621,-1.5576,-1.52331,-1.72165,1.54747,0.554455,0.809194,-0.755612,1.91816,1.72026,0.662096,1.33708,0.786916,-1.15451,0.47458,0.644782,1.73099,0.690185,0.82158,0.492471,-1.17224,1.778,-1.21485,-0.529468,-0.249898,-0.733246,-1.40247,-1.21893,-0.114399,-0.295417,-0.576881,-0.226211,-0.781483,-1.24039,-1.13875,-1.1958,-1.21925,0.589155,1.18188,0.635804,4.61315,3.04138,1.80848,0.415182,-0.245414,0.0253282,0.434567,1.44377,0.57304,1.3155,0 +0.567721,0.0695574,-0.574741,1.68304,-0.163793,-0.154734,0.906788,0.227447,0.571507,-0.578496,0.594731,0.543484,0.2509,0.0562381,0.00845638,-0.123801,0.633564,-0.344621,0.118743,-0.0815246,0.413918,0.589163,0.432984,0.350004,-0.871212,0.543942,1.61935,3.09465,0.041129,-0.876697,-0.342116,-0.758154,0.255678,-0.774373,0.3968,0.465708,-0.575811,1.00509,-0.347493,0.703319,-0.014598,0.456166,-0.15605,0.378311,0.348897,0.663391,-0.42463,0.434325,-0.112821,-0.409664,0.190514,0.620837,0.685289,2.06146,-0.592884,0.0576909,0.746417,1.74042,0.0141885,-0.886853,1.58144,-0.753128,0.720717,-0.963115,-0.152578,0.0458009,-0.145623,0.323771,1.06023,0.475893,-0.353462,-0.68959,0.508559,0.398833,-0.065146,-0.515724,0.456043,0.266993,0.478672,0.724087,0.943344,0.751104,0.110585,1.46907,-0.822547,1.01512,1.80325,1.17895,1.04733,-0.930517,-0.470506,-0.316224,1.07337,0.250502,-0.626541,1.00514,-1.13857,0.8074,-0.859248,0.467347,0.153701,0.322854,0.261319,0.422796,0.0888367,0.0220294,-0.689455,0.503905,-0.0278251,0.305964,0.411091,0.589399,0.926521,0.692701,-0.20649,0.127158,-0.822247,0.692257,0.826615,2.00842,-0.866156,-0.846349,-0.759175,0.654159,-0.758848,0.821992,-0.692706,-0.8397,-0.17542,0.0946944,-1.05945,-0.938148,-0.14052,0.107876,-0.283036,0.284372,1.00517,0.10421,0.135409,-0.0399768,-0.131407,0.675416,0.534256,0.724408,0.207814,-0.0704274,3.22003,0.918968,1.40294,1.19958,0.0156592,-0.0364726,0.733471,-0.486979,-0.0665311,-0.54167,-0.210578,-0.185276,-0.84353,0.674375,1.3236,1.01986,-0.681514,-0.616248,0.0558807,-0.935876,0 +-0.0404188,-0.156909,-0.849417,1.52414,0.91616,-1.16532,0.60649,0.174667,0.540361,-0.744087,0.494387,0.266221,0.0698336,0.0922831,0.414914,0.0171033,1.28167,-0.207004,0.584242,1.72507,0.131279,0.566315,0.721626,-0.536267,-0.871212,0.454475,0.612433,0.807908,0.00669205,-0.952952,-0.0635983,1.36067,0.431665,-0.936249,0.333991,0.0498496,-0.575811,0.391695,-0.902689,0.34471,-0.685908,1.21895,-0.358363,0.42331,0.122534,0.449779,2.80828,0.448378,0.237123,-0.409664,-0.157381,0.752789,0.621566,0.709069,-0.934546,0.153764,0.710508,-0.235472,-0.181354,-1.0067,1.93379,1.33274,-1.00141,-0.993192,-0.152578,0.363735,0.186035,0.20318,-0.734909,-0.295968,-0.919477,-0.582336,0.371109,-0.126342,0.103003,2.15895,0.623052,0.302169,0.526071,2.33986,0.58855,0.48692,0.186143,0.976781,-0.873225,0.60759,-0.177532,0.0738641,0.562704,-1.04005,-0.307642,1.16962,1.42998,-0.081418,0.0788652,-0.767781,-1.44502,1.02374,-0.64327,0.611906,-0.295076,1.19026,0.261319,0.434436,0.225324,0.0220294,2.73267,0.570318,0.959039,0.534028,2.09515,0.600646,0.906108,0.869403,-0.216707,0.204185,-0.847155,0.814634,0.767445,0.708706,-0.895471,-0.41358,-0.787519,0.571232,1.18993,-0.539898,-0.948329,-0.968695,-0.510146,0.425062,0.398826,-0.789031,-0.079658,-0.487667,-0.244946,0.604525,0.64905,0.195036,0.447008,-0.11646,0.158236,0.287711,0.524009,0.681461,-0.114399,3.51334,-0.0754024,-0.627768,-0.457864,0.502444,0.129675,0.0214939,0.988827,0.5053,1.3857,1.17681,-0.178843,-0.520223,-0.884583,0.506662,-0.00490829,0.674821,-0.00765348,0.320124,0.435131,0.854152,0 +0.954719,1.49629,1.7094,-0.343018,-0.163793,1.02972,-1.39237,0.82122,-1.24533,1.17401,0.371745,-0.17981,-0.1565,0.596912,0.506694,2.83519,-1.3626,0.404628,-0.199757,0.3087,-0.562471,-1.38723,-1.35232,2.1822,1.13339,-1.36841,0.709876,-0.445101,0.213314,1.01272,2.85013,1.58426,-1.69618,0.601576,-0.984979,0.147699,-0.549602,-1.44848,0.471421,0.171589,1.66957,0.210523,0.310825,0.187064,0.474654,1.1131,-0.901372,-0.310452,0.479391,0.584927,-0.737207,-1.35845,-1.44943,0.00872638,0.864874,-0.134455,-1.18365,1.86627,0.826443,1.33569,-0.281018,1.29662,-1.61132,1.15729,-0.949061,0.136639,-0.0212512,0.961179,-0.611813,1.60152,1.7305,0.873262,-0.191186,0.667527,0.789612,1.9082,-1.39864,1.04085,-0.362663,-0.13203,-0.658951,-1.37294,-0.959818,1.78701,1.33636,-1.4111,2.00512,-0.0715425,-0.790903,1.27578,2.07715,1.94484,-1.22086,0.489484,-0.595871,-0.838294,0.291536,-1.44447,0.945718,-1.21918,1.57665,1.10563,0.580951,0.108523,0.336996,2.11673,0.866058,-0.625123,0.725308,0.0644847,-0.0681126,-0.996477,-1.18618,-1.39654,0.9174,0.327427,1.1704,-0.955127,-1.23591,0.687573,1.17614,1.24916,1.37607,-0.534472,1.92842,1.77821,0.9305,0.756606,0.619553,-1.14418,0.398826,0.644782,-0.323107,0.266688,0.66922,0.316387,-1.42661,0.311812,-1.45721,-0.376502,-0.908178,-0.836634,-1.35124,-1.43366,-0.154676,0.202774,-0.147042,1.96004,2.03669,0.5373,-1.19576,-1.13784,-1.21925,0.86867,1.14366,0.890393,0.233713,0.551607,0.880685,0.15599,-0.978385,-0.0964517,0.5188,1.44377,0.504085,1.38932,0 +0.236008,2.30025,1.21788,-0.435714,-0.163793,0.823256,-1.41114,0.214252,-1.27647,0.746232,0.0372658,-0.264195,-0.0659663,0.656987,0.283798,1.11303,-1.09472,1.4444,0.314742,0.785642,-0.61386,-1.38723,-0.68951,2.32707,1.18671,-1.21184,-1.4014,-0.836666,-0.837013,1.13134,-0.363541,-0.289671,-0.320279,1.15915,-1.31158,1.8356,-0.392353,-0.957769,0.735139,-1.34941,1.95222,0.0424523,0.637637,0.637057,0.0848068,0.505993,-0.811983,0.139225,0.600526,0.434231,-0.389312,-1.40243,-1.2795,-0.124097,0.694043,-0.0543942,-1.52478,2.42002,0.0743555,0.801846,-0.482364,0.872221,0.361941,1.34527,-1.0716,1.27212,-0.145623,0.117044,0.660172,0.0256408,1.71764,1.54743,-0.253663,-0.175195,-0.163233,0.570861,-1.21405,0.712549,0.01653,-0.19232,-1.11675,-1.39407,-0.229425,0.812684,0.930931,-1.38267,1.81587,-1.08939,-0.657213,1.22884,1.12323,-0.531563,-1.07821,0.0779036,-1.76132,1.73043,0.352827,-1.4248,0.745166,-1.48902,2.0911,-0.206051,-0.224521,0.294759,0.597563,1.81749,2.22509,1.20789,0.517547,0.0779002,0.178335,-0.77153,-1.28824,-1.27181,1.38739,0.342832,1.44439,-1.39757,-1.5064,-1.20388,1.02957,0.588621,1.04539,0.76473,0.184772,0.99585,0.981625,1.1839,0.507978,-1.22678,-1.70336,-0.479328,0.0877133,-0.183278,0.554949,0.15631,-1.37574,-0.946774,-0.787846,0.342438,0.066077,-0.927098,-1.42297,-1.41218,-0.0741224,0.588471,0.0678772,0.918968,1.55127,-1.57734,-1.16725,-1.23928,-1.21925,1.66529,-0.334047,1.26167,-0.162975,0.78607,1.48005,0.247469,1.11745,0.695117,-0.428816,-0.179275,-0.0303125,-1.45259,0 +0.567721,-0.81366,-0.459088,1.68304,-0.163793,-0.154734,0.559569,0.781636,2.19109,-0.468102,0.628179,0.0371777,0.416878,-0.160031,0.0215679,-0.186426,1.12612,0.0376488,0.608742,-0.0670718,-0.0100403,1.10325,0.764387,0.0773052,-0.871212,0.275542,0.861455,-0.570402,0.041129,-0.842807,-0.342116,-0.811391,0.255678,-0.693434,0.3968,0.514633,-0.575811,0.735195,-0.77777,1.13612,-0.733018,0.404451,0.061825,0.344562,-0.053526,0.674633,-0.26075,1.46015,0.29096,-0.500082,-0.118726,1.85239,0.812734,1.92863,-0.604273,0.34591,0.809256,-0.487177,0.0141885,-0.777905,1.58144,-1.01499,0.720717,-0.948077,-0.152578,0.0458009,-0.145623,0.496044,1.08075,0.797501,-0.597878,-0.934744,0.596027,-0.248475,0.0609658,-0.432141,2.04702,0.138017,0.407573,0.663798,0.943344,0.655998,-0.0531233,1.45882,-0.842818,0.389609,0.0495647,0.539165,1.03062,-0.899222,-0.621737,-0.316224,1.07337,0.396547,-0.65721,1.04543,-1.14878,1.62358,-0.874676,0.920299,-0.864257,0.280542,0.350816,0.446076,0.0019811,-0.06525,0.849684,1.36728,0.0630703,0.131562,0.479549,0.218236,0.95714,0.921374,-0.472137,0.0963477,-0.813944,0.099199,0.573026,0.560772,-0.856384,-0.846349,-0.749727,0.654159,-0.779361,0.850968,-0.462646,-0.783265,0.0337832,0.0843704,-1.04051,-0.938148,0.285516,0.0814076,-0.0544946,-0.660081,0.710099,-0.544546,1.0125,0.0823959,0.210899,1.10189,0.903158,1.12166,-0.114399,-0.231134,2.07379,0.517412,0.243309,1.03691,0.0156592,-0.0364726,0.733471,-1.12986,-0.117487,-1.20997,-0.178843,-0.107122,-0.827109,0.628635,1.3236,0.999567,-0.660456,-0.678673,0.0386421,-0.95433,0 +1.01,1.47365,1.73832,-0.88595,-0.163793,0.99712,-1.38298,0.662881,-1.4322,0.801429,0.260252,0.664033,-0.00561078,2.23095,1.29339,-0.311674,-1.45766,1.1233,0.155493,0.771189,-1.20483,-1.38723,-1.19196,1.39819,1.95443,-1.12237,0.699049,-0.586065,-0.30324,1.08898,2.42164,1.58426,-1.71218,0.664528,-0.984979,0.123236,-0.48845,-1.44848,0.471421,0.19632,1.68134,0.249309,0.108512,1.70579,1.80768,0.213682,-0.975863,-0.914705,0.613985,0.765762,-0.505277,-1.42443,-1.3326,-0.474269,0.876262,0.249837,-1.17468,1.81593,0.585775,0.921689,-0.925326,1.28759,-1.61132,1.27759,-0.961315,0.136639,-0.145623,1.01286,-0.58104,1.63368,1.74337,0.888584,0.0837142,1.88886,0.173065,-0.515724,-1.44259,1.79126,0.182427,-0.264668,-1.47154,-1.37294,-0.75833,0.792172,1.31609,-1.35423,1.9925,-0.318734,-1.20868,1.29143,2.01898,1.96638,-1.23274,0.117734,-0.595871,-0.787927,0.424332,-1.44447,0.991999,-1.21918,1.57665,1.14795,0.28689,1.14446,1.97484,0.0968403,-0.804072,-0.704819,0.803219,1.25847,0.192027,-1.32265,-1.46175,-1.37575,1.36696,0.620127,2.36599,-0.870404,-1.11757,0.655873,1.18591,1.02139,1.2627,-0.714148,1.91816,1.74924,0.674877,0.990408,0.661394,-0.989324,0.417764,0.690665,-0.566556,1.48424,2.3198,0.332395,-1.42661,0.324787,-1.07636,0.204769,-0.342057,-0.797863,-1.35124,-1.43366,-0.154676,-0.295417,-0.0037626,1.97491,2.03669,0.5373,-1.18151,-1.18131,-1.21925,0.896622,1.1564,0.901001,-0.385121,0.0491865,1.25016,0.140743,-0.95548,-0.0152651,0.539858,1.50619,0.521324,1.40777,0 +0.678292,-0.84763,1.00103,-0.343018,-0.163793,0.323394,0.587722,0.174667,0.69609,-0.619894,0.594731,0.507319,0.175456,0.0562381,0.0215679,-0.0768331,0.348398,-0.252877,0.290242,-0.0237135,0.349682,0.452073,0.529198,-0.289134,-0.881875,0.655775,0.4392,0.82357,0.196095,-0.876697,-0.363541,-0.779449,0.0956904,-0.720414,1.10025,0.392322,2.18479,2.41589,0.651859,1.48237,-0.933233,0.482023,-0.264988,0.412061,0.273442,0.663391,0.409669,0.434325,-0.166659,-0.394595,0.138974,0.587849,0.515361,2.08561,-0.285388,0.137752,0.620738,-0.361324,0.315023,-0.930433,-0.583037,-1.00596,0.756594,-0.812732,1.58743,0.0458009,-0.145623,3.16627,1.11152,2.1965,-0.469238,-0.597658,0.471073,0.252273,-0.121196,-0.432141,0.825221,0.337344,0.526071,0.699971,0.88612,0.465785,0.17355,-1.40262,-0.812411,0.673932,-0.593875,0.989926,-0.00547678,-0.852279,-0.621737,-0.380826,0.395797,0.184118,-0.289173,0.97492,1.46627,0.817233,0.745166,0.689004,-0.962769,0.280542,0.235749,0.422796,0.113653,0.0843718,-0.509343,0.490622,-0.0278251,0.279133,0.424783,0.623141,0.936727,0.703095,-0.155404,0.142564,-0.888668,0.90877,0.750539,0.571338,-0.866156,-0.561632,-0.976479,0.184235,-0.820388,0.735063,-0.794956,-0.855825,-0.273049,1.72588,-0.22615,1.19537,-0.170951,-0.103873,-0.283036,2.90963,1.65636,1.14222,0.227735,-0.101163,-0.0919103,2.23916,0.780191,0.778091,-0.114399,-0.166852,2.64691,0.755371,-0.633158,0.699965,0.086919,1.31125,0.342926,-1.08794,-0.0537922,-1.18875,-0.178843,-0.129452,-0.457634,0.750608,1.3236,0.97927,-0.72363,-0.678673,0.090358,-0.825153,0 +1.01,1.48497,1.68049,-0.568136,-0.163793,0.584191,-1.05453,0.808026,-0.186373,0.760032,-0.286064,0.820746,0.024567,0.644972,0.362468,-0.483891,-1.35396,0.389337,0.228993,0.236437,1.71149,-0.838864,0.956815,2.27594,1.13339,-1.35722,0.731531,-0.445101,-0.768139,1.16523,2.76443,1.59491,-1.71218,1.28505,-0.984979,0.123236,-0.427297,-1.38714,0.457541,0.208686,1.65779,0.23638,0.09295,0.130815,0.0596553,-0.831889,-0.960965,1.24936,0.277501,0.81097,1.47902,-0.676695,-0.408621,0.346823,0.853485,-0.951075,-0.932295,1.86627,-0.31673,1.05243,-0.603172,1.29662,-1.61132,1.28511,-1.14512,0.136639,-0.145623,0.961179,-0.632329,1.60152,1.71764,0.842618,0.0587233,0.472113,0.761587,-0.18139,-1.1701,0.138017,0.58532,0.0488399,1.24091,-0.950241,1.44544,1.11011,1.35663,-1.12678,2.00512,-0.347815,-0.122455,1.15842,2.06551,1.94484,-1.23274,0.170841,-0.565201,-0.838294,0.0361604,-1.3363,0.930291,-0.958969,1.55476,1.12679,0.28689,-0.19411,0.287364,-0.00290757,-0.427474,-0.505579,0.855159,-0.123333,0.0277283,1.35422,0.804046,0.318509,1.28522,0.897422,1.461,-1.22812,-1.21055,0.708706,1.03934,0.554455,0.913122,-0.686506,1.92842,1.74924,0.444816,1.24034,0.256934,-1.15451,0.417764,0.656253,1.73099,1.07398,0.694613,0.316387,-1.27399,0.324787,0.285438,0.5107,1.21149,-0.746169,-1.11555,-1.33703,-0.154676,2.27589,0.354437,1.96004,2.03669,0.560538,-1.18151,-1.23928,-1.21925,0.854694,1.14366,0.890393,-0.353386,-0.33042,1.40616,0.15599,-0.989838,-0.076155,0.5188,1.44377,0.521324,1.38932,0 +0.180723,-0.632487,0.523961,-0.515167,-0.128956,0.834122,-1.40175,0.280227,-1.49449,0.663437,1.07415,0.0733424,0.431967,2.1949,1.43761,-0.217738,-0.80091,0.236429,0.265743,0.785642,-1.17914,-1.38723,-0.71089,2.33559,1.25068,-1.15592,-1.21734,-0.946305,-0.854231,1.1144,-0.363541,-1.00304,-0.448269,1.16814,-1.29902,1.81113,-0.366145,-0.957769,1.24869,-1.3865,0.12673,-0.410047,0.59095,1.98704,1.48071,0.461022,1.89949,-1.68759,0.587066,0.449301,-0.531047,-1.41343,-1.26888,-0.244846,0.694043,0.0416787,-1.4799,-0.801809,0.0743555,0.758267,-0.57297,-0.906633,0.326064,1.34527,-1.05934,1.09044,-0.145623,0.58218,1.16281,-0.00652,0.186825,0.628109,0.53355,1.47361,0.229115,-0.18139,-1.41622,2.04921,0.0639291,-0.204378,-1.60888,-1.3835,-0.29239,0.781916,1.03229,-1.36371,0.0621812,-0.987604,-0.707347,1.22101,-0.621737,-0.531563,-1.10198,-0.0283108,-1.884,1.78079,0.393687,-1.35597,1.14627,-1.46011,-0.0652148,-0.481081,0.785515,1.58677,2.02448,0.458426,-0.591212,-1.05017,0.738293,0.829169,0.178335,-0.861509,-1.35969,-1.27181,1.40782,0.281211,1.43609,-1.43522,-1.4895,-1.49975,1.00025,0.565843,1.0265,0.709445,-0.902442,1.02483,0.9305,1.17584,0.6335,-1.22678,-1.62761,-0.376093,-1.19039,0.544608,2.12934,1.74107,-0.378605,2.0894,-0.764765,0.357735,0.0265802,-1.40527,-1.45371,-1.40145,-0.154676,0.427764,-0.0037626,0.20509,0.243309,-1.17068,-1.19576,-1.23928,-1.21925,0.449397,-1.1366,-0.0643158,-0.274048,0.819564,1.50469,0.11025,1.07164,0.512447,-0.3867,-0.241699,-0.0992671,-1.43413,0 +1.17586,-0.71175,0.177002,-0.448956,0.776811,0.790656,-1.39237,0.425371,-1.50488,0.691035,0.906911,0.109507,0.3867,2.20692,1.60806,-0.421266,-1.4663,0.0682304,0.228993,0.814548,-1.30761,-1.38723,-0.775033,2.36968,1.19737,-1.10001,-1.79117,-0.899317,-0.87145,1.13134,1.52181,1.59491,-1.74417,1.15016,-0.959856,0.0498496,-0.401089,-1.14179,1.80389,-0.879506,0.326946,0.378594,0.606512,1.93079,1.65677,0.359837,2.19745,-1.68759,0.613985,0.389023,-0.659897,-1.42443,-1.26888,0.0691008,0.705432,0.2018,-1.50683,-0.87732,0.0292303,0.747372,-0.915259,1.25147,-1.6472,1.32271,-1.05934,0.227478,-0.145623,0.168726,1.61416,-0.00652,0.135369,0.658753,0.433587,1.57132,0.243127,-0.432141,-1.46896,1.87334,0.0639291,0.000607966,-1.64322,-1.3835,-0.405727,0.833196,0.951202,-1.35423,-1.67889,-0.827657,-0.673925,1.21319,1.78632,2.00945,-1.24463,-0.147802,-0.503861,0.209341,0.301751,-1.44447,0.930291,-1.42156,0.295996,1.27488,0.887797,1.58677,2.09892,0.18412,-0.705829,-1.31582,0.738293,1.11089,0.21941,-0.996477,-1.40051,-1.2926,1.40782,0.373643,1.45269,-1.43522,-1.4895,-1.67938,1.02957,0.577232,1.0265,-0.852361,1.86688,1.69128,0.879376,1.17584,0.424297,-0.989324,0.455642,0.782429,-1.22083,0.624014,2.06586,0.444448,-1.57923,1.76502,-0.776305,0.373031,-0.0260823,-0.759093,-1.40247,-1.42292,-0.154676,0.540259,0.211157,-0.285701,-0.929808,-1.37982,-1.16725,-1.22478,-1.21925,0.60313,1.20735,0.60398,-0.400988,0.696751,1.44721,0.354196,-0.211056,0.187701,0.5188,1.56862,0.590279,1.38932,0 +0.678292,-0.768367,-0.733764,-0.329776,0.323927,0.301661,0.559569,1.16429,0.675326,-0.178318,0.628179,0.483209,0.613033,-0.172046,0.00845638,0.361537,1.08292,0.389337,0.326992,-0.356127,0.195515,0.566315,0.657483,-0.723747,-0.881875,0.342642,0.883109,0.338029,0.213314,-0.79197,-0.363541,-0.800743,0.0956904,-0.441627,1.13794,0.441246,2.16732,0.269016,-0.472412,0.826977,-0.744795,0.443237,0.326387,0.254563,0.235715,0.663391,1.49724,0.265697,-0.112821,-0.394595,0.048779,0.785777,0.515361,1.55431,-0.274,0.522043,0.800279,-0.248057,0.330065,-0.614482,-0.432027,-1.00596,0.756594,-0.65483,1.59969,0.0458009,0.393321,-0.158592,1.11152,0.218606,-0.726517,-0.919422,0.695991,0.191206,0.229115,2.49328,0.798851,-0.0144101,0.526071,0.603508,0.703,0.476353,0.17355,-1.47442,-0.782004,0.389609,0.163113,1.20804,0.0112344,-0.828808,-0.621737,-0.337758,0.395797,0.569145,-0.350512,1.01521,1.45605,0.954902,-0.936384,0.785377,-0.809528,0.280542,0.440313,0.457715,-0.0228348,0.146714,3.7806,1.38056,0.0500852,0.305964,0.602773,0.600646,0.926521,0.83822,-0.737783,0.0193213,-0.930182,0.494571,0.72518,0.835508,-0.846612,-0.58441,-0.967031,0.267163,-0.799875,0.793016,-0.155898,-0.678457,0.284827,1.73621,-0.264027,1.19537,-0.00358013,0.0417047,-0.0798881,-0.275897,0.465904,0.169085,0.423926,0.0212096,-0.0392479,0.623722,0.667471,0.670725,-0.114399,-0.247205,2.14543,0.160473,0.108468,0.885867,0.101171,1.34023,0.372968,-1.10191,-0.104748,-1.18875,0.0115673,0.0826812,-0.350897,0.689621,1.3236,0.97927,-0.681514,-0.678673,0.0558807,-0.880515,0 +-0.0404188,-0.145585,-0.545828,1.49765,-0.163793,-1.10012,0.578337,-0.0892324,2.13918,0.125266,0.906911,0.350605,0.0547447,-0.184061,0.572252,4.04071,1.22982,0.205848,0.510742,-0.182694,-0.0742764,1.1261,0.807149,-0.553311,-0.871212,0.230809,0.904763,-0.476426,0.00669205,-0.817388,0.129222,1.38196,0.415667,-0.207806,0.346553,0.0498496,-0.575811,0.698391,-0.930449,1.07429,-0.214813,1.19309,0.124075,0.310812,0.248291,1.78766,-0.394833,1.09479,-0.13974,-0.319247,-0.105841,1.85239,0.770253,0.61247,-0.923157,0.425971,0.82721,-0.411665,-0.211438,-0.222268,1.95393,1.36886,-0.965528,-0.684907,-0.177085,0.363735,0.186035,0.272089,-1.03239,0.668858,-0.392054,-0.567014,0.483568,-0.101915,0.0749782,2.32611,2.05581,0.349069,0.537921,0.47087,0.783115,0.666565,0.123178,0.987037,-0.467797,0.389609,0.150497,-0.711332,0.495859,-0.867927,-0.22621,1.19115,1.40621,1.08694,0.0788652,-0.838294,-1.44502,1.75142,-0.90553,0.901024,-0.0433232,1.1691,0.619307,0.70215,0.386627,1.16913,1.52101,0.92895,0.0500852,0.292548,0.0824944,0.375699,0.936727,0.921374,-0.768435,-0.335,-0.872063,0.174508,0.64065,0.677006,-0.856384,-0.41358,-0.787519,0.612696,1.25147,-0.481946,-0.00252401,-0.630084,0.22904,0.39409,0.379887,-0.811972,0.0724977,-0.0509354,-0.143372,-0.708104,1.00517,-0.362894,0.931717,-0.0246802,0.224064,0.98558,0.882663,1.18608,-0.114399,3.77047,-0.433602,0.443049,0.243309,1.01367,0.101171,0.00700225,0.913723,0.477349,1.3857,1.18741,0.773208,1.47829,-0.654688,0.399936,-0.107982,0.613931,-0.00765348,0.320124,0.435131,0.854152,0 +0.236008,-0.609841,0.567331,-0.607863,-0.163793,0.377727,-1.42052,1.28304,-1.36991,0.59444,-0.118824,-0.360634,0.401789,0.284523,0.152683,-0.108145,-0.697213,0.786898,0.155493,0.525492,-0.780874,-1.38723,-1.24541,2.26742,1.29333,-1.18947,-1.1632,-0.97763,-0.389333,1.16523,-0.363541,-0.971101,-0.416272,1.43794,-1.29902,1.8356,-0.418561,-0.945501,1.29033,-1.3865,0.138508,-0.38419,0.2797,0.0408161,-0.0409503,-0.303482,1.7654,-0.619604,0.654363,0.750692,-0.492392,-1.40243,-1.34322,1.39734,0.921817,-0.310589,-1.48887,-0.789224,-0.512273,0.965269,-0.0595368,-0.888573,0.326064,1.26255,-1.24315,1.13586,-0.145623,0.651089,1.15255,0.00956042,0.186825,0.628109,0.271146,0.105712,0.467326,0.152944,-1.30195,0.524946,-0.386363,-0.01145,-1.27698,-1.39407,-0.947225,1.40754,1.24514,-1.39214,0.0874141,0.960845,0.128213,1.08019,-0.621737,-0.510029,-1.0901,0.144288,-1.884,1.76065,-0.198786,-1.34613,1.20798,-1.46974,-0.0323775,-0.3753,0.0439695,-0.263948,-0.0476507,0.869886,-0.214614,-0.425883,0.881129,0.0913157,0.479549,-1.21018,-1.40051,-1.38614,1.36696,0.712559,1.41118,-1.46346,-1.5064,-1.35181,1.01002,0.577232,0.743058,0.737087,-0.871672,1.02483,0.585409,1.28871,0.466137,-1.22678,-1.64655,-0.421975,0.0420666,0.174048,0.656523,1.77308,-0.38878,2.0894,-1.04174,-0.376502,-0.895013,-1.40527,-1.46396,-1.40145,-0.114399,0.877743,2.00215,0.190217,0.256793,-1.14744,-1.19576,-1.25377,-1.21925,0.477349,-1.09838,-0.0218843,-0.226446,1.04286,1.40616,0.0950031,1.0831,0.573337,-0.3867,-0.241699,-0.0992671,-1.47104,0 +0.236008,2.31157,1.20342,0.769329,-0.163793,0.834122,-1.41114,1.32263,-1.42182,0.41505,-0.208019,-0.372689,0.447056,0.332582,-0.0702128,-0.155113,-1.53543,0.679863,0.228993,0.742284,-0.935041,-1.38723,-1.12782,0.213655,1.00544,-1.04409,-1.4014,0.478993,2.93383,1.16523,-0.363541,-0.300318,-0.288281,1.54585,-1.31158,1.8356,-0.462241,-0.945501,0.735139,-1.34941,1.94045,0.0424523,0.4042,0.119565,-0.0283746,-0.202298,-0.960965,-0.900652,0.775498,0.47944,-0.569702,-1.41343,-1.2795,1.24036,2.43652,-0.214516,-1.52478,2.43261,2.16516,0.943479,-0.854855,0.872221,0.397819,1.17232,-1.19413,1.27212,-0.145623,0.117044,0.660172,0.0417213,1.70477,1.53211,0.121201,0.117926,0.25714,-0.0142232,-1.42501,0.548397,-0.362663,0.0970719,-1.37998,-1.39407,-0.972411,0.77166,1.04242,-1.35423,1.81587,1.62972,2.63489,1.07236,1.13486,-0.531563,-0.792919,-0.0415876,-1.73065,1.73043,-0.525667,-1.4248,0.729739,-1.48902,2.0911,-0.184894,0.0311842,-0.15919,-0.0228348,0.820012,-0.427474,-0.744667,0.647398,0.0242381,0.424783,-1.22142,-1.42093,-1.35496,1.39761,0.543101,1.39458,-1.33167,-1.49795,-1.11935,0.970936,2.52469,1.66896,0.76473,0.174515,0.966874,0.81547,1.32902,0.577712,-1.22678,-1.7223,-0.502269,-0.110089,0.134345,0.643826,0.15631,-1.47748,-0.972725,-0.810928,-0.361205,-0.881847,-0.914175,-1.42297,-1.41218,0.167537,-0.231134,2.57527,0.918968,1.55127,-1.57734,-1.153,-0.601646,-0.828709,1.65131,-0.334047,1.25106,-0.258181,1.57878,1.29942,0.247469,1.12891,0.715414,-0.449874,-0.179275,-0.0130738,-1.45259,0 +1.01,1.46232,1.72386,-0.40923,-0.163793,0.812389,-0.819924,0.174667,-1.06884,0.691035,0.271401,0.591703,-0.0357885,0.356612,0.0346794,-0.0924892,-1.54407,-0.13055,0.608742,0.829001,1.24899,-0.930258,1.23477,2.36116,1.16538,-0.194158,0.720704,-0.539077,-0.837013,1.13134,2.29309,1.59491,-1.72817,1.10519,-0.984979,0.123236,-0.409825,-1.43621,0.471421,0.233418,1.65779,0.275166,0.575387,0.42331,-0.0283746,0.314867,-0.975863,-0.53529,0.748579,0.404092,1.13112,-0.9406,0.302951,0.0328761,0.671265,0.297873,-0.725822,1.81593,0.0893973,0.758267,-0.895124,1.28759,-1.6472,1.32271,-1.04709,0.136639,-0.145623,1.01286,-0.591298,1.63368,1.7305,0.85794,-0.0662311,0.117926,-0.219283,-0.432141,-1.47775,0.630473,0.644569,0.0488399,0.68011,-0.834,1.48322,0.833196,0.941066,-0.614997,1.9925,0.0738641,-0.724058,1.22101,1.99572,1.96638,-1.24463,-0.293847,-0.595871,-0.777854,0.311966,-1.44447,0.976572,-0.843322,1.55476,1.1691,-0.224521,0.166722,0.212916,0.695327,-0.673081,-1.84713,0.426652,-0.150164,0.150952,1.29798,0.661157,0.557576,1.40782,0.389048,1.45269,-0.842163,-0.821714,0.677006,1.04911,0.600009,1.05484,-0.741791,1.9079,1.72026,0.892157,1.15971,0.41035,-1.0203,0.417764,0.702135,0.559396,0.332859,0.377195,0.332395,-1.42661,0.324787,1.08175,1.67324,1.61962,-0.681552,-1.14629,-1.42292,-0.114399,0.684895,0.354437,1.97491,2.03669,0.560538,-1.18151,-1.22478,-1.21925,0.86867,1.16914,0.890393,-0.400988,0.406463,1.43079,0.15599,-0.95548,0.00503152,0.539858,1.50619,0.521324,1.40777,0 +0.623006,-0.802337,-0.892787,1.69629,-0.163793,-0.133001,0.60649,-0.168402,1.68237,-0.785485,1.28599,0.121562,0.160367,2.08677,1.90963,-0.296018,1.26439,0.114103,0.620992,0.496587,0.0798904,1.32031,0.796459,-0.578876,-0.871212,0.387375,0.699049,0.792245,0.0583475,-0.88517,-0.342116,-0.811391,0.271677,-0.810345,0.3968,0.514633,-0.575811,1.54487,-0.236454,0.480734,-0.862569,0.41738,-0.607363,2.04329,1.46813,-0.0336573,-0.0372768,0.588902,0.304419,-0.19869,-0.286231,1.74243,0.695909,0.226074,-0.604273,-0.0383821,0.73744,-0.273227,0.0141885,-0.930433,1.5915,-1.01499,0.720717,-0.978154,-0.140324,0.0458009,-0.145623,-0.193047,1.08075,-0.344209,-0.880885,-0.934744,0.958395,1.11942,0.635475,-0.515724,1.89759,1.73264,0.407573,0.47087,0.462656,0.782806,0.0853994,1.44856,-0.893497,0.560203,-0.190148,-0.216949,1.08075,-0.930517,-0.621737,-0.337758,1.09714,0.117734,-0.626541,1.03536,-1.09771,2.22342,-0.843821,0.689004,-0.886149,0.280542,1.47592,1.91268,2.18578,0.458426,-0.00175434,0.158555,0.751278,1.04382,0.21941,0.544409,0.865283,0.921374,-0.461919,0.389048,-0.822247,0.758152,0.767445,0.76154,-0.875928,-0.846349,-0.759175,0.654159,-0.789618,0.821992,-0.692706,-0.8397,-0.147527,0.125666,-1.02157,-0.926678,0.0877133,-0.0509354,1.59608,0.284372,1.9616,0.220986,0.712444,-0.07057,0.23723,0.636645,0.964641,1.90544,-0.114399,-0.295417,-0.290322,-0.449298,-0.363476,0.607014,0.00140723,-0.021981,0.778534,-1.11589,-0.117487,-1.19936,-0.258181,-0.821675,-0.859951,0.628635,1.3236,0.999567,-0.681514,-0.678673,0.0558807,-0.935876,0 +0.678292,-0.802337,-0.502458,-0.316534,0.080067,0.345127,0.568953,-0.471886,0.997166,0.953221,0.695074,0.0612875,1.59381,0.152358,0.349356,-0.061177,1.43722,0.098812,0.596492,0.265342,-0.0614292,0.566315,0.721626,-0.860097,-0.881875,0.353825,0.893936,-0.601727,0.247751,-0.0378959,-0.363541,-0.736859,0.0956904,1.04224,1.13794,0.392322,2.15858,0.698391,-0.278094,1.11139,-0.709463,0.494951,1.5247,0.659557,0.160261,1.00067,2.71889,0.223539,0.210204,0.178049,-0.0800712,0.763785,0.802114,0.213999,-0.262611,0.233825,0.818233,-0.436836,0.390232,0.87811,0.000867143,-1.00596,0.756594,0.067009,1.61194,0.0458009,-0.145623,0.409907,1.07049,0.733179,-0.597878,-0.873455,1.25829,-0.162982,0.117016,-0.0142232,0.93949,-0.0613107,0.407573,0.482928,0.0620818,0.539757,-0.0783093,-1.46416,0.0592598,0.427519,0.100031,-0.187868,0.0112344,-0.359383,-0.621737,-0.316224,0.395797,2.10925,-0.319842,0.964847,1.46627,0.600897,-0.890103,0.910661,-0.820474,0.322854,0.478669,0.748709,0.560339,0.470895,0.882432,0.610166,0.0111301,0.238886,0.192027,0.139505,0.457032,0.734278,-0.472137,-0.0268945,-0.921879,0.146267,0.606838,0.634739,-0.563231,-0.573021,-0.721383,0.267163,-0.769105,0.793016,1.62068,0.514741,2.09793,1.72588,-0.282966,1.14948,0.300731,0.107876,-0.00370766,0.0922795,0.862721,1.18114,1.03558,0.128286,0.184567,1.03727,0.872416,0.659988,-0.114399,-0.295417,-0.863441,0.487667,0.256793,1.02529,0.101171,1.36921,0.387989,-1.07396,-0.0283145,-1.17814,-0.0519028,1.84674,0.388052,0.750608,1.3236,0.999567,-0.681514,-0.678673,0.0558807,-0.880515,0 +1.17586,-0.689104,0.177002,1.59035,0.602625,0.605925,-1.36421,1.07192,-1.33877,0.829028,-0.286064,0.0733424,0.0094781,0.296538,0.310021,-0.577827,-1.37124,0.6187,-0.346757,0.207531,-0.202749,-1.39865,-0.914008,0.895401,0.920136,0.107792,-1.32561,-0.61739,2.19344,1.15676,0.300618,1.59491,-1.74417,1.33901,-0.959856,0.0498496,-0.401089,-1.14179,1.81777,-0.854775,0.338723,0.378594,0.108512,-0.19543,0.172837,-0.775676,2.10806,-0.394766,0.385176,0.81097,0.061664,-1.40243,-1.23702,0.564171,2.56179,1.77099,-1.24649,-0.85215,0.736192,1.08511,-0.935393,1.2605,-1.61132,1.30015,-1.14512,0.227478,-0.145623,0.151498,1.6039,0.00956042,0.148233,0.658753,0.0462279,0.362193,0.775599,-0.264974,-1.42501,0.138017,-0.220466,0.000607966,-0.853516,-1.3835,-0.41832,1.81778,1.36677,-1.10782,-1.56534,2.34221,2.56805,1.1506,1.80959,2.00945,-1.23274,0.184118,-0.503861,0.189194,0.0565905,-1.44447,0.991999,-1.39265,0.339779,1.27488,0.31246,-0.357066,0.0392049,0.146714,-0.705829,-0.75795,0.855159,0.0644847,0.424783,-0.737788,-1.23721,-1.32378,1.26478,0.882017,1.36136,-0.136142,-1.03304,-1.46805,1.01002,2.17164,1.13987,-0.852361,1.87713,1.69128,0.48316,1.2484,0.256934,-1.09256,0.47458,0.759488,0.346378,0.465202,0.593039,0.460456,-1.57923,1.778,-0.649358,0.434217,-0.460547,-0.746169,-1.40247,-1.42292,-0.114399,-0.295417,0.0678772,-0.270829,-0.875871,-1.13582,-1.153,-0.992919,-0.933856,0.589155,1.20735,0.614588,-0.385121,-0.0624624,1.44721,0.369442,-0.211056,0.167405,0.497742,1.56862,0.590279,1.37086,0 +0.236008,2.30025,1.24679,-0.594621,-0.163793,0.921055,-1.40175,1.52055,-1.51526,0.622039,0.13761,0.31444,-0.0659663,0.368627,0.100237,-0.0298649,-1.54407,0.144684,1.96849,0.785642,-1.1149,-1.3758,-0.465011,2.31003,1.24002,-1.26776,-1.41222,-0.68004,-0.768139,1.08051,-0.363541,-0.289671,-0.320279,1.06023,-1.29902,1.8356,-0.357409,-0.945501,0.721259,-1.37414,1.964,0.0424523,0.388637,0.367061,0.562684,0.191197,-0.975863,-1.80001,2.60597,0.630136,-0.762977,-1.40243,-1.12019,-0.051648,0.614322,-0.742917,-1.5158,2.38227,0.269898,0.780056,-0.643441,0.872221,0.397819,1.35278,-0.998076,1.2267,-0.145623,0.117044,0.680688,0.0256408,1.7305,1.57808,-0.153699,0.203419,0.0749782,-0.264974,-1.47775,0.653923,1.24891,0.29,-1.57455,-1.3835,-0.430913,0.740892,1.22487,-1.35423,1.80325,-0.333274,-0.874459,1.24449,1.08833,-0.553097,-1.0901,-0.147802,-1.73065,1.75057,0.506052,-1.43464,0.791447,-1.47938,2.0911,-0.269519,-0.250092,0.0270453,0.175692,0.820012,-0.574838,-1.62132,0.751278,1.36579,1.62964,-0.726541,-1.23721,-1.09511,1.39761,0.296616,1.43609,-1.50112,-1.4895,-1.33068,0.980707,0.622787,1.08319,0.750908,0.164259,0.99585,0.904938,1.1194,0.786916,-1.22678,-1.68443,-0.456387,-1.03824,-0.236216,0.504162,0.15631,-1.47748,-0.907849,-0.487788,1.09197,0.553205,-0.940022,-1.42297,-1.41218,-0.114399,0.34741,0.139517,0.918968,1.55127,-1.57734,-1.16725,-1.22478,-1.21925,1.69324,-0.346786,1.27228,-0.305783,0.339474,1.50469,0.277963,1.11745,0.654524,-0.449874,-0.179275,-0.0303125,-1.43413,0 +1.06529,1.47365,1.73832,-1.03161,-0.163793,1.04059,-1.36421,2.03516,-1.48411,1.10501,-0.241467,0.0371777,-0.352655,0.392657,0.231352,-0.421266,-1.51815,0.419919,1.72349,0.525492,-1.12775,-1.38723,-1.09575,1.21071,1.91177,-0.77569,0.699049,-0.492089,-0.0794003,1.05509,2.18597,1.59491,-1.71218,0.619562,-0.984979,0.123236,-0.497186,-1.44848,0.485301,0.19632,1.68134,0.275166,0.124075,0.175814,0.361472,-0.280997,-0.990761,-1.36438,2.61943,0.81097,-0.543932,-1.42443,-1.2264,-0.0999475,0.705432,-0.0704064,-1.10286,1.81593,0.691067,1.16138,-0.925326,1.27856,-1.6472,1.25504,-0.924554,0.136639,-0.145623,1.01286,-0.570782,1.63368,1.74337,0.888584,-0.416103,0.215633,0.509363,-0.515724,-1.48654,0.489771,0.727517,0.47087,-1.50588,-1.37294,-0.922039,0.730636,1.36677,-1.24051,1.9925,-0.275112,-1.20868,1.29143,1.99572,1.96638,-1.23274,0.356716,-0.595871,-0.777854,0.444762,-1.44447,1.00743,-1.21918,1.57665,1.1691,-0.160595,-0.19411,0.138469,0.59558,-0.640333,-1.34239,0.881129,0.882831,1.52011,-1.30016,-1.46175,-1.33417,1.34652,0.989854,2.29957,-0.992781,-0.990773,0.645306,1.18591,1.06694,1.30049,-0.741791,1.9079,1.74924,0.738783,0.917849,0.6335,-0.979,0.417764,0.702135,-0.353538,0.0814076,0.593039,0.332395,-1.42661,0.324787,-0.68398,0.801336,-0.460547,-0.78494,-1.35124,-1.43366,-0.154676,-0.295417,0.0678772,1.97491,2.03669,0.5373,-1.18151,-1.16682,-1.21925,0.896622,1.1564,0.901001,-0.400988,-0.89983,1.18447,0.140743,-0.944027,0.00503152,0.539858,1.50619,0.538563,1.40777,0 +-0.0404188,0.0582341,-0.806047,1.11363,0.254253,-0.0569353,0.531416,0.253837,0.664944,0.277058,1.45323,0.567593,1.75979,1.31781,2.28986,0.0640714,1.22982,0.25172,-0.0160073,0.0196449,0.311141,0.566315,0.56127,-0.834531,-0.423375,0.365009,0.872282,0.76092,1.79741,-0.817388,-0.320692,1.39261,-0.240285,-0.828331,0.00738919,0.0498496,-0.575811,0.293552,-0.916569,0.715685,-0.391474,1.18016,1.07339,1.81829,0.902228,0.438536,1.33336,0.251644,-0.328171,0.238327,0.242054,0.80777,0.462259,0.491722,1.46848,0.457995,0.782325,-0.0592777,1.00694,-0.167794,0.373358,1.36886,-1.21667,-0.948077,0.313059,0.318316,-0.0212512,-0.158592,-1.03239,0.0256408,-0.713653,-0.674268,1.78309,0.594247,2.06474,1.82461,0.737321,0.337344,0.443122,0.398522,0.81745,0.44465,0.123178,0.946013,-0.254947,0.408564,0.188346,-0.0133799,1.91631,-0.891398,1.0069,1.23422,0.360136,0.0247964,0.0481954,-0.828221,-1.40416,1.05324,-0.890103,0.727553,-0.0761606,1.19026,2.31975,2.22696,2.04929,-0.140061,3.48587,1.23445,1.6862,0.721845,0.356325,0.578151,0.95714,0.796643,-0.625394,-0.85878,-0.589771,0.607535,0.750539,0.888342,-0.514373,1.32888,0.535202,-0.313331,1.27199,-0.626827,-0.130336,-0.880011,-0.398571,0.517978,0.398826,-0.651385,-0.125305,0.319625,0.135956,-0.00376651,0.577826,0.208011,0.377764,0.112989,-0.131407,0.455716,0.605987,0.735144,-0.114399,-0.295417,-0.648521,0.011748,0.0545313,0.816153,-0.283632,0.441751,0.192716,0.393494,1.3857,1.17681,-0.0519028,-0.185276,-0.810688,0.338949,-0.130888,0.613931,0.0134047,0.444973,0.45237,0.89106,0 +0.678292,-0.84763,-0.242239,-0.329776,-0.163793,0.334261,2.14552,-0.0892324,0.550743,0.152864,0.862314,0.555538,0.130189,-0.0518966,0.362468,4.32252,0.858241,0.343465,0.130993,-0.168241,0.118432,1.69731,0.775078,-0.860097,-0.881875,0.912992,1.16461,0.729595,0.230532,-0.758079,-0.363541,-0.790096,0.0956904,0.0260158,1.12537,0.441246,2.17606,0.722927,-0.76389,1.77915,-0.709463,0.456166,0.1552,0.344562,0.348897,1.85512,0.0968069,0.0408582,-0.435846,-0.334316,0.151859,0.763785,1.24817,0.358898,-0.274,0.457995,2.00321,-0.336154,0.360149,-0.156899,-0.482364,-1.00596,0.756594,-0.496928,1.59969,0.0458009,0.55915,0.254862,1.09101,0.684938,-0.417782,-0.735557,0.546046,0.38662,0.00491612,2.66045,0.728531,0.102841,0.490522,0.458812,0.462656,2.19883,0.198736,-1.47442,-0.43739,1.87756,-0.50556,-0.23149,0.0112344,-0.781865,-0.621737,-0.337758,0.395797,1.27282,-0.350512,1.00514,1.46627,0.817233,-0.843821,2.17314,-0.940878,0.280542,0.644877,0.771988,0.336996,0.91976,1.35727,0.397643,-0.0148401,0.212055,0.164644,0.600646,0.855077,1.01492,-0.799086,-0.566079,-0.930182,0.447503,1.75644,0.476237,-0.827069,-0.58441,-0.957583,0.253342,-0.789618,0.793016,0.0741629,-0.525276,0.396403,1.72588,-0.282966,1.17243,-0.110089,0.174048,-0.181462,-0.628066,0.598176,-0.440745,0.65474,-0.07057,-0.0260823,1.55421,2.22505,1.74439,-0.114399,-0.295417,-0.791801,0.547156,0.162404,1.64109,0.101171,1.34023,0.372968,-1.10191,-0.07927,-1.18875,2.29649,1.77975,0.240262,0.704868,1.3236,0.999567,-0.702572,-0.678673,0.0558807,-0.880515,0 +0.567721,-0.74572,-0.892787,1.68304,-0.163793,-0.165601,2.00475,-0.207987,0.436542,0.208061,0.951508,0.350605,1.24677,0.368627,0.401802,-0.045521,0.685413,-0.268167,0.522992,0.482134,0.131279,1.19465,0.710935,-0.638529,-0.871212,1.94186,0.785666,0.228391,0.041129,-0.393751,-0.342116,-0.736859,0.255678,0.835397,0.3968,0.465708,-0.575811,0.919212,-0.389133,0.567295,-0.756573,0.469094,0.917762,0.603308,0.323745,1.50659,-0.320342,0.46243,-0.0859025,0.0122836,-0.105841,0.653825,1.4181,0.129475,-0.592884,0.377934,1.77878,-0.348739,-0.000853208,0.213525,1.58144,-1.00596,0.720717,-0.203681,-0.164831,0.000381674,-0.145623,-0.0380013,1.03972,-0.37637,-0.829429,-0.919422,1.19581,0.0202188,-0.0511336,-0.348557,0.491203,0.0911162,0.537921,0.494986,0.622885,1.90295,0.198736,1.46907,-0.518475,2.07659,0.264045,0.786357,1.03062,-0.382854,-0.621737,-0.29469,1.06148,2.00304,-0.65721,0.995067,-1.09771,0.787733,-0.890103,1.68164,-0.776691,0.34401,0.274104,0.597392,0.684418,0.645453,-0.558464,0.357795,0.0630703,0.252302,0.123569,0.611893,0.906108,1.01492,-0.482354,0.281211,-0.838852,1.63362,1.85788,0.634739,-0.758667,-0.846349,-0.683591,0.667981,-0.728078,0.850968,1.04553,0.160007,1.70741,0.0740464,-1.07839,-0.949619,-0.155736,-0.447964,-0.435397,0.172318,0.984819,0.0912347,0.827851,-0.192943,0.118739,0.688339,1.53849,1.06798,-0.114399,-0.295417,-0.505242,-0.434426,-0.0128892,0.74644,0.0156592,-0.0364726,0.71845,-1.10191,-0.0410534,-1.18875,-0.178843,1.95838,-0.54795,0.689621,1.3236,1.01986,-0.660456,-0.616248,0.0386421,-0.972784,0 +1.23115,-0.700427,0.177002,-0.727043,0.637462,1.68171,-1.32668,0.966365,-1.36991,0.497846,-0.419855,0.121562,0.145278,0.296538,0.152683,-0.671763,-1.43173,0.496373,-0.310007,0.612209,-0.202749,-1.39865,-0.903318,0.639746,1.13339,0.241992,-1.23899,-0.460764,-0.0105264,1.4872,0.21492,1.59491,-1.74417,1.06023,-0.90961,0.0253873,1.65189,-1.14179,1.81777,-0.86714,0.338723,0.391523,0.0773875,-0.21793,0.235715,-0.87686,2.12296,-0.521238,0.358257,0.765762,0.100319,-1.40243,-1.21578,0.648695,1.32042,1.787,-1.18365,-0.826979,1.06711,1.03064,-0.935393,1.25147,-1.6472,1.57836,0.129255,0.227478,-0.145623,0.151498,1.61416,-0.00652,0.135369,0.658753,0.0837142,0.398833,0.439301,-0.432141,-1.46017,0.0676659,-0.125668,-0.023508,-0.910741,-1.36237,-0.380541,0.904989,1.27554,-1.032,-1.47703,2.54578,-0.640502,1.22101,1.75142,2.00945,-1.23274,0.197395,-0.503861,0.199267,1.87487,-1.4543,0.976572,-1.3541,0.328833,1.29604,-0.0583127,-0.391985,0.014389,-0.0278445,-0.787698,-1.03689,0.868144,0.0779002,0.274176,-0.737788,-1.23721,-1.31339,1.38739,0.77418,1.22852,0.155681,-0.948509,-1.34125,1.2934,0.953057,0.92257,-0.866183,1.86688,1.69128,0.317005,1.39352,0.215093,-0.0808134,0.47458,0.828311,0.285516,0.465202,0.567646,0.444448,-1.58941,1.76502,-0.614736,0.296548,-0.473713,-0.746169,-1.40247,-1.42292,-0.114399,-0.295417,0.354437,-0.285701,-0.902839,-1.10096,-1.153,-0.934953,-1.21925,0.589155,1.20735,0.60398,4.81943,1.57878,2.24364,0.369442,-0.199604,0.207998,0.5188,1.56862,0.607517,1.38932,0 +0.236008,-0.598517,0.581787,-0.991888,-0.163793,0.74719,-1.41114,1.74487,-1.27647,1.16021,-0.18572,0.0974522,0.0698336,0.248478,0.480471,-0.311674,-0.731779,0.679863,0.694492,0.14972,-0.0614292,-1.38723,-1.26679,1.37262,1.08008,-1.54734,-1.14155,-0.97763,-0.217148,1.35163,-0.363541,-0.960453,-0.43227,1.85162,-1.31158,1.8356,0.0444512,-0.908697,1.29033,-1.3865,0.138508,-0.371261,0.435325,-0.22918,0.323745,-0.0561427,1.72071,-0.198033,1.94646,0.524649,0.138974,-1.36945,-1.48129,0.443422,0.842096,-0.855002,-1.4799,-0.776638,0.555691,1.39017,-0.885057,-0.888573,0.290186,1.3979,-0.826525,1.18128,1.13955,0.685543,1.15255,0.00956042,0.186825,0.628109,0.021237,0.34998,0.859674,0.570861,-1.18768,0.0911162,0.0757789,1.65255,-0.647506,-1.3835,-0.342762,0.761404,1.36677,-1.45849,0.112647,-0.856738,-1.15855,1.22884,-0.621737,-0.488495,-1.0901,0.608975,-1.94534,1.75057,0.506052,-1.35597,1.2234,-1.46011,-0.0214317,-0.332988,0.721589,-0.00787394,0.0640208,0.134246,-0.640333,-0.532144,0.738293,0.97674,2.13623,-0.625315,-1.14536,-1.35496,0.856096,0.835801,1.18701,-1.4917,-1.5064,-1.48918,1.44975,0.531677,1.0265,0.750908,-0.861415,1.0538,1.08387,1.2484,0.41035,-1.22678,-1.66549,-0.421975,0.468103,0.504905,0.593039,1.78909,-0.378605,2.07643,-1.64186,-1.34019,-0.829185,-1.39234,-1.45371,-1.40145,-0.154676,-0.295417,-0.576881,0.190217,0.256793,-1.14744,-1.21001,-1.12334,-1.20423,0.477349,-1.08564,-0.0112764,5.31132,2.88507,2.04658,0.0950031,1.0831,0.593634,-0.365642,-0.241699,-0.0992671,-1.47104,0 +-0.0957042,0.0808807,-0.777134,-0.131143,-0.163793,1.02972,0.972478,-0.0892324,0.395015,-0.454303,0.683925,0.447044,-0.126322,0.0442232,0.611586,3.38316,0.823675,0.159975,0.400492,0.236437,0.105585,0.612012,0.753697,-0.749313,-0.871212,0.599858,0.482509,3.12597,0.747086,-0.808916,-0.320692,1.38196,-0.224286,-0.504579,0.597786,0.0987742,2.15858,0.637052,-0.944329,0.19632,-0.2737,1.19309,-0.171613,0.490809,0.348897,1.45038,0.0819087,0.631059,-0.0724431,-0.469942,-0.0414161,0.554861,0.749012,0.552096,-0.410664,0.441983,0.755394,0.620327,1.06711,-0.592693,-0.854855,1.34177,-1.39606,-0.369102,1.63645,0.318316,0.0202061,-0.193047,-1.03239,-0.0226004,-0.610742,-0.674268,0.0587233,0.105712,-0.20527,1.99178,0.552733,0.993952,0.537921,0.482928,0.485546,0.825075,0.17355,-0.900076,-0.802275,0.711841,0.100031,2.69118,0.128213,-0.617567,0.518309,1.23422,0.312587,0.184118,-0.0131442,-0.717413,1.74207,0.659898,-0.936384,0.795014,-0.0761606,1.21141,0.427528,0.632311,0.572747,1.99205,1.50464,0.371078,0.0630703,0.305964,0.0277283,0.555657,0.844871,0.900586,-0.686697,0.265806,-0.880366,1.55831,0.758992,0.898908,-0.866156,-0.91468,-0.693039,-0.755612,1.25147,-0.655804,-0.155898,-0.573649,0.0337832,1.47811,0.417764,0.954486,0.0116354,-0.222981,0.0343826,-0.179851,0.883071,0.0393342,0.608578,-0.0246802,0.066077,0.21017,0.749449,0.638515,0.852239,-0.247205,2.28871,0.190217,0.229825,0.397874,0.0156592,1.28226,0.2528,0.365543,1.3857,1.15559,0.598666,0.395298,0.05963,0.369442,-0.0736243,0.654524,0.0765791,0.507398,0.45237,0.946421,0 +1.01,1.46232,1.72386,-1.09783,-0.163793,0.953654,-0.782387,0.570516,-1.35953,0.60824,0.0261165,0.242111,-0.126322,0.416687,0.074014,-0.32733,-1.56135,0.114103,0.645492,0.829001,0.696558,-1.07877,1.20269,1.48341,2.1037,0.476842,0.720704,-0.3198,0.0927844,2.52087,2.01458,1.59491,-1.72817,0.853384,-0.984979,0.123236,-0.470978,-1.44848,0.485301,0.233418,1.65779,0.288095,0.2797,0.344562,0.0345039,-0.0224146,-0.990761,-1.56112,0.788957,0.615066,0.66726,-1.13853,0.409156,-0.558793,0.762375,1.32265,-0.654006,1.80334,0.645942,1.5318,-0.935393,1.28759,-1.6472,2.05207,-0.802018,0.136639,-0.145623,1.03009,-0.591298,1.64976,1.7305,0.873262,-0.228672,0.105712,-0.121196,-0.515724,-1.50412,0.571847,0.466822,0.000607966,-0.00658807,-0.939673,1.28173,0.6691,1.52894,-0.434926,1.9925,0.539165,-1.14184,2.26157,1.99572,1.96638,-1.23274,-0.24074,-0.565201,-0.787927,-0.117065,-1.4543,0.976572,-0.852959,1.55476,1.1691,-0.326803,0.0154055,0.237732,0.632985,-0.689455,-1.70102,0.634413,-0.136748,0.0140367,1.05054,0.334556,0.453634,1.38739,0.204185,1.1787,-0.766854,-0.652655,0.666439,2.71031,1.54527,2.24529,-0.755612,1.9079,1.72026,1.01997,2.27229,0.661394,-1.1958,0.417764,0.690665,-0.201383,0.0814076,0.529555,0.348402,-1.42661,0.324787,1.27794,2.04036,1.61962,-0.681552,-1.23852,-1.43366,-0.114399,-0.295417,0.0678772,1.97491,2.03669,0.560538,-1.18151,-1.06538,-1.21925,0.882646,1.16914,0.890393,-0.400988,0.23899,1.2009,0.140743,-0.95548,0.00503152,0.5188,1.50619,0.538563,1.40777,0 +0.236008,-0.621164,0.552874,-0.700559,-0.163793,1.39918,-1.41114,1.33582,-1.42182,0.387452,-0.219168,-0.384744,0.431967,0.344597,-0.122659,-0.0924892,-0.749062,0.649281,0.265743,0.727831,-0.973583,-1.38723,-1.04229,0.171045,1.18671,-0.988174,-1.15238,-0.805341,-0.286022,1.41942,-0.363541,-0.992395,-0.448269,1.2221,-1.29902,1.81113,1.32866,-0.945501,1.26257,-1.3865,0.138508,-0.397118,0.419762,0.142065,-0.0283746,-0.0786281,1.825,-0.984967,0.802416,0.434231,-0.608357,-1.41343,-1.24764,1.16791,1.41153,-0.182492,-1.4799,-0.789224,0.465441,1.1069,-0.895124,-0.897603,0.326064,1.62347,-0.507932,1.09044,0.351864,0.616634,1.16281,-0.00652,0.186825,0.628109,0.0462279,0.117926,0.271152,-0.0142232,-1.35469,0.560122,-0.350814,0.133246,-1.40287,-1.3835,-0.959818,0.792172,1.10324,-1.33528,0.0747977,1.78966,-0.406546,1.1506,-0.621737,-0.531563,-1.10198,0.290332,-1.884,1.77072,1.57863,-1.35597,1.17712,-1.46011,-0.0433232,-0.459925,0.107896,-0.135911,-0.0104268,0.832481,-0.312857,-0.744667,0.530532,0.0108226,0.411091,-1.19893,-1.42093,-1.32378,1.38739,0.527696,1.18701,-1.32226,-1.44723,-1.18275,1.17614,1.1125,0.87533,0.723266,-0.892185,1.0538,0.738783,1.44189,0.340615,-0.803492,-1.62761,0.105668,-0.14052,0.121111,0.643826,1.75708,-0.378605,2.07643,-0.730143,-0.361205,-0.868681,-1.40527,-1.45371,-1.40145,-0.114399,-0.231134,2.64691,0.20509,0.256793,-1.15906,-1.21001,-1.13784,-1.21925,0.463373,-1.12386,-0.0431001,5.42239,1.58994,2.30932,0.11025,1.07164,0.532744,-0.3867,-0.241699,-0.0992671,-1.43413,0 +0.180723,1.40571,1.3769,-0.991888,-0.128956,2.18157,-0.74485,0.174667,-1.12075,0.649637,0.249102,0.519374,0.0396559,0.392657,0.0215679,-0.0298649,-1.54407,-0.0388052,0.620992,0.829001,1.14621,-0.953106,1.22408,1.22775,1.09074,-0.0152244,0.883109,0.071765,1.60801,1.49567,-0.363541,-0.885922,-0.640255,0.925329,-1.07291,1.81113,1.61695,-1.48529,0.249342,0.270515,1.48113,-0.629832,0.559825,0.43456,-0.0283746,0.292381,-0.960965,-0.844443,0.72166,0.449301,1.04093,-0.962592,0.334813,-0.37767,0.955984,0.506031,-0.573212,2.05505,2.27045,0.845425,-0.905191,-0.130077,0.254309,1.44301,1.29335,0.863346,-0.145623,0.668316,0.403724,1.42464,1.47322,0.704719,-0.0537357,0.105712,-0.191258,-0.0978067,-1.46896,0.677373,0.60902,0.012666,0.577105,-0.812865,1.44544,0.72038,1.16405,-0.501268,2.04297,0.161108,-0.32299,1.39314,-0.121512,-0.488495,-1.10198,-0.147802,-2.06802,1.84123,2.22218,-1.44447,0.544614,-0.766224,1.4453,-0.925361,-0.250092,0.143443,0.225324,0.770138,-0.607586,-1.76743,0.465607,-0.163579,0.123569,1.25299,0.610126,0.547182,1.41804,0.173374,1.23682,-0.738613,-0.618843,0.994009,1.39112,1.05556,1.36663,0.612696,-0.297295,1.11176,0.904938,1.26452,0.675341,0.0017785,-1.38141,0.530077,0.346378,0.279922,0.453375,0.268364,-1.49783,0.285861,1.11637,1.74972,1.60645,-0.616934,-1.15654,-1.42292,-0.114399,-0.295417,-0.361962,1.82619,1.96927,0.653489,-1.21001,0.137427,-1.17419,0.477349,-1.39137,0.00993931,-0.226446,1.04286,1.87416,0.201729,0.945663,0.207998,-0.302467,-0.428974,-0.219938,-1.39722,0 +-0.0404188,-0.021029,-0.849417,1.51089,-0.163793,-1.30659,1.96721,-0.115622,0.602653,-0.109321,1.0184,0.519374,-0.0659663,0.0802681,0.72959,3.49275,0.564433,-0.237586,-0.00375735,-0.0959774,0.439613,1.40028,0.411604,-0.425483,-0.871212,2.32209,0.385065,-0.194499,0.00669205,-0.834334,0.107797,1.38196,0.415667,-0.666455,0.346553,0.0498496,-0.575811,1.06643,-0.944329,0.270515,-0.76835,1.19309,-0.0471125,0.45706,0.411775,1.72021,-0.514019,0.476483,-0.0589837,-0.515151,0.203399,0.741793,1.82168,0.769444,-0.923157,0.618116,1.49151,-0.336154,-0.196396,-0.298532,1.94386,1.36886,-0.965528,-0.970635,-0.164831,0.363735,-0.0627085,0.306544,-1.03239,-0.40853,-0.970933,-0.658946,0.433587,0.484327,0.271152,1.23953,0.385724,0.947052,0.383874,0.47087,1.00057,1.96635,-0.00275141,0.997293,-0.589425,2.17136,-0.0387506,1.03355,0.529282,-1.03223,0.983634,1.19115,1.41809,0.648806,0.0788652,-0.848368,-1.45524,0.8074,-0.828394,1.34434,-0.240347,1.1691,0.657663,0.585753,0.399035,1.71774,0.342096,0.503905,0.244861,0.225471,-0.0681126,0.521915,0.906108,1.09808,-0.788869,-0.0422998,-0.847155,1.62421,1.68882,0.645306,-0.875928,-0.41358,-0.796967,0.598874,1.26173,-0.481946,-0.0153052,-0.823576,-0.00805756,0.404414,0.379887,-0.811972,-0.0948736,0.279922,0.0978663,0.412433,1.01534,0.10421,1.20869,0.235362,-0.157738,0.675416,1.26181,1.03577,-0.114399,3.70618,-0.290322,-0.806237,-0.565737,0.0957826,0.101171,0.0214939,0.928744,0.477349,1.3857,1.19802,0.328918,0.696751,-0.818898,0.399936,-0.107982,0.593634,-0.00765348,0.320124,0.435131,0.854152,0 +0.567721,-0.723074,1.62266,1.6698,-0.163793,-0.165601,0.794176,-0.0760374,0.550743,0.152864,0.91806,0.41088,0.0849225,-0.196076,0.55914,4.08768,0.823675,0.267011,0.461742,-0.2116,-0.0357347,0.463497,0.807149,-0.36583,-0.871212,0.331459,1.18627,-0.100524,0.041129,-0.800443,-0.342116,-0.726212,0.255678,-0.099888,0.3968,0.441246,-0.575811,2.146,0.221583,2.38507,-0.379697,0.494951,0.124075,0.288312,0.273442,1.81015,0.0521124,0.153277,-0.233956,-0.304177,-0.0800712,0.521873,0.759632,0.588321,-0.615661,0.457995,0.89005,-0.0592777,-0.000853208,-0.200479,1.5915,-1.00596,0.720717,-0.519485,-0.164831,0.000381674,0.186035,3.32131,1.03972,3.097,0.662792,0.0765139,0.53355,-0.0164213,0.103003,2.32611,0.754901,0.266993,0.549771,0.458812,0.222311,0.518622,0.160957,1.45882,-0.43739,0.683409,0.264045,-0.66771,1.01391,-0.774042,-0.621737,-0.29469,1.07337,1.17988,-0.626541,0.97492,-1.08749,0.591063,0.745166,1.19978,-0.787637,0.34401,0.644877,0.71379,0.361812,1.06938,1.43914,0.543753,0.0371002,0.292548,0.0824944,0.488173,0.712189,0.879797,-0.758218,-0.381216,-0.872063,-0.107901,0.758992,0.550205,-0.856384,-0.83496,-0.749727,0.654159,-0.748591,0.821992,0.0102571,-0.589774,0.312721,0.0843704,-1.05945,-0.949619,-0.0187957,-0.0244668,-0.130675,2.18928,0.771148,-0.544546,0.827851,-0.07057,0.171402,2.60102,1.13884,0.767354,-0.114399,-0.295417,-0.576881,2.3616,1.32204,1.91995,0.0156592,-0.0364726,0.71845,-0.808422,-0.0155757,-1.18875,0.804944,1.57878,-0.490477,0.720115,1.3236,1.01986,-0.681514,-0.616248,0.0558807,-0.935876,0 +0.180723,1.20189,1.3769,-0.713801,-0.163793,0.540725,-1.38298,0.662881,-1.19342,0.442649,0.0261165,1.23061,0.371611,2.14684,0.90004,-0.0142089,-0.636723,2.20894,0.0697426,0.511039,-0.536777,-1.38723,-1.44853,0.707921,1.5599,-1.45787,0.980553,-0.0691985,-0.957542,2.48698,-0.363541,-0.971101,-0.480267,2.5351,-1.29902,1.86006,-0.505922,-0.246233,1.12378,0.517832,1.36335,-0.448832,0.248575,1.3233,1.73222,-0.16857,1.54193,-0.212085,0.452473,0.705484,0.77034,-1.34745,-1.49191,-0.425969,1.28626,-0.582795,-0.76173,1.89144,-0.40698,2.42518,-0.895124,-0.274553,0.290186,1.90168,-1.0716,1.13586,-0.145623,1.2885,1.07049,1.5372,1.38317,0.658753,0.221164,2.07206,0.537388,0.236527,-1.02067,1.68574,0.443122,-0.180262,-0.658951,-1.40464,-0.909446,0.904989,1.64043,-1.44901,1.96727,-0.333274,-0.673925,1.87039,-0.237844,-0.510029,-1.0901,0.210672,-1.97601,1.79087,0.403902,-1.3068,1.2234,-0.958969,1.29206,-0.502237,0.159037,0.457715,1.61501,0.820012,-0.296483,-0.598558,0.881129,1.00357,0.178335,-1.08646,-1.2168,-1.43812,1.39761,0.543101,1.20361,-0.870404,-1.01613,1.04684,2.39761,0.964446,1.32883,0.723266,-0.461402,1.0538,2.32365,2.51416,1.06585,-1.2371,-1.55186,-0.330211,1.18323,2.10626,2.53564,1.85312,-0.032662,2.0375,-1.54953,-0.575357,-0.960841,-0.00952972,-1.24877,-1.36924,-0.114399,-0.295417,-0.720161,1.84106,1.9423,0.816153,-1.22426,-1.25377,-1.20423,0.463373,-1.20029,-0.0112764,-0.194711,1.54528,1.14342,0.15599,1.03728,0.471854,-0.344584,-0.241699,-0.133744,-1.47104,0 +0.0148667,1.92658,1.42027,-1.07134,0.219416,1.04059,-1.42052,0.491346,-1.47373,0.635838,0.750821,0.193891,0.265989,2.23095,1.4245,-0.186426,-1.14657,0.542245,0.179993,0.829001,-1.29476,-1.39865,-0.967461,1.41523,1.98641,-1.17829,-1.36892,-0.946305,-0.0105264,2.52087,-0.320692,0.23205,-1.29621,1.07821,-1.07291,2.15361,-0.243839,-1.33807,1.65121,-0.669287,1.964,0.650094,0.326387,1.88579,1.65677,0.359837,2.36133,-1.40654,0.600526,0.630136,-0.672782,-1.42443,-1.32198,-0.80029,0.796541,0.12174,-1.46194,-0.789224,0.645942,1.52091,-0.915259,1.05282,-1.07316,2.11974,-0.753004,1.4538,-0.145623,0.0998167,1.26539,0.0417213,1.83341,2.48208,0.346119,1.66902,0.187078,-0.18139,-1.44259,1.94369,0.0520793,-0.240552,-1.59744,-1.39407,-0.569435,0.6691,1.50867,-1.38267,-0.202765,-0.784035,-1.15855,2.29287,0.0878838,0.114456,-1.17331,0.0380732,-2.03735,2.00241,0.179171,-1.43464,1.77878,-1.38301,1.9707,-1.20039,0.580951,1.43545,2.03688,0.18412,-0.689455,-0.930625,0.764264,1.0304,0.178335,-1.21018,-1.45154,-1.34457,1.38739,0.127158,1.20361,-1.44463,-1.47259,-1.61598,2.68099,1.46555,2.25474,0.12895,0.800177,1.11176,1.07109,2.3126,0.745075,-0.762196,0.133685,1.32154,-1.02302,1.00781,2.21822,1.16479,-1.32486,2.05048,-0.960957,0.250658,-0.170904,-0.797863,-1.40247,-1.44439,-0.154676,-0.311488,-0.218682,0.1456,0.283761,-0.787253,-1.40954,-1.06538,-1.20423,2.33613,0.0863352,1.64355,-0.305783,0.730245,1.25016,1.32998,0.235598,-0.685054,0.413509,-0.428974,-0.926722,-1.60022,0 +-0.427417,0.726309,-0.328979,1.23281,-0.163793,0.68199,0.95371,0.0823022,0.633799,0.166664,0.405193,0.555538,0.688478,-0.0518966,0.244464,-0.499547,0.892807,0.159975,-0.150757,-0.0526191,0.362529,0.669133,0.518508,0.128436,-0.892538,0.331459,0.774839,3.72115,0.609338,-0.808916,2.87155,1.52038,1.47159,-0.59451,1.07513,0.58802,2.14111,0.330356,-0.930449,0.592027,-0.226591,0.779379,0.559825,0.0970652,0.286018,0.123741,0.260687,0.068963,-0.382009,0.102701,0.280709,0.620837,0.49412,1.90448,-0.194278,0.409958,0.836187,1.47613,0.826443,-0.494639,2.0546,1.52236,-1.00141,-0.624753,1.73448,0.227478,-0.145623,0.340998,-1.03239,0.78142,-0.31487,-0.812167,0.621018,0.49654,0.565413,-0.348557,0.667002,-0.272363,0.372024,0.519102,0.874675,0.814508,0.0853994,-0.387274,-0.65024,0.512816,0.554224,1.58609,0.378881,-0.789689,2.25164,1.40649,1.7866,0.277056,-0.227833,0.400736,1.60928,0.551729,-0.843821,0.958848,-0.0104859,0.936384,0.606521,0.469355,0.0764288,-0.214872,-0.214614,0.291382,0.140981,0.185224,0.57539,0.566904,0.977552,0.786249,-0.482354,1.28255,-0.639587,1.28532,0.775897,1.57518,-0.866156,-0.504689,-0.891447,1.3314,1.68226,0.561204,-0.0792109,-0.694582,0.187199,1.69491,0.228378,1.20684,-0.110089,0.438734,-0.194159,-0.500004,0.679574,-0.362894,0.366223,0.128286,-0.170904,0.391099,0.923652,0.617041,1.57722,-0.247205,2.50363,0.591774,0.243309,0.525681,0.999044,1.51413,1.45448,-0.109633,1.28379,1.09194,-0.115373,-0.598378,-0.753214,-0.987507,-1.60828,-0.0152651,0.687265,0.819522,0.0558807,1.48158,0 +1.01,1.34909,1.66603,-0.938919,-0.094119,0.725457,-0.819924,0.742051,-0.300574,1.07741,-0.241467,0.748417,-0.0659663,0.620942,0.414914,-0.311674,-0.273784,-0.207004,0.449492,0.0630032,1.51878,-0.667501,1.14924,1.39819,1.06941,-0.786874,0.839801,-0.429438,-0.320459,1.35163,3.1715,1.58426,-1.66418,1.86961,-0.997541,0.172161,0.175492,-0.14809,0.846178,0.456003,1.54002,0.132952,0.248575,-0.139181,0.248291,-0.528336,2.13786,0.560797,0.29096,0.660275,1.35017,-0.401794,0.0586804,0.467572,0.910429,-0.646844,-0.67196,1.69008,0.495524,1.33569,-0.915259,1.27856,-1.53957,1.35278,-0.802018,0.136639,1.05664,1.32295,0.188307,1.71408,1.64045,0.766008,-0.0162493,0.508754,0.831649,0.236527,-0.69544,-0.471691,0.668269,0.181478,1.01201,-0.760028,1.50841,0.863965,1.38704,-0.757158,1.94204,-0.420518,-1.10842,1.20537,2.12368,1.94484,-1.22086,0.595699,-0.65721,-0.193596,0.454977,-0.756125,1.13084,-0.737312,1.42341,1.06332,0.517025,-0.217389,0.299772,-0.339557,-0.607586,-0.598558,0.777249,-0.0965015,-0.0681126,1.36547,0.783633,0.505605,0.948051,0.989854,1.19531,-1.19988,-0.889338,0.772107,1.45952,0.543066,1.0076,-0.548293,1.95919,1.86514,1.00719,1.25646,0.424297,-0.979,0.379887,0.633312,1.21367,0.756357,0.643826,1.61301,0.191184,1.94668,0.781688,1.19905,1.4748,-0.0483002,-0.931101,-0.961246,-0.154676,-0.295417,0.0678772,1.97491,1.99624,0.723202,-1.19576,-1.10885,-1.21925,0.714937,1.09271,0.794922,5.08918,2.9074,1.96448,0.186483,-1.08146,-0.197935,0.539858,1.44377,0.486847,1.42622,0 +0.733577,-0.81366,-0.11213,1.19308,-0.163793,0.421193,2.13613,1.01915,0.550743,-0.454303,0.683925,0.374715,0.462145,-0.184061,-0.0177667,0.0327593,0.840958,0.343465,0.461742,-0.139336,0.0156542,1.74301,0.807149,-0.255046,-0.689945,0.745242,1.20792,0.10309,1.59079,-0.775025,-0.363541,-0.960453,0.0796916,-0.468606,1.07513,0.636944,2.19353,0.833337,-0.77777,1.977,-0.803682,0.0683094,0.09295,0.322062,0.122534,0.798303,0.111705,0.16733,-0.0186056,-0.530221,-0.0671862,0.752789,1.22693,1.73543,1.46848,0.474007,2.02116,-0.285813,0.88661,-0.74522,-0.68371,-1.01499,0.541329,-0.662349,1.55067,0.000381674,-0.145623,0.668316,1.24488,0.845742,-0.482102,-0.950066,0.658505,-0.0530614,0.0189285,-0.18139,0.746111,0.138017,0.526071,0.555276,0.233756,2.21997,0.160957,1.15113,-0.842818,1.79227,-0.455094,0.815438,1.83275,-0.766218,-0.621737,-0.29469,0.348249,0.542591,-0.65721,1.22676,1.45605,0.856567,-0.627843,2.2406,-0.929932,-0.0791135,0.325245,0.434436,-0.0476507,-0.177466,0.407591,0.490622,0.0890404,0.279133,0.589082,0.488173,0.753014,1.00453,-0.574308,0.00391605,-0.182939,0.202749,1.70572,0.603039,-0.836841,1.22638,0.327346,0.294806,-0.810132,1.02483,-0.360396,-0.686519,0.159305,1.70524,-0.377659,1.25272,0.102929,0.00200183,-0.0671914,-0.419966,0.486253,-0.609422,0.81631,-0.0858666,0.171402,1.83853,2.32753,1.8947,-0.154676,-0.263276,1.57231,0.517412,-0.134246,1.75728,0.0441631,1.23879,0.418031,-1.15782,-0.601563,-1.22057,-0.0360353,0.205495,-0.260581,0.262716,1.3007,0.7966,-0.470933,-0.803522,-0.150983,-0.991238,0 +1.06529,1.32644,1.7094,-1.0581,-0.0592818,0.942788,-1.36421,0.649686,-1.49449,0.59444,0.405193,0.434989,0.205634,2.23095,1.56873,-0.468235,-0.265142,0.312883,0.155493,0.843453,-1.30761,-1.39865,-1.08506,1.45784,2.05039,-0.999357,0.818147,-0.570402,-0.113837,2.52935,3.04295,1.58426,-1.66418,1.17714,-0.984979,0.172161,-0.48845,-0.172626,0.832298,0.468369,1.56357,0.145881,0.373075,1.77329,1.87056,0.24741,2.21235,-1.32222,0.613985,0.49451,-0.750092,-1.44642,-1.31136,-0.256921,0.80793,0.313885,-1.01309,1.63973,0.585775,1.57538,-0.925326,1.26953,-1.57545,2.05959,-0.789765,0.136639,-0.145623,1.34018,0.198565,1.74625,1.66618,0.796652,0.183678,1.81558,0.117016,-0.599308,-1.29316,1.70919,0.135028,-0.047624,-1.58599,-1.37294,-0.733144,0.72038,1.5188,-1.30685,1.92942,-0.304193,-1.17526,2.24593,2.08878,1.96638,-1.23274,-0.187632,-0.68788,-0.0827882,0.158741,-1.2773,1.14627,-1.10353,1.42341,1.08448,0.568166,1.35397,2.09892,-0.0901869,-0.804072,-0.811081,0.751278,1.43287,0.274176,-1.3339,-1.48216,-1.36536,1.40782,0.21959,1.19531,-0.804509,-0.973867,0.719273,2.70054,1.41999,2.2075,-0.575936,1.94893,1.86514,1.07109,2.3126,0.591659,-1.16483,0.379887,0.679194,-0.886083,1.16662,2.15474,1.56498,0.181009,1.94668,-0.972497,0.265955,-0.276229,-0.0483002,-1.3,-1.34776,-0.154676,-0.295417,0.139517,1.98978,1.99624,0.711583,-1.21001,-1.07987,-1.21925,0.742888,1.10544,0.80553,-0.416856,0.652091,1.15984,0.186483,-1.0471,-0.157342,0.560916,1.50619,0.486847,1.44468,0 +0.180723,1.20189,1.42027,-0.925677,-0.163793,2.14898,-1.34545,0.385787,-1.22456,0.732433,0.00381793,-0.348579,-0.0508774,0.681017,0.336244,0.314568,-0.18737,1.59731,0.228993,0.785642,-0.52393,-1.39865,-0.796414,1.22775,1.09074,-0.94344,0.969726,-0.398113,1.36695,1.51262,-0.363541,-0.981748,-0.528263,1.00627,-1.13572,1.86006,1.62568,-0.221698,1.0405,0.530198,1.38691,-0.487618,0.6532,0.513309,0.147685,0.438536,1.73561,0.434325,0.600526,0.389023,-0.376427,-1.39144,-1.29012,0.044951,1.00154,0.12174,-0.743776,1.8411,2.15012,0.87811,-0.895124,-0.274553,0.254309,1.50317,1.1463,1.09044,-0.145623,1.2885,1.06023,1.58544,1.43463,0.674075,-0.266158,-0.126342,-0.26132,-0.0978067,-0.985508,0.677373,-0.125668,0.0367819,-0.979411,-1.39407,-0.393134,0.802428,1.04242,-1.24998,1.96727,-0.696791,-0.456679,1.39314,-0.249477,-0.510029,-1.0901,0.0247964,-2.00668,1.81101,2.19153,-1.32647,1.1617,-0.978244,1.31395,-0.629175,-0.211736,0.23656,0.709234,1.71774,1.57013,1.24773,0.322771,0.0913157,0.109878,-0.816519,-1.28824,-1.30299,1.40782,0.296616,1.22022,-0.75744,-0.830167,1.00458,1.43998,1.02139,1.34773,0.695623,-0.461402,1.08278,0.917719,1.26452,0.45219,-0.101461,-1.45716,0.438313,0.468103,-0.0244668,0.681916,1.78909,0.018212,2.01155,-0.822468,0.327141,-0.0524135,0.00339378,-1.25901,-1.36924,-0.154676,-0.295417,-0.361962,1.88568,1.95579,0.816153,-1.22426,-0.166897,-1.18921,0.449397,-1.26398,-0.0431001,-0.226446,1.2215,1.97269,0.171236,1.00293,0.390668,-0.323526,-0.304124,-0.168222,-1.45259,0 +-0.15099,0.103527,-0.907243,1.45793,-0.163793,1.33398,2.06106,0.108692,0.561125,-0.619894,0.494387,0.483209,0.235811,0.00817826,0.388691,-0.436922,0.694054,-0.329331,0.388242,1.55164,0.362529,1.52595,0.486437,-0.655573,-0.604643,2.12079,0.601606,-0.0378732,2.00403,-0.580151,2.25024,1.44585,0.351671,-0.576524,0.371676,0.343397,-0.549602,0.93148,-0.916569,0.369442,-0.603467,1.07674,-0.109363,0.355811,0.235715,0.449779,-0.290546,0.392168,0.183285,-0.424734,0.113204,0.752789,1.7261,0.63662,0.842096,0.538056,1.67105,-0.436836,1.8192,-0.875958,1.94386,1.46818,-1.36018,-0.173604,0.913485,0.409154,-0.145623,0.0309077,-1.03239,-0.40853,-0.868021,-0.704912,0.446082,0.130139,0.173065,-0.682891,0.464833,0.149742,0.549771,2.3278,0.9319,2.07202,0.17355,0.966525,-0.903632,2.17136,0.13788,0.85906,1.4484,0.634233,1.78632,1.23422,1.38243,0.0646268,-0.258503,-0.818148,1.08831,0.787733,-0.859248,1.60454,-0.0871064,1.06332,0.338031,0.446076,0.163284,-0.202403,-0.738576,0.410926,0.855159,0.654767,2.10884,0.589399,0.936727,1.08768,-0.53344,0.21959,-0.672798,1.50183,1.7649,0.592472,-0.758667,1.32888,1.10208,0.667981,1.41558,-0.250134,-0.692706,-0.50109,-0.286996,0.311498,0.266255,-0.789031,-0.201383,-0.236216,-0.410003,0.236349,0.994993,0.13016,0.897095,-0.0246802,-0.0787447,0.636645,1.55898,1.11093,-0.154676,3.89903,-0.147042,-0.553405,-0.174698,0.455968,0.072667,0.775058,0.86866,0.323615,1.37296,1.21924,-0.321651,-0.464399,-0.884583,-0.0574631,-0.531731,0.370371,0.223986,0.382549,0.297222,1.0756,0 +0.0701521,2.01717,1.36244,-0.88595,0.0452298,0.768923,-1.43929,0.662881,-1.21418,0.994619,0.0595644,1.47171,0.100011,2.09878,0.926263,0.455473,-1.23298,2.10191,0.0697426,0.0630032,-0.0999709,-1.39865,-1.05298,1.34706,1.06941,-1.65917,-1.26065,-1.00895,-0.389333,1.38552,-0.299267,0.23205,-1.24821,1.90558,-1.09803,2.20253,0.262853,-1.35034,1.67897,-0.644556,1.97578,0.611308,0.2797,1.13205,1.85798,-0.179812,2.13786,-0.465028,0.250582,0.735623,1.13112,-1.31446,-1.47067,-0.0757978,0.944595,-1.49549,-1.47092,-0.764053,0.510566,1.22674,-0.905191,1.09796,-1.00141,1.3603,-0.838779,1.59005,5.57548,0.117044,1.26539,0.0256408,1.82055,2.43611,0.121201,2.15756,0.887699,0.738028,-1.38106,1.41606,0.810466,0.0608979,-0.430052,-1.4152,-0.544249,0.874221,1.41744,-1.48692,0.100031,-0.958523,-1.07499,1.20537,0.308913,0.0283199,-1.14953,0.75502,-2.06802,1.99234,0.465192,-1.4248,1.74793,-1.39265,2.01448,-1.15808,0.542595,0.387877,1.57779,0.558174,-0.312857,-1.27597,0.790234,1.24505,0.246793,-0.535336,-0.890199,-1.26141,1.11153,0.897422,1.18701,-1.60467,-1.54022,-1.63712,1.47907,0.565843,0.979258,0.267163,0.78992,1.14073,0.879376,1.28871,0.535872,-0.834464,0.0389913,1.20684,1.42668,2.2386,2.47216,1.27685,-1.31469,2.05048,-1.6534,-1.2637,-0.987172,-0.810787,-1.41272,-1.43366,-0.154676,-0.295417,-0.576881,0.175345,0.37815,-0.740777,-1.40954,-1.13784,-1.20423,2.32215,0.0735963,1.65416,5.10504,2.98555,1.9809,1.2385,0.304314,-0.563274,0.371393,-0.428974,-0.857767,-1.65558,0 +-0.26156,0.0242642,-0.0976732,1.51089,-0.163793,1.20358,2.13613,0.992755,0.550743,-0.440503,0.672776,0.36266,0.477233,-0.196076,-0.0308782,0.0014472,0.832317,0.328174,0.473992,-0.124883,0.0156542,1.73159,0.807149,0.222176,-0.849887,0.745242,1.20792,0.150078,1.2292,-0.79197,-0.21357,1.45649,-0.224286,-0.288744,0.409361,0.343397,2.06249,0.82107,-0.930449,1.96463,-0.2737,1.05088,0.124075,0.310812,0.13511,0.78706,0.0670106,0.153277,-0.0186056,-0.515151,-0.0800712,0.752789,1.21631,1.74751,1.12681,0.474007,2.01218,-0.147375,1.30778,-0.723431,0.061271,1.43206,-2.04186,-0.226238,1.62419,0.272897,-0.145623,0.651089,-1.03239,0.829662,-0.199094,-0.490403,0.658505,-0.0530614,0.032941,-0.264974,0.746111,0.114566,0.526071,0.567334,0.222311,2.2094,0.148364,1.65368,-0.832682,1.79227,-0.265847,0.815438,1.51524,-0.492387,1.71652,1.34189,0.3007,0.542591,-0.411852,-0.687193,1.78293,0.846734,-0.766686,2.23097,-0.316968,1.14795,0.338031,0.434436,-0.0476507,-0.202403,0.407591,0.503905,0.0890404,0.279133,0.57539,0.488173,0.732602,0.994134,-0.564091,0.0193213,-0.299176,0.212162,1.70572,0.592472,-0.836841,0.33807,-0.447391,-0.631221,1.45661,-0.163205,-0.334834,-0.565587,0.173252,1.3439,0.304132,0.885663,0.102929,0.00200183,-0.0671914,-0.435974,0.486253,-0.726198,0.81631,-0.07057,0.171402,1.82561,2.31728,1.88397,-0.154676,-0.263276,1.64395,0.502539,-0.134246,1.75728,0.115423,1.28226,0.387989,0.197833,1.37296,1.15559,-0.0519028,0.272484,0.182788,-0.301409,-0.554636,0.410964,0.350335,0.694673,0.331699,1.20478,0 +1.01,1.34909,1.65158,-0.356261,-0.128956,0.508126,-1.38298,0.781636,-1.07922,0.511645,-0.0965258,1.45966,0.190545,2.09878,0.952486,-0.296018,-0.368839,1.96429,0.143243,0.40987,-0.215596,-1.38723,-1.2561,1.23627,2.48757,-1.53616,0.839801,-0.492089,-0.819794,1.19912,3.34289,1.58426,-1.64818,1.33002,-0.997541,0.196623,-0.444769,-0.160358,0.860058,0.456003,1.54002,0.107095,0.108512,1.1433,1.88313,-0.449637,2.09316,-0.338557,0.371716,0.795901,1.0667,-1.32546,-1.47067,-0.148247,2.07208,-0.790954,-1.04002,1.71525,-0.452106,0.932584,-0.915259,1.27856,-1.50369,1.27759,-1.19413,0.136639,-0.145623,1.32295,0.208823,1.698,1.62759,0.766008,0.121201,2.14535,0.649488,-0.18139,-0.950348,1.39261,0.834166,-0.07174,-0.464387,-1.3835,-0.695365,0.453723,1.235,-1.43953,1.94204,-0.333274,-0.0723216,1.14278,2.17021,1.94484,-1.22086,0.104457,-0.68788,-0.133155,-0.12728,-1.26747,1.13084,-1.10353,1.42341,1.02101,0.171822,0.329678,1.62742,0.583111,-0.263735,-1.05017,0.881129,1.32554,0.21941,-0.704046,-0.982055,-1.31339,1.38739,0.758775,2.52374,-1.05868,-1.22746,0.793241,1.2934,1.10111,0.92257,-0.506829,1.9797,1.89412,0.470379,1.27258,0.340615,-1.20613,0.360948,0.610371,1.27453,2.18566,2.43407,1.62902,0.170834,1.97263,-1.59569,-0.942476,-1.00034,-0.0612237,-1.3,-1.34776,-0.154676,-0.295417,-0.290322,1.97491,1.99624,0.723202,-1.21001,-1.23928,-1.21925,0.700961,1.07997,0.794922,-0.321651,0.339474,1.36511,0.186483,-1.09291,-0.279121,0.539858,1.44377,0.469608,1.42622,0 +0.512436,-0.824983,-0.863873,1.70953,-0.163793,1.55131,0.634643,0.214252,1.6097,-0.730288,0.472088,0.266221,0.100011,0.0682531,0.388691,-0.436922,1.29031,-0.237586,0.571992,1.63836,0.144127,1.25177,0.700245,-0.229481,-0.860549,0.443292,0.634087,0.76092,1.57357,-0.758079,-0.363541,-0.917864,0.0636927,-0.441627,0.346553,0.734793,1.45096,1.61848,-0.264214,0.394174,-0.909678,0.0553809,-0.296113,0.400811,0.122534,0.416051,0.111705,0.46243,0.250582,-0.439803,-0.157381,1.68745,0.600325,0.721144,0.18155,0.153764,0.719485,-0.310983,1.77407,-0.995802,1.37002,-1.01499,0.469574,0.570792,1.29335,-0.0450375,-0.145623,0.0136805,1.16281,-0.360289,-0.919477,-0.98071,0.371109,-0.126342,0.103003,-0.682891,1.88001,0.255268,0.526071,2.33986,0.668665,0.803941,0.198736,1.55112,-0.903632,0.617067,-0.341546,0.0884048,1.33142,0.610762,-0.621737,-0.251622,0.93072,-0.0681412,-1.02525,1.2469,1.70121,2.23326,-0.766686,0.66973,-0.929932,0.0266675,0.28689,0.434436,0.225324,-0.177466,-0.361978,0.33123,0.842174,0.493781,2.04039,0.623141,0.926521,0.848615,-0.27801,0.234995,-0.706009,0.814634,0.775897,0.708706,-0.866156,0.611398,0.809194,0.626517,-0.748591,1.0538,-0.884424,-0.509152,-0.482252,0.507654,-0.983696,-0.169624,-0.125305,-0.500902,-0.283036,0.524487,2.01247,0.10421,0.389304,-0.11646,0.145071,0.610798,0.964641,1.90544,-0.114399,-0.295417,-0.0754024,-0.627768,-0.525285,0.525681,0.115423,0.890991,0.688408,-1.17179,-0.563347,-1.23118,-0.337518,-0.341585,0.823211,0.186483,1.3007,0.837194,-0.449874,-0.678673,-0.168222,-1.12042,0 +0.788863,-0.81366,-0.459088,1.19308,0.463276,0.43206,0.578337,0.702466,0.924492,-0.550897,0.639328,0.00101302,0.371611,-0.111971,0.0215679,-0.045521,1.40265,-0.00822363,0.596492,-0.0381663,-0.0228875,0.577739,0.764387,-0.0420005,-0.679282,0.286725,0.850628,-0.633052,1.59079,-0.834334,-0.363541,-0.971101,0.0796916,-0.585517,1.05,0.612482,2.19353,0.747463,-0.500172,1.17322,-0.72124,0.0424523,-0.0159875,0.378311,-0.103829,0.708361,2.97216,0.195435,0.371716,-0.54529,-0.0800712,0.697809,0.833975,1.91656,1.46848,0.313885,0.809256,-0.524933,0.88661,-0.821484,-0.713912,-1.01499,0.577207,-0.730022,1.53842,0.000381674,-0.145623,0.564953,1.26539,0.829662,-0.597878,-0.965388,0.583532,-0.236262,0.00491612,0.236527,0.96586,0.220093,0.348324,0.627624,0.0735267,0.603161,-0.0657163,1.15113,-0.852954,0.389609,-0.0135176,0.495543,1.84947,-0.820984,-0.621737,-0.316224,0.348249,0.369993,-0.626541,1.22676,1.46627,0.58123,-0.874676,0.94921,-0.864257,-0.10027,0.325245,0.446076,0.014389,0.0344979,0.997049,0.636732,0.0630703,0.0779002,0.465858,0.218236,0.528476,0.83822,-0.421051,0.0347266,-0.15803,0.0897854,0.564573,0.518504,-0.846612,1.22638,0.327346,0.267163,-0.830645,0.99585,-0.552114,-0.775203,-0.0359514,1.69491,-0.377659,1.25272,0.255085,0.160813,-0.0164044,-0.00376651,0.64905,1.03842,1.0125,0.0823959,0.184567,1.15359,0.933899,0.713671,-0.114399,-0.231134,2.14543,0.517412,0.21634,1.04853,0.0441631,1.2243,0.418031,-1.15782,-0.627041,-1.22057,-0.0995054,0.0156918,-0.334476,0.277963,1.3007,0.776304,-0.491991,-0.865947,-0.150983,-0.972784,0 +-0.372131,0.205437,-0.83496,1.23281,0.498113,0.692857,0.587722,0.0954972,0.789528,0.290857,0.271401,0.495264,0.688478,0.0201932,0.283798,-0.32733,1.29031,0.0376488,-0.310007,-0.0670718,0.426766,0.49777,0.31539,0.0858271,-0.892538,0.432109,0.796493,0.666944,0.626557,-0.817388,2.89298,1.52038,1.47159,-0.684441,1.07513,0.58802,2.14111,0.342624,-0.916569,0.629124,-0.615244,0.766451,0.637637,-0.0154331,0.286018,-0.16857,2.00378,0.504587,-0.166659,0.298605,0.242054,0.719801,0.28171,2.03731,-0.194278,0.0897152,0.782325,0.104331,0.826443,-0.42927,2.06467,1.52236,-1.00141,-0.65483,1.73448,0.227478,0.0202061,-0.124138,-1.03239,-0.151244,-0.816565,-0.842811,0.558541,0.56982,0.649488,2.07536,0.649422,-0.319264,0.194277,0.41058,1.0349,0.455218,-0.0783093,-0.428298,-0.569154,0.503338,0.0621812,0.321055,0.378881,-0.797513,2.25164,1.42803,1.7866,0.144288,-0.258503,0.390662,1.60928,1.0434,-0.843821,0.717916,-0.174673,0.936384,0.632092,0.422796,0.0888367,0.0469664,3.38763,0.822689,0.244861,0.144978,0.479549,0.375699,0.906108,0.484817,-0.574308,0.912828,-0.747522,0.67343,0.767445,0.814374,-0.866156,-0.504689,-0.891447,1.3314,1.68226,0.590181,-0.0408675,-0.702644,0.159305,1.69491,0.228378,1.20684,0.0420666,0.571077,-0.0417979,0.252356,0.710099,0.285861,0.423926,0.311845,-0.131407,0.391099,0.605987,0.724408,-0.154676,-0.295417,-0.0754024,-0.196466,-0.134246,0.734821,0.984792,1.52862,1.45448,-0.389149,1.28379,1.08133,-0.0519028,-0.765851,-0.777846,-1.00275,-1.61973,-0.0152651,0.687265,0.819522,0.0731194,1.46313,0 +0.401865,-0.768367,-0.849417,1.68304,0.428439,1.55131,0.568953,1.79765,0.737618,0.318455,0.204505,0.507319,0.673389,-0.0278667,0.310021,-0.374298,1.28167,0.0376488,0.412742,0.14972,0.426766,0.520618,0.368842,-0.357308,-0.860549,0.420925,0.80732,0.792245,1.64245,-0.402224,-0.363541,-0.864627,0.0476939,-0.369682,0.333991,0.734793,1.39854,0.318088,-0.416893,0.616758,-0.803682,0.107095,0.637637,-0.0941819,0.374048,-0.247269,1.89949,0.378116,1.69074,0.328744,0.242054,0.763785,0.324192,0.286449,0.18155,0.281861,0.773348,-0.210301,1.80416,-0.331217,1.40022,-1.00596,0.433696,0.510639,1.31785,-0.0450375,-0.0212512,-0.158592,1.13204,-0.151244,-0.816565,-0.965388,0.53355,0.557607,0.649488,1.74103,0.684582,-0.366164,0.300925,1.83342,0.977679,0.434083,-0.0531233,1.56138,-0.538747,0.484383,0.0243318,0.524625,1.298,0.595114,-0.621737,-0.230088,0.895058,0.117734,-1.08659,1.22676,1.68078,1.06307,-0.859248,0.708279,-0.842366,0.0689799,0.606521,0.376237,0.0516129,-0.06525,3.37125,0.968799,0.465607,0.788922,2.05408,0.49942,0.926521,0.588759,-0.707132,-0.85878,-0.822247,0.682843,0.767445,0.846074,-0.71958,0.656953,0.818642,0.667981,-0.65628,1.11176,-0.0153052,-0.267287,0.159305,0.487006,-1.02157,-0.215506,-0.0644424,0.491671,-0.117978,0.188326,0.638875,0.220986,0.354682,0.311845,-0.170904,0.365252,0.59574,0.745881,-0.154676,-0.295417,-0.505242,-0.181594,-0.120762,0.734821,0.129675,0.934466,0.628324,-1.15782,-0.486913,-1.22057,-0.13124,-0.83284,0.650789,0.216976,1.3007,0.877787,-0.407758,-0.678673,-0.202699,-1.17578,0 +0.0148667,1.9379,1.42027,-0.899192,0.184579,1.06232,-1.42052,0.544126,-1.4322,0.925623,0.527835,0.36266,-0.00561078,2.21893,1.17538,-0.0142089,-1.06015,1.33737,0.155493,0.698926,-1.24337,-1.39865,-1.12782,1.25332,2.05039,-1.23421,-1.35809,-0.946305,-0.19993,1.07203,-0.320692,0.23205,-1.29621,0.709494,-1.08547,2.15361,-0.470978,-1.33807,1.65121,-0.669287,1.964,0.650094,0.139637,1.79579,1.61904,0.314867,2.33154,-1.02712,0.600526,0.81097,-0.556817,-1.42443,-1.35384,-0.631242,0.887651,0.0576909,-1.46194,-0.789224,0.676025,1.04153,-0.915259,1.06185,-1.07316,1.30767,-0.924554,1.4538,-0.145623,0.0998167,1.26539,0.0417213,1.83341,2.48208,0.196173,1.75452,0.355227,-0.0978067,-1.40743,1.99059,0.0876287,-0.349074,-1.51732,-1.40464,-0.670179,0.77166,1.3769,-1.40162,-0.164915,-0.769494,-1.19197,1.30708,0.11115,0.0929218,-1.17331,0.303609,-2.03735,1.99234,0.516267,-1.43464,1.77878,-1.38301,1.98165,-1.20039,0.389172,1.20266,1.9004,0.408552,-0.689455,-0.571992,0.842174,0.923078,0.123569,-1.30016,-1.46175,-1.37575,1.35674,0.635533,2.37429,-1.45405,-1.4895,-1.61598,1.18591,1.04417,1.29104,0.156593,0.800177,1.14073,0.751564,0.974284,0.759022,-0.865436,0.114746,1.31007,-0.749143,1.3519,2.35789,1.1808,-1.31469,2.05048,-1.09944,0.174175,-0.276229,-0.797863,-1.40247,-1.43366,-0.154676,-0.311488,-0.290322,0.1456,0.297245,-0.787253,-1.40954,-1.16682,-1.20423,2.33613,0.0863352,1.64355,-0.289916,0.227825,1.30763,1.31473,0.24705,-0.664758,0.392451,-0.428974,-0.909483,-1.61867,0 +-0.427417,0.0129409,-0.444632,1.23281,0.428439,0.692857,0.568953,0.715661,0.945256,-0.537098,0.628179,-0.0110419,0.371611,-0.111971,0.0346794,-0.108145,1.41993,-0.0388052,0.608742,-0.0815246,-0.0357347,0.577739,0.753697,-0.493658,-0.892538,0.286725,0.850628,-0.633052,0.609338,-0.851279,2.78586,1.52038,1.48759,-0.576524,1.06257,0.58802,2.14985,0.75973,-0.861049,1.17322,-0.285478,0.792308,-0.000425026,0.367061,-0.116405,0.674633,2.95726,0.209487,0.398635,-0.54529,-0.0800712,0.697809,0.844596,1.92863,-0.194278,0.313885,0.809256,-0.524933,0.826443,-0.821484,2.0546,1.51333,-1.00141,-0.677388,1.73448,0.182058,-0.145623,0.599407,-0.704135,0.845742,-0.44351,-0.827489,0.583532,-0.248475,0.032941,0.152944,0.96586,0.196642,0.336474,0.65174,0.0849717,0.603161,-0.0657163,-0.848796,-0.86309,0.389609,0.0495647,0.553706,0.378881,-0.797513,2.21674,1.42803,1.79848,0.343439,-0.227833,0.420883,1.60928,0.571396,-0.859248,0.94921,-0.0761606,0.978696,0.338031,0.457715,0.026797,0.00956091,0.947927,0.623449,0.0500852,0.0779002,0.452166,0.206989,0.538682,0.83822,-0.461919,0.0501319,-0.872063,0.0803718,0.55612,0.507938,-0.866156,-0.504689,-0.891447,1.3314,1.672,0.561204,-0.539333,-0.775203,-0.0498983,1.69491,0.228378,1.21831,0.239869,0.160813,-0.0164044,0.0122412,0.659225,1.02544,1.0125,0.0976925,0.184567,1.16651,0.933899,0.713671,-0.114399,-0.215064,2.28871,0.547156,0.229825,1.04853,1.0133,1.49964,1.4695,-0.193488,1.29653,1.08133,-0.115373,-0.0512975,-0.408371,-0.97226,-1.50521,0.0253282,0.687265,0.819522,0.0731194,1.50004,0 +-0.15099,0.21676,-0.690394,1.43144,0.219416,1.31225,0.5408,1.09831,0.664944,-0.0955221,0.527835,0.422935,0.582856,-0.232121,0.0871255,0.11104,1.05699,0.312883,0.437242,-0.428391,0.131279,0.577739,0.689555,-0.382874,-0.732596,0.376192,0.926417,0.385017,2.02125,-0.402224,2.46449,1.45649,0.303675,-0.387668,0.384238,0.318935,-0.558338,0.293552,-0.916569,0.876441,-0.285478,1.05088,0.357512,0.209564,0.160261,0.449779,0.931106,0.265697,-0.0589837,-0.274038,-0.0285311,0.796774,0.557843,1.57846,0.876262,0.602104,0.818233,-0.071863,1.8192,-0.516429,1.94386,1.48624,-1.36018,-0.113451,0.901231,0.454574,0.0202061,-0.10691,-1.03239,0.315088,-0.597878,-0.720235,0.633514,0.0080054,0.327202,2.15895,0.798851,-0.131662,0.537921,0.675855,0.63433,0.48692,0.186143,1.00755,-0.761732,0.370654,0.264045,1.42615,1.48182,0.610762,1.87938,1.23422,1.33488,0.409823,-0.289173,-0.878588,1.05766,0.964736,-0.936384,0.804651,0.0223515,1.04216,0.478669,0.446076,0.0019811,0.0719033,3.74785,1.47354,0.0241151,0.225471,0.493241,0.578151,0.926521,0.879797,-0.778652,0.0347266,-0.764128,0.456917,0.72518,0.867208,-0.582775,1.34027,1.09263,0.654159,1.44635,-0.221158,-0.18146,-0.331785,0.187199,0.259878,0.266255,-0.811972,-0.0187957,-0.0244668,-0.0798881,-0.32392,0.465904,0.143135,0.493171,0.00591297,0.0397458,0.675416,0.677718,0.681461,-0.0741224,4.10795,3.07675,0.249707,0.202856,0.932342,0.0441631,0.789549,0.793555,0.295664,1.36022,1.22984,-0.0836379,-0.274596,-0.84353,-0.179436,-0.646258,0.309481,0.202928,0.320124,0.279983,1.03869,0 +-0.26156,-0.00970569,-0.603655,1.52414,-0.0244446,1.20358,0.60649,0.92678,0.799909,0.0700689,0.472088,0.507319,0.673389,-0.208091,0.323133,-0.436922,1.28167,0.25172,0.388242,0.626662,0.0156542,0.589163,0.796459,-0.732269,-0.849887,0.219625,0.893936,-0.445101,1.2292,-0.775025,-0.21357,1.45649,-0.224286,-0.378675,0.3968,0.343397,2.06249,0.673855,-0.333613,1.02483,-0.309032,1.05088,0.497575,0.164564,0.248291,0.281139,2.85297,-0.0856134,0.627444,-0.0329251,0.035894,0.774781,0.664048,0.0208013,1.12681,0.474007,0.836187,-0.386495,1.32282,-0.538219,0.091473,1.44109,-2.04186,-0.226238,1.62419,0.272897,-0.145623,0.375453,-0.498976,0.540214,-0.546422,-0.750879,0.646009,0.203419,0.481338,-0.264974,0.95707,-0.237188,0.537921,2.13487,0.290981,0.560891,0.211329,1.66394,-0.690783,0.389609,0.125264,-0.0570018,1.51524,-0.468915,1.72815,1.34189,0.312587,0.343439,-0.381182,-0.697267,1.78293,0.758232,-0.79754,0.891387,-0.0652148,1.12679,0.580951,0.480995,0.0392049,-0.563989,-0.149119,0.477339,0.569488,0.668183,2.05408,0.555657,0.804046,0.890192,-0.850172,-0.242568,-0.490139,0.240403,0.674462,0.708706,-0.856384,0.326682,-0.447391,-0.631221,1.45661,-0.192182,-0.104773,-0.517214,0.215093,1.3439,0.304132,0.874193,-0.155736,0.0152361,-0.206856,0.508479,0.92377,1.64825,0.689362,-0.11646,0.0924082,0.908039,0.831427,0.670725,-0.154676,-0.295417,-0.648521,0.353815,0.175888,0.990437,0.129675,1.28226,0.40301,0.100003,1.37296,1.15559,-0.0995054,-0.430904,0.0103667,-0.209929,-0.554636,0.410964,0.329277,0.694673,0.331699,1.20478,0 +-0.15099,-0.0436756,0.928746,1.45793,-0.163793,1.33398,0.615875,0.108692,0.685708,-0.68889,0.505536,0.434989,0.160367,0.0201932,0.401802,-0.389954,0.365681,-0.283458,0.449492,1.63836,0.259752,0.474921,0.58265,-0.621485,-0.540666,0.588675,0.525817,0.839233,2.00403,-0.60557,2.01458,1.42455,0.36767,-0.585517,0.371676,0.294472,-0.549602,2.40362,-0.222574,1.32161,-0.485693,1.12845,-0.2183,0.378311,0.197988,0.472265,0.513956,0.378116,0.169826,-0.439803,0.023009,0.609841,0.547222,0.672845,0.842096,0.2018,0.6746,-0.15996,1.8192,-0.930433,1.94386,1.44109,-1.28843,-0.158566,0.888978,0.454574,-0.145623,3.09736,-1.03239,2.05177,-0.0318627,0.336989,0.421091,0.0446455,0.131028,-0.682891,0.842801,0.220093,0.549771,2.3278,0.828895,0.476353,0.198736,0.966525,-0.913768,0.664454,-0.265847,0.306515,1.4484,0.642057,1.64672,1.21269,1.38243,0.0380732,-0.197163,-0.798001,1.08831,0.797566,0.745166,0.689004,-0.327914,1.08448,0.299675,0.422796,0.163284,-0.152529,-0.591212,0.384361,0.933069,0.641352,2.13623,0.611893,0.936727,0.765461,-0.390399,0.204185,-0.697706,0.899357,0.78435,0.655873,-0.768438,1.32888,1.10208,0.640338,1.3643,-0.337064,-0.769393,-0.517214,-0.370677,0.311498,0.285194,-0.789031,-0.216598,-0.328856,-0.359216,2.92564,1.70723,1.32387,0.250816,-0.0858666,0.00024893,2.14869,0.759696,0.745881,-0.114399,3.86689,-0.0754024,0.472794,-0.457864,0.676727,0.072667,0.746075,0.883681,0.547227,1.37296,1.22984,-0.305783,-0.453234,-0.884583,0.201729,-0.382846,0.431261,0.18187,0.320124,0.31446,1.02024,0 +1.06529,1.33777,1.65158,-0.316534,-0.094119,0.660257,-1.31729,1.1247,-1.29724,0.925623,-0.297213,0.0974522,-0.0357885,0.272508,0.323133,-0.624795,-0.30835,0.572827,-0.346757,0.14972,-0.15136,-1.39865,-0.95677,1.30445,2.60486,-0.0487743,0.839801,0.588631,-0.888668,1.13982,3.1715,1.58426,-1.66418,1.25807,-0.997541,0.196623,-0.401089,-0.160358,0.846178,0.468369,1.54002,0.132952,0.139637,-0.24043,0.185412,-0.730705,2.13786,-0.394766,0.304419,0.780831,0.113204,-1.39144,-1.2795,0.600395,2.10625,1.69093,-0.788662,1.69008,-0.226479,1.12869,-0.915259,1.26953,-1.53957,1.30015,-1.10836,0.136639,-0.145623,1.32295,0.198565,1.71408,1.62759,0.766008,0.00874156,0.362193,0.803624,-0.348557,-1.05583,0.079391,-0.161217,0.0729559,-0.796291,-1.3835,-0.367948,0.515259,1.39717,-1.12678,1.94204,2.42945,-0.356412,1.16625,2.11205,1.96638,-1.23274,0.170841,-0.71855,-0.0324212,0.158741,-1.2773,1.13084,-1.09389,1.41247,1.06332,0.401957,-0.345426,0.0392049,0.0469664,-0.705829,-0.678254,0.816204,0.0510691,0.3974,-0.692799,-1.20659,-1.33417,1.24435,0.943638,2.52374,0.0521309,-0.601937,0.772107,1.30318,1.22638,0.979258,-0.548293,1.95919,1.89412,0.470379,1.21615,0.187199,-1.10289,0.360948,0.656253,0.361594,0.478437,0.567646,1.61301,0.170834,1.95965,-0.84555,0.265955,-0.486879,-0.0353767,-1.3,-1.34776,-0.154676,-0.295417,0.282797,1.97491,1.99624,0.723202,-1.21001,-1.22478,-1.21925,0.700961,1.09271,0.784314,-0.385121,-0.732356,1.439,0.186483,-1.08146,-0.218231,0.581974,1.44377,0.469608,1.44468,0 +0.180723,1.19056,1.39136,0.0939753,-0.163793,1.08405,-1.29852,1.21707,-1.45297,1.18781,-0.107675,-0.553512,-0.186677,0.308553,0.401802,0.0640714,-0.662647,0.542245,0.216743,0.265342,-1.05067,-1.38723,-0.625367,2.04585,1.14405,-0.921074,0.980553,1.13682,0.0583475,1.04662,-0.363541,-0.981748,-0.496266,0.682514,-1.28646,1.86006,-0.514658,-0.233965,1.09602,0.530198,1.36335,-0.461761,0.2797,0.209564,-0.0786774,0.0450417,1.63132,-1.32222,0.748579,0.720553,-0.762977,-1.40243,-1.20516,0.721144,0.921817,0.105727,-0.67196,1.86627,0.796359,1.30301,0.151877,-0.283582,0.290186,1.25504,-0.924554,1.13586,-0.145623,1.2885,1.07049,1.55328,1.39604,0.658753,-0.391113,-0.0164213,0.789612,0.0693602,-1.3459,0.630473,-0.481161,-0.264668,-1.49443,-1.39407,-0.770923,1.92034,1.35663,-1.13625,1.96727,2.2695,-0.690636,1.30708,-0.237844,-0.531563,-0.971226,0.529315,-1.97601,1.80094,0.465192,-1.31663,1.19255,-0.958969,1.29206,-0.54455,0.427528,-0.0427931,0.0640208,0.944697,-0.149119,-0.877494,0.855159,0.0376536,0.342634,-0.962735,-1.35969,-1.21984,0.968485,0.21959,1.27003,-0.475032,-0.813261,1.03628,1.14683,1.13528,1.34773,0.709445,-0.481916,1.0538,0.904938,0.877538,0.717182,-1.22678,-1.55186,-0.31874,-0.460047,-0.077404,0.593039,1.83712,-0.0123124,2.02453,-0.568573,-0.192943,-0.473713,0.00339378,-1.24877,-1.36924,-0.0338459,-0.0864981,3.29167,1.85593,1.9423,0.816153,-1.22426,-1.15233,-1.20423,0.449397,-1.22577,-0.0324922,-0.258181,-0.531388,1.15163,0.15599,1.02583,0.451558,-0.344584,-0.241699,-0.133744,-1.45259,0 +0.180723,1.17924,1.39136,-0.475441,-0.163793,0.866722,-0.697928,-0.247572,-0.477067,0.677236,0.382894,0.700197,0.024567,0.296538,0.0215679,0.455473,-0.835476,0.0376488,0.559742,0.800095,1.42885,-0.667501,1.192,2.31855,1.19737,-0.462557,0.980553,-0.3198,-0.802576,1.12287,-0.363541,-0.992395,-0.480267,1.11418,-1.28646,1.86006,-0.383617,-0.233965,1.08214,0.542563,1.36335,-0.474689,0.575387,0.44581,-0.103829,0.528478,1.67602,0.223539,0.694741,0.46437,1.27286,-0.489762,0.164885,-0.317295,0.659877,-0.118443,-0.465487,1.8411,0.164606,0.780056,-0.57297,-0.292612,0.290186,1.35278,-1.04709,1.09044,-0.145623,1.2885,1.07049,1.56936,1.4089,0.658753,0.00874156,0.142352,-0.0791584,0.0693602,-0.932768,0.712549,0.668269,-0.180262,0.897565,-0.696624,1.50841,0.781916,1.01202,-0.586564,1.95465,-0.318734,-0.757481,1.24449,-0.249477,-0.531563,-1.10198,-0.121248,-1.94534,1.80094,0.414117,-0.85446,1.17712,-0.592753,1.29206,-0.565706,-0.186165,0.166722,0.113653,0.907292,-0.296483,-1.43537,0.608443,-0.136748,0.301559,1.35422,0.742808,0.526393,1.40782,0.296616,1.44439,-0.7292,-0.635749,1.02571,1.01979,0.611398,1.07374,0.709445,-0.5332,1.0538,0.994406,1.15971,0.647447,-1.22678,-1.55186,-0.30727,0.985432,0.557842,0.364498,1.82111,-0.0123124,2.02453,0.908635,1.3979,1.54063,0.0163173,-0.879865,-0.971982,-0.154676,0.508117,-0.0037626,1.85593,1.9423,0.827772,-1.21001,-1.23928,-1.20423,0.449397,-1.23851,-0.0431001,-0.258181,0.596267,1.48826,0.15599,1.02583,0.451558,-0.365642,-0.304124,-0.133744,-1.45259,0 +0.346579,-0.836307,-0.690394,1.70953,-0.163793,-0.458998,0.634643,-0.0628424,1.51626,-0.233515,0.91806,0.495264,-0.141411,0.0201932,0.755813,3.28922,1.1002,-0.0235144,0.277992,-0.0526191,0.285446,1.37743,0.58265,-0.391396,-0.892538,0.599858,0.493336,0.901883,0.0239105,-0.859752,-0.342116,-0.896569,0.335673,-0.801352,1.74089,0.979416,1.76546,1.90064,-0.361373,0.25815,-0.933233,-0.603975,-0.0782375,0.490809,0.361472,1.59654,0.0521124,0.434325,-0.13974,-0.54529,0.113204,1.72044,0.547222,0.793593,-0.786492,0.185788,0.656646,-0.323568,-0.121187,-0.45106,1.80292,-1.00596,-0.0327119,-0.993192,1.4894,-0.0904567,-0.0627085,0.496044,1.18333,-0.247726,-0.958069,-0.98071,0.246155,0.227846,0.0749782,1.23953,1.79212,1.04085,0.514221,0.458812,0.84034,0.867345,0.17355,1.21267,-0.700918,0.654977,-0.518177,0.306515,1.03062,-1.01658,-0.621737,-0.036282,1.39432,0.343439,-0.135823,1.45844,0.557127,2.31192,-0.674124,0.640818,-0.951823,-0.417613,0.542595,0.550833,0.485891,1.8549,1.17716,0.477339,0.192921,0.319379,-0.054421,0.611893,0.95714,0.786249,-0.799086,0.0809425,-0.855458,0.90877,0.767445,0.645306,-0.905243,-0.345248,-0.636351,0.847657,-0.728078,1.22766,-0.104773,-0.904197,-0.105686,1.88074,0.569273,1.79183,-0.170951,-0.117107,0.059776,0.716579,2.09387,-0.246118,0.250816,0.0212096,-0.0655791,0.688339,1.07736,2.0987,-0.154676,-0.295417,-0.218682,-0.76162,-0.714062,0.339779,0.956288,1.51413,1.31929,-1.18577,-1.49328,-1.23118,0.265448,0.305979,-0.794267,-0.652081,1.22053,0.573337,-0.0708279,-0.803522,-0.512995,-1.26805,0 +0.733577,-0.77969,-0.560285,1.17984,-0.163793,0.39946,0.568953,-0.221182,2.1288,-0.150719,1.70966,0.459099,1.63908,1.54609,2.1063,0.0171033,1.27303,0.297593,0.412742,0.0919088,-0.0614292,1.14895,0.807149,-0.851575,-0.657957,0.208442,0.91559,-0.460764,1.59079,-0.597097,-0.363541,-0.928511,0.0796916,-0.792359,1.10025,0.58802,2.18479,0.722927,-0.75001,1.04956,-0.709463,0.132952,0.71545,2.00954,0.889652,0.607177,-0.394833,0.968317,-0.341631,-0.319247,-0.0285311,1.87438,0.759632,0.395122,1.46848,0.393946,0.82721,-0.386495,0.88661,-0.254953,-0.653508,-1.01499,0.577207,-0.677388,1.55067,-0.0450375,-0.145623,0.220407,1.23462,0.620616,-0.63647,-0.950066,1.84557,0.4599,1.72844,-0.18139,2.07339,1.12293,0.549771,0.47087,0.703,0.677132,0.17355,1.14088,-0.640104,0.389609,0.150497,-0.842198,1.83275,-0.719275,-0.621737,-0.29469,0.360136,-0.121248,-0.595871,1.18646,1.43562,1.83008,-0.920957,0.891387,-0.820474,-0.0156449,2.17911,2.25023,2.04929,-0.127592,0.882432,0.796124,1.2577,0.73526,0.233101,0.398194,0.926521,0.931768,-0.870607,-0.335,-0.348993,0.202749,0.657556,0.708706,-0.592547,1.23777,0.336794,0.294806,-0.799875,1.02483,0.0997252,-0.61396,0.0895708,1.71556,-0.35872,1.26419,0.0572821,0.00200183,0.415285,-0.676089,1.15779,-0.155292,0.897095,-0.07057,0.184567,0.946809,0.882663,1.2505,-0.154676,-0.295417,-0.791801,0.428177,0.243309,1.01367,0.072667,1.25328,0.433052,-1.14384,-0.512391,-1.22057,-0.0360353,-0.274596,-0.597214,0.354196,1.3007,0.816897,-0.491991,-0.865947,-0.150983,-0.991238,0 +-0.372131,0.2847,-0.806047,1.23281,0.28909,0.68199,0.5408,0.227447,0.685708,0.249459,1.54242,0.567593,1.78997,1.36587,2.23742,0.126696,1.26439,0.267011,-0.101757,-0.0381663,0.336835,0.566315,0.518508,-0.860097,-0.892538,0.365009,0.861455,0.729595,0.643775,-0.817388,2.97868,1.52038,1.45559,-0.747393,1.08769,0.58802,2.12364,0.318088,-0.930449,0.715685,-0.521025,0.753522,1.04226,1.87454,0.877076,0.483507,1.46744,0.265697,-0.341631,0.13284,0.280709,0.80777,0.441018,0.407197,-0.194278,0.409958,0.782325,0.205013,0.841485,-0.167794,2.06467,1.53139,-1.00141,-0.797694,1.74673,0.227478,-0.0212512,-0.141365,-1.03239,0.00956042,-0.752245,-0.842811,1.83308,0.618674,2.00869,1.82461,0.728531,0.489771,0.407573,0.398522,0.851785,0.44465,0.0979924,-0.9411,-0.325897,0.418042,0.188346,-0.0570018,0.378881,-0.805337,2.28654,1.40649,1.7866,0.0380732,-0.258503,0.350369,1.59906,1.06307,-0.890103,0.727553,-0.0871064,0.915228,2.30696,2.23859,2.03688,-0.0901869,3.4695,1.16804,1.58232,0.627936,0.342634,0.555657,0.967346,0.786249,-0.696915,-0.904996,-0.930182,0.607535,0.750539,0.877775,-0.846612,-0.516078,-0.891447,1.34522,1.69251,0.590181,-0.0919921,-0.863887,-0.35673,1.69491,0.228378,1.19537,-0.079658,0.412265,0.174047,0.0602642,0.608351,0.233961,0.354682,0.143582,-0.157738,0.455716,0.616235,0.745881,-0.154676,-0.295417,-0.791801,-0.00312447,0.0275631,0.816153,0.956288,1.54311,1.43946,-0.375173,1.28379,1.09194,-0.0201678,0.0380216,-0.400161,-1.03325,-1.65409,-0.0558584,0.666207,0.757097,0.0558807,1.44468,0 +0.45715,-0.802337,-0.531371,1.72277,-0.163793,1.54045,0.634643,-0.155207,0.592271,-0.854481,0.973807,-0.0230968,-0.0206997,2.1108,2.02763,-0.483891,0.901448,-0.0693869,0.596492,0.40987,0.0927376,0.600587,0.796459,-0.331743,-0.871212,0.365009,0.80732,0.259716,1.52192,-0.749606,-0.363541,-0.928511,0.0316951,-0.360689,0.333991,0.759256,1.51211,0.956016,0.485301,0.715685,-0.827237,0.0165952,-0.669613,1.91954,1.71965,-0.236026,0.275585,0.504587,0.613985,-0.319247,-0.324886,0.763785,0.812734,0.419272,0.227105,-0.0543942,0.809256,-0.310983,1.74399,-0.984907,1.30962,-1.01499,0.469574,0.585831,1.3056,-0.0450375,-0.145623,0.926725,1.19359,0.266847,-0.803701,-0.965388,0.646009,1.32705,0.6635,-0.682891,0.877961,1.49813,0.253526,0.47087,0.302426,0.550324,-0.103495,1.57163,-0.934039,0.541248,-0.0766,-0.0279205,1.34813,0.595114,-0.621737,-0.251622,0.883171,-0.0283108,-1.05592,1.25698,1.72164,0.925402,-0.303874,0.77574,-0.875203,-0.0156449,1.43756,1.81956,2.24782,0.383615,-0.181866,0.171838,0.894114,1.39262,0.328942,0.364452,0.650951,0.91098,-0.502788,0.450669,-0.747522,0.616948,0.767445,0.772107,-0.875928,0.543066,0.771402,0.612696,-0.748591,1.08278,-0.807737,-0.444655,-0.286996,0.538626,-1.00263,-0.100801,0.209438,0.134345,1.57069,1.90115,1.29006,2.1413,0.920176,0.128286,0.224064,0.740033,0.667471,0.649251,-0.154676,-0.295417,-0.0754024,-0.122104,-0.14773,0.781297,0.129675,0.876499,0.673387,-1.15782,-0.627041,-1.22057,-0.353386,-1.00031,0.888895,0.125496,1.28924,0.816897,-0.428816,-0.678673,-0.18546,-1.13887,0 +0.0148667,1.92658,1.42027,-1.04486,0.219416,1.10579,-1.41114,1.75806,-1.47373,1.16021,-0.152272,0.133617,-0.2923,0.368627,0.270687,-0.202082,-1.20706,0.465791,1.83374,0.40987,-1.19199,-1.39865,-0.978151,1.06584,2.00774,-0.965807,-1.4014,-0.946305,0.00669205,1.03814,-0.320692,0.23205,-1.29621,0.673521,-1.07291,2.15361,-0.48845,-1.35034,1.65121,-0.669287,1.964,0.650094,0.201887,0.220813,0.474654,-0.0898708,2.36133,-1.37843,2.57905,0.780831,-0.595472,-1.42443,-1.23702,-0.160322,0.705432,-0.310589,-1.43501,-0.789224,0.781318,1.29211,-0.915259,1.05282,-1.07316,1.27759,-0.887793,1.4538,-0.145623,0.0998167,1.26539,0.0417213,1.83341,2.48208,-0.391113,0.215633,0.677512,-0.18139,-1.45138,0.571847,0.976363,0.482928,-1.54021,-1.39407,-0.909446,0.699868,1.40731,-1.33528,-0.202765,-0.914901,-1.17526,1.30708,0.0878838,0.0929218,-1.17331,0.476207,-2.00668,2.00241,0.546912,-1.43464,1.77878,-1.38301,1.9707,-1.20039,0.0823253,-0.124271,0.101245,0.782607,-0.329231,-1.19628,0.894114,1.23163,1.6981,-1.26641,-1.45154,-1.31339,1.35674,0.974449,2.29957,-1.4917,-1.49795,-1.61598,1.18591,1.08972,1.31939,0.12895,0.800177,1.14073,0.853813,0.901725,0.689288,-0.834464,0.133685,1.32154,-0.429616,0.00200183,0.605736,1.16479,-1.32486,2.05048,-0.68398,0.633073,-0.223566,-0.797863,-1.40247,-1.43366,-0.154676,-0.311488,-0.290322,0.1456,0.283761,-0.787253,-1.40954,-1.15233,-1.20423,2.33613,0.0863352,1.64355,-0.289916,-0.687697,1.23374,1.32998,0.235598,-0.685054,0.392451,-0.428974,-0.926722,-1.60022,0 +-0.15099,-0.021029,-0.704851,1.45793,-0.163793,1.33398,0.634643,-0.0496475,1.53703,-0.205916,0.940359,0.495264,-0.141411,0.0201932,0.768925,3.27356,1.1002,-0.0388052,0.277992,-0.0815246,0.298293,1.38886,0.57196,-0.340265,-0.732596,0.611042,0.482509,0.886221,2.00403,-0.342915,2.35737,1.45649,0.319674,-0.333709,0.384238,0.343397,-0.549602,1.8761,-0.916569,0.245784,-0.827237,1.05088,-0.0782375,0.490809,0.374048,1.60778,0.0521124,0.434325,-0.126281,-0.54529,0.113204,1.74243,0.536602,0.817743,0.830708,0.2018,0.647669,-0.0844482,1.8192,-0.353006,1.94386,1.47721,-1.39606,-0.00818261,0.913485,0.409154,-0.0627085,0.496044,-1.03239,-0.247726,-0.970933,-0.567014,0.283641,0.240059,0.131028,1.15595,1.80969,1.02913,0.514221,0.458812,0.851785,0.877912,0.160957,0.997293,-0.670511,0.654977,-0.303697,0.321055,1.4484,0.634233,1.84449,1.25576,1.35866,0.396547,-0.289173,-0.848368,1.09852,2.31192,-0.550707,0.631181,-0.360751,1.06332,0.55538,0.539194,0.461075,1.81749,1.12804,0.477339,0.218891,0.332795,-0.054421,0.611893,0.95714,0.765461,-0.788869,0.0655372,-0.789036,0.90877,0.767445,0.624172,-0.485057,1.31749,1.09263,0.654159,1.44635,-0.192182,-0.0919921,-0.404344,-0.105686,0.29085,0.266255,-0.789031,-0.170951,-0.103873,0.0470793,0.716579,2.0837,-0.336944,0.239275,0.0212096,-0.0655791,0.662492,1.06711,2.08796,-0.154676,3.94724,-0.147042,-0.776492,-0.687094,0.32816,0.0584151,0.775058,0.838618,0.253736,1.36022,1.21924,0.265448,0.573937,-0.531529,-0.179436,-0.634805,0.329778,0.223986,0.382549,0.279983,1.0756,0 +-0.427417,0.148821,-0.516915,1.24605,-0.163793,0.692857,0.634643,-0.207987,0.581889,-0.86828,0.984956,0.0733424,-0.216855,2.18289,1.89652,-0.40561,0.927372,0.0835212,0.584242,0.496587,0.131279,0.600587,0.785768,-0.791922,-0.892538,0.365009,0.818147,0.150078,0.557683,-0.919061,2.72158,1.52038,1.48759,-0.729407,1.05,0.58802,2.16732,0.93148,0.041144,0.752782,-0.556357,0.792308,-0.809675,1.96454,1.71965,-0.0898708,1.27376,0.574849,0.600526,-0.183621,-0.273346,0.752789,0.855216,0.1657,-0.205667,-0.0864186,0.818233,-0.109619,0.796359,-1.05028,2.04453,1.51333,-1.00141,-0.775137,1.72222,0.182058,-0.145623,0.875043,-0.509234,0.282928,-0.752245,-0.628302,0.508559,1.4614,0.369239,-0.515724,0.89554,1.69746,0.265376,0.446754,0.325316,0.560891,-0.103495,-0.992381,-0.903632,0.541248,0.0495647,-0.0424612,0.378881,-0.836632,2.20511,1.42803,1.79848,0.0247964,-0.227833,0.430956,1.61949,0.915568,-0.149604,0.795014,-0.163727,0.978696,1.24579,1.76137,2.223,0.470895,-0.0999973,0.18512,0.699338,1.29871,0.274176,0.296968,0.59992,0.91098,-0.421051,0.389048,-0.888668,0.56988,0.758992,0.772107,-0.895471,-0.481912,-0.910343,1.30376,1.672,0.561204,-0.961111,-0.888073,-0.384624,1.69491,0.209439,1.22978,0.2703,0.319625,1.82462,1.85312,1.27989,2.15428,0.954798,0.158879,0.210899,0.752957,0.687965,0.649251,-0.154676,-0.311488,-0.361962,-0.0626143,-0.0803097,0.816153,1.0418,1.48515,1.49954,-0.347221,1.29653,1.08133,-0.226446,-0.85517,-0.802477,-0.453875,-1.33342,0.0253282,0.708323,0.881947,0.0731194,1.50004,0 +0.180723,1.20189,1.42027,-1.17728,-0.163793,1.07319,-1.27976,1.74487,-1.48411,0.898024,-0.0407793,0.133617,-0.216855,0.392657,0.165795,-0.155113,-0.714496,0.358756,1.85824,0.655567,-1.20483,-1.38723,-0.678819,1.42376,1.97575,-0.820424,0.969726,-0.0691985,0.299406,2.50393,-0.363541,-0.981748,-0.528263,1.04224,-1.28646,1.86006,-0.409825,-0.233965,1.06826,0.530198,1.38691,-0.487618,0.170762,0.288312,0.474654,-0.0224146,1.70581,-1.57517,2.59251,0.81097,-0.698552,-1.42443,-1.15205,-0.546718,0.682654,-0.502735,-0.689914,1.8411,0.736192,1.59717,-0.895124,-0.274553,0.290186,2.13478,-0.863286,1.04502,-0.145623,1.2885,1.07049,1.58544,1.43463,0.674075,-0.266158,0.203419,0.369239,-0.18139,-1.39864,0.618748,1.02376,0.374406,-1.58599,-1.3835,-0.783516,0.474235,1.5188,-1.08887,1.96727,-0.0133799,-1.0917,2.30852,-0.249477,-0.531563,-1.10198,0.316886,-1.97601,1.82109,-0.06599,-1.31663,1.17712,-0.978244,1.31395,-0.650331,-0.198951,-0.0893521,0.138469,0.795075,-0.4111,-1.15643,0.842174,1.19139,1.61595,-1.07521,-1.39031,-1.20944,1.22391,0.21959,1.18701,-0.936299,-0.796355,1.00458,2.66145,1.54527,2.29253,0.695623,-0.492173,1.08278,0.943281,2.28841,0.786916,-1.22678,-1.51398,-0.272858,-0.65785,-0.077404,0.580342,1.8051,-0.00213756,2.02453,-0.52241,0.893115,0.105574,-0.00952972,-1.25901,-1.36924,-0.154676,-0.295417,-0.290322,1.87081,1.95579,0.816153,-1.22426,-1.05089,-1.20423,0.449397,-1.25124,-0.0324922,-0.274048,0.127341,1.32405,0.171236,1.00293,0.390668,-0.344584,-0.304124,-0.150983,-1.43413,0 +-0.26156,1.16792,-0.473545,1.51089,-0.163793,1.21445,0.925557,-0.326742,0.457306,-0.0403251,0.906911,0.483209,0.9299,0.356612,0.178906,2.91347,0.659489,-0.31404,0.363742,0.597756,0.169821,0.612012,0.689555,-0.834531,-0.860549,0.275542,1.60852,3.09465,1.2292,-0.368333,-0.192145,1.46714,-0.240285,0.898349,0.384238,0.343397,2.06249,1.00509,-0.944329,0.690953,0.362278,1.02502,0.497575,0.727056,0.311169,1.65275,-0.409732,0.504587,-0.193578,0.0424227,0.061664,0.642829,0.727771,-0.341445,1.12681,-0.0864186,0.746417,2.00471,1.32282,-0.0588458,0.0814057,1.45012,-2.04186,0.292584,1.61194,0.272897,-0.145623,0.375453,-1.03239,0.588455,-0.173366,-0.674268,1.03337,0.215633,-0.121196,-0.18139,0.473623,0.208368,0.549771,0.422638,0.691555,0.698267,0.211329,1.65368,-0.609697,0.939299,1.96727,0.728194,1.51524,-0.148142,1.79795,1.34189,0.3007,2.00304,-0.411852,-0.727487,1.79315,0.817233,-0.859248,0.515533,0.777611,1.12679,0.0439695,0.597392,0.485891,0.770138,-0.460221,0.503905,0.127996,0.238886,0.150952,0.611893,0.926521,0.848615,-0.441485,0.173374,-0.348993,0.607535,0.801256,1.99785,-0.758667,0.33807,-0.362359,-0.617399,1.47712,-0.134229,0.841032,0.200317,1.59584,1.32325,0.285194,0.874193,-0.14052,-0.196513,-0.371913,0.268364,1.01534,0.0782596,0.343142,-0.208239,0.00024893,0.662492,0.59574,0.735144,0.0869839,-0.295417,-0.648521,1.12718,1.57823,1.18796,0.129675,1.25328,0.387989,0.351567,1.36022,1.15559,0.0591699,2.19285,0.798579,-0.408135,-0.646258,0.370371,0.350335,0.694673,0.31446,1.20478,0 +-0.15099,1.05468,-0.647024,1.44468,-0.163793,1.33398,0.850482,-0.142012,0.633799,-0.13692,0.962658,0.495264,-0.0659663,0.116313,0.664033,3.68062,0.538509,-0.268167,-0.0650073,-0.0959774,0.439613,0.589163,0.229866,-0.425483,-0.732596,0.734058,1.50025,3.39224,2.02125,-0.300551,2.44306,1.45649,0.303675,-0.171833,0.384238,0.343397,-0.549602,1.12777,-0.916569,0.604393,-0.00282063,1.05088,-0.062675,0.389561,0.399199,1.73145,-0.58851,0.504587,0.00831314,-0.54529,0.203399,0.642829,0.664048,0.696994,0.842096,0.073703,0.6746,1.80334,1.8192,-0.254953,1.93379,1.48624,-1.36018,0.0594898,0.913485,0.454574,0.0202061,0.427135,-1.03239,0.299008,-0.546422,-0.720235,0.408596,0.557607,0.229115,1.65745,0.376934,0.841525,0.253526,0.482928,1.01201,0.708834,-0.0531233,1.00755,-0.589425,1.03407,1.62662,0.85906,1.4484,0.626409,1.90265,1.25576,1.34677,0.688636,-0.289173,-0.878588,1.08831,0.8369,-0.812967,0.409523,0.569641,1.04216,0.657663,0.620672,0.399035,1.66787,0.407591,0.557035,0.166951,0.118147,-0.054421,0.488173,0.906108,0.64073,-0.799086,-0.119326,-0.847155,0.842875,0.826615,1.98729,-0.426427,1.32888,1.09263,0.654159,1.45661,-0.221158,-0.00252401,-0.339847,0.0198363,0.280526,0.266255,-0.811972,-0.0492268,0.451968,0.148653,0.460456,1.03569,0.0912347,0.135409,0.158879,-0.131407,0.740033,0.544504,0.788828,0.48975,4.0276,0.0678772,0.472794,1.10629,0.990437,0.0441631,0.789549,0.808576,0.337591,1.36022,1.22984,0.455858,0.908884,-0.178476,-0.209929,-0.692068,0.289184,0.223986,0.382549,0.279983,1.05714,0 +-0.814415,-0.666457,-0.516915,1.04742,-0.0592818,0.888455,0.944325,-0.168402,0.322341,-0.730288,1.28599,0.157727,-0.352655,2.13483,1.55562,-0.202082,0.892807,0.374047,0.608742,0.641114,0.131279,0.589163,0.775078,-0.851575,-0.892538,0.666958,0.590779,3.39224,0.609338,-0.876697,-0.342116,0.55147,1.79156,-0.576524,0.987196,2.17807,2.19353,0.428498,-0.930449,0.443637,-0.662354,-1.7029,-0.825238,2.05454,1.36753,0.303624,0.350076,0.687269,0.358257,0.117771,-0.234691,0.477889,0.865837,-0.37767,-0.228445,0.0416787,0.818233,0.368622,0.931735,-1.05028,1.92372,-0.807306,-0.678508,-0.609715,1.66095,1.4538,-0.145623,-0.0724558,-0.601555,0.411571,-0.533558,-0.98071,0.695991,1.26598,0.285165,-0.432141,0.631842,2.02576,0.372024,0.386464,0.382541,0.835643,-0.0531233,-1.23853,-0.79214,0.56968,0.13788,2.1241,0.312036,-0.711452,-0.517038,0.394397,1.86981,0.131011,0.354894,2.00241,1.71143,0.600897,-0.920957,0.98776,-0.809528,-0.671487,1.07958,1.73809,2.04929,0.682859,0.309348,0.118707,0.530532,0.842585,0.164644,0.28572,0.579507,0.900586,-0.308662,0.296616,-0.921879,1.56772,0.843521,1.32158,-0.856384,-0.698296,-0.796967,1.37287,1.02582,0.0975822,-1.05058,-0.807452,-0.440412,1.58135,0.531396,1.66566,0.285516,0.240219,1.95159,-0.483997,0.771148,-0.168268,0.954798,0.0365061,0.210899,0.261864,0.995383,0.681461,0.892515,-0.295417,1.50067,0.472794,0.310729,0.467587,1.44086,1.35472,1.67979,-1.17179,-0.614302,-1.10389,-0.147108,-0.35275,-0.178476,-1.59737,0.109618,-0.867724,1.46642,-0.179275,-2.06447,-1.34186,0 +0.733577,-0.134262,-0.661481,1.17984,-0.163793,0.421193,0.822329,-0.339937,0.664944,-0.247314,0.884612,0.459099,-0.0357885,0.212433,0.493583,3.94677,0.512585,-0.222295,-0.114007,0.0485504,0.45246,0.589163,0.144343,-0.817488,-0.679282,0.812342,1.45694,3.42356,1.60801,-0.614042,-0.363541,-0.928511,0.0796916,-0.468606,1.06257,0.58802,2.19353,1.1523,-0.305853,0.592027,-0.403251,0.145881,-0.0782375,0.412061,0.348897,1.75393,-0.603408,0.574849,-0.00514623,-0.54529,0.216284,0.642829,0.685289,0.479647,1.46848,0.0256665,0.656646,1.61456,0.901652,-0.309427,-0.693778,-0.825365,0.577207,-0.647311,1.53842,-0.0450375,0.434779,0.478816,1.23462,0.250767,-0.597878,-0.950066,0.346119,0.60646,0.0469534,2.32611,0.359354,0.7829,0.135028,0.482928,1.0349,0.708834,-0.0783093,1.12037,-0.670511,1.04355,1.52569,0.800897,1.84947,-0.719275,-0.482139,-0.29469,0.348249,0.622252,-0.626541,1.17639,1.44584,0.8369,-0.79754,0.399886,-0.152781,-0.0156449,0.644877,0.725429,0.399035,1.76762,0.70232,0.623449,0.0760554,0.0644847,0.0140367,0.431936,0.895902,0.619942,-0.819521,-0.134731,-0.307479,0.937011,0.835068,1.96615,-0.61209,1.23777,0.35569,0.280985,-0.799875,0.99585,0.0613818,-0.630084,0.103518,1.70524,-0.35872,1.26419,0.0572821,0.571077,0.250227,0.524487,1.04587,0.143135,0.135409,0.0976925,-0.118242,0.752957,0.544504,0.799564,0.530026,-0.295417,-0.218682,0.32407,0.97145,0.932342,0.0584151,1.2243,0.418031,-0.892276,-0.486913,-0.849298,1.86807,0.920049,-0.112792,0.384689,1.3007,0.816897,-0.491991,-0.803522,-0.150983,-0.972784,0 +-0.0957042,0.296023,1.7094,1.43144,-0.163793,1.31225,0.756639,-0.0100625,0.561125,0.0700689,1.43093,0.434989,1.6089,1.44997,2.27675,-0.311674,0.832317,0.236429,0.449492,0.120814,-0.0614292,0.474921,0.807149,-0.50218,-0.732596,0.353825,1.30536,0.118753,2.02125,-0.283605,2.33594,1.4352,0.319674,-0.702428,0.384238,0.294472,-0.549602,2.07239,-0.902689,2.42217,0.597825,1.08966,0.855512,1.85204,0.965106,0.472265,0.022316,0.125173,-0.207037,-0.0781338,-0.0543011,0.554861,0.780873,0.61247,0.876262,0.490019,0.916981,0.343451,1.8192,-0.178689,1.94386,1.47721,-1.25255,-0.323987,0.888978,0.454574,-0.145623,3.32131,-1.03239,3.16132,0.971527,0.49021,1.69563,0.398833,1.95264,-0.432141,0.763691,0.39597,0.549771,0.446754,0.187976,0.48692,0.186143,1.00755,-0.457661,0.673932,0.390209,-0.580466,1.46511,0.610762,1.79795,1.21269,1.33488,-0.28057,-0.227833,-0.878588,1.05766,0.600897,0.498333,1.19978,0.306942,1.04216,2.24304,2.19204,2.08652,-0.439304,0.14561,0.477339,1.62128,0.896247,0.301559,0.443183,0.722395,0.91098,-0.819521,-0.442837,-0.872063,-0.0608326,0.792803,0.571338,-0.367796,1.34027,1.09263,0.640338,1.40532,-0.308087,0.0230383,-0.468841,-0.231208,0.259878,0.266255,-0.846384,-0.0340113,-0.0377011,0.262924,2.12525,0.740623,-0.700247,0.839391,-0.07057,0.184567,2.58809,1.07736,0.713671,-0.114399,4.09188,-0.505242,2.48058,1.51081,1.98966,0.0441631,0.775058,0.793555,0.77084,1.37296,1.24045,-0.194711,-0.430904,-0.83532,0.01877,-0.531731,0.350074,0.160812,0.320124,0.297222,1.00178,0 +-0.703844,-0.84763,-0.271153,1.06066,-0.094119,0.910188,2.14552,-0.0892324,0.561125,0.139065,0.840015,0.555538,0.100011,-0.0158517,0.323133,4.35383,0.875524,0.343465,0.0942426,-0.182694,0.131279,1.70874,0.753697,-0.868619,-0.892538,0.868258,1.18627,0.541643,0.712649,-0.758079,-0.342116,0.572765,1.77557,0.0619884,0.974634,2.22699,2.15858,0.784266,-0.930449,1.84097,-0.685908,-1.67704,0.139637,0.378311,0.336321,1.84387,0.201094,0.0549106,-0.435846,-0.349386,0.177629,0.774781,1.22693,0.322673,-0.217056,0.441983,2.01218,-0.336154,0.991902,-0.178689,1.96399,-0.834395,-0.64263,-0.316468,1.68546,1.68089,1.59558,0.272089,-0.796457,0.701018,-0.456374,-0.965388,0.521055,0.38662,-0.0511336,2.82761,0.728531,0.0911162,0.478672,0.446754,0.496991,2.19883,0.198736,-1.20776,-0.467797,1.85861,-0.492944,-0.260571,0.328747,-0.656685,-0.586837,0.351329,1.85792,1.25954,0.385563,1.99234,1.70121,0.8369,-0.828394,2.19242,-0.929932,-0.671487,0.606521,0.771988,0.324588,0.932228,1.40639,0.410926,-0.0408102,0.185224,0.164644,0.600646,0.87549,1.01492,-0.829738,-0.612295,-0.946787,0.391021,1.74799,0.476237,-0.836841,-0.721073,-0.778071,1.40051,1.03608,0.0396295,0.0613818,-0.525276,0.368509,1.58135,0.569273,1.6886,-0.0948736,0.200516,-0.181462,-0.59605,0.618526,-0.544546,0.620118,-0.0858666,-0.0524135,1.63175,2.2558,1.7766,-0.154676,-0.311488,-0.863441,0.562029,0.175888,1.67595,1.38385,1.3982,1.63473,-1.15782,-0.52513,-1.07206,2.26476,1.77975,0.453736,-1.59737,0.0409024,-0.867724,1.52959,-0.054425,-2.11619,-1.36032,0 +0.291294,-0.734397,-0.87833,1.70953,-0.163793,-0.480731,2.01414,-0.181597,0.436542,0.221861,0.951508,0.326495,1.24677,0.404672,0.441137,-0.108145,0.694054,-0.283458,0.547492,0.438776,0.105585,1.18322,0.721626,-0.757835,-0.892538,1.87476,0.872282,0.259716,0.0239105,-0.351387,-0.342116,-0.875275,0.319674,0.781439,1.75346,0.979416,1.74799,0.943748,-0.680611,0.678588,-0.733018,-0.552261,0.948887,0.558308,0.311169,1.47287,-0.320342,0.476483,-0.0589837,-0.0178555,-0.118726,0.664821,1.37562,0.213999,-0.775104,0.377934,1.82366,-0.348739,-0.121187,0.20263,1.80292,-1.00596,-0.0327119,-0.308949,1.4894,-0.0904567,-0.145623,-0.00354679,1.17307,-0.328128,-0.803701,-0.98071,1.19581,-0.0164213,-0.0511336,-0.515724,0.491203,0.0676659,0.537921,0.507044,0.58855,1.91351,0.211329,1.23318,-0.528611,2.06711,0.314511,0.728194,0.997195,-0.382854,-0.621737,-0.036282,1.38243,1.94993,-0.105154,1.44837,0.526482,0.797566,-0.874676,1.73947,-0.765745,-0.354144,0.28689,0.562473,0.709234,0.608048,-0.591212,0.33123,0.0371002,0.238886,0.109878,0.589399,0.916315,1.02532,-0.523223,0.265806,-0.86376,1.61479,1.88324,0.655873,-0.77821,-0.345248,-0.494631,0.861479,-0.676794,1.22766,1.01997,0.13582,1.67952,1.88074,0.569273,1.78036,-0.155736,-0.500902,-0.435397,0.188326,0.994993,0.10421,0.804769,-0.16235,0.158236,0.740033,1.59997,1.08945,-0.154676,-0.295417,-0.361962,-0.360063,0.0545313,0.897486,0.984792,1.52862,1.31929,-1.17179,-1.41685,-1.22057,-0.210578,1.89139,-0.0717388,-0.621588,1.23198,0.613931,-0.0708279,-0.803522,-0.530233,-1.30495,0 +0.180723,1.20189,1.3769,-0.806497,-0.163793,0.768923,-1.3736,1.1379,-1.34915,0.829028,-0.0853765,-0.324469,0.341433,0.284523,0.218241,1.66099,-0.584875,0.81748,-0.0282573,0.424323,-0.626707,-1.39865,-1.34163,1.17662,1.05875,-1.04409,0.99138,0.839233,-0.716484,1.45331,-0.363541,-0.971101,-0.480267,1.8786,-1.29902,1.86006,-0.156479,-0.233965,1.12378,0.517832,1.35158,-0.448832,0.2797,-0.00418324,-0.0409503,0.123741,1.55683,-0.493133,0.600526,0.780831,-0.376427,-1.40243,-1.3857,1.54224,1.09265,-0.294577,-0.716845,1.87885,0.299982,1.08511,-0.885057,-0.283582,0.254309,1.20992,-0.912301,1.13586,1.09809,1.2885,1.06023,1.5372,1.38317,0.658753,0.308632,0.142352,0.579425,0.988778,-1.22284,0.478046,-0.421912,-0.047624,-1.18542,-1.40464,-0.922039,0.915245,1.36677,-1.3258,1.96727,0.815438,-0.974726,1.13495,-0.237844,-0.510029,-1.0901,0.940895,-1.97601,1.79087,0.485622,-1.31663,1.20798,-0.958969,1.29206,-0.523394,0.120681,-0.263948,-0.0352427,0.795075,-0.280109,-0.372752,0.881129,0.0779002,0.479549,-1.19893,-1.3801,-1.42772,1.24435,0.882017,1.19531,-0.813922,-0.830167,1.04684,1.42044,0.600009,0.771402,0.723266,-0.461402,1.0538,0.802689,1.31289,0.731128,-1.2371,-1.55186,-0.330211,0.148576,0.240219,0.656523,1.85312,-0.032662,2.02453,-1.20331,-0.452985,-0.960841,-0.00952972,-1.24877,-1.36924,-0.114399,-0.231134,2.28871,1.84106,1.92882,0.816153,-1.22426,-1.1958,-1.20423,0.463373,-1.21303,-0.0112764,4.85116,3.08604,1.78384,0.15599,1.03728,0.471854,-0.344584,-0.241699,-0.133744,-1.47104,0 +-0.206275,0.499843,-0.473545,1.45793,-0.163793,1.32312,0.934941,-0.128817,0.332723,-0.840682,1.09645,0.109507,-0.277211,2.15886,1.7654,-0.40561,0.875524,0.144684,0.608742,0.583303,0.156974,0.566315,0.753697,-0.766357,-0.583317,0.666958,0.644914,3.51754,2.02125,-0.724188,2.29309,1.44585,0.36767,-0.540551,0.371676,0.343397,-0.549602,0.403963,-0.916569,0.480734,-0.120594,1.07674,-0.856363,1.98704,1.59389,0.0225563,0.201094,0.617007,0.533229,-0.0630642,-0.247576,0.466893,0.887078,-0.0033485,0.853485,0.0576909,0.845164,1.09857,1.8192,-1.07207,1.95393,1.46818,-1.39606,-0.166085,0.901231,0.409154,-0.145623,-0.0380013,-1.03239,0.491973,-0.302006,-0.643624,0.583532,1.38812,0.327202,-0.766474,0.649422,1.82644,0.312775,0.446754,0.348206,0.825075,-0.0909023,0.946013,-0.873225,0.56968,0.251428,2.00777,1.46511,0.626409,1.79795,1.25576,1.39432,0.05135,-0.289173,-0.808074,1.07809,0.600897,-0.90553,1.00703,0.000459907,1.06332,1.18186,1.74973,2.14856,0.495832,0.0473671,0.0655763,0.621428,1.09748,0.233101,0.240731,0.497857,0.890192,-0.369965,0.389048,-0.730917,1.5489,0.851974,1.42725,-0.787982,1.32888,1.09263,0.681802,1.42584,-0.221158,-1.02502,-0.517214,-0.426465,0.311498,0.266255,-0.777561,0.285516,0.306391,1.87541,-0.516012,0.750798,-0.246118,1.0125,0.158879,0.197733,0.274787,0.995383,0.681461,0.973068,3.89903,1.78723,0.517412,0.324213,0.479206,0.072667,0.775058,0.86866,0.337591,1.36022,1.21924,-0.289916,-0.698862,-0.868162,-0.0879564,-0.554636,0.350074,0.245044,0.382549,0.279983,1.0756,0 +0.0148667,-0.270142,-0.979526,0.186671,-0.163793,-0.86106,0.60649,-0.128817,0.436542,-2.19301,-0.97732,0.0853973,-1.93699,-1.03712,-1.10602,-0.609139,0.763185,-0.298749,0.596492,-1.12212,0.131279,0.474921,0.785768,-0.851575,-0.849887,0.488025,0.601606,0.839233,0.127221,-0.927534,-0.363541,1.30743,-0.528263,-1.30497,0.145567,-0.170311,-0.53213,0.75973,-0.930449,0.307613,-0.709463,1.25774,-2.36593,-0.85917,-0.229586,-1.72006,-0.216055,0.420273,0.156366,-1.88648,-0.260461,0.565857,0.610945,-1.91118,-0.957323,-0.00635777,0.701531,-0.273227,-0.40698,-1.49696,-0.0494694,1.23341,-0.786141,-0.963115,0.276298,0.272897,-0.145623,-0.417001,-1.03239,-0.633656,-0.919477,-0.61298,-1.2533,-0.675943,-1.60651,-0.432141,0.596682,-1.11657,0.454972,-1.07255,0.462656,0.465785,0.148364,-0.694955,-1.21784,0.617067,-0.215381,-0.187868,0.395592,-0.993107,-0.423973,1.12655,0.21749,-2.17915,0.262884,-0.787927,-0.403086,0.777899,-0.920957,0.602269,-0.349805,1.23257,-1.1962,-0.880854,-0.891391,-1.88565,-0.787698,0.18512,-1.28738,0.144978,-0.506242,0.645635,0.814252,0.807038,-1.21799,-1.7831,-0.86376,0.842875,0.775897,0.708706,-0.856384,-0.948846,-1.00482,-0.880004,1.07711,-0.887615,-1.99638,-1.16219,-2.36508,0.177286,0.436703,-0.697267,-0.00358013,-0.567073,-1.01945,-0.195859,0.913595,-0.129342,0.562415,-0.147053,0.184567,0.352328,0.503515,0.617041,-0.114399,-0.295417,-0.361962,-0.687258,-0.498317,0.479206,-0.0128447,0.543192,0.553219,0.463373,1.37296,1.10255,-0.242313,-1.27944,-0.84353,0.674375,0.189787,0.7966,-0.15506,0.382549,0.521324,0.724975,0 +0.236008,0.18279,0.856463,-1.17728,-0.163793,0.964521,-1.40175,-1.4879,-1.49449,0.815229,-1.02192,-1.81928,-0.126322,-0.916975,-0.398001,-0.546515,-1.51815,-2.66882,-1.19201,0.626662,-2.51525,-1.36438,-1.84408,1.4408,0.994775,-1.79337,-1.59628,-0.961967,-0.561517,1.13982,-0.363541,-0.981748,-0.176289,0.817411,-1.34927,1.59097,-0.470978,-1.48529,0.665739,-1.48543,0.550716,-0.435904,0.248575,-0.836671,-1.26079,-1.65261,-0.91627,-2.46047,-1.04152,0.765762,-2.51534,-1.39144,-1.52377,-1.76628,0.591544,-2.68039,-1.52478,-0.600444,0.465441,0.87811,-0.905191,-0.428058,0.541329,1.32271,-1.02258,0.863346,-0.145623,0.0309077,0.639656,-0.103003,0.68852,0.750686,-0.790967,-1.44539,0.0749782,-0.0142232,-1.4338,-0.83517,-1.50024,-0.566118,-1.99801,-1.37294,-2.26949,0.463979,1.24514,-1.45849,-0.278464,-1.56923,-1.35908,1.29925,-0.540305,-0.574631,-1.07821,0.144288,-1.20927,1.60955,0.383472,-1.40514,1.02285,-1.48902,0.405454,-0.0368011,-0.799858,-1.03217,-0.941023,-1.7859,-0.853193,-2.31202,0.790234,-1.11608,-0.602083,-2.09872,-1.62505,-1.51088,1.28522,0.0963477,1.18701,-1.61408,-1.51486,-1.58428,1.14683,0.861948,1.23435,0.695623,-0.881929,0.850968,0.713221,1.08715,0.745075,-1.2371,-1.89275,-0.639915,-2.90975,-2.28753,-1.12102,0.284372,-1.57923,-0.129342,-1.82651,-2.1815,-2.06675,-1.45696,-1.44346,-1.42292,-0.154676,-0.295417,-0.433602,0.011748,-0.0668256,-1.53086,-1.08174,-1.22478,-1.20423,0.365543,-1.06016,-0.0749237,-0.226446,-1.15662,1.33226,0.140743,1.20907,0.816897,-0.61834,-0.179275,0.107597,-1.30495,0 +0.0701521,-0.892923,-1.23975,-0.038447,-0.163793,0.0408637,-1.34545,-2.96574,-1.49449,-0.399106,-2.51592,-2.97655,-2.58581,-2.57504,-2.27295,-0.577827,-1.50951,-3.57098,-2.93151,-1.83031,-2.84928,-1.31868,-2.10065,-0.0760878,0.685554,-1.80456,-2.01854,-0.914979,0.402717,1.1144,-0.363541,1.12643,-0.240285,1.51888,-0.206158,-0.366009,-0.48845,-1.91466,-0.944329,-2.11609,-1.06278,1.30945,-2.07024,-2.5354,-2.39261,-2.0461,-0.946066,-2.75557,-3.15464,-0.665847,-3.12094,-1.35845,-1.48129,-1.9474,0.99015,-3.3529,-1.50683,-0.87732,0.164606,0.997953,-0.673643,0.890281,-0.2121,1.01442,0.374327,0.227478,-0.145623,-2.65654,-1.03239,-2.59547,-1.08671,-0.61298,-2.57782,-2.80107,-2.58738,-0.264974,-1.4338,-2.69947,-2.89852,-2.39893,-2.07813,-1.3201,-2.97469,0.853709,0.829574,-1.4111,-1.86814,-1.56923,0.061368,0.806356,-0.575204,0.954281,0.38391,-0.0283108,0.538913,-0.747634,0.220031,-1.3658,-0.967238,-1.47938,-1.08317,1.29604,-2.5003,-2.4173,-2.34312,-2.28464,-0.885941,-2.36515,-2.26126,-2.29665,-2.32722,-2.39115,-1.62505,-1.49009,1.07066,1.35958,0.614121,-1.57643,-1.46414,-1.67938,0.88299,1.35166,0.799746,-1.10114,0.646325,-1.20636,1.07109,1.28871,0.745075,0.321822,0.455642,-0.892266,-3.56402,-3.26687,-3.05093,-2.40492,-1.77255,-2.07561,-1.98808,-3.45112,-3.0805,-2.05144,-1.39223,-1.3585,-0.114399,-0.279346,-0.361962,-2.47195,-2.26473,-2.14666,-0.169616,0.0359855,0.0425068,0.225785,1.29653,0.847961,-0.242313,1.67926,1.07774,1.0098,0.613536,1.08075,-0.428816,0.320124,0.659233,0.429712,0 +0.291294,-0.428668,0.234829,-1.66724,-0.163793,-1.84992,0.240502,-1.89694,0.633799,-2.80018,-2.48248,-2.09654,-3.35534,-2.3828,-2.24673,-0.515203,0.624923,-1.85841,-1.73101,-2.8131,-0.716638,0.440648,0.390223,-0.885662,-0.796573,1.00246,0.504163,-0.774016,-2.45555,-0.859752,-0.342116,-0.917864,0.0156963,-1.28698,-1.3367,1.22404,-0.575811,1.04189,0.402021,0.715685,0.538939,0.081238,-3.36193,-2.4229,-2.27943,-2.02362,-0.156462,0.434325,-1.68757,-2.97149,-1.57473,0.455896,0.791494,-2.03193,-1.64065,0.826274,-0.0525422,-0.449421,-2.70837,-1.73665,-0.925326,-0.608652,0.756594,-0.910481,-1.47597,0.68167,-0.145623,1.03009,0.762752,0.620616,0.341193,0.551498,-2.77774,-2.38581,-2.67146,-0.0978067,0.719742,-2.39461,-1.87944,-2.4954,0.0735267,0.381246,-0.6324,-1.5257,-1.26852,0.579158,0.35236,-0.216949,-1.91055,-0.953988,-0.621737,-0.423894,-1.0901,-2.60401,-0.473191,1.30734,-1.46545,0.325559,0.313208,0.0914933,0.536803,0.470948,-2.48751,-2.3591,-2.3059,-1.74849,0.685946,0.942233,-2.27424,-2.21615,-2.34091,-0.119184,0.232493,0.578365,-1.6982,-3.32362,-0.86376,0.278058,0.057395,0.613605,-0.787982,-1.4955,-1.20323,0.55741,-0.861415,0.561204,-2.50763,-1.10575,-2.88112,-1.2371,-1.83593,-0.892266,-1.3882,-2.32723,-2.31451,0.444448,0.262407,0.259911,0.885554,0.357735,-0.263063,1.17943,0.237086,0.209049,-0.114399,-0.295417,-0.505242,0.249707,0.21634,0.351398,-0.910718,-1.26826,-1.23427,0.5053,-0.359525,0.0948023,-0.178843,-1.21245,-0.786056,0.201729,1.3236,1.14164,-0.871037,-0.11685,0.331699,-1.08351,0 +0.180723,-0.8816,-1.23975,-1.66724,-0.163793,-1.40439,-1.31729,0.583711,-1.40106,0.318455,-0.330661,0.00101302,-0.171588,0.512807,-0.13577,-0.530859,-1.49222,0.389337,-0.530507,0.0919088,-0.75518,-1.29583,-1.63027,-0.7834,-0.0181895,-1.68154,-1.98606,-0.899317,-2.05952,0.233232,-0.363541,0.75377,-0.288281,-0.333709,-1.04779,-0.341547,-0.575811,-1.89013,-0.874929,-2.09136,-1.06278,1.21895,-0.000425026,0.130815,0.386624,-0.629521,-0.946066,-1.30817,-0.0859025,0.82604,-0.208921,-1.33646,-1.47067,0.407197,-1.2876,-2.13597,-1.4799,-0.87732,-1.94124,-0.0370562,-0.935393,-0.626712,0.469574,-0.2112,-1.43921,0.136639,-0.145623,-2.62209,-0.940068,-2.57939,-1.08671,-0.68959,-0.241167,0.447687,-0.26132,-0.348557,-1.41622,0.337344,-0.279715,0.29,-1.36854,-1.2884,-0.88426,-1.3616,-0.0218258,-1.39214,-1.85552,-1.03123,-1.87713,0.12569,-0.621737,0.588203,-1.18519,0.343439,0.600252,-0.73756,-1.40416,-1.3363,-0.951811,-1.45047,-1.08317,1.21141,-0.544153,-0.275588,0.287364,0.159183,-0.75495,-1.58148,-0.469317,0.171809,0.0551113,-1.40138,-1.3801,-1.42772,0.0591566,-0.704727,0.0910507,-1.5576,-1.44723,-1.65825,0.257597,-0.812183,-0.145055,-1.43286,-0.553713,-1.00352,-0.00252401,0.0471365,0.326668,-1.22678,0.0958073,-1.00697,-0.0948736,0.372562,0.681916,-2.38891,-1.7522,-2.06263,-1.80343,-2.22739,-1.48747,-2.01267,-1.36149,-1.32629,-0.154676,-0.295417,-0.361962,-2.47195,-2.23776,-2.12342,-0.597175,-1.23928,-1.21925,-0.570834,1.04175,-0.255258,-0.226446,-1.07847,-0.827109,1.14702,1.01438,1.28372,-0.913154,0.257699,0.710949,-0.142359,0 +0.180723,-0.8816,-1.21083,-1.69373,-0.163793,-1.83905,-0.491473,0.623296,-0.477067,-0.302511,0.394043,-0.432963,0.401789,-0.0158517,0.480471,-0.530859,-0.809551,-0.0235144,-0.395757,-0.544014,-0.0614292,-0.473289,-0.251202,-0.826009,-0.764584,-0.317174,-1.53132,-0.914979,-2.45555,-0.842807,-0.363541,0.743122,-0.30428,-0.936249,-1.04779,-0.390471,-0.575811,-0.994572,-0.874929,-1.74511,-1.05101,1.21895,0.1552,0.344562,-0.30504,0.0450417,-0.946066,-0.352609,-0.00514623,-0.258969,-0.0156461,-0.456774,-0.525446,0.322673,-1.60648,-0.967087,-0.76173,-0.864735,-2.69333,-0.799695,-0.935393,-0.599623,0.469574,-0.910481,-1.45146,0.136639,-0.145623,-2.1225,-0.92981,-2.28994,-1.06098,-0.674268,0.483568,-0.517169,0.439301,-0.18139,-0.361422,-0.119936,-0.457462,0.253826,-0.475832,-0.538114,0.223922,-1.50518,-0.802275,-0.302242,-1.72936,-0.769494,-1.92726,-0.961812,-0.621737,0.545135,-1.17331,-0.147802,0.569582,-0.757707,-1.45524,-0.274284,-0.936384,-0.92042,-1.07223,1.19026,0.580951,0.562473,0.336996,-0.439304,-0.75495,-0.146947,0.205906,-0.230657,0.0688029,0.0157841,-0.553391,-0.544212,-1.07495,-1.53661,-0.822247,-0.380896,-0.466689,-1.39408,-0.77821,-1.46134,-1.19378,-1.43286,-0.543456,-0.945568,-0.679925,-0.920322,-0.35673,-1.22678,0.05793,-1.00697,-0.292676,-0.62001,-0.410003,-1.78062,-0.612626,-1.77718,-0.476247,-0.560061,0.158236,-1.57327,-0.756897,-0.46736,-0.154676,-0.311488,-0.361962,-2.11501,-1.98157,-1.68191,-0.611427,-1.23928,-1.21925,-0.528906,1.04175,-0.0112764,-0.242313,-0.821675,-0.802477,1.17751,1.00293,1.26342,-0.913154,0.257699,0.676472,-0.142359,0 +0.180723,-0.870277,-0.950613,-1.69373,-0.163793,-1.83905,0.784792,-0.669811,0.644181,-2.4414,-1.08881,-0.396799,-2.41983,-0.953019,-1.22403,-0.562171,0.512585,-1.01742,-0.714257,-1.32446,0.00280696,0.623436,-0.144298,-0.860097,-0.764584,0.420925,0.428373,-0.523414,-2.45555,-0.868225,-0.363541,0.764417,-0.352276,-1.29597,-1.03523,-0.366009,-0.575811,-0.000876275,-0.874929,0.530198,-0.956788,1.23188,-2.7083,-0.814171,-1.10989,-1.70882,-0.245851,0.617007,-0.893465,-2.35364,0.035894,0.4449,0.366674,-1.9474,-1.61787,0.0897152,0.728462,-0.587859,-2.69333,-1.57323,-0.935393,-0.572533,0.433696,-0.910481,-1.45146,0.136639,-0.145623,-0.933818,-0.940068,-0.537174,-0.932341,-0.674268,-1.55319,-0.956851,-1.91479,-0.264974,0.675792,-0.952421,-0.421912,-0.903741,0.187976,0.814508,0.223922,-1.50518,-1.24825,0.702364,-0.795739,-0.914901,-1.92726,-0.961812,-0.621737,0.566669,-1.18519,-2.3252,0.600252,-0.757707,-1.45524,0.286225,-0.936384,0.77574,-1.0175,1.19026,-1.45191,-0.985612,-0.990655,-0.975449,0.882432,1.07506,-1.32633,-1.08925,-1.14974,-0.0179579,-0.0328703,0.0378647,-1.35081,-2.33769,-0.822247,0.475744,0.674462,0.264902,-0.77821,-1.47272,-1.19378,-1.4605,-0.522943,-1.0325,-2.16254,-1.12188,-2.53245,-1.22678,0.0958073,-1.00697,-0.429616,-0.792056,-1.13372,-1.47647,-0.144585,-1.23223,-0.0377012,-0.300019,0.118739,0.442793,0.790438,0.563358,-0.154676,-0.311488,-0.290322,-0.687258,-0.767999,0.502444,-0.611427,-1.23928,-1.21925,-0.514931,1.05449,0.0523708,-0.258181,-1.24594,-0.802477,1.17751,0.991474,1.26342,-0.892095,0.257699,0.693711,-0.105451,0 +0.125438,-0.8816,-1.23975,-1.26997,-0.163793,-0.589396,-1.32668,-1.4747,-1.47373,0.442649,-0.999619,-2.43408,-1.1071,-1.03712,-1.17158,-0.593483,-1.49222,-3.12755,-1.37576,0.0485504,-2.66942,-1.29583,-1.96167,0.84427,1.22936,-1.79337,-1.98606,-0.899317,-1.73237,1.08051,-0.363541,0.721828,-0.30428,1.50089,-1.03523,-0.317085,-0.523394,-1.89013,-0.874929,-2.09136,-1.06278,1.20602,-0.0782375,-0.814171,-1.3614,-1.61888,-0.946066,-2.60099,-1.0819,0.82604,-2.82458,-1.33646,-1.47067,-1.77836,0.830708,-2.92057,-1.48887,-0.864735,-1.56519,1.07422,-0.935393,-0.653801,0.433696,0.924193,-1.40244,0.136639,-0.145623,-2.63932,-0.92981,-2.57939,-1.08671,-0.704912,-1.09086,-1.79957,-0.275332,-0.348557,-1.42501,-1.04622,-1.91499,-1.16902,-2.05524,-1.2884,-2.62209,0.146041,0.576181,-1.39214,-1.85552,-1.55469,-1.34237,0.704647,-0.621737,0.545135,-1.18519,0.277056,0.600252,-0.67712,-0.913838,-1.3363,-0.951811,-1.45047,-1.08317,1.19026,-0.978852,-0.927413,-0.990655,-2.07268,-0.885941,-2.35187,-0.98872,-1.19657,-1.0676,-2.24493,-1.61485,-1.47969,0.386106,0.188779,1.27003,-1.56701,-1.45569,-1.65825,0.912305,0.42918,0.270658,-1.44668,-0.604997,-1.0325,1.18612,1.26452,0.926385,-1.22678,0.0958073,-1.00697,-3.1532,-2.75073,-1.6035,-2.38891,-1.7522,-2.06263,-1.90729,-2.67099,-2.52755,-2.0256,-1.36149,-1.32629,-0.154676,-0.295417,-0.361962,-2.47195,-2.23776,-2.12342,-0.597175,-1.23928,-1.21925,-0.598785,1.01627,-0.435591,-0.242313,1.69043,0.938158,1.14702,1.02583,1.28372,-0.892095,0.257699,0.710949,-0.123905,0 +5.04584,-0.84763,-0.979526,-1.66724,11.9247,-1.88252,0.587722,-0.273962,0.488452,-0.702689,0.628179,0.434989,0.145278,0.0442232,-0.0308782,0.0640714,0.72862,-0.176423,0.400492,0.525492,0.272599,0.463497,0.625412,-0.817488,-0.839224,0.566309,0.471682,0.792245,-2.45555,-0.859752,-0.342116,-1.04563,0.0476939,-0.792359,-1.24877,3.71919,-0.575811,0.845605,-0.472412,0.19632,-0.933233,0.921593,-0.327238,0.44581,0.248291,0.730847,0.0521124,0.434325,-0.153199,-0.183621,0.0101239,0.576853,0.536602,0.0932505,-1.67481,0.0416787,0.638692,-0.348739,-2.72341,-0.941327,-0.935393,-1.01499,0.792472,-0.940558,-1.46371,6.40449,-0.145623,-0.175819,2.32196,-0.665817,-0.958069,-0.720235,0.483568,0.117926,-0.107183,-0.264974,0.508783,0.407695,0.537921,0.482928,0.783115,0.465785,0.186143,-1.53595,-0.873225,0.636022,-0.518177,-0.0715425,-1.89384,-0.985283,-0.621737,2.63393,-1.11387,0.210672,0.0175256,1.65991,-1.47567,0.748399,-0.90553,0.525171,-0.940878,3.98288,0.210178,0.422796,0.0888367,0.209057,-0.476595,0.450774,-0.0148401,0.279133,0.123569,0.645635,0.906108,0.744672,-0.482354,0.327427,-0.872063,0.852289,0.742086,0.592472,-0.827069,-1.52967,-1.24102,0.225699,-0.881929,0.213488,-0.833299,-0.8397,-0.286996,-1.2371,-1.1352,-0.743149,-0.125305,-0.262684,-0.270339,0.0762718,0.954294,0.259911,0.296979,-0.192943,-0.0392479,0.365252,0.472773,0.606305,-0.114399,-0.279346,-0.505242,-0.850855,-0.714062,0.339779,-0.753947,-1.26826,-1.23427,-0.8783,1.11818,-1.15693,-0.194711,-0.196441,-0.818898,0.842088,2.46887,4.28762,-1.06056,0.00799982,0.486847,-0.788245,0 +0.236008,-0.892923,-1.22529,-1.21701,12.2034,1.01885,-1.3736,0.570516,-1.46335,0.96702,-0.0519286,-0.396799,-0.201766,0.392657,0.205129,-0.123801,-1.51815,0.450501,0.143243,0.568851,-1.25622,-1.35295,-1.05298,1.42376,0.962787,-1.15592,-2.05102,-0.930642,-0.389333,1.08898,-0.363541,0.594059,-0.112294,0.772446,-1.36183,2.17807,-0.462241,-1.95146,-0.486292,-2.15319,-1.06278,2.48595,0.186325,0.288312,-0.053526,-0.0224146,-0.886474,-1.49085,0.627444,0.81097,-0.698552,-1.39144,-1.31136,-0.89689,0.557378,0.185788,-1.53376,-0.87732,0.555691,1.00885,-0.915259,-0.897603,0.577207,1.30767,-0.973569,1.27212,0.351864,-2.67377,2.16809,-2.62763,-1.08671,1.97645,-0.253663,0.0690722,0.355227,-0.264974,-1.4338,0.642198,-0.267865,-0.349074,-1.57455,-1.3518,-0.644993,0.402442,1.31609,-1.35423,-1.88076,-0.711332,-1.34237,1.29143,-0.621737,0.222126,-1.0901,0.356716,-0.963909,1.50881,0.485622,-1.3953,-0.951811,-1.51793,-1.08317,1.61338,-0.198951,-0.112632,0.126061,0.857418,-0.509343,-1.32911,0.868144,-0.0965015,0.123569,-1.30016,-1.45154,-1.33417,1.19326,0.188779,1.1704,-1.43522,-1.4895,-1.71108,1.09797,0.896114,1.2438,0.640338,-0.820388,0.735063,0.738783,1.02266,0.772969,-1.2371,-2.00638,-0.720208,-0.566556,-0.0641697,0.618433,-2.40492,-1.7929,-2.08858,-1.00712,0.250658,-0.223566,-2.09021,-1.43322,-1.40145,-0.114399,-0.279346,-0.361962,-2.5017,-2.26473,-2.18152,-1.02473,-1.21029,-1.21925,2.04263,1.81882,1.25106,-0.242313,-0.28576,1.33226,3.20531,1.71299,2.07529,-0.72363,-0.11685,0.176551,-1.21268,0 +1.12058,2.39083,-0.328979,-1.69373,-0.163793,-1.88252,0.568953,0.0559123,0.540361,0.139065,0.438641,0.471154,0.688478,-0.256151,0.205129,-0.562171,0.797751,0.190557,0.351492,-0.153789,-0.0228875,0.474921,0.796459,-0.766357,-0.828561,0.230809,0.91559,-0.163174,-2.45555,-0.808916,2.59304,1.47779,-1.82417,-0.729407,-0.947294,0.0253873,-0.575811,0.403963,-0.278094,0.950636,0.00895674,2.46009,0.544262,0.119565,0.260867,0.213682,0.0074178,-0.00129896,-0.314712,0.0424227,-0.0543011,0.543865,0.653427,0.68492,-1.66342,0.554068,0.82721,1.45096,-2.72341,-0.483744,-0.945461,2.0822,-1.71896,-0.948077,-1.42695,0.0458009,-0.104166,-0.0724558,-0.9811,0.443732,-0.160502,1.83855,0.646009,0.166779,0.523376,-0.599308,0.728531,-0.295814,0.526071,0.47087,0.279536,0.508055,0.186143,-1.5257,-0.640104,0.389609,0.554224,-0.391437,-1.91055,-1.01658,3.63599,2.41859,-1.25652,0.343439,0.0175256,-0.798001,-1.47567,0.561563,-0.766686,0.852838,0.810448,1.80379,0.593736,0.457715,0.026797,-0.838296,-0.165493,0.357795,0.0760554,0.265717,0.0688029,0.544409,0.76322,0.859009,-0.860389,-0.442837,-0.847155,0.343953,0.699821,0.782674,-0.846612,-1.52967,-1.26937,-1.41903,1.76431,0.590181,-0.0664298,-0.767141,0.22904,-1.21645,0.550335,0.243315,-0.186167,-0.0509354,-0.219552,-0.868181,0.537127,-0.557521,0.712444,-0.0552734,0.105574,0.804651,0.749449,0.531148,11.0019,-0.279346,-0.290322,0.309197,0.297245,0.95558,-1.01048,-1.25377,-1.23427,1.90288,1.75513,1.80267,-0.242313,-0.531388,-0.83532,3.20531,1.78171,2.11588,0.118695,1.2565,0.676472,1.02024,0 +1.23115,2.36819,-1.2542,-1.20376,-0.163793,0.953654,-1.35483,0.715661,-1.49449,0.773831,-0.141123,-0.396799,-0.201766,0.416687,0.139572,-0.389954,-1.55271,0.343465,0.0574926,0.698926,-1.28192,-1.35295,-1.18127,1.49193,0.962787,-1.08882,-2.00771,-0.852329,-0.440988,1.10592,2.57161,1.48844,-1.84017,0.718487,-0.934733,0.0498496,-0.479714,-1.96373,-0.555691,-2.12845,-0.933233,2.4213,0.170762,0.254563,0.0596553,-0.224783,-1.00566,-1.54706,0.613985,0.750692,-0.698552,-1.41343,-1.31136,-0.667467,0.580155,0.34591,-1.49785,-0.726297,0.495524,0.87811,-0.945461,2.09123,-1.89834,1.27759,-0.998076,0.136639,-0.104166,-2.67377,-0.970842,-2.61155,-1.1253,1.82323,-0.303644,0.154566,0.0749782,-0.599308,-1.48654,0.536672,-0.350814,-0.25261,-1.57455,-1.34123,-0.783516,0.505003,1.27554,-1.31633,-1.86814,-0.362356,-1.34237,1.27578,3.63599,2.41859,-1.25652,0.0779036,-0.043814,-0.67712,0.373257,-1.4248,-0.951811,-1.48902,0.131809,1.78263,-0.365159,-0.124271,0.175692,0.632985,-0.656707,-1.50178,0.790234,-0.083086,0.109878,-1.41263,-1.48216,-1.36536,1.275,0.21959,1.1704,-1.36933,-1.43878,-1.66882,1.12728,0.907503,1.23435,-1.43286,1.76431,0.242464,0.662096,1.02266,0.675341,-1.05127,0.550335,0.461254,-0.536125,0.00200183,0.593039,-2.40492,-1.84378,-2.08858,-1.0302,0.250658,-0.328891,-2.09021,-1.42297,-1.40145,10.6394,-0.279346,0.0678772,-2.5017,-2.26473,-2.14666,-1.02473,-1.1958,-1.23427,1.84697,1.69143,1.79206,-0.385121,-0.676532,1.26658,3.20531,1.80461,2.09559,0.18187,1.31892,0.676472,1.09405,0 +-1.75427,-0.870277,-1.08072,0.133702,-0.163793,-1.35006,0.597106,1.4018,2.30529,-0.4957,0.472088,-0.637897,0.311256,0.0201932,0.480471,-0.452579,0.529867,0.0376488,0.486242,-0.168241,-0.112818,1.96007,0.090891,-0.834531,-0.78591,0.834708,0.0277727,0.572968,-0.699265,-0.851279,-0.342116,0.0510446,1.56758,-0.891283,0.811333,-0.904179,-0.575811,0.465302,-0.944329,-0.298312,-1.0039,-1.87097,-0.000425026,0.389561,-0.0157989,0.292381,-0.275648,0.940212,1.71765,-0.54529,-0.350657,2.33622,0.621566,-0.124097,-0.877602,0.169776,0.414265,-0.474592,-1.21923,-0.843274,1.21901,-0.906633,0.0390432,-0.918001,0.349819,-1.27136,-0.145623,-0.727091,-1.02213,-1.21255,-1.03525,-0.996032,0.483568,-0.62709,0.243127,-0.18139,1.91517,0.079391,-0.244165,1.82136,1.0349,1.04699,0.0853994,-1.01289,-0.86309,0.683409,-0.921904,0.829979,0.0279456,-0.969635,-0.59847,-0.617699,1.29922,-0.0283108,1.15231,-0.183522,-0.0455599,1.97759,-0.920957,0.293876,-1.02844,-1.75045,0.465883,0.515914,0.274956,-0.526584,-0.378352,0.317947,0.439637,1.12431,2.28683,0.139505,1.16127,0.807038,-1.07495,-0.566079,-0.830549,0.90877,0.623744,0.233202,-0.787982,-1.18801,-1.0993,1.34522,0.666839,-0.829662,-0.73105,-0.896135,-0.328836,0.270202,0.720783,-0.880795,-0.079658,-0.62001,-0.283036,-0.32392,0.913595,-0.894874,0.181572,-0.00938362,0.224064,-0.112918,0.657224,1.66923,-0.154676,-0.295417,-0.361962,-1.28216,-1.1051,-0.183071,2.05369,0.195393,1.24418,-1.18577,-1.54424,-1.15693,-0.226446,-0.620707,-0.810688,-1.59737,-0.394299,-1.6187,-0.3867,0.694673,1.0902,0.318989,0 +-2.52826,-0.858953,-0.979526,-0.343018,-0.163793,-1.56739,0.728486,0.227447,1.06984,-1.13047,0.427491,-0.360634,-0.247033,0.272508,0.12646,-0.24905,1.41993,-0.589274,-0.640757,-0.182694,0.156974,0.63486,-0.283274,-0.391396,-0.764584,0.488025,0.450027,-0.210162,0.14444,-0.902116,-0.342116,-1.3757,-0.30428,-0.981215,1.95444,-0.439396,1.46843,0.453034,-0.888809,0.418905,-0.94501,-1.50897,-0.762988,0.46831,-0.229586,0.393566,1.92928,0.223539,-0.408928,-0.605568,0.113204,0.708805,0.313572,2.01316,-1.24204,0.233825,0.701531,-0.512348,-0.241521,-1.09386,0.604906,-1.01499,-1.61132,-0.92552,0.104748,-1.77097,-0.145623,-0.606501,-0.888778,-0.649737,-0.932341,-0.996032,0.196173,-0.285115,-0.31737,-0.264974,0.798851,0.478046,-0.516711,0.53116,0.336761,0.719402,0.0728065,-1.41288,-0.974582,0.692887,-0.707424,0.815438,-0.0890328,-0.985283,-0.621737,-1.11298,0.324475,-0.373508,0.201545,-0.787927,-1.27136,0.394393,-0.890103,0.708279,-0.995607,-1.41195,0.107896,0.376237,0.299772,0.283867,0.14561,0.596883,-0.287526,-0.203826,0.561698,-0.0629473,0.0589864,0.0378647,-0.635611,-0.150137,-0.805641,0.598121,0.699821,0.37057,-0.797754,-0.903292,-0.967031,0.198057,-0.0819031,-0.0472997,-1.20395,-0.992881,-0.928553,1.15806,1.09956,1.61978,-0.186167,-0.24945,0.059776,-0.211866,1.05604,0.947592,-0.130027,-0.131756,-0.236732,0.326481,0.677718,0.477465,-0.0741224,-0.13471,3.50659,-0.731875,-0.74103,0.455968,1.56912,0.325818,0.177695,-1.18577,-1.84997,-1.23118,-0.305783,-0.598378,-0.827109,-1.49065,-0.623352,-1.13158,0.834672,2.44257,0.969529,1.61076,0 +-1.86484,-0.858953,-1.08072,-0.0516892,0.393602,-1.76298,0.615875,0.82122,0.997166,-0.923477,0.505536,-0.686116,0.0547447,0.140343,0.165795,0.298912,0.901448,-0.298749,-0.653007,-0.47175,0.0285014,0.589163,-0.400868,-0.578876,-0.764584,0.678142,0.309276,0.447668,-0.217148,-0.859752,-0.320692,-0.587796,2.01555,-0.900276,0.371676,-0.684019,-0.575811,0.0849987,-0.930449,0.0231989,-0.980343,-1.2504,-0.389488,0.44581,-0.405646,0.472265,1.06519,0.279749,-0.180118,-0.726125,-0.144496,0.785777,0.292331,1.71128,-0.888991,-0.00635777,0.584829,-0.436836,-1.9262,-0.974012,1.61164,-0.99693,0.254309,-0.918001,0.0434797,-2.0889,0.186035,-1.08886,-1.03239,-1.08391,-0.996661,-0.996032,0.371109,-0.456103,-0.0931708,3.16195,0.807641,0.349069,-0.801106,0.446754,0.107862,0.550324,-0.330169,-1.38211,-0.964447,0.692887,-0.745273,1.45523,0.22848,-0.969635,-0.621737,-0.897641,1.56074,-0.081418,-0.74922,0.300002,-1.39395,0.473061,-0.936384,0.476984,-1.00655,-1.07345,0.261319,0.446076,0.25014,0.396084,3.86247,1.354,-0.196631,-0.244072,0.643848,-0.400368,-0.114521,-0.0452891,-0.819521,-0.119326,-0.813944,0.814634,0.691368,0.40227,-0.77821,-0.971624,-1.12765,1.3314,-0.933212,0.850968,-0.961111,-0.920322,-0.53804,0.579922,-0.585984,0.553018,0.255085,-0.209747,-0.117978,-0.740119,0.364155,-0.778098,0.0315429,0.281252,-0.170904,-0.0870707,0.390795,0.305679,-0.0741224,-0.166852,3.72151,-0.999579,-0.889355,0.177115,1.64038,-0.0364726,0.56824,-1.19974,-0.703474,-1.22057,-0.0519028,-0.497893,-0.810688,-1.52114,-1.82588,-1.25336,-0.176119,0.257699,0.211029,-1.89548,0 +-0.924986,-0.870277,-1.09518,0.226398,0.707137,-0.339466,0.587722,0.148277,0.955638,-0.481901,0.371745,-0.722281,0.2509,0.0442232,0.428025,-0.155113,1.11748,-0.00822363,-0.346757,0.0340976,-0.331221,0.577739,-0.112227,-0.382874,-0.78591,0.823525,0.114389,0.40068,-0.0794003,-0.893643,-0.363541,0.104281,0.671648,-0.972222,1.91676,-0.80633,-0.575811,0.403963,-0.930449,-0.18702,-1.01567,-1.47019,-0.03155,0.355811,-0.292464,0.0787698,2.06337,0.181382,0.0621507,-0.304177,-0.402197,0.752789,0.377295,1.86826,-1.35593,-0.118443,0.495059,-0.487177,-0.0459784,-0.886853,-0.482364,-0.870514,0.97186,-0.940558,0.117001,-1.77097,0.186035,-0.813228,-0.970842,-1.18039,-1.04812,-1.01135,0.3961,-0.602663,0.299177,2.82761,0.834011,-0.0261352,-0.599659,0.53116,-0.109593,0.529189,0.00984157,-0.715467,-0.86309,0.721319,-0.896671,0.786357,-0.373123,-0.969635,-0.621737,-0.768437,0.265039,-0.227463,1.02963,0.582057,-0.403086,0.551729,-0.936384,0.361337,-1.03939,-1.2427,0.491454,0.504274,0.336996,-0.164998,3.45312,0.782841,0.115011,-0.123333,0.411091,-0.197915,-0.0124577,0.0378647,-0.656046,1.4058,-0.730917,0.88053,0.666009,0.275469,-0.817297,-1.05134,-0.900895,0.115129,0.000150834,-0.510922,-0.820518,-0.960633,-0.482252,0.610894,0.834415,1.79183,0.0116354,-0.52737,-0.270339,-0.467989,0.435379,-0.622397,0.193113,0.158879,0.224064,-0.00952972,0.257581,0.273469,-0.154676,-0.295417,-0.0754024,-1.20779,-1.06465,-0.0552629,2.01093,0.427259,0.793555,-1.18577,-0.474175,-1.1251,-0.13124,-0.810511,-0.84353,-1.64311,-1.34487,-1.96374,-0.934212,0.0704246,0.866097,-0.695976,0 +-0.924986,-0.8816,-0.762677,0.226398,-0.163793,-0.350332,2.10798,0.135082,0.675326,-1.21326,0.427491,-0.288305,-0.367744,0.272508,0.585363,-0.0924892,0.624923,-0.421075,0.155493,0.785642,0.169821,2.22283,0.32608,-0.808966,-0.78591,1.98659,0.14687,0.0561024,-0.0794003,-0.902116,-0.363541,0.104281,0.671648,-0.990208,1.91676,-0.781868,-0.575811,-0.0499477,-0.916569,0.567295,-0.956788,-1.47019,-0.934175,0.46831,0.235715,0.461022,-0.156462,0.378116,1.04469,-0.711055,0.113204,1.21462,2.09781,0.431347,-1.35593,0.393946,1.44663,-0.537518,-0.0459784,-1.13743,-0.472297,-0.870514,0.97186,-0.933039,0.117001,-1.77097,-0.145623,-0.468683,-1.03239,0.122123,-0.842293,-1.01135,0.133696,-0.285115,-0.31737,-0.432141,0.719742,0.548397,-0.137517,2.00223,0.130752,2.36791,0.123178,-1.06417,-0.984718,2.14293,-1.0733,0.0884048,-0.373123,-0.961812,-0.621737,-0.768437,0.276926,-0.386784,1.02963,0.582057,-1.159,0.640231,-0.936384,1.57563,-1.06128,-1.2427,0.0056137,0.318039,0.324588,0.470895,0.669572,0.849254,0.972024,1.48653,2.56066,0.105763,0.354969,1.50345,-0.60496,-0.196353,-0.813944,0.739325,1.42678,0.0112993,-0.807525,-1.05134,-0.891447,0.12895,0.000150834,-0.510922,-1.25508,-0.992881,-1.01223,0.60057,0.834415,1.79183,-0.231814,-0.275918,0.135956,-1.30039,0.0996105,-1.06355,1.31256,-0.16235,-0.170904,0.404022,1.77417,1.4545,-0.154676,-0.311488,-0.147042,-0.166722,-0.687094,0.467587,2.01093,0.427259,0.793555,-1.19974,-0.474175,-1.1251,-0.305783,-0.553718,-0.83532,-1.64311,-1.34487,-1.98404,-0.934212,0.0704246,0.866097,-0.71443,0 +-1.80955,-0.496608,-0.647024,-0.0516892,-0.163793,-1.75212,0.67218,0.108692,0.561125,-0.454303,0.472088,-0.589677,0.326345,-0.0158517,0.336244,-0.515203,0.66813,0.022358,-0.273257,0.193078,-0.305527,0.657709,-0.00532275,-0.510701,-0.775247,0.991275,1.641,2.12357,-0.19993,-0.842807,-0.342116,-0.619738,2.01555,-0.88229,0.3968,-0.684019,-0.575811,0.403963,-0.916569,1.02483,-0.462138,-1.26333,0.0307,0.378311,-0.39307,0.281139,-0.305444,0.068963,-0.0455244,-0.243899,-0.299116,0.543865,0.865837,1.71128,-0.888991,-0.230528,1.04266,0.519645,-1.88107,-0.821484,1.62171,-0.99693,0.290186,-0.918001,0.0434797,-2.0889,-0.145623,-0.451455,-1.03239,0.475893,-0.50783,-0.996032,0.483568,-0.614876,0.25714,-0.432141,0.719742,0.0442156,-0.493011,0.603508,-0.178263,0.6877,0.123178,-1.39237,-0.832682,0.977209,1.34906,1.06263,0.22848,-0.961812,-0.621737,-0.919175,1.53696,-0.015034,-0.71855,0.320148,-1.37352,0.728732,-0.936384,0.766102,-0.41548,-1.07345,0.478669,0.515914,0.262548,-0.489178,-0.591212,0.238251,0.0111301,-0.123333,0.630156,-0.141679,-0.104314,0.193778,-0.553874,1.48282,-0.747522,0.842875,1.02103,1.82878,-0.77821,-0.971624,-1.1182,1.31758,-0.943469,0.850968,-0.692706,-0.888073,-0.300943,0.579922,-0.567045,0.564489,-0.186167,-0.659713,-0.321126,-0.868181,0.6287,-0.726198,0.458549,-0.11646,0.210899,0.50741,0.442031,0.531148,-0.154676,-0.311488,-0.147042,0.844606,1.10629,1.3971,1.69739,-0.0364726,0.598282,-1.21372,-0.716213,-1.01902,-0.289916,-0.631872,-0.818898,-1.50589,-1.80298,-1.25336,-0.218235,0.257699,0.211029,-1.87703,0 +-2.52826,-0.575871,-0.198869,-0.343018,-0.163793,-1.53479,0.784792,0.874,0.613035,-0.992474,0.550134,-0.710226,-0.0206997,0.0922831,0.0346794,0.0327593,0.685413,-0.283458,-0.555007,-0.327222,0.00280696,0.646284,-0.315345,-0.604442,-0.775247,0.879442,1.78175,-0.0378732,0.14444,-0.851279,-0.342116,-1.38635,-0.288281,-0.846318,1.94188,-0.463858,1.47717,0.465302,-0.916569,1.63076,-0.297255,-1.5219,-0.513988,0.44581,-0.493676,0.629662,-0.201157,0.293801,-0.207037,-0.695986,-0.196036,0.521873,0.823355,1.73543,-1.26482,-0.150467,1.17732,-0.0215219,-0.241521,-0.995802,0.604906,-1.01499,-1.57545,-0.910481,0.117001,-1.77097,-0.145623,0.58218,-1.03239,1.52112,-0.199094,-0.996032,0.358614,-0.529383,-0.275332,-0.348557,0.737321,0.44287,-0.789256,0.386464,-0.00658807,0.772239,-0.330169,-1.44365,-0.964447,1.00564,1.42476,1.45523,-0.0890328,-0.953988,-0.621737,-1.11298,0.324475,0.0115196,0.201545,-0.727487,-1.25093,0.58123,-0.828394,1.10341,-0.4921,-1.41195,0.146252,0.387877,0.138469,0.271399,0.0801148,0.384361,-0.235586,-0.230657,0.808146,-0.400368,-0.145139,0.141807,-0.727566,-0.211758,-0.838852,0.579294,0.944957,1.65972,-0.77821,-0.903292,-0.938687,0.184235,-0.553713,-0.0472997,-0.973892,-0.880011,-0.524093,1.15806,1.08062,1.61978,0.285516,-0.236216,-0.0925848,-0.900196,0.425204,-0.881899,0.32006,0.250658,-0.118242,1.20528,0.677718,0.488202,-0.114399,-0.215064,2.64691,1.55848,1.48385,1.78052,1.59763,0.311326,0.177695,-1.19974,-1.87545,-1.24179,-0.242313,-0.33042,-0.802477,-1.49065,-0.6119,-1.13158,0.85573,2.50499,0.969529,1.62922,0 +-2.52826,-0.77969,-0.87833,-0.369503,-0.163793,-1.54565,0.878635,-0.168402,0.540361,-0.619894,0.460939,-0.686116,0.0698336,0.152358,0.244464,-0.436922,0.711337,-0.405785,-0.604007,0.829001,0.00280696,0.680557,-0.336726,-0.630007,-0.764584,0.655775,0.33093,3.11031,0.14444,-0.876697,-0.342116,-1.40764,-0.336278,-0.936249,1.95444,-0.439396,1.49464,-0.025412,-0.916569,0.406539,-0.968565,-1.53483,-0.3428,0.43456,-0.330192,0.37108,-0.0372768,0.279749,-0.032065,-0.00278597,-0.170266,0.4449,0.685289,1.09547,-1.25343,0.377934,0.315517,0.0539898,-0.226479,-0.963117,0.574704,-1.01499,-1.61132,-0.933039,0.104748,-1.77097,-0.145623,-0.933818,-1.03239,-0.231646,-0.880885,-1.01135,0.358614,-0.443889,0.00491612,-0.432141,0.710952,0.290444,-0.801106,0.675855,-0.052368,0.951884,-0.330169,-1.43339,-0.79214,0.958254,-0.593875,2.60394,-0.105744,-0.977459,-0.621737,-1.11298,0.324475,-0.161079,0.0175256,-0.566312,-1.24072,0.443561,-0.936384,0.322788,-0.918986,-1.43311,0.299675,0.457715,0.287364,-0.152529,0.325722,0.543753,-0.0667803,-0.136748,0.643848,-0.400368,-0.216583,0.0378647,0.171546,1.91417,-0.706009,1.47359,0.589932,0.888342,-0.787982,-0.903292,-0.948135,0.184235,-0.635767,-0.0472997,-0.961111,-0.936446,-0.579881,1.16839,1.08062,1.64272,0.239869,-0.222981,-0.130675,-1.22035,0.323456,-0.868924,0.204653,0.311845,-0.131407,0.132629,0.247333,0.316415,0.973068,-0.247205,2.50363,-0.404681,-0.714062,0.421111,1.45511,0.325818,0.147654,-1.21372,-1.90093,-1.2524,-0.321651,-0.598378,-0.827109,-1.49065,-0.600447,-1.13158,0.876788,2.50499,0.969529,1.66612,0 +-1.75427,-0.84763,-1.10964,0.133702,-0.163793,-1.36092,1.89214,0.425371,0.561125,-0.0955221,0.862314,-0.0833713,0.265989,2.05072,2.27675,-0.32733,0.676771,0.0682304,-0.359007,-0.47175,-0.305527,1.72016,0.432984,-0.817488,-0.78591,2.40037,0.244314,-0.304138,-0.699265,-0.842807,-0.342116,0.0510446,1.56758,-1.05316,0.78621,-0.904179,-0.567074,0.379427,-0.944329,-0.323044,-0.933233,-1.87097,0.0773875,1.87454,1.78253,0.393566,-0.320342,0.11112,-0.153199,-0.454873,-0.312001,0.91773,2.08719,0.407197,-0.877602,0.634129,1.17732,-0.537518,-1.21923,-0.625377,1.21901,-0.906633,0.0390432,-0.918001,0.349819,-1.27136,-0.145623,-1.12332,-1.02213,-1.19647,-0.970933,-0.996032,0.733477,1.1927,1.1119,-0.18139,0.719742,1.12293,-0.161217,0.35029,-0.201153,2.02975,0.0979924,-1.01289,-0.690783,2.15241,-0.568642,1.12079,0.0112344,-0.961812,-0.59847,-0.617699,1.31111,-0.65232,1.12164,-0.173449,-0.055775,0.748399,-0.936384,1.06486,-0.962769,-1.75045,1.69327,1.92432,2.34708,-0.214872,-0.509343,0.224968,1.30964,1.60727,0.643848,-0.119184,0.120224,1.39951,-1.02386,-1.1977,-0.838852,1.31356,1.41832,0.40227,-0.787982,-1.18801,-1.08986,1.34522,0.666839,-0.829662,-0.449864,-0.992881,-0.635668,0.270202,0.720783,-0.880795,-0.079658,-0.183278,1.18979,-0.852173,0.64905,-0.726198,1.73957,0.204769,0.224064,-0.164612,1.09786,0.906931,-0.154676,-0.311488,-0.433602,-1.0442,-0.74103,-0.0785007,2.05369,0.195393,1.24418,-1.18577,-1.5315,-1.15693,-0.210578,-0.609542,-0.802477,-1.59737,-0.394299,-1.6187,-0.3867,0.694673,1.0902,0.318989,0 +-1.92012,-0.632487,-0.820504,-0.0516892,-0.163793,-1.75212,0.850482,-0.273962,0.664944,0.194262,1.19679,-0.360634,1.39766,0.717062,0.165795,-0.186426,0.624923,-0.589274,-0.738757,0.207531,0.195515,0.600587,-0.219131,-0.834531,-0.764584,0.566309,0.460854,3.58019,-0.217148,-0.537788,-0.320692,-0.566502,2.01555,0.430707,0.359115,-0.659556,-0.575811,0.0236594,-0.930449,0.542563,-0.886124,-1.2504,1.01114,0.535809,0.00935252,1.57405,-0.216055,0.350011,-0.462765,-0.21376,0.113204,0.499881,0.547222,0.0932505,-0.877602,0.217812,0.351426,0.582571,-1.94124,-0.0806355,1.60157,-0.99693,0.218431,-0.797694,0.0434797,-2.0889,-0.145623,-0.658182,-1.03239,-0.0226004,-0.880885,-0.996032,1.38324,-0.0408481,0.117016,-0.18139,0.737321,0.161467,-0.587809,0.555276,0.142197,0.825075,0.0602135,-1.38211,-0.640104,0.967731,-0.0892165,2.10956,0.22848,-0.946164,-0.586837,-0.897641,1.57263,1.88355,-0.77989,0.279855,-1.39395,0.433727,-0.936384,0.361337,-0.754799,-1.07345,0.401957,0.515914,0.67201,0.682859,0.374844,0.72971,-0.0797654,-0.109917,0.301559,-0.0404526,-0.0532828,0.0586532,-0.819521,-0.335,-0.822247,1.3418,0.632197,1.26875,-0.739123,-0.971624,-1.12765,1.3314,-0.912699,0.850968,0.828251,-0.218915,1.54005,0.579922,-0.585984,0.530077,-0.0948736,-0.183278,0.00898908,-1.28438,0.191184,-1.05058,-0.0377012,-0.131756,-0.263063,0.391099,0.257581,0.251995,1.57722,-0.198993,2.71855,-0.374936,-0.619673,0.444349,1.61188,-0.0509642,0.538199,-1.19974,-0.690735,-1.22057,-0.226446,1.54528,-0.728582,-1.52114,-1.83734,-1.27366,-0.15506,0.257699,0.19379,-1.93239,0 +-2.52826,-0.824983,0.119176,-0.343018,-0.163793,-1.41525,0.869251,-0.313547,0.685708,0.0562696,1.19679,-0.336524,1.32221,0.717062,0.152683,-0.045521,0.624923,-0.573984,-0.714257,0.265342,0.182668,0.532042,-0.133608,-0.843053,-0.775247,0.957725,1.641,0.478993,0.14444,-0.546261,-0.342116,-1.3757,-0.272282,0.466679,1.94188,-0.463858,1.4597,1.47127,-0.930449,2.21195,-0.568135,-1.5219,0.9022,0.558308,-0.0661017,1.64151,-0.230953,0.378116,-0.503143,-0.228829,0.113204,0.499881,0.695909,-0.0033485,-1.25343,0.137752,1.32993,-0.487177,-0.256563,-0.156899,0.614973,-1.01499,-1.57545,-0.699945,0.104748,-1.77097,-0.145623,1.92591,-1.03239,2.22866,-0.237686,-0.996032,1.34575,-0.0652748,0.0469534,-0.18139,0.746111,0.196642,-0.56411,0.543218,0.153642,0.740536,0.0853994,-1.44365,-0.680647,0.977209,0.377593,-0.115164,-0.0723216,-0.742747,-0.621737,-1.11298,0.324475,1.89682,0.232214,-0.818148,-1.13857,0.561563,-0.674124,1.55636,-0.842366,-1.3908,0.299675,0.480995,0.647194,0.707796,0.423965,0.782841,-0.0537952,-0.150164,0.315251,-0.0404526,-0.0328703,0.131413,-0.809303,-0.30419,-0.830549,0.400435,0.78435,0.814374,-0.748895,-0.903292,-0.948135,0.198057,-0.0613896,-0.0472997,0.764345,-0.210852,1.51216,1.15806,1.08062,1.60831,-0.155736,-0.196513,0.0470793,-0.147836,0.323456,-1.07653,0.204653,-0.223536,-0.236732,2.18747,1.45651,0.949877,-0.154676,-0.311488,-0.433602,1.7667,1.14674,2.0129,1.61188,0.325818,0.192716,-1.19974,-1.84997,-1.24179,-0.210578,1.6346,-0.260581,-1.49065,-0.634805,-1.13158,0.834672,2.44257,0.969529,1.61076,0 +-0.924986,-0.77969,-0.907243,0.226398,-0.163793,-0.361199,0.850482,0.135082,0.613035,-0.330109,0.683925,-0.662006,-0.0206997,0.476762,0.506694,3.57103,0.694054,-0.00822363,-0.714257,-0.327222,0.0541959,0.63486,-0.347416,-0.7834,-0.78591,0.689325,0.352584,3.18862,-0.0794003,-0.876697,-0.363541,0.114929,0.703645,-0.7384,1.90419,-0.781868,-0.575811,0.0236594,-0.930449,0.34471,-0.94501,-1.47019,-0.000425026,0.46831,-0.0912531,1.49535,-0.17136,0.279749,-0.233956,-0.635708,-0.131611,0.499881,0.621566,0.503796,-1.35593,0.377934,0.315517,0.066575,-0.0459784,-0.756115,-0.442095,-0.870514,0.97186,-0.933039,0.117001,-1.77097,0.144578,-1.01995,-1.03239,-0.37637,-0.880885,-0.996032,0.0712188,-0.272902,-0.373419,2.49328,0.737321,0.841525,-0.801106,0.47087,0.0048569,0.835643,-0.317576,-1.05392,-0.802275,0.986686,-0.606492,2.74935,-0.373123,-0.969635,-0.621737,-0.789971,0.288813,0.170841,0.99896,0.582057,-1.18964,0.551729,-0.936384,0.274601,-0.918986,-1.26386,-0.0327421,0.341318,0.746458,1.84243,1.58651,0.490622,-0.235586,-0.150164,0.123569,-0.366626,-0.185965,-0.00371222,-1.02386,-0.673916,-0.805641,1.43593,0.547667,0.803807,-0.807525,-1.05134,-0.900895,0.184235,0.0206643,-0.452969,-0.590457,-0.863887,-0.412518,0.590246,0.815476,1.79183,0.255085,-0.196513,-0.105282,-1.17233,0.404855,-0.881899,0.170031,0.311845,-0.170904,0.0550878,0.206344,0.359362,1.17445,-0.215064,3.14839,-0.419553,-0.633158,0.43273,2.02519,0.427259,0.808576,-1.18577,-0.474175,-1.1145,0.519328,0.439958,-0.794267,-1.64311,-1.35632,-1.98404,-0.934212,0.0704246,0.866097,-0.732883,0 +-0.924986,-0.870277,-1.08072,0.226398,-0.163793,-0.382932,0.60649,0.504541,2.30529,-0.0541244,0.639328,-0.0954262,0.175456,2.00266,2.3292,-0.452579,0.48666,0.00706718,-0.322257,-0.457297,-0.138513,1.99434,0.122962,-0.7834,-0.78591,0.834708,0.0602539,0.651282,-0.0621818,-0.893643,-0.363541,0.114929,0.735643,-1.07115,1.89163,-0.781868,-0.575811,0.47757,-0.930449,-0.285947,-1.01567,-1.47019,0.061825,1.78454,1.85798,0.337352,-0.305444,0.940212,-0.13974,-0.319247,-0.363542,2.35821,0.632186,0.515871,-1.35593,-0.00635777,0.432219,-0.462006,-0.0459784,-0.658062,-0.391758,-0.861484,1.00774,-0.933039,0.104748,-1.81639,-0.145623,-0.727091,-1.03239,-1.21255,-1.04812,-0.996032,0.583532,1.20492,1.18196,-0.348557,1.89759,0.85325,-0.125668,0.338232,1.06924,1.07869,0.0602135,-1.0334,-0.670511,0.683409,-0.896671,0.742735,-0.373123,-0.969635,-0.621737,-0.789971,0.312587,-0.745258,0.99896,0.571984,-1.21007,1.97759,-0.920957,0.313151,-1.02844,-1.26386,1.69327,1.86612,2.34708,-0.376962,-0.4111,0.238251,1.45247,1.75484,0.739689,0.139505,1.20209,0.859009,-0.982996,-1.1977,-0.805641,0.927598,0.64065,0.275469,-0.807525,-1.05134,-0.910343,0.225699,0.0411778,-0.423993,-0.539333,-1.03319,-0.858819,0.579922,0.815476,1.79183,-0.0644424,-0.183278,1.02473,-0.339928,0.883071,-0.907849,0.181572,0.0670993,0.224064,-0.0999942,0.677718,1.67997,-0.154676,-0.295417,-0.218682,-1.26728,-1.09162,-0.159833,2.03944,0.427259,0.823597,-1.18577,-0.474175,-1.10389,-0.289916,-0.687697,-0.83532,-1.64311,-1.35632,-1.98404,-0.934212,0.0704246,0.866097,-0.751337,0 +-1.92012,-0.858953,-0.96507,-0.038447,-0.163793,-1.76298,0.709718,-0.194792,1.11137,0.332255,1.20794,-0.288305,1.48819,0.717062,0.244464,-0.32733,1.43722,-0.650438,-0.640757,0.14972,0.118432,0.63486,-0.219131,-0.808966,-0.764584,0.465659,0.493336,-0.131849,-0.234367,-0.563206,-0.320692,-0.555854,2.01555,0.304803,0.371676,-0.659556,-0.575811,0.551177,-0.888809,0.418905,-0.933233,-1.2504,1.13564,0.490809,0.248291,1.49535,1.49724,0.139225,-0.597359,-0.138412,0.087434,0.785777,0.249849,0.262299,-0.877602,0.185788,0.710508,-0.474592,-1.94124,-0.047951,1.61164,-0.99693,0.182553,-0.83529,0.0434797,-2.0889,-0.145623,-0.520364,-0.991358,-0.617576,-0.919477,-0.996032,1.43322,0.0202188,0.25714,-0.18139,0.807641,0.102841,-0.504861,0.555276,0.382541,0.666565,0.160957,-1.37185,-0.599561,0.673932,-0.619108,-0.435059,0.22848,-0.969635,-0.621737,-0.897641,1.56074,1.81716,-0.74922,0.269781,-1.40416,0.473061,-0.890103,0.689004,-0.973715,-1.07345,0.580951,0.585753,0.73405,0.632985,-0.0181282,0.596883,-0.105735,-0.0294239,0.205718,0.00453674,0.161049,0.0482589,-0.809303,-0.257974,-0.805641,0.635775,0.708274,0.444537,-0.748895,-0.983012,-1.1371,1.3314,-0.912699,0.850968,0.841032,-0.283412,1.5261,0.579922,-0.567045,0.530077,-0.414401,-0.289153,-0.117978,-0.0677972,1.17814,0.934617,-0.118486,-0.269426,-0.0787447,0.352328,0.646976,0.477465,-0.154676,-0.311488,-0.361962,-0.687258,-0.687094,0.479206,1.64038,-0.0364726,0.553219,-1.18577,-0.690735,-1.20997,-0.258181,1.33315,-0.769635,-1.52114,-1.84879,-1.27366,-0.134002,0.320124,0.19379,-1.95084,0 +-2.52826,-0.858953,-1.09518,-0.329776,0.358765,-1.56739,0.5408,-0.0232575,0.997166,1.10501,0.984956,-0.674061,1.83523,0.669002,0.323133,0.0797275,1.01379,-0.359912,-0.665257,-0.0815246,0.0670431,0.600587,-0.390178,-0.817488,-0.764584,0.678142,0.276795,0.76092,0.14444,-0.45306,-0.320692,-1.33311,-0.256283,0.322789,1.94188,-0.439396,1.42475,0.170874,-0.944329,-0.0880935,-0.968565,-1.50897,1.74257,0.502059,0.0219282,0.91073,1.15458,0.279749,-0.247415,0.449301,-0.157381,0.895738,0.217988,0.334748,-1.23065,0.00965439,0.530967,-0.39908,-0.271605,0.573055,0.645175,-1.01499,-1.61132,-0.83529,0.092494,-1.72555,0.103121,-1.00273,-1.03239,-1.11607,-0.996661,-0.996032,1.50819,-0.187409,0.817637,2.57686,0.781271,0.0559408,-0.789256,0.482928,0.130752,0.48692,-0.330169,-1.42313,-0.15359,0.645499,-0.707424,0.350137,-0.0556104,-0.758394,-0.621737,-1.11298,0.324475,1.80389,0.354894,-0.888662,-1.28158,0.600897,-0.936384,0.399886,-0.984661,-1.36964,0.875012,0.643951,0.758866,0.558174,3.66598,1.31415,-0.0797654,-0.0965015,0.21941,-0.377873,-0.0839017,-0.0556834,-0.717349,-0.643106,-0.813944,0.861702,0.674462,0.43397,-0.670721,-0.903292,-0.938687,0.198057,0.071948,-0.0762761,1.32672,-0.114107,1.80504,1.14774,1.09956,1.58536,0.2703,-0.183278,-0.0671914,-0.612058,0.384505,-0.804048,0.00846156,0.265955,-0.170904,-0.0870707,0.278075,0.316415,-0.154676,-0.295417,-0.505242,-1.05907,-0.902839,0.107401,1.64038,0.325818,0.207737,-1.18577,-1.78628,-1.23118,-0.0836379,0.74141,-0.794267,-1.49065,-0.646258,-1.11128,0.771498,2.31772,0.969529,1.5554,0 +-2.52826,-0.858953,-0.9217,-0.343018,-0.163793,-1.57825,0.644028,0.201057,1.10099,-0.192117,0.806567,-0.601732,-0.0508774,0.356612,0.637809,3.46144,1.25575,-0.0693869,-0.738757,-0.442844,0.0285014,0.612012,-0.368797,-0.757835,-0.775247,0.666958,0.320103,0.275379,0.14444,-0.88517,-0.342116,-1.35441,-0.288281,-0.711421,1.95444,-0.439396,1.45096,1.09096,-0.833289,0.171589,-0.968565,-1.50897,0.0462625,0.46831,-0.0283746,1.55156,0.022316,0.279749,-0.274334,-0.515151,-0.0929562,0.818766,0.313572,0.63662,-1.23065,0.00965439,0.602784,-0.462006,-0.256563,-0.723431,0.614973,-1.01499,-1.61132,-0.92552,0.092494,-1.72555,0.0616633,0.134271,-0.9811,-0.665817,-0.983797,-0.98071,0.158687,-0.260689,-0.247307,1.9082,0.816431,0.900151,-0.789256,0.41058,0.222311,0.582026,-0.317576,-1.41288,-0.751597,0.702364,-0.745273,0.248352,-0.0723216,-0.993107,-0.621737,-1.11298,0.324475,0.316886,0.232214,-0.848368,-1.29179,0.679564,-0.735832,0.525171,-0.995607,-1.3908,0.0311842,0.341318,0.771274,1.79255,1.50464,0.33123,-0.196631,-0.150164,0.0140367,-0.377873,0.0079549,0.0274705,-1.00343,-0.673916,-0.797339,0.786393,0.699821,0.391703,-0.807525,-0.903292,-0.976479,0.198057,-0.0101059,-0.0472997,-0.577676,-0.847762,-0.412518,1.14774,1.09956,1.60831,0.224653,-0.170044,-0.117978,1.02072,1.46303,1.3109,0.0430836,0.296548,-0.210401,0.429869,0.48302,0.488202,-0.154676,-0.311488,-0.290322,-0.969834,-0.875871,0.22359,1.58337,0.325818,0.192716,-1.18577,-1.81175,-1.23118,2.26476,0.495782,-0.794267,-1.49065,-0.646258,-1.13158,0.813614,2.38014,0.969529,1.59231,0 +-0.593273,2.11908,1.57929,0.199913,-0.163793,1.29052,0.315577,-2.0025,0.768764,-2.86917,-2.58282,-1.61434,-3.47605,-2.1425,-2.35162,-0.671763,0.0113827,-0.390494,-2.22101,-2.72638,0.234057,0.314982,-0.0801557,-0.826009,-0.753922,0.968908,0.179351,0.870558,1.62523,-0.910588,-0.363541,-0.119313,1.77557,-1.34993,0.849018,-1.02649,1.8004,0.673855,2.23417,0.925904,1.98756,-0.20319,-3.47086,-2.4454,-2.14109,-2.11356,-0.618306,1.09479,-2.32016,-2.97149,-0.634127,0.554861,0.387915,-1.93533,-1.21926,0.586092,0.234724,2.20607,1.6387,-1.86739,-0.27095,0.628419,1.40239,-0.83529,1.74673,-0.862583,-0.145623,0.943952,1.65519,1.10303,1.87201,1.63937,-2.9027,-1.88507,-2.74152,-0.432141,0.385724,-2.23046,-1.91499,-2.36276,0.760225,0.233303,-0.670179,-1.15648,-1.33947,0.617067,1.89157,1.09171,0.763238,-0.539329,0.448511,0.114456,0.360136,-2.68367,1.27499,-0.747634,1.73186,0.0305541,1.77878,0.322788,2.03638,0.0478237,-2.61537,-2.54534,-2.34312,-1.5864,-0.492969,0.942233,-2.30021,-2.24298,-2.34091,0.0720208,0.508063,0.29772,-1.67776,-3.2466,-0.789036,0.918184,0.446232,0.444537,-0.787982,-0.470523,-0.239535,0.750908,-0.512686,-1.0325,-2.55876,-1.14606,-2.95085,1.28195,1.38364,1.82625,0.209438,-1.04351,-1.66698,0.972701,0.37433,1.6742,0.296979,-0.78951,-1.02667,1.11481,0.226839,0.123156,-0.154676,-0.311488,-0.0037626,1.36514,1.76701,0.455968,0.97054,1.58659,0.553219,1.58143,-0.219397,1.09194,-0.353386,-1.30177,-0.794267,0.750608,-0.0736243,-0.299418,1.61382,-0.741098,-2.06447,0.337443,0 +-1.09084,2.14172,1.66603,0.305851,0.0103926,1.05145,0.212349,-1.84416,0.602653,-2.78638,-2.48248,-2.09654,-3.32516,-2.2987,-2.27295,-0.468235,0.443453,-0.986835,-1.78001,-2.78419,-0.575319,0.349255,0.31539,-0.868619,-0.753922,0.968908,0.558298,-0.758353,0.988145,-0.876697,-0.363541,-0.310965,1.3596,-1.30497,1.08769,-0.561707,2.08869,1.04189,1.88717,0.456003,2.08177,0.0941665,-3.3308,-2.3779,-2.32973,-2.01237,1.67602,0.743478,-1.70103,-2.94135,-1.45877,0.356932,0.727771,-2.03193,-1.25343,0.810262,0.109045,1.6649,1.20249,-1.79112,-0.613239,0.854162,0.290186,-0.805213,1.69771,-0.408391,-0.145623,0.909498,1.42952,0.652777,1.97492,2.08371,-2.76525,-2.30032,-2.65744,0.0693602,0.623052,-2.19529,-1.92684,-2.50745,0.187976,0.338977,-0.720551,-1.1975,-1.32933,0.550725,1.48784,-0.0279205,0.195058,-0.617567,0.413611,-0.380826,0.312587,-2.59073,2.01106,-0.687193,1.73186,0.178056,1.74793,0.0143952,2.10205,-0.142582,-2.48751,-2.37074,-2.34312,-1.44925,1.25903,1.20789,-2.27424,-2.26981,-2.38198,-0.197915,0.201874,0.505605,-1.6982,-3.30822,-0.813944,0.306299,0.0827539,0.0641332,-0.768438,-0.91468,-0.589111,1.7184,-0.5332,-0.829662,-2.50763,-1.11381,-2.86717,1.48843,1.74347,0.277726,-0.779574,-2.10225,-2.08597,1.16479,0.486253,1.92073,0.827851,0.296548,-0.342057,0.701263,0.0526356,0.112419,-0.154676,-0.311488,-0.576881,1.0082,1.42991,0.560538,0.927785,1.42718,0.297863,2.00071,-0.155703,1.39957,-0.210578,-1.20128,-0.703951,0.628635,-0.14234,-0.197935,1.677,-0.491399,-1.97828,0.780336,0 +-1.09084,2.15304,1.65158,1.85519,0.0103926,-1.45872,0.202965,-1.84416,0.602653,-2.77258,-2.47133,-2.09654,-3.29499,-2.2987,-2.27295,-0.452579,0.452095,-1.00213,-1.76776,-2.79865,-0.575319,0.349255,0.31539,-0.885662,-0.753922,0.968908,0.558298,-0.758353,0.557683,-0.851279,-0.363541,-0.321613,1.3436,-1.28698,0.71084,-0.537245,-0.575811,1.04189,1.88717,0.456003,2.08177,0.0941665,-3.31524,-2.3554,-2.31715,-2.00113,1.66112,0.743478,-1.68757,-2.94135,-1.45877,0.356932,0.727771,-2.05608,0.443491,0.79425,0.109045,1.67749,-1.18915,-1.75844,1.23915,0.854162,0.326064,-0.887924,0.362073,-0.408391,-0.145623,0.909498,1.42952,0.668858,1.97492,2.08371,-2.74026,-2.30032,-2.64343,0.152944,0.623052,-2.18356,-1.92684,-2.53157,0.187976,0.32841,-0.720551,1.5101,-1.30906,0.550725,1.48784,-0.0279205,1.7492,-0.922693,0.425244,-0.423894,1.01393,-2.57746,2.04173,-0.67712,-0.924053,0.18789,1.74793,0.0143952,2.113,-0.163738,-2.46194,-2.34746,-2.33071,-1.44925,1.24266,1.20789,-2.27424,-2.26981,-2.39568,-0.197915,0.201874,0.505605,-1.70842,-3.32362,-0.813944,0.306299,0.0827539,0.0747,-0.758667,-0.755239,-1.07096,1.7184,-0.543456,-0.829662,-2.49485,-1.09769,-2.85323,0.414738,1.74347,-0.846384,-0.79479,-2.10225,-2.08597,1.1808,0.476078,1.9337,0.827851,0.296548,-0.342057,0.714186,0.0526356,0.123156,-0.154676,-0.311488,-0.648521,1.0082,1.42991,0.560538,0.956288,0.398276,1.04891,2.00071,-0.168442,1.39957,-0.178843,-1.19012,-0.769635,0.628635,-0.130888,-0.197935,1.69806,-0.491399,-1.97828,0.817244,0 +-0.593273,2.1304,1.56484,1.74925,-0.163793,-1.39352,0.315577,-2.0025,0.768764,-2.84157,-2.56052,-1.61434,-3.46096,-2.1425,-2.33851,-0.640451,0.00274129,-0.390494,-2.22101,-2.74084,0.234057,0.314982,-0.0801557,-0.843053,-0.753922,0.968908,0.179351,0.886221,-0.182711,-0.876697,-0.363541,-0.140608,1.75957,-1.33195,0.522416,-0.977566,-0.575811,0.661588,2.23417,0.93827,1.98756,-0.216118,-3.43974,-2.4229,-2.14109,-2.10232,-0.618306,1.10884,-2.32016,-2.97149,-0.634127,0.565857,0.387915,-1.9474,-0.433442,0.602104,0.225747,2.21866,-0.75294,-1.8347,1.5311,0.628419,1.40239,-0.910481,0.38658,-0.817164,-0.145623,0.926725,1.64494,1.10303,1.87201,1.63937,-2.8902,-1.88507,-2.72751,-0.432141,0.385724,-2.21874,-1.91499,-2.38687,0.760225,0.222736,-0.670179,1.44856,-1.32933,0.617067,1.89157,1.10625,1.24786,-0.946164,0.460144,0.0929218,1.14469,-2.67039,1.27499,-0.727487,-1.13857,0.0305541,1.79421,0.322788,2.03638,0.0478237,-2.5898,-2.51042,-2.33071,-1.5864,-0.476595,0.942233,-2.28723,-2.24298,-2.3546,0.0720208,0.508063,0.29772,-1.68798,-3.262,-0.805641,0.918184,0.446232,0.43397,-0.768438,-1.10829,-1.04262,0.778551,-0.522943,-1.06147,-2.54597,-1.12994,-2.93691,0.414738,1.40257,1.82625,0.209438,-1.04351,-1.66698,0.972701,0.384505,1.6742,0.285438,-0.774213,-1.02667,1.10189,0.226839,0.123156,-0.154676,-0.311488,-0.0754024,1.35027,1.75353,0.467587,0.956288,0.25336,0.898702,1.58143,-0.219397,1.10255,-0.305783,-1.27944,-0.810688,0.750608,-0.0621716,-0.299418,1.61382,-0.741098,-2.06447,0.374351,0 +-0.924986,2.14172,1.56484,0.305851,-0.163793,0.888455,0.296808,-1.97611,0.768764,-1.44785,-2.59397,-1.59023,-3.35534,-2.16653,-2.37784,-0.687419,-0.0231829,-0.405785,-2.20876,-2.63967,0.246904,0.314982,-0.0694653,-0.698182,0.536275,0.957725,0.190178,0.933208,0.626557,0.250177,-0.363541,-0.236434,1.2796,-0.549544,1.08769,-1.00203,2.17606,0.637052,2.23417,0.950636,1.99933,-0.20319,-2.81724,-2.4679,-2.15367,-2.13604,-0.648103,1.08074,-2.3067,-2.30843,-0.608357,0.565857,0.366674,-1.92325,-0.330943,0.602104,0.234724,2.21866,0.946777,0.082787,-0.593105,0.637449,0.326064,-0.0307401,1.67321,-0.49923,-0.145623,0.926725,1.63468,1.08695,1.87201,1.63937,-2.92769,-1.88507,-2.72751,-0.515724,0.376934,-2.25391,-1.90314,-2.3507,0.760225,0.212169,-0.644993,-0.694955,0.292381,0.60759,1.87895,1.16441,0.0947904,0.078747,0.48341,-0.07935,0.312587,-2.67039,2.22575,-0.838294,1.70121,0.0207206,1.79421,0.322788,2.04732,0.00551128,-2.64094,-2.58026,-2.36794,-1.62381,-0.525717,0.902385,-2.3132,-2.24298,-2.3546,0.0832682,0.518269,0.308115,0.00807071,-1.86012,0.232197,0.927598,0.446232,0.444537,0.433489,-0.140253,0.0344574,1.73222,-0.461402,-0.539898,-0.654363,0.0390743,-2.46271,1.58135,1.76241,0.518607,0.209438,-1.03027,-1.67968,0.988709,0.404855,1.71312,0.273897,-0.78951,-1.0135,1.10189,0.216592,0.123156,-0.154676,-0.327558,0.139517,1.35027,1.75353,0.502444,0.942037,1.35472,0.237779,1.59541,-0.244875,1.11316,-0.385121,-1.30177,-0.654688,0.735361,-0.0392663,-0.218231,1.677,-0.616248,-2.08171,0.521982,0 +-1.09084,2.14172,1.66603,0.319093,0.0103926,0.823256,0.202965,-1.84416,0.602653,-1.39265,-2.49362,-2.10859,-3.11392,-2.31071,-2.28606,-0.483891,0.443453,-0.986835,-1.78001,-2.69748,-0.575319,0.33783,0.304699,-0.7834,0.525613,0.968908,0.558298,-0.758353,0.59212,0.284068,-0.363541,-0.342907,1.16761,-0.414647,1.12537,-0.561707,2.17606,1.04189,1.88717,0.456003,2.09355,0.0941665,-2.64605,-2.38915,-2.32973,-2.02362,1.66112,0.743478,-1.68757,-2.27829,-1.45877,0.356932,0.727771,-2.03193,-0.353721,0.810262,0.109045,1.6649,0.88661,0.126366,0.494166,0.854162,0.361941,-0.000663455,1.67321,-0.362972,-0.145623,0.909498,1.42952,0.668858,1.98778,2.08371,-2.77774,-2.31253,-2.62942,0.0693602,0.623052,-2.20701,-1.93869,-2.50745,0.187976,0.32841,-0.720551,-0.746235,0.302517,0.550725,1.50046,-0.0133799,0.0947904,0.0943945,0.401978,-0.445428,0.253152,-2.53763,2.44044,-0.717413,1.67057,0.18789,1.74793,0.0143952,2.113,-0.163738,-2.5003,-2.38238,-2.35553,-1.46172,1.24266,1.20789,-2.28723,-2.26981,-2.38198,-0.197915,0.201874,0.505605,-0.0123636,-2.01418,0.198986,0.306299,0.0827539,0.0747,0.453032,-0.151641,0.0344574,1.73222,-0.512686,-0.742733,-0.564895,0.0955094,-2.2814,1.61232,1.68665,0.564489,-0.779574,-2.10225,-2.09867,1.1808,0.476078,1.9337,0.827851,0.296548,-0.342057,0.714186,0.0526356,0.123156,-0.154676,-0.327558,-0.505242,1.02308,1.44339,0.560538,1.08456,1.38371,0.267821,2.00071,-0.168442,1.39957,-0.242313,-1.19012,-0.515108,0.628635,-0.119435,-0.197935,1.71911,-0.428974,-1.99552,0.835698,0 +-0.648559,2.14172,1.69495,1.6698,0.0103926,-0.567663,0.202965,-1.88375,0.581889,-1.35125,-2.44903,-2.08448,-3.03848,-2.28668,-2.27295,-0.421266,0.452095,-0.956254,-1.76776,-2.72638,-0.562471,0.349255,0.32608,-0.851575,0.525613,0.957725,0.536644,-0.789678,-0.320459,0.309487,-0.342116,-0.236434,1.74357,-0.324716,0.497293,-0.659556,-0.575811,1.02962,1.90105,0.468369,2.09355,0.0941665,-2.5838,-2.3329,-2.31715,-1.98989,1.67602,0.743478,-1.70103,-2.27829,-1.433,0.345936,0.738391,-2.06815,-0.0234474,0.778238,0.118022,1.69008,-0.57244,0.159051,1.71231,0.827073,1.68941,-0.0908933,0.374327,-0.680906,-0.145623,0.909498,1.43978,0.668858,2.00065,2.06838,-2.71526,-2.30032,-2.61541,0.236527,0.614262,-2.16011,-1.90314,-2.56774,0.176531,0.338977,-0.695365,1.36651,0.312652,0.541248,1.52569,-0.100624,0.947061,0.0552758,0.367079,-0.208554,1.20412,-2.48452,1.42834,-0.606606,-1.06706,0.168223,1.74793,0.0336697,2.113,-0.0579573,-2.46194,-2.33582,-2.31831,-1.41185,1.3409,1.23445,-2.28723,-2.26981,-2.40937,-0.175421,0.212081,0.515999,-0.0225808,-2.16823,0.174078,0.278058,0.0743009,-0.0098342,0.462804,-0.197196,-0.0789187,0.598874,-0.615254,-1.61202,-0.500989,0.143882,-2.15588,0.414738,1.30788,1.89507,-0.79479,-2.08902,-2.07328,1.14879,0.516778,1.92073,0.827851,0.281252,-0.328891,0.675416,0.0423883,0.112419,-0.154676,2.96693,-0.720161,1.06769,1.48385,0.572157,0.97054,0.267851,0.838618,1.98673,-0.130225,1.37835,-0.162975,-1.13429,-0.662898,0.613388,-0.165246,-0.197935,1.69806,-0.553823,-2.04723,0.651159,0 +-0.482702,2.11908,1.57929,1.6698,-0.163793,-0.589396,0.315577,-2.0157,0.768764,-1.40645,-2.56052,-1.61434,-3.24972,-2.1425,-2.35162,-0.640451,0.0113827,-0.390494,-2.23326,-2.65412,0.234057,0.314982,-0.0801557,-0.774878,0.525613,0.968908,0.179351,0.870558,-0.320459,0.275596,-0.342116,-0.108666,1.72757,-0.441627,0.459608,-1.00203,-0.575811,0.673855,2.23417,0.93827,1.99933,-0.20319,-2.73943,-2.4229,-2.14109,-2.10232,-0.618306,1.10884,-2.32016,-2.29336,-0.634127,0.554861,0.387915,-1.95948,-0.0348361,0.586092,0.225747,2.20607,-0.557398,0.115472,1.74251,0.628419,1.68941,-0.151047,0.374327,-0.862583,-0.145623,0.943952,1.64494,1.10303,1.88487,1.63937,-2.8902,-1.88507,-2.69948,-0.348557,0.385724,-2.21874,-1.92684,-2.39893,0.74878,0.222736,-0.670179,1.32549,0.302517,0.617067,1.89157,1.10625,0.93035,0.016157,0.436877,0.114456,1.25167,-2.61729,1.6737,-0.697267,-1.11814,0.0305541,1.79421,0.322788,2.03638,0.0478237,-2.5898,-2.51042,-2.33071,-1.57394,-0.476595,0.942233,-2.30021,-2.24298,-2.36829,0.0607735,0.508063,0.29772,-0.00214647,-1.98337,0.207289,0.918184,0.446232,0.43397,0.44326,-0.208584,-0.107263,0.198057,-0.543456,-1.38021,-0.577676,0.0874473,-2.35114,0.414738,1.15637,1.94095,0.209438,-1.04351,-1.65428,0.972701,0.384505,1.68717,0.285438,-0.774213,-1.03983,1.11481,0.226839,0.123156,-0.154676,-0.327558,-0.0754024,1.36514,1.76701,0.467587,1.11306,0.267851,0.883681,1.58143,-0.206659,1.09194,-0.289916,-1.25711,-0.736793,0.750608,-0.0736243,-0.299418,1.63488,-0.741098,-2.09895,0.337443,0 +0.45715,-0.892923,-1.2542,1.70953,-0.163793,0.616791,-1.31729,-2.91296,-1.49449,-1.53064,-2.57167,-2.97655,-3.32516,-2.63512,-2.31228,-0.640451,-1.50086,-3.58627,-2.88251,-2.78419,-2.87497,-1.29583,-2.11134,-0.774878,0.109764,-1.80456,-1.98606,-0.883654,0.867615,0.0468315,-0.342116,-0.939159,0.23968,-1.23302,1.70321,0.832643,1.78293,-1.89013,-0.80553,-2.07899,-1.07456,-0.11269,-2.7083,-2.62539,-2.40518,-2.10232,-0.960965,-2.78367,-3.06042,-2.53447,-3.13382,-1.34745,-1.47067,-1.9474,0.933206,-3.33689,-1.47092,-0.87732,0.6309,0.159051,1.63177,-1.01499,0.397819,0.728695,1.6487,-0.0450375,-0.145623,-2.62209,1.17307,-2.57939,-1.09957,-0.996032,-2.9027,-2.8255,-2.71349,-0.515724,-1.44259,-2.73464,-2.87482,-2.37482,-2.10102,-1.2884,-2.97469,1.39728,0.0592598,-1.39214,-1.85552,-1.54015,1.11417,0.509053,-0.621737,-0.230088,1.18035,-2.67039,-0.197163,1.31742,1.0168,-1.34613,-0.951811,-1.45047,-1.09412,-0.10027,-2.61537,-2.51042,-2.39275,-2.30958,-0.902315,-2.37844,-2.30021,-2.28323,-2.29983,-2.4024,-1.62505,-1.47969,-0.645829,-2.75363,0.18238,-1.5576,-1.43878,-1.65825,0.042618,1.35166,0.790298,0.750908,-0.758848,1.11176,-0.232585,0.0148879,-2.53245,1.87042,0.190501,1.44772,-3.59445,-3.30657,-3.06362,-2.38891,-1.7522,-2.07561,-1.98808,-3.42052,-3.06734,-2.01267,-1.36149,-1.32629,-0.114399,-0.295417,-0.218682,-2.47195,-2.25125,-2.11181,0.870777,1.71701,1.30427,-1.19974,-0.805385,-1.24179,-0.289916,-1.30177,0.929948,-0.0727097,1.27779,0.776304,-0.365642,-0.741098,-0.254415,-1.17578,0 +-0.26156,-0.858953,-1.23975,1.47117,-0.163793,0.964521,-1.32668,-2.96574,-1.47373,-2.51039,-2.50477,-2.95244,-3.32516,-2.51497,-2.27295,-0.546515,-1.48358,-3.55569,-2.90701,-2.72638,-2.84928,-1.29583,-2.11134,-0.87714,0.109764,-1.82692,-1.99688,-0.914979,1.02258,0.267123,0.000675141,1.48844,1.2476,-0.00096355,0.823895,0.416784,2.13237,-1.87786,-0.944329,-2.09136,-1.05101,0.986236,-3.12849,-2.47915,-2.35488,-2.0461,-0.931168,-2.76962,-3.14118,-2.70024,-3.10805,-1.34745,-1.48129,-2.00778,1.06987,-3.3529,-1.48887,-0.87732,1.11224,-0.309427,1.96399,1.45915,-1.18079,0.209873,1.68546,0.227478,-0.145623,-2.62209,-1.03239,-2.57939,-1.08671,-0.781523,-2.82772,-2.74,-2.72751,-0.264974,-1.42501,-2.67602,-2.87482,-2.47128,-2.08957,-1.29896,-2.9621,0.874221,-0.265083,-1.40162,-1.85552,-1.58377,0.93035,0.133513,1.86775,1.38496,1.79848,-2.61729,-0.105154,-0.656973,1.71143,-1.3363,-0.951811,-1.45047,-1.08317,1.10563,-2.53866,-2.40566,-2.31831,-2.24723,-0.869567,-2.35187,-2.28723,-2.26981,-2.34091,-2.39115,-1.62505,-1.49009,-0.145187,-1.81391,0.0744453,-1.57643,-1.45569,-1.66882,0.0817051,1.32888,0.582442,0.999692,1.52841,0.242464,-1.5107,0.329312,-2.68586,1.54005,0.304132,1.06919,-3.54881,-3.2404,-3.00014,-2.38891,-1.74203,-2.06263,-1.99962,-3.45112,-3.0805,-2.01267,-1.36149,-1.32629,-0.114399,-0.279346,-0.505242,-2.45708,-2.25125,-2.12342,0.927785,1.3982,1.61971,-0.193488,1.34748,1.12377,-0.178843,-1.24594,-0.613635,-0.621588,-0.8295,0.329778,0.455626,0.757097,0.279983,1.29705,0 +-0.316846,-0.892923,-1.23975,1.36523,-0.128956,0.99712,-1.34545,-2.97893,-1.46335,-2.53799,-2.50477,-2.96449,-3.34025,-2.52698,-2.27295,-0.546515,-1.48358,-3.55569,-2.93151,-2.72638,-2.83643,-1.30726,-2.11134,-0.868619,0.109764,-1.83811,-2.00771,-0.930642,1.05702,0.284068,-0.342116,0.604707,1.39159,-0.189819,0.836457,2.37377,2.13237,-1.89013,-0.944329,-2.10372,-1.05101,-1.63826,-3.14405,-2.47915,-2.36746,-2.03486,-0.931168,-2.74152,-3.1681,-2.73038,-3.10805,-1.33646,-1.49191,-2.01985,1.14959,-3.36891,-1.50683,-0.87732,1.12728,-0.331217,1.95393,-0.807306,-1.00141,0.209873,1.68546,2.1805,-0.145623,-2.63932,-1.00162,-2.57939,-1.07384,-0.996032,-2.81523,-2.75222,-2.71349,-0.18139,-1.40743,-2.67602,-2.88667,-2.47128,-2.06668,-1.30953,-2.9621,0.863965,-0.29549,-1.42058,-1.86814,-1.58377,0.896928,0.141337,-0.586837,0.329796,1.82226,-2.61729,0.324224,1.98226,1.73186,-1.3363,-0.951811,-1.46974,-1.07223,-0.650331,-2.52587,-2.39402,-2.31831,-2.24723,-0.853193,-2.33859,-2.28723,-2.28323,-2.3546,-2.39115,-1.61485,-1.49009,-0.186056,-1.81391,0.082748,-1.58584,-1.48105,-1.67938,0.101249,1.31749,0.421826,1.02733,1.02582,-0.192182,-1.66407,0.32125,-2.71376,1.52973,0.796537,1.76889,-3.53359,-3.2404,-3.01284,-2.38891,-1.73185,-2.06263,-2.01116,-3.46641,-3.0805,-2.0256,-1.37173,-1.33703,-0.154676,-0.295417,-0.505242,-2.47195,-2.25125,-2.14666,1.08456,1.3982,1.64975,-1.17179,-0.359525,-1.06146,-0.194711,-1.23478,-0.654688,-1.65836,-0.348488,-1.0098,1.65594,0.00799982,-2.23686,-1.32341,0 +0.0148667,-0.892923,-1.13855,0.186671,0.463276,-0.86106,-0.247481,-0.207987,2.34682,-0.178318,0.472088,-0.0713164,0.507411,-0.136001,0.323133,-0.530859,1.35944,-0.222295,0.620992,-0.11043,0.0541959,1.4574,0.646793,-0.723747,-0.849887,0.432109,-0.751774,-0.899317,0.110003,-0.876697,-0.363541,1.27549,-0.512264,-0.855311,0.133005,-0.219235,-0.53213,-0.123555,-0.472412,-0.397239,-1.06278,1.29652,0.264137,0.299562,-0.116405,0.258653,2.92746,1.67094,0.492851,-0.228829,-0.118726,2.12729,0.876457,0.817743,-0.945935,0.185788,-0.393671,-0.87732,-0.422022,-0.734326,-0.0394021,1.17923,-0.678508,-0.963115,0.264044,0.318316,-0.145623,-1.15777,-0.345107,-1.21255,-1.07384,-0.582336,0.571036,-0.297329,0.411276,-0.0978067,2.01186,-0.155112,0.300925,0.458812,1.32103,0.296707,-0.141274,-0.684699,-0.79214,-0.0368743,-1.52749,0.291974,0.395592,-1.00875,-0.470506,1.06195,0.21749,0.131011,0.324224,-0.767781,-0.413301,1.70225,-0.936384,-0.255448,-1.08317,1.25373,0.55538,0.527554,0.175692,-0.339557,0.440339,1.15476,0.0760554,0.104731,-0.0407295,0.0832682,1.13065,1.00453,-0.891041,-0.0885156,-0.847155,-0.315,-0.576578,-1.41522,-0.866156,-0.960235,-1.01427,-0.935289,0.984798,-1.0325,-0.424302,-0.880011,-0.0777921,0.166962,0.436703,-0.731679,0.2703,0.0681733,-0.168765,-0.548027,0.852546,1.09032,1.05866,0.250658,0.158236,-0.371388,0.00139931,1.03577,-0.114399,-0.295417,-0.361962,-1.35652,-1.53659,-0.520018,-0.0128447,0.543192,0.553219,0.519276,1.37296,1.08133,-0.258181,-0.620707,-0.851741,0.796348,0.304314,0.85749,-0.197177,0.320124,0.538563,0.669613,0 +0.236008,0.18279,0.856463,0.0939753,-0.163793,-0.719795,-1.41114,0.530931,-1.4322,1.13261,-0.0742272,-0.408854,-0.216855,0.344597,0.336244,0.0640714,-1.50951,0.557536,0.179993,0.265342,-1.25622,-1.36438,-1.24541,1.95211,1.05875,-1.33486,-1.61794,-0.97763,-1.26747,0.224759,-0.363541,-0.981748,-0.144292,0.385741,-1.34927,1.59097,-0.575811,-1.48529,0.665739,-1.48543,0.538939,-0.422975,0.2797,0.243313,-0.116405,0.0675271,-0.901372,-1.33628,0.627444,0.705484,-0.711437,-1.39144,-1.37508,0.238149,2.26569,-0.118443,-1.54274,-0.600444,-1.36965,1.35748,-0.542768,-0.437088,0.577207,-0.075855,-1.47597,0.908766,-0.145623,0.0136805,0.629399,-0.103003,0.68852,0.735363,-0.391113,-0.00420797,0.817637,-0.0142232,-1.40743,0.665648,-0.244165,-0.288784,-1.54021,-1.3835,-0.733144,2.04341,1.36677,-1.42058,-0.29108,-0.914901,0.0446568,0.250869,-0.540305,-0.574631,-0.983113,0.542591,-1.11726,1.60955,-1.30201,-1.3953,1.02285,-1.49866,0.405454,-0.0368011,0.401957,-0.0311534,0.0640208,0.982102,-0.361978,-1.06345,0.855159,-0.056255,0.096186,-1.41263,-1.47196,-1.38614,0.958268,0.496885,1.68517,-1.51053,-1.53176,-1.59485,0.374858,1.35166,0.232866,0.695623,-0.881929,0.850968,0.956063,0.184193,0.703235,-1.2371,-1.87381,-0.639915,-0.460047,-0.0641697,0.618433,0.284372,-1.56906,-0.129342,-1.21485,0.0670993,-0.328891,-1.45696,-1.44346,-1.41218,0.00643071,1.16702,1.85887,-0.00312447,-0.0803097,-1.54248,-1.06749,-1.25377,-1.21925,0.365543,-1.06016,-0.0749237,-0.226446,-0.620707,-0.786056,0.140743,1.20907,0.816897,-0.639398,-0.179275,0.124835,-1.2865,0 +0.733577,-0.0323523,0.798636,-0.780012,-0.163793,-0.784994,-1.3736,0.689271,-1.48411,0.870426,-0.129974,-0.420908,-0.322477,0.380642,0.244464,-0.264706,-1.55271,0.404628,0.0942426,0.482134,-1.29476,-1.3758,-1.27748,2.17368,2.51955,-1.22302,-1.6829,-0.883654,-1.78403,0.156977,0.279193,1.57362,-1.80817,0.0889677,-0.934733,-0.0724618,-0.575811,-1.47302,0.762898,-1.53489,0.409387,0.650094,0.108512,0.243313,-0.0283746,-0.123599,-0.901372,-1.46275,0.640904,0.795901,-0.724322,-1.41343,-1.35384,0.431347,1.51403,0.137752,-1.50683,-0.789224,-1.4599,1.00885,-0.935393,1.33274,-1.61132,0.0294132,-1.40244,0.182058,-0.145623,-0.00354679,0.0446954,-0.215565,0.585608,0.689397,-0.366122,0.093499,0.579425,-0.515724,-1.47775,0.571847,-0.338964,-0.288784,-1.5631,-1.36237,-0.833888,0.781916,1.38704,-1.36371,-0.581259,-0.609547,-1.29224,0.258693,1.77469,1.88024,-1.25652,0.277056,-0.135823,-0.858441,-1.28158,-1.43464,1.02285,-1.47938,0.241267,1.29604,-0.0455274,-0.124271,0.126061,0.745201,-0.574838,-1.34239,0.881129,-0.0965015,0.096186,-1.46887,-1.49237,-1.39654,1.30565,0.527696,2.46562,-1.42581,-1.46414,-1.60542,0.55075,0.292516,0.147834,-1.14261,1.76431,1.22766,0.751564,0.168069,0.731128,-1.20613,0.550335,0.541548,-0.505694,-0.0244668,0.593039,0.36441,-1.56906,0.0912347,-1.18023,0.128286,-0.394719,-1.48281,-1.43322,-1.42292,-0.114399,0.5724,0.927555,-0.151849,-0.296055,-1.62381,-1.06749,-1.22478,-1.23427,0.449397,1.29653,0.635804,-0.400988,-0.89983,-0.851741,0.0797565,-0.932575,0.329778,0.28716,1.31892,0.641995,1.16787,0 +0.567721,-0.892923,-1.18192,0.173429,0.602625,-0.828461,-0.294403,-0.0760374,2.10803,-0.0403251,0.527835,0.326495,0.628122,-0.232121,0.231352,0.330224,1.18661,0.221138,0.535242,-0.139336,-0.0614292,1.5031,0.775078,-0.7834,-0.849887,0.107792,-0.611023,-0.914979,0.127221,-0.834334,-0.363541,-0.502617,0.0156963,-0.756386,0.145567,0.294472,-0.523394,0.342624,-0.569571,-0.533263,-1.06278,0.663022,0.419762,0.254563,0.109958,0.359837,1.49724,0.687269,-0.0859025,-0.168551,-0.105841,2.03933,0.749012,0.648695,-0.968712,0.457995,-0.312877,-0.864735,-0.40698,-0.614482,-0.0796714,-0.9879,0.792472,-0.948077,0.288552,0.0458009,0.26895,-1.31282,0.916621,-1.38944,-1.07384,-0.888777,0.658505,-0.138555,0.439301,3.99778,2.02065,-0.178562,0.537921,0.47087,0.56566,0.32841,0.123178,-0.746235,-0.741461,-0.27381,-1.41395,-0.973064,0.378881,-0.977459,-0.621737,-0.29469,0.205603,0.330163,-0.350512,0.823819,-0.362226,2.04642,-0.967238,-0.216899,-1.08317,0.492104,0.568166,0.515914,0.0640208,0.109309,4.02621,1.26102,0.0241151,0.212055,0.0688029,0.398194,0.936727,0.962951,-0.911475,-0.319595,-0.872063,-0.512686,-0.458236,-1.07708,-0.856384,-0.948846,-0.995375,0.12895,-0.779361,0.590181,-0.219804,-0.799389,0.145358,0.18761,-1.28671,-0.662856,0.0420666,-0.0377011,-0.105282,-0.692096,1.41216,0.013384,0.839391,-0.07057,0.197733,-0.410158,0.237086,1.60481,-0.114399,-0.295417,-0.576881,-1.38626,-1.42872,-0.531637,-0.0128447,0.543192,0.538199,-1.04601,0.188246,-1.15693,0.0274348,-0.464399,-0.827109,0.887828,1.31215,1.10105,-0.807863,-0.553823,0.19379,-0.806699,0 +-0.0404188,-0.0323523,-0.863873,0.186671,-0.163793,-0.850194,2.16429,-0.273962,0.176994,-0.730288,0.60588,0.531429,0.190545,0.0682531,0.00845638,-0.0924892,-0.610799,-0.298749,0.253493,0.424323,0.272599,1.91437,0.550579,-0.800444,-0.849887,1.52807,0.742358,3.14164,0.110003,-0.876697,-0.342116,1.30743,-0.544262,-0.801352,0.145567,-0.145849,-0.53213,-0.123555,-0.930449,1.11139,-0.332587,1.27066,-0.249425,0.42331,0.273442,0.685876,-0.946066,0.420273,-0.166659,-0.334316,0.138974,0.851754,1.60927,0.250224,-0.957323,0.409958,1.83264,0.544815,-0.40698,-0.930433,-0.0494694,1.23341,-0.822018,-0.955596,0.276298,0.318316,-0.145623,-1.26114,-1.03239,-0.39245,-0.700789,-0.61298,0.483568,0.2767,-0.0931708,-0.515724,-0.414162,0.349069,0.526071,0.53116,0.828895,2.28337,0.160957,-0.705211,-0.913768,2.05763,0.112647,2.85113,0.378881,-0.969635,-0.133145,1.12655,0.21749,0.197395,0.262884,-0.757707,-0.392871,0.069888,-0.967238,1.96112,-0.119944,1.23257,0.248534,0.434436,0.113653,0.0843718,-0.771324,0.517187,-0.0408102,0.212055,0.109878,0.578151,0.936727,1.09808,-0.625394,0.21959,-0.880366,1.50183,1.70572,0.782674,-0.846612,-0.960235,-0.995375,-0.893825,1.06685,-0.916591,-0.782174,-0.855825,-0.259102,0.177286,0.436703,-0.685797,-0.186167,-0.0377011,-0.270339,-1.44446,-0.317557,-1.43983,0.562415,-0.0858666,-0.105076,0.714186,2.0406,1.58334,1.0939,-0.215064,3.07675,-0.00312447,0.135436,1.02529,-0.0128447,0.543192,0.553219,0.477349,1.37296,1.10255,-0.226446,-0.241101,-0.83532,0.689621,0.20124,0.7966,-0.134002,0.382549,0.521324,0.743429,0 +0.236008,0.205437,0.856463,-1.54806,-0.128956,2.27937,-1.40175,0.768441,-1.35953,0.373652,-0.286064,-0.119536,0.356522,0.392657,0.113349,2.60035,-1.50951,0.756317,-0.248757,0.67002,-0.498235,-1.36438,-1.53405,-0.791922,0.717543,-1.48024,-1.59628,-0.961967,1.19477,1.34316,-0.363541,-0.971101,-0.144292,1.4829,-1.36183,1.59097,0.140548,-1.48529,0.665739,-1.47307,0.550716,-0.422975,0.248575,0.0183164,0.109958,-0.0336573,-0.91627,-0.577447,0.425554,0.615066,-0.170266,-1.39144,-1.47067,-0.220696,0.147384,-0.518747,-1.52478,-0.562689,2.25541,1.21585,-0.905191,-0.419028,0.577207,1.96184,-0.532439,0.908766,4.78779,0.0136805,0.619141,-0.103003,0.701384,0.750686,0.158687,0.31334,0.383252,2.66045,-1.39864,0.41942,-0.374513,-0.107914,-1.16253,-1.37294,-0.808702,-1.15648,1.14378,-1.43953,-0.265847,-0.638628,-1.20868,1.97992,-0.528672,-0.574631,-1.07821,0.516038,-1.14793,1.60955,1.67057,-1.40514,1.02285,-1.48902,0.4164,-0.0156449,-0.0583127,-0.275588,0.0516129,0.558174,-0.558464,-0.704819,0.842174,-0.083086,0.109878,-1.24392,-1.34948,-1.44851,1.39761,0.527696,0.140867,-1.51994,-1.51486,-1.58428,1.17614,1.7161,2.10357,0.695623,-0.881929,0.850968,1.05831,1.38545,0.535872,-1.22678,-1.87381,-0.616974,0.224653,0.385796,0.70731,0.268364,-1.57923,-0.142317,-1.56107,-0.65184,-0.974006,-1.45696,-1.44346,-1.41218,-0.154676,-0.295417,-0.576881,0.011748,-0.0668256,-1.53086,-1.06749,-0.992919,-1.21925,0.365543,-1.04742,-0.0643158,5.32719,2.63944,2.00553,0.15599,1.20907,0.837194,-0.639398,-0.179275,0.124835,-1.2865,0 +0.0148667,0.703662,1.53592,0.199913,-0.163793,-0.89366,0.95371,0.174667,0.187376,0.111467,0.527835,0.519374,0.733744,0.0322082,0.113349,-0.40561,-0.420688,0.129394,-0.310007,-0.240505,0.349682,0.532042,0.593341,-0.860097,-0.871212,0.454475,1.54356,3.84645,0.110003,-0.775025,-0.342116,1.33937,-0.544262,-0.630483,0.120444,-0.145849,-0.540866,1.79023,-0.916569,2.37271,0.633158,1.24481,0.559825,0.142065,0.273442,0.393566,-0.946066,-0.0575086,-0.341631,-0.0479947,0.280709,0.422908,0.653427,0.322673,-0.957323,0.409958,0.970843,1.57681,-0.437064,-0.461955,-0.00920017,1.28759,-0.822018,-0.933039,0.251791,0.272897,-0.145623,2.994,-1.03239,3.0166,0.958664,0.536176,0.708486,0.557607,0.453314,-0.348557,-0.308682,-0.225463,0.253526,0.458812,0.806005,0.751104,0.0602135,-0.643675,-0.660375,0.882435,1.13458,1.29528,0.395592,-0.946164,0.82077,1.14809,0.229377,0.489484,0.232214,-0.838294,-0.454162,-0.136615,0.328635,1.24797,0.394508,1.21141,0.568166,0.469355,0.0516129,-0.102655,-0.771324,-0.332904,-0.00185501,0.104731,0.233101,0.600646,0.946934,0.796643,-0.942127,-0.88959,-0.921879,1.1347,0.767445,1.62802,-0.846612,-0.960235,-0.995375,-0.824719,1.14891,-0.800686,-0.00252401,-0.702644,0.340615,0.146314,0.436703,-0.720208,-0.079658,0.544608,-0.117978,1.62902,-0.0631864,-1.56958,0.354682,0.158879,-0.18407,2.43301,1.07736,0.520412,1.89943,-0.215064,1.93051,2.48058,1.71307,2.05937,-0.0270967,0.5287,0.553219,0.784815,1.3857,1.14498,-0.0995054,-0.30809,-0.802477,0.582895,0.0867131,0.73571,-0.134002,0.382549,0.504085,0.743429,0 +0.733577,-0.00970569,0.798636,-1.58779,-0.128956,2.22504,-1.36421,0.90039,-1.40106,0.277058,-0.486751,0.0130679,0.281078,0.380642,0.00845638,2.67863,-1.55271,0.572827,-0.297757,0.800095,-0.408305,-1.36438,-1.4806,-0.681138,0.781519,-1.42432,-1.66125,-0.883654,1.07424,1.36858,0.0435241,1.58426,-1.79217,1.46492,-0.934733,-0.0969241,0.210437,-1.47302,0.749019,-1.52253,0.421165,0.637165,0.248575,-0.0491826,0.22314,-0.0898708,-0.91627,-0.675814,0.371716,0.46437,-0.0671862,-1.40243,-1.46005,0.044951,0.170161,-0.39065,-1.48887,-0.764053,2.16516,1.25943,-0.935393,1.33274,-1.57545,1.95432,-0.471171,0.136639,2.38327,0.0136805,0.0344374,-0.199485,0.598472,0.689397,-0.00375388,0.374406,0.215102,2.07536,-1.46896,0.255268,-0.279715,0.000607966,-1.13964,-1.3518,-0.644993,-1.09494,1.11337,-1.40162,-0.556026,-0.23149,-1.25882,1.97992,1.79795,1.88024,-1.23274,0.502761,-0.105154,-0.878588,1.58885,-1.43464,1.03828,-1.46974,0.252213,1.29604,-0.14781,-0.298867,0.0640208,0.246462,-0.738576,-1.03689,0.725308,-0.0160084,0.0140367,-1.05271,-1.31886,-1.41733,1.39761,0.589317,0.165775,-1.44463,-1.44723,-1.59485,1.21523,1.70471,2.08468,-1.11497,1.77457,1.25664,1.135,1.36127,0.466137,-0.77252,0.550335,0.518607,0.194222,0.425499,0.643826,0.348402,-1.57923,0.0652845,-1.57261,-0.758917,-0.934509,-1.46989,-1.43322,-1.42292,-0.154676,-0.295417,-0.0037626,-0.136977,-0.269087,-1.60057,-1.05324,-1.00741,-1.21925,0.463373,1.29653,0.646412,5.08918,2.66177,1.9809,0.0797565,-0.95548,0.309481,0.266102,1.2565,0.659233,1.14941,0 diff --git a/data/oocytes_merluccius_nucleus_4d.arff b/data/oocytes_merluccius_nucleus_4d.arff new file mode 100755 index 0000000..85cae0a --- /dev/null +++ b/data/oocytes_merluccius_nucleus_4d.arff @@ -0,0 +1,1066 @@ +@relation oocytes_merluccius_nucleus_4d +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'f35' real +@attribute 'f36' real +@attribute 'f37' real +@attribute 'f38' real +@attribute 'f39' real +@attribute 'f40' real +@attribute 'f41' real +@attribute 'clase' {0,1} +@data +-0.665504,0.870254,0.20506,-0.59206,-0.894912,-0.676029,0.892043,0.275975,-0.59303,-0.963078,-0.668183,0.93848,0.524913,-0.557317,-1.03613,-0.65299,0.935562,0.642675,-0.578387,-1.0401,-0.00477764,0.308829,0.0152126,-0.139392,0.770803,-0.161931,0.625664,-0.06147,0.154245,0.953174,0.0190807,0.32742,-0.0143929,-0.118442,0.762846,0.850973,0.947506,0.910474,0.843847,0.827445,0.848265,1 +-0.570261,0.430889,-0.0380514,-0.479085,-0.57148,-0.588732,0.478346,-0.016592,-0.482054,-0.705954,-0.586073,0.514118,0.00721638,-0.514228,-0.797769,-0.557597,0.439974,-0.126768,-0.537407,-0.753481,-0.0943438,-0.0268667,0.304491,-0.290927,0.559966,-0.141241,-0.0703955,0.281272,-0.324181,0.534548,0.0236285,-0.126248,0.30698,-0.380753,0.419105,0.609202,0.47085,0.434737,0.363692,0.28648,0.262781,1 +-0.351778,0.856641,1.09246,-0.699407,-0.512649,-0.331987,0.849474,1.10377,-0.711472,-0.476757,-0.359764,0.89869,1.45172,-0.618437,-0.515008,-0.435777,0.93893,1.89174,-0.558157,-0.638437,0.811223,1.68412,-2.37651,1.81855,0.966977,0.722326,2.16994,-2.98272,2.66246,0.997202,0.799529,1.64941,-2.39232,1.87406,0.965877,0.363752,0.664865,0.863807,0.996262,1.06293,1.09806,1 +5.14133,-2.05074,-1.03991,-0.0824493,2.94055,5.01023,-2.04966,-1.04628,0.137773,3.03014,5.04656,-2.05755,-0.978631,0.599566,3.05374,5.17249,-2.06278,-0.914382,1.12185,3.1276,2.27306,-1.012,0.461694,-0.61346,-2.22967,2.82495,-0.182321,-0.537217,-0.310578,-1.66438,2.34214,-0.812312,0.412408,-0.589791,-1.72557,-3.59588,-2.15048,-1.72384,-1.60007,-1.56803,-1.55217,1 +-0.519916,0.697579,0.267789,-0.639777,-0.458336,-0.53025,0.717229,0.297234,-0.636429,-0.502824,-0.548831,0.79589,0.626373,-0.550121,-0.59258,-0.578347,0.846815,0.953803,-0.529561,-0.718288,0.200202,0.730263,-0.95903,0.473478,0.748614,0.290458,1.17394,-1.46057,1.00365,0.904647,0.197503,0.739428,-1.01349,0.514058,0.740187,0.435807,0.529911,0.607692,0.639977,0.656978,0.691012,1 +-0.584974,0.445532,-0.191026,-0.401973,-0.724395,-0.599146,0.474308,-0.138512,-0.425132,-0.782517,-0.591091,0.475207,-0.131556,-0.498046,-0.806875,-0.566832,0.437206,-0.251507,-0.460544,-0.712511,-0.0126138,-0.289488,0.421833,-0.4483,0.341383,-0.269958,-0.309279,0.502604,-0.478506,0.399924,0.0531741,-0.353827,0.483983,-0.487091,0.262042,0.779868,0.670052,0.458815,0.328819,0.30698,0.322342,1 +-0.588572,0.446871,-0.127208,-0.420094,-0.75545,-0.599326,0.455827,-0.109556,-0.437566,-0.766355,-0.589351,0.451549,-0.221961,-0.402473,-0.718348,-0.569591,0.435177,-0.305101,-0.299753,-0.63399,0.145669,-0.236934,0.348459,-0.372448,0.370109,0.0779319,-0.273616,0.566243,-0.467991,0.415007,0.331478,-0.343172,0.456866,-0.457736,0.274655,0.804786,0.687893,0.499256,0.382643,0.359224,0.349009,1 +-0.566503,0.322602,-0.457856,-0.379484,-0.458655,-0.590331,0.375126,-0.42873,-0.34674,-0.566003,-0.594659,0.425731,-0.3484,-0.314036,-0.668503,-0.573989,0.421044,-0.342422,-0.298454,-0.616308,-0.554698,-0.359494,0.42963,-0.505982,0.261872,-0.764756,-0.247569,0.554408,-0.478886,0.460315,-0.506052,-0.423223,0.502894,-0.538166,0.176044,0.543314,0.361513,0.117363,0.00876568,-0.00909555,-0.00154922,1 +0.0402503,0.138182,0.152555,-0.639487,0.356675,0.0354627,0.139662,0.175704,-0.632351,0.393487,0.00126945,0.185379,0.415566,-0.521155,0.358914,-0.095973,0.242731,0.739548,-0.467231,0.231177,0.763036,0.565923,-1.25665,0.548881,0.341783,1.08678,1.27586,-3.09131,1.73745,0.313707,0.71484,0.644405,-1.45521,0.660337,0.282242,-0.504143,-0.192006,-0.00976523,0.0911953,0.136073,0.158932,1 +-0.642246,1.11371,1.82957,-0.678528,-0.995912,-0.640806,1.08714,1.85085,-0.711642,-0.943038,-0.631541,1.0535,1.77267,-0.672861,-0.902798,-0.622635,1.0224,1.52083,-0.603055,-0.882318,0.922089,1.46439,-2.17429,1.6645,1.01109,0.806905,1.22725,-2.10357,1.57234,0.994563,0.932813,1.19636,-1.83631,1.3397,0.931584,0.843237,1.14566,1.31408,1.39192,1.42052,1.44051,0 +2.11276,-1.46222,-1.02287,0.63453,2.07876,2.04397,-1.42368,-1.01836,0.882498,2.06367,2.10141,-1.40815,-0.941539,0.874142,2.08199,2.06529,-1.34262,-0.883108,0.488111,1.99275,2.0268,-1.02201,0.523933,-0.640236,-1.87808,1.04989,-0.831583,0.373627,-0.644794,-0.875281,1.48618,-0.881878,0.466192,-0.61299,-1.50211,-2.24437,-1.75979,-1.49347,-1.42286,-1.4069,-1.3972,1 +-0.331918,-0.226699,-0.630102,-0.0366717,-0.0753131,-0.350728,-0.200442,-0.641656,-0.0439785,-0.103369,-0.356625,-0.201781,-0.685594,-0.0822098,-0.0930346,-0.334616,-0.238004,-0.739928,0.141351,0.0113645,-1.91125,-0.561545,0.414037,-0.504393,-0.0483561,-1.55544,-0.817929,0.515228,-0.675699,-0.398355,-2.37516,-0.539656,0.483004,-0.534668,-0.0133836,0.298904,-0.149757,-0.4292,-0.462643,-0.466911,-0.474967,1 +0.137633,-0.87854,-0.910954,0.795501,0.354536,0.141541,-0.883038,-0.929105,0.742676,0.32691,0.128237,-0.910135,-0.944708,0.671501,0.363702,0.153825,-0.94004,-0.929755,0.713981,0.434347,-1.72425,-0.902838,0.654669,-0.640666,-0.934352,-1.31797,-1.01672,0.679417,-0.75546,-1.08551,-1.95514,-0.946597,0.709343,-0.675339,-1.05373,-0.0185409,-0.608892,-0.803517,-0.850614,-0.870983,-0.882278,0 +0.765825,-1.22212,-1.0202,0.592011,1.044,0.737479,-1.20862,-1.04015,0.89935,0.990215,0.693301,-1.19146,-1.00752,1.39625,0.901838,0.75578,-1.18599,-0.936701,1.53687,0.91952,-2.41832,-0.843867,0.322122,-0.5315,-1.12702,-1.9617,-0.969365,0.362003,-0.65274,-1.3327,-2.68542,-0.711982,0.0883069,-0.349269,-1.03434,-0.854941,-1.2091,-1.22271,-1.17569,-1.14591,-1.13166,1 +1.0756,-1.46046,-0.964008,1.65728,0.98069,1.12065,-1.48948,-0.998701,1.05951,0.990525,1.14531,-1.5083,-1.01432,0.615798,1.07233,1.15953,-1.5119,-0.994843,0.851583,1.17779,-2.22962,-1.02297,0.574998,-0.645624,-1.59938,-1.79063,-1.11231,0.620706,-0.760618,-1.80377,-2.55607,-1.00646,0.631311,-0.667443,-1.5562,-0.793382,-1.15152,-1.13703,-1.0714,-1.02425,-0.979071,0 +1.65744,-1.64305,-1.00084,1.85899,1.06013,1.79685,-1.66088,-1.0221,1.39114,1.09552,1.70799,-1.59204,-0.983479,0.363842,1.084,1.35682,-1.48872,-0.894332,-1.0059,0.998181,-2.6381,-1.03268,0.624984,-0.65249,-1.78279,-2.32177,-1.11054,0.663055,-0.763566,-1.93108,-2.94025,-1.02754,0.690252,-0.678838,-1.71699,-0.881039,-1.28517,-1.22138,-1.1699,-1.13477,-1.05106,1 +-0.0133535,-0.656759,-0.73642,0.26628,0.206499,-0.0176712,-0.650551,-0.738029,0.137683,0.135324,-0.0254974,-0.668743,-0.760428,-0.325741,0.119691,0.008226,-0.719848,-0.788274,-0.65426,0.179002,-2.3202,-0.800248,0.553479,-0.603844,-0.657818,-1.86579,-0.916551,0.594319,-0.71518,-0.812602,-2.58244,-0.824766,0.598517,-0.628692,-0.733601,0.0144629,-0.457036,-0.661696,-0.715899,-0.728683,-0.733101,1 +0.166928,-0.847855,-0.841658,0.692022,0.355286,0.173915,-0.852713,-0.860809,0.441024,0.32629,0.177473,-0.886316,-0.885037,-0.161241,0.360044,0.248448,-0.991984,-0.910684,-0.376576,0.496867,-1.76142,-0.910204,0.605134,-0.636138,-0.914382,-1.26999,-1.01656,0.617887,-0.746385,-1.1105,-1.99801,-0.92005,0.642825,-0.658927,-0.988286,-0.10226,-0.635669,-0.814561,-0.860809,-0.869234,-0.887076,1 +0.258853,-0.974493,-0.956482,0.585644,0.803966,0.289099,-0.989246,-0.978311,0.780768,0.804416,0.308539,-1.02618,-0.98124,1.21394,0.828444,0.331838,-1.0703,-0.966937,1.97628,0.926946,-1.31806,-0.77529,0.650412,-0.63281,-0.751572,-0.841588,-0.978321,0.656558,-0.75609,-1.08572,-1.49918,-0.937521,0.673001,-0.677598,-0.994343,-0.59157,-0.9802,-1.05933,-1.06327,-1.06381,-1.08783,0 +1.01707,-1.38326,-1.02674,2.00424,1.00364,1.02639,-1.37789,-1.04441,1.6779,0.981799,1.01023,-1.40305,-1.03009,0.896051,0.964208,1.17651,-1.50341,-1.01823,1.59334,1.13681,-1.57882,-1.03586,0.608932,-0.657968,-1.51509,-1.10534,-1.10893,0.641796,-0.766545,-1.63038,-1.72667,-1.02596,0.686854,-0.685074,-1.46867,-0.773881,-1.18285,-1.22626,-1.20919,-1.21926,-1.24226,1 +-0.259403,-0.32764,-0.645884,-0.10113,0.0882068,-0.280622,-0.296505,-0.646154,-0.0534738,0.0016091,-0.282122,-0.317725,-0.642196,-0.28629,-0.108617,-0.199602,-0.482554,-0.740218,-0.618177,-0.0559525,-1.54226,-0.588542,0.602445,-0.565713,-0.087457,-1.35745,-0.675609,0.421473,-0.639427,-0.220552,-1.92374,-0.630801,0.536397,-0.59292,-0.246929,0.198403,-0.358554,-0.554688,-0.662256,-0.716059,-0.741207,1 +0.645014,-1.31118,-1.05019,1.76571,0.835401,0.607583,-1.27984,-1.05781,1.80505,0.747434,0.564304,-1.26824,-1.02238,1.32053,0.669762,0.599856,-1.31741,-0.995763,1.31579,0.766645,-2.00087,-1.00519,0.624914,-0.656708,-1.34809,-1.70516,-1.08578,0.660466,-0.765255,-1.47302,-2.1756,-1.01422,0.702166,-0.685874,-1.39906,-0.432818,-1.09049,-1.19962,-1.20076,-1.19968,-1.19921,1 +-0.361643,-0.0933443,-0.561015,-0.205759,-0.280992,-0.362472,-0.0859079,-0.574519,-0.169907,-0.330648,-0.376096,-0.0689664,-0.535398,-0.24534,-0.392058,-0.364781,-0.106728,-0.53047,-0.402073,-0.354596,-1.9044,-0.501814,0.622745,-0.527182,-0.0226087,-1.59413,-0.616258,0.564144,-0.617128,-0.174235,-2.32083,-0.542015,0.623415,-0.553569,-0.0466873,0.437806,0.127438,-0.151586,-0.268658,-0.312357,-0.342023,1 +-0.317215,-0.266909,-0.707794,0.0383115,-0.130446,-0.318084,-0.268778,-0.699907,0.0416396,-0.1635,-0.321423,-0.298734,-0.709923,-0.106328,-0.149887,-0.300713,-0.362533,-0.716759,-0.314996,-0.0628692,-1.75773,-0.611091,0.657608,-0.581985,-0.202461,-1.39349,-0.822097,0.648452,-0.707823,-0.447481,-2.11059,-0.724276,0.677608,-0.626163,-0.346221,0.335246,-0.0707452,-0.358514,-0.450449,-0.501984,-0.517287,0 +0.406671,-1.08733,-1.02428,0.67424,0.929985,0.390779,-1.06409,-1.03032,0.951084,0.895251,0.316025,-1.03814,-0.985478,1.25713,0.803726,0.271447,-1.04073,-0.938321,1.43961,0.769234,-1.7179,-0.79693,0.703196,-0.630891,-0.890434,-1.36716,-0.976112,0.69359,-0.753911,-1.09817,-2.05592,-0.942928,0.710682,-0.678828,-1.06886,-0.712891,-1.08621,-1.16413,-1.15011,-1.13801,-1.13116,0 +1.11898,-1.46807,-1.06148,1.98323,0.984758,1.14123,-1.4502,-1.0626,1.91732,0.889354,1.09314,-1.43463,-1.00953,0.514948,0.784746,1.13146,-1.50879,-0.986727,0.0110747,0.89942,-2.00584,-1.01405,0.631811,-0.654889,-1.50728,-1.62448,-1.09752,0.659327,-0.764026,-1.67113,-2.39462,-1.01641,0.702906,-0.683265,-1.47433,-0.660177,-1.20197,-1.22762,-1.22109,-1.20116,-1.18372,1 +1.37987,-1.5831,-1.09637,2.2394,1.20504,1.34241,-1.54234,-1.10203,2.46714,1.12371,1.18594,-1.49217,-1.04339,1.67622,0.969505,1.10163,-1.49838,-0.996292,0.47021,0.924897,-2.0446,-1.03016,0.625514,-0.657428,-1.59013,-1.61759,-1.09845,0.654349,-0.765115,-1.66443,-2.36625,-1.02991,0.700607,-0.685514,-1.56872,-0.927936,-1.37447,-1.36131,-1.32844,-1.3112,-1.30118,1 +0.931034,-1.3598,-1.04476,1.61203,0.961379,0.879279,-1.31613,-1.04573,1.63556,0.85735,0.767214,-1.2853,-0.991315,0.603834,0.712731,0.767474,-1.33583,-0.966337,-0.128097,0.771512,-1.8813,-0.986997,0.641456,-0.65274,-1.35147,-1.43818,-1.07782,0.665514,-0.763196,-1.51463,-2.22192,-1.00316,0.707544,-0.683005,-1.38864,-0.657178,-1.16174,-1.21028,-1.20283,-1.20223,-1.20225,1 +1.53192,-1.63848,-1.1055,2.075,1.49593,1.44147,-1.58723,-1.11353,2.43826,1.41826,1.22792,-1.48899,-1.04978,2.23294,1.20038,0.942689,-1.38589,-0.962679,0.667113,0.925907,-1.81232,-0.999511,0.641216,-0.65406,-1.46254,-1.46295,-1.09468,0.669102,-0.765445,-1.70598,-2.0778,-1.04187,0.700907,-0.687753,-1.6836,-1.37347,-1.54421,-1.45192,-1.39548,-1.37867,-1.37307,0 +-0.20435,-0.451819,-0.685764,0.171097,-0.0410899,-0.20325,-0.454547,-0.6943,0.0576218,-0.0689963,-0.194705,-0.495268,-0.728883,-0.317634,-0.0936642,-0.108917,-0.63399,-0.792742,-0.546842,0.0538437,-1.56949,-0.739268,0.651241,-0.614069,-0.431239,-1.01386,-0.89919,0.643375,-0.730462,-0.675759,-1.84209,-0.806065,0.672641,-0.649042,-0.552789,0.235045,-0.230087,-0.505972,-0.566912,-0.591021,-0.63283,1 +1.08853,-1.20092,-0.93928,0.609082,1.14963,1.11821,-1.20684,-0.946227,0.726654,1.15593,1.08212,-1.18802,-0.91877,0.604464,1.18252,0.87914,-1.12992,-0.897211,0.556078,1.11916,-2.15992,-0.906426,0.507462,-0.617687,-1.06532,-1.6411,-0.945457,0.495787,-0.708313,-1.15473,-2.42906,-0.881688,0.507732,-0.613859,-1.16092,-1.0543,-1.18394,-1.17985,-1.18692,-1.1933,-1.20726,1 +3.9862,-2.14573,-1.07658,3.14234,1.77499,4.34455,-2.18633,-1.09431,2.47493,1.81664,4.26951,-2.17297,-1.06664,1.3408,1.84529,3.74004,-2.08822,-1.02282,0.676149,1.81005,-2.92548,-1.08088,0.624994,-0.659497,-2.31626,-2.55973,-1.1454,0.661306,-0.767794,-2.50065,-3.29138,-1.07355,0.708763,-0.687004,-2.26438,-1.84143,-1.62452,-1.4699,-1.40622,-1.38697,-1.38611,1 +0.555358,-1.1018,-0.971824,0.985188,0.658178,0.593469,-1.09973,-0.986097,1.03847,0.647113,0.508691,-1.06622,-0.972214,1.00284,0.606483,0.30698,-0.986997,-0.921739,0.532299,0.480125,-2.2016,-0.934342,0.656489,-0.643835,-1.1272,-1.82765,-1.03106,0.679777,-0.75586,-1.26088,-2.49429,-0.934353,0.69564,-0.671291,-1.05575,-0.357695,-0.942628,-1.0408,-1.03293,-1.03119,-1.01037,0 +1.43423,-1.51199,-0.96111,0.828045,1.26211,1.53553,-1.53591,-1.00001,1.02411,1.30973,1.43317,-1.50318,-0.984088,1.24038,1.3372,1.12277,-1.39188,-0.931084,1.15798,1.20605,-2.10206,-0.863197,0.483273,-0.546802,-1.35134,-1.64595,-1.02477,0.564144,-0.711342,-1.64114,-2.34534,-0.920669,0.487172,-0.552689,-1.49031,-1.18022,-1.35154,-1.27595,-1.20446,-1.16107,-1.13965,0 +1.15647,-1.29969,-1.00396,0.351008,1.37057,1.20862,-1.31601,-1.02258,0.618677,1.34856,1.13171,-1.27803,-1.00003,1.14711,1.33107,0.815051,-1.13327,-0.938241,1.5522,1.22562,-2.09432,-0.77592,0.685494,-0.63342,-1.15524,-1.7195,-0.869234,0.651971,-0.725125,-1.23237,-2.53481,-0.856971,0.631941,-0.650931,-1.00211,-1.38912,-1.31837,-1.25296,-1.23593,-1.24567,-1.25356,0 +1.36918,-1.69231,-1.10011,2.05469,1.79718,1.40307,-1.6985,-1.12007,2.54391,1.81198,1.3807,-1.68418,-1.08186,3.24008,1.83367,1.21567,-1.62336,-1.02336,3.16623,1.72373,-1.92134,-1.00254,0.599546,-0.660946,-1.47937,-1.31252,-1.09637,0.640296,-0.769443,-1.73186,-2.19086,-1.03843,0.679877,-0.689192,-1.56702,-1.80057,-1.68455,-1.52472,-1.47784,-1.45783,-1.43637,0 +1.13154,-1.28876,-1.03615,0.358415,1.20425,1.1666,-1.27456,-1.04445,0.641636,1.16249,1.0669,-1.21828,-0.996242,1.11149,1.11759,0.811513,-1.10645,-0.922408,1.40184,1.00654,-1.68983,-0.770852,0.75612,-0.618477,-1.03668,-1.32991,-0.871053,0.822667,-0.725275,-1.25171,-1.90393,-0.896041,0.75627,-0.671021,-1.08763,-1.00037,-1.30295,-1.2558,-1.23747,-1.21973,-1.22975,0 +0.786795,-1.27598,-1.03076,0.445952,1.22317,0.839779,-1.276,-1.03949,0.736589,1.20858,0.733841,-1.23275,-1.00017,1.23095,1.15705,0.483683,-1.14041,-0.943808,1.64726,1.0471,-1.44874,-0.7344,0.687593,-0.63336,-0.977741,-1.07828,-0.922258,0.702716,-0.753451,-1.25477,-1.79784,-0.924527,0.702766,-0.681606,-1.13417,-1.06685,-1.32767,-1.26318,-1.23727,-1.23128,-1.22286,0 +-0.665524,0.85778,0.461964,-0.567312,-0.957011,-0.67453,0.866766,0.552639,-0.597018,-0.96065,-0.661136,0.852053,0.580566,-0.616418,-1.03122,-0.639887,0.821897,0.495657,-0.629742,-1.04282,-0.0935742,0.135614,0.0537537,-0.192516,0.666134,-0.493878,0.341143,-0.0443384,-0.073454,0.805286,-0.295055,0.202711,0.0565024,-0.16233,0.710332,0.909754,0.985288,0.921519,0.842367,0.801857,0.795531,1 +1.3726,-1.49535,-1.06726,1.26983,1.79803,1.27099,-1.44563,-1.08041,1.63769,1.75467,1.15323,-1.39228,-1.03003,1.87538,1.62736,1.06908,-1.36617,-0.972814,1.52985,1.49013,2.28919,-1.0341,0.501604,-0.622625,-1.78378,2.12123,-0.973243,0.480305,-0.693051,-1.08674,2.06757,-0.995533,0.581116,-0.649002,-1.54475,-1.75808,-1.69766,-1.52494,-1.45716,-1.43429,-1.42417,1 +-0.628003,0.730572,0.210977,-0.568391,-0.667883,-0.642325,0.759148,0.248228,-0.57239,-0.725005,-0.642785,0.804586,0.488741,-0.574309,-0.860419,-0.629532,0.789263,0.561605,-0.635559,-0.93959,1.2218,0.18382,-0.328669,-0.0187907,0.554419,0.744695,0.399454,-0.438735,0.121101,0.807845,0.855781,0.337235,-0.430109,0.0947338,0.683985,0.704525,0.652561,0.601825,0.598267,0.603455,0.628033,1 +-0.629542,0.781398,0.499566,-0.576238,-0.798309,-0.637608,0.789543,0.583624,-0.603625,-0.794781,-0.631921,0.781697,0.642585,-0.619607,-0.85717,-0.617158,0.749843,0.529131,-0.610731,-0.888925,0.288489,0.168098,-0.266539,-0.0366919,0.589242,0.124419,0.417166,-0.524633,0.12317,0.7557,0.0439286,0.235525,-0.252766,-0.0143528,0.664145,0.766455,0.802347,0.743076,0.737619,0.730752,0.747004,1 +-0.175054,-0.349449,-0.717799,-0.175654,0.508181,-0.190337,-0.308459,-0.706344,-0.0935542,0.453418,-0.205849,-0.272107,-0.636499,-0.0696059,0.357215,-0.206399,-0.28544,-0.575528,-0.381843,0.217823,1.58435,-0.715839,0.151636,-0.345041,-0.660876,1.19253,-0.462993,0.0543233,-0.402603,0.0142331,1.13913,-0.604134,0.232206,-0.415057,-0.340703,-0.341253,-0.680747,-0.747104,-0.75472,-0.760518,-0.763596,1 +-0.401134,-0.0233286,-0.599257,-0.303751,0.180312,-0.437556,0.0396306,-0.562355,-0.255075,0.0767923,-0.468041,0.105248,-0.448431,-0.258483,-0.103989,-0.474678,0.119111,-0.444682,-0.256734,-0.20486,1.46735,-0.545093,0.16283,-0.430439,-0.243411,0.984508,-0.32658,0.256554,-0.44925,0.303591,1.00571,-0.494318,0.312027,-0.478326,-0.0427392,-0.0517847,-0.266249,-0.366471,-0.393407,-0.381113,-0.34631,1 +-0.0415197,-0.220672,-0.457466,-0.340093,0.305221,-0.0576217,-0.185699,-0.410089,-0.324331,0.256494,-0.1028,-0.131646,-0.281332,-0.411538,0.137543,-0.104689,-0.14334,-0.318904,-0.452428,0.127288,1.07571,-0.351828,-0.187948,-0.220252,-0.20291,1.33721,-0.392678,-0.22545,-0.334956,-0.106198,1.00771,-0.441334,0.00789622,-0.343372,-0.293476,-0.269458,-0.320033,-0.329289,-0.294576,-0.256634,-0.201981,1 +0.222931,-0.890374,-0.978481,0.558357,0.77627,0.154704,-0.83693,-0.983169,0.770853,0.648442,0.0707454,-0.790673,-0.935062,0.809973,0.49049,0.0661676,-0.814681,-0.901509,0.671171,0.496097,1.10925,-0.89932,0.522674,-0.636488,-0.873382,1.60335,-0.906216,0.506952,-0.729143,-0.731182,1.30693,-0.904797,0.590471,-0.660676,-0.950265,-0.506102,-1.02313,-1.0947,-1.08922,-1.08675,-1.10289,1 +-0.493628,0.705415,0.467921,-0.649092,-0.30536,-0.501474,0.730013,0.499205,-0.651451,-0.341413,-0.51063,0.786865,0.684555,-0.556597,-0.419765,-0.523694,0.818679,0.758978,-0.456287,-0.493248,1.16076,0.909705,-1.50609,0.841868,0.67488,0.6741,1.25727,-1.34271,1.04666,0.952114,0.661626,0.842977,-0.993274,0.562405,0.833462,0.231017,0.392418,0.522184,0.57213,0.603165,0.609801,1 +-0.575009,0.750992,0.548961,-0.57089,-0.609382,-0.576827,0.737009,0.582195,-0.599637,-0.588792,-0.563434,0.699208,0.325101,-0.540146,-0.525473,-0.555928,0.698328,0.196834,-0.457366,-0.523094,0.57264,0.503194,-0.150556,0.06161,0.843997,0.365191,0.193125,0.229068,-0.0882168,0.682436,0.770193,0.20413,-0.0697857,-0.0682864,0.666833,0.523434,0.723976,0.788944,0.75585,0.727004,0.706294,0 +3.20534,-1.62928,-0.942199,-0.268188,2.50773,3.22777,-1.64391,-0.956232,-0.115124,2.57802,3.2631,-1.65452,-0.894282,0.24465,2.6417,3.23933,-1.62443,-0.832802,0.660557,2.66412,2.14319,-0.873412,0.270548,-0.5105,-1.96038,2.25206,0.0455277,-0.146648,-0.380214,-1.2076,1.96093,-0.647133,0.301043,-0.501524,-1.12969,-2.95137,-1.94252,-1.5806,-1.47199,-1.44197,-1.42907,1 +-0.643835,0.861678,0.287399,-0.603344,-0.626913,-0.649402,0.870244,0.300473,-0.602505,-0.604984,-0.634369,0.862288,0.223181,-0.486462,-0.568602,-0.622855,0.873592,0.194515,-0.350338,-0.586433,0.258174,0.220532,-0.350188,0.10267,0.655579,-0.609222,0.929395,-0.613959,0.644555,1.0264,-0.352138,0.831993,-0.781088,0.516997,0.972564,0.588932,0.650991,0.584124,0.520175,0.493898,0.48956,1 +0.69501,-0.962859,-0.897971,-0.0403399,1.82086,0.621186,-0.917851,-0.913163,0.141151,1.80109,0.59211,-0.880259,-0.841008,0.380164,1.74588,0.544983,-0.811783,-0.777509,0.444023,1.59618,1.65892,-0.641506,0.20506,-0.474897,-0.793871,0.990325,-0.636968,0.274216,-0.57219,-0.174954,1.20346,-0.69419,0.259093,-0.493578,-0.822068,-1.92125,-1.57829,-1.32935,-1.27233,-1.26185,-1.25632,1 +1.31648,-1.23206,-1.0049,-0.175284,2.30608,1.24158,-1.18631,-1.0169,0.00962527,2.31415,1.21723,-1.13174,-0.916911,0.372378,2.25046,1.08441,-1.03467,-0.785306,0.583534,2.07786,1.70597,-0.894722,0.435187,-0.605913,-1.22926,1.84328,-0.217793,-0.0637888,-0.436626,-0.579046,1.39058,-0.664015,0.336495,-0.543984,-0.702356,-2.65835,-1.80284,-1.48294,-1.39527,-1.38037,-1.37198,1 +-0.525583,0.49025,-0.191836,-0.502074,-0.323452,-0.538856,0.516357,-0.151686,-0.485812,-0.372778,-0.540155,0.55072,-0.114404,-0.403692,-0.419665,-0.534788,0.585253,-0.0767025,-0.358205,-0.457806,0.504433,0.212746,0.159472,-0.206939,0.704415,0.14398,0.00157922,0.544483,-0.307899,0.570461,0.485402,-0.0929345,0.278214,-0.351258,0.476826,0.312977,0.379205,0.310298,0.249488,0.237284,0.229058,0 +-0.637868,0.863857,0.241632,-0.610531,-0.647673,-0.650042,0.887406,0.240832,-0.605913,-0.715979,-0.645424,0.949045,0.494598,-0.538706,-0.788544,-0.635959,0.967516,0.644644,-0.519566,-0.841028,0.12293,0.801468,-0.34637,0.249648,1.01356,-0.304331,0.630271,0.0606902,0.155474,0.949985,-0.0909454,0.606893,-0.170616,0.105648,0.937821,0.605633,0.717619,0.713221,0.697828,0.698098,0.71465,1 +3.28347,-1.29095,-0.722736,-0.436096,2.03186,3.39846,-1.29077,-0.728243,-0.352847,2.0766,3.32502,-1.26155,-0.622655,-0.132015,2.03542,3.11725,-1.22208,-0.537517,0.0763027,1.94618,1.88296,-0.606693,0.159872,-0.421034,-0.867925,2.10864,0.229508,-0.517117,-0.128137,-0.830363,1.83206,-0.365191,-0.0465671,-0.317594,-0.762907,-2.4075,-1.5037,-1.19628,-1.10969,-1.10379,-1.10621,1 +1.57119,-1.62265,-0.963858,0.133645,1.64829,1.50926,-1.61115,-0.996332,0.415257,1.58194,1.39572,-1.57378,-0.91954,0.727094,1.44472,1.41835,-1.59739,-0.845346,0.523154,1.45321,2.19338,-0.914252,0.334916,-0.5506,-1.86933,2.57602,-0.638128,-0.348559,-0.293426,-1.17852,2.20113,-0.728433,0.129067,-0.454997,-1.64669,-1.52328,-1.67794,-1.45506,-1.34934,-1.33349,-1.34512,1 +-0.565383,0.354516,-0.452339,-0.377795,-0.349389,-0.586423,0.402583,-0.398585,-0.352737,-0.435267,-0.582675,0.425512,-0.358545,-0.307569,-0.491,-0.566413,0.412318,-0.389439,-0.212666,-0.471829,-0.205469,-0.344671,0.635099,-0.46983,0.283431,-0.779388,-0.243131,0.624234,-0.465742,0.473148,-0.0799708,-0.271587,0.652521,-0.483043,0.38746,0.432308,0.294096,0.126748,0.0301752,0.0155924,0.0252976,1 +0.840309,-1.36332,-1.0451,0.361983,1.20636,0.881318,-1.37468,-1.05322,0.655289,1.18801,0.839339,-1.34547,-1.00076,1.12033,1.14184,0.761287,-1.25359,-0.904067,1.23738,1.16342,0.0741337,-0.666544,0.79591,-0.600406,-0.991454,0.117463,-0.906986,0.762866,-0.740687,-1.37728,0.402783,-0.901619,0.729773,-0.675149,-1.20181,-0.98124,-1.29376,-1.25866,-1.19914,-1.17412,-1.16377,0 +-0.123669,-0.617308,-0.704515,0.441624,-0.174934,-0.0879368,-0.672101,-0.758819,0.0602005,-0.138072,-0.0452378,-0.744796,-0.840119,-0.520855,0.00963516,-0.0352627,-0.716479,-0.7976,-0.798879,0.182061,-0.303731,-0.896921,0.606533,-0.630211,-0.826485,-0.198403,-0.995313,0.623994,-0.747494,-0.926696,0.170037,-0.863737,0.678078,-0.651381,-0.741047,0.414677,-0.161181,-0.465522,-0.499116,-0.495907,-0.53079,1 +-0.474668,0.193495,-0.303561,-0.587062,0.210047,-0.478566,0.215355,-0.303462,-0.559596,0.202321,-0.479835,0.301322,-0.174565,-0.403842,0.115483,-0.514608,0.481394,0.156693,-0.32682,-0.140961,-0.627313,0.0966928,-0.189237,0.257204,0.546483,-1.00955,0.77554,-0.590391,0.473578,0.63263,-0.805895,0.616448,-0.438965,0.341123,0.708763,-0.0634489,-0.341493,-0.375776,-0.316435,-0.273666,-0.216514,1 +-0.602995,0.600336,-0.145459,-0.55009,-0.288209,-0.619307,0.642405,-0.109367,-0.53182,-0.313487,-0.619547,0.699098,0.0194304,-0.439675,-0.433728,-0.618827,0.759788,0.255435,-0.480345,-0.661176,-0.195584,0.069716,-0.177663,-0.0843386,0.554879,-0.361253,0.413637,-0.406101,0.136393,0.819439,-0.415566,0.139222,-0.0832092,-0.1013,0.638467,0.32767,0.213526,0.113874,0.0675169,0.0538436,0.0543434,0 +-0.617278,0.911774,1.06511,-0.601705,-0.870224,-0.621046,0.900629,1.14316,-0.656909,-0.834291,-0.604054,0.848025,0.890264,-0.672251,-0.781757,-0.584374,0.809154,0.475437,-0.5513,-0.701477,-0.123789,0.542804,-0.424792,0.261082,0.87972,-0.0455077,0.284581,-0.333127,0.153125,0.721147,-0.114414,0.488921,-0.415556,0.283191,0.834441,0.726994,1.03055,1.14105,1.16319,1.17982,1.19565,0 +-0.628652,0.678788,0.0578317,-0.542324,-0.525613,-0.640866,0.698858,0.0982518,-0.541465,-0.523674,-0.63307,0.712681,0.134094,-0.483853,-0.584714,-0.624724,0.747474,0.269748,-0.541365,-0.770503,0.745525,-0.0361322,0.0358125,-0.193435,0.524383,0.362133,0.337485,-0.117443,0.0166319,0.815871,0.472429,0.0894263,0.168398,-0.200102,0.643365,0.565493,0.453838,0.328399,0.237134,0.181461,0.150356,1 +-0.34636,0.405751,-0.059201,-0.569471,0.0427991,-0.358504,0.423922,-0.0336636,-0.554429,0.0582713,-0.365051,0.445532,0.018221,-0.438215,0.0129835,-0.380104,0.499665,0.176174,-0.391248,-0.150176,1.10321,0.0564225,-0.452248,0.0785017,0.346431,0.962679,0.61261,-0.850863,0.478416,0.703856,0.974783,0.207069,-0.420334,0.0978122,0.49021,-0.110456,0.00381832,-0.0219992,-0.0594309,-0.0805306,-0.103289,1 +-0.61384,0.721067,0.106838,-0.590001,-0.473548,-0.626883,0.753451,0.146468,-0.583804,-0.4896,-0.626903,0.805476,0.308429,-0.507132,-0.594009,-0.626803,0.85671,0.595488,-0.552649,-0.81775,0.0973823,0.271477,-0.386321,0.088107,0.672441,-0.0284161,0.664315,-0.774661,0.478726,0.913693,-0.0401403,0.332807,-0.343662,0.110536,0.729413,0.508651,0.417866,0.345561,0.308669,0.302702,0.313307,1 +-0.390369,0.235685,-0.433578,-0.502744,0.241382,-0.414507,0.289778,-0.404062,-0.462574,0.193825,-0.432768,0.364381,-0.262162,-0.339594,0.0600405,-0.459475,0.445002,-0.022549,-0.374017,-0.198953,-0.0726844,-0.202011,-0.0276664,-0.263541,0.241622,-0.0711851,0.272537,-0.333377,0.0198503,0.615339,-0.10144,-0.119741,0.0214696,-0.268089,0.322552,-0.223161,-0.248838,-0.28568,-0.308199,-0.310268,-0.312227,1 +-0.593649,0.744546,0.639727,-0.565653,-0.930874,-0.598557,0.748174,0.704185,-0.610511,-0.932373,-0.589191,0.739928,0.65373,-0.661076,-0.8793,-0.583844,0.745155,0.414247,-0.609631,-0.820009,-0.553529,0.234056,0.00662682,-0.0607001,0.704515,-0.793372,0.166888,-0.0607104,-0.0429089,0.667054,-0.594059,0.321743,-0.151266,0.0313148,0.720877,0.863397,0.978531,1.00971,0.970295,0.992004,0.992134,1 +-0.61212,0.955812,0.736869,-0.667163,-0.532279,-0.615209,0.971494,0.743776,-0.67419,-0.549181,-0.61252,1.02238,0.942988,-0.583424,-0.628902,-0.625674,1.08345,1.27659,-0.547092,-0.77589,0.134094,0.929345,-1.12535,0.721017,0.946827,-0.53184,1.59785,-0.713071,1.2043,1.1557,-0.370219,1.3614,-0.751092,0.760618,1.16729,0.447991,0.563464,0.664645,0.747504,0.791342,0.827435,1 +-0.403243,0.0807305,-0.26617,-0.312417,-0.299433,-0.392967,0.0559426,-0.278284,-0.34761,-0.279743,-0.384002,0.00742619,-0.40853,-0.361923,-0.191806,-0.376586,-0.0439487,-0.53146,-0.207958,-0.107357,0.146488,-0.342812,0.59288,-0.418765,0.149667,0.18434,-0.552869,0.613979,-0.500465,-0.077552,0.515498,-0.46956,0.567392,-0.443153,0.000709535,0.322602,0.207109,0.0497656,-0.0455477,-0.0809104,-0.0926946,0 +-0.525803,0.340783,-0.330128,-0.491949,-0.0383812,-0.546052,0.379534,-0.310478,-0.459965,-0.0534939,-0.556128,0.42799,-0.238953,-0.34811,-0.172686,-0.561995,0.486382,-0.124229,-0.321682,-0.409479,0.986407,-0.1218,-0.282931,-0.0804505,0.239463,0.526662,0.124879,-0.491319,0.0473169,0.600126,0.748933,-0.0338934,-0.219992,-0.0829093,0.400654,0.117143,-0.0607301,-0.170457,-0.228138,-0.255755,-0.266689,1 +-0.497886,0.239243,0.0037382,-0.359034,-0.766245,-0.492199,0.207428,0.0323041,-0.480445,-0.739938,-0.473928,0.125358,-0.145829,-0.695989,-0.660717,-0.453708,0.0655877,-0.363832,-0.645734,-0.515518,0.24424,-0.308479,0.731442,-0.432198,0.178803,0.135344,-0.5718,0.799119,-0.601955,-0.0757728,0.443163,-0.379734,0.758909,-0.487051,0.132505,0.815691,0.689872,0.459055,0.330828,0.267449,0.190167,1 +-0.656838,0.746734,0.51085,-0.505722,-1.11513,-0.658657,0.713611,0.553859,-0.589402,-1.08251,-0.63238,0.623824,0.273016,-0.655149,-0.986967,-0.605224,0.562874,-0.0394707,-0.526252,-0.842298,0.330218,0.0218694,0.659797,-0.351488,0.619547,0.256744,-0.20429,0.786085,-0.484133,0.418625,0.468421,-0.0623595,0.723906,-0.400664,0.543444,1.04505,1.17935,1.09396,0.949345,0.849604,0.767054,1 +-0.474708,0.210687,-0.359094,-0.458195,0.206619,-0.495627,0.249658,-0.343352,-0.425762,0.198243,-0.507332,0.292427,-0.271057,-0.336015,0.0995811,-0.522784,0.356535,-0.132475,-0.395116,-0.14287,1.16594,-0.288119,-0.30554,-0.0310846,-0.00519725,0.740198,0.0331438,-0.390859,0.0268569,0.540965,0.709383,-0.148837,-0.18414,-0.0779717,0.299253,-0.133874,-0.2851,-0.349999,-0.371778,-0.378844,-0.381473,1 +-0.30724,0.486542,0.152665,-0.609461,0.0193205,-0.295535,0.49057,0.173065,-0.602385,0.0495856,-0.300503,0.51026,0.221392,-0.486092,0.0240381,-0.328379,0.567032,0.394607,-0.417945,-0.110196,1.26523,0.310518,-0.854881,0.401973,0.46991,1.05804,0.905846,-1.37827,0.89816,0.752342,1.09234,0.452269,-0.777269,0.38845,0.609342,-0.114224,0.0589613,0.0671771,0.0592909,0.0453478,0.0320443,0 +-0.616748,1.10861,1.48385,-0.708183,-0.639747,-0.617208,1.11116,1.47312,-0.724675,-0.594009,-0.61228,1.15109,1.63757,-0.628582,-0.63297,-0.623065,1.21759,2.11224,-0.567152,-0.802117,0.668043,1.82078,-2.41585,1.95634,1.12465,0.0189108,2.35589,-2.37681,2.61075,1.24792,0.0566224,2.18689,-2.25389,2.22925,1.30958,0.541615,0.690102,0.799199,0.953123,1.03816,1.06351,1 +-0.632091,0.798609,0.362812,-0.597337,-0.555078,-0.641246,0.808474,0.376835,-0.601696,-0.533229,-0.63367,0.81652,0.381393,-0.523584,-0.5719,-0.629182,0.863657,0.508511,-0.513728,-0.75614,1.0096,0.296715,-0.541545,0.258614,0.65436,0.46914,0.659147,-0.605703,0.505173,0.943608,0.642705,0.432298,-0.417516,0.310588,0.799658,0.569041,0.495837,0.416746,0.359734,0.308579,0.277464,1 +-0.647243,0.951864,0.505673,-0.669522,-0.492459,-0.65405,0.967226,0.515827,-0.671241,-0.473098,-0.645754,1.00173,0.55182,-0.543764,-0.5304,-0.642146,1.07998,0.773611,-0.430949,-0.726694,0.602495,1.00736,-1.40218,1.03299,0.974693,-0.40762,1.61523,-1.71634,1.72615,1.22982,-0.222021,1.63742,-2.0155,1.72624,1.21715,0.500265,0.447271,0.397925,0.381923,0.378964,0.373787,1 +-0.352078,0.336945,-0.044828,-0.566083,0.210247,-0.369829,0.358534,-0.0318845,-0.5511,0.232926,-0.386221,0.385021,0.0119041,-0.436406,0.178952,-0.420644,0.450539,0.14243,-0.381023,-0.00918543,1.40031,0.0211098,-0.637138,0.208168,0.220112,1.12865,0.582285,-1.15073,0.568262,0.651921,1.07272,0.200392,-0.594399,0.202751,0.456047,-0.251687,-0.165609,-0.152595,-0.159222,-0.165859,-0.172096,0 +0.077682,-0.721367,-0.75665,0.176884,0.456117,0.131196,-0.772352,-0.788644,0.207368,0.520675,0.136783,-0.813252,-0.850174,0.405072,0.629292,0.0820499,-0.750073,-0.790683,0.341513,0.611291,-0.294106,-0.634599,0.71535,-0.597717,-0.566582,-0.0992514,-0.905407,0.681836,-0.738598,-0.864357,0.290688,-0.849104,0.696059,-0.651141,-0.745985,-0.386781,-0.602965,-0.726874,-0.718958,-0.686244,-0.659577,0 +0.357575,-0.970225,-0.85857,0.455727,0.454927,0.44981,-1.02344,-0.887206,0.496677,0.520705,0.467011,-1.04003,-0.908815,0.670941,0.713291,0.421844,-1.00764,-0.873522,0.814611,0.724695,-0.623065,-0.773841,0.750373,-0.609731,-0.904407,-0.390709,-0.975702,0.732071,-0.745405,-1.26569,0.129926,-0.900629,0.728134,-0.666504,-1.03067,-0.2651,-0.719767,-0.833182,-0.844367,-0.847865,-0.8792,0 +-0.235565,-0.140311,-0.430649,-0.130826,-0.106078,-0.22363,-0.161911,-0.459315,-0.220422,-0.0501555,-0.227668,-0.20482,-0.595509,-0.260692,0.0633289,-0.236274,-0.221312,-0.641236,-0.220922,0.135604,-0.580356,-0.586783,0.579186,-0.537467,-0.177883,-0.08162,-0.761047,0.567962,-0.667473,-0.333077,-0.149547,-0.693211,0.602295,-0.59113,-0.335766,0.146908,0.0444284,-0.134304,-0.190977,-0.216234,-0.209707,0 +-0.605224,0.941139,0.856021,-0.65256,-0.63335,-0.610171,0.936122,0.889804,-0.666174,-0.582315,-0.609252,0.947156,0.900569,-0.585463,-0.631661,-0.61332,0.967286,0.964708,-0.520405,-0.747684,-0.217853,0.650861,-0.358314,0.195265,0.911194,-0.315306,1.28272,-0.970635,0.813272,0.994433,-0.466641,0.91918,-0.533569,0.342652,0.977551,0.539316,0.705325,0.766465,0.789993,0.780408,0.765125,0 +-0.671691,0.965627,0.779908,-0.598217,-1.0915,-0.677408,0.958381,0.799029,-0.628872,-1.08837,-0.660097,0.938251,0.759398,-0.624364,-1.09001,-0.637578,0.906666,0.576468,-0.5718,-0.987596,-0.484493,0.381893,-0.177393,0.0290859,0.823297,-0.433898,0.439935,-0.454168,0.157513,0.846216,-0.482244,0.459775,-0.294246,0.0816102,0.827445,1.01234,1.14014,1.12674,1.10408,1.08817,1.10681,1 +-0.631681,1.08812,1.34999,-0.664944,-0.819709,-0.63365,1.06713,1.32957,-0.688193,-0.769703,-0.623445,1.04429,1.18795,-0.617148,-0.75619,-0.616628,1.0424,1.09282,-0.536227,-0.783606,0.169687,0.975413,-0.853282,0.646464,1.03905,0.145839,1.24217,-1.34653,1.07048,1.0502,0.0580117,1.09108,-1.01192,0.741547,1.05345,0.649292,0.977582,1.08879,1.09914,1.08096,1.06998,0 +-0.570481,0.867815,0.77698,-0.610731,-0.722216,-0.578047,0.862038,0.791852,-0.63418,-0.707554,-0.563204,0.83795,0.753581,-0.602485,-0.717159,-0.540086,0.803037,0.57215,-0.521495,-0.61326,-0.0790313,0.509101,-0.527662,0.22466,0.79728,0.065398,0.575458,-0.921279,0.381093,0.790923,-0.0199202,0.533399,-0.59193,0.246829,0.779948,0.57089,0.862098,0.89787,0.887335,0.871473,0.870194,0 +-0.684415,1.23393,1.43956,-0.685394,-1.00718,-0.686844,1.2184,1.46883,-0.706104,-0.962519,-0.676689,1.22743,1.54286,-0.634699,-0.994323,-0.667703,1.24111,1.74262,-0.596268,-1.11906,0.16405,1.25522,-0.766295,0.855441,1.19941,-0.250347,1.71003,-0.883857,1.30614,1.23322,-0.0883267,1.52415,-0.792542,0.946507,1.24947,0.876571,1.10001,1.19428,1.256,1.28373,1.27016,1 +-0.380924,0.174175,-0.2046,-0.317005,-0.497236,-0.388939,0.169907,-0.175034,-0.393218,-0.513808,-0.396396,0.130446,-0.318164,-0.46902,-0.452229,-0.375896,0.0936939,-0.47036,-0.288029,-0.293856,-0.0869674,-0.42967,0.473238,-0.460854,0.088287,0.0506452,-0.536897,0.479465,-0.554538,-0.00730634,0.403473,-0.44911,0.457656,-0.488621,0.0383711,0.526292,0.454977,0.319534,0.247159,0.20388,0.157463,1 +0.247849,-0.643815,-0.720437,0.275665,0.391968,0.281462,-0.662466,-0.738279,0.137613,0.435806,0.257204,-0.684025,-0.788544,-0.0791113,0.526652,0.20446,-0.685794,-0.801398,-0.124099,0.534299,0.132145,-0.774331,0.654629,-0.602275,-0.616728,0.659647,-0.94011,0.63353,-0.727614,-0.87817,0.779449,-0.859799,0.667393,-0.644714,-0.807125,-0.302982,-0.472039,-0.586903,-0.627473,-0.630051,-0.610541,0 +-0.620616,0.668283,0.0730543,-0.517296,-0.781727,-0.635429,0.696729,0.0888064,-0.522884,-0.865746,-0.63207,0.73582,0.250357,-0.555488,-0.94016,-0.614389,0.722136,0.199602,-0.568512,-0.872823,0.133075,0.0360225,0.0869475,-0.228888,0.589332,-0.116403,0.055173,0.0641285,-0.24443,0.661656,0.0131437,0.134254,0.00164928,-0.185409,0.625404,0.828664,0.778709,0.652181,0.574469,0.588222,0.645144,1 +-0.684915,1.0257,0.623965,-0.624834,-0.930994,-0.692741,1.03304,0.627053,-0.634779,-0.93857,-0.680417,1.06539,0.79724,-0.589591,-1.01016,-0.663395,1.0661,0.952604,-0.607363,-1.07791,0.352447,0.597987,-0.257384,0.198483,0.943039,-0.114604,0.820268,-0.149717,0.3683,1.06473,0.0271568,0.761867,-0.255975,0.241582,1.01943,0.880009,0.964868,0.93994,0.89945,0.883787,0.909085,1 +-0.022549,-0.623515,-0.894672,0.222262,0.270458,-0.0473067,-0.585393,-0.894902,0.355126,0.12264,-0.0901958,-0.520246,-0.811853,0.235894,0.0265669,-0.139782,-0.520475,-0.769973,-0.0943237,0.0172116,0.559426,-0.873002,0.556048,-0.626233,-0.731861,0.801858,-0.740907,0.382513,-0.658038,-0.44952,0.705035,-0.782267,0.561215,-0.626063,-0.560875,0.0126438,-0.480415,-0.684385,-0.733341,-0.716379,-0.703256,1 +-0.652271,0.846536,0.358085,-0.568082,-0.899949,-0.664095,0.863657,0.360233,-0.579846,-0.966597,-0.65245,0.885326,0.542065,-0.597318,-1.01771,-0.63323,0.863037,0.472479,-0.599167,-0.947926,0.261092,0.299943,-0.0656478,-0.0517745,0.778919,-0.00345827,0.272357,-0.0610502,-0.0869774,0.790583,0.0850684,0.360803,-0.10236,-0.0371117,0.792162,0.885047,0.91926,0.870054,0.841628,0.852453,0.876791,1 +0.100171,-0.759648,-0.967237,0.472359,0.711522,0.0579417,-0.713301,-0.963618,0.647033,0.677778,-0.0237283,-0.661446,-0.915222,0.709253,0.578417,-0.0831892,-0.619237,-0.853732,0.404422,0.459505,-0.437846,-0.790903,0.644564,-0.620286,-0.61272,-0.128467,-0.922728,0.617537,-0.740198,-0.67411,-0.0764525,-0.900429,0.670892,-0.668912,-0.812102,-0.50969,-0.839809,-0.96036,-0.977481,-0.957781,-0.942009,0 +0.0181011,-0.683216,-0.906276,0.499276,0.353387,-0.0198702,-0.650092,-0.907496,0.565063,0.333097,-0.0665374,-0.648703,-0.875661,0.304451,0.323282,-0.0729543,-0.669222,-0.854272,-0.0179911,0.386011,-0.240232,-0.861628,0.656439,-0.620946,-0.771782,0.0665974,-0.934922,0.670991,-0.73462,-0.689492,0.0995614,-0.894522,0.701077,-0.662366,-0.836071,-0.0823397,-0.625723,-0.7957,-0.824496,-0.812302,-0.806765,1 +-0.344182,0.129966,-0.317045,-0.369009,-0.150976,-0.359814,0.150676,-0.273836,-0.375426,-0.184989,-0.36749,0.150796,-0.257044,-0.420334,-0.180372,-0.352647,0.129396,-0.389619,-0.263521,-0.0724345,0.177933,-0.258743,0.100581,-0.361613,0.194455,0.303292,-0.404942,0.0734739,-0.468341,0.0923049,0.190047,-0.32678,0.132945,-0.389019,0.04062,0.16422,0.16479,0.0859379,0.0358824,0.0475967,0.0574319,1 +-0.659977,1.14436,1.38704,-0.67264,-0.789473,-0.662685,1.12237,1.37548,-0.69458,-0.718618,-0.649992,1.11925,1.35615,-0.628662,-0.730412,-0.642945,1.14029,1.49142,-0.599247,-0.871503,-0.0337635,1.04547,-0.392238,0.525283,1.15171,-0.481994,1.39809,-0.698978,0.935802,1.13637,-0.491219,1.32174,-0.594609,0.723216,1.212,0.652141,0.887026,1.00293,1.05857,1.06804,1.06291,1 +-0.698628,1.28441,1.74748,-0.682586,-0.999461,-0.702336,1.26572,1.73267,-0.710302,-0.928965,-0.685384,1.25287,1.62962,-0.648972,-0.947216,-0.670462,1.2616,1.67759,-0.606483,-1.05829,-0.00708651,1.1007,-0.365681,0.583864,1.2037,-0.771772,1.56609,-0.24585,1.04749,1.25315,-0.61242,1.50605,-0.354626,0.830633,1.31631,0.876051,1.08732,1.23711,1.32986,1.34077,1.31106,1 +-0.290868,0.0385111,-0.299014,-0.289398,-0.172426,-0.290668,0.0304651,-0.284271,-0.341453,-0.137283,-0.302432,-0.00513766,-0.443763,-0.323142,-0.0661177,-0.310998,-0.0163722,-0.549861,-0.110186,0.0305851,0.336415,-0.415077,0.356166,-0.451629,0.0603307,0.63259,-0.564843,0.319793,-0.560626,-0.0505652,0.697998,-0.513069,0.364732,-0.494028,-0.114734,0.153415,0.167278,0.0777519,0.0144129,-0.00711652,-0.0301052,0 +0.378235,-1.06624,-0.929365,0.396146,0.966317,0.445382,-1.11859,-0.957831,0.59278,1.04373,0.478146,-1.15318,-0.968296,1.05145,1.19762,0.415087,-1.09502,-0.921089,1.38424,1.1604,-0.226969,-0.662156,0.690882,-0.599646,-0.783236,0.333637,-0.949235,0.662226,-0.743676,-1.09159,0.447371,-0.927056,0.647793,-0.656788,-1.06105,-0.827595,-1.14925,-1.13284,-1.08682,-1.04943,-1.02342,0 +0.532,-1.1774,-0.989456,0.466972,1.04627,0.585963,-1.20981,-1.00451,0.710482,1.07868,0.606973,-1.22008,-0.976372,1.10608,1.15952,0.477376,-1.11354,-0.89821,1.13624,1.07496,0.0435087,-0.704195,0.732172,-0.615019,-0.896741,0.627913,-0.945977,0.710222,-0.749153,-1.21677,0.720847,-0.937871,0.692521,-0.675469,-1.05741,-0.829394,-1.23762,-1.22215,-1.18149,-1.16151,-1.16942,0 +1.43872,-1.73624,-1.12423,0.8589,1.8717,1.43199,-1.72131,-1.13375,1.35016,1.83913,1.37024,-1.68068,-1.07073,2.09069,1.73257,1.23749,-1.59209,-0.987487,2.34399,1.62718,-0.250577,-0.745055,0.705954,-0.626783,-1.22777,0.093954,-1.00391,0.680876,-0.760248,-1.63268,0.240642,-1.00104,0.683645,-0.685864,-1.41917,-1.73701,-1.80954,-1.61811,-1.51954,-1.47577,-1.46098,0 +1.98426,-1.8521,-1.0683,3.32452,1.32831,2.15469,-1.89167,-1.08637,2.04589,1.3941,2.26862,-1.91038,-1.05799,0.909355,1.51435,2.34631,-1.92771,-1.01314,0.921019,1.57431,-1.64124,-1.07746,0.602905,-0.660896,-1.87343,-1.04841,-1.15932,0.636398,-0.769713,-2.26212,-0.910194,-1.09421,0.675299,-0.690702,-2.15656,-1.19432,-1.49143,-1.43956,-1.4035,-1.40183,-1.41654,0 +0.0646483,-0.826276,-0.874762,0.835521,0.160781,0.0804007,-0.848065,-0.882128,0.496517,0.0906755,0.0978422,-0.910125,-0.891674,-0.44935,0.0756428,0.128847,-0.972484,-0.905487,-0.610001,0.250687,-2.38457,-0.921379,0.63385,-0.645764,-0.925387,-1.91827,-1.03919,0.658278,-0.757299,-1.18626,-2.70702,-0.921859,0.708463,-0.672091,-0.934203,0.120421,-0.44888,-0.707993,-0.773131,-0.797889,-0.8175,1 +0.0520045,-0.829654,-0.926976,0.73588,0.404302,0.0474968,-0.828904,-0.937091,0.752612,0.364831,0.0259973,-0.850844,-0.931944,0.624204,0.3464,0.016302,-0.879979,-0.917251,0.682046,0.38928,-2.08065,-0.865126,0.657508,-0.642715,-0.833702,-1.62574,-1.0092,0.67384,-0.758109,-1.05877,-2.39932,-0.926796,0.711782,-0.677098,-0.950535,-0.167518,-0.65244,-0.847335,-0.892823,-0.909565,-0.933423,0 +0.192236,-0.882308,-0.906157,0.816711,0.302592,0.205939,-0.891424,-0.912933,0.672281,0.26617,0.179422,-0.924408,-0.909125,0.108617,0.2649,0.192906,-0.975792,-0.909915,0.00229895,0.385541,-2.14046,-0.906026,0.658817,-0.642955,-0.9593,-1.72544,-1.02719,0.676539,-0.7558,-1.18694,-2.47186,-0.931614,0.720887,-0.67366,-1.01074,-0.0827595,-0.577467,-0.783916,-0.824696,-0.843547,-0.876871,0 +-0.282242,-0.298394,-0.67414,0.0724548,-0.110086,-0.2861,-0.312317,-0.707144,0.0680267,-0.113505,-0.274296,-0.36886,-0.774491,0.0623495,-0.0367321,-0.240032,-0.442314,-0.805126,0.146189,0.0690163,-1.752,-0.710342,0.537977,-0.578127,-0.316695,-1.55352,-0.830903,0.548231,-0.691082,-0.447991,-2.08588,-0.729033,0.611051,-0.606223,-0.392948,0.295845,-0.120411,-0.414797,-0.493638,-0.515628,-0.529311,1 +-0.0439385,-0.83861,-1.02587,0.662966,0.757439,-0.0983817,-0.774381,-1.02313,0.926127,0.647043,-0.156923,-0.711092,-0.972174,1.13707,0.515377,-0.165239,-0.710742,-0.931534,1.24534,0.461454,-1.38622,-0.866646,0.579226,-0.642505,-0.65394,-1.10852,-0.949025,0.614049,-0.748593,-0.696499,-1.55053,-0.914972,0.658228,-0.672681,-0.83783,-0.442014,-1.01324,-1.1196,-1.12074,-1.1102,-1.1116,1 +0.169277,-0.911434,-0.968946,0.553679,0.706514,0.16301,-0.886586,-0.970995,0.717699,0.621455,0.1236,-0.867096,-0.933943,0.827365,0.578157,0.10148,-0.890584,-0.911624,1.0844,0.63279,-1.26665,-0.750283,0.662706,-0.627553,-0.679687,-0.876621,-0.977861,0.657868,-0.754261,-1.00387,-1.49414,-0.914303,0.6938,-0.675749,-0.917771,-0.521605,-0.854452,-0.988996,-1.00605,-1.02107,-1.04079,0 +0.38769,-1.03102,-0.97996,0.824647,0.665104,0.42893,-1.03941,-0.991884,0.97987,0.656938,0.394997,-1.04796,-0.974353,1.1212,0.655509,0.355246,-1.06227,-0.948056,1.40477,0.686414,-1.47906,-0.860908,0.675609,-0.638497,-0.946896,-1.0778,-1.01005,0.678827,-0.75637,-1.18095,-1.63867,-0.943168,0.711622,-0.676699,-1.0712,-0.419834,-0.895901,-1.02018,-1.03529,-1.03869,-1.06202,0 +1.16718,-1.4649,-1.06238,1.29118,1.26294,1.22161,-1.46735,-1.07531,1.62964,1.25779,1.13287,-1.44238,-1.04252,2.10253,1.25076,0.891284,-1.37731,-0.994773,2.42267,1.18308,-1.29087,-0.913513,0.655049,-0.650222,-1.25027,-0.915972,-1.05331,0.67442,-0.764426,-1.602,-1.52871,-1.00677,0.703086,-0.686324,-1.45045,-1.06848,-1.35685,-1.30208,-1.26785,-1.27077,-1.27534,0 +0.177223,-0.836441,-0.902798,0.69456,0.270398,0.174145,-0.834641,-0.900219,0.610201,0.199762,0.1425,-0.852253,-0.875182,-0.0430989,0.157783,0.180502,-0.932693,-0.874672,-0.499365,0.308729,-1.466,-0.885526,0.677388,-0.635729,-0.917171,-1.14552,-0.994993,0.686943,-0.748554,-1.06439,-1.73917,-0.909815,0.721827,-0.669822,-0.922349,-0.0226089,-0.52991,-0.732741,-0.768874,-0.79575,-0.819229,1 +-0.0421494,-0.529481,-0.707464,0.16391,0.0672071,-0.0346729,-0.526262,-0.711642,0.0871073,0.00613689,-0.0430189,-0.550851,-0.708253,-0.374187,-0.0217095,-0.00591707,-0.640596,-0.760408,-0.546232,0.0852583,-1.57687,-0.722986,0.704625,-0.600956,-0.521165,-1.30231,-0.893702,0.681336,-0.723126,-0.764196,-1.9773,-0.789604,0.722167,-0.640756,-0.599157,0.113424,-0.298414,-0.506702,-0.601406,-0.641036,-0.669152,1 +0.485692,-1.12317,-0.981909,1.28481,0.617508,0.488621,-1.12397,-0.994823,1.17821,0.568331,0.458715,-1.14515,-0.979021,0.544423,0.545903,0.51031,-1.21005,-0.953843,-0.14183,0.638677,-1.5401,-0.978011,0.607063,-0.649692,-1.20328,-1.18799,-1.05777,0.627912,-0.756809,-1.33805,-1.90911,-0.981989,0.675559,-0.677128,-1.25151,-0.351058,-0.870004,-1.02529,-1.05623,-1.06421,-1.07773,0 +1.01898,-1.5331,-1.10814,1.06717,1.49508,0.998181,-1.50939,-1.1194,1.55762,1.43989,0.889964,-1.46686,-1.0706,2.34705,1.34243,0.75611,-1.39912,-1.01382,3.02209,1.31952,-1.38637,-0.860449,0.665694,-0.647063,-1.24418,-1.11343,-1.0217,0.672571,-0.763776,-1.48993,-1.8144,-0.993904,0.698828,-0.687733,-1.45534,-1.27902,-1.54871,-1.4668,-1.40376,-1.39296,-1.40597,0 +0.194745,-0.954053,-1.01504,0.547073,0.903078,0.125888,-0.873053,-1.01755,0.832782,0.760737,0.0588912,-0.793822,-0.941029,0.860179,0.514378,0.111705,-0.866186,-0.887496,0.0239983,0.340753,-1.62546,-0.901898,0.640306,-0.637288,-0.889704,-1.75728,-0.886296,0.59268,-0.728763,-0.686304,-2.13157,-0.850204,0.667004,-0.661876,-0.681436,-0.681356,-1.10392,-1.13837,-1.12202,-1.12407,-1.13335,1 +0.640966,-1.29358,-1.07479,0.914962,1.21828,0.608442,-1.26195,-1.08349,1.30664,1.14025,0.507642,-1.21774,-1.03447,1.8364,1.02642,0.431799,-1.20055,-0.988226,2.3836,0.997022,-1.40194,-0.833602,0.677668,-0.642016,-1.04629,-1.04829,-1.0093,0.675839,-0.761037,-1.23776,-1.64861,-0.968606,0.702686,-0.684815,-1.23468,-1.01529,-1.32909,-1.31843,-1.28711,-1.26396,-1.26457,0 +1.84594,-1.76716,-1.07366,2.92236,1.28762,1.90424,-1.78893,-1.09453,2.53468,1.29489,1.95208,-1.81571,-1.07297,2.02468,1.33732,1.97647,-1.84503,-1.04366,3.0078,1.50847,-1.92708,-1.07589,0.614349,-0.661586,-1.96467,-1.71007,-1.13415,0.655099,-0.768544,-2.05207,-2.28529,-1.06553,0.697938,-0.688163,-1.9337,-1.1032,-1.41208,-1.3836,-1.34508,-1.33286,-1.35126,1 +0.63323,-1.14199,-1.00025,0.704366,0.855371,0.678818,-1.13707,-1.01548,0.948896,0.852252,0.648732,-1.10865,-0.986457,1.2719,0.861948,0.49073,-1.03603,-0.925827,1.24701,0.778109,-1.86256,-0.85733,0.692361,-0.63349,-0.992214,-1.40284,-0.976062,0.7343,-0.746395,-1.24367,-2.14738,-0.951884,0.723216,-0.678018,-1.19508,-0.526012,-1.07051,-1.1258,-1.13113,-1.12758,-1.12949,0 +1.41041,-1.64792,-1.1225,1.44262,1.66877,1.34331,-1.61041,-1.13575,2.03179,1.60886,1.17901,-1.54523,-1.08238,2.86676,1.48063,0.993254,-1.47878,-1.02352,3.43219,1.3758,-1.72271,-0.934502,0.670652,-0.647303,-1.40161,-1.39379,-1.04475,0.687173,-0.761787,-1.52839,-1.93492,-1.02429,0.702406,-0.688043,-1.62416,-1.50858,-1.65344,-1.55078,-1.47669,-1.45669,-1.45839,0 +1.02325,-1.5808,-1.12859,1.53911,1.7085,0.958511,-1.53619,-1.14181,2.17116,1.60908,0.810753,-1.46355,-1.08556,3.02488,1.42403,0.744606,-1.46423,-1.03497,3.93988,1.36579,-1.73182,-0.926096,0.635299,-0.6538,-1.26641,-1.40764,-1.06055,0.646004,-0.766725,-1.41298,-2.19397,-1.0244,0.682546,-0.688973,-1.46629,-1.62331,-1.71466,-1.58421,-1.50905,-1.49019,-1.486,0 +0.434058,-1.2079,-1.01121,1.3321,0.773611,0.391618,-1.18304,-1.02075,1.36093,0.725245,0.300583,-1.14705,-0.994433,1.08787,0.596028,0.289158,-1.12262,-0.944498,0.550131,0.555598,-0.290778,-0.997062,0.540645,-0.651381,-1.31539,0.399025,-1.04728,0.567712,-0.75566,-1.29127,-0.722586,-0.991605,0.623515,-0.678488,-1.35026,-0.5306,-1.03488,-1.11077,-1.08616,-1.04553,-1.03639,1 +0.109566,-0.996832,-0.987087,1.10502,0.495987,0.0796511,-0.97982,-1.00187,1.17526,0.435826,0.0424693,-0.979151,-0.988566,1.09636,0.372447,0.0692861,-1.00486,-0.95962,1.0963,0.436606,-0.40794,-0.975502,0.544483,-0.651221,-1.1612,0.209657,-1.02531,0.585883,-0.757379,-1.06689,-0.792442,-0.967776,0.636139,-0.678947,-1.12632,-0.170836,-0.821498,-1.00376,-1.00362,-0.985987,-0.974403,1 +0.884247,-1.37369,-1.0874,1.18279,1.2677,0.779308,-1.31372,-1.09368,1.59209,1.13251,0.63329,-1.23231,-1.03634,1.96575,0.922438,0.695719,-1.25163,-0.974643,1.75975,0.85769,-0.547482,-1.00438,0.546412,-0.655299,-1.39589,0.000199941,-0.985208,0.529391,-0.748494,-1.19119,-0.993913,-0.989006,0.628772,-0.682126,-1.37666,-0.961889,-1.38579,-1.36055,-1.32642,-1.30448,-1.2934,1 +3.17558,-2.27591,-1.15362,5.07014,2.0985,3.08179,-2.24438,-1.16987,5.52786,2.02651,2.78888,-2.16686,-1.11307,4.9777,1.79987,2.75028,-2.13952,-1.05239,3.03592,1.69634,-0.862258,-1.1188,0.578547,-0.664694,-2.38516,-0.109087,-1.1499,0.597697,-0.766045,-2.39505,-1.38887,-1.10179,0.660937,-0.690852,-2.33684,-2.03987,-2.00254,-1.72766,-1.61093,-1.57327,-1.56136,1 +1.59647,-1.57306,-1.0432,0.603795,2.56826,1.47456,-1.54295,-1.05745,0.944118,2.60562,1.53429,-1.55913,-1.00841,1.42105,2.68779,1.58558,-1.54512,-0.95981,1.85811,2.75606,1.48016,-0.93871,0.439375,-0.59221,-1.34096,1.95083,-0.849354,0.263531,-0.550221,-0.984878,1.54388,-0.889735,0.380694,-0.537417,-1.4329,-2.96538,-2.06023,-1.69661,-1.5921,-1.57328,-1.56465,1 +2.25491,-1.54119,-0.956542,0.315786,2.37427,2.23617,-1.54088,-0.966637,0.538756,2.42714,2.28147,-1.54531,-0.91869,0.746085,2.46355,2.31718,-1.52079,-0.863597,0.638837,2.45962,2.14586,-0.882978,0.322392,-0.522674,-1.66557,2.50266,-0.786185,0.181051,-0.496817,-1.06171,2.19009,-0.848585,0.32758,-0.50996,-1.40452,-2.7692,-1.8998,-1.5601,-1.47329,-1.45526,-1.44937,1 +5.63912,-2.04315,-1.04438,0.396786,2.53922,5.76546,-2.04625,-1.05944,0.749233,2.60449,5.76061,-2.0169,-0.987547,1.17997,2.56522,5.62865,-1.9938,-0.917781,1.26929,2.4752,2.07227,-0.98009,0.500985,-0.639707,-1.86816,3.0338,-0.756729,0.097752,-0.560526,-1.75549,2.21625,-0.881419,0.440245,-0.605943,-1.8174,-3.04442,-1.95423,-1.61693,-1.52469,-1.50678,-1.50146,1 +-0.557037,0.943928,1.57271,-0.686174,-0.636858,-0.556507,0.927606,1.57727,-0.708723,-0.59319,-0.553779,0.91886,1.72709,-0.652361,-0.560785,-0.555778,0.902878,1.71662,-0.595688,-0.565313,0.186019,1.71109,-3.08021,2.40946,0.974013,0.385881,1.4625,-3.18819,2.24573,0.903628,0.144699,1.47018,-2.70959,2.02527,0.973683,0.455487,0.815491,1.02588,1.17705,1.2677,1.33499,0 +-0.554998,0.908485,0.844287,-0.669532,-0.472838,-0.559246,0.909435,0.858809,-0.679228,-0.44848,-0.559176,0.944168,1.12599,-0.601855,-0.496727,-0.561005,0.95899,1.38607,-0.564863,-0.567602,-0.679138,1.35563,-1.76857,1.24956,1.01519,-0.706574,1.36478,-1.71773,1.35949,1.00617,-0.882378,1.19391,-1.53307,1.08678,1.00556,0.315326,0.635919,0.789943,0.87836,0.930155,0.963438,1 +1.87815,-1.40184,-0.872693,0.212236,2.00352,1.84272,-1.38327,-0.873312,0.334596,2.0314,1.90843,-1.38349,-0.813482,0.215574,2.06752,1.94333,-1.38734,-0.782847,-0.10104,2.05946,1.15396,-0.835721,0.328109,-0.541515,-1.42931,1.71995,-0.785236,0.0965326,-0.522424,-0.95904,1.07742,-0.819159,0.34822,-0.547252,-1.41238,-2.26275,-1.67783,-1.41079,-1.33529,-1.32372,-1.31759,1 +-0.435977,0.151826,0.491879,-0.444492,-0.69473,-0.424282,0.120241,0.420684,-0.605614,-0.677238,-0.420714,0.0974521,-0.00764635,-0.703945,-0.560736,-0.426761,0.132635,-0.145899,-0.683455,-0.457136,0.458136,-0.174814,-0.0984817,-0.172835,0.167708,0.351638,-0.497536,0.0869173,-0.456217,-0.0987616,0.51032,-0.256494,0.043109,-0.266569,0.100271,0.665174,0.638468,0.556248,0.597467,0.737759,0.800338,1 +3.6323,-2.10724,-1.14534,1.95136,3.08122,3.46526,-2.08736,-1.16417,2.80588,3.13472,3.5426,-2.10913,-1.10979,4.08029,3.17508,3.7755,-2.14137,-1.05441,5.18147,3.30839,1.74786,-1.05065,0.53117,-0.638887,-1.84503,1.77567,-1.01311,0.607113,-0.729713,-1.51535,1.45664,-1.0348,0.617068,-0.663075,-1.77161,-3.66837,-2.32883,-1.88741,-1.76448,-1.73346,-1.72114,1 +1.66641,-1.29307,-0.986497,0.233736,2.26734,1.55362,-1.25745,-0.990265,0.474528,2.2887,1.59834,-1.24515,-0.929195,0.771222,2.30813,1.62808,-1.2012,-0.8792,0.994353,2.24673,2.2452,-0.909195,0.415726,-0.605883,-1.71446,1.81274,-0.667693,0.247359,-0.596158,-0.588482,1.87948,-0.81637,0.438985,-0.605204,-1.1804,-2.64891,-1.81047,-1.50715,-1.43209,-1.4141,-1.40442,1 +1.19899,-1.42455,-0.9804,0.509911,2.31916,1.12173,-1.40263,-0.990345,0.749993,2.34627,1.13903,-1.41522,-0.941809,0.885366,2.40485,1.10474,-1.38768,-0.915172,1.06759,2.4112,2.01947,-0.963778,0.44952,-0.606953,-1.62589,2.43242,-0.81782,0.364301,-0.63375,-0.842088,1.95596,-0.900889,0.449,-0.59176,-1.37226,-2.63353,-1.9174,-1.58417,-1.48803,-1.47618,-1.47702,1 +0.156793,-0.786635,-0.83712,0.0398908,0.864277,0.180532,-0.792432,-0.842647,0.16346,0.882947,0.182841,-0.775481,-0.824177,0.343122,0.951524,0.152066,-0.730552,-0.779338,0.415367,0.902478,-0.141661,-0.688183,0.432158,-0.545183,-0.576687,0.271737,-0.7562,0.28668,-0.573989,-0.608792,0.145599,-0.75658,0.393757,-0.540985,-0.717799,-0.794971,-0.975282,-1.00328,-0.965587,-0.953643,-0.938101,0 +1.00433,-1.49397,-1.05793,0.75666,1.28177,1.10548,-1.52728,-1.07252,1.10815,1.30299,1.12244,-1.51699,-1.03541,1.69854,1.42098,0.961299,-1.42098,-0.973324,2.08126,1.41273,0.676699,-0.876821,0.657468,-0.639607,-1.27584,0.91907,-0.966037,0.721517,-0.748544,-1.54296,1.11021,-0.957931,0.697199,-0.676539,-1.30595,-1.10159,-1.40601,-1.344,-1.30691,-1.29916,-1.28761,0 +1.26887,-1.56837,-1.09723,1.62272,1.6776,1.20887,-1.53762,-1.11005,2.06503,1.64424,1.13235,-1.48804,-1.06012,2.481,1.61451,1.02867,-1.40864,-0.986327,2.19179,1.54538,0.402273,-0.966237,0.636179,-0.65261,-1.33879,0.526842,-1.06467,0.671841,-0.763126,-1.53524,0.610541,-1.0211,0.693591,-0.685664,-1.45727,-1.58477,-1.59974,-1.46751,-1.40298,-1.37163,-1.36421,0 +-0.188268,0.270418,-0.100901,-0.596668,0.356875,-0.214855,0.295475,-0.0745136,-0.579326,0.38852,-0.230257,0.350278,0.128727,-0.466971,0.311727,-0.256994,0.404342,0.452488,-0.455277,0.165259,0.207329,0.105269,-0.429879,-0.0465571,0.26652,0.452768,0.886696,-1.88305,0.955043,0.614189,0.128617,0.393138,-0.826755,0.24479,0.399404,-0.496947,-0.211096,-0.132915,-0.0676169,-0.0345831,-0.00551728,0 +-0.34793,0.460185,-0.00194902,-0.598317,0.130406,-0.353227,0.479505,0.0397005,-0.586483,0.14216,-0.354157,0.515507,0.181951,-0.477846,0.083379,-0.36681,0.567302,0.436476,-0.450259,-0.0731141,0.700357,0.113874,-0.368559,-0.0100249,0.445012,0.657368,0.896311,-1.3497,0.828415,0.770573,0.604334,0.353587,-0.629292,0.215175,0.594479,-0.238533,-0.0313045,0.0160621,0.0357625,0.0476667,0.0555028,0 +-0.277354,0.46916,0.192286,-0.633799,0.0870374,-0.288419,0.480425,0.214095,-0.627793,0.123839,-0.299333,0.525223,0.424862,-0.521755,0.0729242,-0.332077,0.584424,0.819049,-0.505572,-0.0853482,0.461364,0.471599,-0.991404,0.446182,0.536967,0.67512,1.20194,-2.27982,1.46177,0.720088,0.464693,0.692461,-1.30259,0.681407,0.627023,-0.187198,0.026957,0.10186,0.160451,0.200232,0.226939,0 +-0.316445,0.679547,0.55097,-0.665464,-0.125489,-0.313796,0.681346,0.587582,-0.669322,-0.0827995,-0.325381,0.71458,0.759128,-0.564034,-0.131676,-0.357455,0.77638,1.15177,-0.517646,-0.307459,0.831443,0.927456,-1.47489,0.938341,0.75664,0.854222,1.57981,-2.66193,2.01824,0.896311,0.844677,1.05866,-1.77995,1.21446,0.802937,0.00243879,0.231467,0.303421,0.369329,0.422113,0.462514,0 +-0.617878,0.63389,0.400184,-0.578277,-0.769673,-0.625813,0.652021,0.417555,-0.590601,-0.782447,-0.614239,0.689392,0.413997,-0.55086,-0.81604,-0.597318,0.684565,0.425522,-0.545153,-0.800958,0.716079,0.217394,-0.668832,0.448411,0.555548,0.573749,0.465042,-0.905447,0.570631,0.79764,0.908315,0.387211,-0.702006,0.45052,0.674919,0.749363,0.666474,0.529821,0.546143,0.561835,0.581355,1 +-0.643115,0.983998,0.652181,-0.659867,-0.655289,-0.651181,0.997851,0.666164,-0.665904,-0.629182,-0.649022,1.04841,0.844247,-0.574029,-0.711562,-0.650881,1.11607,1.26689,-0.558926,-0.929925,0.276815,0.979401,-1.09169,0.827695,1.02074,-0.0952933,1.35371,-1.4629,1.32176,1.14156,0.161061,1.09599,-1.27692,0.990885,1.05789,0.627293,0.645554,0.647523,0.669232,0.707274,0.726734,1 +-0.562815,0.650102,0.912214,-0.555758,-0.955102,-0.560355,0.617648,0.874462,-0.6329,-0.910434,-0.548941,0.570581,0.378884,-0.617788,-0.819419,-0.542974,0.556817,0.12215,-0.520415,-0.716109,0.30631,0.210427,-0.156024,0.108837,0.625044,0.398245,-0.0687863,-0.263211,0.0455178,0.413398,0.656099,0.189697,-0.426081,0.264441,0.541915,0.872173,1.02451,1.03189,1.02943,1.0148,0.994853,1 +-0.40807,0.820129,0.830993,-0.676259,-0.36799,-0.406471,0.81715,0.852732,-0.685255,-0.330688,-0.416266,0.842817,0.984248,-0.585673,-0.371388,-0.446441,0.895831,1.31778,-0.528601,-0.532549,0.803747,1.04396,-1.37677,0.908875,0.83741,0.53026,1.73773,-2.25489,1.86841,0.993374,0.591221,1.26121,-1.61151,1.17149,0.941099,0.2251,0.488251,0.577627,0.63301,0.659867,0.663945,1 +-0.644854,1.12944,1.45934,-0.692561,-0.774881,-0.646343,1.10945,1.43578,-0.710582,-0.695719,-0.640336,1.12126,1.51267,-0.626863,-0.728104,-0.640666,1.15948,1.86606,-0.589311,-0.895482,0.736819,1.25941,-1.53313,1.15898,1.03282,0.215595,1.92699,-2.63097,2.25785,1.19222,0.315326,1.76444,-2.22365,1.81726,1.16944,0.686824,0.833942,0.908025,0.987886,1.04913,1.09257,0 +-0.620776,0.847145,0.527782,-0.642185,-0.628542,-0.628652,0.852912,0.535927,-0.646014,-0.600966,-0.628932,0.894582,0.65433,-0.554329,-0.677109,-0.630531,0.947026,0.991155,-0.543834,-0.892243,0.533979,0.539756,-0.743316,0.360704,0.762917,0.114884,1.21066,-1.73122,1.19358,1.00077,0.159822,0.933443,-1.22754,0.797909,0.932933,0.616478,0.584384,0.534868,0.547922,0.553899,0.562645,1 +-0.624844,1.01927,1.29187,-0.655869,-0.843727,-0.626293,1.00543,1.28851,-0.681786,-0.787804,-0.613629,0.991644,1.30401,-0.641986,-0.791173,-0.599397,0.974203,1.27406,-0.61181,-0.783806,0.422753,0.882468,-1.18272,0.780168,0.92044,0.212356,1.04515,-1.80375,1.22326,0.95946,0.170097,1.06774,-1.54108,1.09161,0.982709,0.716229,0.95993,1.05099,1.10437,1.14568,1.15884,1 +-0.399235,0.792172,0.823927,-0.662096,-0.382753,-0.394976,0.780308,0.823557,-0.671691,-0.325771,-0.402053,0.791972,0.840718,-0.573779,-0.350478,-0.425002,0.841348,1.11636,-0.528121,-0.500725,0.993364,0.650372,-0.963198,0.540835,0.710153,0.630491,1.5294,-2.12981,1.65529,0.938681,0.652371,1.07523,-1.47804,1.05106,0.891993,0.246069,0.475987,0.506002,0.512909,0.532149,0.545333,1 +-0.211197,0.501445,0.24604,-0.618127,-0.0109346,-0.216924,0.503863,0.276844,-0.614999,0.0285859,-0.22354,0.523364,0.383632,-0.515717,-0.0196705,-0.243141,0.565613,0.644105,-0.492929,-0.176863,0.89884,0.221652,-0.474348,0.0609703,0.461344,0.850684,1.06294,-1.67138,1.04426,0.719238,0.763846,0.498636,-0.81702,0.359864,0.598787,-0.138132,0.133955,0.164559,0.186429,0.210907,0.229698,0 +-0.187168,0.627413,0.693571,-0.668283,-0.153915,-0.169387,0.614129,0.710072,-0.67466,-0.0996713,-0.182481,0.630091,0.794841,-0.567722,-0.126128,-0.22558,0.684954,1.14381,-0.512149,-0.272167,1.09952,0.865276,-1.42815,0.863607,0.656209,1.11743,1.63759,-2.93858,2.20447,0.799339,1.04622,1.06024,-1.87,1.27442,0.717968,0.0110046,0.270198,0.343622,0.396176,0.435367,0.456786,0 +-0.0636189,-0.579067,-0.753741,0.333877,0.168747,-0.0502153,-0.603425,-0.772762,0.210877,0.212526,-0.057082,-0.655169,-0.823627,-0.0397006,0.28553,-0.0486661,-0.696659,-0.848445,0.0443584,0.34811,0.126308,-0.814421,0.601416,-0.618707,-0.597477,0.604464,-0.933253,0.574948,-0.719888,-0.809074,0.709313,-0.843917,0.651291,-0.638477,-0.744725,-0.000799628,-0.379304,-0.562824,-0.594149,-0.589801,-0.557727,0 +-0.616668,0.925977,1.73798,-0.635339,-1.10402,-0.61281,0.900099,1.7705,-0.703386,-1.05865,-0.600966,0.855511,1.28234,-0.709872,-0.973283,-0.595229,0.83752,0.781397,-0.600196,-0.903328,0.494808,0.718638,-0.791642,0.604064,0.862938,0.463083,0.456317,-0.968616,0.524743,0.722596,0.638288,0.699678,-0.961509,0.670562,0.788164,0.929535,1.20608,1.39341,1.4804,1.48272,1.51512,1 +0.957721,-1.45517,-0.930065,0.437366,1.00229,0.975922,-1.46182,-0.956552,0.634579,1.01122,0.937201,-1.4434,-0.914422,0.701746,1.0408,0.889984,-1.39406,-0.820428,0.135344,1.0693,-0.260772,-0.873932,0.206669,-0.397065,-1.53565,0.209058,-0.89941,-0.0330339,-0.311158,-1.53269,0.417346,-0.784636,0.0034384,-0.181991,-1.43438,-0.743436,-1.21749,-1.23176,-1.1748,-1.13026,-1.10926,1 +-0.00820599,-0.644495,-0.840199,0.12419,0.57083,0.0401005,-0.682206,-0.849844,0.241692,0.577987,0.0664675,-0.713231,-0.852373,0.438485,0.663675,0.0183311,-0.65457,-0.81669,0.595199,0.619067,-0.00862576,-0.626243,0.663035,-0.604854,-0.398815,0.643985,-0.83819,0.721686,-0.724525,-0.646913,0.502524,-0.830573,0.672581,-0.655859,-0.59238,-0.452059,-0.752661,-0.861668,-0.868795,-0.860449,-0.848215,0 +0.0727944,-0.900479,-0.936102,0.984658,0.433358,0.067577,-0.900159,-0.952584,0.879989,0.436496,0.0523644,-0.916911,-0.955612,0.654699,0.506612,0.0498156,-0.936841,-0.942119,0.760848,0.567052,-1.12977,-0.957321,0.615968,-0.648103,-1.02794,-0.482054,-1.02806,0.638267,-0.75551,-1.0606,-0.459945,-0.957381,0.691292,-0.675799,-1.05526,-0.168597,-0.760787,-0.928455,-0.969745,-0.965977,-0.975262,1 +-0.518226,0.758919,0.436756,-0.619127,-0.293586,-0.523314,0.756969,0.454837,-0.623075,-0.263761,-0.516357,0.75619,0.434217,-0.525363,-0.268029,-0.524813,0.785615,0.437256,-0.422913,-0.314226,-0.358425,0.464773,0.232886,-0.0740536,0.886796,-0.85755,0.879749,0.553259,0.324971,0.942039,-0.604764,0.584574,0.252367,-0.000939403,0.914662,0.12297,0.459735,0.543084,0.524353,0.498706,0.493019,0 +-0.614569,0.911454,0.507991,-0.635948,-0.567212,-0.621735,0.913963,0.536597,-0.640706,-0.538286,-0.61208,0.922128,0.548861,-0.540495,-0.564424,-0.607912,0.949175,0.615369,-0.44947,-0.622545,-0.699468,0.642626,0.276375,-0.0149525,0.936812,-1.16586,1.04979,0.577487,0.431559,1.02044,-0.913923,0.769573,0.239013,0.0899761,0.989625,0.458765,0.696409,0.752681,0.726764,0.678838,0.658498,1 +-0.617368,0.601995,0.155294,-0.444872,-0.937711,-0.625334,0.586973,0.199122,-0.517117,-0.97991,-0.608182,0.523803,-0.00213904,-0.566373,-0.908605,-0.584724,0.495637,-0.254086,-0.362303,-0.740627,-0.655839,-0.234475,0.404382,-0.442093,0.398025,-0.849754,-0.295425,0.582595,-0.493388,0.401923,-0.675369,-0.210007,0.459945,-0.446791,0.420854,0.892533,0.983769,0.849354,0.750433,0.679667,0.61186,1 +-0.558247,0.419055,-0.0337235,-0.431528,-0.719877,-0.569221,0.438595,0.00783606,-0.46993,-0.771212,-0.57112,0.447421,-0.0364023,-0.529661,-0.762727,-0.559016,0.437985,-0.202381,-0.410909,-0.684595,-0.0495857,-0.304041,0.242621,-0.395676,0.230577,-0.0762226,-0.227329,0.304161,-0.420824,0.432268,-0.0384211,-0.227928,0.321932,-0.392118,0.336425,0.740297,0.693801,0.512439,0.416906,0.427371,0.424152,1 +-0.518996,0.81765,0.954783,-0.648742,-0.238723,-0.516377,0.793531,0.953013,-0.665055,-0.179172,-0.504153,0.763826,0.813882,-0.576938,-0.141311,-0.508711,0.777749,0.729573,-0.46897,-0.161491,0.0629692,0.707434,-0.389019,0.218613,0.903758,-0.139502,1.12109,-0.867465,0.647853,0.906007,-0.155554,0.862298,-0.543534,0.337475,0.955822,0.0733541,0.413698,0.595179,0.643695,0.628202,0.603904,1 +-0.666944,1.10305,1.13985,-0.634279,-0.862668,-0.669602,1.08036,1.11211,-0.662746,-0.811233,-0.651181,1.04344,0.87779,-0.604714,-0.773861,-0.637388,1.04436,0.75593,-0.536887,-0.784856,0.026657,0.692871,0.126098,0.116493,1.05447,-0.748803,0.764166,0.439904,0.296915,1.02805,-0.34765,0.746984,0.192596,0.178883,1.06481,0.744955,0.963279,1.0375,1.01997,0.969725,0.933863,1 +-0.601356,0.999191,1.41305,-0.672211,-0.613829,-0.599336,0.973863,1.39426,-0.69478,-0.562585,-0.581155,0.948835,1.23394,-0.615908,-0.507192,-0.573489,0.967306,1.19179,-0.532629,-0.537857,0.472479,1.10496,-0.966707,0.716999,1.00784,0.110626,1.35438,-1.13193,0.911854,1.00302,0.16382,1.24338,-0.990115,0.79613,1.05744,0.536727,0.673081,0.858939,0.943418,0.942988,0.905807,1 +-0.583844,0.846626,0.763157,-0.630791,-0.420914,-0.586912,0.833972,0.767884,-0.645354,-0.373367,-0.578647,0.825586,0.716629,-0.57198,-0.389429,-0.582645,0.854511,0.676369,-0.491069,-0.486092,0.316085,0.641576,-0.335146,0.147578,0.875971,-0.124089,0.861668,-0.380834,0.307629,0.894782,-0.0473967,0.754171,-0.352257,0.209228,0.940959,0.34615,0.498066,0.627723,0.663725,0.634279,0.601326,1 +-0.57141,0.891024,0.699628,-0.607212,-0.509351,-0.581805,0.892243,0.690302,-0.625794,-0.488411,-0.57101,0.887365,0.689392,-0.59136,-0.51156,-0.569101,0.902758,0.681786,-0.580436,-0.57108,-0.0253176,0.61252,0.283551,0.0771324,1.00139,-0.992684,0.526452,0.580066,0.118692,0.907026,-0.459675,0.604724,0.294516,0.110096,0.961969,0.407021,0.61361,0.69535,0.703565,0.67443,0.652381,1 +-0.596508,0.848285,0.646114,-0.639367,-0.443903,-0.602695,0.844037,0.642895,-0.647023,-0.407081,-0.597577,0.854212,0.671441,-0.558397,-0.430969,-0.602805,0.892523,0.762027,-0.488781,-0.532969,0.379794,0.655989,-0.216634,0.113694,0.912953,0.0125539,1.05292,-0.438745,0.415237,0.936732,0.207718,0.834552,-0.303072,0.195604,0.934862,0.397255,0.497747,0.600756,0.631861,0.624484,0.604614,1 +-0.555338,0.281632,-0.24595,-0.335186,-0.77559,-0.554878,0.262442,-0.232056,-0.373487,-0.780708,-0.540775,0.232626,-0.34796,-0.376326,-0.698148,-0.520105,0.210427,-0.401683,-0.34764,-0.596438,0.172556,-0.328719,0.759218,-0.496207,0.240273,0.250867,-0.503563,0.902418,-0.601655,0.0329739,0.618477,-0.46953,0.770893,-0.57073,0.0990114,0.855151,0.676509,0.451229,0.284501,0.196334,0.167328,1 +0.223321,-0.865556,-1.02066,-0.00210866,1.35992,0.197603,-0.821548,-1.01978,0.216394,1.32468,0.126848,-0.728274,-0.942239,0.606473,1.1985,-0.0541934,-0.527222,-0.807715,0.666944,0.856551,1.33472,-0.95962,0.596068,-0.644514,-1.08738,0.692931,-0.374377,0.643975,-0.622235,-0.236484,0.981,-0.645844,0.651611,-0.621586,-0.336575,-1.25205,-1.42257,-1.33197,-1.27762,-1.25701,-1.238,1 +-0.695969,1.10542,1.08899,-0.620296,-1.17759,-0.700147,1.08041,1.09677,-0.656619,-1.15637,-0.680677,1.03452,0.927196,-0.636398,-1.13509,-0.657478,1.00062,0.643485,-0.548012,-1.03491,0.288389,0.597727,-0.00461767,0.0444184,0.965677,0.0793712,0.566663,0.0797409,0.104759,0.94064,0.407471,0.595668,-0.0275364,0.0433589,0.930194,1.02992,1.31853,1.37013,1.31396,1.28139,1.25757,0 +-0.57151,0.930255,1.10814,-0.658487,-0.443663,-0.573729,0.910024,1.09685,-0.676619,-0.393447,-0.560955,0.876711,0.926167,-0.587462,-0.34718,-0.561845,0.887915,0.791862,-0.46887,-0.348269,0.417486,0.791433,-0.438775,0.26559,0.954803,0.26598,1.25244,-1.01952,0.789164,0.969196,0.358535,0.995083,-0.69522,0.448241,0.969465,0.284011,0.596618,0.787215,0.829274,0.799778,0.757949,0 +-0.445332,0.822268,0.91978,-0.658337,-0.309848,-0.432948,0.801168,0.908485,-0.670822,-0.255645,-0.432628,0.793911,0.825016,-0.573399,-0.252177,-0.460584,0.828314,0.800268,-0.462493,-0.333687,0.684685,0.804336,-0.457896,0.30729,0.888375,0.301133,1.32996,-0.623745,0.795231,0.943268,0.499965,1.00026,-0.570311,0.426631,0.953753,0.140121,0.46926,0.645134,0.692091,0.67445,0.638557,1 +-0.69541,1.20797,1.50498,-0.646203,-1.15947,-0.699517,1.18379,1.47194,-0.685085,-1.11815,-0.680147,1.1483,1.23804,-0.657408,-1.09901,-0.661696,1.12774,1.05902,-0.614639,-1.06909,0.201331,0.844597,0.0267969,0.192006,1.08158,-0.5316,0.783276,0.519575,0.311298,1.06898,-0.0387609,0.908335,0.191806,0.293167,1.09362,1.01743,1.29202,1.40994,1.38774,1.33474,1.30213,1 +-0.133235,-0.693021,-0.860239,0.460085,0.295096,-0.107957,-0.732951,-0.893962,0.523234,0.361983,-0.0830593,-0.783397,-0.943298,0.900209,0.5302,-0.0682366,-0.79766,-0.936971,1.50864,0.619957,0.180901,-0.749863,0.630471,-0.6324,-0.5314,0.67332,-0.973084,0.63369,-0.757879,-0.905027,0.815131,-0.910714,0.669782,-0.67399,-0.860679,-0.126248,-0.557477,-0.730792,-0.778799,-0.788704,-0.810773,0 +-0.666574,1.1929,1.58726,-0.676988,-0.803357,-0.669512,1.17398,1.57028,-0.702616,-0.761157,-0.65348,1.14868,1.42453,-0.63362,-0.747764,-0.642166,1.15632,1.32479,-0.55216,-0.790783,0.533829,1.16778,-0.559796,0.637678,1.11558,-0.147658,1.41528,-0.427651,0.911844,1.17576,0.152016,1.3472,-0.584434,0.794581,1.19587,0.667303,0.918201,1.11472,1.1864,1.15834,1.09822,1 +-0.665624,1.11748,1.33701,-0.650321,-0.961259,-0.666084,1.0878,1.29974,-0.678808,-0.902598,-0.65404,1.05199,1.07541,-0.619647,-0.87776,-0.645354,1.04326,0.957821,-0.552819,-0.891893,0.555688,0.859879,-0.409609,0.301533,1.01329,0.338194,0.930954,-0.434627,0.463213,1.01211,0.478916,0.869514,-0.430639,0.334946,1.00475,0.803417,1.10928,1.20878,1.20652,1.17569,1.16376,0 +-0.71572,1.31188,1.897,-0.662475,-1.27369,-0.719338,1.28065,1.83433,-0.705645,-1.23452,-0.697738,1.23581,1.55987,-0.683116,-1.22574,-0.67452,1.19883,1.3296,-0.639507,-1.193,0.295655,0.94018,-0.218473,0.329019,1.10015,-0.299773,0.96015,0.120431,0.454807,1.13403,0.0801608,1.07753,-0.126788,0.458965,1.15225,1.10228,1.43714,1.60411,1.59824,1.5677,1.55802,1 +-0.700757,1.31826,1.73279,-0.675319,-1.05404,-0.704465,1.29457,1.72271,-0.706124,-0.996902,-0.684435,1.25689,1.52725,-0.649682,-0.977591,-0.666963,1.24485,1.39163,-0.585663,-0.988416,-0.106428,1.1789,0.147848,0.451829,1.24456,-0.952324,1.30949,0.638507,0.783916,1.21266,-0.553199,1.31592,0.26525,0.61334,1.27583,0.871353,1.22029,1.40073,1.4439,1.40473,1.36187,1 +0.147948,-1.00157,-0.944088,0.820149,0.564154,0.202961,-1.05386,-0.98141,0.958601,0.634469,0.254635,-1.1113,-1.00785,1.53142,0.8361,0.233026,-1.09308,-0.98079,2.19842,0.885137,-0.668023,-0.854961,0.658837,-0.642016,-0.949015,-0.0397505,-1.02422,0.666164,-0.761377,-1.20492,-0.0364221,-0.976592,0.685894,-0.682286,-1.16734,-0.353077,-0.856321,-0.984698,-0.981789,-0.997402,-1.00307,0 +0.148327,-0.884787,-0.935692,0.242761,0.575318,0.206459,-0.921249,-0.964058,0.454607,0.622905,0.215784,-0.909155,-0.957571,0.881189,0.766345,0.10299,-0.77642,-0.85892,0.901829,0.684475,-0.810283,-0.67465,0.777589,-0.596818,-0.649332,-0.0969125,-0.879659,0.791752,-0.723816,-0.91905,-0.214365,-0.874392,0.758579,-0.662176,-0.903448,-0.292957,-0.867035,-0.974243,-0.970115,-0.952993,-0.978251,0 +-0.219752,-0.488091,-0.804156,-0.26394,0.422163,-0.18361,-0.519286,-0.830603,-0.14245,0.482933,-0.198013,-0.478946,-0.832253,0.186449,0.6122,-0.291817,-0.315056,-0.676199,0.287389,0.350069,-0.171256,-0.230457,0.809564,-0.512319,-0.00731621,0.688073,-0.526522,0.887845,-0.649362,-0.329469,0.473668,-0.650182,0.760518,-0.631361,-0.320863,-0.283931,-0.661996,-0.739858,-0.802197,-0.828684,-0.847685,0 +-0.137803,-0.553439,-0.761467,-0.230057,0.250018,-0.0771521,-0.596508,-0.79719,-0.118242,0.293656,-0.0669771,-0.559166,-0.810253,0.181741,0.415466,-0.216274,-0.340593,-0.610091,0.145519,0.170277,-0.144479,-0.267209,1.04428,-0.450619,-0.178283,0.570751,-0.594409,1.0123,-0.627113,-0.463793,0.647403,-0.67459,0.825236,-0.610061,-0.425672,0.0139432,-0.582175,-0.749593,-0.775031,-0.766175,-0.783017,0 +-0.644924,0.928805,0.578797,-0.583334,-0.831273,-0.655559,0.942219,0.6535,-0.61217,-0.859909,-0.637448,0.922818,0.678598,-0.622585,-0.87862,-0.614779,0.883617,0.520915,-0.593949,-0.830463,-0.993764,0.441394,0.012484,0.00905571,0.903528,-0.768354,0.30562,-0.0524644,-0.0199402,0.81766,-0.805626,0.36727,-0.0460674,-0.00456763,0.840238,0.715749,0.96129,0.991375,0.947386,0.931414,0.941599,0 +-0.690092,1.19789,1.13778,-0.655729,-1.00498,-0.696529,1.20471,1.19127,-0.678638,-0.999001,-0.678308,1.20356,1.28695,-0.636858,-1.02207,-0.658608,1.18647,1.31844,-0.61307,-1.02222,-0.414337,1.10966,-0.439974,0.647593,1.22251,-0.385491,1.00981,-0.559626,0.73509,1.12703,-0.300293,1.04758,-0.628542,0.672941,1.16019,0.867325,1.1308,1.2206,1.2458,1.2636,1.28942,0 +-0.595259,0.625014,0.0422394,-0.574698,-0.514428,-0.606193,0.651671,0.0681165,-0.565823,-0.549691,-0.61344,0.721357,0.22431,-0.492229,-0.696599,-0.609701,0.745235,0.455097,-0.537747,-0.826925,-0.916901,0.276755,0.103659,-0.0644283,0.713941,-0.501494,0.472549,-0.365791,0.171816,0.754211,-0.663985,0.322952,-0.181531,0.0257775,0.730892,0.511679,0.443523,0.376756,0.351328,0.359214,0.378765,1 +-0.71524,1.29392,1.4112,-0.665324,-1.23301,-0.720687,1.2913,1.46883,-0.693451,-1.21614,-0.700757,1.27889,1.51851,-0.658138,-1.22764,-0.678278,1.24275,1.50439,-0.640906,-1.20857,-0.5715,1.12923,-0.134734,0.548931,1.24303,-0.631471,1.15155,-0.164849,0.663595,1.17606,-0.61367,1.18624,-0.26538,0.621326,1.25105,1.07625,1.35757,1.4581,1.48695,1.47068,1.4745,1 +-0.685584,1.11425,0.953483,-0.628572,-0.988846,-0.692971,1.12177,1.01394,-0.655959,-0.993953,-0.67376,1.10871,1.08827,-0.646543,-1.00297,-0.651811,1.07207,0.984628,-0.63318,-0.978281,-0.75585,0.778339,-0.152065,0.311768,1.09433,-0.587512,0.670602,-0.238813,0.348809,1.00749,-0.605933,0.730383,-0.297234,0.351338,1.04811,0.864327,1.11927,1.19631,1.19238,1.19349,1.19864,0 +-0.602525,0.868775,0.496397,-0.587872,-0.728643,-0.608152,0.880279,0.566213,-0.607902,-0.737979,-0.59129,0.875171,0.641296,-0.600866,-0.771033,-0.567722,0.842187,0.587292,-0.598837,-0.728633,-1.15716,0.450809,-0.0749432,0.0149928,0.872543,-0.983269,0.382503,-0.118302,0.0262372,0.81834,-1.00724,0.402073,-0.105568,0.00746648,0.832112,0.590021,0.850914,0.874872,0.832222,0.825196,0.819419,1 +-0.623105,0.832542,0.433958,-0.589111,-0.713131,-0.635859,0.864877,0.497666,-0.603385,-0.749083,-0.6333,0.897431,0.554439,-0.577507,-0.839919,-0.624314,0.890684,0.447441,-0.534878,-0.879329,-0.929905,0.311248,0.244071,-0.0572518,0.824607,-1.11487,0.522374,0.284141,0.149147,0.944038,-0.996542,0.492829,0.147638,0.0892864,0.914482,0.711382,0.727864,0.732701,0.702446,0.689952,0.721867,1 +-0.660757,0.909535,0.53051,-0.614189,-0.847465,-0.671031,0.933003,0.596768,-0.626164,-0.894102,-0.662206,0.965527,0.701097,-0.583364,-0.962829,-0.641636,0.934742,0.686484,-0.569721,-0.979061,-0.441894,0.675869,0.151586,0.14427,1.0188,-0.159532,0.649212,-0.380594,0.337835,0.912333,-0.257844,0.605024,-0.209008,0.176104,0.938051,0.801677,0.910524,0.946756,0.921189,0.914622,0.891374,1 +-0.689702,1.07413,0.810793,-0.635908,-0.993833,-0.697658,1.08506,0.85765,-0.652591,-1.03194,-0.683105,1.09734,0.947206,-0.609402,-1.08554,-0.663645,1.07779,0.999031,-0.607433,-1.10643,-0.840499,0.788154,0.00417802,0.246699,1.0744,-0.782987,0.870764,-0.187868,0.38831,1.0357,-0.917371,0.821288,-0.157123,0.275825,1.07805,0.880379,1.0484,1.07286,1.07032,1.0724,1.06862,1 +-0.503833,0.209417,-0.363432,-0.394467,-0.572979,-0.508011,0.217593,-0.318804,-0.376706,-0.609601,-0.5095,0.233775,-0.281912,-0.380204,-0.615119,-0.493278,0.150486,-0.297354,-0.504893,-0.588322,-1.89297,-0.198103,0.809324,-0.417286,0.311927,-1.44735,-0.340443,0.692581,-0.477696,0.166159,-1.49552,-0.311128,0.711602,-0.47047,0.20427,0.700957,0.438056,0.225959,0.0941739,0.0155524,-0.046897,1 +1.35674,-1.57857,-1.03989,1.74223,1.37918,1.48328,-1.61849,-1.05599,1.78207,1.39742,1.57475,-1.634,-1.0232,1.51825,1.5463,1.54774,-1.59905,-0.972054,1.19007,1.60231,-1.53877,-0.985417,0.581585,-0.641446,-1.53313,-0.746405,-1.09614,0.623245,-0.759848,-1.76853,-0.984668,-1.02722,0.642066,-0.672641,-1.62048,-1.30625,-1.43774,-1.36546,-1.29613,-1.28641,-1.29074,0 +-0.437016,0.147778,-0.256614,-0.269578,-0.302432,-0.433578,0.126428,-0.28692,-0.337425,-0.260612,-0.404512,0.0483562,-0.448411,-0.40933,-0.146618,-0.371348,-0.0172817,-0.536257,-0.434957,-0.053004,-0.717339,-0.36734,0.567332,-0.416566,0.16347,-0.00369815,-0.660127,0.540065,-0.601206,-0.0947235,-0.148577,-0.500085,0.527612,-0.46863,0.00268857,0.325041,0.207369,0.0376316,-0.0712651,-0.12239,-0.145299,0 +0.77587,-1.38809,-0.986387,1.88076,0.622875,0.902188,-1.45957,-1.02044,1.20857,0.681806,1.00324,-1.53466,-1.03223,0.620666,0.849944,1.06314,-1.56869,-0.999021,0.32758,1.05251,-1.2627,-1.04195,0.55146,-0.624834,-1.63848,-0.546662,-1.1117,0.596598,-0.741717,-1.75834,-0.546502,-1.02313,0.624194,-0.638747,-1.59741,-0.320053,-0.945827,-1.09455,-1.1153,-1.15107,-1.18559,1 +-0.706184,1.2438,1.30731,-0.658757,-1.14406,-0.712311,1.24248,1.34089,-0.685405,-1.12885,-0.69361,1.23197,1.33587,-0.642735,-1.13964,-0.67319,1.21311,1.31774,-0.61347,-1.15103,-0.32647,0.982729,-0.227578,0.500035,1.18246,-0.336965,1.0832,-0.3883,0.709303,1.15116,-0.295675,1.11374,-0.512599,0.698638,1.20427,1.01712,1.26641,1.30894,1.30743,1.29183,1.30085,0 +-0.620556,0.802397,0.65477,-0.583344,-0.982669,-0.623415,0.804566,0.753201,-0.620366,-0.968346,-0.620146,0.805845,0.680487,-0.630081,-0.961139,-0.6137,0.793371,0.475717,-0.581915,-0.938031,-0.247199,0.478406,0.24616,0.0750534,0.864157,0.196524,0.269898,0.268588,-0.00311842,0.688003,0.195504,0.349269,0.088107,0.0650583,0.77493,0.926406,1.02365,1.0457,1.02203,0.97969,0.956202,1 +-0.622325,0.787385,0.564194,-0.526442,-0.87808,-0.625843,0.769553,0.631291,-0.599567,-0.843837,-0.604414,0.69334,0.361103,-0.65343,-0.768914,-0.583784,0.643655,0.095943,-0.588562,-0.691991,-0.146988,0.247719,0.361383,-0.0963827,0.781408,0.336815,-0.162181,0.391148,-0.340613,0.513089,0.419075,0.0350729,0.339044,-0.215165,0.607672,0.779828,1.00269,1.01609,0.936811,0.901229,0.860279,0 +-0.559856,0.411808,0.0446182,-0.380413,-0.750872,-0.559996,0.390399,0.0277163,-0.471939,-0.718218,-0.534778,0.319493,-0.187748,-0.548272,-0.595359,-0.50959,0.270787,-0.324551,-0.522584,-0.483743,-0.336605,-0.260852,0.623705,-0.340683,0.289648,0.417796,-0.528451,0.615968,-0.545243,0.126208,0.423073,-0.366661,0.564174,-0.359164,0.202031,0.738468,0.712921,0.512979,0.385661,0.320823,0.266799,1 +-0.118012,-0.516867,-0.707034,0.172826,0.325271,-0.114214,-0.53103,-0.729343,0.118762,0.336795,-0.104169,-0.579517,-0.792252,0.057102,0.443003,-0.0964927,-0.609322,-0.792522,-0.0723345,0.500425,-0.194095,-0.639357,0.559716,-0.555068,-0.313087,0.538177,-0.912073,0.570421,-0.707773,-0.746644,0.573619,-0.813362,0.622585,-0.628202,-0.626633,-0.209747,-0.488361,-0.623655,-0.67352,-0.680757,-0.688983,0 +-0.615909,0.788504,0.514588,-0.59229,-0.691471,-0.625284,0.809074,0.605913,-0.61265,-0.740267,-0.621046,0.81623,0.605853,-0.59234,-0.801907,-0.604214,0.777489,0.415447,-0.537867,-0.803477,-0.00672669,0.625454,0.280433,0.148697,0.931264,0.478076,0.403223,-0.215265,0.239263,0.753741,0.485752,0.417786,-0.145249,0.14297,0.779418,0.642275,0.726195,0.762217,0.765935,0.750832,0.722036,1 +0.219053,-0.772382,-0.869085,0.30791,0.532979,0.2447,-0.783227,-0.883937,0.419175,0.553549,0.241332,-0.801018,-0.884077,0.533509,0.604074,0.249248,-0.821248,-0.852023,0.459545,0.667273,-0.535658,-0.730512,0.625384,-0.582285,-0.559636,0.138642,-0.901758,0.55197,-0.697578,-0.904987,0.385042,-0.846546,0.63261,-0.639337,-0.801018,-0.333817,-0.709123,-0.846236,-0.881808,-0.882538,-0.87908,0 +-0.545523,0.500285,0.373317,-0.546582,-0.677598,-0.558007,0.526422,0.417246,-0.57298,-0.750642,-0.558037,0.55097,0.353877,-0.59187,-0.769123,-0.547082,0.50951,0.166349,-0.611491,-0.736539,-0.030535,0.468051,0.34685,0.151706,0.782887,0.516947,0.0377715,0.18391,-0.124289,0.524014,0.527442,0.136553,0.00629701,-0.000459638,0.542414,0.627753,0.67429,0.649022,0.567752,0.475237,0.431309,1 +-0.661446,1.1301,1.0516,-0.660426,-0.725045,-0.667783,1.13259,1.07359,-0.677628,-0.684855,-0.655289,1.14593,1.15652,-0.613909,-0.734151,-0.643955,1.16409,1.30137,-0.588982,-0.846086,-0.08175,1.10085,-0.610021,0.692461,1.17867,-0.369829,1.16269,-0.339104,0.760968,1.15308,-0.316795,1.1605,-0.621126,0.75623,1.2084,0.585123,0.835841,0.944917,0.989645,0.998361,1.01949,0 +-0.690352,1.08472,0.723486,-0.636708,-0.911973,-0.701117,1.11266,0.779608,-0.650851,-0.968426,-0.690482,1.17025,1.02053,-0.614149,-1.1017,-0.672681,1.17568,1.19035,-0.627693,-1.16005,-0.0996712,0.893942,-0.294446,0.461264,1.1209,-0.608622,0.855261,0.135234,0.372628,1.0974,-0.507302,0.931374,-0.194265,0.458576,1.1539,0.79585,0.932174,1.01113,1.02713,1.02146,1.03538,1 +0.371008,-1.06402,-0.93963,0.659857,0.832702,0.451059,-1.11051,-0.963618,0.800518,0.870034,0.488701,-1.14599,-0.959231,1.00999,0.993473,0.418735,-1.09785,-0.921119,1.14611,1.0026,-0.141251,-0.824266,0.59266,-0.629292,-0.901299,0.622875,-0.994033,0.63347,-0.754261,-1.18949,0.555328,-0.949495,0.645214,-0.669922,-1.06918,-0.688703,-1.0181,-1.06998,-1.07153,-1.06888,-1.06705,0 +-0.664925,0.989516,0.473029,-0.630491,-0.777019,-0.676429,1.01715,0.512769,-0.635329,-0.81766,-0.670831,1.08213,0.799998,-0.582065,-0.933533,-0.661546,1.11109,1.07612,-0.607662,-1.04672,-0.375736,0.883108,-0.233526,0.387161,1.11347,-0.659187,0.811053,-0.0162821,0.356895,1.04675,-0.690832,0.887536,-0.360743,0.427591,1.09107,0.73604,0.812762,0.819929,0.825216,0.83651,0.854612,1 +-0.647883,0.711422,-0.00281859,-0.517736,-0.853512,-0.662386,0.750463,0.0905256,-0.524723,-0.927266,-0.650501,0.771232,0.219692,-0.542594,-0.964828,-0.626493,0.730042,0.125648,-0.526652,-0.906406,-0.243971,0.250148,0.629092,-0.223021,0.789254,-0.0455077,-0.00319844,0.549861,-0.345071,0.641896,-0.00549722,0.0590111,0.464463,-0.302002,0.671461,0.869454,0.874992,0.742506,0.626953,0.564264,0.536987,1 +-0.464253,0.314036,-0.357035,-0.451319,-0.400864,-0.487441,0.367,-0.28571,-0.426291,-0.51112,-0.525892,0.457416,-0.126448,-0.431139,-0.636189,-0.549101,0.470459,-0.112045,-0.473688,-0.730362,-0.349099,-0.119601,0.523294,-0.339114,0.426302,-0.349679,-0.0867875,0.513618,-0.310468,0.525673,-0.195314,-0.0657778,0.335026,-0.277704,0.455147,0.456946,0.325171,0.187458,0.116993,0.119541,0.160062,1 +0.472099,-1.10491,-0.993324,0.840559,0.971164,0.502134,-1.11375,-1.0066,1.03915,0.996922,0.484483,-1.13131,-0.989636,1.30204,1.00935,0.452738,-1.15248,-0.964108,1.73223,1.03732,-0.280333,-0.818659,0.640786,-0.629852,-0.863737,0.333817,-1.02224,0.640076,-0.756939,-1.21668,0.379454,-0.964668,0.67507,-0.677038,-1.12991,-0.848115,-1.06474,-1.13045,-1.14315,-1.13092,-1.13358,0 +-0.639587,0.764076,-0.00494755,-0.602955,-0.557027,-0.654489,0.810703,0.0237383,-0.588242,-0.640087,-0.65383,0.905667,0.277024,-0.497396,-0.779119,-0.646613,0.952403,0.586523,-0.519206,-0.921119,0.0963529,0.486302,0.166678,0.0279765,0.922918,-0.140041,0.79545,-0.0755131,0.364312,1.03238,-0.0852882,0.640826,-0.134914,0.154934,0.958561,0.630351,0.541155,0.468611,0.42781,0.411129,0.435107,1 +-0.639877,0.69451,-0.343582,-0.599546,-0.471119,-0.659637,0.746584,-0.317085,-0.57115,-0.646863,-0.654639,0.838339,-0.104699,-0.421734,-0.788854,-0.636189,0.869124,0.0508751,-0.287789,-0.840449,-0.698548,0.569481,-0.133155,0.206629,0.953184,-1.10384,0.737629,-0.748054,0.583175,0.992784,-0.890104,0.847795,-0.758519,0.567942,1.00655,0.5713,0.407721,0.253536,0.18291,0.18324,0.216014,1 +1.31609,-1.54833,-1.09046,2.31619,1.33799,1.30199,-1.53209,-1.10316,2.5739,1.28784,1.25356,-1.52148,-1.05617,1.98231,1.19756,1.2797,-1.55514,-1.011,1.13802,1.26918,-0.36713,-1.01426,0.610331,-0.6541,-1.45777,0.280253,-1.10601,0.629961,-0.765915,-1.64878,0.369859,-1.04472,0.675769,-0.687073,-1.60773,-1.09389,-1.44655,-1.41339,-1.35591,-1.33712,-1.33503,0 +1.82427,-1.86519,-1.14414,2.22685,1.97486,1.76818,-1.83784,-1.15835,2.97691,1.93305,1.68101,-1.79044,-1.09624,3.69326,1.84192,1.59287,-1.739,-1.02596,3.45143,1.79009,-0.483523,-0.965877,0.65334,-0.651291,-1.5623,0.182241,-1.10028,0.659667,-0.767414,-1.82497,0.217524,-1.06443,0.682446,-0.690502,-1.78315,-1.92821,-1.88914,-1.68564,-1.58438,-1.55953,-1.55824,0 +-0.687344,1.02126,0.294376,-0.643385,-0.807245,-0.699058,1.06177,0.358324,-0.641596,-0.872513,-0.687323,1.13859,0.611201,-0.547712,-0.967316,-0.671671,1.17772,0.832562,-0.491139,-1.0634,-0.375166,0.87928,0.423843,0.212866,1.14498,-0.644494,1.12722,-0.0215895,0.752022,1.2056,-0.458915,1.10391,-0.181841,0.560316,1.20993,0.810833,0.868245,0.814051,0.77631,0.750063,0.753401,1 +-0.473608,0.397815,0.075743,-0.582664,-0.389179,-0.485812,0.439445,0.128767,-0.57236,-0.498906,-0.499136,0.504093,0.357425,-0.533429,-0.589262,-0.498826,0.484493,0.419874,-0.602115,-0.623525,-0.12261,0.723516,0.0445882,0.414697,0.830154,0.284031,0.392538,-0.765785,0.492369,0.503913,0.263421,0.435527,-0.544423,0.375057,0.595648,0.453208,0.340084,0.298434,0.288709,0.28533,0.250977,1 +-0.665734,0.814471,0.0735141,-0.55177,-0.861148,-0.679907,0.850654,0.126478,-0.55145,-0.95948,-0.668043,0.897441,0.32756,-0.539536,-1.03191,-0.646623,0.882897,0.377895,-0.57095,-1.01082,-0.168747,0.320563,0.282052,-0.103339,0.854192,-0.10165,0.206869,0.300753,-0.18415,0.799129,-0.0337234,0.239983,0.20378,-0.151116,0.791982,0.860998,0.87913,0.773261,0.681496,0.667653,0.692951,1 +-0.352088,-0.216284,-0.723146,-0.0150523,-0.110266,-0.377755,-0.176594,-0.702886,0.0115443,-0.179312,-0.395896,-0.150177,-0.659997,-0.139592,-0.216804,-0.377955,-0.172736,-0.63361,-0.437926,-0.190297,-0.40938,-0.605374,0.575368,-0.498666,-0.206739,0.18326,-0.764386,0.61257,-0.666364,-0.253016,0.314426,-0.69425,0.614139,-0.57257,-0.328489,0.34674,-0.111525,-0.343622,-0.427631,-0.452269,-0.44894,1 +-0.559786,0.321623,-0.46969,-0.482723,-0.392748,-0.581615,0.381123,-0.421884,-0.437076,-0.522234,-0.596248,0.491059,-0.221841,-0.358205,-0.703935,-0.59136,0.49016,-0.135764,-0.386371,-0.793721,-0.345721,0.00785627,0.416216,-0.323022,0.533719,0.10175,0.0335935,0.0484562,-0.231437,0.566933,0.0803707,-0.018271,0.180032,-0.26488,0.508521,0.476577,0.278634,0.121411,-0.0302152,-0.045028,-0.0343931,1 +-0.618357,0.561975,-0.172186,-0.445192,-0.744056,-0.635569,0.606453,-0.0868076,-0.458166,-0.827265,-0.626043,0.623774,0.0252276,-0.538416,-0.892563,-0.602105,0.581205,-0.0350229,-0.609102,-0.850294,-0.343932,0.012544,0.503134,-0.309029,0.639437,0.0396106,-0.269718,0.498016,-0.485462,0.452878,0.139182,-0.178453,0.444532,-0.411718,0.46933,0.789373,0.731702,0.588202,0.458545,0.411848,0.40807,1 +0.404242,-0.985118,-0.969556,0.707014,0.784996,0.380594,-0.956622,-0.975482,0.85886,0.748773,0.322362,-0.925367,-0.929585,0.657348,0.680826,0.331268,-0.96101,-0.899799,0.305311,0.717719,-0.435647,-0.817939,0.61246,-0.609152,-0.73444,0.246729,-0.990365,0.603844,-0.73577,-1.06251,0.431009,-0.921349,0.648722,-0.661576,-1.0127,-0.537187,-0.966627,-1.03516,-1.04753,-1.03617,-1.03158,0 +0.586643,-1.17415,-1.01248,0.896421,1.00931,0.617808,-1.17683,-1.02423,1.13632,0.985767,0.596538,-1.18258,-0.994703,1.36075,1.00063,0.581106,-1.1869,-0.953433,1.44187,1.03923,-0.212686,-0.846505,0.619617,-0.631241,-0.936072,0.46932,-1.01678,0.614089,-0.752632,-1.22357,0.557737,-0.961699,0.651841,-0.6735,-1.15343,-0.790013,-1.16904,-1.20074,-1.18988,-1.1824,-1.17816,0 +-0.691152,1.07776,0.779858,-0.614459,-1.09388,-0.699467,1.08889,0.867015,-0.641266,-1.11467,-0.681926,1.07961,0.908765,-0.630201,-1.12682,-0.659787,1.04984,0.759258,-0.590471,-1.08197,-0.129067,0.725725,0.173045,0.193056,1.07247,0.0460275,0.523644,0.193785,0.109057,0.952924,0.151256,0.619577,-0.0302551,0.179372,0.985537,1.00119,1.19428,1.24806,1.20615,1.1915,1.19486,1 +1.62954,-1.61542,-1.02069,1.89032,1.17952,1.76525,-1.65819,-1.0414,1.64976,1.21957,1.86679,-1.69378,-1.02973,1.27704,1.3787,1.91995,-1.6969,-0.983449,0.516257,1.45025,-0.374247,-1.01317,0.623185,-0.646194,-1.71537,0.316905,-1.10259,0.661436,-0.759998,-1.89003,0.379934,-1.03245,0.675589,-0.678608,-1.71685,-0.992634,-1.30423,-1.26145,-1.23274,-1.23006,-1.22927,0 +0.585683,-1.24232,-0.983239,0.768874,0.964768,0.672421,-1.28807,-1.00367,0.964858,1.00643,0.658927,-1.27931,-0.990125,1.30908,1.08968,0.55102,-1.17473,-0.917451,1.23214,1.05435,-0.968716,-0.850024,0.655249,-0.636928,-1.10618,-0.199842,-1.00416,0.679747,-0.75638,-1.3627,-0.273656,-0.966127,0.682136,-0.677118,-1.19782,-0.813851,-1.14675,-1.16817,-1.1283,-1.11875,-1.11819,0 +0.986417,-1.62244,-1.0477,3.0594,0.792712,1.12439,-1.68806,-1.07652,1.63449,0.817569,1.28848,-1.73939,-1.05914,0.738878,1.04589,1.50932,-1.80508,-1.01793,0.943458,1.32142,-1.78667,-1.08467,0.600466,-0.663755,-1.8476,-1.05573,-1.15486,0.637798,-0.771312,-2.07238,-1.18373,-1.07394,0.683505,-0.690552,-1.83194,-0.454557,-1.16533,-1.23578,-1.20592,-1.21918,-1.24762,1 +0.272197,-1.10677,-1.02862,1.31358,0.681866,0.254585,-1.07998,-1.03686,1.46693,0.554748,0.255845,-1.05504,-0.98178,0.731292,0.418085,0.386891,-1.15567,-0.949455,-0.359994,0.468411,-0.399694,-0.975882,0.617088,-0.6537,-1.11024,0.0979721,-1.04111,0.636148,-0.758998,-1.15983,0.335896,-0.982779,0.681347,-0.683235,-1.14786,-0.422533,-1.03109,-1.12272,-1.10762,-1.10181,-1.0935,1 +1.33052,-1.67079,-1.05687,2.7452,1.09233,1.43603,-1.71209,-1.08102,2.17171,1.11416,1.50318,-1.75425,-1.058,0.900279,1.22114,1.54963,-1.79406,-1.02388,0.340243,1.31459,-0.548042,-1.05873,0.622305,-0.657038,-1.77535,0.0560426,-1.13562,0.655999,-0.766775,-1.9916,0.176314,-1.05479,0.697029,-0.686344,-1.74401,-0.906806,-1.34315,-1.33296,-1.31078,-1.31055,-1.33833,1 +0.452339,-1.17447,-0.945307,1.42779,0.412268,0.57164,-1.26203,-0.969955,0.762767,0.356025,0.759608,-1.4278,-0.994553,-1.00416,0.502094,1.18044,-1.6622,-1.01289,-0.403292,0.965947,-0.400414,-0.991804,0.628202,-0.651521,-1.29167,0.138882,-1.08543,0.639577,-0.762777,-1.45454,0.283441,-0.993004,0.696209,-0.681026,-1.27274,-0.252187,-0.709303,-0.929425,-0.952384,-0.964468,-1.02615,1 +0.201072,-0.693171,-0.816081,-0.238443,1.60653,0.1645,-0.660407,-0.815211,-0.115573,1.61577,0.169597,-0.647943,-0.768924,0.140711,1.63528,0.148098,-0.590581,-0.732651,0.422563,1.59106,0.886956,-0.688103,0.24523,-0.476696,-0.663675,0.0931744,-0.213605,0.676699,-0.438455,0.0789614,0.412448,-0.564993,0.344521,-0.478136,-0.260263,-1.74132,-1.46804,-1.2621,-1.1946,-1.18221,-1.17448,1 +-0.638567,1.00027,1.27477,-0.628522,-0.912283,-0.642245,0.977921,1.31838,-0.672611,-0.89842,-0.625454,0.922598,1.01995,-0.649532,-0.843177,-0.606023,0.894992,0.583524,-0.50961,-0.762497,0.251927,0.927066,-0.973593,0.689343,1.00789,0.193705,0.496447,-0.523714,0.339254,0.818889,0.479056,0.664135,-0.784236,0.471589,0.85671,0.754191,1.06733,1.22021,1.24087,1.23821,1.21282,0 +-0.718148,1.52447,2.83019,-0.707024,-1.33712,-0.719538,1.48784,2.81595,-0.746655,-1.29338,-0.698088,1.4199,2.56568,-0.702976,-1.22818,-0.679377,1.38113,1.99574,-0.596528,-1.1538,0.272207,2.16017,-1.84436,2.0417,1.40863,-0.0657178,1.64635,-1.06304,1.51053,1.30937,0.216214,1.88768,-1.55499,1.68607,1.29207,1.08206,1.59715,1.96055,2.0979,2.10096,2.06668,0 +-0.730392,1.51051,2.76849,-0.692651,-1.46744,-0.732171,1.46586,2.75087,-0.742946,-1.43457,-0.705485,1.3745,2.36237,-0.724425,-1.35706,-0.680687,1.32214,1.61013,-0.600996,-1.21809,0.20512,1.786,-1.33215,1.44515,1.35528,-0.256225,1.18463,-0.628692,0.902028,1.21668,0.108537,1.56748,-1.02736,1.16304,1.26729,1.19361,1.74332,2.07862,2.18757,2.17851,2.13126,1 +-0.704615,1.25234,1.77166,-0.65321,-1.27774,-0.707703,1.2299,1.78206,-0.702146,-1.28868,-0.683036,1.16743,1.60344,-0.710572,-1.22822,-0.657388,1.12454,1.00962,-0.580866,-1.08229,0.229348,1.30299,-1.22441,1.08785,1.1807,-0.282802,0.643845,-0.425022,0.383392,0.996432,0.0715351,1.0189,-0.75596,0.683935,1.10063,1.10308,1.45076,1.62126,1.65314,1.6598,1.63631,1 +1.08394,-0.693511,-0.359404,-0.453388,1.08779,1.19123,-0.702786,-0.359814,-0.410889,1.08268,1.17319,-0.680347,-0.345041,-0.299154,1.05513,0.938211,-0.65432,-0.361583,-0.242741,0.855151,1.63516,-0.405072,-0.138582,-0.240352,-0.447071,1.84256,0.117502,-0.634979,-0.0421593,-0.424102,1.40314,-0.180672,-0.345151,-0.117153,-0.240732,-1.22717,-0.958041,-0.785086,-0.736739,-0.741977,-0.779658,1 +-0.466052,-0.0331538,-0.586883,-0.12137,-0.358734,-0.472888,-0.0328639,-0.604344,-0.103989,-0.368859,-0.456786,-0.063649,-0.656569,-0.0958131,-0.296025,-0.433988,-0.0897362,-0.6732,-0.0439784,-0.187128,0.194525,-0.642525,0.535948,-0.562415,-0.144599,0.192386,-0.661636,0.463133,-0.641736,-0.0915751,0.532409,-0.581545,0.45043,-0.533459,-0.111416,0.542594,0.149207,-0.175534,-0.288729,-0.315675,-0.335876,0 +-0.403972,-0.196764,-0.559196,0.0604207,-0.44978,-0.390399,-0.243291,-0.605534,-0.0834192,-0.402563,-0.359704,-0.305461,-0.719028,-0.212376,-0.24579,-0.348359,-0.293896,-0.716479,-0.279613,-0.126828,-0.154514,-0.739818,0.527432,-0.594449,-0.343752,-0.0296155,-0.865526,0.605024,-0.718948,-0.458525,0.318504,-0.729703,0.600936,-0.61252,-0.332487,0.636448,0.182161,-0.147208,-0.236454,-0.263121,-0.254335,0 +2.02065,-1.4746,-0.999891,-0.0744932,2.44561,1.94299,-1.44995,-1.01656,0.138242,2.47038,1.90272,-1.41345,-0.926607,0.51088,2.37985,1.84407,-1.352,-0.83749,0.802177,2.29443,2.02357,-0.892063,0.40858,-0.600296,-1.47247,1.1401,-0.305071,0.870314,-0.547572,-0.906086,1.45139,-0.725545,0.483763,-0.584794,-1.03771,-2.86991,-1.90785,-1.55868,-1.45345,-1.42822,-1.41628,1 +-0.692221,1.09606,0.866056,-0.625414,-1.09702,-0.698788,1.0988,0.917511,-0.649482,-1.13764,-0.682246,1.0914,1.00945,-0.63273,-1.12998,-0.663685,1.07752,0.746385,-0.539286,-1.05967,-0.00267867,0.993404,-0.297164,0.422633,1.14895,-0.462564,0.569191,0.438275,0.105079,0.974293,-0.16363,0.706354,-0.0410698,0.170906,1.03495,0.982179,1.21473,1.31404,1.31246,1.29649,1.28592,1 +0.0910854,-0.663955,-0.832623,0.411179,0.292397,0.0865377,-0.6526,-0.834651,0.364721,0.252786,0.0620997,-0.65414,-0.81659,-0.0503254,0.22436,0.10236,-0.692541,-0.777809,-0.715819,0.329379,-1.8453,-0.830903,0.691431,-0.618237,-0.724375,-1.63978,-0.938221,0.676978,-0.726724,-0.820968,-1.3458,-0.846696,0.725635,-0.647863,-0.737679,-0.130226,-0.5093,-0.675379,-0.71508,-0.703356,-0.700217,0 +3.39056,-1.83065,-0.944568,0.0678671,2.60725,3.202,-1.80881,-0.956342,0.274306,2.65816,3.28677,-1.81778,-0.87904,0.522274,2.71799,3.46874,-1.83376,-0.815251,0.557667,2.82865,1.48701,-0.640726,-0.00899553,-0.364691,-1.1916,1.08114,-0.747394,-0.0330239,-0.442683,-1.55529,1.17358,-0.705685,0.057472,-0.378545,-1.62313,-3.12685,-2.00442,-1.61295,-1.49395,-1.46418,-1.45805,1 +2.75428,-1.80823,-0.904877,0.480965,2.0507,2.71744,-1.80778,-0.902188,0.546782,2.0763,2.76173,-1.80775,-0.836441,0.0219892,2.13937,2.85157,-1.80473,-0.811743,-0.553879,2.27406,1.11555,-0.865536,0.26576,-0.51015,-1.74702,0.359014,-0.923548,0.279953,-0.617048,-1.73441,0.580446,-0.819039,0.24444,-0.486092,-1.8301,-2.23693,-1.75193,-1.44589,-1.35403,-1.33968,-1.3409,1 +-0.16258,-0.297494,-0.603505,-0.0765822,-0.0787714,-0.162041,-0.295475,-0.599147,-0.0944738,-0.0807406,-0.181931,-0.297624,-0.578207,-0.352088,-0.0551231,-0.161811,-0.355466,-0.565083,-0.711991,-0.00491752,-1.91556,-0.570471,0.854052,-0.518526,-0.254725,-1.85049,-0.763486,0.806015,-0.652441,-0.440214,-1.52161,-0.655969,0.818239,-0.576708,-0.333517,0.277264,-0.0922347,-0.295096,-0.345651,-0.354366,-0.362642,0 +-0.640696,0.799938,0.565423,-0.541215,-1.00114,-0.644404,0.781977,0.548871,-0.586903,-0.995692,-0.624294,0.727824,0.281512,-0.577967,-0.907766,-0.602045,0.690512,0.100801,-0.506492,-0.764146,-1.39462,0.197184,0.791602,-0.197203,0.741717,-1.46595,-0.0269468,0.854312,-0.297734,0.623915,-1.13576,0.12205,0.750453,-0.197973,0.678508,0.892373,1.11389,1.0269,0.89764,0.835361,0.75623,1 +-0.700237,1.14342,0.734591,-0.641046,-1.02713,-0.708103,1.15849,0.767664,-0.65325,-1.06721,-0.689762,1.17458,0.882298,-0.589871,-1.08496,-0.668743,1.16782,0.865826,-0.523694,-1.02921,-1.43108,0.990955,0.199352,0.273866,1.19387,-1.82201,0.87911,0.644604,0.392698,1.11317,-1.71246,0.892773,0.250228,0.238154,1.14808,0.896661,1.14505,1.19828,1.17641,1.13826,1.12181,0 +-0.701996,1.06565,0.840879,-0.598087,-1.27196,-0.708653,1.06743,0.889045,-0.635639,-1.31667,-0.683395,1.0245,0.738488,-0.625644,-1.24748,-0.656738,0.984957,0.443923,-0.523044,-1.08183,-1.75379,0.582395,0.579536,0.0110747,1.02308,-2.3156,0.298424,0.828704,-0.10276,0.876301,-1.92623,0.489291,0.580096,-0.0518745,0.976062,1.12994,1.44505,1.48227,1.43109,1.35962,1.27171,1 +3.36327,-1.71183,-0.882808,-0.0317841,2.36536,3.46273,-1.73996,-0.890784,0.135684,2.41637,3.6325,-1.77042,-0.851223,0.4077,2.51363,3.81164,-1.79012,-0.836411,0.794661,2.64366,1.55881,-0.660457,-0.000789545,-0.368639,-1.30502,1.32899,-0.61246,0.246759,-0.453178,-1.13756,1.18399,-0.695889,0.136503,-0.384492,-1.4109,-2.7619,-1.85508,-1.49505,-1.39057,-1.36477,-1.35855,1 +0.365471,-0.643925,-0.669452,-0.421773,1.28304,0.394997,-0.664964,-0.69532,-0.339764,1.28017,0.412548,-0.684315,-0.649632,-0.104479,1.22929,0.457326,-0.672181,-0.634629,0.20353,1.37586,1.75227,-0.683235,0.14214,-0.401133,-0.842577,0.44905,0.237334,0.766175,-0.10239,-0.221821,0.754461,-0.158083,0.0704456,-0.260172,-0.090096,-1.40876,-1.2594,-1.10461,-1.02286,-0.989875,-0.991095,1 +-0.645624,1.0092,1.14378,-0.598857,-1.02374,-0.644094,0.975063,1.09225,-0.652231,-0.975092,-0.618277,0.892223,0.624484,-0.613939,-0.822717,-0.598127,0.846495,0.331178,-0.512089,-0.709872,-0.256414,0.67366,0.414947,0.182011,1.01005,-0.364671,0.170946,0.552869,-0.0515847,0.77733,-0.0291057,0.369899,0.301133,0.0917052,0.841848,0.884307,1.17832,1.26218,1.17723,1.08832,1.03115,0 +-0.742577,1.63121,2.49869,-0.712411,-1.41895,-0.746834,1.61862,2.45856,-0.742267,-1.39946,-0.721487,1.59199,2.48976,-0.682206,-1.37663,-0.697878,1.56058,2.38504,-0.611291,-1.33151,-0.558906,2.12423,-0.371948,1.48417,1.55691,-1.28558,2.04541,0.226679,1.77557,1.48279,-0.953953,2.26946,-0.278124,1.64659,1.56521,1.1863,1.64922,1.94309,2.08006,2.10175,2.10212,1 +-0.446032,0.210327,-0.0781417,-0.393687,-0.298824,-0.435826,0.189177,-0.113545,-0.425732,-0.246739,-0.422023,0.155504,-0.276225,-0.402523,-0.144479,-0.414617,0.136553,-0.336415,-0.374906,-0.0806405,-0.666334,-0.111125,0.778419,-0.312707,0.268679,-0.603465,-0.478876,0.704585,-0.515348,0.0974824,-0.190137,-0.360663,0.660377,-0.409769,0.149247,0.309209,0.222941,0.0833492,0.036792,0.0271567,0.0103849,0 +-0.703825,1.23114,1.69673,-0.629891,-1.44059,-0.704595,1.18597,1.6792,-0.698848,-1.40625,-0.676359,1.08474,1.02075,-0.67366,-1.24214,-0.650122,1.03507,0.508241,-0.512589,-1.05332,-0.329589,0.73652,0.152975,0.287999,1.08424,-0.87878,0.383902,0.394657,0.117463,0.915222,-0.291187,0.713841,0.0511051,0.319544,1.02913,1.21126,1.67658,1.82458,1.80547,1.74486,1.68588,1 +4.21714,-2.07531,-1.04567,0.521545,2.86273,4.00814,-2.05808,-1.06784,0.863617,2.9205,4.15596,-2.08061,-1.00335,1.31436,2.99721,4.42053,-2.10867,-0.925357,1.35718,3.11387,2.06853,-0.83703,0.201431,-0.495737,-2.15908,1.84094,-0.903957,0.263881,-0.594849,-1.69094,1.893,-0.892753,0.375696,-0.55076,-1.90147,-3.43506,-2.17474,-1.75909,-1.64045,-1.61295,-1.60671,1 +-0.533729,0.533719,0.127778,-0.455697,-0.562045,-0.532939,0.515967,0.108567,-0.496827,-0.515288,-0.516477,0.455687,-0.087967,-0.479315,-0.406911,-0.503174,0.418005,-0.213276,-0.401293,-0.308749,-0.267729,0.0584315,0.774101,-0.304641,0.560916,-0.310688,-0.331488,0.670072,-0.466881,0.360104,0.0665675,-0.210137,0.686454,-0.385471,0.399624,0.516867,0.597028,0.523963,0.413008,0.370668,0.349289,0 +-0.710802,1.48601,2.25352,-0.717628,-1.14067,-0.71431,1.47305,2.21216,-0.742117,-1.11482,-0.698118,1.47087,2.3039,-0.663465,-1.12133,-0.683535,1.47017,2.24414,-0.569431,-1.12308,-0.231017,2.58368,-1.60217,2.19298,1.55768,-0.835591,2.21063,-0.956532,2.02651,1.40239,-0.573839,2.38383,-1.40067,1.9517,1.49496,0.955912,1.32579,1.59249,1.74605,1.78449,1.78128,0 +-0.722986,1.3262,1.71885,-0.651411,-1.45668,-0.726114,1.29613,1.66153,-0.6956,-1.43355,-0.696459,1.20751,1.111,-0.635319,-1.27372,-0.669062,1.15028,0.641236,-0.480785,-1.07435,-0.0645384,1.06152,0.389389,0.469081,1.20325,-0.188388,0.701077,0.353567,0.313407,1.083,0.121581,0.814641,0.172266,0.360903,1.05135,1.25106,1.6832,1.7951,1.75321,1.63919,1.5512,0 +-0.615059,0.615559,0.0337235,-0.444242,-0.935632,-0.622325,0.615908,0.0535437,-0.482854,-0.934962,-0.606463,0.574709,-0.0477567,-0.514908,-0.862218,-0.577287,0.526352,-0.188968,-0.445662,-0.713341,-0.749803,-0.103829,0.800358,-0.355556,0.520016,-0.888195,-0.313297,0.760258,-0.480425,0.411779,-0.434897,-0.205899,0.779658,-0.418895,0.446171,0.932543,0.933693,0.774961,0.644015,0.589132,0.554608,1 +-0.741127,1.60403,2.66781,-0.704255,-1.46014,-0.745115,1.59366,2.6367,-0.741817,-1.45151,-0.718128,1.54821,2.4417,-0.697259,-1.39961,-0.692611,1.5013,1.89003,-0.593369,-1.28369,-0.597108,2.22023,-0.562415,1.7929,1.58717,-1.39871,1.52144,0.267019,1.17941,1.37767,-1.03153,2.01111,-0.294296,1.5001,1.53163,1.21865,1.7167,2.00237,2.127,2.15173,2.11411,1 +-0.686884,1.24882,1.48976,-0.650521,-1.09347,-0.692111,1.23617,1.50469,-0.688213,-1.09034,-0.669502,1.18561,1.26634,-0.652201,-1.03247,-0.645334,1.15094,0.862578,-0.528991,-0.917561,-0.566633,1.26524,-0.436256,0.773701,1.28334,-1.0288,0.690792,0.120191,0.375066,1.02652,-0.736599,0.933933,-0.246539,0.508761,1.1452,0.892133,1.30256,1.50367,1.54378,1.53561,1.52177,1 +-0.576318,0.431909,-0.282012,-0.451359,-0.459685,-0.588652,0.465962,-0.248199,-0.434227,-0.485632,-0.59275,0.514208,-0.190057,-0.386741,-0.585313,-0.590081,0.546362,-0.104699,-0.451959,-0.749733,0.457986,-0.319953,0.442943,-0.446821,0.320183,-0.0389109,-0.0244181,0.581225,-0.293426,0.587203,0.227529,-0.24451,0.502264,-0.441164,0.403982,0.528761,0.341833,0.156303,0.0847185,0.0600106,0.0724545,1 +-0.557107,0.409799,-0.288099,-0.440024,-0.439525,-0.569951,0.445302,-0.234735,-0.42898,-0.496707,-0.573679,0.479505,-0.152865,-0.417755,-0.611271,-0.568132,0.475787,-0.1232,-0.464053,-0.656309,0.580376,-0.291767,0.377455,-0.437406,0.335566,0.459425,-0.10287,0.395706,-0.361243,0.500295,0.500245,-0.271047,0.423673,-0.452778,0.352227,0.475597,0.381943,0.238163,0.156393,0.153715,0.202641,1 +-0.483613,0.516387,0.0819299,-0.57145,-0.228978,-0.479995,0.513359,0.085448,-0.563164,-0.201611,-0.483943,0.53162,0.0622894,-0.4501,-0.246929,-0.516897,0.593109,0.128037,-0.362942,-0.431169,1.05206,0.0938642,0.235485,-0.207528,0.529711,0.493848,0.546972,0.593459,0.109936,0.661056,0.732022,0.138922,0.300943,-0.178532,0.594879,0.201601,0.230307,0.194935,0.151616,0.130426,0.135814,0 +-0.565893,0.621856,0.170786,-0.560245,-0.418115,-0.57063,0.630191,0.189197,-0.561775,-0.38901,-0.577907,0.665474,0.181231,-0.488791,-0.447641,-0.59215,0.732241,0.289278,-0.487671,-0.662706,1.0605,0.098322,-0.0504252,-0.0796609,0.594919,0.315106,0.380913,0.0454277,0.14315,0.743626,0.603775,0.187268,0.0245281,-0.0401502,0.676349,0.432008,0.359914,0.30539,0.263461,0.258873,0.253116,1 +0.999921,-1.37408,-1.1112,1.00907,2.29606,0.872623,-1.30238,-1.1217,1.50063,2.28532,0.767484,-1.23033,-1.05717,2.1473,2.1467,0.645834,-1.15585,-0.984748,2.23194,1.92913,1.15253,-1.05924,0.573569,-0.661326,-1.64835,1.28928,-0.896551,0.581175,-0.730143,-0.645374,0.907416,-0.972954,0.623835,-0.675979,-1.23454,-2.56143,-1.91533,-1.64221,-1.55322,-1.52584,-1.51377,1 +2.18341,-1.78326,-1.13367,2.06013,2.61158,1.98874,-1.72004,-1.14823,2.76834,2.63402,1.86329,-1.66506,-1.08862,3.48817,2.5139,1.751,-1.6269,-1.03618,3.78024,2.35934,1.13705,-1.07057,0.565913,-0.659447,-1.83677,1.23985,-1.03606,0.584594,-0.747644,-1.24333,0.925917,-1.03401,0.627653,-0.677598,-1.73826,-3.04838,-2.07493,-1.75418,-1.65105,-1.62169,-1.60914,1 +0.588102,-1.25857,-0.957591,1.70099,0.362103,0.762357,-1.36823,-1.00042,0.904237,0.42838,0.85774,-1.46066,-1.03298,0.620296,0.691661,0.903688,-1.51007,-1.00543,-0.22538,0.874702,1.41912,-1.04682,0.583894,-0.658787,-1.54282,2.08476,-1.10595,0.610201,-0.764256,-1.68215,1.68994,-1.02387,0.664115,-0.682866,-1.48285,-0.106938,-0.722496,-0.93871,-0.982239,-1.00915,-1.04226,1 +-0.556458,0.521725,0.00118945,-0.508551,-0.472778,-0.562345,0.535308,0.0501553,-0.513669,-0.484223,-0.567542,0.554368,0.0972023,-0.497926,-0.549691,-0.575508,0.566293,0.109986,-0.525293,-0.639787,0.948866,-0.073224,0.0693561,-0.26489,0.468601,0.739538,0.0963128,0.028316,-0.188278,0.584694,0.969605,-0.101021,0.171236,-0.321432,0.452188,0.480585,0.457586,0.369629,0.316965,0.300863,0.329809,0 +-0.649692,0.805596,0.406931,-0.55115,-0.882808,-0.65367,0.799519,0.418765,-0.575878,-0.871203,-0.639817,0.782217,0.310078,-0.5515,-0.864797,-0.624824,0.772272,0.272397,-0.563914,-0.89947,0.843737,0.107507,0.294856,-0.192156,0.650122,0.311927,0.192346,0.371178,-0.100071,0.73547,0.539176,0.087987,0.370549,-0.225919,0.671151,0.839149,0.887935,0.747544,0.627952,0.585533,0.586183,1 +0.133265,-0.771952,-0.916821,0.325851,1.02883,0.103539,-0.740028,-0.926386,0.491999,1.0081,0.0713451,-0.729033,-0.888735,0.556887,0.943548,0.0391109,-0.724345,-0.848824,0.179532,0.750922,1.6094,-0.9391,0.547622,-0.644145,-0.992984,1.52957,-0.799818,0.491599,-0.682876,-0.455467,1.15011,-0.839789,0.55087,-0.636268,-0.727894,-0.848245,-1.12626,-1.10055,-1.09236,-1.10721,-1.13171,1 +0.255335,-0.83737,-0.827135,0.625304,0.250567,0.312867,-0.869674,-0.835051,0.340783,0.235395,0.329749,-0.935102,-0.863168,-0.414237,0.292547,0.289368,-0.958851,-0.87878,-0.565903,0.399025,0.496447,-0.927436,0.576748,-0.642026,-0.950954,0.961659,-0.995583,0.567952,-0.741407,-1.1427,0.682876,-0.894862,0.638238,-0.660467,-0.89806,-0.0859479,-0.464532,-0.675769,-0.743476,-0.743066,-0.743516,1 +-0.609342,0.506702,-0.311827,-0.499195,-0.502214,-0.629112,0.560586,-0.259243,-0.474198,-0.597068,-0.63319,0.645114,-0.0726645,-0.418845,-0.771642,-0.623565,0.676429,0.185629,-0.558476,-0.9184,-0.14232,-0.229308,0.24619,-0.392148,0.363792,-0.20446,0.221262,-0.0807306,-0.129567,0.722506,-0.275035,-0.114184,0.242092,-0.36751,0.452638,0.578737,0.432149,0.253156,0.177883,0.158522,0.177453,1 +2.11943,-1.62385,-1.10017,1.03418,2.4902,1.97982,-1.57937,-1.11754,1.56023,2.53296,1.90191,-1.54246,-1.06112,2.28382,2.46311,1.82667,-1.5073,-0.99992,2.64508,2.36951,1.28582,-1.02864,0.55098,-0.647753,-1.53669,1.21646,-0.891104,0.608402,-0.708813,-1.13038,0.948416,-0.970495,0.587173,-0.65299,-1.42688,-2.89978,-1.97452,-1.67258,-1.58341,-1.55763,-1.54511,1 +-0.525013,0.497746,-0.0532339,-0.556767,-0.248268,-0.535388,0.527282,-0.0192407,-0.544114,-0.246249,-0.554339,0.59257,0.100831,-0.463403,-0.365811,-0.579017,0.659627,0.308649,-0.500515,-0.63363,1.0477,-0.0655978,-0.00981512,-0.190866,0.45034,0.739718,0.518426,-0.517487,0.331138,0.748814,0.810643,0.129517,-0.181691,-0.0392706,0.573289,0.296365,0.185619,0.137533,0.131586,0.136233,0.152745,1 +-0.667633,1.00034,0.772852,-0.638637,-0.926346,-0.67345,1.00066,0.818959,-0.65341,-0.894152,-0.666104,1.01496,0.895472,-0.594769,-0.952114,-0.65361,1.025,1.09757,-0.605364,-1.07137,0.989785,0.587063,-0.479815,0.288209,0.841748,0.668103,1.05971,-0.958711,0.802397,1.03714,0.801948,0.742467,-0.520525,0.373797,0.923908,0.888615,0.954063,0.933443,0.917031,0.909784,0.908475,1 +1.08449,-1.01819,-0.863587,0.128198,1.6331,1.03685,-1.01023,-0.884717,0.291137,1.64703,1.03741,-1.02019,-0.873862,0.523234,1.60886,1.02816,-1.02265,-0.808074,0.111535,1.51978,2.35745,-0.933523,0.500055,-0.635119,-1.3203,2.14421,-0.665544,0.150066,-0.504963,-0.675979,1.94644,-0.722996,0.305031,-0.51133,-0.908745,-1.86865,-1.3784,-1.24327,-1.20526,-1.1979,-1.2111,1 +0.0295455,-0.671401,-0.790893,0.399645,0.150246,0.0490761,-0.698728,-0.814551,0.318454,0.176503,0.0555429,-0.750763,-0.85746,0.126488,0.261832,0.0853482,-0.799339,-0.865786,0.0313747,0.381114,0.801947,-0.83622,0.441554,-0.584094,-0.745535,1.38549,-0.934822,0.459215,-0.692981,-0.895002,1.24639,-0.869834,0.557457,-0.629512,-0.883428,0.0704555,-0.374097,-0.629792,-0.675289,-0.696829,-0.720677,0 +-0.554658,0.585144,0.507842,-0.556547,-0.59195,-0.565983,0.584074,0.558586,-0.59257,-0.615109,-0.566892,0.560515,0.464153,-0.608272,-0.641456,-0.55171,0.525492,0.188788,-0.498986,-0.593769,1.28699,0.16426,-0.42908,0.0465374,0.49111,1.45543,0.18479,-0.775001,0.127588,0.499156,1.27642,0.156613,-0.455797,0.0427092,0.437286,0.529501,0.629892,0.662825,0.650891,0.662556,0.680047,0 +-0.67414,1.01726,0.928216,-0.628722,-0.98009,-0.680067,1.01391,0.947786,-0.652421,-0.968915,-0.667783,1.0127,0.94007,-0.617438,-1.01407,-0.651751,1.00215,0.983409,-0.627793,-1.07759,0.720227,0.537957,-0.406381,0.200972,0.861768,0.194125,0.795311,-0.811892,0.533159,0.970215,0.239053,0.658248,-0.444642,0.283871,0.941859,0.891573,1.01452,0.989066,0.961599,0.936541,0.943088,1 +-0.655069,0.829574,0.305491,-0.576448,-0.821688,-0.664005,0.847425,0.34736,-0.585433,-0.841038,-0.656289,0.87911,0.435557,-0.5517,-0.907406,-0.642695,0.886666,0.557377,-0.601545,-1.02696,0.73456,0.109327,0.0932344,-0.180901,0.665504,0.257044,0.500025,-0.127428,0.171676,0.896021,0.422173,0.263541,0.0448181,-0.0881367,0.768014,0.79572,0.809044,0.73523,0.665514,0.635279,0.636838,1 +-0.646444,0.933213,0.644105,-0.626843,-0.747114,-0.65223,0.937411,0.665114,-0.638308,-0.721697,-0.648962,0.958571,0.688573,-0.568582,-0.803227,-0.646014,0.991194,0.852972,-0.562205,-0.972014,0.929975,0.413278,-0.304471,0.130956,0.786225,0.434587,0.943828,-0.711801,0.670952,1.01543,0.499276,0.634839,-0.431799,0.305301,0.921749,0.686524,0.733201,0.708283,0.703126,0.698358,0.702556,1 +-0.618047,0.870394,0.730742,-0.619626,-0.667083,-0.622905,0.869284,0.742656,-0.636838,-0.638207,-0.619107,0.880249,0.741487,-0.586323,-0.689912,-0.615349,0.89916,0.843117,-0.594139,-0.815391,1.04657,0.473728,-0.589621,0.312647,0.75601,0.731742,0.75495,-1.07771,0.708933,0.890834,0.718219,0.557187,-0.668123,0.404432,0.823407,0.595179,0.701737,0.702136,0.685015,0.695399,0.71393,0 +-0.0489361,-0.647853,-0.781088,0.277315,0.487831,-0.0481263,-0.642156,-0.79613,0.251117,0.499615,-0.0643884,-0.655679,-0.818709,0.158362,0.5719,-0.0766924,-0.670192,-0.832792,0.300433,0.627083,0.207169,-0.756859,0.562695,-0.579236,-0.598737,0.416476,-0.921379,0.555098,-0.69421,-0.758968,0.749493,-0.840409,0.582075,-0.597507,-0.778849,-0.307499,-0.65333,-0.739598,-0.749823,-0.740108,-0.701566,0 +-0.426421,0.0788414,-0.63292,-0.482004,0.463763,-0.457616,0.140941,-0.616108,-0.421144,0.403722,-0.480944,0.226429,-0.499466,-0.234565,0.241162,-0.504653,0.330128,-0.330018,-0.121061,-0.0524942,0.938471,-0.0366519,-1.05017,0.71483,0.0625796,0.501894,0.112465,-0.457126,0.0901759,0.59256,0.545113,0.108907,-1.26701,1.00234,0.271337,-0.374547,-0.538046,-0.595668,-0.613949,-0.619437,-0.61259,0 +-0.675569,1.11682,1.3785,-0.663665,-0.952364,-0.680247,1.11893,1.36995,-0.688913,-0.930075,-0.667323,1.13837,1.40709,-0.645244,-0.956352,-0.656898,1.15585,1.4966,-0.631461,-1.02248,0.0239983,1.13384,-0.983518,0.889335,1.13259,-0.524223,1.10005,-0.677378,0.864757,1.11491,-0.436346,1.27597,-0.967436,0.985478,1.20099,0.852632,0.992504,1.05716,1.12623,1.17754,1.21617,1 +-0.440264,0.106758,-0.419615,-0.410669,-0.22363,-0.443003,0.116043,-0.402683,-0.369629,-0.304171,-0.419814,0.111375,-0.378485,-0.287619,-0.292447,-0.386101,0.0612998,-0.355146,-0.370429,-0.263251,0.51001,-0.492599,0.570371,-0.506132,0.0373719,0.547002,-0.0120441,-0.389629,-0.169107,0.254036,0.465042,-0.149457,0.118582,-0.34794,0.217563,0.331628,0.0409601,-0.107138,-0.192596,-0.240252,-0.255395,1 +-0.525663,0.24497,-0.152345,-0.292776,-0.620286,-0.518616,0.205579,-0.168987,-0.400514,-0.59265,-0.495757,0.126588,-0.381973,-0.464682,-0.484363,-0.471789,0.0721645,-0.517357,-0.32736,-0.332007,-0.0255175,-0.46888,0.608812,-0.528541,0.108857,0.234785,-0.616768,0.73495,-0.630551,-0.0786114,0.275085,-0.524213,0.695819,-0.561005,0.038551,0.593559,0.577398,0.364242,0.234095,0.179652,0.124579,0 +-0.657198,1.00999,0.810893,-0.656528,-0.738698,-0.662995,1.00976,0.846186,-0.667963,-0.695849,-0.6534,1.02464,0.971824,-0.59184,-0.7363,-0.648483,1.06514,1.30465,-0.594509,-0.934572,0.271227,0.891654,-1.08262,0.692631,0.945787,-0.00465768,1.27234,-1.58078,1.18832,1.08793,0.0359225,0.997982,-1.12359,0.818859,1.02908,0.705335,0.699998,0.688223,0.718128,0.739398,0.747864,1 +-0.670442,1.18039,1.65108,-0.699727,-0.882898,-0.67286,1.17858,1.63096,-0.719858,-0.839889,-0.665054,1.21095,1.74195,-0.639867,-0.880659,-0.660347,1.24885,2.09577,-0.596828,-1.02677,0.518516,1.63171,-2.27815,1.8248,1.10995,0.0166319,1.97117,-2.49572,2.30929,1.24899,-0.00210888,2.01608,-2.63364,2.32734,1.28134,0.794291,0.918561,1.00613,1.11357,1.20415,1.24388,1 +0.160342,-0.966517,-0.966137,0.979141,0.427681,0.136653,-0.935082,-0.966707,0.93889,0.371428,0.083849,-0.889975,-0.930195,0.463163,0.298124,0.0852683,-0.864647,-0.911894,0.658038,0.423763,0.0258374,-0.941489,0.645894,-0.645574,-1.02216,0.131496,-1.02564,0.662346,-0.752082,-1.11367,0.473118,-0.953583,0.729293,-0.671551,-1.13072,-0.0819299,-0.719727,-0.896951,-0.906426,-0.855881,-0.852493,1 +-0.445352,0.112945,-0.351548,-0.259713,-0.570311,-0.446291,0.105338,-0.350349,-0.304361,-0.546472,-0.445792,0.0784214,-0.460465,-0.325051,-0.495477,-0.441074,0.0638486,-0.527032,-0.226949,-0.393447,0.524453,-0.504053,0.636139,-0.525683,0.0104051,0.546822,-0.575248,0.752871,-0.601086,-0.054943,0.79649,-0.554459,0.676589,-0.559746,-0.051315,0.665564,0.453678,0.195944,0.100131,0.093954,0.0850184,1 +-0.296335,0.230347,-0.170696,-0.527452,0.236144,-0.319004,0.247349,-0.157413,-0.506522,0.250377,-0.333257,0.261432,-0.154285,-0.382763,0.211826,-0.353347,0.30599,-0.0760228,-0.303661,0.0669073,1.09231,-0.113294,-0.458485,0.0551831,0.129057,1.0082,0.351358,-0.907266,0.344481,0.557497,0.909005,0.00211898,-0.446092,0.0827396,0.294366,-0.311747,-0.177303,-0.209607,-0.24479,-0.266619,-0.271807,0 +-0.195984,-0.401693,-0.678118,0.0255478,0.257514,-0.18394,-0.423203,-0.710022,0.0593609,0.287839,-0.178313,-0.467891,-0.774951,0.123599,0.364661,-0.178273,-0.503244,-0.789104,0.211247,0.394547,0.46951,-0.577397,0.465992,-0.48989,-0.275385,0.610401,-0.807185,0.525463,-0.659267,-0.460485,0.768404,-0.742377,0.55246,-0.566772,-0.502694,-0.132985,-0.397335,-0.555368,-0.601296,-0.59274,-0.596848,0 +-0.636099,0.79742,0.312307,-0.599876,-0.554718,-0.646203,0.818599,0.356595,-0.603205,-0.554528,-0.641796,0.849634,0.471819,-0.541155,-0.6326,-0.638747,0.89737,0.706574,-0.585053,-0.852722,1.07668,0.330828,-0.598737,0.247519,0.645614,0.482634,0.710772,-0.643905,0.441134,0.955932,0.798499,0.443303,-0.423493,0.214055,0.790413,0.570121,0.501205,0.423213,0.399594,0.392338,0.398285,1 +-0.629342,1.12568,1.69681,-0.699267,-0.830433,-0.627782,1.11686,1.65281,-0.719658,-0.788364,-0.627883,1.14188,1.7494,-0.641326,-0.810153,-0.637518,1.17345,2.07827,-0.601865,-0.941819,0.693031,1.63111,-2.57347,2.12019,1.06868,0.40832,1.95502,-2.75706,2.5112,1.19128,0.365161,1.91105,-2.8417,2.46582,1.19754,0.716949,0.873912,0.972444,1.09542,1.16957,1.23488,1 +-0.687933,1.3119,2.00177,-0.700367,-1.1495,-0.689302,1.3008,2.00734,-0.727064,-1.10818,-0.677128,1.29141,2.02474,-0.663295,-1.08544,-0.664795,1.27734,1.8939,-0.583994,-1.07655,0.434327,1.69661,-1.88489,1.76844,1.25282,0.279893,1.84321,-2.24999,2.13071,1.2458,0.339074,1.85561,-2.21292,1.98102,1.23816,1.00889,1.28718,1.45641,1.56225,1.62652,1.66861,1 +-0.627323,1.02911,1.18729,-0.691671,-0.679297,-0.627982,1.038,1.18345,-0.705345,-0.666923,-0.628152,1.09005,1.37839,-0.615808,-0.721227,-0.638168,1.15082,1.88481,-0.587532,-0.891404,0.706344,1.36182,-2.23978,1.68914,0.977622,0.053284,2.06454,-1.81352,2.05083,1.22336,0.141391,1.75474,-1.66657,1.62679,1.23695,0.63347,0.679927,0.705954,0.823037,0.89882,0.943948,1 +1.54295,-1.77507,-1.05436,2.81989,0.98024,1.69249,-1.80779,-1.06753,1.78924,0.984518,1.6384,-1.78867,-1.03629,-0.564304,1.03362,1.58652,-1.79044,-1.01316,-0.770433,1.18838,0.083709,-1.06251,0.624004,-0.657228,-1.81878,0.26538,-1.13992,0.660267,-0.766045,-2.16238,0.427701,-1.05591,0.710122,-0.684215,-1.83895,-0.588162,-1.25803,-1.2485,-1.19708,-1.16188,-1.12856,1 +-0.574599,0.277794,-0.316345,-0.373997,-0.561565,-0.589001,0.290678,-0.268439,-0.379204,-0.598587,-0.581875,0.279393,-0.293257,-0.385391,-0.607353,-0.561405,0.243301,-0.394377,-0.276365,-0.538696,0.202361,-0.296155,0.577197,-0.522614,0.271567,0.30647,-0.356805,0.615538,-0.606923,0.215754,0.290138,-0.400624,0.669512,-0.576797,0.168677,0.574169,0.553919,0.366471,0.199302,0.112145,0.0404102,1 +0.00130935,-0.670412,-0.85843,0.241132,0.600176,-0.00847575,-0.664515,-0.883617,0.365831,0.620806,-0.0332936,-0.664965,-0.901499,0.651851,0.656798,-0.0613599,-0.640097,-0.855471,0.744665,0.61232,-0.692201,-0.725455,0.528381,-0.59295,-0.519276,-0.120181,-0.881358,0.507531,-0.69515,-0.671981,-0.190137,-0.85725,0.580756,-0.631631,-0.77647,-0.49079,-0.740427,-0.867445,-0.890844,-0.894242,-0.901249,0 +-0.588502,0.615948,0.000609731,-0.560415,-0.443253,-0.598677,0.631601,0.0405201,-0.5514,-0.457056,-0.601625,0.657408,0.0987216,-0.462284,-0.53081,-0.603235,0.676908,0.119531,-0.379794,-0.604134,-0.309109,-0.0143928,0.242801,-0.358524,0.525743,-0.540126,0.51046,0.181671,-0.099981,0.754341,-0.498326,0.172925,0.226559,-0.30538,0.608302,0.435327,0.453358,0.396586,0.330478,0.294146,0.283001,1 +-0.626443,0.751852,0.260962,-0.563514,-0.568442,-0.635539,0.75537,0.294176,-0.57234,-0.559056,-0.630081,0.761977,0.291857,-0.523194,-0.615459,-0.624924,0.772961,0.290088,-0.493528,-0.69529,0.219822,0.0306951,0.229728,-0.317374,0.599797,-0.146398,0.437826,0.194884,-0.0844286,0.820039,0.0524144,0.218173,0.217454,-0.239782,0.719757,0.513419,0.597148,0.589901,0.525453,0.46898,0.451909,1 +-0.548402,0.314836,-0.267409,-0.316575,-0.698518,-0.564553,0.320753,-0.249358,-0.362493,-0.729043,-0.553209,0.276075,-0.395946,-0.344351,-0.650921,-0.528991,0.235345,-0.540046,-0.0650181,-0.473618,-0.364771,-0.525703,0.479935,-0.540115,0.0408002,-0.0691361,-0.454517,0.440994,-0.57218,0.236654,-0.119312,-0.48983,0.505353,-0.544183,0.0741036,0.73538,0.597508,0.336575,0.20332,0.112935,0.0588612,1 +-0.634409,0.828814,0.460405,-0.577247,-0.662016,-0.643305,0.827895,0.498976,-0.596718,-0.65319,-0.634309,0.81646,0.461434,-0.564454,-0.685964,-0.626593,0.81626,0.384672,-0.519665,-0.73515,0.0566723,0.147838,0.205479,-0.258463,0.687284,-0.375886,0.443593,0.239703,-0.0786914,0.847825,-0.330668,0.311817,0.227549,-0.182511,0.79724,0.586973,0.719588,0.723386,0.678968,0.627293,0.602855,1 +-0.648403,0.834671,0.516057,-0.579886,-0.888625,-0.65354,0.819639,0.536467,-0.600636,-0.862568,-0.644934,0.7968,0.424102,-0.553179,-0.860329,-0.630521,0.780787,0.314056,-0.479955,-0.853132,0.419585,0.165389,0.089926,-0.239872,0.656389,0.2655,0.434517,-0.0367021,-0.0736139,0.773671,0.232566,0.272287,0.0697959,-0.191246,0.717649,0.833602,0.923188,0.845006,0.763726,0.716979,0.692601,1 +-0.610371,0.790993,0.444453,-0.557667,-0.746884,-0.615329,0.771462,0.442403,-0.580936,-0.707584,-0.600616,0.73578,0.28546,-0.535328,-0.685245,-0.581455,0.709332,0.133784,-0.436456,-0.624804,0.67352,0.100551,0.151236,-0.276574,0.624684,0.394827,0.248398,0.154304,-0.182291,0.73607,0.416306,0.18415,0.159182,-0.216194,0.69458,0.641126,0.834991,0.773921,0.688143,0.648512,0.630871,0 +-0.379164,0.0293456,-0.419165,-0.180002,-0.484383,-0.394787,0.0300253,-0.397675,-0.267559,-0.517866,-0.405461,-0.00436804,-0.496337,-0.394457,-0.424102,-0.40748,-0.0250379,-0.584304,-0.292497,-0.32675,0.0631691,-0.648502,0.523824,-0.574039,-0.169677,-0.0654179,-0.637128,0.518226,-0.642256,-0.069226,0.0160422,-0.569451,0.557047,-0.566582,-0.0988017,0.525872,0.398725,0.20399,0.0874372,0.0581015,-0.004048,1 +0.132485,-0.513619,-0.659517,0.212806,0.149567,0.156953,-0.533999,-0.680057,0.0173015,0.193465,0.159302,-0.59224,-0.763746,-0.24579,0.312037,0.139892,-0.623895,-0.815251,-0.0207198,0.425792,0.0849884,-0.814261,0.576588,-0.616268,-0.619437,0.532479,-0.904547,0.536237,-0.718798,-0.733171,0.32616,-0.820159,0.611761,-0.635779,-0.700647,-0.0402403,-0.233525,-0.416996,-0.48952,-0.51115,-0.536227,1 +0.699608,-1.28005,-0.974513,0.94009,1.09337,0.767004,-1.30591,-0.997482,1.066,1.15196,0.775061,-1.33017,-0.991885,1.30653,1.26037,0.745705,-1.32121,-0.954393,1.39393,1.29917,0.47007,-0.886636,0.525493,-0.593799,-1.08787,1.07197,-1.02856,0.524023,-0.704255,-1.38505,0.838939,-0.972054,0.588052,-0.631771,-1.3315,-0.886956,-1.208,-1.18716,-1.16311,-1.14557,-1.13832,0 +-0.177823,-0.410599,-0.593639,0.0291061,0.0576518,-0.165149,-0.439485,-0.644984,-0.0210697,0.12133,-0.16273,-0.486892,-0.734021,-0.00997513,0.256054,-0.186189,-0.475497,-0.716769,-0.153585,0.284161,0.426241,-0.676948,0.358894,-0.38816,-0.431868,0.91943,-0.848974,0.34649,-0.542684,-0.626173,0.762397,-0.746625,0.277834,-0.266749,-0.63287,0.0626293,-0.235714,-0.439935,-0.508941,-0.534608,-0.539666,0 +0.727234,-0.847565,-0.704415,-0.191096,0.731902,0.802317,-0.829854,-0.711872,-0.108127,0.615378,0.831693,-0.790013,-0.579157,-0.149317,0.660756,0.970925,-0.849534,-0.477436,-0.628452,0.702606,0.91912,-0.603344,0.549211,-0.513478,-0.505023,1.09637,-0.498536,-0.0535639,-0.379914,-0.646653,0.950215,-0.525403,0.240083,-0.421843,-0.561725,-0.626103,-0.849414,-0.744775,-0.750543,-0.79667,-0.856491,1 +-0.456517,0.42899,0.0539136,-0.504963,-0.249118,-0.462583,0.443503,0.0755729,-0.513769,-0.244071,-0.475957,0.480085,0.110256,-0.509491,-0.329979,-0.527132,0.534108,0.130366,-0.546582,-0.495297,1.15615,-0.146338,0.0412199,-0.307879,0.26525,0.454687,0.109696,0.198203,-0.233855,0.599057,0.646853,0.014393,0.160432,-0.257854,0.514488,0.293226,0.236125,0.20373,0.158632,0.128637,0.128787,1 +0.902148,-1.41035,-0.977282,1.71607,0.810033,0.948226,-1.44067,-0.996642,1.03959,0.815001,0.982929,-1.48736,-1.00034,-0.032684,0.962958,1.00474,-1.5257,-0.991045,0.00115951,1.11673,0.573409,-1.03717,0.600336,-0.654449,-1.60392,1.24771,-1.10432,0.607692,-0.758319,-1.72477,1.07486,-1.0202,0.67321,-0.678098,-1.56333,-0.541385,-1.07242,-1.1278,-1.11786,-1.11721,-1.14364,1 +-0.568222,0.770913,0.554349,-0.598297,-0.544493,-0.568482,0.753801,0.555008,-0.61247,-0.5096,-0.559696,0.741027,0.464293,-0.545243,-0.512129,-0.549831,0.737789,0.376406,-0.457376,-0.533209,0.989266,0.295945,-0.10158,-0.129397,0.648363,0.685914,0.590951,-0.195564,0.0739938,0.801508,0.786895,0.405212,-0.097832,-0.0656777,0.733361,0.443503,0.642266,0.651851,0.603844,0.568012,0.554189,0 +1.81493,-1.85372,-1.10993,3.24344,1.7444,1.92122,-1.88715,-1.13335,3.55701,1.76018,1.9797,-1.91208,-1.1024,4.33174,1.86473,1.8961,-1.8838,-1.05781,5.20822,1.86539,0.293766,-1.034,0.602045,-0.660656,-1.67108,1.03273,-1.14246,0.630851,-0.770473,-2.0374,0.844877,-1.08102,0.669932,-0.690162,-1.94075,-1.714,-1.71311,-1.56139,-1.49623,-1.46968,-1.45411,0 +-0.477286,0.212266,-0.323212,-0.370998,-0.235315,-0.500605,0.253046,-0.303911,-0.3681,-0.290748,-0.521355,0.294116,-0.313497,-0.360454,-0.373407,-0.522014,0.308209,-0.374087,-0.269478,-0.457066,0.701377,-0.379994,0.284181,-0.479325,0.124319,0.133535,-0.277024,0.424932,-0.508261,0.401663,0.549871,-0.315126,0.442583,-0.484493,0.2651,0.324781,0.134764,0.0289658,-0.079691,-0.105788,-0.119292,1 +-0.658847,0.813022,0.546313,-0.519635,-1.14036,-0.665254,0.788714,0.597617,-0.594619,-1.16137,-0.641356,0.705624,0.342302,-0.650511,-1.05948,-0.610911,0.650621,-0.0652781,-0.423173,-0.848654,0.288179,-0.0238482,0.207878,-0.325021,0.556368,0.0728344,-0.0876671,0.334686,-0.382623,0.589921,0.30601,0.024468,0.230567,-0.307609,0.595828,1.01945,1.23796,1.19015,1.08484,0.973913,0.870334,1 +-0.603894,0.766405,0.375346,-0.593999,-0.456287,-0.611171,0.766585,0.401503,-0.600846,-0.436846,-0.606133,0.765645,0.362373,-0.521055,-0.456467,-0.602685,0.77594,0.301992,-0.420414,-0.497506,0.320903,0.152096,0.0801508,-0.22376,0.652601,0.0923348,0.684275,-0.127708,0.116503,0.863168,0.113844,0.395357,0.00607711,-0.111865,0.777799,0.362992,0.538567,0.563204,0.522954,0.48966,0.466062,0 +-0.591071,0.855641,0.752952,-0.618327,-0.542584,-0.590471,0.835931,0.750143,-0.636069,-0.492229,-0.578077,0.805526,0.562435,-0.553539,-0.460435,-0.57256,0.807904,0.398865,-0.423892,-0.47049,0.83672,0.357075,-0.109566,-0.083539,0.713661,0.390679,0.804196,-0.20511,0.236604,0.906936,0.640776,0.565853,-0.158952,0.0356227,0.838939,0.432628,0.645284,0.722206,0.696889,0.645794,0.606033,0 +-0.232376,-0.0894063,-0.379474,-0.186598,-0.0179112,-0.207049,-0.125269,-0.411748,-0.257694,0.0611899,-0.191456,-0.18374,-0.59342,-0.169167,0.206229,-0.20328,-0.191376,-0.651441,0.0344732,0.263301,0.632251,-0.503903,0.49004,-0.53113,-0.0548529,1.0854,-0.718548,0.463673,-0.645414,-0.271797,1.08053,-0.655059,0.558817,-0.569911,-0.26529,-0.0141931,0.0281164,-0.0958731,-0.166009,-0.213036,-0.241442,0 +-0.643325,0.885627,0.644755,-0.606413,-0.826385,-0.646413,0.872003,0.678668,-0.625484,-0.802867,-0.642006,0.862218,0.610631,-0.57195,-0.827855,-0.635449,0.862697,0.518846,-0.498326,-0.875032,0.83687,0.351998,-0.0582714,-0.0764924,0.744286,0.417975,0.659257,0.0816099,0.0933344,0.868995,0.685844,0.49066,0.0216695,-0.0457675,0.81739,0.756579,0.87905,0.888045,0.825576,0.764835,0.733751,1 +0.741367,-1.33807,-0.98155,1.8272,0.641476,0.811873,-1.37341,-1.00644,1.11651,0.707983,0.847215,-1.40521,-1.01426,0.605114,0.885856,0.885117,-1.43544,-0.988806,0.310658,1.01279,0.417226,-1.04361,0.598987,-0.656239,-1.59193,1.10117,-1.10988,0.624304,-0.764536,-1.632,0.999221,-1.03442,0.684435,-0.683485,-1.57371,-0.329419,-0.957671,-1.07702,-1.07909,-1.05769,-1.06221,1 +-0.221282,-0.221771,-0.539336,-0.0529138,0.0511949,-0.207338,-0.249258,-0.57142,-0.113754,0.125988,-0.198333,-0.297335,-0.705575,-0.0128037,0.240372,-0.195464,-0.30756,-0.729433,0.141151,0.291237,0.637518,-0.606113,0.553969,-0.578916,-0.193575,1.13381,-0.806315,0.543304,-0.699607,-0.404092,1.10413,-0.753771,0.621436,-0.626123,-0.426161,-0.016412,-0.130416,-0.276115,-0.345861,-0.355156,-0.363812,0 +-0.569091,0.874622,0.941329,-0.627053,-0.576957,-0.562924,0.83651,0.923148,-0.649762,-0.515927,-0.553769,0.790253,0.672121,-0.570711,-0.471729,-0.557197,0.789353,0.447781,-0.432118,-0.450299,0.69482,0.440764,0.127698,-0.106718,0.786675,0.157473,0.849624,0.24402,0.246729,0.862358,0.289308,0.646763,0.0724046,0.0393409,0.896701,0.416566,0.728414,0.83751,0.823837,0.770523,0.726684,1 +-0.683296,0.943238,0.842038,-0.562564,-1.2421,-0.686794,0.910984,0.847475,-0.627033,-1.24515,-0.661976,0.831833,0.532499,-0.644624,-1.13937,-0.635049,0.785325,0.155784,-0.486262,-0.95963,0.699328,0.141991,0.155924,-0.239942,0.682866,0.44971,0.0935842,0.275955,-0.276615,0.711502,0.672801,0.188378,0.189787,-0.221681,0.705574,1.09037,1.38065,1.38065,1.26485,1.13468,1.04599,1 +-0.725465,1.3394,1.65727,-0.667333,-1.36716,-0.730302,1.33711,1.69932,-0.702146,-1.37903,-0.706114,1.31089,1.63786,-0.67488,-1.32667,-0.681566,1.28345,1.32672,-0.594829,-1.24598,-0.541335,1.28863,-0.432048,0.750043,1.29507,-1.01332,1.04603,0.121251,0.565383,1.19675,-0.545053,1.19191,-0.20361,0.582705,1.25849,1.19799,1.58454,1.77755,1.79087,1.78276,1.74994,1 +-0.637398,0.841708,0.595369,-0.574728,-0.923828,-0.637288,0.822207,0.603254,-0.603775,-0.907805,-0.625474,0.786355,0.381323,-0.548012,-0.843907,-0.619877,0.786025,0.22375,-0.443783,-0.827755,-0.016352,0.376216,0.334766,-0.0892262,0.841748,-0.0661976,0.216444,0.596698,-0.110366,0.685834,0.246649,0.189787,0.314246,-0.176763,0.726404,0.830683,1.00558,1.01167,0.941499,0.91925,0.872393,1 +2.38643,-1.84987,-1.04543,0.500995,2.43514,2.22845,-1.81651,-1.06854,0.871533,2.41231,2.14159,-1.78363,-0.994613,1.28018,2.35476,2.04948,-1.74805,-0.893353,0.75522,2.29945,0.922339,-0.991534,0.508051,-0.611281,-1.50003,2.15878,-0.79556,-0.193625,-0.334416,-1.67309,1.2076,-0.843427,0.270897,-0.482644,-1.53695,-2.69231,-2.03423,-1.67207,-1.55611,-1.53362,-1.53075,1 +-0.679957,0.938381,0.63363,-0.604974,-1.01474,-0.684045,0.94019,0.647813,-0.621826,-1.0066,-0.667663,0.954343,0.65365,-0.587882,-0.989416,-0.648093,0.951944,0.585863,-0.567952,-1.00141,0.0278864,0.304251,-0.116393,0.119192,0.763227,-0.61336,0.724455,-0.0172117,0.228648,0.982619,-0.345231,0.707464,0.0121242,0.14284,1.00075,0.930884,1.06408,1.01759,0.93989,0.916881,0.924957,1 +-0.478896,0.18342,-0.331588,-0.348619,-0.269358,-0.479005,0.185419,-0.348449,-0.343422,-0.276575,-0.468351,0.185179,-0.414067,-0.277054,-0.248838,-0.460994,0.202641,-0.414587,-0.230607,-0.232826,-0.977372,-0.209727,0.651501,-0.452198,0.311977,-0.951244,-0.475347,0.83626,-0.555598,0.106108,-0.763106,-0.465372,0.663625,-0.537127,0.12263,0.331198,0.152635,-0.000779628,-0.0994513,-0.1221,-0.126708,0 +-0.727744,1.40768,1.76876,-0.67443,-1.36539,-0.731991,1.39116,1.78703,-0.707944,-1.37128,-0.707374,1.34619,1.72172,-0.672921,-1.31654,-0.684155,1.31749,1.37274,-0.581495,-1.22207,-0.704585,1.35358,-0.32637,0.688813,1.30977,-1.23202,1.15221,0.136263,0.681466,1.22748,-0.945597,1.27364,-0.236194,0.640577,1.29288,1.15635,1.59589,1.82161,1.8604,1.82994,1.79154,1 +-0.737079,1.50973,2.42437,-0.682276,-1.52066,-0.740277,1.48221,2.40591,-0.730872,-1.51121,-0.710932,1.39506,2.04927,-0.712711,-1.39867,-0.684475,1.34262,1.38805,-0.59259,-1.25248,-0.436666,1.49904,-0.270827,0.889745,1.38919,-1.20178,1.05498,0.156173,0.607053,1.22459,-0.748054,1.4173,-0.200192,0.79776,1.34998,1.2698,1.81058,2.12259,2.17825,2.11198,2.02802,1 +-0.660267,1.04596,0.819369,-0.638237,-0.882228,-0.665654,1.04729,0.85708,-0.65441,-0.906236,-0.654809,1.03988,0.9389,-0.603255,-0.917271,-0.647603,1.03657,0.834581,-0.529071,-0.902848,-0.994123,0.876781,-0.154834,0.216184,1.05839,-1.21511,0.863047,0.221142,0.309069,1.01089,-1.15702,0.747084,-0.0364321,0.135294,1.01754,0.752581,1.01738,1.1387,1.1319,1.11042,1.10621,0 +-0.466742,0.373047,-0.0528841,-0.441693,-0.312987,-0.460914,0.363632,-0.0673371,-0.456926,-0.287709,-0.445362,0.338724,-0.187498,-0.411988,-0.24516,-0.434377,0.337205,-0.210177,-0.395027,-0.233955,-0.434927,-0.0338933,0.440274,-0.325081,0.484883,-0.553859,-0.308109,0.641336,-0.453718,0.310388,-0.375326,-0.298314,0.498906,-0.424232,0.324261,0.301422,0.320863,0.210827,0.149607,0.138852,0.146498,0 +-0.65338,0.895532,0.525133,-0.589521,-0.858829,-0.658757,0.891204,0.559176,-0.607643,-0.864087,-0.645384,0.868755,0.440324,-0.548441,-0.825526,-0.634929,0.873882,0.311268,-0.453538,-0.810743,-0.642785,0.458366,0.108657,-0.0584312,0.892253,-0.907276,0.403203,0.444192,-0.028406,0.834871,-0.763516,0.319384,0.171036,-0.131505,0.820258,0.757799,0.982289,0.983698,0.91886,0.880029,0.847915,1 +-0.681297,1.0047,0.79686,-0.629741,-0.949725,-0.687383,1.01333,0.781037,-0.644555,-0.951144,-0.67314,1.038,0.77585,-0.585533,-0.968526,-0.662096,1.06616,0.821358,-0.559926,-1.03672,-0.0765725,0.509521,0.00378821,0.198503,0.932844,-1.32709,1.00902,0.910564,0.377555,1.10187,-0.969555,0.996332,0.617978,0.237744,1.17155,0.850014,0.977352,0.982059,0.926376,0.909844,0.925927,1 +0.381513,-0.804596,-0.77683,-0.0797007,1.47755,0.346251,-0.792332,-0.791353,0.0384112,1.49521,0.376116,-0.820588,-0.780668,0.221641,1.58609,0.378335,-0.785995,-0.770973,0.425902,1.60037,1.83523,-0.779418,0.220652,-0.456796,-1.13311,1.03573,-0.544713,0.299213,-0.462793,-0.154764,1.20926,-0.664785,0.147028,-0.373917,-0.734271,-1.47741,-1.42257,-1.25238,-1.19809,-1.19403,-1.20298,1 +0.171826,-0.406751,-0.556208,-0.454907,0.915981,0.221951,-0.400544,-0.569461,-0.389389,0.909055,0.214745,-0.357945,-0.456307,-0.230447,0.949255,0.109856,-0.275775,-0.36814,-0.14364,0.823797,1.93985,-0.61273,0.0493859,-0.375956,-0.845696,1.40342,0.323542,-0.789853,0.193705,0.215705,1.30106,-0.032694,-0.574239,0.00846599,-0.0707955,-0.868515,-0.929125,-0.830753,-0.774611,-0.750702,-0.733311,1 +1.44814,-1.32046,-0.975103,0.318025,1.97298,1.39857,-1.28739,-0.994073,0.555798,1.97317,1.4337,-1.27939,-0.937111,0.832822,2.01429,1.50049,-1.25623,-0.872003,0.866456,2.08341,2.0568,-0.869604,0.296195,-0.518136,-1.59116,1.21754,-0.79678,0.339214,-0.589122,-0.686174,1.39507,-0.844307,0.377125,-0.536657,-1.25734,-2.07478,-1.77301,-1.51906,-1.43812,-1.42143,-1.42599,1 +-0.743326,1.65476,3.07376,-0.711571,-1.44421,-0.747034,1.62948,2.9883,-0.751442,-1.42416,-0.719468,1.56178,2.7005,-0.706134,-1.38253,-0.69459,1.5167,2.03976,-0.588962,-1.27427,-0.0210097,2.16287,-1.11237,1.73531,1.48746,-1.00511,1.79863,-0.0305251,1.43142,1.43801,-0.541885,2.13096,-0.560156,1.57076,1.48571,1.19965,1.69555,2.06562,2.23047,2.23312,2.1896,1 +-0.484233,0.120691,-0.132615,-0.252966,-0.832852,-0.459475,0.0508151,-0.175564,-0.43005,-0.79643,-0.424212,-0.039191,-0.403373,-0.664525,-0.604654,-0.401034,-0.0593711,-0.511889,-0.585663,-0.405332,-0.400774,-0.568562,0.707484,-0.526262,-0.0722144,-0.515468,-0.683295,0.657458,-0.620656,-0.190767,-0.0344131,-0.495577,0.722586,-0.51119,0.0281861,0.879959,0.739948,0.425851,0.317415,0.28622,0.233846,1 +0.129936,-0.721497,-0.935282,0.12358,0.989186,0.104869,-0.688213,-0.949285,0.322322,0.96023,0.0835192,-0.667304,-0.907726,0.636198,0.901898,0.116303,-0.664595,-0.863777,0.924188,0.958741,1.94266,-0.748903,0.379244,-0.569901,-0.633819,0.673021,-0.608882,0.517337,-0.560865,-0.209927,1.20974,-0.778059,0.441584,-0.560705,-0.73539,-0.824976,-1.17327,-1.16994,-1.14386,-1.13489,-1.13651,1 +-0.635169,0.693321,0.330408,-0.495447,-1.04666,-0.634199,0.670272,0.331767,-0.547402,-1.03061,-0.608702,0.601246,0.0949834,-0.55068,-0.899839,-0.588002,0.559406,-0.113564,-0.42928,-0.777929,-0.280693,-0.00803595,0.911674,-0.281242,0.565563,-0.679337,-0.181991,0.87711,-0.344191,0.495288,-0.0747233,-0.0167818,0.824167,-0.293236,0.567142,0.969135,1.07806,0.93954,0.784486,0.679487,0.643925,1 +-0.649842,0.782947,0.438056,-0.555278,-0.944098,-0.65253,0.77674,0.438675,-0.580396,-0.929765,-0.635769,0.762816,0.333277,-0.549691,-0.863757,-0.621356,0.757449,0.235435,-0.498356,-0.843877,0.208348,0.276605,0.594109,-0.161521,0.772652,0.0731342,0.129816,0.726724,-0.167218,0.678568,0.466772,0.0922049,0.522424,-0.246759,0.655929,0.889055,0.974983,0.879739,0.79636,0.746784,0.6937,1 +-0.455547,0.213545,-0.189177,-0.323671,-0.458455,-0.44821,0.194175,-0.1848,-0.389379,-0.42837,-0.425372,0.141371,-0.338464,-0.426021,-0.313667,-0.391658,0.0947234,-0.493968,-0.209357,-0.141711,0.0012594,-0.232406,0.579506,-0.462883,0.292987,0.0166919,-0.599966,0.627333,-0.611051,-0.0163219,0.364682,-0.454238,0.584934,-0.512429,0.118222,0.473208,0.421514,0.237294,0.144669,0.0912353,0.0808604,0 +-0.626943,0.568832,0.0738439,-0.452638,-0.906856,-0.631011,0.569711,0.091575,-0.492989,-0.900659,-0.610221,0.535868,-0.0585814,-0.499176,-0.825816,-0.587722,0.499485,-0.185409,-0.426551,-0.729063,-0.0435487,-0.0495356,0.669822,-0.333816,0.548921,-0.0569621,-0.303291,0.728433,-0.466012,0.383862,0.458486,-0.219822,0.648563,-0.420464,0.406041,0.885986,0.863078,0.660467,0.513069,0.432518,0.38731,0 +-0.0403702,-0.762327,-0.916611,0.466672,0.371068,-0.0152524,-0.762857,-0.928096,0.598627,0.337295,0.00698665,-0.752272,-0.883757,0.392388,0.32658,0.0672371,-0.828195,-0.813302,-1.23741,0.24499,-1.33864,-0.945717,0.634899,-0.647013,-1.00936,-1.54548,-0.851153,0.504153,-0.721427,-0.75595,-1.14398,-0.828744,0.63246,-0.657758,-0.682656,-0.0637888,-0.638567,-0.771252,-0.833302,-0.85837,-0.869874,1 +1.59818,-1.50356,-1.01171,1.12915,1.49247,1.57246,-1.4741,-1.02094,1.27109,1.41939,1.48368,-1.42377,-0.937551,0.328369,1.2756,1.51004,-1.41993,-0.871703,-1.03907,1.41235,1.54882,-0.944597,0.454817,-0.610131,-1.48848,-0.427351,-1.0299,0.576208,-0.738648,-1.45981,0.458136,-0.912923,0.53072,-0.634979,-1.40704,-1.48264,-1.54362,-1.39805,-1.3269,-1.30113,-1.29291,1 +-0.333227,-0.310128,-0.620776,0.1443,-0.251987,-0.333517,-0.325391,-0.659947,-0.00693662,-0.268519,-0.314086,-0.386441,-0.726744,-0.358115,-0.201142,-0.300473,-0.38912,-0.730432,-0.547852,-0.069286,-1.30116,-0.785945,0.684355,-0.609342,-0.515128,-1.14888,-0.890044,0.666314,-0.727514,-0.526132,-0.809484,-0.771842,0.719988,-0.639977,-0.419655,0.393797,-0.0187606,-0.302842,-0.378655,-0.40889,-0.425052,0 +-0.213006,-0.344521,-0.608522,-0.254625,0.315506,-0.202831,-0.373627,-0.635909,-0.181811,0.332717,-0.189347,-0.396116,-0.681297,0.022429,0.424712,-0.201331,-0.360024,-0.643665,0.18433,0.435107,-1.04041,-0.176434,0.983448,-0.401273,-0.112984,-1.47147,-0.627823,0.797719,-0.635119,-0.316255,-0.957961,-0.537597,0.769203,-0.549991,-0.1423,-0.201391,-0.459825,-0.542944,-0.528791,-0.507681,-0.440234,0 +-0.0191207,-0.543404,-0.764166,-0.200312,0.430749,0.0316746,-0.590311,-0.794441,-0.0870274,0.517656,0.0595209,-0.595349,-0.802127,0.191576,0.634129,0.0382713,-0.528381,-0.708313,0.363742,0.661346,-0.876751,-0.303831,0.866686,-0.507421,-0.276325,-0.750722,-0.63308,0.802577,-0.677059,-0.528221,-0.477756,-0.626983,0.7148,-0.619267,-0.330418,-0.334616,-0.525583,-0.663535,-0.667723,-0.665354,-0.678488,0 +0.137163,-0.805086,-1.02979,0.0338637,1.606,0.0797111,-0.732631,-1.02926,0.269808,1.5269,0.0178014,-0.63464,-0.938031,0.642615,1.32617,-0.0708253,-0.496977,-0.824956,0.728853,0.993344,0.0983519,-0.89763,0.559356,-0.635379,-0.813631,-0.0540835,-0.458096,0.55196,-0.629072,-0.118992,-0.179092,-0.704885,0.610461,-0.635109,-0.311568,-1.46751,-1.49129,-1.35614,-1.30431,-1.28215,-1.27276,1 +-0.566163,0.433518,-0.26617,-0.42899,-0.153135,-0.587552,0.474198,-0.241112,-0.418245,-0.227309,-0.59184,0.511679,-0.187848,-0.40784,-0.374747,-0.582525,0.519485,-0.166149,-0.44861,-0.512459,-0.464013,-0.398975,0.42866,-0.500515,0.209518,-1.21834,-0.0825096,0.585983,-0.416246,0.607393,-0.935942,-0.137942,0.539456,-0.434647,0.521445,0.210777,0.136094,0.0507052,-0.0153325,-0.0268568,0.00357827,1 +-0.0853282,-0.545073,-0.799149,0.301363,-0.00605702,-0.0726343,-0.558047,-0.812862,0.292147,-0.014473,-0.0724245,-0.570221,-0.808364,0.0513349,0.0320042,-0.0578816,-0.605244,-0.813782,-0.0541234,0.14214,-0.962529,-0.867125,0.658837,-0.629282,-0.750992,-0.79697,-0.8778,0.595568,-0.704055,-0.671471,-0.639137,-0.815801,0.678688,-0.639667,-0.646114,0.241432,-0.277614,-0.526592,-0.585223,-0.597028,-0.616708,1 +-0.376076,-0.206649,-0.624045,0.0337538,-0.292797,-0.377495,-0.214155,-0.634689,-0.0344132,-0.292847,-0.365121,-0.258923,-0.71527,-0.0992214,-0.229788,-0.338084,-0.316955,-0.767794,0.107957,-0.109866,-0.300353,-0.729043,0.6135,-0.606083,-0.34731,0.108107,-0.81693,0.65311,-0.698148,-0.411608,-0.0217892,-0.748843,0.670332,-0.627553,-0.411579,0.465712,0.0573121,-0.257274,-0.376346,-0.432778,-0.48998,0 +-0.465142,0.0109946,-0.568522,-0.201851,-0.300953,-0.474927,0.0182211,-0.567142,-0.177253,-0.341243,-0.474238,0.00327822,-0.61349,-0.0989715,-0.342372,-0.460804,-0.0121342,-0.608392,-0.0910154,-0.312287,-0.615229,-0.545313,0.646593,-0.563194,-0.0129135,-0.262461,-0.598127,0.771442,-0.642585,-0.0704154,-0.36835,-0.63253,0.687324,-0.6125,-0.149037,0.415217,0.149417,-0.116013,-0.237884,-0.298074,-0.323741,0 +-0.679357,0.963039,0.764856,-0.582135,-1.12673,-0.682286,0.945007,0.797929,-0.623345,-1.10494,-0.662186,0.892353,0.641156,-0.626173,-1.05947,-0.637448,0.855851,0.313337,-0.503873,-0.915182,-0.0641286,0.310808,0.0089157,-0.062999,0.803997,-0.382313,0.274815,0.234905,-0.0862877,0.809754,-0.227549,0.351798,0.0490061,-0.0497455,0.845176,1.00308,1.22822,1.18563,1.11359,1.07955,1.05839,1 +-0.159932,-0.573609,-0.718059,0.42864,-0.137723,-0.127627,-0.628072,-0.758499,0.103139,-0.0907157,-0.0867275,-0.718149,-0.846706,-0.268678,0.0891762,-0.0401603,-0.764916,-0.863937,-0.277194,0.290428,-0.460834,-0.887146,0.606533,-0.624904,-0.787244,0.0292257,-0.98051,0.594639,-0.729243,-0.917731,-0.0165418,-0.870304,0.671691,-0.644135,-0.767085,0.34759,-0.188777,-0.472968,-0.556817,-0.574219,-0.601925,1 +-0.324861,-0.34659,-0.723196,-0.270647,0.143989,-0.307629,-0.3674,-0.753801,-0.168797,0.175554,-0.311118,-0.332647,-0.784926,0.130336,0.269138,-0.38719,-0.158513,-0.63394,0.194155,0.0428991,-0.193785,-0.228608,0.861298,-0.49097,0.0594311,0.432188,-0.541165,0.889064,-0.644894,-0.226289,0.231327,-0.623175,0.7551,-0.61333,-0.232926,0.0997911,-0.38767,-0.593929,-0.644824,-0.671611,-0.728293,0 +0.038761,-0.885517,-0.996013,0.335446,0.780748,0.0509651,-0.882598,-1.01137,0.587622,0.727054,0.043119,-0.841638,-0.977102,1.01523,0.724295,-0.0284061,-0.7141,-0.860889,0.863327,0.561025,-0.81653,-0.725535,0.652371,-0.629262,-0.559136,-0.124149,-0.893303,0.699327,-0.743276,-0.787904,-0.357315,-0.902418,0.701737,-0.676389,-0.880379,-0.560326,-1.00758,-1.10071,-1.09975,-1.11234,-1.11955,0 +-0.684565,0.948856,0.581485,-0.556897,-1.07934,-0.691371,0.93919,0.619786,-0.599357,-1.1006,-0.668363,0.884987,0.541385,-0.638058,-1.10222,-0.640097,0.83718,0.252556,-0.546552,-0.96041,-0.310188,0.145559,0.280433,-0.275225,0.723676,-0.945657,0.153965,0.498076,-0.229777,0.789863,-0.617738,0.22474,0.338344,-0.231007,0.793421,0.970265,1.17114,1.15218,1.04215,0.984968,0.95918,1 +-0.113914,-0.0346131,-0.407451,-0.446201,0.549221,-0.12195,-0.0182011,-0.401643,-0.407011,0.583484,-0.166588,0.01997,-0.397416,-0.264461,0.515238,-0.263831,0.113344,-0.362323,-0.125389,0.353317,0.443033,-0.0929944,0.269068,-0.396626,0.399375,-0.331688,-0.0311148,0.91923,-0.216604,0.220552,-0.0234384,-0.253146,0.561835,-0.413717,0.181021,-0.635129,-0.456936,-0.401913,-0.403512,-0.417356,-0.40872,0 +-0.641356,0.87903,0.396886,-0.581225,-0.624964,-0.651101,0.889564,0.42929,-0.593809,-0.628272,-0.638427,0.885456,0.427381,-0.548701,-0.658538,-0.625224,0.885166,0.341503,-0.481424,-0.656748,-0.34623,0.2463,0.51026,-0.226739,0.812113,-1.33399,0.466132,0.886246,0.0612001,0.890664,-0.87816,0.38741,0.615019,-0.110156,0.896701,0.557117,0.688603,0.689592,0.644245,0.608192,0.591121,0 +-0.637078,1.07737,1.12386,-0.660416,-0.812392,-0.636678,1.05656,1.13948,-0.679587,-0.777229,-0.624964,1.02966,1.01392,-0.597228,-0.75519,-0.625034,1.03828,0.886896,-0.488321,-0.778459,0.415737,0.85764,0.0870274,0.177193,1.02155,-0.42903,1.28173,0.615728,0.629752,1.06894,0.010385,1.07446,0.192916,0.339344,1.1035,0.681866,0.94058,1.04762,1.05855,1.01873,0.983229,1 +-0.503524,0.228738,-0.289458,-0.275195,-0.547862,-0.506132,0.206349,-0.312677,-0.324231,-0.525223,-0.484083,0.131595,-0.498576,-0.273836,-0.371968,-0.458595,0.0958929,-0.574159,-0.120191,-0.218483,0.0932844,-0.44935,0.535788,-0.501834,0.127888,0.1838,-0.590651,0.546912,-0.603295,0.0540936,0.316985,-0.517277,0.566403,-0.523803,0.02019,0.614739,0.49046,0.215395,0.0800508,0.0065368,-0.0400204,0 +-0.641186,0.747274,0.341343,-0.526542,-0.949135,-0.645594,0.728883,0.36719,-0.560216,-0.931144,-0.631151,0.684765,0.158063,-0.522884,-0.849714,-0.613779,0.666603,-0.0131836,-0.398915,-0.794191,0.433148,0.0603306,0.369879,-0.294296,0.645294,0.282892,0.0323541,0.511479,-0.289818,0.610191,0.451099,0.0354527,0.349149,-0.290298,0.626173,0.911084,1.0085,0.906616,0.81669,0.744795,0.700797,1 +-0.508561,0.270458,-0.193395,-0.308579,-0.562734,-0.507461,0.241162,-0.218863,-0.372927,-0.514058,-0.488841,0.176863,-0.433068,-0.330648,-0.393387,-0.471129,0.144259,-0.520215,-0.190836,-0.292727,-0.199113,-0.40928,0.618477,-0.507192,0.175694,-0.178912,-0.563914,0.67376,-0.601456,0.0556229,-0.136503,-0.498136,0.642925,-0.542064,0.0727143,0.538686,0.529721,0.327799,0.198123,0.141691,0.0982019,0 +-0.32608,-0.171606,-0.498906,-0.0588209,-0.151586,-0.303271,-0.228178,-0.557597,-0.127038,-0.0735241,-0.264021,-0.317835,-0.718019,-0.0267169,0.119771,-0.236264,-0.366231,-0.770883,0.251357,0.248788,-0.160551,-0.544943,0.582965,-0.557757,-0.126108,0.0945538,-0.815201,0.573939,-0.696009,-0.40851,0.094244,-0.705425,0.623735,-0.602895,-0.315206,0.20369,0.0257676,-0.205329,-0.308809,-0.351458,-0.357535,1 +-0.202781,0.0461974,-0.201571,-0.463103,0.0912653,-0.205259,0.0430089,-0.226199,-0.443803,0.111045,-0.24534,0.0836589,-0.274646,-0.334236,0.0804905,-0.357145,0.211346,-0.179632,-0.312267,-0.144199,0.710032,-0.166648,0.0601406,-0.303551,0.284741,-0.440494,0.0313247,1.1886,-0.243671,0.119332,-0.241492,-0.175914,0.671132,-0.32628,0.218413,-0.0264571,-0.132965,-0.186289,-0.211686,-0.215584,-0.202391,1 +-0.684995,1.04235,0.990965,-0.607142,-1.14394,-0.687913,1.01306,0.990305,-0.645364,-1.11573,-0.669282,0.95993,0.805176,-0.630991,-1.08329,-0.648782,0.932233,0.513648,-0.535428,-0.985757,0.216694,0.477856,-0.0232785,0.00503768,0.892303,-0.0537237,0.442743,0.158692,0.0218693,0.871793,0.0649083,0.485103,-0.0167417,0.0133236,0.89895,0.995842,1.25824,1.2828,1.2424,1.20518,1.18969,1 +-0.689313,1.26177,1.85847,-0.675079,-0.892793,-0.691941,1.22726,1.78983,-0.707784,-0.842567,-0.670532,1.16378,1.36907,-0.634349,-0.791173,-0.657108,1.1591,1.04327,-0.51037,-0.788594,0.432378,0.988946,-0.0844886,0.331668,1.0997,-0.589012,1.34382,0.376236,0.697449,1.17597,-0.22513,1.26706,0.0978622,0.526512,1.22326,0.742257,1.04143,1.23358,1.28307,1.23994,1.17423,1 +-0.603655,0.777549,0.688043,-0.578067,-0.57153,-0.614359,0.783117,0.676199,-0.610921,-0.594769,-0.614189,0.784326,0.523804,-0.590781,-0.672041,-0.615049,0.804006,0.261382,-0.458326,-0.699837,0.809634,0.221202,-0.0724045,-0.113094,0.640557,-0.0537237,0.344801,0.238863,-0.0375416,0.828115,0.274056,0.363662,0.0861679,-0.0423191,0.795261,0.532829,0.610691,0.702226,0.687393,0.681836,0.686394,1 +-0.595389,0.98071,1.12651,-0.639597,-0.745095,-0.59207,0.948855,1.11344,-0.665644,-0.712031,-0.582585,0.905976,0.89897,-0.600876,-0.686084,-0.584534,0.900279,0.628632,-0.472109,-0.640516,0.670142,0.67526,-0.252566,0.104289,0.905377,0.32692,0.868395,-0.18422,0.359394,0.94,0.521575,0.747224,-0.293476,0.180132,0.929875,0.555638,0.929615,1.07682,1.06147,1.0467,1.01567,0 +-0.566083,0.395846,-0.0503353,-0.374266,-0.670402,-0.562045,0.355766,-0.130646,-0.414117,-0.596468,-0.535078,0.275335,-0.382713,-0.328699,-0.414837,-0.514158,0.24555,-0.475147,-0.16227,-0.291087,-0.229118,-0.254425,0.611141,-0.369459,0.335696,-0.0598407,-0.504903,0.561465,-0.53052,0.186939,0.241542,-0.38854,0.561855,-0.422893,0.189597,0.674959,0.584174,0.351038,0.230937,0.174045,0.12282,0 +-0.389809,-0.141921,-0.448181,-0.0834289,-0.261292,-0.379494,-0.185489,-0.501285,-0.187568,-0.189947,-0.349949,-0.275935,-0.689253,-0.113724,-5.00929e-05,-0.329499,-0.308449,-0.732921,0.0373418,0.12365,0.218793,-0.599077,0.547062,-0.547962,-0.18311,0.69395,-0.812402,0.540235,-0.679987,-0.412888,0.751002,-0.704725,0.598647,-0.586273,-0.351388,0.351438,0.10309,-0.161411,-0.273446,-0.30627,-0.32617,0 +-0.539956,0.619527,0.269558,-0.581555,-0.405841,-0.541425,0.620006,0.266819,-0.582625,-0.390149,-0.547152,0.649922,0.222361,-0.49115,-0.440714,-0.575558,0.731422,0.229678,-0.397315,-0.540385,0.479695,0.279123,-0.0716448,-0.0879468,0.710462,-0.719888,0.543234,0.974293,0.193096,0.761737,-0.242451,0.380984,0.396246,-0.018041,0.806165,0.416216,0.36823,0.36759,0.362323,0.339074,0.343862,1 +-0.662955,1.05179,0.985108,-0.624384,-0.882758,-0.666633,1.03548,1.00066,-0.652791,-0.85854,-0.649862,1.00408,0.881029,-0.614809,-0.83773,-0.641196,1.00536,0.752022,-0.560625,-0.849614,0.175214,0.508991,0.377615,-0.0538935,0.955033,-1.06725,0.743976,1.02623,0.262801,1.01292,-0.474098,0.717309,0.657948,0.108337,1.03962,0.779958,0.963928,1.0327,1.02591,0.978401,0.950964,1 +-0.00169918,-0.702046,-0.862248,0.251467,0.440204,0.0431889,-0.750982,-0.902888,0.400574,0.51072,0.0644785,-0.780728,-0.941469,0.844946,0.671651,0.0422493,-0.710702,-0.881259,1.03086,0.672571,0.113355,-0.684525,0.668183,-0.618787,-0.496587,0.739418,-0.902558,0.679387,-0.746415,-0.788584,0.669282,-0.874622,0.685445,-0.670372,-0.763716,-0.372867,-0.611031,-0.824866,-0.873882,-0.904017,-0.928216,0 +-0.466632,0.45006,0.233036,-0.553239,-0.415197,-0.46882,0.450809,0.240972,-0.561445,-0.377795,-0.48993,0.501974,0.173125,-0.48977,-0.400954,-0.546043,0.624934,0.219672,-0.437226,-0.562495,0.89802,0.215525,-0.0955531,-0.143949,0.605524,-0.291497,0.298364,1.04051,0.00189912,0.53196,0.197573,0.167678,0.487371,-0.179162,0.609741,0.434237,0.376826,0.365781,0.350968,0.308729,0.304541,1 +0.704075,-1.39638,-0.975393,1.92731,0.610911,0.8179,-1.46276,-1.00986,0.847715,0.67394,0.916451,-1.53121,-1.02487,-0.22407,0.85652,0.967157,-1.52865,-0.991225,0.0294357,1.0505,-0.526842,-1.04186,0.622235,-0.657298,-1.59852,-0.233736,-1.12988,0.649942,-0.767284,-1.85778,-0.115174,-1.03448,0.699678,-0.684785,-1.543,-0.364482,-0.929565,-1.04253,-1.03878,-0.998591,-0.999711,1 +-0.4698,0.311518,-0.14272,-0.46875,-0.335296,-0.479095,0.32579,-0.0809205,-0.471209,-0.364542,-0.499895,0.345891,0.0053373,-0.496447,-0.438455,-0.509111,0.338404,-0.059271,-0.49015,-0.494618,1.49198,-0.294286,0.145439,-0.412538,0.158413,1.45459,-0.00320844,-0.215614,-0.232386,0.406981,1.31803,-0.175844,0.0762727,-0.356275,0.241082,0.361443,0.325741,0.272716,0.217144,0.213675,0.237983,0 +-0.00703657,-0.473268,-0.669542,0.070106,0.233316,-0.0166018,-0.47049,-0.684525,0.0351428,0.228688,-0.0306649,-0.497177,-0.73641,-0.0649982,0.213655,0.000139961,-0.539556,-0.766595,-0.000999432,0.336765,1.59906,-0.754271,0.402823,-0.579496,-0.556887,2.15111,-0.811812,0.376855,-0.661266,-0.582445,1.75945,-0.771482,0.478866,-0.599456,-0.642346,-0.153885,-0.331987,-0.513648,-0.546333,-0.55234,-0.564154,0 +-0.176514,-0.30677,-0.42815,-0.0937338,-0.310868,-0.151995,-0.358774,-0.480425,-0.212936,-0.283081,-0.146548,-0.443853,-0.662226,-0.307429,-0.0966828,-0.169337,-0.473968,-0.711442,-0.361723,-0.012164,1.46279,-0.684245,0.356146,-0.55161,-0.475307,1.98952,-0.758988,0.328769,-0.642685,-0.501994,1.65059,-0.683316,0.424082,-0.573319,-0.481914,0.426481,0.0919052,-0.166089,-0.250178,-0.279033,-0.264011,1 +-0.293906,-0.02053,-0.0394707,-0.303451,-0.528651,-0.270437,-0.0730742,-0.0913154,-0.452948,-0.474608,-0.275025,-0.14257,-0.382363,-0.528071,-0.32661,-0.288459,-0.170976,-0.504053,-0.476986,-0.226629,1.21531,-0.507811,0.202991,-0.462084,-0.213825,1.5481,-0.613919,0.18448,-0.565953,-0.271077,1.33005,-0.501045,0.252656,-0.474288,-0.196654,0.565863,0.445352,0.284021,0.211436,0.214185,0.217384,1 +1.09717,-1.33681,-1.02907,1.42994,1.7589,1.05448,-1.31793,-1.04799,1.59092,1.78622,1.05575,-1.33529,-1.02676,1.72047,1.80176,1.03232,-1.35355,-0.995163,1.75272,1.79398,2.30685,-1.05296,0.565933,-0.657998,-1.77002,1.49082,-1.00335,0.596688,-0.749523,-0.990565,1.67413,-0.999951,0.636998,-0.676319,-1.4114,-1.91542,-1.55442,-1.4282,-1.38841,-1.38013,-1.38435,1 +3.03575,-2.21967,-1.14815,5.71556,1.93239,3.07946,-2.23298,-1.16812,5.86124,1.89601,3.11074,-2.26236,-1.1225,4.251,1.86815,3.42589,-2.35901,-1.077,0.547482,2.03769,0.391978,-1.12002,0.584404,-0.665264,-2.29979,1.11239,-1.16081,0.617088,-0.770573,-2.36628,0.830174,-1.10293,0.667024,-0.691361,-2.28598,-1.85389,-1.93594,-1.70704,-1.62689,-1.60433,-1.61181,0 +1.18307,-1.5706,-1.13587,1.85628,2.09818,1.04986,-1.50338,-1.1493,2.55544,2.04717,0.911774,-1.41939,-1.08721,3.29943,1.87579,0.799039,-1.36816,-1.02361,3.22516,1.67251,1.61616,-1.0673,0.577117,-0.662206,-1.6934,1.52063,-1.01655,0.617338,-0.751462,-1.0629,1.36794,-1.02891,0.648732,-0.684015,-1.52142,-2.16026,-1.91952,-1.67617,-1.58186,-1.55556,-1.54491,1 +-0.423203,0.00737637,-0.646414,-0.249168,-0.165459,-0.460404,0.0773621,-0.598197,-0.202231,-0.290748,-0.498106,0.171136,-0.436307,-0.316355,-0.494228,-0.500565,0.184789,-0.330068,-0.672061,-0.614969,0.736609,-0.665514,0.457836,-0.584654,-0.235105,0.471479,-0.399794,0.358824,-0.533009,0.260842,0.498726,-0.514158,0.460525,-0.559686,-0.00444794,0.375946,0.0319645,-0.136033,-0.191676,-0.190457,-0.131116,1 +-0.353697,-0.364692,-0.91914,-0.036082,0.301802,-0.407161,-0.271627,-0.894412,0.113564,0.114654,-0.460714,-0.136313,-0.75599,0.16294,-0.194095,-0.462733,-0.104899,-0.630721,-0.212416,-0.356435,-0.175354,-0.818899,0.539146,-0.631641,-0.534558,-0.0880369,-0.57119,0.537737,-0.649342,0.0546933,-0.258263,-0.734011,0.590071,-0.644214,-0.377775,-0.0730143,-0.480295,-0.661366,-0.699008,-0.67298,-0.625894,1 +-0.440145,0.032704,-0.761517,-0.400464,0.248208,-0.476986,0.113025,-0.745545,-0.314886,0.12171,-0.508321,0.234835,-0.605034,-0.126628,-0.139892,-0.516307,0.302712,-0.462304,-0.0271866,-0.321533,0.20461,-0.553589,0.436037,-0.536977,-0.0387508,-0.465982,-0.0189008,0.0905955,-0.148427,0.515938,-0.335156,-0.0236584,-0.311258,-0.00450766,0.307339,-0.0719848,-0.406011,-0.538586,-0.559856,-0.532369,-0.480295,1 +-0.0149827,-0.575778,-0.865386,0.196714,0.444862,-0.0759427,-0.512849,-0.848705,0.273516,0.364351,-0.16293,-0.434158,-0.788224,0.155874,0.189727,-0.197793,-0.411489,-0.73469,-0.241852,0.0963229,0.43003,-0.83791,0.50999,-0.627912,-0.67319,0.908395,-0.802557,0.472089,-0.697429,-0.424102,0.46911,-0.81799,0.555608,-0.646114,-0.699438,-0.216024,-0.573329,-0.695989,-0.727074,-0.709173,-0.691811,1 +2.02332,-1.67729,-1.11461,1.47062,2.52765,1.86733,-1.62322,-1.12964,2.05331,2.55442,1.77674,-1.575,-1.06988,2.69036,2.46408,1.68952,-1.53096,-1.01465,3.02013,2.36595,2.10525,-1.05022,0.554459,-0.656978,-1.74315,2.17791,-0.975222,0.568092,-0.730642,-1.09604,1.88687,-1.01211,0.608772,-0.671171,-1.63026,-2.90571,-2.01538,-1.70727,-1.61315,-1.58681,-1.57498,1 +-0.400584,0.175504,-0.148837,-0.424772,-0.329629,-0.410629,0.182281,-0.085988,-0.446541,-0.350468,-0.421064,0.177663,-0.0498457,-0.53202,-0.400534,-0.410429,0.140681,-0.186459,-0.492929,-0.332637,1.34829,-0.344301,0.0480066,-0.377775,-0.000369614,1.49886,-0.208798,-0.303651,-0.282552,0.150177,1.23273,-0.254375,-0.00739629,-0.32668,0.0767923,0.348659,0.279144,0.194905,0.182431,0.192366,0.231077,0 +-0.400914,0.152975,0.0458076,-0.435706,-0.476147,-0.404432,0.139372,0.0921048,-0.48976,-0.484483,-0.417955,0.106937,0.00966518,-0.59218,-0.49039,-0.403722,0.0609,-0.214465,-0.471389,-0.372807,1.25315,-0.301372,-0.0483063,-0.307599,0.00399825,1.50569,-0.255575,-0.380894,-0.253506,0.0253277,1.18772,-0.232136,-0.0935341,-0.269498,0.0559225,0.541055,0.377176,0.277354,0.2856,0.317634,0.355856,1 +-0.175664,-0.461154,-0.815531,0.18408,0.120501,-0.213036,-0.42793,-0.814501,0.24495,0.0465571,-0.262142,-0.415677,-0.804037,0.146888,-0.0350629,-0.276784,-0.422953,-0.801188,0.136503,0.0135234,1.29913,-0.849034,0.509501,-0.626633,-0.69308,1.88004,-0.802227,0.476117,-0.696369,-0.384332,1.5385,-0.805346,0.559066,-0.637238,-0.608272,0.1026,-0.377715,-0.606743,-0.643185,-0.621086,-0.585163,1 +1.69816,-1.81241,-1.06649,3.6488,0.941119,1.99083,-1.91865,-1.10348,1.64785,0.974083,2.18051,-2.01003,-1.09388,-0.248998,1.25577,2.28128,-2.02878,-1.04982,-1.95163,1.47208,1.18294,-1.10975,0.589192,-0.664964,-2.12793,1.80771,-1.16183,0.626183,-0.771342,-2.24899,1.47438,-1.08813,0.67377,-0.691201,-2.01186,-0.713411,-1.26456,-1.28752,-1.27389,-1.29433,-1.31231,1 +2.38364,-2.11701,-1.15302,5.71311,1.95843,2.3254,-2.10971,-1.17526,6.29444,1.93318,2.23714,-2.09365,-1.12752,6.4944,1.87909,2.20898,-2.09239,-1.07045,2.70134,1.81204,1.04765,-1.11687,0.587093,-0.665694,-2.19133,1.7866,-1.16505,0.623585,-0.771762,-2.26492,1.37236,-1.10694,0.672081,-0.692661,-2.22902,-1.85536,-1.92931,-1.70931,-1.6191,-1.6017,-1.60295,0 +-0.507671,0.378025,-0.138752,-0.491789,-0.352797,-0.51054,0.389549,-0.110746,-0.482464,-0.351638,-0.524023,0.425681,-0.0564625,-0.435897,-0.402953,-0.541855,0.464742,0.0683765,-0.521455,-0.581525,1.46837,-0.283251,0.0759229,-0.30705,0.193635,0.996862,0.133904,-0.320053,0.0465772,0.535958,1.12829,-0.105658,-0.0292156,-0.188198,0.374756,0.422093,0.2657,0.120861,0.0682166,0.0745235,0.0897261,1 +-0.380834,0.254445,0.104179,-0.458525,-0.36686,-0.383472,0.242951,0.145719,-0.505483,-0.363822,-0.381253,0.20358,0.0459274,-0.579596,-0.348759,-0.357075,0.145119,-0.191556,-0.460904,-0.262891,1.16912,-0.215984,-0.0906855,-0.255675,0.138302,1.27381,-0.197883,-0.32603,-0.239423,0.149587,1.1323,-0.155144,-0.201441,-0.117113,0.149647,0.324021,0.397885,0.36746,0.335716,0.307,0.30661,0 +1.00787,-0.868025,-0.648852,-0.288888,1.67013,0.996282,-0.862888,-0.615629,-0.220662,1.71489,0.957831,-0.83755,-0.574769,-0.120741,1.65059,0.831923,-0.765765,-0.546862,-0.124209,1.42722,2.18534,-0.736849,0.209467,-0.476996,-1.2242,1.52633,-0.177623,0.0484262,-0.315346,-0.185199,1.78223,-0.437926,0.0970026,-0.402943,-0.530031,-1.90122,-1.31081,-1.08859,-1.03576,-1.04178,-1.04295,1 +-0.57197,1.2086,2.41154,-0.723276,-0.81756,-0.563684,1.18512,2.35839,-0.748184,-0.729123,-0.568891,1.19299,2.50442,-0.669132,-0.733011,-0.59234,1.20674,2.72238,-0.599656,-0.812792,0.73625,2.58198,-4.11199,3.71982,1.18002,0.40796,2.52954,-3.64613,3.59267,1.21826,0.49051,2.48666,-3.82912,3.54531,1.21549,0.643515,0.982539,1.24502,1.45212,1.55457,1.58181,0 +0.0394007,0.635269,1.8451,-0.726904,-0.116353,0.0806606,0.6129,1.75502,-0.744945,-0.0314347,0.0578318,0.639677,1.93592,-0.640896,-0.0515849,-0.0189007,0.685324,2.30524,-0.539166,-0.125818,0.914202,2.70124,-5.69701,4.93383,0.779279,0.938381,2.84546,-6.40546,5.30237,0.740318,0.679977,2.74865,-5.8024,5.00679,0.869364,-0.100351,0.330878,0.581445,0.794331,0.933383,0.968866,1 +-0.0505653,0.765865,1.89001,-0.720267,-0.208558,-0.0204099,0.736969,1.81707,-0.739438,-0.108057,-0.042769,0.748723,1.90924,-0.640636,-0.0871674,-0.109676,0.780188,2.1819,-0.546622,-0.154184,0.740857,2.54323,-5.06203,4.40724,0.887026,0.656829,2.51553,-4.77718,4.0993,0.847485,0.459585,2.40061,-4.57105,3.96349,0.981859,-0.0462674,0.47088,0.743456,0.934912,1.06071,1.09799,0 +1.91381,-1.44983,-0.897501,0.0153728,2.2695,1.97969,-1.4632,-0.892953,0.174595,2.33413,2.00685,-1.47395,-0.842957,0.394707,2.39143,1.88419,-1.42914,-0.807385,0.606053,2.37847,2.16434,-0.845196,0.278214,-0.513518,-1.70044,2.39061,-0.507851,0.28469,-0.53044,-0.977611,2.1475,-0.792392,0.32763,-0.501374,-1.04628,-2.57437,-1.84651,-1.51814,-1.42289,-1.40945,-1.40573,1 +-0.497776,0.651421,0.229568,-0.657228,-0.271497,-0.509171,0.669012,0.24498,-0.652521,-0.30582,-0.53004,0.752551,0.603764,-0.546842,-0.40772,-0.556957,0.813621,1.13059,-0.53106,-0.55188,-0.24474,1.09561,-1.75873,1.06203,0.783617,-0.0606803,1.37073,-2.41266,1.59048,0.868865,-0.227339,1.08703,-1.82787,1.11984,0.79629,0.227299,0.336845,0.427721,0.511899,0.563064,0.593639,1 +2.48683,-1.21127,-0.762787,-0.150336,1.84415,2.43372,-1.19961,-0.748534,-0.0492159,1.90689,2.3818,-1.18672,-0.711602,0.0720247,1.87491,2.32116,-1.17186,-0.722996,0.287679,1.808,1.21039,-0.81608,0.353687,-0.559486,-1.22528,1.82396,-0.386691,-0.10242,-0.451289,-0.889514,1.32473,-0.657738,0.268099,-0.517087,-0.848595,-2.17084,-1.43813,-1.1698,-1.13367,-1.14008,-1.14641,1 +0.411988,-1.17389,-1.03989,1.204,0.943598,0.406201,-1.16106,-1.05118,1.46419,0.930824,0.358814,-1.13932,-1.0073,1.47659,0.87689,0.318644,-1.10366,-0.946637,1.01306,0.836381,-0.833892,-0.915931,0.63268,-0.648892,-1.05292,-0.558776,-1.03896,0.629002,-0.760438,-1.1722,-0.360833,-0.991815,0.668953,-0.683525,-1.22242,-0.766355,-1.15613,-1.216,-1.18469,-1.17498,-1.1528,0 +-0.473128,0.212066,-0.107527,-0.405381,-0.436546,-0.458435,0.162211,-0.164679,-0.415367,-0.379164,-0.432128,0.0962127,-0.38784,-0.2856,-0.207019,-0.432088,0.0992612,-0.463083,-0.0988615,-0.18453,0.0185709,-0.289048,0.814021,-0.446251,0.190027,-0.0596008,-0.321663,1.10947,-0.456766,0.0895363,0.28551,-0.386741,0.793252,-0.507122,0.146548,0.463733,0.372628,0.211486,0.124459,0.0737939,0.0750633,1 +-0.492779,0.275965,0.114964,-0.369359,-0.812652,-0.472608,0.197573,0.00780607,-0.473638,-0.758239,-0.442193,0.111715,-0.311668,-0.480155,-0.546922,-0.435397,0.110516,-0.433718,-0.354756,-0.399674,0.234105,-0.321472,0.378825,-0.302032,0.167478,0.276894,-0.580086,0.437506,-0.482684,-0.0546931,0.574379,-0.351618,0.274686,-0.254705,0.111715,0.822487,0.742427,0.546133,0.443973,0.420694,0.393897,1 +1.5434,-1.34142,-0.959211,-0.133624,2.52216,1.42406,-1.3206,-0.96095,0.0480964,2.58853,1.43034,-1.32993,-0.890834,0.399994,2.63051,1.41687,-1.29972,-0.834002,0.77595,2.63263,1.16947,-0.862258,0.38899,-0.566493,-1.0742,1.77765,-0.238603,-0.212306,-0.40869,-0.759568,1.22638,-0.7143,0.371828,-0.537607,-0.73512,-3.03035,-1.88784,-1.53249,-1.43265,-1.40388,-1.39967,1 +1.06408,-1.1964,-0.917931,0.106238,2.04779,1.04392,-1.18256,-0.91957,0.290558,2.06871,1.07167,-1.18222,-0.87772,0.532319,2.13749,1.00972,-1.1181,-0.822897,0.584324,2.08404,1.87102,-0.8375,0.350309,-0.566503,-1.35134,1.79025,-0.623145,0.239683,-0.546932,-0.55206,1.58965,-0.779079,0.343552,-0.542264,-1.04736,-2.23444,-1.74229,-1.44459,-1.35757,-1.35097,-1.35322,1 +-0.69402,1.27199,1.47059,-0.682176,-1.04389,-0.699207,1.26994,1.49887,-0.704565,-1.03686,-0.683205,1.27858,1.67613,-0.650132,-1.06977,-0.665384,1.26551,1.69196,-0.598707,-1.05281,0.0885767,1.71674,-1.49696,1.3412,1.28321,-0.399105,1.36699,-0.800218,1.0545,1.20373,-0.197933,1.46308,-1.10477,1.0687,1.2413,0.892203,1.19506,1.34901,1.42256,1.46508,1.48863,0 +-0.580896,0.341563,-0.536887,-0.374147,-0.537947,-0.603234,0.391738,-0.494638,-0.330168,-0.652271,-0.606613,0.455217,-0.400844,-0.269168,-0.749153,-0.5913,0.470549,-0.373147,-0.227449,-0.71398,-0.563254,-0.304941,0.50979,-0.479005,0.351798,-1.0922,-0.284681,0.707164,-0.515867,0.447011,-0.680617,-0.318784,0.577078,-0.506882,0.337545,0.658188,0.425272,0.141831,0.0288259,0.0240482,0.0497257,1 +5.26584,-2.22632,-1.07673,1.03632,2.8803,5.11684,-2.21982,-1.08856,1.45668,2.92193,5.19813,-2.21177,-1.01562,1.64196,2.94983,5.33737,-2.20821,-0.949355,1.13364,2.99678,2.19061,-1.00847,0.443513,-0.610341,-2.39784,1.63454,-0.932453,0.559266,-0.695949,-1.7124,1.79161,-0.968286,0.525853,-0.633969,-2.13488,-3.45787,-2.15741,-1.74063,-1.62116,-1.5961,-1.58587,1 +2.70708,-1.68212,-1.11903,1.01636,2.72613,2.52,-1.63069,-1.13353,1.57327,2.77223,2.49217,-1.58667,-1.05708,2.18594,2.70909,2.52313,-1.54831,-0.968666,1.78377,2.64623,1.78878,-0.907606,0.437376,-0.61258,-1.38195,0.770853,-0.926536,0.621146,-0.718858,-0.991505,1.24308,-0.963838,0.583764,-0.662166,-1.43326,-3.2646,-2.07444,-1.7238,-1.61981,-1.58562,-1.56949,1 +-0.709982,1.37786,2.08124,-0.705175,-1.23019,-0.71367,1.36311,2.13375,-0.732751,-1.20161,-0.698198,1.3633,2.3718,-0.681406,-1.2484,-0.680667,1.33562,2.40419,-0.637658,-1.25911,-0.104019,2.02014,-1.51123,1.56132,1.3882,-0.423273,1.90833,-1.44506,1.58696,1.26569,-0.155834,1.9217,-1.35155,1.35413,1.30019,1.03057,1.3616,1.59277,1.7551,1.81253,1.82412,1 +-0.733851,1.50532,2.07729,-0.697238,-1.37424,-0.738388,1.49379,2.1039,-0.727334,-1.36052,-0.71433,1.46741,2.1774,-0.680417,-1.35996,-0.690032,1.42383,1.98929,-0.616358,-1.28468,-0.724046,1.86729,-0.75481,1.28472,1.46112,-1.16388,1.6204,-0.473488,1.21604,1.33691,-0.922069,1.76149,-0.661706,1.14499,1.41731,1.16134,1.57873,1.80879,1.89736,1.90713,1.89732,1 +-0.497347,0.309279,-0.141771,-0.380024,-0.424502,-0.495127,0.298484,-0.147008,-0.412638,-0.403403,-0.480245,0.256284,-0.275175,-0.413887,-0.3059,-0.467261,0.236604,-0.311957,-0.463863,-0.253866,-0.638737,-0.0768623,0.488901,-0.282911,0.434827,-0.597228,-0.46923,0.519695,-0.467511,0.151156,-0.235485,-0.338684,0.493768,-0.368469,0.200732,0.418125,0.386281,0.261282,0.161251,0.125439,0.134094,0 +-0.46935,0.16278,-0.253956,-0.348689,-0.607363,-0.477336,0.167198,-0.228518,-0.378795,-0.627713,-0.487861,0.175344,-0.250707,-0.474458,-0.616268,-0.463483,0.137762,-0.270568,-0.621666,-0.514508,-1.23152,-0.341283,0.739258,-0.416256,0.134155,-1.12039,-0.454108,0.665374,-0.482034,0.0848685,-0.813072,-0.374327,0.700897,-0.435727,0.103049,0.660387,0.49058,0.357185,0.235125,0.201201,0.175154,1 +-0.569961,0.3261,-0.365141,-0.559226,-0.356475,-0.584963,0.378855,-0.356226,-0.527322,-0.423862,-0.581715,0.464782,-0.295066,-0.353567,-0.474278,-0.566263,0.496237,-0.233226,-0.164669,-0.546542,-0.0424192,-0.0709951,0.176344,-0.341653,0.463953,-0.0507251,0.573829,-1.06576,0.467191,0.7359,-0.0554728,0.353127,-0.519006,0.108957,0.615129,0.494128,0.176724,0.0869774,0.0226089,0.0499156,0.0422993,1 +4.6941,-1.74005,-0.897651,0.244421,2.54429,4.56403,-1.72243,-0.910664,0.407091,2.6161,4.6008,-1.72208,-0.85838,0.430369,2.59645,4.7899,-1.72971,-0.807715,0.119552,2.62765,1.35843,-0.659997,0.145009,-0.475727,-1.26732,0.0611401,-0.824856,0.558227,-0.631851,-1.5165,0.600746,-0.782087,0.401194,-0.558476,-1.59463,-3.09501,-1.83449,-1.47072,-1.37133,-1.34951,-1.3409,1 +0.964508,-1.03302,-0.916541,-0.3059,2.46156,0.847425,-0.986847,-0.927496,-0.170686,2.49685,0.866136,-0.98073,-0.851103,0.153245,2.49962,0.880979,-0.937441,-0.753961,0.457966,2.47545,1.74347,-0.166878,-0.662655,-0.00811588,-1.06817,1.57786,-0.32594,-0.172246,-0.307559,-0.110316,1.5706,-0.539756,0.0693261,-0.425861,-0.853982,-2.96251,-1.84663,-1.49347,-1.38845,-1.36443,-1.35526,1 +5.20357,-2.25613,-1.05242,0.483104,3.06259,4.93047,-2.23882,-1.06625,0.824347,3.13209,5.01316,-2.25387,-0.996442,1.25475,3.15999,5.24774,-2.29505,-0.913453,1.13033,3.26664,2.12998,-0.801867,0.129097,-0.452638,-2.18272,2.11835,-0.891733,0.168537,-0.575918,-1.86505,2.05742,-0.897141,0.375436,-0.566433,-2.223,-3.74238,-2.2023,-1.75307,-1.62741,-1.5954,-1.58432,1 +-0.44882,-0.0172416,-0.645354,-0.211716,-0.28569,-0.473328,0.026607,-0.623285,-0.155944,-0.376776,-0.483493,0.050745,-0.576018,-0.170556,-0.432458,-0.457216,0.00620678,-0.517267,-0.519636,-0.377515,-0.0679667,-0.544353,0.425752,-0.484373,-0.0450178,0.0331938,-0.544353,0.303881,-0.53022,0.0654481,0.346111,-0.522774,0.406931,-0.485892,-0.0714651,0.49056,0.0797611,-0.222211,-0.312897,-0.32727,-0.331358,1 +0.286,-0.894642,-0.763157,0.506922,0.169837,0.335326,-0.921929,-0.762857,0.111955,0.182151,0.317225,-0.955902,-0.781258,-0.87839,0.222861,0.331288,-0.966057,-0.789633,-1.06423,0.391159,-0.161171,-0.8784,0.664844,-0.614179,-0.934812,0.0873573,-1.00525,0.678038,-0.73511,-1.25973,0.484433,-0.880629,0.73537,-0.643005,-0.968766,0.0597607,-0.424092,-0.57178,-0.579666,-0.576588,-0.544563,1 +-0.594649,0.941219,1.1538,-0.626513,-0.781727,-0.602055,0.940919,1.22067,-0.666394,-0.79739,-0.584454,0.901978,1.1653,-0.676089,-0.767374,-0.560616,0.855001,0.79709,-0.593739,-0.670882,0.229907,0.941429,-1.25763,0.971934,0.985878,0.484373,0.473298,-1.01236,0.539226,0.772742,0.557877,0.772492,-1.19252,0.855171,0.855861,0.619157,0.953843,1.09629,1.1567,1.20964,1.25298,1 +-0.656639,0.988566,1.01637,-0.634909,-0.927166,-0.665244,0.997222,1.05751,-0.661266,-0.951154,-0.65309,0.997582,1.13925,-0.643915,-0.971644,-0.634739,0.975342,1.01732,-0.604324,-0.933023,0.166718,1.01328,-1.29816,1.05726,1.04415,0.460445,0.644245,-1.24646,0.73564,0.853053,0.485752,0.884597,-1.34264,0.971345,0.924847,0.824596,0.995603,1.07849,1.11214,1.15234,1.19846,1 +-0.34759,-0.06128,-0.708073,-0.438405,0.399444,-0.375736,0.00844586,-0.708873,-0.360394,0.269868,-0.404922,0.135354,-0.584354,-0.161581,0.0724444,-0.395826,0.213775,-0.369929,-0.117053,-0.149637,0.750593,-0.242141,-0.487131,0.160911,-0.149876,0.269758,0.137832,-0.275595,-0.125828,0.478246,0.316085,0.0569621,-0.34662,0.0482965,0.423862,-0.209867,-0.594229,-0.638098,-0.634719,-0.601156,-0.574079,1 +-0.000819609,-0.640297,-0.880999,0.24514,0.573069,-0.00850574,-0.619976,-0.882108,0.356925,0.559146,-0.0471968,-0.606513,-0.871144,0.505373,0.541185,-0.0671271,-0.602495,-0.865656,0.85832,0.550131,0.0459675,-0.687703,0.588202,-0.601805,-0.439495,0.503634,-0.882558,0.59297,-0.731972,-0.635609,0.373587,-0.851343,0.640057,-0.65348,-0.682476,-0.463953,-0.69428,-0.819219,-0.828115,-0.810073,-0.77595,0 +-0.0862878,-0.623365,-0.897071,0.201112,0.496537,-0.121121,-0.573479,-0.879709,0.315276,0.420814,-0.187488,-0.485153,-0.825106,0.312297,0.228348,-0.22418,-0.413268,-0.730732,-0.143919,0.0802808,-0.966057,-0.835091,0.614459,-0.595268,-0.690152,-1.14594,-0.801548,0.558356,-0.684655,-0.42874,-0.781257,-0.725355,0.67392,-0.603634,-0.405472,-0.3264,-0.723066,-0.853022,-0.841278,-0.824746,-0.792272,1 +-0.611301,0.757689,0.454568,-0.620896,-0.720127,-0.623205,0.783936,0.476517,-0.625924,-0.764156,-0.628282,0.855811,0.77538,-0.584354,-0.85841,-0.624514,0.8771,1.06431,-0.626243,-0.941869,0.113454,0.942839,-1.69834,1.29863,0.884857,0.325781,0.616618,-1.27953,0.664865,0.785106,0.0422694,0.807365,-1.47421,0.969515,0.822457,0.720917,0.67371,0.6541,0.700907,0.766595,0.829454,1 +-0.221761,-0.351138,-0.812492,-0.0115141,0.344131,-0.257714,-0.301412,-0.802237,0.0848385,0.286,-0.298184,-0.255255,-0.771283,0.194605,0.210157,-0.30572,-0.241662,-0.739378,0.272637,0.193355,0.0538537,-0.594889,0.421694,-0.521944,-0.18388,0.380964,-0.75466,0.46986,-0.661536,-0.26623,0.229948,-0.703276,0.461114,-0.547322,-0.376116,-0.213895,-0.446861,-0.602495,-0.642625,-0.619906,-0.597627,0 +-0.336935,0.565513,0.270638,-0.642355,0.0944138,-0.345731,0.584014,0.281632,-0.638188,0.114364,-0.358934,0.635789,0.471519,-0.528891,0.0199901,-0.390269,0.716009,0.815441,-0.484773,-0.195524,0.730313,0.794011,-1.46141,0.963339,0.697789,0.69377,1.16112,-1.81819,1.2458,0.854802,0.46973,0.970475,-1.62458,1.11605,0.808904,-0.216064,-0.00236865,0.0670771,0.127518,0.169917,0.20485,0 +-0.61222,0.677049,-0.00149924,-0.590361,-0.279463,-0.629382,0.726464,0.0232285,-0.577457,-0.32615,-0.63371,0.813462,0.258253,-0.494928,-0.484323,-0.638427,0.901908,0.61295,-0.549421,-0.768614,0.623495,0.389669,-0.713261,0.438675,0.716639,0.212176,0.634779,-0.454448,0.409689,0.957551,0.299733,0.498306,-0.586533,0.40841,0.818599,0.342912,0.186329,0.150926,0.157093,0.18377,0.215065,1 +-0.555768,0.455817,-0.307759,-0.539036,0.012354,-0.579966,0.517637,-0.291317,-0.508031,-0.0590812,-0.594499,0.630381,-0.026767,-0.425812,-0.258214,-0.601356,0.706814,0.325311,-0.537207,-0.525353,0.111106,0.186239,-0.590361,0.226809,0.5321,-0.150476,0.297934,-0.342113,0.0542935,0.766325,-0.24535,0.220852,-0.404622,0.0909256,0.619167,0.052974,-0.0741935,-0.107078,-0.0970525,-0.0672671,-0.0364521,1 +-0.619047,0.79621,0.325521,-0.630211,-0.516547,-0.627383,0.819269,0.350638,-0.629012,-0.509311,-0.631001,0.885526,0.542584,-0.540046,-0.626423,-0.637048,0.961599,0.974633,-0.566962,-0.880869,0.418455,0.704755,-1.16482,0.702056,0.789704,0.124899,0.970745,-1.1495,0.870604,0.997922,0.0428891,0.804756,-0.98004,0.69449,0.936381,0.539166,0.432928,0.366051,0.385121,0.434537,0.460455,1 +-0.464862,0.366261,0.240542,-0.443812,-0.63348,-0.466302,0.353867,0.212916,-0.521485,-0.610351,-0.468261,0.327649,-0.0693961,-0.536427,-0.564384,-0.464413,0.300523,-0.258404,-0.420594,-0.494798,-0.38843,-0.120811,0.380314,-0.240312,0.380484,-0.044908,-0.399015,0.389749,-0.453628,0.155964,-0.10234,-0.237624,0.335156,-0.318874,0.275955,0.607283,0.589152,0.517657,0.492219,0.504703,0.498486,1 +0.633,-1.21331,-0.993394,1.4244,0.760278,0.660347,-1.2388,-1.01579,1.36868,0.767244,0.665314,-1.27928,-1.0056,0.822987,0.850074,0.666924,-1.31389,-0.976302,0.392538,0.952144,-0.260363,-1.0098,0.602275,-0.649332,-1.40549,0.246729,-1.05398,0.614429,-0.754461,-1.31337,0.293307,-0.983798,0.677089,-0.67414,-1.28517,-0.506232,-1.03656,-1.11506,-1.08762,-1.07554,-1.06726,1 +-0.610871,0.656489,-0.0844486,-0.59204,-0.277304,-0.628382,0.708073,-0.0624795,-0.574889,-0.32685,-0.635179,0.811203,0.20393,-0.482524,-0.512289,-0.640476,0.909874,0.631611,-0.546262,-0.820098,0.392598,0.403513,-0.59147,0.340034,0.746815,0.0791313,0.666484,-0.587143,0.424352,0.947306,0.192676,0.493678,-0.575138,0.361473,0.814201,0.353807,0.168438,0.1023,0.128157,0.146788,0.165519,1 +-0.651681,1.04855,1.09654,-0.685174,-0.800908,-0.660486,1.06654,1.07157,-0.697439,-0.812532,-0.659847,1.13572,1.43462,-0.622955,-0.910924,-0.65406,1.16478,1.90747,-0.610271,-1.04785,-0.00882566,1.73712,-2.79258,2.4296,1.16307,-0.00819595,1.54616,-2.42726,1.91115,1.11729,-0.127458,1.79831,-2.87983,2.44408,1.19031,0.754021,0.804876,0.875371,0.977381,1.07697,1.13014,1 +-0.602205,0.662026,0.313587,-0.59127,-0.659357,-0.610221,0.686504,0.319024,-0.59321,-0.668223,-0.602645,0.725655,0.437836,-0.540935,-0.685145,-0.589202,0.732971,0.627613,-0.589431,-0.754571,-0.328009,0.32615,-0.831693,0.421584,0.557037,-0.241892,0.589381,-1.11719,0.625044,0.811243,-0.351308,0.520675,-0.872103,0.484693,0.757379,0.705445,0.547102,0.430909,0.427191,0.44875,0.505822,1 +-0.647733,1.10935,1.25893,-0.691621,-0.719128,-0.652011,1.10917,1.24094,-0.706164,-0.663275,-0.648073,1.14448,1.42771,-0.619936,-0.718968,-0.648882,1.1897,1.87006,-0.587682,-0.905377,-0.125838,1.53026,-2.05571,1.69592,1.1563,-0.0078961,1.8355,-2.68742,2.29312,1.17491,-0.222161,1.74756,-2.41982,2.06464,1.22564,0.656968,0.749503,0.844506,0.946247,1.01961,1.06968,0 +-0.477626,0.349989,0.598817,-0.49028,-0.789154,-0.473218,0.325271,0.584334,-0.607673,-0.783047,-0.465252,0.278503,0.189027,-0.689812,-0.665454,-0.461814,0.253036,-0.106308,-0.556817,-0.558507,-0.153845,-0.063079,-0.00562718,-0.150576,0.378815,0.127837,-0.3271,-0.0575619,-0.319813,0.087967,0.161751,-0.085778,-0.075373,-0.152915,0.301812,0.738878,0.772712,0.75542,0.740038,0.727554,0.73588,1 +0.369409,-0.690232,-0.575948,-0.338874,0.699497,0.485302,-0.711012,-0.615899,-0.235835,0.579256,0.565333,-0.708943,-0.547922,-0.186549,0.53082,0.977082,-0.985478,-0.527212,-1.18602,0.601256,-0.344601,-0.558277,0.743696,-0.57109,-0.314616,-0.610781,-0.176923,-0.04096,-0.442533,-0.28655,-0.5111,-0.230927,0.248109,-0.4699,-0.272477,-0.844317,-0.853002,-0.678428,-0.635319,-0.75503,-0.867085,1 +0.00811602,-0.622745,-0.832003,0.252587,0.466472,0.0179013,-0.63318,-0.847395,0.331218,0.49004,-0.00587705,-0.666774,-0.876581,0.507991,0.556887,-0.0358024,-0.670072,-0.85859,0.667673,0.578317,-0.749803,-0.736309,0.608462,-0.604374,-0.545163,-0.0403502,-0.888295,0.597527,-0.721897,-0.675469,-0.1842,-0.834012,0.644555,-0.643345,-0.661326,-0.332637,-0.621576,-0.743196,-0.761807,-0.752891,-0.720687,0 +-0.615399,1.08469,1.52786,-0.697648,-0.784256,-0.615598,1.07525,1.51214,-0.71606,-0.724485,-0.619926,1.10256,1.65459,-0.634789,-0.783576,-0.629432,1.13157,1.98543,-0.591041,-0.944737,0.0180112,1.62557,-2.35589,1.91532,1.11391,0.178403,1.92826,-3.02835,2.49072,1.11156,-0.0780417,1.8824,-2.79402,2.35465,1.19216,0.690412,0.818719,0.934652,1.06847,1.15957,1.213,0 +-0.63351,1.09231,1.24801,-0.670332,-0.784196,-0.638837,1.09357,1.26435,-0.690192,-0.752711,-0.624954,1.10189,1.40911,-0.635129,-0.793382,-0.610701,1.09485,1.55328,-0.614909,-0.831733,-0.641706,1.3142,-1.65561,1.30314,1.1094,-0.513908,1.23714,-1.7951,1.35342,1.06604,-0.711262,1.33329,-1.69643,1.36273,1.13707,0.649062,0.906916,1.02249,1.09222,1.13032,1.15423,0 +0.610081,-0.996912,-0.873313,0.525603,0.42952,0.682876,-1.0184,-0.888715,0.53131,0.437616,0.636159,-1.0044,-0.87841,0.345211,0.487961,0.5312,-0.945187,-0.842008,0.136373,0.525203,-1.30751,-0.844586,0.482074,-0.593939,-0.97945,-0.811603,-0.975932,0.55082,-0.727184,-1.19918,-0.936761,-0.846276,0.560426,-0.623744,-0.968946,-0.148527,-0.671801,-0.815371,-0.800608,-0.784286,-0.759818,1 +-0.648323,1.03931,1.10456,-0.67361,-0.75629,-0.650951,1.03824,1.12499,-0.689093,-0.716679,-0.646313,1.06081,1.247,-0.61345,-0.77601,-0.647303,1.10975,1.62993,-0.608802,-0.971414,0.577707,1.16968,-1.60099,1.21636,1.01411,0.458586,1.47681,-1.83798,1.52425,1.10429,0.386841,1.33861,-1.57295,1.35741,1.12123,0.720657,0.738968,0.721976,0.77537,0.835741,0.85879,1 +-0.567282,0.884547,1.18242,-0.685154,-0.397915,-0.568641,0.891753,1.17816,-0.699678,-0.353637,-0.568062,0.932463,1.35516,-0.616628,-0.411479,-0.584334,0.991504,1.70073,-0.575318,-0.580606,0.521125,1.48754,-3.04132,2.42015,0.885177,0.340114,1.71704,-2.3948,2.11273,1.06749,0.203301,1.74444,-2.7925,2.44463,1.12033,0.327929,0.44879,0.540475,0.663475,0.769733,0.848165,1 +-0.624684,1.029,1.1015,-0.702846,-0.608572,-0.625174,1.02177,1.10024,-0.71466,-0.539326,-0.625244,1.06912,1.34002,-0.610951,-0.602855,-0.636878,1.15037,1.97175,-0.559906,-0.854522,0.254336,1.53748,-1.92951,1.55625,1.12347,0.00193909,2.35795,-2.72052,2.51673,1.18626,-0.128567,2.18528,-2.30162,2.08295,1.2826,0.552639,0.581126,0.628052,0.745135,0.864847,0.91819,1 +0.51068,-1.16653,-1.011,0.167588,1.22026,0.546782,-1.18322,-1.0315,0.430419,1.23443,0.551,-1.17527,-0.986407,0.909345,1.31253,0.457396,-1.0929,-0.901848,1.21377,1.2514,-0.298974,-0.598557,0.604744,-0.53119,-0.802447,0.3274,-0.839029,0.507731,-0.623735,-1.07858,0.303452,-0.834751,0.507092,-0.559046,-0.893753,-1.05684,-1.35827,-1.3173,-1.26163,-1.239,-1.23072,0 +1.10667,-1.43389,-1.07207,0.942179,1.39915,1.15208,-1.4475,-1.08884,1.37364,1.37607,1.08106,-1.41433,-1.0324,1.82468,1.32422,0.976472,-1.34931,-0.945897,1.5173,1.28293,0.200002,-0.849984,0.670472,-0.635769,-1.17072,0.595219,-1.01035,0.668153,-0.756739,-1.38773,0.670112,-0.973184,0.67401,-0.680497,-1.24154,-1.25817,-1.50707,-1.43202,-1.36925,-1.32588,-1.2987,0 +3.46469,-2.31783,-1.13373,5.82256,1.79276,3.65455,-2.34493,-1.15153,4.39058,1.78428,3.64784,-2.33868,-1.10547,0.247819,1.76762,3.67502,-2.36432,-1.065,-0.637778,1.92714,-0.26533,-1.10992,0.606903,-0.662985,-2.3185,0.289738,-1.17468,0.642175,-0.770723,-2.66978,0.446611,-1.10402,0.691691,-0.690272,-2.39932,-1.57142,-1.79065,-1.60705,-1.51779,-1.48225,-1.45245,1 +-0.618617,0.536607,-0.0900359,-0.457146,-0.644954,-0.629622,0.545843,-0.0564125,-0.467831,-0.67429,-0.623045,0.548401,-0.0244481,-0.494288,-0.766055,-0.606513,0.528281,-0.018361,-0.581585,-0.809704,-0.945117,-0.280383,0.582795,-0.502134,0.360594,-1.58166,-0.0928845,0.792732,-0.459405,0.513859,-1.43602,-0.152905,0.699578,-0.484663,0.463363,0.669672,0.620746,0.463633,0.34756,0.282132,0.250847,1 +-0.65416,0.812712,0.311258,-0.572879,-0.780788,-0.662825,0.814401,0.338034,-0.581845,-0.780718,-0.65278,0.813482,0.314386,-0.522504,-0.824436,-0.637428,0.808894,0.259293,-0.450829,-0.828804,-0.104529,0.166249,0.186089,-0.278813,0.677409,-0.154854,0.414457,0.127477,-0.106628,0.810094,-0.251427,0.260662,0.188838,-0.233446,0.740008,0.726274,0.809404,0.743956,0.659527,0.619537,0.607383,0 +-0.538287,0.411009,-0.24596,-0.409379,-0.519985,-0.556238,0.42918,-0.211547,-0.412238,-0.576928,-0.55175,0.422133,-0.217933,-0.406661,-0.615329,-0.528841,0.393157,-0.350249,-0.233436,-0.459035,-0.636428,-0.333567,0.372498,-0.494418,0.250598,-0.522004,-0.24464,0.358244,-0.498736,0.399245,-0.665224,-0.292127,0.425792,-0.492409,0.293466,0.48928,0.536148,0.377735,0.261502,0.208368,0.174874,0 +-0.636938,0.914203,0.925437,-0.572889,-0.89936,-0.640626,0.879529,0.917021,-0.634839,-0.862338,-0.625404,0.809314,0.601076,-0.65449,-0.831873,-0.616838,0.784626,0.294996,-0.565563,-0.790393,-0.0176813,0.298154,0.425302,-0.219872,0.810443,-1.05154,0.120811,0.717069,-0.277344,0.67521,-0.697878,0.320013,0.671971,-0.173405,0.840818,0.798469,1.00173,1.0484,0.967926,0.887415,0.840928,1 +1.40216,-1.61103,-1.02415,2.39292,1.00182,1.5012,-1.64046,-1.05077,1.58161,1.0416,1.51396,-1.67693,-1.04715,0.69335,1.19586,1.52327,-1.71997,-1.02288,0.492259,1.29889,-0.79635,-1.0673,0.600636,-0.659397,-1.80781,0.0239483,-1.12929,0.622555,-0.765485,-1.93188,-0.205529,-1.05638,0.680657,-0.685614,-1.79998,-0.79724,-1.24424,-1.25243,-1.24327,-1.23919,-1.24459,1 +-0.676609,0.933483,0.570171,-0.583804,-0.921129,-0.682216,0.921489,0.59275,-0.606923,-0.905077,-0.664465,0.890314,0.500435,-0.57207,-0.89874,-0.646463,0.87717,0.359704,-0.497716,-0.868715,-0.106938,0.221212,0.381573,-0.250797,0.770713,-0.761697,0.433578,0.77595,-0.0738538,0.852293,-0.532559,0.375656,0.509141,-0.157983,0.872423,0.850543,0.971105,0.937961,0.853312,0.792302,0.7556,1 +-0.464723,0.487571,0.156973,-0.512479,-0.114174,-0.476367,0.497386,0.161421,-0.528092,-0.115374,-0.473678,0.496267,0.0719447,-0.488831,-0.1236,-0.484063,0.523533,-0.0318644,-0.392818,-0.201341,0.468641,-0.128297,0.187198,-0.342892,0.393108,0.0550831,0.118322,0.0994912,-0.252976,0.59298,0.069676,0.0610801,0.217624,-0.275725,0.606873,0.0626093,0.185419,0.236464,0.201591,0.170077,0.145229,1 +0.0651481,-0.812982,-0.888385,0.231307,0.520685,0.133785,-0.866146,-0.924537,0.406941,0.585203,0.180742,-0.890484,-0.951444,0.872423,0.792002,0.118572,-0.795351,-0.884057,1.0726,0.752502,-0.103509,-0.670192,0.778819,-0.589041,-0.589221,0.615499,-0.880309,0.797969,-0.718858,-0.894102,0.337835,-0.887995,0.729533,-0.660856,-0.909425,-0.319743,-0.788594,-0.942988,-0.96019,-0.964748,-0.966617,0 +-0.103289,-0.401763,-0.608832,0.068087,0.14201,-0.0772621,-0.446721,-0.651241,-0.00969527,0.237643,-0.0670471,-0.495408,-0.759388,0.0690562,0.386511,-0.077622,-0.500595,-0.790953,0.356216,0.428041,0.211217,-0.644065,0.622605,-0.597527,-0.364182,0.777389,-0.884787,0.63262,-0.732611,-0.641896,0.621176,-0.787025,0.681416,-0.637118,-0.519126,-0.0779319,-0.227588,-0.403293,-0.471689,-0.487861,-0.499495,0 +1.26825,-1.27821,-0.87818,0.294746,0.813861,1.47469,-1.33996,-0.847065,0.333767,0.861828,1.68118,-1.3823,-0.784756,0.0108047,0.992344,1.8083,-1.46623,-0.758079,-0.753941,1.09484,0.18454,-0.704445,0.891114,-0.562475,-1.04286,0.741397,-0.901589,0.867855,-0.698208,-1.4545,0.619167,-0.8571,0.855621,-0.63282,-1.28405,-0.614519,-0.963328,-1.04042,-1.07361,-1.12557,-1.15992,1 +0.103359,-0.91901,-0.938161,0.94058,0.567772,0.0765226,-0.87872,-0.950385,0.840189,0.4692,0.0433588,-0.83707,-0.933403,0.693021,0.396146,0.0318844,-0.771302,-0.848555,-0.340343,0.256764,0.805896,-0.974743,0.602065,-0.656429,-1.09265,0.600866,-0.932653,0.584614,-0.749503,-0.859339,0.503414,-0.947056,0.677179,-0.678488,-0.967366,-0.410699,-0.825796,-0.960939,-1.01462,-1.03232,-1.01602,1 +-0.702066,1.1478,1.26593,-0.626133,-1.08522,-0.706104,1.11759,1.24484,-0.667323,-1.04845,-0.684465,1.0629,0.973244,-0.641926,-1.03183,-0.663665,1.03918,0.75661,-0.582765,-1.02661,0.0012594,0.616168,0.187498,0.0205401,1.00252,-0.691941,0.57254,0.562724,0.00455782,0.952754,-0.477476,0.713931,0.359814,0.0687265,1.0636,0.95892,1.19988,1.2555,1.19421,1.1103,1.05908,1 +-0.604124,0.851323,0.649992,-0.617677,-0.606413,-0.604374,0.820988,0.623175,-0.628892,-0.558057,-0.590931,0.781327,0.422763,-0.525333,-0.541705,-0.588852,0.791822,0.273496,-0.371548,-0.554139,0.216544,0.480355,0.350718,-0.172535,0.828215,-0.523684,0.762976,0.892063,0.0990416,0.825216,-0.373327,0.577327,0.492119,-0.105548,0.891453,0.491849,0.695949,0.743496,0.704955,0.657418,0.623975,1 +-0.670982,0.942759,0.664575,-0.593679,-0.978941,-0.676139,0.929335,0.676419,-0.617998,-0.952873,-0.664415,0.908195,0.556068,-0.575568,-0.973174,-0.648602,0.895871,0.396936,-0.485132,-0.947496,0.425572,0.36851,0.169737,-0.149067,0.831053,0.105229,0.433878,0.340883,-0.0739937,0.842218,0.20351,0.414537,0.219233,-0.12286,0.863577,0.872873,1.05033,1.01799,0.934712,0.883287,0.865596,1 +0.908515,-1.12552,-0.854882,0.5109,1.00254,0.900489,-1.11006,-0.887036,0.528042,0.985557,0.774321,-1.04791,-0.870044,0.26454,0.927376,0.657588,-1.01924,-0.83752,-0.199452,0.864127,1.21832,-0.720617,0.420844,-0.578836,-0.733761,0.103789,-0.881838,0.65293,-0.676129,-0.751702,0.284471,-0.843317,0.617688,-0.600716,-0.962479,-0.900739,-1.07395,-1.02077,-1.02154,-1.00203,-0.972524,1 +-0.639487,0.831003,0.717529,-0.539526,-1.12748,-0.643555,0.800898,0.729283,-0.61357,-1.11527,-0.625604,0.723096,0.333437,-0.61185,-0.99994,-0.603934,0.688922,-0.010295,-0.418075,-0.825916,0.287359,0.0675371,0.24491,-0.24457,0.642726,0.1847,-0.0477066,0.349399,-0.315795,0.583335,0.334656,0.0900759,0.253446,-0.234485,0.640396,0.975502,1.2421,1.23119,1.1165,1.02237,0.914282,1 +0.440384,-1.17162,-1.01883,1.23805,0.975892,0.460005,-1.17363,-1.04408,1.4613,0.98069,0.457076,-1.18038,-1.03086,1.88784,1.05177,0.38747,-1.13661,-0.986957,2.15297,1.0298,0.272457,-0.917051,0.630671,-0.645914,-0.993483,0.897531,-1.05958,0.6525,-0.761527,-1.28124,0.692401,-1.00158,0.681376,-0.681656,-1.30757,-0.749853,-1.1894,-1.22045,-1.18681,-1.14681,-1.12936,0 +-0.55099,0.705155,0.395986,-0.581125,-0.299943,-0.555888,0.696929,0.406031,-0.59173,-0.263401,-0.547462,0.685644,0.338974,-0.524933,-0.281412,-0.541645,0.69329,0.252216,-0.431799,-0.317395,0.514218,0.272017,0.0366221,-0.135144,0.734591,0.313906,0.440814,-0.0867576,-0.0390708,0.760878,0.405402,0.32738,0.0208699,-0.119012,0.748573,0.161891,0.431179,0.48939,0.445992,0.407001,0.382893,0 +-0.608612,0.573529,0.0921449,-0.4481,-0.81738,-0.617687,0.562954,0.117982,-0.497736,-0.835671,-0.597637,0.498976,-0.106658,-0.476727,-0.71508,-0.57272,0.463093,-0.3069,-0.275695,-0.579206,0.206659,-0.236774,0.372837,-0.422603,0.391618,0.372927,-0.24549,0.38815,-0.463793,0.436686,0.53048,-0.207119,0.349839,-0.410069,0.395856,0.750732,0.83838,0.729053,0.599546,0.493169,0.416126,1 +-0.342262,-0.059191,-0.432668,-0.144449,-0.22512,-0.332297,-0.0924547,-0.477836,-0.20492,-0.14293,-0.322002,-0.155394,-0.644245,-0.119801,0.0230186,-0.330948,-0.154594,-0.669062,-0.0356225,0.0677669,0.202251,-0.546732,0.577467,-0.542864,-0.0821796,0.752072,-0.747874,0.563844,-0.6738,-0.255315,0.729053,-0.670222,0.615579,-0.586743,-0.26547,0.278274,0.124489,-0.0846785,-0.191776,-0.228338,-0.233146,0 +-0.687763,1.07712,1.04199,-0.629881,-1.00579,-0.690912,1.0491,1.04196,-0.657408,-0.964098,-0.675099,1.01496,0.884157,-0.609322,-0.982339,-0.659207,1.0029,0.757799,-0.546612,-1.01152,0.492549,0.486242,0.18464,-0.112685,0.881878,-0.028536,0.802247,0.36715,0.18463,0.993464,0.199372,0.732312,0.194485,0.0593911,0.995183,0.887685,1.08618,1.1295,1.07339,1.01062,0.970735,1 +-0.690372,1.12984,1.24633,-0.629941,-1.03545,-0.692171,1.09403,1.23032,-0.667483,-0.98024,-0.672241,1.03838,0.965857,-0.63227,-0.947146,-0.655309,1.02247,0.726055,-0.553549,-0.921169,0.362383,0.623745,0.392098,-0.00223876,0.992464,-0.464483,0.668493,0.79695,0.137983,0.973783,-0.0988815,0.741857,0.518476,0.088067,1.03257,0.906796,1.14281,1.21673,1.18576,1.11865,1.04997,1 +-0.53075,0.779319,0.787045,-0.620516,-0.309059,-0.528821,0.749823,0.764895,-0.637918,-0.251037,-0.520145,0.713151,0.533609,-0.546902,-0.227649,-0.525053,0.722656,0.331078,-0.393897,-0.236854,0.711312,0.402843,0.0523144,-0.116573,0.771163,0.373947,0.787155,-0.0886467,0.190307,0.842897,0.442473,0.593929,-0.0339333,0.00545747,0.85833,0.119012,0.483244,0.607383,0.605044,0.562175,0.53173,0 +-0.675189,0.979021,0.786505,-0.595188,-0.951414,-0.682496,0.971644,0.818259,-0.629092,-0.951694,-0.667013,0.940439,0.700897,-0.616638,-0.969365,-0.650292,0.921229,0.518626,-0.559906,-0.963598,0.198003,0.324931,0.12351,-0.165189,0.788664,-0.280163,0.439985,0.298794,-0.0783016,0.875661,-0.100611,0.445152,0.2654,-0.114674,0.893692,0.849234,1.01446,1.0223,0.954872,0.886066,0.842927,1 +-0.668483,0.824337,0.305141,-0.545053,-0.874822,-0.677538,0.826046,0.356405,-0.567422,-0.891044,-0.661496,0.806905,0.317275,-0.556368,-0.930534,-0.641466,0.787074,0.206889,-0.51044,-0.920549,-0.205309,0.0283762,0.345191,-0.359774,0.611561,-0.67478,0.217394,0.578936,-0.243511,0.773671,-0.532699,0.16418,0.45034,-0.308769,0.729413,0.814811,0.913093,0.833752,0.703715,0.629452,0.600296,1 +0.51129,-0.91918,-0.812622,0.51171,0.466392,0.555138,-0.923798,-0.825606,0.34667,0.492059,0.4911,-0.924028,-0.848565,-0.0554529,0.526532,0.385301,-0.916132,-0.842647,-0.359204,0.556038,-1.12675,-0.893293,0.580146,-0.624804,-0.9386,-0.525783,-0.973403,0.574898,-0.726554,-1.10807,-0.639967,-0.881708,0.624874,-0.642505,-0.997762,-0.241292,-0.681266,-0.800668,-0.813112,-0.811633,-0.814451,1 +0.395746,-1.06438,-0.994623,0.171286,0.860419,0.473508,-1.09785,-1.01401,0.407371,0.882228,0.488171,-1.06787,-0.989506,0.893463,1.00572,0.287849,-0.882948,-0.887665,1.09323,0.821538,-0.30614,-0.610371,0.831343,-0.580496,-0.641626,0.534338,-0.835721,0.852372,-0.709503,-1.06477,0.34811,-0.880459,0.759568,-0.665764,-0.969655,-0.604904,-1.12068,-1.14795,-1.13951,-1.1365,-1.13551,0 +0.976002,-1.49629,-1.06947,0.702956,1.35635,1.07405,-1.54061,-1.09347,1.10376,1.41816,1.07201,-1.50965,-1.04669,1.71269,1.50285,0.854062,-1.36069,-0.933143,1.51399,1.41677,-0.460375,-0.777969,0.695919,-0.631721,-1.11605,0.336755,-0.975402,0.702816,-0.75525,-1.50706,0.205649,-0.986307,0.695699,-0.684005,-1.39941,-1.24208,-1.48869,-1.41066,-1.36836,-1.35932,-1.37568,0 +-0.0584214,-0.690362,-0.862478,-0.0412695,0.55086,-0.0361122,-0.708513,-0.887555,0.114774,0.616618,-0.0568921,-0.646704,-0.868415,0.415557,0.654499,-0.191396,-0.447851,-0.71501,0.313237,0.353677,0.0172916,-0.437616,0.85813,-0.524553,-0.186449,0.720887,-0.752492,0.828564,-0.69419,-0.620856,0.662656,-0.787804,0.734411,-0.651661,-0.555618,-0.217913,-0.757069,-0.864577,-0.89816,-0.938261,-0.936651,0 +0.91882,-1.51461,-1.00179,2.29765,0.665234,1.11591,-1.60939,-1.04549,1.19925,0.739847,1.23915,-1.66383,-1.04643,0.710042,0.936071,1.41915,-1.70634,-0.989076,0.394437,1.15569,-0.389559,-1.06257,0.616908,-0.659167,-1.75762,0.303531,-1.13957,0.651151,-0.768484,-2.0003,0.317195,-1.063,0.69437,-0.688133,-1.79105,-0.378195,-0.974413,-1.09953,-1.11295,-1.13542,-1.18174,1 +-0.656249,0.994503,0.754451,-0.642875,-0.790763,-0.661816,0.992164,0.767854,-0.65439,-0.767294,-0.65378,1.00216,0.742357,-0.568152,-0.807535,-0.646294,1.02266,0.798329,-0.496837,-0.930065,-0.249918,0.579806,-0.0724145,0.0761429,0.928736,-0.42969,1.1391,-0.270088,0.586173,1.06328,-0.439035,0.804856,-0.130876,0.175664,1.00605,0.713071,0.842748,0.860689,0.8375,0.802007,0.798089,0 +0.0628392,-0.751362,-0.787595,0.474698,0.128257,0.0846187,-0.764416,-0.783247,0.214515,0.157373,0.083849,-0.794531,-0.812952,-0.332097,0.248198,0.104639,-0.818979,-0.847035,-0.121231,0.358684,-0.603555,-0.85716,0.703066,-0.615888,-0.794641,-0.0710052,-0.968946,0.713231,-0.727554,-0.989635,0.128757,-0.881269,0.759258,-0.649482,-0.888545,0.130886,-0.413567,-0.563404,-0.61336,-0.600906,-0.5714,1 +-0.55244,0.524153,0.280513,-0.464522,-0.938111,-0.555298,0.507681,0.337904,-0.549741,-0.922048,-0.553549,0.451439,0.152155,-0.656479,-0.846645,-0.53025,0.418985,-0.140101,-0.499285,-0.695489,-0.324781,-0.158442,0.231177,-0.32627,0.402533,-0.166488,-0.289928,0.238313,-0.404202,0.283661,-0.0156423,-0.123599,0.203251,-0.304021,0.390918,0.909734,0.955323,0.882478,0.81678,0.802237,0.81634,1 +-0.494108,0.346171,-0.0526442,-0.378265,-0.770992,-0.500605,0.332667,-0.0194506,-0.453988,-0.777839,-0.501744,0.282132,-0.191636,-0.526742,-0.698648,-0.480335,0.237024,-0.379014,-0.365071,-0.548581,-0.267939,-0.349479,0.420234,-0.429699,0.210367,-0.110046,-0.441784,0.426291,-0.503314,0.135644,0.255345,-0.311857,0.394037,-0.418315,0.214325,0.79722,0.739778,0.567392,0.501494,0.476946,0.471599,1 +-0.536887,0.809094,0.648473,-0.636098,-0.49047,-0.542454,0.819859,0.650771,-0.644664,-0.496417,-0.539426,0.85679,0.682556,-0.561745,-0.556757,-0.543584,0.895791,0.810703,-0.512489,-0.665774,0.590261,0.594149,-0.543894,0.281992,0.822528,0.232866,1.05189,-0.440214,0.611601,0.961969,0.272807,0.794111,-0.474208,0.343122,0.944737,0.378814,0.584874,0.664185,0.67298,0.638777,0.617798,1 +-0.405052,0.0993414,-0.352747,-0.252066,-0.426111,-0.410739,0.10227,-0.316555,-0.321173,-0.420334,-0.422343,0.0721945,-0.421124,-0.4082,-0.371228,-0.413208,0.0447979,-0.524553,-0.284131,-0.26507,0.0116043,-0.468261,0.418385,-0.484922,0.0613202,0.317924,-0.621816,0.421473,-0.598767,-0.093834,0.391119,-0.525913,0.4499,-0.517786,-0.0701158,0.512109,0.355406,0.167988,0.0963628,0.0897361,0.0843587,0 +-0.655289,0.986257,0.73599,-0.63307,-0.826845,-0.661416,0.981669,0.717489,-0.644545,-0.810203,-0.65243,0.988106,0.717379,-0.570441,-0.831463,-0.643885,0.995492,0.718828,-0.503713,-0.896621,-0.0738638,0.652561,-0.18403,0.153025,0.953583,-0.364132,0.884247,-0.252906,0.36707,0.992734,-0.445452,0.771922,-0.268089,0.209288,0.990475,0.743836,0.87828,0.884647,0.844586,0.802007,0.787534,1 +-0.621096,0.922688,0.763816,-0.645434,-0.600296,-0.628662,0.924257,0.770373,-0.656319,-0.565043,-0.623305,0.943678,0.843247,-0.581415,-0.618337,-0.61357,0.95961,0.957061,-0.538007,-0.723566,0.51027,0.764006,-0.698258,0.436067,0.931354,0.353917,1.07604,-1.25934,0.836531,0.974463,0.211167,0.895622,-0.847345,0.529551,0.958511,0.521575,0.661966,0.700087,0.711871,0.703755,0.706514,0 +-0.300273,-0.00538738,-0.308179,-0.254635,-0.373887,-0.293386,-0.0138632,-0.295046,-0.332807,-0.351438,-0.316565,-0.0348431,-0.426981,-0.415077,-0.324791,-0.330398,-0.0516149,-0.527302,-0.311008,-0.262182,-0.180172,-0.514698,0.57149,-0.504663,-0.00397785,0.0258074,-0.608062,0.545603,-0.587662,-0.213625,0.258104,-0.526912,0.559166,-0.529461,-0.0911255,0.467771,0.275245,0.154194,0.097892,0.071505,0.0602005,1 +0.10203,-0.546113,-0.597418,0.0908558,-0.139542,0.16278,-0.581735,-0.597378,-0.0932144,-0.0893264,0.104089,-0.599507,-0.664405,-0.418525,0.016162,0.0427591,-0.594919,-0.727904,-0.269338,0.0957232,0.000289878,-0.75562,0.712691,-0.580156,-0.621016,0.519646,-0.870814,0.737759,-0.692351,-0.852333,0.648503,-0.787045,0.748334,-0.624014,-0.656839,0.312887,-0.0921847,-0.271457,-0.344491,-0.385581,-0.392018,1 +0.912593,-1.12284,-0.830024,0.680217,0.588272,1.06543,-1.16916,-0.840089,0.348919,0.643405,1.07967,-1.22378,-0.848335,-0.623005,0.760847,0.975852,-1.25649,-0.871164,-0.663105,0.789254,0.0447881,-0.885716,0.722726,-0.617168,-1.14785,0.733961,-1.02845,0.702126,-0.740358,-1.51463,0.793662,-0.918191,0.7564,-0.656269,-1.14009,-0.435607,-0.764206,-0.81787,-0.838559,-0.819479,-0.798579,1 +-0.701507,1.30015,1.74679,-0.678777,-1.19832,-0.704695,1.27725,1.71702,-0.707694,-1.15824,-0.688303,1.24669,1.5441,-0.645884,-1.146,-0.671021,1.227,1.39049,-0.568102,-1.12091,0.28685,1.15847,-0.649542,0.635129,1.1581,0.154175,1.39427,-0.905247,1.07808,1.19307,0.176664,1.28939,-0.77594,0.763886,1.17281,1.02293,1.33969,1.4678,1.49173,1.46382,1.44947,0 +-0.667523,1.16912,1.49339,-0.660556,-0.998401,-0.669802,1.14189,1.4476,-0.689553,-0.950185,-0.65274,1.10593,1.222,-0.629282,-0.926626,-0.63407,1.08393,1.04148,-0.545973,-0.895741,0.47048,0.91997,-0.529401,0.42991,1.04369,0.298254,1.08516,-0.741727,0.707154,1.0697,0.317745,1.03208,-0.641596,0.528641,1.06036,0.820228,1.15618,1.25914,1.25446,1.22294,1.2079,0 +-0.322382,-0.0451579,-0.304361,-0.193885,-0.339404,-0.308009,-0.0827595,-0.322042,-0.32603,-0.292627,-0.30664,-0.14396,-0.499266,-0.420914,-0.182271,-0.2868,-0.179033,-0.606153,-0.24449,0.00404809,-0.0343831,-0.508461,0.494358,-0.494858,-0.069016,0.302872,-0.739338,0.487161,-0.638317,-0.342722,0.36772,-0.61337,0.500515,-0.542864,-0.239613,0.360244,0.253176,0.095973,0.0566822,0.0809504,0.10313,0 +-0.410759,0.292187,0.341013,-0.42939,-0.709842,-0.398925,0.246859,0.358474,-0.578837,-0.670492,-0.401044,0.178712,-0.00849593,-0.681476,-0.563474,-0.411119,0.178652,-0.267039,-0.501574,-0.442064,-0.149137,-0.258773,0.181671,-0.312597,0.197244,-0.0501854,-0.479155,0.290548,-0.474508,-0.0664674,0.0807206,-0.275435,0.175244,-0.332057,0.165759,0.681916,0.692771,0.65445,0.648452,0.646014,0.601965,1 +-0.706894,1.29156,1.69439,-0.681886,-1.07966,-0.710312,1.27104,1.66622,-0.708113,-1.018,-0.6953,1.27261,1.61623,-0.647703,-1.05625,-0.679497,1.28891,1.78938,-0.625993,-1.21934,0.0999911,1.12711,-0.513049,0.616538,1.18052,-0.549241,1.52934,-0.424822,1.0869,1.25456,-0.471609,1.4659,-0.521465,0.870284,1.30531,0.953853,1.16175,1.2553,1.31014,1.32706,1.33557,1 +-0.249778,0.0590811,-0.214655,-0.326,-0.113045,-0.262351,0.0535438,-0.202701,-0.382103,-0.0896862,-0.263701,0.00833574,-0.330818,-0.431079,-0.0447982,-0.239253,-0.0299455,-0.482894,-0.219123,0.0844887,-0.779458,-0.321393,0.181531,-0.382613,0.132755,-0.421474,-0.55161,0.180541,-0.517407,-0.100121,-0.562105,-0.452249,0.231797,-0.431519,-0.0875373,0.0579316,0.164979,0.107887,0.100471,0.117832,0.128177,1 +0.144409,-0.51133,-0.713021,-0.0874369,0.171056,0.191956,-0.51144,-0.6936,-0.0361223,0.200292,0.14279,-0.505243,-0.698468,0.0150626,0.186079,0.108167,-0.543254,-0.721877,0.0791713,0.182671,-0.969435,-0.697269,0.602195,-0.579306,-0.40747,-0.492799,-0.638847,0.411129,-0.600586,-0.541175,-0.565693,-0.65464,0.617798,-0.586523,-0.406061,0.0718948,-0.355886,-0.485142,-0.542015,-0.53175,-0.485342,1 +-0.586813,0.583624,0.151496,-0.478495,-0.823147,-0.597947,0.594529,0.212346,-0.523504,-0.85721,-0.593239,0.568721,0.152055,-0.59191,-0.866956,-0.569951,0.531869,-0.10267,-0.44863,-0.73555,-0.83819,-0.115743,0.18356,-0.312827,0.459895,-0.559916,-0.165859,0.0891962,-0.345951,0.437956,-0.718098,-0.0783516,0.124229,-0.287839,0.446981,0.819099,0.813862,0.707344,0.631471,0.622645,0.618057,1 +-0.686124,1.06862,0.728893,-0.642555,-0.920569,-0.69308,1.07497,0.756389,-0.65389,-0.907436,-0.681806,1.10123,0.864857,-0.585943,-0.975133,-0.666874,1.11249,1.03146,-0.565553,-1.09891,-0.679038,0.646034,-0.0869973,0.135014,0.991605,-0.916451,1.09101,-0.170507,0.573449,1.11907,-0.941739,0.834272,-0.114124,0.22524,1.06216,0.85828,0.958581,0.953073,0.927676,0.89953,0.897151,1 +-0.711562,1.27412,1.48817,-0.661416,-1.1507,-0.716209,1.25815,1.49764,-0.692181,-1.12006,-0.697688,1.23628,1.4519,-0.658018,-1.15631,-0.676349,1.21543,1.43126,-0.643695,-1.21883,-0.191636,0.826456,0.0254376,0.234375,1.11324,-0.896601,1.16131,0.250787,0.598387,1.18563,-0.685724,1.09669,0.145529,0.382403,1.21456,1.02296,1.2488,1.33403,1.35647,1.32401,1.30691,1 +1.27935,-1.63309,-1.0873,2.89147,1.26479,1.30754,-1.63957,-1.10578,2.81993,1.278,1.35862,-1.67165,-1.07711,2.39025,1.35879,1.48637,-1.74119,-1.04712,2.94194,1.52009,-1.51199,-1.07975,0.606133,-0.661666,-1.83248,-0.904577,-1.11994,0.630791,-0.767094,-1.75872,-0.788574,-1.06455,0.690612,-0.687243,-1.82625,-0.97961,-1.44074,-1.39338,-1.33578,-1.30265,-1.29507,1 +-0.577707,0.517747,0.000479795,-0.441054,-0.793172,-0.59105,0.535998,0.0761426,-0.487571,-0.83804,-0.584834,0.517816,0.0250776,-0.573949,-0.840708,-0.559496,0.467161,-0.130516,-0.558586,-0.752492,-1.14006,-0.126868,0.451719,-0.357485,0.488621,-0.569691,-0.294686,0.480694,-0.456447,0.380124,-0.44918,-0.223051,0.424832,-0.406051,0.391278,0.767134,0.780138,0.644654,0.529491,0.497416,0.483893,1 +-0.676029,0.972694,0.714121,-0.59093,-1.06542,-0.684015,0.97992,0.785895,-0.625574,-1.10383,-0.666354,0.961459,0.829294,-0.65405,-1.12573,-0.642625,0.920889,0.625264,-0.623455,-1.05677,-0.712171,0.457806,-0.0523643,0.0742238,0.902898,-0.215135,0.333317,-0.229358,0.0580916,0.819099,-0.357105,0.434108,-0.205909,0.110276,0.8577,0.965957,1.16321,1.18966,1.15789,1.14231,1.17918,1 +-0.439565,0.335306,-0.236084,-0.382702,-0.391588,-0.44961,0.352697,-0.190807,-0.403523,-0.413188,-0.440494,0.339334,-0.214905,-0.454248,-0.410529,-0.415846,0.30682,-0.281992,-0.468111,-0.34671,-1.18144,-0.218883,0.301832,-0.396076,0.383093,-0.508991,-0.403153,0.373717,-0.505502,0.236444,-0.607802,-0.34819,0.364592,-0.450419,0.195524,0.357245,0.435827,0.318494,0.215095,0.20354,0.217254,1 +-0.646394,0.888395,0.395017,-0.625893,-0.643145,-0.659287,0.923828,0.439015,-0.628582,-0.688663,-0.658567,0.995463,0.665584,-0.562295,-0.845926,-0.656848,1.04901,0.955162,-0.579986,-1.01068,-1.00016,0.628123,-0.454058,0.223781,0.903488,-1.00331,0.89811,-0.53061,0.528451,1.00978,-1.08938,0.746435,-0.521025,0.360354,0.966007,0.59117,0.655529,0.676319,0.71372,0.726154,0.739558,1 +-0.639867,0.812262,0.413578,-0.55179,-0.962279,-0.650371,0.828594,0.504673,-0.586493,-0.970835,-0.641376,0.827375,0.51121,-0.617158,-0.97987,-0.622995,0.799428,0.324501,-0.57192,-0.933473,-0.949925,0.24623,0.138962,-0.0863776,0.770123,-0.360174,0.105089,0.0721446,-0.147008,0.682436,-0.492599,0.199782,0.0309549,-0.0767223,0.709483,0.922598,1.01703,0.993943,0.942498,0.93863,0.946746,1 +-0.114474,-0.415367,-0.681357,0.0543237,0.150107,-0.0980119,-0.431059,-0.697359,0.042959,0.179952,-0.0976221,-0.456887,-0.730852,-0.0158722,0.241122,-0.0895361,-0.481205,-0.711092,-0.230877,0.312317,-0.911984,-0.606723,0.585203,-0.568282,-0.258333,0.0547832,-0.853852,0.577077,-0.698698,-0.59256,-0.108687,-0.778349,0.614269,-0.621945,-0.520515,-0.0488361,-0.270477,-0.459125,-0.534768,-0.562165,-0.570561,0 +-0.628193,1.15794,1.35944,-0.670601,-0.809963,-0.63325,1.15502,1.36153,-0.693011,-0.777799,-0.618127,1.15282,1.44865,-0.640426,-0.803806,-0.603984,1.14455,1.56804,-0.621666,-0.839679,-0.312077,1.17835,-0.905127,0.828824,1.17092,-0.153475,1.26817,-1.30085,1.17698,1.13875,-0.239213,1.2986,-1.24858,1.13791,1.18659,0.638487,0.978251,1.12769,1.19769,1.22203,1.23109,0 +-0.609322,0.865736,0.486132,-0.59111,-0.654539,-0.620246,0.882368,0.516987,-0.606133,-0.659297,-0.605693,0.888845,0.606353,-0.585233,-0.710612,-0.587362,0.872403,0.636238,-0.601705,-0.716019,-0.932314,0.366351,-0.105338,0.0132337,0.823387,-0.69356,0.460784,-0.330858,0.166778,0.861678,-0.894452,0.446372,-0.248738,0.126838,0.850154,0.539786,0.748894,0.749723,0.728893,0.727964,0.738349,0 +-0.683306,1.05944,0.927386,-0.625134,-1.08289,-0.689752,1.06298,0.972834,-0.652111,-1.08861,-0.6734,1.05869,1.04239,-0.642136,-1.11275,-0.652101,1.02351,0.936422,-0.623135,-1.07192,-0.605703,0.665274,-0.199212,0.252197,0.998501,-0.194685,0.65389,-0.518146,0.384752,0.953433,-0.380294,0.708833,-0.440584,0.363112,0.990655,1.00162,1.15705,1.17646,1.17958,1.20058,1.21226,1 +-0.659767,0.917401,0.683865,-0.566382,-1.10149,-0.665344,0.910134,0.761077,-0.616958,-1.10409,-0.649422,0.863997,0.614249,-0.649472,-1.08114,-0.627953,0.827235,0.333317,-0.57249,-0.971384,-0.856161,0.331838,0.234285,-0.0591609,0.83877,-0.369829,0.0985018,0.26516,-0.176653,0.691192,-0.446002,0.249098,0.144269,-0.0789612,0.774341,0.996452,1.20288,1.22329,1.17727,1.16951,1.15685,1 +-0.662736,1.00475,1.01983,-0.615498,-1.08881,-0.667493,1.00265,1.08757,-0.655089,-1.0897,-0.65426,0.985877,1.02415,-0.662526,-1.07421,-0.639747,0.967826,0.719048,-0.582295,-1.01344,-0.51154,0.650042,-0.0324241,0.247119,0.988356,-0.0611001,0.463173,-0.136923,0.22484,0.846086,-0.1423,0.627373,-0.319294,0.356705,0.947206,0.962509,1.18244,1.25784,1.27209,1.26829,1.28123,1 +-0.700197,1.2101,1.41873,-0.654609,-1.20531,-0.704915,1.20577,1.49056,-0.689343,-1.19358,-0.686124,1.18286,1.49258,-0.675959,-1.18989,-0.663165,1.13677,1.22358,-0.623375,-1.12849,-0.439385,1.15263,-0.437596,0.722436,1.21245,-0.100451,0.842447,-0.620386,0.587952,1.03242,-0.251017,1.02245,-0.637278,0.69467,1.14812,1.0594,1.34046,1.46591,1.48839,1.47889,1.48652,1 +-0.313367,-0.239423,-0.500925,-0.0159719,-0.443203,-0.291447,-0.284791,-0.528391,-0.168258,-0.396956,-0.261442,-0.354237,-0.624834,-0.446881,-0.239793,-0.222631,-0.420314,-0.677798,-0.626083,-0.0890763,-0.506922,-0.677058,0.695539,-0.552689,-0.399224,0.358954,-0.85704,0.689262,-0.691511,-0.604154,0.191426,-0.733101,0.702016,-0.601605,-0.430829,0.603414,0.203501,-0.121071,-0.219942,-0.279593,-0.304731,1 +-0.644465,0.841578,0.860939,-0.57112,-1.03222,-0.649142,0.833212,0.882408,-0.630681,-1.01498,-0.63264,0.788924,0.597807,-0.645484,-0.967286,-0.61265,0.745355,0.349879,-0.617288,-0.937671,-0.270957,0.477107,0.524983,-0.00977507,0.863797,0.336215,0.00655678,0.473028,-0.269638,0.594259,0.185559,0.144709,0.358445,-0.160551,0.698218,0.91945,1.11156,1.10939,1.03795,0.943048,0.900639,1 +-0.609172,0.892693,0.918271,-0.587662,-0.820748,-0.61201,0.879399,0.974613,-0.640846,-0.800238,-0.590441,0.825186,0.737399,-0.6527,-0.738608,-0.567202,0.785715,0.423912,-0.565663,-0.667653,-0.178633,0.535928,-0.130476,0.177993,0.915882,0.391938,0.172476,-0.0671372,-0.00814596,0.688553,0.304841,0.350908,-0.184759,0.137473,0.778379,0.67437,0.956162,1.06502,1.06943,1.04374,1.03247,0 +-0.609402,0.684515,0.55144,-0.5308,-1.042,-0.611321,0.662756,0.553099,-0.586693,-1.01915,-0.603135,0.631271,0.277124,-0.599317,-0.946966,-0.593439,0.614509,0.0902458,-0.541535,-0.864667,-0.353917,0.20445,0.517227,-0.116303,0.689902,0.38744,-0.115883,0.527042,-0.304351,0.461504,0.392838,0.0413798,0.462154,-0.218383,0.580786,0.949825,1.08166,1.03651,0.885187,0.814641,0.783386,1 +-0.0595708,-0.606383,-0.734421,0.190747,0.189797,-0.0135932,-0.655889,-0.766295,0.179152,0.251926,0.00643692,-0.697709,-0.819579,0.242621,0.391258,0.0111146,-0.704755,-0.799099,0.209537,0.488521,-0.357855,-0.672311,0.636089,-0.586843,-0.493428,0.582985,-0.916411,0.618257,-0.724325,-0.846386,0.525783,-0.831323,0.643295,-0.640376,-0.672731,-0.0536637,-0.386251,-0.560995,-0.645014,-0.670022,-0.662855,0 +-0.594179,0.565123,0.272607,-0.445931,-0.948026,-0.59164,0.533369,0.240932,-0.528981,-0.916831,-0.569291,0.475407,-0.00338843,-0.582745,-0.803147,-0.547322,0.433957,-0.152216,-0.565933,-0.692421,-0.281352,-0.113065,0.678648,-0.333177,0.47081,0.574409,-0.40809,0.630831,-0.503843,0.247749,0.544414,-0.267719,0.59289,-0.416426,0.333906,0.909555,0.926866,0.774501,0.660547,0.610881,0.595818,1 +1.87108,-1.8986,-1.06955,3.81837,1.04945,2.17553,-2.00612,-1.10755,1.24435,1.10578,2.4206,-2.09404,-1.10189,0.412658,1.39498,2.552,-2.11008,-1.05751,0.411768,1.61346,-0.526432,-1.10623,0.598667,-0.664704,-2.12856,0.358954,-1.17096,0.635339,-0.771822,-2.4032,0.454618,-1.09784,0.683835,-0.691631,-2.17147,-0.730372,-1.29942,-1.33223,-1.31305,-1.32559,-1.34911,1 +-0.713951,1.34237,1.49452,-0.683185,-1.17539,-0.719008,1.33866,1.52029,-0.705665,-1.14056,-0.700927,1.34301,1.62518,-0.644984,-1.17546,-0.681936,1.33717,1.82077,-0.622305,-1.23061,-0.389759,1.39387,-0.71463,0.937681,1.30499,-0.415237,1.52055,-0.81668,1.26563,1.27699,-0.384921,1.4961,-0.922578,1.15528,1.31886,1.04768,1.27829,1.39051,1.43454,1.44746,1.45763,1 +-0.65452,0.8172,0.475817,-0.519805,-1.11548,-0.659037,0.802027,0.515767,-0.580686,-1.08956,-0.638947,0.746105,0.280952,-0.603085,-1.01396,-0.614609,0.702996,0.0624994,-0.523654,-0.886076,-0.304701,0.146358,0.432018,-0.188308,0.731432,0.415697,-0.145089,0.435766,-0.354926,0.546193,0.444333,-0.00307847,0.36808,-0.254855,0.601036,1.03471,1.18099,1.10541,1.00929,0.95988,0.932074,1 +-0.660936,0.958311,0.778539,-0.607882,-1.02873,-0.667773,0.965537,0.850423,-0.637228,-1.01649,-0.656658,0.96023,0.730752,-0.600616,-1.00557,-0.642136,0.952224,0.533439,-0.509131,-0.986677,-0.207358,0.683965,0.189817,0.198643,1.0155,0.301732,0.416466,-0.126348,0.194695,0.824586,0.333827,0.533469,-0.0949034,0.189677,0.882788,0.967006,1.11884,1.17158,1.14423,1.13179,1.0989,1 +-0.590461,0.481894,-0.47095,-0.557537,-0.24443,-0.610941,0.535248,-0.424332,-0.517307,-0.344321,-0.613629,0.615588,-0.273316,-0.354866,-0.543464,-0.597168,0.660247,-0.104319,-0.248348,-0.642475,-0.018301,-0.0117141,0.3881,-0.292617,0.569801,0.140321,0.670722,-0.944667,0.540555,0.848555,0.241192,0.485592,-0.547892,0.331838,0.800558,0.356835,0.0888067,-0.0269968,-0.106968,-0.132395,-0.133515,1 +-0.423013,0.0914252,-0.506322,-0.303131,-0.100171,-0.432648,0.105438,-0.507841,-0.267379,-0.10188,-0.42958,0.103369,-0.546692,-0.149407,-0.0776721,-0.423603,0.106688,-0.516787,-0.104079,-0.0922548,-0.404052,-0.177953,0.427241,-0.357905,0.383592,0.398845,-0.569781,0.411758,-0.534258,-0.0109246,0.430529,-0.349059,0.147238,-0.242551,0.0864476,0.150406,0.0199704,-0.171356,-0.257074,-0.297055,-0.309189,0 +-0.542654,0.302812,-0.160891,-0.368379,-0.683885,-0.55154,0.311687,-0.108597,-0.423713,-0.71543,-0.544273,0.291517,-0.14231,-0.562704,-0.701786,-0.522014,0.236784,-0.283821,-0.549041,-0.615119,-0.385661,-0.189937,0.820038,-0.40868,0.34842,0.369329,-0.493988,0.75447,-0.580276,0.105818,0.468491,-0.379544,0.741057,-0.502644,0.179502,0.71433,0.608632,0.419964,0.257914,0.180462,0.151916,1 +-0.067507,-0.754891,-0.948386,0.407811,0.349599,-0.067157,-0.744735,-0.957631,0.591421,0.365211,-0.10246,-0.698618,-0.931924,0.827065,0.295245,-0.12227,-0.645764,-0.883418,0.855471,0.215315,-0.87921,-0.900929,0.63375,-0.639857,-0.812502,-0.404142,-0.861778,0.606903,-0.730962,-0.648223,0.0290858,-0.862358,0.711832,-0.662875,-0.703386,-0.0892763,-0.677288,-0.852682,-0.845426,-0.853302,-0.862468,1 +-0.343112,0.036772,-0.578607,-0.600046,0.178053,-0.350168,0.0786515,-0.619587,-0.556438,0.0509449,-0.339244,0.16291,-0.476987,-0.339074,-0.0240983,-0.284231,0.159512,-0.200512,-0.191956,-0.145479,-0.320273,0.442483,0.547682,0.0066369,0.706224,-0.272656,0.929175,-1.42514,0.923478,0.529711,-0.156653,0.610391,-0.676429,0.270748,0.500935,0.0924847,-0.401513,-0.462733,-0.4699,-0.47002,-0.471659,1 +1.0802,-1.56581,-1.05832,2.77204,0.901519,1.18699,-1.61443,-1.08491,2.27869,0.920119,1.32227,-1.68138,-1.06824,1.42474,1.05707,1.51748,-1.77564,-1.04006,1.64409,1.31772,-0.680927,-1.06541,0.609891,-0.660357,-1.73647,0.00691665,-1.1354,0.641686,-0.768494,-1.89997,0.136553,-1.06146,0.685085,-0.688373,-1.76372,-0.613819,-1.20887,-1.24919,-1.21814,-1.24002,-1.26883,1 +-0.675449,1.02971,0.748704,-0.614979,-0.975272,-0.685434,1.04773,0.802987,-0.637428,-1.03595,-0.670452,1.05579,0.955252,-0.638397,-1.08995,-0.648772,1.02141,0.85855,-0.629362,-1.05429,-0.376856,0.795771,-0.114794,0.318034,1.07891,-0.274396,0.519666,-0.134074,0.156134,0.932054,-0.240932,0.683805,-0.219892,0.263011,1.00659,0.887895,1.06131,1.11991,1.09848,1.07674,1.09484,1 +1.3468,-1.65953,-1.06598,2.50181,1.10387,1.45808,-1.67499,-1.08749,2.38384,1.16258,1.46396,-1.6465,-1.04925,1.58676,1.21154,1.3814,-1.59726,-1.00132,0.656289,1.23944,-0.874752,-1.02145,0.602565,-0.651391,-1.58724,-0.221851,-1.13301,0.626453,-0.765695,-1.99032,-0.115104,-1.04512,0.667423,-0.682536,-1.70589,-0.842937,-1.39841,-1.36745,-1.35694,-1.35421,-1.36429,1 +-0.546273,0.427931,-0.186799,-0.398824,-0.567652,-0.556777,0.444832,-0.139012,-0.424292,-0.574749,-0.549251,0.439125,-0.169947,-0.465432,-0.566553,-0.53205,0.409149,-0.230437,-0.485222,-0.540535,-0.376905,-0.0987116,0.563614,-0.385711,0.527632,0.179002,-0.415067,0.572999,-0.547352,0.273076,0.193156,-0.320593,0.575628,-0.477356,0.324661,0.549701,0.591121,0.440864,0.314236,0.249958,0.236634,1 +-0.604904,0.706554,0.441294,-0.580595,-0.791612,-0.614189,0.719458,0.519655,-0.599347,-0.849094,-0.61335,0.742996,0.640017,-0.619587,-0.922308,-0.59322,0.697038,0.508911,-0.638217,-0.888005,0.174145,0.628902,0.159102,0.151746,0.905737,0.721967,0.276165,-0.299014,0.0890365,0.641516,0.559466,0.360284,-0.186978,0.0938342,0.728553,0.703505,0.813072,0.860789,0.812972,0.763546,0.71512,1 +-0.509031,0.30588,-0.4491,-0.555538,0.0699358,-0.529251,0.352467,-0.441884,-0.509381,-0.0475668,-0.547992,0.441334,-0.307919,-0.335236,-0.317255,-0.543794,0.46999,-0.134354,-0.279403,-0.514748,0.222631,0.08195,0.601845,-0.315395,0.61337,0.55156,0.600006,-0.951004,0.51171,0.675549,0.460075,0.355646,-0.26604,0.0633591,0.698838,-0.0252876,-0.232356,-0.255155,-0.278824,-0.260043,-0.223131,1 +-0.69538,1.15158,1.02593,-0.644194,-1.08801,-0.703425,1.16204,1.08134,-0.667613,-1.11521,-0.686504,1.16458,1.22266,-0.642805,-1.15417,-0.665124,1.13683,1.1481,-0.61331,-1.11527,-0.148977,1.10363,-0.36685,0.627833,1.20469,0.0600007,0.780718,-0.453738,0.466432,1.03069,-0.00797601,0.934573,-0.560955,0.573539,1.10112,0.96005,1.18125,1.27649,1.27123,1.25302,1.27005,1 +-0.636888,0.734121,0.472679,-0.508511,-1.04843,-0.638647,0.711861,0.49039,-0.576708,-1.01833,-0.617168,0.649832,0.215554,-0.605414,-0.930015,-0.596068,0.599846,-0.0182611,-0.525173,-0.827105,-0.12159,0.156603,0.59232,-0.207348,0.698328,0.548442,-0.232546,0.59212,-0.430239,0.430309,0.46973,-0.0890464,0.487052,-0.331657,0.524363,0.973903,1.10446,0.986987,0.855001,0.77501,0.743836,1 +-0.61236,0.850774,0.482454,-0.584504,-0.71565,-0.618477,0.859479,0.526812,-0.602925,-0.720027,-0.605893,0.862038,0.626903,-0.601056,-0.750443,-0.585873,0.834971,0.532639,-0.582575,-0.722346,-0.253346,0.614059,-0.213275,0.167738,0.956382,0.0201702,0.267829,-0.150986,-0.0229887,0.751282,-0.10165,0.404662,-0.24534,0.100181,0.81734,0.609791,0.821558,0.850454,0.822567,0.822287,0.834961,1 +-0.359014,0.159182,-0.443093,-0.483993,-0.167708,-0.375376,0.188118,-0.400994,-0.436296,-0.238633,-0.412328,0.260942,-0.257134,-0.343842,-0.410689,-0.397186,0.191986,-0.14345,-0.503733,-0.480655,-0.129477,-0.0444581,0.773231,-0.36749,0.418225,-0.131166,0.14293,0.233276,-0.165049,0.524313,-0.199452,0.0990016,0.30736,-0.179752,0.544163,0.182421,0.047407,-0.0993714,-0.149797,-0.156253,-0.145899,1 +0.663645,-1.23931,-0.92023,1.20923,0.484413,0.763006,-1.30911,-0.954503,0.826835,0.558826,0.862618,-1.37842,-0.961889,0.0687463,0.758798,0.966007,-1.45295,-0.953913,-0.209977,0.935172,-0.584044,-0.985357,0.514818,-0.607133,-1.43035,0.107807,-1.07829,0.549451,-0.721897,-1.65082,0.119572,-0.961509,0.588702,-0.628472,-1.30793,-0.212506,-0.782227,-0.962968,-0.982159,-1.00765,-1.0383,1 +-0.427381,0.248988,-0.241122,-0.338444,-0.381603,-0.427401,0.238853,-0.22435,-0.376606,-0.348309,-0.410659,0.195194,-0.323222,-0.414167,-0.279583,-0.396486,0.16374,-0.375876,-0.452698,-0.216294,-0.248278,-0.172465,0.561415,-0.403652,0.354687,0.392968,-0.565703,0.59215,-0.599327,0.0435188,0.260802,-0.455707,0.598847,-0.514348,0.123789,0.34755,0.407051,0.2449,0.127837,0.0730842,0.0443183,0 +-0.195394,-0.334986,-0.671771,0.00852613,0.309818,-0.209387,-0.331468,-0.679297,0.0108747,0.325011,-0.212366,-0.369759,-0.722836,-0.0370219,0.370708,-0.207348,-0.414797,-0.739778,-0.109936,0.395526,-0.67427,-0.516007,0.578447,-0.519406,-0.0990513,-0.0189307,-0.829994,0.584754,-0.686254,-0.49019,-0.178672,-0.738828,0.638767,-0.603065,-0.436087,-0.257644,-0.369059,-0.50991,-0.568512,-0.582125,-0.593689,1 +-0.659147,0.911364,0.600526,-0.583464,-1.01771,-0.666573,0.917961,0.670871,-0.61304,-1.04659,-0.654769,0.910714,0.691242,-0.631581,-1.04753,-0.635769,0.87857,0.498776,-0.594979,-1.00504,-0.533449,0.567043,0.235805,0.0690364,0.966127,-0.329049,0.242111,0.276435,-0.104429,0.763986,-0.434267,0.406181,0.101171,0.00904571,0.867755,0.920669,1.10211,1.09557,1.03443,1.01281,1.0201,1 +-0.679837,1.11416,1.16799,-0.63184,-1.04792,-0.685054,1.10871,1.23201,-0.668843,-1.04714,-0.664854,1.07009,1.17,-0.662716,-1.02575,-0.641786,1.03064,0.871623,-0.589441,-0.944877,-0.165879,0.957461,-0.431669,0.51019,1.12992,0.154714,0.543534,-0.42961,0.281172,0.910085,-0.00666665,0.765985,-0.549341,0.477157,1.01925,0.884617,1.19975,1.30116,1.31191,1.29762,1.28247,0 +-0.71469,1.39907,1.96259,-0.692141,-1.14525,-0.719787,1.39328,1.96349,-0.721357,-1.10644,-0.702006,1.38833,1.97056,-0.669292,-1.14442,-0.684925,1.39051,1.98196,-0.626003,-1.2173,-0.00831591,1.59457,-0.830323,1.18184,1.36569,-0.416856,1.5678,-0.517916,1.26688,1.31022,-0.310648,1.69012,-0.855521,1.36366,1.37847,0.992334,1.25608,1.40711,1.50909,1.53209,1.53644,1 +0.967316,-1.62486,-1.04705,3.00387,0.711991,1.13674,-1.70483,-1.07812,1.58634,0.779708,1.30794,-1.75666,-1.04986,-0.937151,0.957261,1.54127,-1.82062,-1.01279,-1.25417,1.13123,-0.666794,-1.08466,0.597797,-0.663205,-1.83943,-0.0251776,-1.15127,0.63286,-0.770743,-2.0278,0.053244,-1.06527,0.681516,-0.688693,-1.78432,-0.366481,-1.16502,-1.2594,-1.25017,-1.23824,-1.24825,1 +2.12792,-1.70076,-1.08071,1.95664,2.21537,2.00134,-1.6644,-1.09974,2.30868,2.23351,1.93219,-1.64577,-1.05815,2.41223,2.17036,1.82651,-1.62215,-1.01088,1.89978,2.03809,2.22179,-1.03123,0.549781,-0.65355,-1.57155,1.70502,-1.07018,0.61144,-0.751892,-1.59392,1.60042,-1.00273,0.619017,-0.672001,-1.47141,-2.47161,-1.86825,-1.62112,-1.54034,-1.52139,-1.51652,1 +-0.332307,-0.253576,-0.799389,-0.0438382,0.0554429,-0.36736,-0.200762,-0.766895,0.034733,-0.0622196,-0.410529,-0.146159,-0.692611,-0.00321843,-0.214995,-0.415746,-0.127798,-0.643445,-0.211716,-0.269778,0.657388,-0.728113,0.559066,-0.615798,-0.32684,0.945457,-0.65379,0.635449,-0.664844,-0.0983318,0.690892,-0.710022,0.606963,-0.630971,-0.309549,0.0930944,-0.220202,-0.437776,-0.478156,-0.473368,-0.442183,1 +3.18843,-1.89301,-1.09043,1.74383,2.35616,3.0391,-1.84942,-1.10588,2.18625,2.34606,2.87005,-1.80133,-1.04529,2.10295,2.19503,2.76782,-1.78839,-0.995643,1.12883,2.06613,2.01281,-1.03229,0.546193,-0.65273,-1.66211,1.69128,-1.0443,0.576618,-0.741717,-1.72939,1.61229,-0.996952,0.596348,-0.666823,-1.74921,-2.60727,-1.93576,-1.64695,-1.55946,-1.53587,-1.52587,1 +-0.207209,-0.464433,-0.894822,0.121561,0.259903,-0.248328,-0.407191,-0.876221,0.247419,0.132635,-0.308399,-0.328339,-0.798069,0.24535,-0.0245481,-0.339364,-0.291677,-0.71596,-0.107657,-0.141621,0.644485,-0.803906,0.597517,-0.629752,-0.520805,1.06147,-0.744146,0.709832,-0.691861,-0.304611,0.77717,-0.805946,0.664755,-0.65398,-0.549651,-0.0670072,-0.456236,-0.650432,-0.692861,-0.667683,-0.630201,1 +-0.467091,0.30619,-0.334786,-0.486611,-0.157923,-0.473208,0.332117,-0.308139,-0.456057,-0.177583,-0.488841,0.385871,-0.216484,-0.358674,-0.271207,-0.518386,0.438835,-0.0918151,-0.354616,-0.463133,1.15902,-0.237544,0.277844,-0.372228,0.30778,0.805166,0.136963,0.294796,-0.111036,0.534768,0.953243,-0.158382,0.281712,-0.330278,0.384851,0.194685,0.100921,-0.0154325,-0.0707854,-0.075463,-0.0574918,1 +-0.481274,0.356635,-0.403982,-0.527591,0.202171,-0.492239,0.392928,-0.392238,-0.488731,0.215694,-0.499475,0.444252,-0.34738,-0.317525,0.164629,-0.523024,0.538406,-0.241852,-0.168577,-0.0320442,0.724525,0.160931,0.0849185,-0.129097,0.667483,0.165989,0.221881,0.491049,-0.00331833,0.635819,0.234016,0.264161,0.0976023,-0.0575317,0.745615,-0.16295,-0.229418,-0.284401,-0.307,-0.30595,-0.288799,1 +-0.639687,0.770033,0.283731,-0.559306,-0.790563,-0.647533,0.788674,0.320183,-0.57194,-0.810243,-0.641466,0.819679,0.373467,-0.553109,-0.87824,-0.629512,0.827205,0.454028,-0.610531,-0.974803,0.595688,0.187508,0.026747,-0.0340532,0.713481,0.0699558,0.283991,0.189707,0.00794616,0.795471,0.40844,0.194485,0.161191,-0.103979,0.741217,0.771952,0.77583,0.662695,0.600026,0.603574,0.63417,1 +-0.254515,-0.491759,-0.907556,0.101571,0.335316,-0.288828,-0.445742,-0.901269,0.258633,0.220232,-0.333407,-0.380944,-0.834542,0.375626,0.0491458,-0.349479,-0.364322,-0.75636,0.127248,-0.0791112,0.595528,-0.771072,0.599986,-0.628922,-0.460874,1.23464,-0.738209,0.672121,-0.698408,-0.325221,0.8377,-0.798609,0.659067,-0.655599,-0.540406,-0.12161,-0.558306,-0.739838,-0.782227,-0.785465,-0.774271,0 +-0.28604,-0.317495,-0.727024,0.109807,-0.191566,-0.284021,-0.321812,-0.723566,0.0917451,-0.210017,-0.294016,-0.351308,-0.747904,-0.0320643,-0.240392,-0.28648,-0.396916,-0.779109,0.0972225,-0.139532,1.08954,-0.757879,0.631881,-0.618927,-0.434757,1.6743,-0.831243,0.656518,-0.71434,-0.49108,1.473,-0.763196,0.698698,-0.644055,-0.446901,0.359924,-0.052764,-0.337525,-0.437746,-0.475597,-0.515268,1 +-0.536737,0.477986,-0.10159,-0.533718,-0.32719,-0.542314,0.495178,-0.0922449,-0.517167,-0.333377,-0.557107,0.554099,-0.0459376,-0.421813,-0.433928,-0.576578,0.630281,0.0634589,-0.399264,-0.629402,0.493219,-0.0206798,0.196074,-0.205249,0.565563,-0.354536,0.290118,0.442503,0.0117343,0.670452,0.0878971,0.145969,0.150566,-0.10243,0.659967,0.391988,0.228168,0.152965,0.112985,0.114284,0.14221,1 +0.607852,-0.508341,-0.539326,-0.2035,0.684775,0.61351,-0.504223,-0.540945,-0.187468,0.69473,0.578137,-0.476977,-0.533209,-0.26511,0.666284,0.537697,-0.464962,-0.51135,-0.512429,0.621986,0.794681,-0.625913,0.507342,-0.498936,-0.441164,-0.259283,-0.561905,0.533489,-0.515847,-0.419345,0.107288,-0.576478,0.578897,-0.506292,-0.369029,-0.788234,-0.615938,-0.604394,-0.607203,-0.576788,-0.543964,1 +0.809434,-1.57514,-1.09159,3.07657,1.10554,0.855911,-1.60098,-1.11568,3.10048,1.10747,0.909615,-1.6434,-1.08691,2.94558,1.20298,0.951864,-1.6548,-1.02662,0.711282,1.29857,0.955832,-1.06508,0.589381,-0.663885,-1.64366,1.62637,-1.13449,0.626143,-0.770783,-1.79628,1.32687,-1.0659,0.672081,-0.690842,-1.72157,-0.927046,-1.34977,-1.37002,-1.34134,-1.34299,-1.36509,0 +-0.310368,-0.257454,-0.815731,-0.143949,0.392768,-0.34776,-0.192496,-0.801188,-0.0323742,0.324631,-0.382213,-0.113884,-0.71456,0.0811902,0.179552,-0.399314,-0.0676071,-0.625024,-0.0131635,0.0474868,1.16,-0.683625,0.434267,-0.541245,-0.275475,1.07221,-0.523194,0.487841,-0.525153,0.0240483,1.06189,-0.65355,0.515977,-0.545593,-0.270318,-0.212876,-0.548331,-0.664255,-0.690052,-0.683585,-0.670372,1 +-0.628183,0.821928,0.239343,-0.579756,-0.655599,-0.640336,0.852363,0.296395,-0.584604,-0.709203,-0.629042,0.884737,0.475247,-0.557547,-0.799319,-0.611601,0.873242,0.630111,-0.620196,-0.824286,-0.873882,0.309499,-0.0874871,-0.0457175,0.786995,-0.630571,0.439295,-0.354486,0.136843,0.8576,-0.789673,0.369539,-0.22417,0.0354528,0.790413,0.588232,0.704315,0.682016,0.6527,0.652161,0.678668,1 +-0.614979,0.993014,0.747914,-0.634839,-0.69344,-0.620866,1.00243,0.789943,-0.649542,-0.685674,-0.607722,1.01397,0.922818,-0.602545,-0.744286,-0.591171,1.00274,1.07615,-0.616588,-0.795231,-0.209917,0.726005,-0.437056,0.333947,0.998641,-0.0356725,0.883877,-0.876491,0.677518,1.01106,-0.14244,0.783686,-0.644814,0.476187,0.994473,0.541815,0.815551,0.889195,0.901229,0.903837,0.928825,0 +-0.586333,0.624274,0.0813802,-0.48917,-0.662695,-0.597497,0.638008,0.135753,-0.514208,-0.702616,-0.584024,0.617218,0.135823,-0.553909,-0.711492,-0.559646,0.575298,-0.010355,-0.50996,-0.621186,-0.737619,-0.0188407,0.193395,-0.289898,0.574989,-0.227139,-0.110956,0.0793511,-0.308829,0.515978,-0.397825,-0.0546832,0.166269,-0.281092,0.513858,0.587692,0.722187,0.640816,0.557887,0.55163,0.561995,0 +-0.544443,0.519306,0.301622,-0.560355,-0.723486,-0.552769,0.544304,0.34723,-0.575368,-0.766215,-0.556328,0.580736,0.443953,-0.579206,-0.803307,-0.549431,0.562834,0.434897,-0.641166,-0.77523,-0.316845,0.330288,0.00857587,0.0277965,0.682956,0.36867,0.175184,-0.514708,0.195754,0.486702,0.118542,0.216114,-0.131585,0.0367921,0.59147,0.758828,0.730503,0.730692,0.699657,0.650242,0.61235,1 +-0.616028,0.844687,0.334117,-0.615848,-0.553609,-0.626653,0.868655,0.373737,-0.617218,-0.567192,-0.620306,0.912693,0.553949,-0.547882,-0.652101,-0.609731,0.934132,0.797639,-0.562694,-0.767474,-0.685694,0.51129,-0.381193,0.153855,0.851443,-0.494718,0.79736,-0.827505,0.503424,0.943658,-0.71416,0.609292,-0.560016,0.272177,0.861158,0.48998,0.599207,0.601715,0.590361,0.59321,0.606323,1 +0.034653,-0.573379,-0.71507,0.237744,0.273706,0.0516048,-0.59158,-0.73463,0.131616,0.294726,0.0712352,-0.644055,-0.788584,-0.0922848,0.385041,0.114314,-0.704185,-0.790663,-0.519825,0.493039,-0.77705,-0.771532,0.584724,-0.584714,-0.607083,0.126158,-0.925267,0.568781,-0.702926,-0.831043,-0.137333,-0.831733,0.620646,-0.625214,-0.732471,-0.175294,-0.411258,-0.565583,-0.640496,-0.661306,-0.676539,0 +-0.594089,0.523204,0.208598,-0.429989,-0.943558,-0.595818,0.505483,0.218503,-0.525023,-0.925687,-0.579446,0.461914,0.0122939,-0.616648,-0.848105,-0.560656,0.421563,-0.175424,-0.57093,-0.757719,-0.381723,-0.212856,0.512199,-0.390259,0.38751,0.315466,-0.426241,0.546023,-0.525233,0.240013,0.106878,-0.298584,0.541245,-0.442493,0.323631,0.922128,0.938091,0.75647,0.616378,0.602665,0.617258,1 +-0.663905,1.16143,1.33461,-0.672451,-0.955172,-0.666943,1.15378,1.34436,-0.69376,-0.916821,-0.656069,1.15306,1.35669,-0.628312,-0.930015,-0.648323,1.15442,1.48203,-0.596188,-0.992454,0.0708054,1.16933,-0.913373,0.867465,1.1527,0.0832093,1.33114,-1.37547,1.20704,1.10701,-0.0762426,1.27658,-1.21034,1.07908,1.16809,0.843407,1.05285,1.13616,1.16209,1.17092,1.17311,1 +-0.194255,-0.3874,-0.651021,0.106858,0.170027,-0.192875,-0.402123,-0.677378,0.0302952,0.217273,-0.173355,-0.453888,-0.741327,-0.135004,0.304071,-0.14214,-0.507272,-0.764296,-0.318054,0.361663,-0.450499,-0.725545,0.557167,-0.569441,-0.424562,0.438545,-0.876331,0.538526,-0.688603,-0.587372,0.248448,-0.782927,0.593559,-0.604944,-0.559126,-0.0418795,-0.32549,-0.514858,-0.57196,-0.597138,-0.606143,0 +-0.281762,-0.108497,-0.0643185,-0.514568,0.00371819,-0.288978,-0.0850783,-0.0158623,-0.51149,-0.0318445,-0.342462,0.00432771,0.0537736,-0.481244,-0.14294,-0.365431,-0.0233487,-0.0813902,-0.525143,-0.284111,-0.105968,0.156024,0.136853,-0.12181,0.332268,0.83845,0.0235485,-0.372348,0.0671772,0.0690963,0.350878,-0.0371018,-0.152195,-0.0646482,0.191846,0.10271,-0.123829,-0.201731,-0.174964,-0.189927,-0.208188,1 +-0.658408,0.893183,0.929295,-0.574448,-1.10507,-0.663345,0.882098,0.982209,-0.642036,-1.0927,-0.643655,0.822057,0.723986,-0.688803,-1.03867,-0.618317,0.768454,0.354456,-0.602495,-0.94008,-0.0529141,0.363882,0.0101451,0.0548633,0.81744,0.491509,0.0736339,-0.0289359,-0.10225,0.645974,0.32803,0.269628,-0.115483,0.0445783,0.738788,0.99982,1.18103,1.21005,1.18861,1.17019,1.16043,1 +-0.646194,0.903228,0.702466,-0.607512,-0.805675,-0.656129,0.91835,0.741437,-0.629752,-0.800398,-0.649382,0.93956,0.806775,-0.615309,-0.85871,-0.636159,0.937671,0.757199,-0.602705,-0.915772,-0.0803606,0.381603,-0.151866,0.0720649,0.804586,-0.0113744,0.626963,-0.257824,0.329709,0.971704,-0.0472568,0.563164,-0.296275,0.264551,0.906806,0.759978,0.828704,0.862528,0.869754,0.869894,0.888465,1 +-0.685464,1.15879,1.34852,-0.655529,-1.02549,-0.692031,1.16122,1.36199,-0.684385,-1.00843,-0.677918,1.16181,1.35178,-0.650132,-1.03649,-0.661126,1.1541,1.30604,-0.621196,-1.07124,0.109416,0.886066,-0.590471,0.57186,1.06588,-0.00333833,1.02183,-0.726284,0.83861,1.12069,0.012384,1.11135,-0.8586,0.896691,1.13963,0.89866,1.09307,1.19094,1.22767,1.22804,1.24019,1 +0.127658,-0.725505,-0.717269,0.282032,0.556747,0.172186,-0.773621,-0.762007,0.188408,0.617347,0.216624,-0.83798,-0.844077,0.218973,0.771662,0.242391,-0.875681,-0.845606,0.220602,0.896691,-0.0342732,-0.726794,0.49088,-0.520255,-0.635309,0.752192,-0.957181,0.514348,-0.679907,-0.983089,0.562645,-0.850344,0.539636,-0.574379,-0.81686,-0.472978,-0.648013,-0.759058,-0.787714,-0.787175,-0.782817,0 +-0.699717,1.2566,1.37494,-0.672091,-1.04468,-0.705205,1.25348,1.3973,-0.69509,-1.02165,-0.689982,1.24995,1.41021,-0.634969,-1.05843,-0.67411,1.24785,1.46846,-0.596178,-1.12543,0.0659377,1.27326,-0.802787,0.856801,1.22305,-0.202481,1.26376,-0.752352,0.935702,1.18142,-0.278274,1.30584,-0.893263,0.973763,1.2422,0.920429,1.12639,1.22721,1.26572,1.26876,1.27394,1 +-0.669652,1.06503,0.789963,-0.655169,-0.766585,-0.677358,1.07728,0.807454,-0.665504,-0.766974,-0.668163,1.11171,0.946557,-0.589371,-0.846326,-0.658658,1.14028,1.13265,-0.553889,-0.973333,0.0357725,0.997882,-0.649022,0.578227,1.09785,-0.252866,1.15701,-0.77522,0.821388,1.12022,-0.278344,1.12542,-0.811233,0.737949,1.14363,0.688693,0.799869,0.853322,0.851713,0.843187,0.860109,1 +-0.631651,0.779398,0.915972,-0.567992,-1.0423,-0.634009,0.758679,0.953383,-0.640087,-1.0137,-0.61223,0.693011,0.590721,-0.678578,-0.923788,-0.59207,0.626983,0.180562,-0.600566,-0.865036,0.219972,0.419855,0.132455,0.159732,0.793262,0.75556,0.0128237,0.150996,-0.0942738,0.558897,0.650232,0.226759,0.0367921,0.0776621,0.659657,0.935712,1.09142,1.09387,1.01573,0.949505,0.916461,1 +-0.581565,0.559206,0.629282,-0.503403,-0.971924,-0.576538,0.511909,0.584534,-0.602245,-0.951074,-0.553069,0.432998,0.226239,-0.693141,-0.841638,-0.526672,0.362103,-0.0761627,-0.63314,-0.69498,0.154934,0.100081,0.353157,0.00143944,0.529571,0.77655,-0.293726,0.379374,-0.287809,0.267429,0.718708,-0.044818,0.145379,0.0017193,0.394727,0.894292,0.987897,0.863717,0.743096,0.69446,0.643145,1 +-0.672091,0.978151,0.79748,-0.633729,-0.887945,-0.680707,0.996292,0.812072,-0.649632,-0.896501,-0.67301,1.04182,0.887805,-0.597547,-0.976712,-0.659727,1.06841,1.07471,-0.610811,-1.09783,0.497417,0.652461,-0.42788,0.361173,0.954223,0.249908,0.87908,-0.600086,0.594119,1.03289,0.253966,0.822537,-0.59161,0.557487,1.02895,0.793811,0.895032,0.868945,0.834891,0.83715,0.822617,1 +-0.370759,0.0180711,-0.369949,-0.210727,-0.0823397,-0.376176,0.0158922,-0.369609,-0.28694,-0.0456278,-0.358305,-0.0348031,-0.475287,-0.414677,0.0188906,-0.332637,-0.0913554,-0.544433,-0.51,0.0659478,0.126568,-0.410539,0.522674,-0.446981,0.109706,0.725745,-0.712051,0.560545,-0.629072,-0.213755,0.639947,-0.579246,0.546013,-0.513069,-0.14333,0.117582,0.0405803,-0.0873872,-0.180602,-0.219333,-0.233716,0 +-0.701117,1.32364,1.78919,-0.675399,-1.03696,-0.707194,1.31824,1.82373,-0.709573,-1.01458,-0.689522,1.2981,1.78715,-0.678718,-1.03857,-0.67451,1.28982,1.60398,-0.630111,-1.09384,0.216024,1.24491,-0.67273,0.832673,1.2157,-0.340623,1.23447,-0.283031,0.885417,1.24648,-0.126698,1.38067,-0.63357,0.967606,1.26994,0.882878,1.16696,1.34663,1.43335,1.45336,1.45548,1 +-0.657978,0.854702,0.495987,-0.567112,-1.03674,-0.664914,0.855111,0.564993,-0.598397,-1.03801,-0.645784,0.815601,0.437046,-0.569901,-0.972534,-0.623615,0.784476,0.239453,-0.472179,-0.897651,0.180132,0.34714,0.131526,-0.000699511,0.821628,0.646264,0.155604,-0.370239,0.237124,0.667094,0.57224,0.329129,-0.366081,0.32667,0.738788,0.96037,1.10405,1.06012,0.965687,0.903018,0.876361,1 +-0.657628,0.970075,0.710183,-0.621665,-0.890874,-0.668752,0.99989,0.748943,-0.638937,-0.914602,-0.658687,1.04322,0.811103,-0.595598,-0.973913,-0.643775,1.06034,0.748404,-0.53188,-0.967746,-0.0529141,0.65322,-0.353097,0.456107,0.973114,-0.277764,0.69369,-0.330068,0.527992,1.04841,-0.112485,0.790503,-0.485382,0.609132,1.02868,0.826475,0.918181,0.892933,0.910584,0.912863,0.948156,1 +-0.657338,0.83854,0.30692,-0.608002,-0.604794,-0.671531,0.884547,0.322712,-0.607843,-0.670362,-0.665984,0.958141,0.468381,-0.535208,-0.798709,-0.655639,1.0019,0.643475,-0.525942,-0.921599,0.152016,0.425192,-0.0196803,0.149057,0.87854,-0.214595,0.77527,0.128597,0.282432,1.02542,-0.115593,0.618587,-0.00695651,0.189447,0.991594,0.624224,0.603675,0.557517,0.547222,0.539966,0.567962,1 +-0.71485,1.36548,1.62231,-0.685224,-1.11092,-0.720527,1.36577,1.66261,-0.710462,-1.08246,-0.702386,1.36649,1.73807,-0.65407,-1.12504,-0.684135,1.36575,1.81061,-0.614089,-1.20538,-0.034733,1.43131,-0.662545,0.983239,1.32506,-0.412598,1.52392,-0.466472,1.18369,1.30737,-0.210977,1.59885,-0.809554,1.17397,1.34454,0.981569,1.21972,1.36036,1.43131,1.45151,1.4683,1 +-0.705545,1.22519,1.30651,-0.657678,-1.18046,-0.711761,1.22553,1.33813,-0.684725,-1.1754,-0.692491,1.21564,1.4041,-0.65382,-1.20309,-0.670242,1.17987,1.42114,-0.650222,-1.18256,-0.0599806,0.984658,-0.435657,0.564864,1.15643,0.0824897,1.04198,-0.789733,0.79638,1.1195,0.0726445,1.06768,-0.712741,0.739428,1.15149,1.02219,1.29467,1.35899,1.38518,1.3921,1.40459,1 +-0.648662,1.11456,1.19063,-0.658217,-0.811203,-0.654399,1.10971,1.20564,-0.680287,-0.781277,-0.638317,1.10099,1.22285,-0.626653,-0.806035,-0.621945,1.09274,1.30903,-0.608112,-0.850973,0.241382,0.918151,-0.680637,0.558717,1.05939,0.214575,1.12888,-1.11481,0.974873,1.09303,0.213655,1.09675,-1.00198,0.872173,1.10287,0.652031,0.942179,1.0463,1.08402,1.08509,1.09307,0 +0.610181,-1.10928,-0.875292,-0.155454,0.795011,0.685165,-1.1391,-0.893722,-0.0092355,0.819888,0.659647,-1.0733,-0.836421,0.264221,0.879889,0.522944,-0.916411,-0.657458,0.230277,0.785386,-0.202441,-0.440474,0.608192,-0.287879,-0.874012,0.605604,-0.627513,0.395656,-0.28655,-1.1119,0.604674,-0.65361,0.272337,-0.271077,-0.984698,-0.547452,-1.07595,-1.0873,-1.06109,-1.02268,-1.00012,0 +1.02587,-1.5947,-1.0784,2.6781,0.939,1.06045,-1.59857,-1.09857,2.6199,0.966307,1.0473,-1.56128,-1.06445,2.35145,0.951904,1.11066,-1.55239,-0.998521,1.05485,1.02736,-1.11768,-1.02722,0.617957,-0.655809,-1.4933,-0.491,-1.12974,0.644864,-0.767754,-1.86326,-0.383192,-1.06003,0.686924,-0.687913,-1.76242,-0.520445,-1.26101,-1.3181,-1.28229,-1.28835,-1.28144,1 +0.534159,-1.27624,-0.967886,1.69456,0.417875,0.61364,-1.32546,-0.992774,0.942389,0.42918,0.691891,-1.4036,-1.00572,-0.12348,0.624984,0.795411,-1.47213,-0.990105,-0.413348,0.880459,-0.719128,-1.026,0.628522,-0.65365,-1.48726,-0.0969125,-1.11401,0.655959,-0.765145,-1.70548,-0.240172,-1.01206,0.71572,-0.679957,-1.43276,-0.141271,-0.778399,-0.969995,-1.00369,-1.02808,-1.04872,1 +0.404512,-1.08182,-0.87878,0.229518,0.830653,0.506202,-1.13047,-0.892293,0.3475,0.872313,0.526452,-1.10271,-0.882548,0.557077,0.994113,0.361543,-0.954383,-0.794161,0.499765,0.89858,-0.231836,-0.628082,0.69511,-0.582095,-0.875641,0.484853,-0.906986,0.681346,-0.731932,-1.16047,0.374417,-0.875042,0.666074,-0.643265,-0.988556,-0.641366,-1.03342,-1.05158,-1.02176,-1.01158,-0.990555,0 +1.89006,-1.9855,-1.10083,4.81319,1.18358,2.11148,-2.0598,-1.13295,2.6894,1.22853,2.25685,-2.1112,-1.11458,2.67696,1.49379,2.38175,-2.12006,-1.06037,1.35519,1.67828,-0.949415,-1.11791,0.594889,-0.665514,-2.24216,-0.0419094,-1.1765,0.634229,-0.772312,-2.47298,-0.246529,-1.10864,0.680487,-0.692521,-2.27718,-0.868795,-1.44959,-1.42462,-1.40011,-1.44497,-1.47299,1 +1.14814,-1.57599,-1.04406,2.09344,0.961919,1.33195,-1.63713,-1.0751,2.12561,1.0298,1.47349,-1.66723,-1.06334,2.53285,1.20408,1.53746,-1.64003,-1.01271,2.34985,1.30623,-1.28155,-1.04521,0.565093,-0.647123,-1.63536,-0.465382,-1.11117,0.584254,-0.752282,-1.87902,-0.566383,-0.984918,0.588512,-0.655489,-1.51908,-0.654769,-1.24773,-1.2889,-1.273,-1.27039,-1.2892,1 +0.310728,-0.885936,-0.825736,-0.173595,0.702706,0.382443,-0.93947,-0.853262,-0.041,0.77466,0.379554,-0.921169,-0.819919,0.234165,0.848254,0.210207,-0.767055,-0.691352,0.315096,0.717249,-0.607653,-0.335366,0.890524,-0.454687,-0.566712,0.362673,-0.641346,0.893572,-0.634949,-0.854712,0.0927947,-0.730023,0.685564,-0.567022,-0.708683,-0.476956,-0.953403,-1.01437,-0.993633,-0.987586,-0.973173,0 +0.786155,-1.43681,-1.02481,1.87475,0.687723,0.933313,-1.48652,-1.05441,1.78879,0.73446,1.03992,-1.50714,-1.02439,1.71447,0.810183,1.23998,-1.56232,-0.925627,0.652201,0.890244,-0.645644,-1.00043,0.648123,-0.649862,-1.4602,0.137803,-1.10569,0.666983,-0.764945,-1.72752,0.215655,-1.0624,0.690472,-0.689962,-1.76457,-0.350928,-1.0099,-1.10636,-1.13059,-1.13004,-1.16141,1 +-0.472789,0.865226,0.953813,-0.669302,-0.5716,-0.473058,0.865426,0.993244,-0.682556,-0.536217,-0.483563,0.885646,1.18036,-0.608342,-0.560336,-0.51147,0.89806,1.43162,-0.577517,-0.643185,0.0103749,1.33395,-2.03148,1.52899,0.973434,0.124779,1.37293,-2.07347,1.49172,0.89814,0.0855482,1.04496,-1.58688,1.07719,0.884497,0.417695,0.737209,0.844037,0.911594,0.954722,0.988736,1 +-0.648503,0.907196,0.595309,-0.622835,-0.825486,-0.656139,0.927176,0.628822,-0.63393,-0.847105,-0.649472,0.964748,0.810133,-0.59274,-0.886836,-0.639307,0.969795,0.911963,-0.590781,-0.908585,0.890434,0.854902,-1.51055,1.19035,0.883867,0.339274,0.722056,-0.603774,0.597837,0.970345,0.704005,0.65414,-0.865926,0.646684,0.873362,0.77567,0.868615,0.843147,0.830014,0.829294,0.856621,1 +-0.616258,0.836031,0.702146,-0.61309,-0.747164,-0.619237,0.83641,0.73589,-0.63258,-0.739998,-0.609282,0.833312,0.779208,-0.601845,-0.722246,-0.595828,0.818129,0.745515,-0.579036,-0.717769,1.07586,0.738259,-1.4112,0.976772,0.769314,0.928246,0.535178,-1.10239,0.649162,0.791942,1.02904,0.610141,-1.17286,0.790483,0.748623,0.678538,0.805646,0.812012,0.812672,0.804616,0.814911,0 +-0.445722,0.176674,0.14286,-0.412778,-0.583054,-0.440784,0.14381,0.123939,-0.500775,-0.537717,-0.417146,0.0736438,-0.16323,-0.52999,-0.389789,-0.374836,0.0162819,-0.343172,-0.392708,-0.208828,0.649912,-0.270557,-0.188318,-0.194814,-0.0128635,1.1383,-0.412748,-0.186719,-0.340014,-0.0212495,0.994183,-0.301952,-0.115943,-0.237733,-0.0347031,0.648622,0.468301,0.310468,0.256754,0.26587,0.282961,1 +0.69377,-1.40641,-1.02113,2.2118,0.757899,0.808374,-1.47003,-1.05151,1.65919,0.794501,0.927626,-1.54873,-1.05098,0.984518,1.02447,1.00968,-1.59568,-1.02258,0.747874,1.16396,1.13235,-1.06947,0.569091,-0.657618,-1.77192,1.494,-1.10705,0.61163,-0.764566,-1.59273,1.42716,-1.04393,0.650142,-0.682326,-1.6462,-0.507162,-1.09391,-1.21454,-1.21132,-1.22179,-1.23802,0 +0.840309,-1.11215,-0.946407,-0.0417892,2.2151,0.794721,-1.09081,-0.943568,0.14215,2.26162,0.799988,-1.08821,-0.888225,0.471699,2.28096,0.73486,-1.02421,-0.832353,0.783506,2.1999,1.78821,-0.915372,0.440434,-0.580526,-1.18244,1.31693,-0.290278,0.602225,-0.560316,-0.475017,1.36269,-0.779239,0.491869,-0.579626,-0.645534,-2.59438,-1.76142,-1.46103,-1.37924,-1.3593,-1.35274,1 +4.01974,-1.70516,-0.946637,-0.208817,2.57659,3.92693,-1.69693,-0.942029,-0.0528142,2.65001,3.94378,-1.68852,-0.869764,0.280513,2.63962,3.97478,-1.65387,-0.789523,0.59159,2.65804,1.83041,-0.904887,0.343842,-0.523164,-1.63879,2.42108,-0.0722047,-0.59134,-0.220512,-1.36525,1.89556,-0.677448,0.241092,-0.481484,-1.22363,-3.09947,-1.91894,-1.53902,-1.42654,-1.395,-1.37688,1 +3.66619,-1.71115,-0.990675,0.0114347,2.3434,3.62451,-1.70437,-0.989895,0.232786,2.40155,3.66394,-1.70456,-0.934713,0.65392,2.41871,3.70408,-1.71622,-0.879459,1.05354,2.40808,0.514418,-0.910984,0.454428,-0.625134,-1.58733,1.50815,-0.546063,-0.114124,-0.506192,-1.44068,0.686604,-0.785006,0.402683,-0.604764,-1.47132,-2.80944,-1.81663,-1.49309,-1.42139,-1.41015,-1.4044,1 +4.79341,-2.00269,-0.998072,0.210657,2.56507,4.76774,-2.00708,-0.995033,0.447051,2.66826,4.91606,-2.01925,-0.951294,0.852623,2.75208,5.13724,-2.03668,-0.912053,1.31009,2.8236,1.22898,-0.960919,0.464912,-0.620896,-1.81995,2.44945,-0.689862,-0.0271768,-0.528731,-1.91616,1.61767,-0.845796,0.404712,-0.596338,-1.73746,-3.03944,-1.95362,-1.5824,-1.49674,-1.4862,-1.47575,1 +7.3308,-2.4933,-1.11109,0.554669,3.11333,7.04209,-2.48008,-1.12082,0.967217,3.17731,7.11837,-2.46526,-1.04572,1.5888,3.20268,7.30667,-2.47414,-0.961719,1.89915,3.26643,2.12045,-1.04117,0.493009,-0.63372,-2.46309,3.23523,-0.780058,-0.0402304,-0.501694,-2.39335,2.33931,-0.955662,0.494458,-0.63377,-2.37122,-3.8665,-2.22862,-1.79351,-1.67252,-1.63743,-1.62276,1 +-0.615729,1.14287,1.22879,-0.702556,-0.792912,-0.616868,1.14539,1.22028,-0.71594,-0.786355,-0.618017,1.19914,1.60428,-0.627773,-0.841008,-0.630941,1.23774,2.07288,-0.576788,-0.952064,-0.96063,1.98794,-1.64656,1.6471,1.34025,-1.04331,2.07608,-1.6971,1.94703,1.20079,-1.11339,1.98107,-1.82362,1.73031,1.28359,0.666584,0.910175,1.12047,1.25403,1.31534,1.34736,1 +-0.675299,1.36452,2.06928,-0.716589,-0.964128,-0.676479,1.35574,2.02302,-0.738918,-0.940939,-0.664095,1.37022,2.31176,-0.663575,-0.934433,-0.657408,1.37604,2.55165,-0.600306,-0.971964,-0.440764,2.52055,-2.59286,2.68408,1.48358,-0.683955,2.23293,-2.35527,2.6422,1.34145,-0.600826,2.431,-2.82334,2.80151,1.44572,0.762087,1.14637,1.43464,1.61509,1.68934,1.70569,0 +-0.47033,0.298734,-0.201411,-0.414397,-0.392518,-0.482554,0.334076,-0.157733,-0.422983,-0.473168,-0.481234,0.337854,-0.127957,-0.519096,-0.526972,-0.472069,0.28531,-0.180052,-0.677048,-0.53171,-1.41398,-0.276055,0.652141,-0.437955,0.322982,-1.84504,-0.249918,0.44838,-0.395806,0.352288,-1.40364,-0.173725,0.478276,-0.370978,0.386471,0.442393,0.314566,0.243301,0.160661,0.131815,0.133765,1 +-0.685355,1.15791,1.14165,-0.634649,-1.09789,-0.689572,1.14801,1.13993,-0.664785,-1.06219,-0.667313,1.11066,0.819449,-0.59261,-0.994863,-0.646154,1.08314,0.569621,-0.466502,-0.907496,-0.300813,0.828285,0.0295056,0.364812,1.10783,-0.670102,0.703286,0.336855,0.404072,1.05673,-0.199102,0.706004,0.0121341,0.365621,1.05762,0.917801,1.27331,1.35567,1.2873,1.25328,1.20726,0 +-0.657128,0.841648,0.563724,-0.559116,-1.02737,-0.658747,0.824456,0.525193,-0.588592,-1.02539,-0.637578,0.798089,0.384002,-0.576868,-0.974233,-0.621126,0.778589,0.311418,-0.586793,-0.943218,-0.59142,0.301912,0.917421,-0.145129,0.790963,-1.23034,0.118092,0.924547,-0.146138,0.723526,-0.413078,0.206309,0.724805,-0.160231,0.765315,0.977072,1.11022,1.04995,0.964947,0.930304,0.901818,1 +0.166299,-0.807935,-0.840659,0.51157,0.503953,0.172995,-0.830293,-0.869334,0.482164,0.508011,0.170756,-0.851633,-0.890334,0.423603,0.559216,0.135064,-0.79703,-0.823577,0.0163721,0.526522,-0.499396,-0.81726,0.690772,-0.623195,-0.741517,-0.596028,-0.979141,0.702416,-0.748344,-0.990315,0.101011,-0.908865,0.726105,-0.667583,-0.928046,-0.314466,-0.657958,-0.774861,-0.771882,-0.759328,-0.760468,0 +-0.727714,1.62083,3.19123,-0.724005,-1.42605,-0.730842,1.59858,3.185,-0.759528,-1.39924,-0.709063,1.55349,3.00033,-0.699048,-1.31929,-0.688933,1.52098,2.45578,-0.586553,-1.2392,-0.131416,2.67375,-1.97224,2.6782,1.57716,-0.412658,2.21059,-1.7917,2.45535,1.44009,-0.134844,2.46576,-2.31629,2.63307,1.45304,1.14742,1.7102,2.1423,2.33828,2.36399,2.34037,1 +-0.670862,0.91862,0.861199,-0.59181,-1.16428,-0.669792,0.880949,0.81645,-0.626074,-1.11569,-0.647063,0.828504,0.435907,-0.562674,-1.01078,-0.628532,0.785505,0.14259,-0.399005,-0.885197,-0.283401,0.441124,0.522834,0.065678,0.85834,-0.51115,0.324111,0.701197,0.0638188,0.793642,-0.028346,0.355436,0.475527,0.0387812,0.784976,1.04842,1.22323,1.14237,1.02098,0.985667,0.954942,1 +-0.636948,1.39912,2.80279,-0.732911,-1.04122,-0.63264,1.38582,2.74648,-0.759648,-0.994353,-0.627393,1.39179,2.95924,-0.681386,-0.978731,-0.63334,1.3957,2.93223,-0.584374,-1.0021,-0.287809,2.98684,-3.20583,3.38392,1.50938,-0.463283,2.83079,-2.95118,3.50054,1.37393,-0.464023,2.95507,-3.38896,3.53345,1.496,0.815101,1.24097,1.5937,1.82377,1.95064,1.99225,1 +-0.730792,1.65054,3.65085,-0.739318,-1.38623,-0.733811,1.64668,3.53181,-0.771502,-1.3416,-0.713411,1.64449,3.61795,-0.702046,-1.30125,-0.69538,1.63905,3.48028,-0.610041,-1.27847,-0.240902,3.39169,-3.12295,3.98931,1.65319,-0.688523,2.82491,-2.36196,3.55253,1.56676,-0.520415,3.37777,-3.65375,4.38982,1.62123,1.16249,1.60579,2.00307,2.29335,2.41204,2.44663,1 +-0.593929,1.2326,2.72597,-0.738648,-0.886246,-0.582415,1.22876,2.61225,-0.763017,-0.846925,-0.580896,1.27488,2.84685,-0.672341,-0.854802,-0.599656,1.31541,3.17947,-0.574659,-0.916911,0.22402,3.42958,-5.24255,5.12975,1.3716,-0.00147924,3.13964,-4.67467,4.89626,1.33015,0.0240483,3.415,-5.60553,5.55011,1.38813,0.695809,1.02431,1.31527,1.57286,1.77742,1.83888,1 +-0.744855,1.68921,2.54068,-0.727574,-1.43144,-0.748104,1.68279,2.41786,-0.752032,-1.38686,-0.721057,1.6687,2.06807,-0.646863,-1.27945,-0.699408,1.67947,1.85905,-0.505872,-1.21411,-1.05173,3.04716,-0.723446,2.9924,1.78457,-2.06901,2.41449,0.192476,2.6886,1.61479,-1.52782,3.17371,-1.35709,3.52659,1.77083,1.1824,1.68092,1.95773,2.03483,2.04544,2.06165,0 +-0.610281,0.781567,0.262202,-0.559596,-0.683185,-0.617298,0.787524,0.286769,-0.568382,-0.681456,-0.601915,0.767584,0.133115,-0.478226,-0.643365,-0.585823,0.756709,0.0465072,-0.360813,-0.605583,-0.83737,0.301842,0.312117,-0.164749,0.794301,-1.14702,0.261092,0.677978,-0.110206,0.793472,-0.802447,0.159772,0.436257,-0.22464,0.741577,0.609072,0.749663,0.701007,0.613979,0.569571,0.55051,0 +-0.553679,0.53049,-0.0050475,-0.487671,-0.516237,-0.556178,0.53052,-0.00663686,-0.48982,-0.508131,-0.542794,0.517586,-0.0810504,-0.439905,-0.501485,-0.526012,0.484383,-0.125669,-0.418215,-0.465682,-0.932154,0.107358,0.473278,-0.259393,0.598667,-0.952264,-0.126068,0.683025,-0.34778,0.505743,-0.661086,-0.126218,0.599257,-0.360993,0.501474,0.486102,0.520116,0.402943,0.299763,0.269948,0.237384,0 +-0.450869,0.105248,-0.281552,-0.3256,-0.604084,-0.459565,0.105768,-0.32642,-0.332547,-0.620076,-0.476207,0.112135,-0.365651,-0.400894,-0.614519,-0.474538,0.114494,-0.34784,-0.584694,-0.587232,-1.93517,-0.393857,0.77591,-0.463123,0.0858082,-2.14861,-0.51137,0.864596,-0.562934,0.0567323,-1.65959,-0.397186,0.827835,-0.48955,0.127477,0.698478,0.478616,0.214035,0.0923847,0.055183,0.0444583,1 +-0.677059,1.09121,0.971904,-0.645434,-0.954922,-0.685244,1.10271,1.03178,-0.666364,-0.968706,-0.67316,1.10373,1.04884,-0.614199,-0.970035,-0.658278,1.09593,0.933863,-0.540056,-0.968656,-1.04103,1.01351,-0.390189,0.412298,1.12392,-1.08374,0.87851,-0.260163,0.456567,1.0391,-1.02008,0.83872,-0.374776,0.350259,1.05637,0.81682,1.08359,1.21807,1.24155,1.2206,1.20439,0 +-0.679347,0.930365,0.487841,-0.577807,-1.00798,-0.684914,0.925987,0.495707,-0.595698,-0.991724,-0.665574,0.894212,0.280613,-0.515458,-0.947976,-0.645774,0.885186,0.215335,-0.435637,-0.911584,-0.931904,0.337225,0.453048,-0.130716,0.851983,-1.18283,0.335916,0.761207,-0.0678767,0.855311,-0.832053,0.24557,0.517827,-0.177473,0.812672,0.923708,1.0701,0.988346,0.864527,0.811533,0.792842,0 +-0.119302,0.818639,2.21172,-0.741257,-0.221911,-0.108147,0.785915,2.12186,-0.761887,-0.144269,-0.116873,0.79608,2.43032,-0.658228,-0.123979,-0.170586,0.825616,2.81779,-0.547102,-0.153755,0.0231287,3.40995,-5.40419,4.86168,1.08582,0.151716,3.4792,-6.25714,5.60671,0.865766,-0.180881,3.51067,-5.94252,5.37917,1.07365,-0.0748434,0.522854,0.894402,1.17198,1.3289,1.39344,1 +-0.717559,1.385,2.10259,-0.687783,-1.3267,-0.722366,1.3789,2.12449,-0.723296,-1.31806,-0.700187,1.3471,1.90527,-0.6746,-1.23285,-0.678198,1.32022,1.49328,-0.567332,-1.14876,-0.83809,1.6486,-1.01833,1.25923,1.37332,-1.12189,1.33322,-0.731802,1.10458,1.24406,-1.006,1.5079,-1.05907,1.20513,1.32129,1.13894,1.51933,1.77266,1.86104,1.8524,1.83634,1 +-0.561935,0.460984,0.0702457,-0.500805,-0.806225,-0.562934,0.459315,0.0497255,-0.507292,-0.820548,-0.565713,0.473878,-0.0527443,-0.438275,-0.773311,-0.562695,0.479725,-0.155194,-0.296585,-0.678018,-1.20838,0.00300864,0.591011,-0.158092,0.442853,-1.26513,-0.0731842,0.722286,-0.234195,0.427161,-1.01524,-0.00786613,0.483234,-0.0407399,0.44999,0.843697,0.758519,0.548641,0.444292,0.381143,0.345861,1 +-0.488561,0.235135,-0.416396,-0.425831,-0.349279,-0.499205,0.260702,-0.385431,-0.392448,-0.368839,-0.518336,0.297104,-0.332088,-0.30646,-0.416556,-0.532209,0.316285,-0.230147,-0.340993,-0.499016,-0.109396,-0.400824,0.284001,-0.466132,0.120041,-0.377565,-0.0244181,0.272357,-0.366461,0.42831,-0.393957,-0.349199,0.382243,-0.48947,0.182101,0.457876,0.243871,0.0407001,-0.049106,-0.0719248,-0.0651681,1 +-0.475747,-0.0159022,-0.564244,-0.166178,-0.390199,-0.479965,-0.0166918,-0.562735,-0.158952,-0.414627,-0.474588,-0.0218095,-0.585104,-0.179682,-0.425692,-0.460515,-0.035173,-0.563444,-0.296155,-0.40761,0.277684,-0.663765,0.474278,-0.548511,-0.196863,-0.242491,-0.532069,0.696639,-0.581385,0.0309349,-0.128907,-0.631881,0.621146,-0.57248,-0.157963,0.527162,0.202591,-0.0759428,-0.191276,-0.217963,-0.232856,1 +-0.0956732,-0.528681,-0.757259,0.121771,0.378445,-0.0741636,-0.546722,-0.769323,0.153805,0.411468,-0.0715149,-0.560296,-0.781967,0.145519,0.493238,-0.118382,-0.507362,-0.722616,-0.144179,0.397815,-0.885766,-0.67469,0.596998,-0.601335,-0.419874,-0.854911,-0.859239,0.616618,-0.727974,-0.560216,-0.585643,-0.793692,0.65476,-0.643165,-0.524733,-0.213046,-0.529311,-0.676879,-0.698058,-0.69362,-0.669772,0 +-0.71403,1.32936,2.03028,-0.666913,-1.37281,-0.716299,1.30509,2.00055,-0.713621,-1.31963,-0.690852,1.25161,1.36654,-0.650182,-1.19018,-0.671571,1.23838,0.944278,-0.513638,-1.10223,-0.63254,1.25567,-0.267899,0.897441,1.29052,-1.13125,0.851703,0.287939,0.610321,1.12979,-0.724175,1.13692,-0.296905,0.849714,1.2475,1.14246,1.59245,1.82169,1.84583,1.81338,1.80849,1 +-0.0763326,0.956612,3.07566,-0.747874,-0.467741,-0.0296454,0.910804,2.92168,-0.773012,-0.380044,-0.0434886,0.907096,3.05642,-0.675539,-0.32734,-0.124879,0.924797,3.28946,-0.565913,-0.353527,0.348609,3.97639,-6.51916,6.35137,1.14467,0.362732,3.60334,-6.34013,5.98908,0.935412,0.0979721,3.80942,-6.6032,6.35116,1.15619,0.148257,0.75525,1.16063,1.47005,1.64522,1.70478,1 +-0.353327,-0.00848587,-0.335636,-0.269858,-0.295875,-0.34739,-0.0219792,-0.357435,-0.301412,-0.278983,-0.334786,-0.0410201,-0.444353,-0.345071,-0.196644,-0.30722,-0.0537239,-0.46956,-0.350708,-0.0934142,-0.349159,-0.427471,0.394027,-0.2852,-0.0529139,-0.466102,-0.600636,0.40862,-0.461004,-0.124939,-0.0233685,-0.466122,0.401663,-0.320403,-0.0530641,0.372927,0.193955,-0.0353427,-0.100001,-0.129876,-0.14384,0 +-0.536158,1.19495,2.43057,-0.729123,-0.803007,-0.521804,1.17549,2.35267,-0.752792,-0.759718,-0.526172,1.19156,2.62921,-0.669522,-0.745075,-0.558816,1.21926,2.77602,-0.576228,-0.797689,0.152226,3.2831,-4.9041,4.82215,1.37102,0.113265,2.54209,-3.86345,3.58592,1.1739,-0.0356625,2.84473,-4.52435,4.19217,1.31837,0.614679,0.956862,1.26821,1.52127,1.68951,1.75974,1 +-0.53116,0.284451,-0.382993,-0.394157,-0.311208,-0.543954,0.312367,-0.351228,-0.373287,-0.344961,-0.548212,0.331038,-0.341263,-0.314966,-0.383982,-0.549031,0.348419,-0.342173,-0.26527,-0.437296,1.17787,-0.432998,0.279733,-0.456666,0.100151,0.294056,-0.155184,0.476357,-0.395067,0.453898,0.626353,-0.379304,0.418185,-0.476167,0.207148,0.413847,0.191097,0.0256674,-0.0578417,-0.0887365,-0.0845686,1 +-0.432568,0.0827895,-0.540805,-0.3257,-0.0928245,-0.453538,0.124029,-0.529101,-0.279463,-0.159112,-0.462763,0.164899,-0.477916,-0.216974,-0.253106,-0.452928,0.175254,-0.437526,-0.228018,-0.287019,1.13731,-0.526622,0.110806,-0.291827,-0.139412,-0.12325,-0.256844,0.395426,-0.322222,0.350798,0.416726,-0.375056,0.211946,-0.296375,0.119301,0.249218,-0.0598305,-0.233026,-0.291427,-0.293276,-0.275815,1 +-0.331948,0.598067,0.739328,-0.669792,-0.094014,-0.334916,0.631161,0.705804,-0.675359,-0.147918,-0.34653,0.700507,0.917061,-0.580126,-0.210877,-0.395177,0.760417,0.961809,-0.470689,-0.324981,0.637168,1.43926,-3.10547,2.64764,0.849544,0.497696,1.45987,-2.53861,1.92762,0.882548,0.527712,1.29629,-2.52924,1.93175,0.815681,0.059221,0.179552,0.344951,0.468031,0.536717,0.575638,1 +-0.48935,0.0283661,-0.582455,-0.221311,-0.38821,-0.501744,0.050975,-0.55117,-0.198503,-0.441414,-0.503883,0.0701455,-0.518526,-0.238533,-0.513918,-0.494098,0.0707352,-0.458566,-0.491609,-0.553039,1.01815,-0.576788,0.523824,-0.566922,-0.0303649,0.417616,-0.488331,0.763776,-0.588782,0.0985518,0.929915,-0.583774,0.652111,-0.595548,-0.0520746,0.558167,0.238443,-0.0501155,-0.133755,-0.14346,-0.144849,1 +-0.713081,1.31726,1.6774,-0.669582,-1.25279,-0.718008,1.31109,1.69941,-0.702826,-1.25549,-0.695429,1.27676,1.45369,-0.649952,-1.17402,-0.676009,1.2626,1.05497,-0.522554,-1.09632,-0.112115,1.2826,-0.176004,0.740578,1.28722,-0.686414,1.10224,0.175254,0.712861,1.19888,-0.2047,1.20295,-0.313696,0.717839,1.22523,1.06618,1.43848,1.62468,1.68087,1.66894,1.63883,1 +-0.61339,0.775191,0.161631,-0.564154,-0.685584,-0.618807,0.793891,0.191266,-0.564124,-0.697099,-0.605264,0.803736,0.160072,-0.482174,-0.681996,-0.593349,0.810943,0.103109,-0.378665,-0.664485,-0.28514,0.513929,0.175284,0.0535239,0.929095,-0.684915,0.24432,0.48951,-0.0779518,0.807415,-0.20373,0.223161,0.229328,-0.077242,0.780448,0.626143,0.734301,0.685085,0.606853,0.561105,0.560306,0 +-0.537757,0.337735,-0.267279,-0.442843,-0.63251,-0.545513,0.345171,-0.256055,-0.419895,-0.643945,-0.55055,0.357325,-0.356096,-0.293636,-0.647293,-0.538067,0.34657,-0.418225,-0.111505,-0.546173,-0.418085,-0.0448179,0.356725,-0.160421,0.447681,-0.618397,-0.214025,0.65327,-0.389619,0.421084,-0.125808,-0.212816,0.57117,-0.3474,0.375966,0.696899,0.47036,0.251967,0.138752,0.105119,0.114744,1 +-0.121231,-0.461044,-0.851083,-0.179332,0.488581,-0.154244,-0.42949,-0.89803,-0.00176915,0.329439,-0.175994,-0.351988,-0.793832,0.226229,0.133914,-0.133135,-0.391958,-0.634509,-0.0826794,0.0917152,0.291147,-0.760897,0.524903,-0.552769,-0.540965,-0.146398,-0.282102,-0.283251,-0.270847,-0.0455976,-0.0711351,-0.441164,0.139492,-0.395006,-0.173855,-0.268469,-0.782087,-0.833672,-0.829724,-0.801318,-0.784666,1 +-0.250707,-0.313257,-0.635479,0.0527545,-0.262781,-0.237204,-0.355166,-0.657798,0.000119922,-0.263091,-0.210547,-0.427791,-0.728164,-0.18284,-0.108137,-0.177113,-0.471069,-0.745005,-0.298244,0.0313547,-0.788364,-0.739778,0.579426,-0.579436,-0.475707,-0.916331,-0.81673,0.593759,-0.695629,-0.420364,-0.488591,-0.737899,0.699308,-0.61255,-0.443403,0.394147,0.0261474,-0.271887,-0.353807,-0.369399,-0.357095,1 +-0.32787,-0.229648,-0.689163,-0.199122,-0.042849,-0.344191,-0.20428,-0.685684,-0.125918,-0.0600707,-0.389799,-0.158513,-0.668943,0.00415795,-0.16354,-0.407081,-0.144639,-0.601186,-0.0389009,-0.262002,0.359464,-0.630081,0.34811,-0.554109,-0.30515,1.00532,-0.513459,0.0553028,-0.457296,-0.103939,0.5108,-0.623995,0.397316,-0.561085,-0.295006,0.2447,-0.135653,-0.376366,-0.423603,-0.419155,-0.394557,1 +-0.471199,0.155334,-0.352777,-0.288409,-0.436506,-0.474767,0.149097,-0.34811,-0.312487,-0.423882,-0.470679,0.131406,-0.415457,-0.354446,-0.357795,-0.464073,0.114424,-0.45004,-0.379894,-0.309858,-0.637658,-0.415417,0.681107,-0.485662,0.107278,-0.652591,-0.554828,0.645124,-0.583604,0.0673171,-0.312307,-0.459935,0.713131,-0.51085,0.0986116,0.461314,0.356466,0.14213,0.0131135,-0.0104449,-0.0447581,0 +-0.419725,0.283691,0.507692,-0.610241,-0.341563,-0.423153,0.303351,0.508141,-0.61396,-0.395316,-0.460744,0.422353,0.578977,-0.578267,-0.460555,-0.507192,0.481434,0.40946,-0.558427,-0.644095,-0.299793,0.77564,-0.906826,0.955672,0.729723,-0.452908,0.567142,-0.601466,0.705805,0.627193,-0.26544,0.670792,-1.15171,1.01719,0.666703,0.241172,0.365241,0.453148,0.525902,0.615269,0.713261,1 +-0.0621996,-0.656958,-0.835691,0.202391,0.47017,-0.0368519,-0.669622,-0.856051,0.302822,0.539396,-0.056982,-0.656389,-0.855771,0.441164,0.589171,-0.12324,-0.586413,-0.789334,0.255735,0.427191,-1.32052,-0.716929,0.622745,-0.609941,-0.49064,-1.17042,-0.868665,0.65371,-0.731402,-0.659827,-0.917091,-0.831513,0.681706,-0.650212,-0.663215,-0.262322,-0.688453,-0.830403,-0.883068,-0.889245,-0.89788,0 +-0.636558,0.795651,0.487212,-0.609361,-0.934772,-0.63364,0.780818,0.432378,-0.610781,-0.903897,-0.614929,0.79709,0.298114,-0.503493,-0.815021,-0.596668,0.77525,0.186898,-0.36755,-0.768314,-1.12624,0.828175,-0.028406,0.806215,0.998961,-2.20925,0.44945,0.0705454,0.488391,0.842218,-1.3839,1.11236,-0.860139,1.3922,1.06333,0.883028,0.949485,0.850374,0.733511,0.762147,0.806405,1 +-0.349929,-0.0497457,-0.459815,-0.441983,-0.10209,-0.355016,-0.0295955,-0.524143,-0.384452,-0.160781,-0.376945,0.0341031,-0.431159,-0.24562,-0.270488,-0.378595,0.0430587,-0.18356,-0.385721,-0.316185,0.462903,-0.258173,0.406021,-0.334606,0.248119,-0.0291357,-0.0133335,-0.874952,0.283361,0.233936,0.466072,-0.0741037,-0.447041,0.120001,0.137882,0.202471,-0.0640485,-0.196184,-0.255705,-0.330668,-0.385251,1 +-0.642256,0.825206,0.374757,-0.59095,-0.870074,-0.647173,0.831303,0.426621,-0.600056,-0.868845,-0.634169,0.824886,0.377135,-0.527882,-0.845346,-0.619946,0.813561,0.283721,-0.42948,-0.779428,-0.0131735,0.549661,0.560126,0.0825997,0.894822,-0.383512,0.454977,1.031,0.00833597,0.790973,0.118752,0.290018,0.55117,-0.100371,0.769903,0.81699,0.895172,0.826815,0.757149,0.71416,0.683955,1 +-0.712851,1.46667,2.16235,-0.702576,-1.17412,-0.717249,1.46794,2.18645,-0.732022,-1.16346,-0.695479,1.45576,2.27909,-0.679617,-1.14698,-0.67467,1.43148,2.09751,-0.605733,-1.10961,-0.399384,2.24989,-1.8567,2.27804,1.53202,-0.869604,1.67055,-0.822917,1.57616,1.35442,-0.554309,1.84102,-1.38419,1.77022,1.43203,0.963528,1.36535,1.63961,1.78272,1.81714,1.82117,0 +-0.719928,1.55118,2.64119,-0.716279,-1.10246,-0.725475,1.55321,2.5864,-0.746525,-1.07614,-0.705854,1.55577,2.69976,-0.689622,-1.09711,-0.688593,1.55621,2.69946,-0.629392,-1.14061,-0.201731,2.69756,-2.10467,2.87097,1.61924,-1.24473,2.04737,0.187408,2.00656,1.49695,-0.688353,2.33644,-1.2436,2.34932,1.55174,0.886026,1.30088,1.60308,1.79852,1.86583,1.85275,1 +-0.38914,0.297504,0.0094554,-0.423073,-0.234815,-0.384592,0.277134,0.00760617,-0.465502,-0.222301,-0.370329,0.236994,-0.164949,-0.473928,-0.157273,-0.361903,0.211506,-0.274396,-0.417456,-0.0890963,-0.319404,-0.0613598,0.641826,-0.335126,0.415887,-0.438815,-0.381303,0.729812,-0.44918,0.195604,-0.0137732,-0.268778,0.650662,-0.3871,0.293286,0.156343,0.28547,0.259893,0.20476,0.161771,0.152086,0 +-0.465502,0.192496,-0.114834,-0.335685,-0.423333,-0.463673,0.176364,-0.134384,-0.410939,-0.391468,-0.448171,0.130086,-0.32723,-0.455017,-0.314106,-0.42913,0.0939038,-0.425392,-0.410449,-0.20476,-0.153125,-0.313736,0.635789,-0.404492,0.199183,-0.178792,-0.569191,0.749833,-0.55058,-0.0461073,0.220972,-0.4492,0.686184,-0.477026,0.067147,0.453728,0.34787,0.172366,0.0784116,0.0259773,-0.000729623,0 +-0.167938,-0.348749,-0.652071,0.00738669,-0.00270866,-0.16352,-0.349309,-0.659937,-0.0141531,0.0071264,-0.159682,-0.361643,-0.712831,-0.0264671,0.0866075,-0.141011,-0.383103,-0.719528,-0.000209819,0.187348,0.0908755,-0.716839,0.644854,-0.566922,-0.464972,0.322842,-0.778549,0.675149,-0.656838,-0.438895,0.583345,-0.741867,0.675509,-0.607093,-0.479086,0.132845,-0.179782,-0.390419,-0.473588,-0.53039,-0.564014,0 +-0.0771522,-0.400914,-0.61344,-0.0847082,-0.0420094,-0.056922,-0.419974,-0.625054,-0.0702756,-0.0286361,-0.0463073,-0.462334,-0.71504,0.00268867,0.0725743,-0.0220592,-0.525523,-0.750073,0.129067,0.210877,0.222171,-0.634459,0.42802,-0.479145,-0.471329,0.276894,-0.705974,0.447811,-0.588342,-0.422103,0.642016,-0.652361,0.518376,-0.53155,-0.455027,0.258553,-0.193585,-0.397455,-0.502174,-0.556028,-0.608602,1 +-0.719148,1.51616,2.39438,-0.716039,-1.20801,-0.724025,1.51992,2.37198,-0.743336,-1.19112,-0.706474,1.53129,2.63977,-0.684125,-1.21179,-0.689422,1.52297,2.73785,-0.627753,-1.21862,0.115663,2.64543,-2.32595,2.85969,1.53396,-0.639757,2.09994,-0.665814,2.13381,1.46796,-0.212226,2.35697,-1.87582,2.49271,1.46452,1.02963,1.36406,1.61501,1.7916,1.85847,1.87072,1 +-0.697938,1.0522,0.533309,-0.613389,-1.06077,-0.707983,1.08068,0.590581,-0.625354,-1.1255,-0.688813,1.0982,0.682736,-0.578167,-1.12789,-0.666004,1.08085,0.546612,-0.485092,-1.04002,0.133025,0.636868,0.235965,0.136193,1.03399,-0.59273,0.664804,0.65424,0.187908,1.04611,0.0424093,0.552779,0.295755,0.0531041,0.985487,0.996122,1.15351,1.13315,1.07158,1.04462,1.04021,1 +-0.603625,0.576418,-0.0543534,-0.477776,-0.843907,-0.610901,0.588732,-0.0197704,-0.484293,-0.848405,-0.595308,0.576648,-0.103499,-0.430849,-0.795191,-0.578067,0.557147,-0.217444,-0.290028,-0.686974,0.0872373,-0.0883966,0.657758,-0.304121,0.506622,-0.669862,-0.0752831,1.01752,-0.288359,0.549341,0.0651182,-0.123669,0.658088,-0.340283,0.492139,0.888525,0.820409,0.593779,0.477026,0.454887,0.445362,1 +-0.426531,0.344901,-0.0396406,-0.447611,-0.249778,-0.42829,0.351698,-0.0102551,-0.47065,-0.230207,-0.426331,0.330488,-0.107058,-0.47022,-0.208698,-0.422353,0.292337,-0.250997,-0.374736,-0.152515,0.291717,-0.0295054,0.576048,-0.277144,0.463863,-0.140461,-0.275415,0.834951,-0.38802,0.273716,0.458136,-0.22444,0.641746,-0.365901,0.292477,0.180012,0.30611,0.255965,0.181761,0.146398,0.133435,0 +3.41006,-1.71506,-1.02892,-0.350598,2.6493,3.29366,-1.69925,-1.03441,-0.208928,2.69477,3.22819,-1.65288,-0.923758,0.146888,2.61544,3.14659,-1.59608,-0.793202,0.49076,2.51548,1.95146,-0.757789,0.240282,-0.541955,-1.69412,2.21163,0.230867,-0.596808,-0.256394,-1.29671,1.82033,-0.622905,0.398035,-0.602395,-1.20132,-3.20776,-2.03983,-1.64068,-1.50944,-1.46676,-1.44372,1 +-0.584234,1.17128,1.49203,-0.716899,-0.771472,-0.575888,1.17822,1.48041,-0.732402,-0.742956,-0.574419,1.22251,1.70841,-0.631121,-0.759298,-0.597607,1.26661,1.92341,-0.529001,-0.824776,0.120061,2.53961,-2.56662,2.90356,1.43095,-0.371388,2.52588,-1.18061,2.59138,1.3041,-0.0796309,2.3267,-2.10373,2.45541,1.37723,0.620636,0.89879,1.0861,1.20133,1.28018,1.31616,1 +-0.240013,0.355506,-0.0240682,-0.648922,0.0935342,-0.227988,0.392838,-0.0304652,-0.637138,0.0319243,-0.257814,0.479155,0.184849,-0.496967,-0.0079962,-0.328879,0.564074,0.455837,-0.378605,-0.114014,1.03274,0.893763,-2.04329,1.52089,0.6738,0.637088,1.38972,-2.13352,1.77285,0.806265,0.814511,1.03116,-2.0566,1.39946,0.73498,-0.0758829,-0.119181,-0.0275865,0.0266469,0.0185409,0.0235185,1 +-0.0170017,-0.499156,-0.63423,-0.0794808,0.229448,0.0132836,-0.508781,-0.659117,-0.0407201,0.134154,0.0432389,-0.555878,-0.668763,-0.148507,0.113184,0.12299,-0.682836,-0.699787,-0.563634,0.148987,0.0935442,-0.740148,0.658857,-0.609352,-0.516297,-0.173565,-0.607962,0.256604,-0.577697,-0.393377,0.202891,-0.61317,0.480045,-0.573249,-0.379614,0.016232,-0.492729,-0.601765,-0.587143,-0.618917,-0.685674,1 +-0.685155,0.998381,0.453428,-0.65303,-0.810383,-0.6945,1.02662,0.378435,-0.650442,-0.851243,-0.679057,1.10027,0.344042,-0.514578,-0.851763,-0.666084,1.19844,0.532519,-0.390789,-0.909725,-2.04809,2.08427,0.516567,1.743,1.60597,-3.56173,0.812002,1.69934,0.681416,1.10127,-2.51486,1.38154,0.77692,0.996722,1.3884,0.764086,0.778259,0.722826,0.657038,0.690512,0.732611,1 +0.192826,-0.693361,-0.683426,0.175804,0.463423,0.2053,-0.697658,-0.697918,0.0626293,0.470419,0.186929,-0.724985,-0.770693,-0.164889,0.482024,0.196304,-0.786395,-0.809174,-0.225989,0.524693,0.741317,-0.785675,0.472699,-0.557507,-0.704855,1.44505,-0.879719,0.478136,-0.665874,-0.83797,1.22292,-0.808174,0.507752,-0.579386,-0.794241,-0.320793,-0.618607,-0.709273,-0.736979,-0.731462,-0.710682,0 +0.0649282,-0.834831,-0.808454,0.568202,0.364332,0.0832593,-0.863497,-0.849454,0.414727,0.370358,0.085858,-0.905527,-0.9,0.206569,0.441284,0.123909,-0.968336,-0.916701,0.443993,0.578967,0.876711,-0.895561,0.528021,-0.619467,-0.914742,1.75996,-0.981599,0.540105,-0.720427,-1.05088,1.40342,-0.901499,0.595778,-0.642945,-0.979041,-0.176034,-0.637648,-0.81647,-0.862858,-0.892683,-0.935372,0 +0.14318,-0.67459,-0.630222,0.110896,0.540695,0.16366,-0.690312,-0.666284,0.0109946,0.552429,0.156593,-0.724056,-0.771552,-0.0695959,0.604534,0.158313,-0.781647,-0.812262,-0.0513648,0.65428,1.14879,-0.75517,0.402173,-0.523394,-0.641176,1.80429,-0.854811,0.430599,-0.63278,-0.815231,1.58909,-0.778559,0.432139,-0.532079,-0.779119,-0.444602,-0.661006,-0.739698,-0.767594,-0.773991,-0.757259,0 +-0.441674,0.516137,0.205669,-0.590291,0.0198103,-0.451909,0.526022,0.240992,-0.589132,0.0432387,-0.453248,0.546073,0.362433,-0.520595,0.00197891,-0.459665,0.559866,0.47049,-0.501135,-0.093874,0.667733,0.107368,-0.212386,-0.116773,0.481864,0.800238,0.718798,-1.16479,0.479625,0.689063,0.65368,0.34722,-0.432668,0.032934,0.580206,-0.151116,0.111955,0.200252,0.236154,0.239992,0.248718,0 +-0.362233,0.583634,0.793742,-0.631291,-0.12173,-0.356215,0.562405,0.808424,-0.647533,-0.0611402,-0.363062,0.555078,0.787484,-0.584174,-0.0914953,-0.376885,0.561095,0.762737,-0.525143,-0.188218,1.21801,0.538427,-0.903897,0.381673,0.558077,1.24165,0.903248,-1.70619,0.815141,0.61398,1.09509,0.6328,-0.934352,0.402093,0.610591,-0.0669672,0.258714,0.385091,0.456786,0.478146,0.476857,0 +-0.345621,0.578277,0.799179,-0.644864,0.0335436,-0.336255,0.558387,0.818449,-0.657778,0.0999409,-0.351138,0.559056,0.8378,-0.581145,0.0670371,-0.392898,0.588762,0.927206,-0.53159,-0.0522943,1.44343,0.494438,-0.87813,0.386851,0.499945,1.3501,1.20997,-2.15773,1.25736,0.703596,1.31886,0.81784,-1.24561,0.640946,0.61216,-0.22474,0.157193,0.319843,0.410129,0.443693,0.441874,0 +-0.477126,0.369639,0.148737,-0.457646,-0.703515,-0.467411,0.341933,0.189647,-0.514988,-0.699947,-0.475397,0.296875,0.114964,-0.637478,-0.686664,-0.457986,0.241422,-0.089996,-0.608762,-0.57253,1.26159,-0.227349,0.0464273,-0.32674,0.193595,1.19546,-0.218793,-0.180002,-0.312587,0.187238,1.43352,-0.150067,-0.0326039,-0.278294,0.210737,0.731072,0.638747,0.512539,0.474018,0.499395,0.558377,1 +0.0533639,-0.725765,-0.708653,0.320523,-0.0112745,0.112915,-0.783117,-0.754071,0.148787,-0.000459882,0.117063,-0.840609,-0.829504,-0.161121,0.136523,0.128877,-0.903888,-0.876601,0.0973424,0.320013,1.2238,-0.822777,0.474248,-0.577227,-0.819179,1.93414,-0.925887,0.506622,-0.697528,-0.995413,1.81611,-0.811213,0.524403,-0.595938,-0.839579,0.251307,-0.269858,-0.543884,-0.648952,-0.697359,-0.738838,1 +-0.537047,0.647853,0.537727,-0.604424,-0.5101,-0.542334,0.643155,0.575858,-0.618457,-0.481894,-0.553339,0.659377,0.67378,-0.585163,-0.547782,-0.559116,0.654949,0.725835,-0.59134,-0.65345,1.26129,0.312237,-0.631141,0.182941,0.524663,1.27675,0.685524,-1.34738,0.565753,0.681377,1.34447,0.425302,-0.692621,0.197244,0.543484,0.471879,0.528581,0.535828,0.567632,0.59126,0.614649,0 +-0.628232,0.793831,0.596758,-0.586932,-0.844077,-0.635869,0.798079,0.646533,-0.61308,-0.83802,-0.631781,0.801967,0.740847,-0.63217,-0.925097,-0.617168,0.767864,0.665134,-0.654519,-0.96069,0.793861,0.299064,-0.392788,0.0672172,0.656209,0.536198,0.422413,-0.604164,0.124099,0.741337,0.819759,0.396556,-0.361553,0.0423094,0.703595,0.818639,0.850084,0.820178,0.81674,0.818279,0.844307,1 +0.396956,-0.941309,-0.79747,0.455357,0.823317,0.401613,-0.946537,-0.820368,0.333427,0.843757,0.372538,-0.965048,-0.880329,0.246809,0.840718,0.377045,-1.01103,-0.881598,0.14226,0.886906,0.602595,-0.872992,0.478166,-0.590951,-0.937781,1.25431,-0.949815,0.51049,-0.692551,-1.09146,1.0115,-0.87843,0.541165,-0.610521,-1.0233,-0.7564,-0.893083,-0.945197,-0.953313,-0.941299,-0.937461,0 +-0.277354,-0.247049,-0.900459,-0.40749,0.644404,-0.299803,-0.18372,-0.897211,-0.290568,0.473058,-0.332467,-0.06155,-0.772642,0.00902557,0.231776,-0.349569,0.00161903,-0.610411,0.150197,-0.0146528,1.47309,-0.718668,0.433158,-0.572,-0.480355,0.581725,0.28668,-0.141531,-0.057182,0.466981,1.13429,-0.0659077,-0.0248278,-0.200632,0.352807,-0.495637,-0.879979,-0.915942,-0.908445,-0.889055,-0.853772,1 +-0.365841,0.0891164,-0.358395,-0.263561,-0.420714,-0.380903,0.0983818,-0.321293,-0.320143,-0.456846,-0.40888,0.08136,-0.405801,-0.412868,-0.44988,-0.405891,0.0580614,-0.527242,-0.24397,-0.335676,-1.23715,-0.525832,0.434637,-0.520465,-0.0407398,-0.968336,-0.567052,0.440834,-0.594309,-0.0236283,-0.805686,-0.502334,0.445672,-0.533189,-0.0351529,0.463493,0.310158,0.175514,0.108427,0.0983618,0.0577717,1 +-0.246349,-0.00194907,-0.328869,-0.295535,-0.0284361,-0.24427,-0.00879569,-0.314456,-0.329629,0.00322831,-0.248788,-0.0536239,-0.464473,-0.287149,0.0787513,-0.236664,-0.0944139,-0.57215,-0.0619596,0.178763,-0.529511,-0.365571,0.317834,-0.437846,0.0942441,-0.0947536,-0.561935,0.275415,-0.557117,-0.0829093,0.0545534,-0.50989,0.341163,-0.492669,-0.110966,-0.00893564,0.04117,-0.0579316,-0.095953,-0.118902,-0.140501,1 +-0.588432,1.02129,1.16484,-0.649172,-0.634589,-0.59103,1.00746,1.16078,-0.673081,-0.572,-0.579616,1.00253,1.04663,-0.61223,-0.605664,-0.577147,1.02013,1.05048,-0.568552,-0.718868,-0.140281,0.664705,0.105728,0.171356,1.03219,-0.841468,1.10238,0.0300352,0.556648,1.06303,-0.473618,1.03438,-0.053004,0.373357,1.12163,0.48984,0.794981,0.914512,0.9591,0.947596,0.928925,1 +-0.390669,0.274815,0.0170917,-0.422373,-0.339184,-0.400354,0.267929,0.0461973,-0.476337,-0.312577,-0.393077,0.218453,-0.146618,-0.481164,-0.235685,-0.369339,0.1836,-0.343672,-0.275985,-0.117872,-0.482294,-0.206319,0.0136034,-0.286769,0.238374,-0.0880968,-0.351478,-0.028786,-0.384722,0.131226,-0.164319,-0.2853,0.0701058,-0.320603,0.0884666,0.275225,0.389659,0.331128,0.312897,0.298904,0.268359,0 +0.211626,-0.805126,-0.853592,0.671871,0.305081,0.225949,-0.820388,-0.875941,0.515208,0.32659,0.212746,-0.841818,-0.891404,0.137463,0.442563,0.196764,-0.851793,-0.87836,-0.159652,0.512219,-1.22502,-0.923488,0.648772,-0.63341,-1.0117,-0.647373,-0.995223,0.664135,-0.744156,-0.982069,-0.557477,-0.931694,0.701886,-0.667333,-1.01396,-0.0949135,-0.544713,-0.731422,-0.799618,-0.801168,-0.79715,1 +-0.38902,0.157443,-0.243251,-0.365861,-0.254595,-0.401363,0.16388,-0.214635,-0.389639,-0.26531,-0.396376,0.129366,-0.28691,-0.40747,-0.217684,-0.360483,0.0758327,-0.47043,-0.144059,-0.042859,-0.717499,-0.343832,0.136093,-0.405941,0.0916753,-0.293476,-0.406381,0.042659,-0.460884,0.089966,-0.412188,-0.387071,0.170397,-0.423363,-0.0215995,0.247959,0.242332,0.134354,0.0970524,0.091795,0.0722446,1 +-0.656129,0.921119,0.826346,-0.579616,-1.03179,-0.661496,0.911044,0.847745,-0.627453,-1.04841,-0.643985,0.853262,0.729513,-0.667833,-1.06318,-0.615099,0.79564,0.273206,-0.505053,-0.895731,-0.220622,0.247519,-0.095783,-0.0616397,0.725885,-0.461004,0.250207,-0.198633,-0.0626293,0.743116,-0.280902,0.382613,-0.177843,0.0176015,0.800688,0.952963,1.09935,1.11859,1.08263,1.09175,1.11242,1 +1.1996,-1.3622,-0.98148,1.28922,1.20138,1.28843,-1.4096,-1.01017,1.29629,1.2966,1.29797,-1.44988,-1.01349,1.42908,1.37209,1.31999,-1.47934,-0.991175,1.91253,1.46037,-0.719798,-0.926956,0.644704,-0.640796,-1.23962,-0.0523443,-1.07367,0.647903,-0.759738,-1.60106,-0.0451878,-1.00977,0.679967,-0.676049,-1.48537,-1.17783,-1.22057,-1.19378,-1.15818,-1.12474,-1.10376,0 +-0.646084,0.891534,0.757769,-0.587022,-0.982669,-0.651381,0.880309,0.791562,-0.624165,-0.975682,-0.634809,0.83783,0.716219,-0.638068,-0.952034,-0.608352,0.788664,0.385341,-0.526712,-0.812302,-0.304091,0.336146,-0.229607,0.00405816,0.759668,-0.156473,0.321672,-0.499326,0.0717149,0.728454,-0.238933,0.373957,-0.332507,0.0568123,0.740048,0.887136,1.0644,1.06157,1.02315,1.0248,1.04238,0 +-0.660627,0.814891,0.345121,-0.546082,-1.00004,-0.670941,0.823897,0.40805,-0.573369,-1.04104,-0.655649,0.802207,0.450919,-0.608162,-1.07104,-0.628942,0.757109,0.24498,-0.549141,-0.941259,-1.02013,0.126588,0.112645,-0.24384,0.664325,-0.883877,0.141371,0.00913544,-0.216724,0.699138,-0.995303,0.145459,0.0739239,-0.230077,0.649012,0.952024,1.05113,0.977791,0.891014,0.863767,0.875192,1 +-0.707624,1.29991,1.73408,-0.679697,-1.06945,-0.710452,1.27689,1.6914,-0.707294,-1.02095,-0.69422,1.264,1.52955,-0.643365,-1.04022,-0.679038,1.27016,1.52555,-0.59296,-1.1273,-0.0434387,1.0928,-0.0907255,0.467751,1.21566,-0.884357,1.48759,0.377145,0.895901,1.23844,-0.658877,1.36602,0.137543,0.598717,1.28628,0.922928,1.17434,1.33373,1.38582,1.35464,1.33885,1 +0.381243,-0.910155,-0.820329,0.63314,0.423733,0.454947,-0.950994,-0.841418,0.371438,0.474288,0.449,-0.994214,-0.87864,-0.0778919,0.583904,0.460764,-1.01822,-0.883378,-0.0859079,0.683176,-0.578417,-0.876961,0.656409,-0.620806,-0.964747,0.0025388,-1.01861,0.664165,-0.743996,-1.23857,0.146009,-0.922039,0.690882,-0.65383,-1.03847,-0.26521,-0.625324,-0.738988,-0.756939,-0.745025,-0.721497,0 +-0.712711,1.28105,1.52581,-0.667003,-1.07123,-0.718928,1.27749,1.51545,-0.69544,-1.06355,-0.698778,1.26573,1.41704,-0.644954,-1.09155,-0.679897,1.26706,1.39397,-0.607463,-1.14407,0.20502,0.952714,-0.295665,0.452599,1.14553,-0.568372,1.27826,0.229088,0.774091,1.25073,-0.250457,1.16204,0.0085459,0.524253,1.23049,0.930804,1.17177,1.28525,1.29733,1.27713,1.25346,1 +-0.292977,0.00406799,-0.209407,-0.275865,-0.152365,-0.277754,-0.0305251,-0.257424,-0.353627,-0.0722647,-0.273256,-0.0858781,-0.483463,-0.3054,0.063139,-0.278334,-0.0969527,-0.545733,-0.206859,0.125219,0.0641986,-0.381543,0.435967,-0.434367,0.0499557,0.476397,-0.655889,0.424102,-0.598107,-0.181241,0.668663,-0.562535,0.447721,-0.50967,-0.159492,0.172046,0.109227,0.0167118,-0.0498356,-0.0483263,-0.0278663,0 +-0.57151,0.998201,1.24597,-0.65323,-0.648942,-0.57179,0.9798,1.23602,-0.678128,-0.599097,-0.555208,0.952204,1.11841,-0.620166,-0.576378,-0.538706,0.929725,0.986527,-0.546262,-0.562844,0.356186,0.91948,-0.757059,0.558996,1.00559,0.374007,1.00898,-1.3607,0.855451,0.958441,0.458066,0.915212,-0.931704,0.577078,0.923638,0.452808,0.842928,1.00554,1.02146,1.00836,1.00248,0 +0.304281,-0.0750333,-0.364592,-0.464952,0.73472,0.277724,-0.0294656,-0.359704,-0.4294,0.685334,0.26628,0.0451777,-0.239993,-0.350768,0.521215,0.268289,0.119002,-0.0824197,-0.414227,0.396436,0.350958,-0.278883,0.357185,-0.335815,0.106828,-0.0357325,0.155964,-0.210507,-0.0502853,0.293856,0.201302,-0.0111145,-0.0158122,-0.175214,0.323631,-0.830723,-0.588222,-0.475667,-0.427811,-0.425272,-0.419345,1 +-0.584894,1.08428,1.3488,-0.668892,-0.611161,-0.587112,1.06807,1.32647,-0.690702,-0.554818,-0.57225,1.07343,1.30993,-0.626313,-0.597587,-0.562485,1.10238,1.44232,-0.594019,-0.743546,0.138342,0.91955,-0.0893562,0.40948,1.11198,-0.748144,1.40329,-0.00584722,0.876291,1.16059,-0.411698,1.395,-0.22455,0.709033,1.24139,0.445372,0.759638,0.927036,1.00305,1.00159,0.991485,1 +0.126738,-0.622146,-0.883278,-0.2441,0.661706,0.125888,-0.597927,-0.884137,-0.10271,0.573919,0.111046,-0.554129,-0.805686,0.18474,0.472069,0.103329,-0.540845,-0.71529,0.36784,0.411299,-0.00851581,-0.797559,0.574429,-0.621885,-0.519455,-0.36749,-0.229728,-0.0534439,-0.466042,-0.295685,-0.123659,-0.371278,0.297165,-0.524293,-0.334286,-0.454517,-0.799528,-0.848285,-0.85844,-0.871173,-0.896481,1 +-0.690522,1.15771,1.18426,-0.644924,-1.08734,-0.696469,1.14905,1.1888,-0.671861,-1.07781,-0.676679,1.12251,1.16079,-0.637158,-1.06853,-0.65379,1.0873,0.927316,-0.556417,-0.977222,0.252646,0.923508,-0.587402,0.483354,1.07715,0.087957,0.834921,-0.638188,0.480635,1.034,0.177073,0.887436,-0.6123,0.446981,1.03455,0.966377,1.21584,1.27973,1.26359,1.23871,1.24774,0 +-0.379524,0.202931,-0.0150726,-0.355046,-0.606173,-0.36776,0.168857,-0.0240783,-0.457566,-0.565373,-0.370369,0.106208,-0.293956,-0.497336,-0.45014,-0.389209,0.0905255,-0.413707,-0.432478,-0.373367,-0.156204,-0.404892,0.529811,-0.441914,0.0846388,0.0806306,-0.519696,0.507052,-0.537247,-0.0589011,0.34846,-0.405981,0.481844,-0.4685,0.0695658,0.649122,0.574209,0.453148,0.360673,0.345871,0.334166,1 +-0.617468,0.810683,0.792092,-0.555258,-1.07477,-0.618337,0.781258,0.820418,-0.624384,-1.07401,-0.607962,0.709233,0.61299,-0.701626,-1.02573,-0.583164,0.661226,0.109986,-0.485712,-0.823077,-0.335636,0.237274,0.00470776,-0.115483,0.713391,-0.585953,-0.0166619,0.0652879,-0.260732,0.534039,-0.340743,0.24554,-0.057112,-0.109826,0.674869,0.986167,1.15882,1.17629,1.11487,1.10913,1.08334,1 +0.363192,-0.841768,-0.851723,0.564304,0.525982,0.40941,-0.863077,-0.864107,0.472239,0.569051,0.392138,-0.893093,-0.868385,0.105808,0.643005,0.376356,-0.906426,-0.861298,-0.0434786,0.718748,-0.481524,-0.827675,0.690502,-0.614929,-0.832122,-0.0675769,-0.994843,0.672101,-0.744096,-1.06562,-0.0496056,-0.910185,0.703905,-0.658767,-0.961309,-0.374107,-0.688563,-0.794521,-0.797919,-0.794211,-0.783137,0 +-0.576408,0.932883,0.805076,-0.635719,-0.573299,-0.580965,0.925497,0.787424,-0.649372,-0.545113,-0.568032,0.934942,0.81601,-0.585104,-0.579956,-0.560626,0.951594,0.87814,-0.547942,-0.684935,0.032654,0.568592,-0.0206998,0.136483,0.942039,-0.651691,0.964098,-0.120421,0.373087,0.982109,-0.405072,0.917771,-0.134104,0.270937,1.03729,0.46947,0.668583,0.753031,0.757309,0.743946,0.732721,1 +1.20367,-1.57593,-1.06995,0.734181,1.49186,1.30735,-1.6158,-1.08944,1.13289,1.5358,1.35514,-1.63,-1.0508,1.82639,1.64736,1.28319,-1.57756,-0.982989,2.24024,1.65119,-0.557677,-0.746854,0.71496,-0.629332,-1.23904,-0.0617597,-0.988916,0.69375,-0.758659,-1.62732,-0.116763,-0.995793,0.688993,-0.684395,-1.40933,-1.36535,-1.56716,-1.43637,-1.36603,-1.34745,-1.35372,0 +-0.465282,0.345681,-0.0730142,-0.515527,-0.2851,-0.480445,0.361983,-0.032974,-0.509241,-0.292457,-0.498316,0.391488,0.0598406,-0.471619,-0.38754,-0.507032,0.393287,0.158402,-0.529261,-0.508701,0.581245,-0.16223,-0.0160221,-0.304021,0.242931,1.02116,0.217264,-0.766605,0.0427391,0.424612,0.641256,-0.0573619,-0.115184,-0.246569,0.282202,0.344921,0.223991,0.160451,0.139732,0.14274,0.162041,0 +-0.313117,-0.032644,-0.219563,-0.272306,-0.283331,-0.309478,-0.0579816,-0.225939,-0.372788,-0.259043,-0.312867,-0.121411,-0.421094,-0.460834,-0.191656,-0.283021,-0.18371,-0.59174,-0.164469,-0.0201501,1.29611,-0.509181,0.218283,-0.439885,-0.134094,1.72954,-0.615329,0.189137,-0.528981,-0.262282,1.42274,-0.512579,0.234046,-0.436096,-0.20375,0.313666,0.202591,0.0524843,0.0109346,-0.00543734,-0.0463573,0 +-0.565433,0.57264,0.399205,-0.53055,-0.771012,-0.567042,0.555648,0.450159,-0.57251,-0.77655,-0.564603,0.523094,0.403632,-0.63263,-0.801548,-0.546193,0.474827,0.137643,-0.555818,-0.719528,1.32417,0.0357326,-0.1631,-0.161941,0.42959,1.35286,0.0485062,-0.413478,-0.153255,0.415347,1.24646,0.100201,-0.197303,-0.154514,0.444822,0.77672,0.737569,0.664435,0.637878,0.647583,0.669222,1 +-0.0768024,-0.597757,-0.739118,0.261732,0.231407,-0.0780017,-0.608902,-0.759918,0.18411,0.215664,-0.0807804,-0.65441,-0.825756,0.0663375,0.282611,-0.0557827,-0.712671,-0.85789,0.268808,0.417796,1.42177,-0.811872,0.478086,-0.59117,-0.664674,1.90332,-0.904257,0.506662,-0.698018,-0.741417,1.61077,-0.831263,0.547622,-0.616058,-0.760708,-0.010345,-0.432648,-0.602645,-0.675789,-0.698638,-0.722726,0 +0.901009,-0.562505,-0.553569,-0.373347,1.16983,0.935362,-0.55063,-0.55213,-0.316055,1.18341,1.00922,-0.522265,-0.460435,-0.219393,1.17169,1.10802,-0.4905,-0.317625,-0.30648,1.10988,1.63967,-0.650881,0.253216,-0.438965,-0.707603,1.43882,0.0334436,-0.712681,0.00732646,-0.171256,1.37278,-0.30704,-0.0326939,-0.279973,-0.229828,-1.30125,-1.03454,-0.887975,-0.825766,-0.802997,-0.799758,1 +-0.384102,0.190787,-0.0931444,-0.500515,0.242191,-0.403532,0.223211,-0.0531341,-0.495527,0.207348,-0.445202,0.300703,0.0419494,-0.476617,0.0229486,-0.506762,0.392837,0.169237,-0.564474,-0.250807,1.61847,-0.269458,-0.0817299,-0.279123,-0.0146226,1.15845,0.262881,-0.273616,0.0329939,0.634499,1.28056,-0.0503653,-0.0494357,-0.195744,0.333237,-0.311098,-0.295965,-0.243441,-0.192716,-0.165419,-0.109187,1 +-0.584044,0.724235,0.529221,-0.621685,-0.603844,-0.585643,0.725065,0.585083,-0.630571,-0.561705,-0.59135,0.756939,0.700487,-0.576068,-0.623565,-0.593699,0.744575,0.852972,-0.609581,-0.778699,1.09752,0.385391,-0.561905,0.199772,0.648773,1.04623,0.941269,-1.65365,0.946077,0.830234,1.00612,0.556118,-0.790723,0.345311,0.69426,0.598717,0.585254,0.560336,0.605254,0.63222,0.666244,1 +-0.55184,0.756959,0.789864,-0.630031,-0.651021,-0.553339,0.751022,0.839509,-0.648513,-0.630651,-0.574918,0.774461,0.932943,-0.610371,-0.716889,-0.599796,0.786535,1.05952,-0.63254,-0.87885,1.34301,0.433448,-0.626793,0.193675,0.589512,1.3459,0.941019,-1.48635,0.804706,0.802997,1.25295,0.63348,-0.826075,0.366701,0.678058,0.589561,0.661296,0.688703,0.741137,0.771612,0.785645,1 +-0.590851,0.759578,0.77749,-0.600906,-0.761317,-0.59182,0.737959,0.824226,-0.631961,-0.719108,-0.593439,0.71452,0.798219,-0.629822,-0.73627,-0.587862,0.683645,0.63251,-0.594549,-0.754341,1.23824,0.323112,-0.40828,0.0249279,0.59321,1.44979,0.512509,-0.94017,0.280703,0.65362,1.22907,0.38848,-0.478186,0.0746636,0.610231,0.666494,0.812003,0.825776,0.829094,0.828124,0.848744,0 +1.32517,-0.648503,-0.512269,-0.5312,1.36447,1.29296,-0.635329,-0.513169,-0.481284,1.37453,1.3447,-0.599237,-0.40901,-0.296495,1.36106,1.37111,-0.561365,-0.229578,-0.18265,1.27683,1.14228,-0.481464,-0.0627092,-0.272397,-0.624844,1.49214,0.764776,-2.10155,0.877041,-0.255955,0.953173,0.0942839,-0.656329,0.0724647,-0.249128,-1.59435,-1.09461,-0.877091,-0.798409,-0.752012,-0.726544,1 +1.36306,-0.547832,-0.46975,-0.547072,1.0599,1.39822,-0.547832,-0.468301,-0.503224,1.11995,1.33971,-0.515668,-0.416046,-0.308299,1.10349,1.21273,-0.467671,-0.294416,-0.128447,0.990985,1.3807,-0.352727,-0.221661,-0.208498,-0.525093,1.74035,0.780398,-2.00868,0.917161,-0.262581,1.13616,0.175194,-0.742946,0.155054,-0.1831,-1.25,-0.797849,-0.654,-0.610351,-0.599606,-0.57215,1 +0.865276,-0.411559,-0.355936,-0.599526,1.03613,0.873043,-0.407411,-0.344601,-0.57172,1.09432,0.869195,-0.358515,-0.219203,-0.404312,1.08041,0.772482,-0.274316,0.0490659,-0.277604,0.932234,0.990085,0.092075,-0.852113,0.228708,-0.238583,1.4348,1.0394,-2.8279,1.51799,-0.0616197,0.822038,0.462883,-1.3808,0.607903,-0.0650483,-1.1904,-0.828994,-0.642395,-0.568712,-0.523813,-0.494218,1 +0.672671,-1.30373,-1.01857,1.6842,0.952004,0.639337,-1.28483,-1.03559,1.57888,0.905986,0.583085,-1.28811,-1.01773,1.0183,0.848474,0.67447,-1.37208,-1.00817,1.57613,1.0179,-2.30335,-1.02637,0.574819,-0.655229,-1.4464,-1.7589,-1.0807,0.618077,-0.761537,-1.41149,-2.44811,-1.0099,0.661136,-0.680956,-1.38635,-0.658488,-1.20342,-1.25305,-1.22327,-1.22637,-1.241,1 +0.984228,-1.41427,-1.03868,1.20053,1.21298,1.01822,-1.42227,-1.0562,1.47994,1.18179,0.979401,-1.41861,-1.03573,1.97441,1.24675,0.774791,-1.35788,-0.983099,2.07629,1.13809,-2.11169,-0.935582,0.637968,-0.650381,-1.33438,-1.58993,-1.04103,0.675029,-0.762037,-1.49725,-2.36287,-1.00187,0.689892,-0.683515,-1.42073,-1.04154,-1.2895,-1.27485,-1.24848,-1.24558,-1.22707,0 +0.477326,-1.08813,-0.993314,1.05269,0.943778,0.493249,-1.08483,-1.0127,1.20278,0.914732,0.477216,-1.10018,-1.00974,1.52912,0.950574,0.484633,-1.1349,-0.994623,2.39401,1.01045,-1.71129,-0.904937,0.615589,-0.645924,-0.973053,-1.20821,-1.03555,0.630291,-0.758509,-1.14781,-1.93471,-0.979461,0.666124,-0.679987,-1.16811,-0.782667,-1.11625,-1.17718,-1.17841,-1.18471,-1.2028,0 +0.0513049,-0.67415,-0.800558,0.415287,0.22553,0.0679168,-0.685195,-0.819399,0.331958,0.195684,0.0732942,-0.727384,-0.849704,-0.00768625,0.227818,0.152535,-0.827305,-0.874712,-0.172585,0.375436,-1.62224,-0.862528,0.544853,-0.621556,-0.75455,-1.19944,-0.93918,0.517187,-0.724145,-0.861678,-1.90448,-0.855012,0.57289,-0.640356,-0.793662,0.0191206,-0.544143,-0.73532,-0.763766,-0.75542,-0.747924,1 +0.811523,-1.09706,-0.772502,0.386661,0.566273,0.931774,-1.15836,-0.819189,0.330078,0.59111,0.992194,-1.21934,-0.862438,-0.0465872,0.73466,1.09576,-1.30078,-0.892323,-0.0272266,0.955732,-1.43067,-0.842847,0.342902,-0.540215,-1.20346,-0.982489,-0.93866,0.379074,-0.665594,-1.32509,-1.66683,-0.83717,0.40862,-0.563574,-1.21165,-0.352238,-0.81639,-0.894122,-0.900159,-0.902788,-0.900959,1 +-0.232186,-0.34817,-0.400474,-0.202601,-0.0838789,-0.226309,-0.36771,-0.446382,-0.235865,-0.0720448,-0.226349,-0.379964,-0.488241,-0.381663,-0.0654281,-0.20378,-0.419645,-0.543584,-0.461014,-0.00771615,-1.33332,-0.576688,-0.00147921,-0.293386,-0.482514,-0.835651,-0.663775,-0.0340334,-0.419335,-0.488571,-1.91463,-0.465212,-0.213775,-0.115173,-0.416246,0.268399,-0.160601,-0.334206,-0.334966,-0.300983,-0.24448,1 +0.444113,-1.02675,-0.842828,0.657478,0.397915,0.51022,-1.06606,-0.861258,0.447281,0.399654,0.542804,-1.12023,-0.897481,-0.000749643,0.476966,0.596858,-1.18677,-0.915812,0.075783,0.690122,-2.35149,-0.916581,0.484753,-0.609811,-1.16891,-2.10854,-0.996022,0.482833,-0.711192,-1.31239,-2.7893,-0.887446,0.514698,-0.617677,-1.15105,-0.105568,-0.710192,-0.859229,-0.885616,-0.889055,-0.905697,1 +1.581,-1.69895,-1.09871,2.97888,1.55411,1.50596,-1.66506,-1.11333,2.99613,1.4813,1.4192,-1.6537,-1.07168,2.00986,1.35907,1.58654,-1.74906,-1.03947,1.42122,1.48708,-1.58148,-1.06931,0.580066,-0.659167,-1.8062,-1.22836,-1.12737,0.622655,-0.767924,-1.77044,-2.06241,-1.06073,0.656499,-0.684395,-1.81138,-1.50006,-1.59944,-1.49456,-1.41224,-1.37237,-1.36121,0 +1.65795,-1.64984,-1.04018,1.68504,1.47174,1.63232,-1.65079,-1.05646,1.81296,1.44771,1.62132,-1.67317,-1.03752,1.59846,1.4609,1.88452,-1.7875,-1.02753,2.81048,1.69917,-0.921349,-1.00281,0.49089,-0.63392,-1.80611,-0.392988,-1.071,0.538916,-0.747724,-1.70951,-1.17173,-1.00575,0.588682,-0.666833,-1.77669,-1.32016,-1.52055,-1.43585,-1.39057,-1.38834,-1.4077,1 +0.430449,-1.10792,-0.985538,1.38457,0.627223,0.427711,-1.11138,-1.00551,1.27216,0.574299,0.399494,-1.14326,-1.00455,0.936162,0.561635,0.498086,-1.23329,-0.996072,1.35477,0.723206,-1.13688,-0.991554,0.580766,-0.65382,-1.1907,-0.733861,-1.0654,0.61158,-0.761877,-1.27317,-1.38411,-0.989806,0.664705,-0.681296,-1.22682,-0.290498,-0.93975,-1.10197,-1.10145,-1.1276,-1.15645,1 +0.902228,-1.35395,-1.06643,1.55833,1.06224,0.865646,-1.32847,-1.07961,1.89532,0.966966,0.786555,-1.3213,-1.04594,2.14977,0.908045,0.868385,-1.39349,-1.01381,2.4237,1.04419,-1.34874,-1.03222,0.57131,-0.658557,-1.4648,-1.0808,-1.03329,0.534348,-0.740298,-1.32084,-1.64647,-0.983389,0.615629,-0.672351,-1.35982,-0.717259,-1.32131,-1.34534,-1.31891,-1.31204,-1.31633,1 +0.631551,-0.701936,-0.926467,-0.578796,1.26393,0.558786,-0.650591,-0.947956,-0.522574,1.19523,0.482324,-0.565833,-0.852293,-0.272127,1.031,0.496767,-0.486812,-0.651581,-0.00600698,0.918131,-1.62076,0.564964,-2.11759,1.25391,-0.181761,-1.53673,0.564184,-2.79852,1.389,-0.201771,-2.21475,0.921499,-3.27868,2.13305,-0.190417,-1.19456,-1.2723,-1.19536,-1.15683,-1.12319,-1.10389,0 +-0.0740238,-0.704375,-0.841398,0.18491,0.320483,-0.108787,-0.67504,-0.83769,0.275975,0.207428,-0.125439,-0.678378,-0.799389,0.091895,0.126938,-0.0597807,-0.779928,-0.790213,-0.453408,0.198263,-0.759638,-0.744285,0.278634,-0.491519,-0.678877,-0.38873,-0.843467,0.308409,-0.6132,-0.706574,-1.19574,-0.763706,0.357445,-0.527562,-0.758959,-0.0365721,-0.61206,-0.79585,-0.831073,-0.836061,-0.834491,1 +1.84483,-1.75467,-1.08978,2.25142,1.65917,1.766,-1.72528,-1.10485,2.54327,1.58827,1.65219,-1.69885,-1.06329,2.4324,1.46014,1.78466,-1.75091,-1.02973,2.7877,1.5638,-1.042,-1.05287,0.548322,-0.65384,-1.85318,-0.61258,-1.08002,0.553989,-0.753391,-1.73688,-1.40378,-1.02184,0.616108,-0.676878,-1.74737,-1.50467,-1.69279,-1.54985,-1.47948,-1.45837,-1.45408,1 +0.223551,-1.03733,-0.993944,0.553759,0.823317,0.153705,-0.98012,-1.00284,0.811933,0.707703,0.0762227,-0.917251,-0.935102,0.799309,0.526242,0.12355,-0.985158,-0.894012,0.216984,0.566533,-1.04748,-0.869534,0.405172,-0.57199,-0.973813,-0.693261,-0.924957,0.40719,-0.671721,-0.917431,-1.48412,-0.864187,0.47027,-0.593169,-1.00171,-0.483333,-1.09893,-1.1494,-1.13152,-1.10762,-1.11627,1 +1.63419,-1.71562,-1.03782,2.42336,1.45677,1.62158,-1.71406,-1.06367,1.88321,1.3815,1.63269,-1.73215,-1.04678,0.705225,1.38272,1.82721,-1.79439,-1.02169,0.549461,1.51993,-1.4026,-1.05691,0.549051,-0.647603,-1.81056,-1.04781,-1.12894,0.599037,-0.762377,-1.91429,-1.80737,-1.03369,0.599077,-0.660546,-1.85524,-1.37966,-1.49922,-1.39363,-1.32106,-1.29011,-1.26177,1 +2.22024,-1.92785,-1.14414,2.6675,2.01004,2.16279,-1.89894,-1.16571,3.53747,1.96107,1.97564,-1.81463,-1.10576,4.36023,1.7907,1.79939,-1.7454,-1.02538,2.76207,1.60794,-1.58639,-1.04133,0.560536,-0.648682,-1.72556,-1.22158,-1.11209,0.578427,-0.751322,-1.91017,-1.84685,-0.996072,0.515718,-0.61172,-1.85533,-2.05194,-1.89919,-1.68835,-1.58753,-1.55093,-1.53275,1 +1.593,-1.78459,-1.12214,3.18655,1.45161,1.52711,-1.75325,-1.13794,3.57249,1.39866,1.36077,-1.70515,-1.0894,3.44942,1.30507,1.26167,-1.71977,-1.04755,3.72376,1.36708,-1.90101,-1.07263,0.608872,-0.662575,-1.83564,-1.76891,-1.12625,0.650201,-0.769393,-1.85182,-2.14945,-1.07199,0.692031,-0.690432,-1.90309,-1.11045,-1.59221,-1.52609,-1.45128,-1.41609,-1.41777,1 +0.681826,-1.26422,-1.03555,1.46179,0.970975,0.697159,-1.26212,-1.058,1.67493,0.953343,0.658148,-1.26478,-1.0404,2.05464,0.957931,0.658428,-1.30015,-1.00754,2.59755,1.03944,-1.48326,-0.954053,0.628642,-0.651731,-1.17775,-1.09951,-1.07051,0.642115,-0.764296,-1.39874,-1.51781,-1.00979,0.679967,-0.685094,-1.34361,-0.688603,-1.19069,-1.23694,-1.23978,-1.24785,-1.27472,0 +0.558057,-1.26216,-1.01946,1.60395,0.736299,0.57242,-1.26863,-1.0401,1.60655,0.728493,0.560526,-1.27922,-1.02704,1.55591,0.768064,0.507941,-1.26922,-0.984008,1.05738,0.810593,-1.39979,-1.00109,0.619217,-0.65435,-1.36477,-0.993164,-1.08033,0.661996,-0.763356,-1.45403,-1.6237,-1.00868,0.6939,-0.682166,-1.39915,-0.479085,-1.04373,-1.14771,-1.14457,-1.16466,-1.18595,1 +1.76271,-1.8696,-1.11843,4.26242,1.572,1.77918,-1.88942,-1.14587,4.33317,1.56291,1.83188,-1.92448,-1.11386,4.863,1.62964,2.0868,-1.97036,-1.06854,4.79183,1.79692,-0.986077,-1.10274,0.594839,-0.664495,-2.05797,-0.504133,-1.1534,0.63201,-0.771532,-2.03664,-1.20037,-1.09492,0.679637,-0.691721,-2.09225,-1.47147,-1.63463,-1.56479,-1.50749,-1.51357,-1.52953,1 +1.08257,-1.43844,-0.942739,1.65889,1.00331,1.1421,-1.48018,-0.987856,0.660617,1.05609,1.17927,-1.51848,-1.01586,-0.0309648,1.1946,1.19086,-1.53167,-0.996902,0.0502955,1.27526,-1.703,-1.03725,0.560845,-0.650501,-1.58566,-1.41563,-1.12114,0.61181,-0.764346,-1.76612,-2.1638,-1.00267,0.601706,-0.664824,-1.55369,-0.79576,-1.13919,-1.14035,-1.10008,-1.04682,-0.995603,0 +-0.331928,0.317674,0.077802,-0.594349,0.422273,-0.340753,0.345041,0.0941638,-0.584764,0.447161,-0.353127,0.418405,0.277194,-0.498276,0.333287,-0.385781,0.528111,0.574918,-0.512969,0.0606104,1.30615,0.156543,-0.711072,0.344222,0.343542,1.0208,0.851123,-1.51718,0.949255,0.719318,0.951105,0.484093,-0.983229,0.565373,0.650721,-0.442193,-0.390299,-0.24528,-0.144949,-0.0945737,-0.0557527,1 +-0.200062,-0.249168,-0.360184,-0.139471,-0.165759,-0.176024,-0.292767,-0.402803,-0.281022,-0.131736,-0.178363,-0.366281,-0.609702,-0.338804,0.00494746,-0.172555,-0.410509,-0.69466,-0.218843,0.127348,1.21203,-0.604834,0.276025,-0.46922,-0.309698,1.81418,-0.760767,0.295465,-0.593409,-0.515638,1.5619,-0.644934,0.329649,-0.486172,-0.439135,0.206729,0.0354528,-0.135943,-0.203191,-0.22448,-0.249088,0 +-0.554349,0.788084,1.08842,-0.634859,-0.726994,-0.554039,0.764396,1.13865,-0.664825,-0.697778,-0.546103,0.73547,1.18208,-0.658278,-0.67453,-0.533139,0.698228,0.962529,-0.61177,-0.636688,1.26774,0.739798,-1.32785,0.759678,0.680877,1.4096,0.759838,-1.96833,1.04507,0.67445,1.20677,0.723446,-1.36399,0.749103,0.635909,0.616248,0.809564,0.899979,0.972534,1.01342,1.05969,0 +-0.452379,0.775051,0.947097,-0.678128,-0.38855,-0.439984,0.765395,0.973523,-0.689603,-0.317635,-0.467651,0.809464,1.19313,-0.604704,-0.38833,-0.520645,0.863497,1.54812,-0.568801,-0.615179,1.24557,1.18704,-2.18492,1.55627,0.726475,0.986427,1.68823,-2.99016,2.21044,0.901539,0.863857,1.32123,-2.17178,1.53606,0.881218,0.317884,0.43035,0.529081,0.654939,0.739248,0.786775,0 +1.00563,-1.46082,-1.04271,1.9051,1.2419,1.05234,-1.4813,-1.06589,1.97255,1.26659,1.02697,-1.51278,-1.05118,1.98105,1.33238,0.962159,-1.52816,-1.01937,2.09968,1.35397,0.901909,-0.991045,0.57138,-0.651711,-1.28725,1.49634,-1.09638,0.599077,-0.762117,-1.64186,1.22776,-1.03031,0.650821,-0.682206,-1.56715,-1.08677,-1.35691,-1.33022,-1.29902,-1.28318,-1.26936,0 +-0.455807,0.42977,0.417876,-0.511189,-0.616868,-0.456786,0.420574,0.483713,-0.575288,-0.625664,-0.466042,0.382593,0.377495,-0.682356,-0.623775,-0.458206,0.338364,0.0317744,-0.567682,-0.522684,0.85813,-0.0136932,-0.177433,-0.136423,0.354866,1.14334,-0.113335,-0.418385,-0.158023,0.256804,1.05236,0.00438787,-0.298124,-0.0696358,0.314606,0.57178,0.595779,0.598457,0.610891,0.635239,0.641706,1 +-0.578797,0.98141,1.28162,-0.688633,-0.675959,-0.574049,0.967216,1.30133,-0.705175,-0.606163,-0.586723,1.0019,1.54617,-0.630921,-0.667583,-0.609192,1.03673,1.93867,-0.608082,-0.866836,1.08703,1.31965,-1.9124,1.35283,0.883328,0.844087,1.8488,-2.75254,2.22235,1.05431,0.741137,1.46149,-1.99671,1.50215,1.01345,0.593929,0.69545,0.798819,0.928705,1.01721,1.05774,1 +-0.36709,0.562884,0.700127,-0.656298,-0.0299653,-0.362282,0.550111,0.713361,-0.663725,0.038511,-0.369489,0.57215,0.872783,-0.579026,-0.00312859,-0.385831,0.607063,1.20388,-0.563684,-0.16401,1.107,0.868745,-1.80698,1.13258,0.59199,1.06477,1.30221,-3.04525,1.91785,0.684475,0.783307,0.930365,-1.84303,1.14369,0.688383,-0.0943638,0.105569,0.217803,0.328339,0.40933,0.454947,1 +-0.635419,1.12959,1.55462,-0.692591,-0.85829,-0.635119,1.11716,1.58437,-0.713781,-0.788664,-0.637018,1.13457,1.78988,-0.649402,-0.85707,-0.641626,1.13851,2.07859,-0.627773,-0.993883,0.853052,1.66474,-2.24235,1.77168,1.06629,0.504293,1.74525,-2.34529,1.8976,1.10471,0.40837,1.51994,-1.75903,1.39436,1.1237,0.761587,0.909625,1.03805,1.19641,1.27784,1.31089,1 +-0.417156,0.441704,-0.0598607,-0.577997,0.235205,-0.433638,0.474338,-0.0169018,-0.564224,0.234105,-0.446012,0.534288,0.188358,-0.480905,0.116163,-0.457856,0.580236,0.417845,-0.48938,-0.0497356,0.195754,0.170047,-0.314776,-0.0388009,0.538996,0.247509,0.620136,-0.978671,0.385191,0.708403,-0.0402802,0.225999,-0.335746,-0.0289757,0.556817,-0.378215,-0.0825194,0.0139232,0.0486062,0.0647883,0.077712,0 +-0.61233,1.04491,1.28146,-0.689792,-0.669522,-0.610371,1.03527,1.32644,-0.706724,-0.608942,-0.619407,1.06986,1.57553,-0.63262,-0.695939,-0.634579,1.10998,2.00086,-0.613749,-0.914282,1.13286,1.35055,-1.92733,1.51466,0.921879,0.611481,1.90993,-2.20798,2.11769,1.14955,0.703726,1.55674,-1.81637,1.53465,1.08784,0.586803,0.688653,0.826435,0.970795,1.05425,1.09468,1 +0.359824,-0.888015,-0.944958,-0.282791,1.17652,0.338544,-0.853342,-0.986337,-0.119961,1.09009,0.307599,-0.763127,-0.927786,0.310018,0.903567,0.375376,-0.727564,-0.774701,0.550171,0.586553,0.435047,-0.840658,0.589072,-0.638607,-0.690192,-1.06809,-0.124459,1.49725,-0.365741,-0.291987,-0.753781,-0.451579,0.879879,-0.568452,-0.289888,-1.05869,-1.27788,-1.18673,-1.16399,-1.16794,-1.148,1 +0.749803,-0.689982,-1.00223,-0.535348,1.49698,0.786895,-0.656229,-1.01083,-0.460165,1.45625,0.810193,-0.573599,-0.936842,-0.169747,1.2972,0.781547,-0.432039,-0.799449,0.165289,1.06653,1.52639,-0.736139,0.467611,-0.615169,-0.596348,0.53158,1.05555,0.464392,0.180712,0.153455,0.446132,0.234245,0.274036,-0.309478,0.137303,-1.55131,-1.41243,-1.29952,-1.25117,-1.2325,-1.21394,1 +0.554638,-0.67512,-0.639117,-0.371378,1.39287,0.502624,-0.625474,-0.646683,-0.289878,1.34779,0.475877,-0.582725,-0.557777,-0.135314,1.27275,0.436316,-0.536537,-0.485083,-0.10101,1.15229,1.06813,-0.49075,0.106598,-0.406761,-0.503493,1.45819,-0.136083,-0.745605,-0.0436986,-0.125788,1.06389,-0.304181,-0.257824,-0.211017,-0.464813,-1.5215,-1.21662,-1.02242,-0.950165,-0.944567,-0.949265,1 +1.14592,-1.36939,-0.990205,0.662466,2.01594,1.05768,-1.33979,-1.01753,0.946177,2.03402,1.02948,-1.3252,-0.964998,1.06528,2.04736,0.949275,-1.28056,-0.912793,0.876611,2.01266,0.819409,-0.915412,0.433678,-0.589881,-1.2228,0.0640187,-0.917611,0.398195,-0.670142,-0.969745,0.392638,-0.87879,0.422193,-0.579096,-1.37639,-2.24496,-1.70606,-1.45885,-1.39034,-1.37177,-1.36439,1 +-0.447261,0.026457,-0.3483,-0.192955,-0.560635,-0.445962,0.00897561,-0.335206,-0.311867,-0.542784,-0.437836,-0.0220894,-0.438216,-0.486842,-0.443343,-0.405651,-0.0794513,-0.527042,-0.534108,-0.300293,-1.42119,-0.536987,0.841328,-0.519925,-0.132245,-1.26711,-0.705824,0.811492,-0.645774,-0.213795,-1.08607,-0.59233,0.845616,-0.561925,-0.176054,0.642365,0.42837,0.144729,0.0313546,-0.0126538,-0.0501254,1 +2.09172,-1.32286,-0.968086,0.0218096,2.13987,2.03166,-1.30579,-0.989745,0.24537,2.16374,2.08379,-1.30141,-0.915162,0.590141,2.18197,2.2293,-1.29421,-0.811443,0.637558,2.25444,1.53003,-0.549441,-0.0258573,-0.38757,-1.08819,0.618377,-0.671651,0.44811,-0.548312,-0.747364,0.943718,-0.71443,0.264681,-0.483323,-1.05553,-2.42307,-1.79296,-1.50076,-1.40823,-1.3785,-1.36601,1 +1.29173,-1.20428,-0.648553,-0.215184,1.94847,1.24047,-1.2045,-0.672251,-0.135034,1.96755,1.30924,-1.20537,-0.560066,-0.180692,2.07036,1.31983,-1.16766,-0.520875,-0.389759,2.07132,1.94154,-0.529071,-0.350138,-0.124909,-1.62823,1.08714,-0.46924,0.311527,-0.421414,-0.570541,1.2738,-0.521835,-0.0666873,-0.255755,-0.895412,-2.15355,-1.62133,-1.30042,-1.18201,-1.1594,-1.1709,1 +-0.522444,0.334356,-0.298114,-0.38745,-0.395067,-0.53004,0.354277,-0.250957,-0.392258,-0.40886,-0.527362,0.355516,-0.268719,-0.383212,-0.38848,-0.515608,0.3462,-0.299284,-0.377515,-0.352357,-0.624194,-0.044608,0.833412,-0.384062,0.45065,-0.809983,-0.412028,0.771152,-0.549491,0.277924,-0.485002,-0.339574,0.783676,-0.479595,0.254055,0.395946,0.374937,0.222701,0.139532,0.103619,0.0789913,0 +1.27764,-1.20938,-0.896271,-0.107097,2.11541,1.28367,-1.19068,-0.911754,0.059141,2.14087,1.20751,-1.1236,-0.786275,0.220842,2.04865,0.989566,-1.012,-0.692551,0.200942,1.86527,1.957,-0.818499,0.280103,-0.542424,-1.56965,1.68349,-0.393477,0.154334,-0.48918,-0.436936,1.50861,-0.672541,0.241362,-0.508601,-0.881548,-2.45982,-1.65861,-1.35401,-1.26406,-1.24353,-1.24191,1 +-0.697978,1.0751,0.55156,-0.616568,-1.02867,-0.707294,1.08884,0.526022,-0.623065,-1.10435,-0.688783,1.11213,0.686434,-0.577457,-1.14569,-0.664894,1.09605,0.665724,-0.539066,-1.09227,-0.792772,0.851223,0.332407,0.289039,1.15883,-1.72004,0.591171,0.813571,0.158872,1.02572,-1.31585,0.821368,0.364452,0.186949,1.13851,1.00173,1.1153,1.08095,1.03479,1.03321,1.05586,1 +-0.712871,1.34328,1.25735,-0.699657,-1.02789,-0.718268,1.34651,1.21171,-0.712901,-1.05507,-0.702906,1.40316,1.6387,-0.631181,-1.10814,-0.688963,1.42811,2.07655,-0.586913,-1.18162,-0.484243,2.12736,-0.643495,1.40913,1.49472,-1.32517,1.86841,0.3068,1.3415,1.36296,-1.07564,2.10859,-0.331628,1.34671,1.49918,0.908725,1.13398,1.30566,1.39578,1.45914,1.47126,1 +-0.718428,1.29368,1.09778,-0.658697,-1.1992,-0.725914,1.30261,1.11103,-0.677538,-1.2486,-0.704555,1.31499,1.30257,-0.634489,-1.25852,-0.681047,1.29246,1.25123,-0.585153,-1.19345,-0.318374,1.40593,-0.316555,0.754391,1.34179,-1.03455,0.969465,0.310608,0.5102,1.18601,-0.663635,1.23018,-0.130376,0.634849,1.28776,1.06694,1.34259,1.43771,1.46046,1.46294,1.46747,0 +-0.617908,0.558976,-0.0583614,-0.452208,-0.864267,-0.629492,0.576178,-0.0707355,-0.460784,-0.902918,-0.611211,0.558936,-0.0847786,-0.46898,-0.868395,-0.583904,0.516477,-0.227709,-0.344451,-0.71552,-0.820828,-0.0840088,0.887805,-0.366321,0.516717,-1.514,-0.233286,0.954153,-0.432178,0.476847,-0.810933,-0.14217,0.83733,-0.378814,0.504933,0.91869,0.828075,0.604004,0.486392,0.411908,0.393018,1 +-0.498826,0.16382,-0.412968,-0.275965,-0.518696,-0.515128,0.187588,-0.36695,-0.303471,-0.534548,-0.518146,0.184669,-0.374217,-0.417406,-0.537557,-0.499715,0.158302,-0.406441,-0.526402,-0.46936,-0.716159,-0.431229,0.814961,-0.49051,0.0994315,-0.792232,-0.554179,0.777279,-0.608482,0.0946338,-0.299813,-0.454607,0.827495,-0.521515,0.0891862,0.602105,0.420884,0.196174,0.065328,0.0568722,0.0623395,1 +-0.723716,1.42127,1.6471,-0.691101,-1.23398,-0.729203,1.42116,1.64511,-0.713641,-1.23715,-0.709043,1.42627,1.80678,-0.6538,-1.24846,-0.687493,1.40608,1.74839,-0.586163,-1.20402,-0.241462,1.87575,-0.739438,1.34138,1.46414,-0.803687,1.5383,-0.0232087,1.15014,1.33066,-0.361793,1.74756,-0.644215,1.22335,1.39401,1.08008,1.40053,1.57466,1.64923,1.67683,1.68894,1 +2.07022,-1.39572,-0.905507,-0.0391705,2.08557,2.13029,-1.40543,-0.91974,0.136793,2.11495,2.27221,-1.42249,-0.849824,0.390279,2.20847,2.39705,-1.40068,-0.780848,0.513099,2.28055,1.92577,-0.501814,-0.179382,-0.288828,-1.32554,1.63124,-0.663415,0.220242,-0.499665,-0.975652,1.69967,-0.701637,0.168877,-0.436296,-1.20734,-2.25898,-1.79763,-1.49011,-1.39213,-1.37593,-1.37538,1 +-0.697279,1.09299,1.07477,-0.600126,-1.34238,-0.699197,1.06458,1.09264,-0.652391,-1.32129,-0.671021,0.993563,0.686014,-0.616868,-1.17155,-0.646304,0.957611,0.314186,-0.452418,-0.987127,-0.891094,0.488691,0.935052,-0.00412783,0.948086,-1.37556,0.294716,1.12408,-0.0389609,0.854582,-0.773941,0.457876,0.843947,0.0150728,0.936701,1.14999,1.50772,1.54547,1.45299,1.36463,1.30773,1 +0.271257,-0.425822,-0.502454,-0.506282,1.106,0.246519,-0.36697,-0.518756,-0.44869,1.02227,0.199213,-0.268409,-0.364462,-0.294446,0.881918,0.0322742,-0.130027,-0.198593,-0.248628,0.561955,0.620056,-0.083579,-0.0946036,-0.18281,0.189178,1.18965,0.280453,-1.08556,0.330058,0.0357826,0.894922,0.014433,-0.568781,0.0904159,0.0363021,-1.06911,-1.03526,-0.882648,-0.793731,-0.750842,-0.744346,1 +0.881748,-0.831303,-0.598787,-0.381453,1.49679,0.93888,-0.839339,-0.604784,-0.308479,1.50271,0.869954,-0.784376,-0.463783,-0.216984,1.4662,0.661886,-0.69457,-0.355816,-0.268928,1.31355,2.01281,-0.38709,-0.28655,-0.239143,-1.13085,2.20629,-0.145139,-0.450549,-0.214605,-0.270777,1.82419,-0.284191,-0.278284,-0.233556,-0.520875,-1.69644,-1.28651,-1.00824,-0.901349,-0.887825,-0.913363,1 +-0.105678,-0.563404,-0.75626,0.00795641,0.236644,-0.0985316,-0.576808,-0.742566,0.0559826,0.232626,-0.136223,-0.577128,-0.752322,0.127827,0.239403,-0.174035,-0.548572,-0.750832,0.295415,0.24451,-0.789494,-0.532019,0.787275,-0.580776,-0.423622,-0.963538,-0.815541,0.75488,-0.727414,-0.69506,-0.586743,-0.737329,0.77593,-0.642645,-0.519176,-0.0916951,-0.403112,-0.496847,-0.519975,-0.477886,-0.471739,0 +0.0783017,-0.789484,-0.87867,0.330808,0.502494,0.077892,-0.785206,-0.885047,0.418125,0.479305,0.0240883,-0.750833,-0.85768,0.406721,0.423413,-0.0400404,-0.685744,-0.806195,0.309049,0.405402,-0.678528,-0.6942,0.712651,-0.602335,-0.570411,-0.916451,-0.937291,0.697099,-0.740477,-0.915352,-0.389199,-0.845666,0.725705,-0.65386,-0.750703,-0.305271,-0.720377,-0.823847,-0.792332,-0.749633,-0.711222,0 +0.0747734,-0.727074,-0.795391,0.264341,0.219073,0.0508252,-0.709782,-0.772612,0.201521,0.1828,-0.0637487,-0.649922,-0.713911,-0.302102,0.0510549,-0.130986,-0.574589,-0.619657,-0.631371,-0.0519445,-1.31735,-0.723935,0.802157,-0.584114,-0.604694,-1.61338,-0.924427,0.793891,-0.719928,-0.954113,-1.01303,-0.793052,0.845966,-0.630841,-0.728074,-0.0488061,-0.373887,-0.549171,-0.555168,-0.508601,-0.458715,0 +0.104279,-0.707474,-0.69567,0.192076,0.099981,0.115913,-0.7159,-0.682086,0.0361023,0.0556027,0.0395407,-0.676019,-0.662416,-0.440654,0.000239765,-0.0259173,-0.611111,-0.608182,-0.635079,0.0215695,-1.25748,-0.750163,0.825246,-0.572919,-0.718378,-1.49594,-0.914032,0.841828,-0.703635,-1.01068,-0.998271,-0.79688,0.881798,-0.614809,-0.787864,0.0109446,-0.299563,-0.424142,-0.420024,-0.368619,-0.332197,1 +-0.195154,-0.507372,-0.757309,-0.18277,0.131666,-0.165959,-0.542754,-0.768794,-0.0802807,0.155973,-0.167418,-0.533789,-0.767125,0.151756,0.211256,-0.227998,-0.393717,-0.597268,0.106028,0.166718,-1.30008,-0.254265,0.970075,-0.484543,-0.240022,-1.38881,-0.677378,0.850144,-0.686374,-0.602755,-0.802717,-0.632011,0.789024,-0.620166,-0.418755,0.109406,-0.364261,-0.534328,-0.580056,-0.599197,-0.579916,0 +0.229568,-1.00503,-0.912853,0.921929,0.335586,0.240003,-1.01524,-0.916911,0.684585,0.278004,0.215455,-1.01394,-0.889575,-0.0929145,0.246189,0.219772,-0.997682,-0.818799,-0.609082,0.317675,-1.28406,-0.897361,0.669022,-0.639497,-0.95921,-1.60271,-1.04963,0.684205,-0.758918,-1.32828,-0.895901,-0.947766,0.739018,-0.67342,-1.16878,-0.129217,-0.625644,-0.774111,-0.761067,-0.756939,-0.784086,1 +0.208588,-0.869245,-0.948436,-0.290947,0.854552,0.208138,-0.852942,-0.941379,-0.161261,0.788494,0.153155,-0.782917,-0.839729,0.114864,0.690602,0.0830094,-0.659437,-0.647643,0.233266,0.588662,-1.54865,0.0501955,1.32584,-0.327789,-0.226499,-1.85727,-0.534978,1.05404,-0.63277,-0.795341,-1.20679,-0.580686,0.887616,-0.61279,-0.598937,-0.669502,-1.02303,-1.00604,-0.996242,-0.978901,-0.956012,0 +0.315046,-1.02301,-0.983379,-0.0412995,0.833972,0.335846,-1.03557,-0.993943,0.155484,0.845016,0.284331,-0.995163,-0.934773,0.529611,0.765055,0.196894,-0.891853,-0.791473,0.610291,0.63402,-1.29865,-0.345761,1.10713,-0.465722,-0.536677,-1.48976,-0.759718,0.916071,-0.692601,-1.03133,-0.790433,-0.754041,0.836551,-0.646064,-0.866106,-0.577617,-0.97991,-1.05095,-1.02914,-1.02509,-1.01751,0 +-0.712471,1.48582,2.32173,-0.705274,-1.19534,-0.71395,1.46261,2.25392,-0.734441,-1.14991,-0.69336,1.43392,2.12434,-0.666604,-1.12598,-0.677538,1.42346,1.91474,-0.573059,-1.09694,-0.165569,2.1546,-0.852103,1.58009,1.50032,-0.878,1.74613,0.160052,1.44472,1.3511,-0.523034,1.97488,-0.611031,1.45156,1.44922,0.981549,1.42359,1.70129,1.80099,1.82168,1.82427,0 +0.227279,-1.02989,-0.963478,0.73635,0.967266,0.248069,-1.03832,-0.977541,0.85768,0.972204,0.260772,-1.02907,-0.949895,0.926926,1.08045,0.217683,-0.965567,-0.89853,0.718998,0.997492,-1.19798,-0.872883,0.610251,-0.641576,-0.886596,-0.957361,-0.995762,0.638877,-0.757949,-0.966987,-0.71382,-0.94076,0.658228,-0.674949,-0.969615,-0.779378,-1.17043,-1.15633,-1.17016,-1.1665,-1.16615,0 +-0.740288,1.62652,2.82602,-0.705784,-1.42007,-0.745555,1.62344,2.81073,-0.746225,-1.44812,-0.718218,1.57452,2.7818,-0.721157,-1.41797,-0.693351,1.53053,2.1485,-0.619707,-1.28866,-1.07841,2.25197,-0.61144,1.87179,1.62893,-1.79495,1.54212,0.174604,1.27788,1.40256,-1.38238,2.05188,-0.537177,1.66387,1.56983,1.16854,1.65747,2.08287,2.28337,2.30886,2.28322,1 +-0.623495,0.631991,0.324641,-0.505742,-0.950784,-0.626523,0.616768,0.317914,-0.546842,-0.937531,-0.609212,0.584604,0.121321,-0.540515,-0.875401,-0.589961,0.552379,-0.0545133,-0.44865,-0.77642,-0.441024,0.101241,0.870574,-0.248368,0.601416,-0.466222,-0.159162,0.957071,-0.370838,0.435707,-0.10144,-0.0476067,0.784156,-0.317774,0.516107,0.931954,0.942539,0.803067,0.67332,0.59317,0.55106,1 +-0.622765,0.628502,0.255625,-0.522194,-0.887256,-0.626923,0.618657,0.254635,-0.543554,-0.891993,-0.614009,0.605054,0.0948635,-0.498066,-0.867395,-0.601715,0.59227,-0.016372,-0.413527,-0.819979,-1.11149,0.168358,0.722566,-0.221801,0.658148,-1.06353,-0.0253076,0.913373,-0.310588,0.506162,-0.927796,0.0250877,0.665224,-0.271557,0.578187,0.861938,0.888825,0.744565,0.631091,0.5518,0.543184,1 +-0.465712,0.148547,-0.372828,-0.277124,-0.281492,-0.465752,0.141101,-0.396996,-0.285041,-0.254176,-0.447961,0.0932142,-0.516827,-0.236994,-0.182291,-0.415666,0.0388408,-0.577407,-0.135444,-0.0908754,-1.19491,-0.397335,0.679627,-0.474158,0.167078,-1.15249,-0.581255,0.61154,-0.59146,0.0506953,-0.906046,-0.473548,0.704135,-0.522584,0.107367,0.352307,0.166849,0.0154124,-0.067497,-0.10309,-0.115084,0 +-0.645354,1.48895,3.20761,-0.744205,-1.0717,-0.638377,1.46451,3.07633,-0.771063,-1.00521,-0.629822,1.47196,3.32313,-0.685274,-0.987556,-0.639267,1.4922,3.55871,-0.59226,-1.05497,-0.440714,3.70601,-3.47465,4.21334,1.65274,-0.822277,3.34908,-2.32418,4.00824,1.44463,-0.851663,3.65225,-3.32719,4.34031,1.63663,0.855761,1.27146,1.6571,1.96901,2.11098,2.16537,1 +-0.541205,0.686264,0.577477,-0.552949,-0.703016,-0.528691,0.649762,0.499245,-0.583055,-0.664705,-0.504693,0.609841,0.217923,-0.529761,-0.567092,-0.482044,0.569471,0.0520445,-0.447171,-0.464233,-0.4297,0.481844,0.473418,-0.00958516,0.807605,-0.484943,-0.00386812,0.704905,-0.271417,0.568252,-0.189447,0.14324,0.646673,-0.208988,0.677608,0.542424,0.815461,0.811743,0.750133,0.692241,0.670492,0 +-0.641146,1.41245,2.40888,-0.736679,-1.00085,-0.635429,1.39297,2.30812,-0.758849,-0.936441,-0.627863,1.4139,2.57803,-0.663805,-0.922548,-0.635839,1.44404,3.03163,-0.574479,-0.986877,-0.578007,3.10018,-2.70305,3.24882,1.58834,-0.89858,3.18809,-2.56343,3.78369,1.40277,-1.01877,3.46067,-3.29162,4.07435,1.62047,0.813921,1.16007,1.44834,1.66691,1.79794,1.83788,0 +-0.667483,1.43131,2.53327,-0.73399,-1.07918,-0.666354,1.41632,2.45727,-0.757799,-1.03083,-0.659787,1.43893,2.74181,-0.671211,-1.02538,-0.664295,1.4627,3.08415,-0.589861,-1.10948,-0.771162,3.25493,-3.14998,3.5894,1.59398,-0.979371,2.86739,-2.35114,3.29433,1.37422,-1.14004,3.14003,-3.05101,3.63604,1.58451,0.881418,1.2514,1.56699,1.78412,1.89971,1.94731,1 +-0.73449,1.56829,2.49162,-0.715829,-1.33603,-0.740037,1.56909,2.42241,-0.743776,-1.34856,-0.717699,1.57734,2.68584,-0.688083,-1.34403,-0.69477,1.54947,2.76835,-0.640596,-1.31017,-1.39867,2.53996,-1.19906,2.17022,1.63985,-1.86225,2.02162,-0.492339,1.88332,1.45556,-1.81986,2.48307,-1.29607,2.28432,1.62711,1.11893,1.55139,1.82726,1.98585,2.06713,2.06553,1 +-0.677428,1.52718,2.9973,-0.737469,-1.17142,-0.67389,1.50613,2.87722,-0.764126,-1.10334,-0.665664,1.50927,3.00859,-0.679907,-1.08615,-0.668223,1.52188,3.25241,-0.596948,-1.13413,-0.26574,3.31175,-3.05208,3.75279,1.62514,-0.59207,2.9548,-2.38597,3.57868,1.45322,-0.63237,3.28018,-3.27156,4.05825,1.61908,0.950065,1.36656,1.68274,1.9188,2.02736,2.04917,0 +-0.611751,1.35251,2.81911,-0.736479,-0.819379,-0.605893,1.32909,2.69309,-0.761727,-0.740917,-0.597907,1.33027,2.89307,-0.675909,-0.721647,-0.605943,1.34854,3.19978,-0.593879,-0.767974,0.0534938,3.57882,-4.80191,5.02458,1.5152,-0.161991,2.82447,-3.55636,3.94453,1.34018,-0.256534,3.23349,-4.55551,4.77287,1.49433,0.595199,1.04116,1.38257,1.63001,1.78109,1.81528,0 +-0.701806,1.3939,2.26076,-0.7135,-1.03793,-0.708803,1.41643,2.16766,-0.738359,-1.07122,-0.692781,1.4472,2.3459,-0.669482,-1.10157,-0.679068,1.46389,2.31853,-0.589022,-1.11777,-0.0585013,2.66026,-2.91699,3.49947,1.51799,-0.624154,1.98122,-1.52382,2.21577,1.40898,-0.519036,2.44551,-2.53976,2.97728,1.51557,0.886446,1.1831,1.45693,1.63574,1.72864,1.75131,1 +-0.670682,1.16035,1.12259,-0.657928,-0.937031,-0.678568,1.17893,1.12644,-0.677708,-0.976862,-0.662346,1.20072,1.32811,-0.637388,-0.977541,-0.644914,1.18957,1.18547,-0.564863,-0.941319,-0.154254,1.48691,-1.03603,1.1799,1.31117,-0.501494,0.895601,-0.405591,0.602465,1.08899,-0.372568,1.15168,-0.902958,0.896401,1.17922,0.791462,1.10613,1.23973,1.30596,1.31788,1.3337,0 +-0.514318,1.10255,1.73319,-0.723975,-0.620266,-0.51119,1.0924,1.66442,-0.741377,-0.586543,-0.519845,1.13467,2.04283,-0.645724,-0.609951,-0.554738,1.18007,2.45441,-0.559166,-0.707793,-0.0130736,3.08724,-4.14563,3.96415,1.34025,-0.212316,2.50581,-3.14918,3.02936,1.14874,-0.471059,2.7707,-3.67364,3.4092,1.31846,0.451899,0.791283,1.04768,1.22879,1.36152,1.42575,0 +-0.555958,0.606243,0.180752,-0.528361,-0.548541,-0.555598,0.59269,0.166938,-0.535048,-0.525493,-0.541135,0.57133,0.0416195,-0.46929,-0.471419,-0.526372,0.557227,-0.0316445,-0.394287,-0.42796,-0.513788,0.385751,0.559956,-0.0850282,0.726205,-0.801588,-0.00524744,0.83701,-0.275225,0.564344,-0.498876,0.0519846,0.675699,-0.250807,0.620066,0.479475,0.603025,0.540265,0.465812,0.401883,0.386481,1 +-0.73641,1.64082,3.16288,-0.725375,-1.43555,-0.740217,1.63099,3.12006,-0.759228,-1.42072,-0.716259,1.60463,3.15237,-0.703146,-1.35626,-0.6945,1.57496,2.87941,-0.618657,-1.29233,-0.727634,3.0173,-1.89782,3.04286,1.71002,-1.14414,2.13088,-1.09491,2.07006,1.45263,-1.0664,2.64737,-1.83117,2.63716,1.62675,1.19862,1.676,2.06483,2.31489,2.37009,2.31231,1 +-0.640696,1.36718,2.53951,-0.730852,-0.883547,-0.637318,1.34593,2.45137,-0.75508,-0.823727,-0.627203,1.34947,2.61609,-0.668413,-0.795441,-0.630391,1.3693,2.84065,-0.582555,-0.850184,-0.410859,3.23137,-3.78095,3.9559,1.53635,-0.680297,2.64222,-2.87598,3.31717,1.34507,-0.804446,2.96811,-3.56131,3.76974,1.5359,0.698528,1.06382,1.39652,1.61063,1.72771,1.75308,0 +-0.620806,0.685794,0.403143,-0.55002,-1.03087,-0.622295,0.681396,0.436036,-0.577827,-1.00692,-0.616398,0.67461,0.22465,-0.520095,-0.933153,-0.607433,0.670571,0.0221891,-0.369669,-0.823897,-1.28365,0.240882,0.889574,-0.123849,0.671142,-1.46295,0.0784916,1.01933,-0.218623,0.568042,-1.20651,0.207948,0.849064,-0.112175,0.670022,0.976182,1.07297,0.957871,0.849794,0.826565,0.778119,1 +-0.561285,0.438365,-0.00210894,-0.411218,-0.800728,-0.557917,0.409689,0.00718637,-0.463533,-0.833572,-0.535458,0.348719,-0.0905957,-0.566003,-0.754681,-0.523224,0.303181,-0.230987,-0.550271,-0.661016,-2.03502,-0.247869,0.96053,-0.391128,0.305211,-2.70878,-0.382123,1.10359,-0.44912,0.20351,-2.16332,-0.212206,1.00684,-0.381673,0.368699,0.761197,0.770473,0.590821,0.475107,0.42855,0.425292,1 +-0.462913,0.150776,-0.371068,-0.281282,-0.28577,-0.467491,0.147658,-0.390989,-0.289758,-0.274096,-0.455507,0.112775,-0.476527,-0.288079,-0.221861,-0.437726,0.0758427,-0.537027,-0.223141,-0.152215,-1.74892,-0.3477,0.582815,-0.466851,0.182451,-1.73155,-0.583025,0.608702,-0.610271,0.0644286,-1.56233,-0.474598,0.661326,-0.516267,0.0940338,0.32735,0.209558,0.0434487,-0.0528741,-0.0927946,-0.0921349,0 +-0.721777,1.66997,3.67902,-0.743666,-1.29184,-0.723056,1.65869,3.55508,-0.774411,-1.2471,-0.705175,1.66715,3.78126,-0.701507,-1.23809,-0.691142,1.667,3.87523,-0.617088,-1.25676,-0.167518,3.86073,-3.59946,4.67424,1.68125,-0.85827,3.10115,-1.51942,3.7267,1.59915,-0.637618,3.56527,-2.99412,4.32861,1.65391,1.04777,1.50394,1.90712,2.20365,2.36728,2.40463,1 +-0.6323,0.680627,0.24438,-0.562384,-0.97932,-0.631041,0.665744,0.254175,-0.568232,-0.944258,-0.620456,0.670372,0.0918849,-0.461424,-0.893583,-0.609582,0.661446,-0.0448481,-0.284391,-0.812602,-0.158402,0.325041,0.976972,-0.159122,0.691522,-0.512169,0.262272,1.32023,-0.14228,0.618777,-0.038631,0.173625,0.909065,-0.227498,0.623794,0.965897,0.977632,0.811623,0.677478,0.61284,0.582225,1 +-0.400864,0.0145229,-0.515178,-0.219362,-0.115493,-0.413627,0.0290358,-0.506692,-0.213446,-0.162261,-0.40756,0.0154223,-0.532459,-0.241392,-0.157103,-0.389519,-0.0217195,-0.583334,-0.171616,-0.0603704,-0.22559,-0.322272,0.659587,-0.487221,0.181641,-0.270558,-0.657528,0.670432,-0.647203,-0.0653979,0.0733342,-0.548711,0.717399,-0.564913,-0.0138333,0.211836,0.0317546,-0.128577,-0.20489,-0.20515,-0.232696,0 +-0.217254,-0.515448,-0.781348,0.353517,-0.0563024,-0.222091,-0.528051,-0.793192,0.262022,-0.105798,-0.209757,-0.579866,-0.839349,0.0412198,-0.0772123,-0.152305,-0.656449,-0.862178,0.138842,0.100981,-0.110676,-0.848774,0.569141,-0.620386,-0.661016,-0.12331,-0.927266,0.568981,-0.727064,-0.69399,0.240502,-0.83764,0.635919,-0.647053,-0.636688,0.328179,-0.240102,-0.55071,-0.639697,-0.667003,-0.710212,1 +0.293326,-0.983599,-0.934383,0.605664,0.905816,0.293676,-0.972244,-0.94003,0.69437,0.87776,0.247829,-0.959231,-0.910075,0.568861,0.862697,0.190417,-0.943798,-0.866896,0.199922,0.767344,-0.51118,-0.834671,0.650302,-0.628932,-0.825176,-0.630751,-0.977991,0.689132,-0.747574,-1.01016,-0.263641,-0.901309,0.703875,-0.665074,-0.890924,-0.741437,-1.03656,-1.04793,-1.03432,-1.02221,-1.03215,0 +0.0924447,-0.728573,-0.862138,0.22441,0.662446,0.108717,-0.729513,-0.865496,0.323991,0.634269,0.113894,-0.732941,-0.836641,0.353867,0.675549,0.0699158,-0.685864,-0.742906,0.0167419,0.609422,-0.330158,-0.668263,0.638767,-0.61162,-0.506242,-0.393887,-0.894472,0.655079,-0.743036,-0.733981,-0.105928,-0.831453,0.677408,-0.659167,-0.676139,-0.560396,-0.77565,-0.867015,-0.881708,-0.89854,-0.89954,0 +-0.524193,1.12975,1.50776,-0.725325,-0.648822,-0.516747,1.12032,1.42033,-0.740318,-0.619996,-0.523773,1.17842,1.89052,-0.639017,-0.65403,-0.563304,1.24102,2.57461,-0.564114,-0.792982,0.0558527,2.93141,-3.44941,3.51718,1.4121,-0.303012,2.75857,-2.80195,3.23317,1.23012,-0.316245,2.9483,-3.52372,3.60984,1.39469,0.494218,0.783467,1.01537,1.17901,1.28071,1.3404,1 +-0.692161,1.0541,0.743536,-0.606773,-1.177,-0.697448,1.04994,0.7546,-0.629652,-1.17973,-0.67393,1.018,0.603395,-0.574309,-1.11606,-0.65412,1.00302,0.415507,-0.463893,-1.02261,-0.341273,0.587193,0.731202,0.0282463,0.999721,-0.978171,0.491859,1.10991,0.0868175,0.930994,-0.435377,0.517907,0.69452,0.0137834,0.967176,1.07672,1.30613,1.27671,1.17551,1.10989,1.08129,1 +-0.61291,0.579346,-0.156433,-0.500325,-0.623545,-0.621526,0.597128,-0.150017,-0.483683,-0.644414,-0.611501,0.61348,-0.160731,-0.383222,-0.65312,-0.597797,0.627742,-0.152295,-0.2852,-0.639097,1.03106,-0.176234,0.0913453,-0.233296,0.386121,-0.349739,0.170387,0.601925,-0.12147,0.722257,0.129447,-0.0133335,0.318474,-0.252366,0.604264,0.691701,0.534299,0.330868,0.222301,0.175224,0.170027,1 +-0.562435,0.354357,-0.313237,-0.397295,-0.519526,-0.567342,0.358694,-0.296605,-0.385411,-0.520245,-0.563764,0.351268,-0.341013,-0.317145,-0.519196,-0.561605,0.360263,-0.333907,-0.282811,-0.537947,0.20456,-0.40751,0.394567,-0.4895,0.198823,-0.16289,-0.182591,0.538796,-0.451469,0.415437,-0.218093,-0.340693,0.50988,-0.507871,0.273896,0.573389,0.425562,0.211217,0.0995812,0.0593509,0.0457676,1 +-0.432019,-0.00878572,-0.701986,-0.24493,0.0533439,-0.464273,0.0502654,-0.692671,-0.16413,-0.0406202,-0.485832,0.124819,-0.616928,-0.067367,-0.190167,-0.486772,0.16347,-0.547912,-0.0818798,-0.282851,1.26805,-0.675119,0.414847,-0.543694,-0.257114,0.0559826,-0.328059,0.67277,-0.495517,0.349819,0.542624,-0.520925,0.532889,-0.534138,0.0284959,0.12203,-0.22452,-0.402603,-0.458785,-0.457846,-0.445542,1 +-0.546572,0.251367,-0.412428,-0.287479,-0.625154,-0.557047,0.26583,-0.399275,-0.293836,-0.667953,-0.544453,0.261802,-0.418615,-0.333377,-0.661266,-0.524073,0.252806,-0.425682,-0.393707,-0.594479,1.09368,-0.534418,0.418975,-0.505932,0.0108549,-0.189347,-0.446871,0.67369,-0.525503,0.258753,0.474708,-0.453128,0.534688,-0.505462,0.156293,0.740128,0.49018,0.179502,0.0504753,0.0252976,0.0317345,1 +-0.513189,0.16325,-0.476597,-0.321672,-0.397325,-0.518076,0.169537,-0.466082,-0.291907,-0.422053,-0.520625,0.167768,-0.500215,-0.199192,-0.424902,-0.523404,0.179082,-0.480145,-0.166189,-0.453128,1.41199,-0.550091,0.425142,-0.537837,-0.0202599,0.997222,-0.303831,0.61266,-0.505163,0.269038,1.19524,-0.47065,0.555468,-0.547322,0.0924146,0.500865,0.259823,0.0194105,-0.0928546,-0.144919,-0.154994,1 +-0.638457,0.835181,1.01834,-0.584773,-1.05378,-0.636558,0.792012,0.935042,-0.636479,-1.02111,-0.616478,0.741377,0.526682,-0.605504,-0.923928,-0.601865,0.717588,0.278843,-0.503763,-0.812462,-0.404972,0.448041,0.957461,-0.0130335,0.783157,-0.558656,0.111066,1.14091,-0.186099,0.584274,-0.169287,0.251437,0.913723,-0.141541,0.687213,0.93893,1.15373,1.18562,1.09985,0.982949,0.91893,1 +-0.616958,0.703426,0.616248,-0.516397,-1.11609,-0.606713,0.654789,0.575358,-0.59213,-1.06315,-0.582515,0.59193,0.282722,-0.637398,-0.947706,-0.566373,0.558596,0.0191406,-0.535738,-0.805765,-0.67509,0.0504154,0.949915,-0.213845,0.588922,-1.46019,-0.198383,1.10607,-0.28634,0.386841,-0.698358,0.0172716,0.886786,-0.212146,0.564364,1.03141,1.1849,1.09124,0.98078,0.932064,0.947656,1 +-0.287519,-0.232486,-0.434617,-0.440534,-0.0982619,-0.292467,-0.236254,-0.44848,-0.393727,-0.113405,-0.313756,-0.215015,-0.439465,-0.238593,-0.158982,-0.295335,-0.226469,-0.349089,-0.151126,-0.189147,1.1534,-0.252386,-0.426671,0.0530042,-0.161961,1.70256,-0.0809604,-1.3214,0.438335,-0.176783,1.18144,-0.196744,-0.623335,0.248049,-0.167388,0.260522,-0.0719246,-0.279173,-0.293646,-0.279603,-0.24557,1 +-0.405551,-0.0743136,-0.353737,-0.309318,-0.415706,-0.4073,-0.0805206,-0.362732,-0.313936,-0.418925,-0.424182,-0.0711653,-0.458556,-0.272866,-0.403243,-0.409809,-0.0920851,-0.434617,-0.356285,-0.403782,0.924487,-0.460554,0.177643,-0.445572,-0.0933641,1.61894,-0.46909,-0.067657,-0.412898,-0.12162,1.08674,-0.480255,0.229118,-0.463923,-0.131486,0.444482,0.223991,0.010205,-0.0480365,-0.0620796,-0.0219792,1 +-0.14392,-0.518856,-0.777769,-0.134774,0.214385,-0.181481,-0.472309,-0.767314,-0.038801,0.158812,-0.238893,-0.395716,-0.708233,0.0691062,0.0288258,-0.211596,-0.433568,-0.665854,0.0503654,-0.0200001,1.27071,-0.646813,0.200412,-0.460784,-0.521035,1.78264,-0.582755,-0.0687764,-0.405471,-0.350668,1.40832,-0.648193,0.264671,-0.491819,-0.540176,0.104339,-0.434897,-0.574559,-0.584934,-0.554948,-0.538696,1 +-0.406131,-0.0691662,-0.723416,-0.28553,0.195514,-0.44818,0.0085758,-0.721967,-0.193745,0.065198,-0.48933,0.144529,-0.589212,-0.0991215,-0.196894,-0.504863,0.229707,-0.425372,-0.268299,-0.425791,0.710852,-0.685184,0.405182,-0.526332,-0.304791,-1.31672,-0.222011,0.990255,-0.412868,0.401663,-0.698568,-0.310968,0.643875,-0.480485,0.32605,0.00948534,-0.365221,-0.492369,-0.514008,-0.506372,-0.473548,1 +-0.563734,0.406771,-0.36687,-0.606263,0.0555128,-0.581395,0.466991,-0.400204,-0.577837,-0.0536738,-0.598987,0.63331,-0.261792,-0.407121,-0.264171,-0.626813,0.85822,0.0529141,-0.273766,-0.582365,0.993624,-0.0659876,-0.411408,0.246679,0.294886,-0.588292,1.40924,0.384761,0.7358,1.0878,-0.288429,1.12241,-0.0646583,0.460075,1.09694,0.0838089,-0.221511,-0.310058,-0.266619,-0.212926,-0.159722,1 +-0.422313,0.0461474,-0.262581,-0.275615,-0.479115,-0.417445,0.0272267,-0.264071,-0.350059,-0.459545,-0.400644,-0.0241384,-0.380974,-0.523973,-0.370988,-0.361553,-0.111765,-0.523804,-0.502094,-0.225949,-1.79537,-0.401733,0.250677,-0.390839,0.074034,-1.57458,-0.619747,0.360933,-0.578277,-0.149367,-2.11631,-0.447051,0.341753,-0.438175,0.00775609,0.564813,0.340763,0.108447,0.012244,0.030705,0.0648982,1 +-0.0748234,-0.433838,-0.675929,0.0308552,0.0888965,-0.0781816,-0.42987,-0.662975,-0.000769643,0.00187897,-0.0925846,-0.454308,-0.647943,-0.386261,-0.0341834,-0.0384112,-0.548512,-0.726744,-0.432378,0.0790614,-1.71072,-0.729193,0.580406,-0.580656,-0.459065,-1.43602,-0.790763,0.433578,-0.649722,-0.585503,-2.05654,-0.681297,0.523014,-0.565433,-0.40803,0.106338,-0.288998,-0.492069,-0.556558,-0.566363,-0.575448,1 +0.368949,-1.05578,-0.981979,0.651381,0.841388,0.397336,-1.06278,-0.999821,0.871373,0.814651,0.360524,-1.06602,-0.989426,1.2941,0.840868,0.282182,-1.04117,-0.956212,1.78359,0.821688,-1.81299,-0.799718,0.667383,-0.639617,-0.904727,-1.37304,-0.982069,0.679557,-0.758009,-1.15766,-2.09154,-0.941019,0.701876,-0.680817,-1.08453,-0.621696,-0.987926,-1.07456,-1.10125,-1.118,-1.12172,0 +0.167858,-0.844667,-0.867046,0.800788,0.240392,0.175024,-0.852243,-0.871763,0.457176,0.18445,0.171086,-0.905397,-0.890864,-0.364781,0.153255,0.218093,-0.981879,-0.913913,-0.275055,0.341813,-1.97123,-0.925027,0.627733,-0.644204,-0.940399,-1.59215,-1.03372,0.649292,-0.75494,-1.17772,-2.21344,-0.91924,0.69562,-0.668962,-0.953363,0.0677368,-0.521335,-0.73464,-0.790263,-0.805685,-0.804556,1 +0.983958,-1.34999,-0.97984,1.75768,0.77577,1.05987,-1.38352,-1.0029,1.07072,0.781487,1.08617,-1.44273,-1.01547,0.234755,0.845526,1.22096,-1.54351,-1.00815,0.547452,1.05235,-1.76603,-1.03436,0.596198,-0.656748,-1.54796,-1.30051,-1.10652,0.625214,-0.764376,-1.69,-2.04481,-1.02119,0.67457,-0.682226,-1.51203,-0.545783,-0.989695,-1.08411,-1.08779,-1.10064,-1.10338,1 +0.7158,-1.20029,-0.955522,1.34503,0.579836,0.742057,-1.21973,-0.978881,1.02542,0.549931,0.739788,-1.26621,-0.986367,0.413867,0.61304,0.792242,-1.32255,-0.977821,0.584354,0.77597,-1.9258,-0.992404,0.614159,-0.650431,-1.35661,-1.4377,-1.07688,0.645904,-0.761367,-1.48734,-2.18548,-0.988306,0.698058,-0.678368,-1.35286,-0.288089,-0.843507,-0.995603,-0.999181,-1.00491,-1.02332,1 +0.79755,-1.20303,-0.964998,1.14822,0.85713,0.850773,-1.22863,-0.996582,1.18207,0.826745,0.888785,-1.29347,-0.98113,0.504793,0.75624,0.993704,-1.40927,-0.972774,0.279233,0.782807,-2.4683,-0.950285,0.650352,-0.646893,-1.16837,-2.04646,-1.04673,0.656159,-0.757179,-1.36512,-2.65988,-0.969965,0.696519,-0.679097,-1.18256,-0.741377,-1.03746,-1.12957,-1.17099,-1.17733,-1.17754,1 +0.272207,-0.89923,-0.867475,0.532829,0.587382,0.309089,-0.910844,-0.887865,0.543524,0.603734,0.310888,-0.935292,-0.910135,0.503803,0.651781,0.318534,-0.97959,-0.912263,0.69439,0.7356,-1.362,-0.826035,0.538326,-0.607732,-0.778319,-0.903917,-0.968266,0.515088,-0.711612,-1.07034,-1.58517,-0.884957,0.549421,-0.626543,-1.01836,-0.344361,-0.827375,-0.931824,-0.961639,-0.971634,-0.982729,0 +-0.158053,-0.444952,-0.722886,0.139022,0.0897361,-0.164609,-0.442953,-0.729193,0.111345,0.0711251,-0.174295,-0.46952,-0.77739,0.0328839,0.151726,-0.178732,-0.505363,-0.803836,0.121491,0.201102,-1.39252,-0.743106,0.535508,-0.582035,-0.424432,-1.14468,-0.855221,0.556247,-0.698778,-0.576108,-1.69948,-0.765925,0.574829,-0.603424,-0.534928,0.105508,-0.324821,-0.554638,-0.624574,-0.642485,-0.661426,1 +0.113814,-0.769823,-0.856371,0.565124,0.296615,0.118182,-0.769713,-0.868325,0.487751,0.250997,0.126788,-0.815511,-0.881449,0.0376815,0.253376,0.216524,-0.92011,-0.906096,-0.0031084,0.427771,-1.18887,-0.891603,0.575478,-0.6332,-0.835551,-0.797689,-0.968736,0.560276,-0.733571,-0.944757,-1.46618,-0.883777,0.622255,-0.655159,-0.855561,-0.00136935,-0.580616,-0.807934,-0.851063,-0.872663,-0.87783,1 +0.540685,-1.13584,-0.910604,0.998641,0.811083,0.525263,-1.12237,-0.923198,0.69471,0.771842,0.522154,-1.16425,-0.944698,-0.0578617,0.803806,0.605983,-1.2541,-0.964238,0.292037,0.964888,-1.14708,-0.930045,0.55061,-0.6325,-1.02672,-0.764816,-1.04454,0.57197,-0.742656,-1.34847,-1.47792,-0.950595,0.61349,-0.654959,-1.22139,-0.574219,-1.0291,-1.09317,-1.09597,-1.10291,-1.11749,0 +0.00763625,-0.729463,-0.841668,0.452189,0.401513,-0.0091854,-0.712761,-0.856111,0.431849,0.349589,-0.0268268,-0.730483,-0.865516,0.18351,0.366251,0.0227089,-0.806925,-0.903658,0.67356,0.514178,-1.14283,-0.835371,0.536577,-0.608752,-0.679547,-0.71551,-0.954113,0.542514,-0.723436,-0.861468,-1.36734,-0.880259,0.594249,-0.642545,-0.863457,-0.180881,-0.661216,-0.818659,-0.847245,-0.848125,-0.869744,0 +0.754411,-1.33199,-1.04503,1.27096,1.1874,0.745765,-1.32128,-1.0606,1.54908,1.16038,0.676729,-1.30547,-1.02924,1.85928,1.12769,0.562565,-1.2811,-0.983259,1.92192,1.01939,-1.22466,-0.913053,0.646414,-0.650341,-1.18745,-0.880879,-1.05583,0.660486,-0.764955,-1.4006,-1.50283,-0.998151,0.697379,-0.684795,-1.32633,-0.934003,-1.31519,-1.29485,-1.26065,-1.25286,-1.24922,0 +2.9223,-1.84303,-1.05371,1.69859,1.88242,2.96853,-1.84552,-1.08469,2.15089,1.88502,3.02133,-1.85655,-1.05005,1.90985,1.87414,3.12929,-1.91644,-1.01496,1.34564,2.03614,-1.52345,-0.982949,0.556018,-0.641906,-1.37488,-1.45341,-1.05733,0.52974,-0.741987,-1.85761,-1.90455,-0.986467,0.583195,-0.661006,-1.8385,-1.98035,-1.73887,-1.54154,-1.48634,-1.47355,-1.47225,0 +1.98468,-1.85551,-1.11921,3.75006,1.62319,1.95211,-1.83747,-1.13411,3.74567,1.56531,1.87398,-1.83431,-1.09416,3.09769,1.54664,2.01619,-1.92434,-1.06328,4.6721,1.6153,-1.43856,-1.09734,0.600086,-0.663825,-2.04883,-1.11008,-1.1378,0.641836,-0.769773,-1.92862,-1.77706,-1.08128,0.683006,-0.690652,-1.94573,-1.49504,-1.66093,-1.54024,-1.47348,-1.4627,-1.47933,1 +1.10815,-1.58188,-1.07207,2.83219,1.11562,1.08381,-1.57935,-1.09472,2.55143,1.07552,1.04985,-1.59239,-1.0733,2.1363,1.05089,1.11697,-1.63864,-1.04456,3.11415,1.17658,-1.61912,-1.07436,0.602765,-0.662585,-1.76673,-1.25667,-1.13077,0.639757,-0.769373,-1.78863,-1.92063,-1.06047,0.686014,-0.689092,-1.7318,-0.870074,-1.34044,-1.33434,-1.29455,-1.29224,-1.3348,1 +0.343492,-1.05614,-0.987797,0.731652,0.859899,0.366591,-1.06261,-1.00328,0.941149,0.834371,0.357855,-1.07074,-0.988066,1.29423,0.832392,0.325141,-1.09074,-0.95991,1.78326,0.884857,-1.43236,-0.833082,0.651431,-0.643345,-0.913563,-1.0246,-0.99992,0.667053,-0.759518,-1.1628,-1.70928,-0.944098,0.69504,-0.680367,-1.02878,-0.614839,-1.01527,-1.09715,-1.11689,-1.11513,-1.12199,0 +0.340673,-1.12879,-1.05958,1.03049,1.03886,0.28666,-1.06684,-1.05815,1.35234,0.889344,0.217783,-1.0174,-0.996352,1.33037,0.664964,0.255245,-1.06543,-0.943498,0.366651,0.525303,-1.6438,-0.97978,0.587472,-0.656448,-1.07867,-1.6039,-0.98027,0.57225,-0.754091,-1.01853,-2.24643,-0.932314,0.648263,-0.679197,-0.949015,-0.783556,-1.22248,-1.26533,-1.2738,-1.2796,-1.2842,1 +1.11316,-1.64511,-1.12173,2.82612,1.51529,0.994153,-1.58358,-1.13407,3.27584,1.38518,0.823157,-1.5192,-1.07595,2.77895,1.21749,0.891953,-1.57478,-1.04025,3.01099,1.32887,-1.68077,-1.0715,0.598407,-0.662206,-1.71158,-1.2848,-1.11285,0.63276,-0.767974,-1.5835,-1.80143,-1.05317,0.678828,-0.688963,-1.61478,-1.2731,-1.64545,-1.55408,-1.48348,-1.45459,-1.46525,1 +1.39815,-1.56329,-1.0751,0.963629,1.547,1.47855,-1.56961,-1.08768,1.34837,1.53969,1.47828,-1.54578,-1.05303,2.03448,1.56442,1.30093,-1.48324,-1.007,2.78576,1.57758,-1.76864,-0.845796,0.667283,-0.646084,-1.27223,-1.39487,-1.02074,0.677568,-0.763216,-1.64139,-1.82711,-0.999441,0.698638,-0.686544,-1.4613,-1.52441,-1.54789,-1.42393,-1.38059,-1.37303,-1.37163,1 +1.70653,-1.6651,-1.08033,1.20847,1.66185,1.81629,-1.69867,-1.10177,1.66293,1.72813,1.80182,-1.69283,-1.07178,2.51233,1.83174,1.53992,-1.61936,-1.01886,3.21409,1.73085,-1.81929,-0.903588,0.649622,-0.65246,-1.48036,-1.33992,-1.04163,0.671541,-0.765265,-1.72956,-2.13978,-1.00932,0.696759,-0.688073,-1.54211,-1.70379,-1.54519,-1.44043,-1.41382,-1.41656,-1.41076,0 +2.01879,-1.7514,-1.04023,2.61895,1.15526,2.1691,-1.79847,-1.05983,1.63675,1.17338,2.16814,-1.84835,-1.05264,0.350258,1.23135,2.18566,-1.88879,-1.0337,1.14493,1.39984,-1.99518,-1.06519,0.621945,-0.659927,-1.94596,-1.52869,-1.14004,0.654589,-0.768954,-2.16961,-2.28605,-1.06152,0.704775,-0.687693,-1.95143,-1.07293,-1.26039,-1.22779,-1.19517,-1.1755,-1.18393,1 +2.36925,-1.87194,-1.06847,2.89414,1.38704,2.49429,-1.90193,-1.09017,2.42487,1.38025,2.44241,-1.90063,-1.06825,1.87179,1.45947,2.03,-1.85653,-1.02451,0.917211,1.38325,-1.60723,-1.06936,0.618617,-0.661146,-2.00314,-1.22626,-1.13594,0.654869,-0.769263,-2.1597,-1.98566,-1.06796,0.701387,-0.688763,-2.00216,-1.29249,-1.45574,-1.39076,-1.3535,-1.34404,-1.3512,1 +2.22407,-1.91037,-1.09129,3.33767,1.43648,2.3359,-1.92726,-1.11003,2.94395,1.45154,2.30315,-1.92066,-1.07999,2.34114,1.49196,2.11138,-1.90552,-1.03154,0.752072,1.48527,-1.46938,-1.07997,0.614709,-0.661366,-2.07007,-1.19453,-1.14592,0.649972,-0.769563,-2.19379,-1.67118,-1.0763,0.697549,-0.688933,-2.0839,-1.2532,-1.54582,-1.44998,-1.40247,-1.4091,-1.39524,1 +0.155794,-0.87863,-0.921749,0.581845,0.789963,0.130106,-0.840978,-0.932843,0.677159,0.728403,0.114024,-0.828735,-0.917241,0.522914,0.543993,0.207618,-0.964968,-0.929835,0.300923,0.435587,-1.56228,-0.894042,0.637888,-0.644224,-0.85746,-1.40632,-0.94044,0.638807,-0.745615,-0.722426,-1.88984,-0.897551,0.668353,-0.67309,-0.825076,-0.617867,-1.01208,-1.08542,-1.0987,-1.09339,-1.10269,1 +0.476067,-1.25469,-1.01267,1.83748,0.810353,0.464743,-1.25169,-1.02668,1.45251,0.747404,0.495907,-1.30633,-1.01647,0.334616,0.739608,0.606603,-1.41735,-1.00089,-0.679927,0.783507,-1.45115,-1.02047,0.610331,-0.658487,-1.3558,-1.26783,-1.1034,0.631661,-0.767874,-1.48572,-1.72695,-1.01552,0.682756,-0.686334,-1.34074,-0.507531,-1.09855,-1.21357,-1.22897,-1.23167,-1.22323,1 +3.40913,-2.41542,-1.1671,8.49609,2.17908,3.37013,-2.41497,-1.18744,8.21558,2.11114,3.3963,-2.42468,-1.13936,6.9491,2.1086,3.58646,-2.48783,-1.09457,8.79269,2.30197,-1.81939,-1.13426,0.59264,-0.666154,-2.52155,-1.67163,-1.18336,0.63193,-0.772652,-2.60922,-2.14489,-1.12365,0.678458,-0.69322,-2.55023,-2.11447,-2.04077,-1.76673,-1.65997,-1.64934,-1.65965,1 +3.0193,-2.04186,-1.0972,3.53133,1.52585,3.34067,-2.08708,-1.11908,3.22659,1.62345,3.44918,-2.08719,-1.0807,2.04449,1.76075,3.09671,-2.04531,-1.03748,1.26126,1.70617,-1.81888,-1.08831,0.616348,-0.661546,-2.23188,-1.52299,-1.14742,0.654279,-0.769293,-2.36815,-2.17188,-1.0793,0.702736,-0.688833,-2.2432,-1.34578,-1.53834,-1.45944,-1.43426,-1.42459,-1.43205,1 +0.259673,-1.09351,-0.982309,1.1593,0.463943,0.260023,-1.09502,-0.997252,1.17092,0.457116,0.263041,-1.11928,-0.989366,0.981599,0.425571,0.328139,-1.19824,-0.970965,0.801608,0.534179,-1.11743,-0.981969,0.539396,-0.651341,-1.23791,-0.299054,-1.03237,0.558746,-0.753571,-1.23661,-1.47129,-0.976192,0.626423,-0.678398,-1.23032,-0.110656,-0.799448,-0.983289,-0.990695,-0.975732,-0.998111,1 +-0.26649,-0.382003,-0.808854,0.0419398,0.472469,-0.290208,-0.349989,-0.810823,0.137123,0.473438,-0.310688,-0.323762,-0.788444,0.229038,0.409689,-0.338224,-0.28678,-0.726025,0.0370419,0.196794,1.29918,-0.829584,0.443723,-0.582285,-0.687853,1.23877,-0.667403,0.381863,-0.604954,-0.135983,1.08605,-0.789664,0.534089,-0.610321,-0.536637,-0.321613,-0.631711,-0.769493,-0.81772,-0.824586,-0.819579,1 +-0.478636,0.466262,0.132195,-0.520285,-0.213266,-0.480714,0.471279,0.16381,-0.533029,-0.198153,-0.488401,0.475397,0.132635,-0.507771,-0.22583,-0.506912,0.494298,0.0719447,-0.475667,-0.336735,0.790483,-0.0313845,-0.0751131,-0.119621,0.474378,0.390739,0.115983,-0.117872,-0.0230886,0.538546,0.542834,-0.024578,-0.0277363,-0.12257,0.466322,0.18372,0.240043,0.222991,0.181921,0.177173,0.193125,0 +-0.218863,-0.248768,-0.628722,-0.115793,0.0832293,-0.2245,-0.240922,-0.609362,-0.108687,0.0806504,-0.24546,-0.240792,-0.61347,-0.161101,0.0716348,-0.249508,-0.262901,-0.627063,-0.177143,0.0986518,1.01236,-0.644065,0.541015,-0.523893,-0.261452,0.668943,-0.651141,0.756849,-0.645894,-0.312467,0.829694,-0.683166,0.624944,-0.543904,-0.34757,-0.00303853,-0.168577,-0.323022,-0.40842,-0.432588,-0.453168,1 +-0.379054,-0.0577018,-0.51009,-0.213075,-0.172715,-0.379884,-0.0643385,-0.481854,-0.226009,-0.180372,-0.392288,-0.0814203,-0.51113,-0.272507,-0.167218,-0.389929,-0.109007,-0.541025,-0.28648,-0.138432,1.30071,-0.573189,0.657178,-0.587232,-0.127417,1.02152,-0.566183,0.83662,-0.650651,-0.159142,1.22831,-0.624854,0.749653,-0.619597,-0.182251,0.208018,0.108887,-0.0677768,-0.195754,-0.268568,-0.319993,0 +0.0130136,-0.813242,-0.907796,0.71615,0.192736,0.0274467,-0.835281,-0.928016,0.730582,0.196284,0.0521545,-0.883388,-0.937511,0.5724,0.279883,0.120851,-0.943728,-0.930095,0.611521,0.420714,1.27046,-0.909185,0.512689,-0.63239,-0.951314,1.83073,-0.98055,0.541645,-0.739348,-0.965197,1.59959,-0.916102,0.602735,-0.662915,-0.982679,0.152135,-0.526472,-0.815511,-0.874342,-0.922248,-0.954613,0 +-0.507102,0.123779,-0.42837,-0.269798,-0.437636,-0.514578,0.12316,-0.40922,-0.282182,-0.463883,-0.513958,0.100621,-0.46922,-0.28562,-0.423743,-0.502344,0.0678166,-0.544603,-0.145539,-0.359854,1.49644,-0.536137,0.534448,-0.561365,-0.0327538,1.57443,-0.499975,0.61158,-0.619057,0.0607703,1.58116,-0.557007,0.606883,-0.588802,-0.0464174,0.46936,0.360434,0.114434,-0.0360924,-0.115733,-0.167338,1 +1.51671,-1.55137,-1.10888,1.55967,1.84312,1.40539,-1.50059,-1.12426,2.12163,1.78855,1.2618,-1.44177,-1.06842,2.7169,1.63549,1.15699,-1.42217,-1.00475,2.37652,1.4861,2.16347,-1.03924,0.546113,-0.651871,-1.6627,2.08464,-1.01306,0.53017,-0.73624,-1.24903,1.95361,-0.997592,0.602785,-0.667433,-1.51612,-1.86046,-1.70347,-1.54979,-1.48584,-1.45897,-1.44634,1 +0.766025,-1.27217,-1.06216,1.25804,1.31783,0.71486,-1.23422,-1.07474,1.60888,1.30276,0.621316,-1.19592,-1.02908,1.85488,1.18481,0.519206,-1.19091,-0.976032,1.47267,0.95986,2.1711,-1.01687,0.537967,-0.645584,-1.49542,2.04974,-0.995672,0.519575,-0.730013,-1.07217,2.06916,-0.985108,0.606433,-0.664475,-1.3512,-1.18866,-1.37136,-1.35672,-1.33303,-1.31723,-1.30622,1 +-0.38913,-0.22549,-0.620806,0.0698061,-0.362872,-0.383742,-0.259563,-0.648133,-0.0141531,-0.359484,-0.345301,-0.350788,-0.759888,-0.0272267,-0.209028,-0.290718,-0.426851,-0.79598,0.100621,0.0151327,1.25888,-0.736239,0.457876,-0.581465,-0.394717,1.83211,-0.839699,0.465352,-0.688073,-0.49065,1.66557,-0.752842,0.545923,-0.61333,-0.439905,0.547902,0.132375,-0.221711,-0.365841,-0.427051,-0.487101,0 +1.6366,-1.3335,-0.966557,0.684425,1.42714,1.62315,-1.32759,-0.983369,0.863817,1.43606,1.54844,-1.32052,-0.956592,0.972704,1.4022,1.42351,-1.3236,-0.909865,0.707814,1.29895,2.14785,-0.955432,0.432738,-0.582605,-1.45195,2.05741,-0.931004,0.343112,-0.641366,-1.25115,1.9924,-0.922219,0.503673,-0.611161,-1.35048,-1.47219,-1.32431,-1.27329,-1.24896,-1.23982,-1.2321,1 +-0.493778,0.638717,0.515828,-0.601125,-0.353477,-0.49052,0.63358,0.545503,-0.614289,-0.311218,-0.503683,0.644724,0.547342,-0.560596,-0.339484,-0.534228,0.675039,0.55211,-0.526252,-0.49033,1.17081,0.296245,-0.538556,0.176284,0.59316,1.08066,0.656529,-1.11621,0.626673,0.717329,1.07597,0.353687,-0.651441,0.288229,0.626083,0.28538,0.404962,0.437186,0.432008,0.416876,0.420944,0 +0.762567,-1.19757,-0.990665,0.96068,1.12341,0.744306,-1.18945,-1.00846,1.1228,1.1307,0.703256,-1.19786,-0.993994,1.32598,1.11864,0.645234,-1.21928,-0.956512,1.23357,1.00909,2.07698,-0.997861,0.493039,-0.605683,-1.44329,1.91381,-0.978571,0.464103,-0.701247,-1.15312,1.73978,-0.948756,0.553779,-0.625394,-1.24217,-1.01627,-1.20954,-1.22602,-1.22215,-1.21882,-1.22058,1 +-0.20491,-0.538726,-0.668353,0.293207,-0.195334,-0.179902,-0.575358,-0.711622,0.0399604,-0.16302,-0.134394,-0.647263,-0.802987,-0.314626,-0.0171817,-0.0640986,-0.725005,-0.852073,-0.113175,0.203151,0.547392,-0.845596,0.521715,-0.607822,-0.69475,1.31021,-0.950285,0.517696,-0.71545,-0.842897,0.913493,-0.851983,0.577777,-0.63385,-0.741277,0.441244,-0.110636,-0.461624,-0.553509,-0.591031,-0.630481,1 +1.25838,-1.39473,-1.05314,1.0609,1.71536,1.22546,-1.37717,-1.07213,1.43193,1.72741,1.20559,-1.37412,-1.0354,1.94258,1.72915,1.143,-1.37554,-0.984988,2.12719,1.67147,1.64289,-1.01092,0.529411,-0.642445,-1.46778,1.91447,-0.954123,0.482164,-0.704745,-1.18333,1.57253,-0.966417,0.568332,-0.65311,-1.42306,-1.81688,-1.57463,-1.44905,-1.40186,-1.3877,-1.3794,1 +-0.303711,0.136163,-0.321513,-0.416526,0.138322,-0.315825,0.16384,-0.279603,-0.403752,0.129946,-0.340173,0.192586,-0.230517,-0.385581,0.0531539,-0.374347,0.216494,-0.239253,-0.374557,-0.0674969,0.144439,-0.34661,0.179702,-0.38866,0.145289,0.0888565,-0.161571,0.0509749,-0.310608,0.26572,0.130756,-0.322732,0.227409,-0.397635,0.1628,-0.179192,-0.0957429,-0.115314,-0.152515,-0.161821,-0.130976,0 +1.90097,-1.56395,-1.06173,1.56502,1.85122,1.82756,-1.54584,-1.07981,1.88646,1.86772,1.77075,-1.55271,-1.04417,2.12414,1.83177,1.73369,-1.58102,-0.990835,1.39832,1.77128,1.04734,-1.04054,0.555068,-0.657128,-1.66589,1.0803,-1.03283,0.559236,-0.743546,-1.47064,0.907556,-1.00371,0.615429,-0.675859,-1.61074,-2.01843,-1.65026,-1.49761,-1.439,-1.41857,-1.41302,1 +-0.293336,-0.280853,-0.757539,-0.0372015,0.159282,-0.320513,-0.241692,-0.736989,0.0207298,0.0862576,-0.349669,-0.202911,-0.688193,-0.0226589,-0.000389926,-0.341493,-0.219273,-0.678178,-0.0645883,0.0329939,1.19247,-0.69475,0.566403,-0.596768,-0.289318,1.10075,-0.679197,0.664445,-0.670862,-0.213076,1.23446,-0.748684,0.651041,-0.635199,-0.40821,-0.0374817,-0.270577,-0.460115,-0.532789,-0.547872,-0.564614,1 +1.25597,-1.65069,-1.08101,3.00347,1.38081,1.30448,-1.65834,-1.09875,2.64537,1.43196,1.35467,-1.7007,-1.07434,1.92321,1.52761,1.35741,-1.74762,-1.04454,2.13909,1.64409,-0.110116,-1.07182,0.585743,-0.662376,-1.71848,0.697429,-1.13689,0.629312,-0.769533,-1.86696,0.36841,-1.07202,0.669132,-0.689512,-1.86323,-1.14776,-1.51161,-1.42579,-1.39102,-1.39444,-1.39689,0 +-0.461454,0.252826,-0.173585,-0.398994,-0.534528,-0.471619,0.263121,-0.116433,-0.42885,-0.576268,-0.473518,0.253016,-0.0780919,-0.561435,-0.607732,-0.443513,0.193125,-0.271377,-0.460484,-0.479695,-0.318844,-0.341603,0.276305,-0.425801,0.201442,-0.129726,-0.297234,0.0450678,-0.432578,0.16335,0.0117643,-0.24443,0.190387,-0.396966,0.191666,0.616618,0.474828,0.343032,0.303182,0.309868,0.320283,1 +-0.336635,0.0418995,-0.297754,-0.283781,-0.210737,-0.337794,0.0341833,-0.267749,-0.348569,-0.189557,-0.340933,-0.0119543,-0.424142,-0.365291,-0.105249,-0.32683,-0.0445084,-0.55076,-0.138202,0.0170317,-0.196504,-0.396326,0.30662,-0.447081,0.0876573,0.242951,-0.579206,0.273686,-0.561925,-0.0935741,0.342113,-0.51018,0.324681,-0.485392,-0.129777,0.255745,0.187908,0.0635189,0.0118542,-0.000989515,-0.0159822,0 +0.624624,-0.652281,-0.738439,-0.417595,1.1257,0.650991,-0.639197,-0.745255,-0.317495,1.04663,0.697339,-0.585574,-0.623865,-0.0924347,0.869884,0.87773,-0.671261,-0.505303,-0.140481,0.801818,-0.103869,-0.513908,0.536387,-0.515428,-0.219732,-0.169247,0.123899,-0.383172,-0.238643,-0.176144,-0.0419394,-0.220292,0.140411,-0.452838,-0.302502,-1.27205,-1.10937,-0.949285,-0.891204,-0.908765,-0.923258,1 +0.783556,-1.16276,-0.922638,0.159522,1.04186,0.908385,-1.21889,-0.949535,0.363142,1.13939,0.928595,-1.24191,-0.932264,0.740807,1.26336,0.868355,-1.20465,-0.849044,0.839769,1.31133,-0.362313,-0.690442,0.404092,-0.472289,-0.931874,0.310788,-0.822457,0.0992713,-0.396086,-1.20487,0.301872,-0.791273,0.238663,-0.395826,-1.11882,-0.950055,-1.15129,-1.133,-1.08437,-1.05127,-1.00921,0 +-0.272347,-0.210337,-0.525313,-0.260152,-0.229218,-0.261502,-0.230627,-0.540935,-0.22546,-0.18385,-0.247429,-0.250358,-0.589332,-0.106828,-0.0477867,-0.239833,-0.246899,-0.598977,0.0232887,0.0719848,-1.03964,-0.38881,-0.124929,-0.0923047,-0.249947,-0.660207,-0.599696,0.0262171,-0.359084,-0.331208,-0.360553,-0.480795,0.0243682,-0.216204,-0.342273,0.404752,-0.00856562,-0.256414,-0.324571,-0.330448,-0.343182,1 +-0.311158,0.042769,-0.118142,-0.321732,-0.200502,-0.30566,0.0178713,-0.113555,-0.422703,-0.160551,-0.303501,-0.0541437,-0.372028,-0.441814,-0.0527643,-0.296985,-0.0946438,-0.545143,-0.16418,0.0571921,-0.112775,-0.385331,0.202681,-0.394527,0.049456,0.403702,-0.577477,0.194645,-0.528541,-0.152385,0.292967,-0.484853,0.232906,-0.437476,-0.151276,0.155784,0.181641,0.104509,0.0880069,0.0891064,0.0688263,0 +-0.402603,0.234275,0.0719548,-0.391528,-0.538606,-0.402063,0.20331,0.121161,-0.505892,-0.505213,-0.400634,0.128207,-0.110566,-0.654649,-0.415667,-0.383652,0.0900557,-0.371818,-0.440544,-0.258613,-0.839059,-0.312777,0.182131,-0.370039,0.138532,-0.556438,-0.446261,0.155274,-0.456347,0.0128738,-0.486112,-0.292567,0.133755,-0.356116,0.104179,0.538416,0.51108,0.440294,0.431619,0.438705,0.399614,1 +-0.437626,0.260992,-0.0196603,-0.386081,-0.615279,-0.442813,0.251987,0.0352626,-0.472779,-0.632041,-0.445282,0.197263,-0.132965,-0.589781,-0.568762,-0.426191,0.146288,-0.369659,-0.389799,-0.426781,-0.974203,-0.313326,0.197563,-0.389689,0.157653,-0.585283,-0.438895,0.16405,-0.48959,0.0641687,-0.6127,-0.316595,0.197793,-0.401523,0.115573,0.623525,0.559466,0.432328,0.384702,0.371738,0.356725,1 +-0.655429,0.921379,0.851853,-0.584224,-1.04022,-0.660177,0.910834,0.884207,-0.631741,-1.04805,-0.646773,0.877041,0.83659,-0.686114,-1.07244,-0.624774,0.838439,0.498436,-0.61323,-0.968856,-0.51031,0.345061,-0.0966426,-0.0310447,0.782667,-0.767754,0.240272,-0.0927347,-0.115723,0.748734,-0.660876,0.40907,-0.135813,-0.00386797,0.802887,0.95968,1.10115,1.11118,1.10346,1.11877,1.17241,1 +0.790563,-1.21903,-0.929855,1.12469,0.79683,0.846795,-1.25796,-0.950715,0.827565,0.825615,0.900029,-1.31823,-0.959251,-0.145269,0.93836,1.0081,-1.40073,-0.953223,-0.623934,1.10292,-0.745145,-0.950874,0.533369,-0.601246,-1.28612,-0.205899,-1.04835,0.565663,-0.728933,-1.50855,-0.128357,-0.966297,0.627793,-0.649492,-1.36687,-0.6544,-0.961479,-1.02296,-1.01035,-1.01149,-1.0138,1 +-0.432598,0.171216,-0.393417,-0.301962,-0.362063,-0.450459,0.195714,-0.340563,-0.323652,-0.407011,-0.455137,0.188837,-0.325621,-0.443613,-0.424902,-0.431998,0.148157,-0.442593,-0.34658,-0.317664,0.0718748,-0.392957,0.300353,-0.467541,0.148228,0.34726,-0.51014,0.307269,-0.562605,0.0797211,0.283511,-0.446012,0.341603,-0.492959,0.0253575,0.397385,0.345391,0.175344,0.0965427,0.0853382,0.115354,1 +-0.523794,0.457266,-0.277524,-0.514478,-0.193965,-0.545243,0.497237,-0.259753,-0.486382,-0.270937,-0.55033,0.564384,-0.109896,-0.400094,-0.398725,-0.540136,0.585203,-0.0417496,-0.343062,-0.439065,0.243221,-0.0435785,0.0825596,-0.299233,0.47009,0.0757729,0.20421,-0.0214696,-0.165049,0.681756,-0.0193704,0.02053,0.034823,-0.267559,0.494828,0.178403,0.228748,0.120051,0.0663475,0.0630691,0.087887,1 +-0.668383,0.927526,0.413218,-0.604324,-0.806985,-0.679597,0.948855,0.42867,-0.610131,-0.825166,-0.672301,1.00525,0.634509,-0.573259,-0.950625,-0.658328,1.02348,0.870124,-0.634269,-1.09645,0.353467,0.481594,-0.210037,0.0914254,0.871104,-0.295515,0.640476,0.00950526,0.214415,1.00396,-0.155204,0.603425,-0.137772,0.158073,0.969915,0.789743,0.810913,0.762757,0.730212,0.711582,0.703835,1 +-0.270707,-0.139022,-0.623515,-0.110346,-0.182201,-0.300703,-0.103709,-0.59151,-0.119102,-0.239443,-0.353577,-0.0729345,-0.557177,-0.302862,-0.313976,-0.349409,-0.0938942,-0.593499,-0.364571,-0.263371,0.196164,-0.621066,0.478416,-0.556647,-0.172066,0.525583,-0.689422,0.481654,-0.654969,-0.175464,0.57127,-0.648673,0.503124,-0.587982,-0.273686,0.335326,0.0968028,-0.14196,-0.20502,-0.179872,-0.149637,1 +-0.564993,0.339634,-0.44999,-0.379844,-0.508161,-0.589611,0.385291,-0.420314,-0.349109,-0.637478,-0.599576,0.452388,-0.264591,-0.382503,-0.774961,-0.581036,0.44966,-0.249008,-0.439425,-0.729993,0.173935,-0.340853,0.342882,-0.466362,0.258314,0.118422,-0.277294,0.355286,-0.496507,0.423043,0.126068,-0.300633,0.349559,-0.466871,0.274885,0.623924,0.403723,0.195924,0.108997,0.1219,0.170507,1 +-0.624065,0.630301,-0.255315,-0.555468,-0.433848,-0.643215,0.67503,-0.253776,-0.527092,-0.556188,-0.650132,0.799169,0.0278863,-0.440974,-0.77635,-0.644175,0.863427,0.392968,-0.525812,-0.983329,0.12263,0.0475768,0.180222,-0.241302,0.616159,-0.461364,0.49048,0.247259,0.0468871,0.926617,-0.2653,0.323312,0.0372519,-0.0924546,0.780808,0.495088,0.358944,0.260952,0.213695,0.212576,0.246989,1 +-0.619297,0.793971,0.20351,-0.604404,-0.545073,-0.628942,0.813302,0.213465,-0.599527,-0.565273,-0.631941,0.882018,0.410299,-0.523983,-0.664735,-0.635589,0.93915,0.629352,-0.520935,-0.814661,0.493728,0.403782,-0.042689,0.0203902,0.839849,-0.241772,0.765565,0.496507,0.291867,0.98143,-0.0121939,0.569002,0.0596809,0.101311,0.93975,0.525962,0.541945,0.524193,0.496047,0.48952,0.503344,0 +-0.502834,0.455477,-0.288319,-0.544063,-0.0506952,-0.521195,0.493578,-0.283651,-0.513299,-0.12303,-0.533529,0.59291,-0.0663876,-0.413198,-0.293756,-0.535038,0.656698,0.194965,-0.437216,-0.480235,0.601775,-0.0519944,0.0976123,-0.288878,0.47041,0.210497,0.462583,-0.154195,0.0352628,0.801768,0.301453,0.213745,-0.0699357,-0.16316,0.61257,0.0432988,0.0590913,0.0288659,0.00680664,0.0115543,0.036832,0 +-0.260652,-0.394147,-0.87863,0.156714,0.10155,-0.311797,-0.331328,-0.85815,0.262312,-0.0350929,-0.363462,-0.268189,-0.789324,0.178792,-0.16258,-0.34712,-0.280853,-0.779518,0.198593,-0.0924847,-0.217603,-0.797679,0.548681,-0.621706,-0.474987,0.0313847,-0.777159,0.535378,-0.699687,-0.256504,0.211167,-0.768584,0.578937,-0.638707,-0.466652,0.180332,-0.313246,-0.570461,-0.624784,-0.613699,-0.597178,1 +-0.254875,-0.207119,-0.71437,-0.114574,0.131106,-0.281402,-0.166329,-0.691432,-0.06134,0.0617097,-0.310088,-0.140212,-0.661706,-0.0372318,0.0229786,-0.310618,-0.140651,-0.698368,0.202391,0.0958731,0.252386,-0.584304,0.436836,-0.559176,-0.12115,0.557917,-0.657418,0.40915,-0.650402,-0.125109,0.693231,-0.661676,0.479615,-0.594239,-0.313367,0.0240782,-0.205369,-0.381603,-0.437126,-0.433168,-0.434037,0 +-0.466612,0.249378,-0.274925,-0.357415,-0.430739,-0.481164,0.267629,-0.235235,-0.380764,-0.483353,-0.491539,0.263581,-0.230067,-0.4702,-0.49089,-0.477026,0.237663,-0.36802,-0.34612,-0.377455,0.300933,-0.328069,0.229828,-0.410749,0.205909,0.542494,-0.424802,0.184859,-0.501265,0.168498,0.688543,-0.345971,0.22445,-0.421164,0.122,0.487431,0.412558,0.260552,0.186419,0.205899,0.228358,0 +-0.685464,1.0264,0.805056,-0.602635,-1.05367,-0.690942,1.01748,0.791732,-0.629772,-1.03178,-0.67341,1.0103,0.746924,-0.614769,-1.05834,-0.65375,0.998451,0.77711,-0.65281,-1.117,0.136453,0.38903,0.00352834,0.00483778,0.860049,-0.430949,0.511959,0.111655,0.10238,0.970345,-0.0674769,0.608072,-0.003908,0.0958432,0.977281,0.98051,1.09948,1.05836,0.990605,0.941619,0.924927,1 +-0.655689,0.885497,0.599527,-0.569531,-1.02638,-0.663435,0.888445,0.638037,-0.604894,-1.06366,-0.648093,0.862038,0.65402,-0.646863,-1.06124,-0.623205,0.820708,0.382703,-0.574419,-0.932314,0.419785,0.278094,-0.0870573,-0.0361322,0.760608,0.332317,0.213395,-0.123999,-0.0907055,0.743586,0.482434,0.354387,-0.173585,-2.98484e-05,0.757379,0.964118,1.08681,1.06374,1.01675,1.01143,1.02757,1 +-0.666554,1.00264,0.897201,-0.622795,-0.966317,-0.672091,0.988356,0.89834,-0.646354,-0.943728,-0.657258,0.967636,0.845816,-0.608262,-0.950645,-0.638028,0.942039,0.772162,-0.57273,-0.924357,0.489171,0.536338,-0.392758,0.170527,0.860139,0.456846,0.713131,-0.707584,0.377875,0.926656,0.473258,0.644884,-0.487851,0.221252,0.875071,0.869544,1.03968,1.0341,0.995403,0.964418,0.964988,0 +-0.668613,1.038,0.946407,-0.638707,-0.790563,-0.675319,1.03817,0.93939,-0.657838,-0.764176,-0.666124,1.05983,0.938231,-0.603754,-0.825056,-0.656668,1.09188,1.08413,-0.608972,-0.967996,0.217923,0.691991,0.133255,0.160801,1.01212,-0.875481,0.976072,0.908545,0.549431,1.09269,-0.475267,0.872943,0.321593,0.321853,1.1228,0.709073,0.822308,0.87756,0.880509,0.855121,0.861038,1 +-0.152265,-0.157963,-0.444452,-0.175864,0.176963,-0.155294,-0.166089,-0.453958,-0.227489,0.199142,-0.168947,-0.200172,-0.573789,-0.232096,0.257374,-0.193135,-0.212546,-0.63341,-0.107557,0.278584,0.0786915,-0.496677,0.517627,-0.518206,-0.0186407,0.454328,-0.696969,0.435317,-0.631281,-0.303671,0.538207,-0.627053,0.485912,-0.559946,-0.276195,-0.18395,-0.156163,-0.210447,-0.242091,-0.231607,-0.192736,0 +0.94025,-1.26328,-0.929805,1.19356,0.803796,1.02024,-1.29919,-0.944468,0.772942,0.83712,1.05984,-1.34137,-0.954153,-0.0584214,0.977651,1.14589,-1.4006,-0.942359,-0.53071,1.10749,-0.549071,-0.967246,0.641306,-0.635699,-1.33325,0.096053,-1.07379,0.65407,-0.753151,-1.61007,0.293866,-0.98024,0.699867,-0.666633,-1.40475,-0.625973,-0.954672,-1.00449,-0.983688,-0.983848,-0.967736,0 +-0.643535,0.901799,0.546712,-0.623934,-0.63379,-0.650461,0.901049,0.590051,-0.63316,-0.608152,-0.643055,0.925367,0.713211,-0.573539,-0.676819,-0.63275,0.93802,0.923358,-0.587842,-0.829464,-0.73567,0.484303,-0.0759527,0.0327741,0.889455,-0.945237,0.892533,-0.369669,0.339434,0.957721,-0.942978,0.649462,-0.126678,0.0643186,0.908505,0.527352,0.691682,0.731622,0.723496,0.701467,0.701077,1 +-0.526572,0.257614,-0.440334,-0.362252,-0.344731,-0.556857,0.311727,-0.432488,-0.331358,-0.476467,-0.574948,0.392478,-0.278174,-0.391608,-0.679747,-0.562575,0.395696,-0.239373,-0.525892,-0.695729,0.0545733,-0.410439,0.341933,-0.472409,0.139022,-0.345361,-0.281982,0.398925,-0.499116,0.427591,-0.0445581,-0.277294,0.345901,-0.452718,0.298534,0.495807,0.236624,0.0581115,-0.00333839,0.0476966,0.10126,1 +-0.439355,0.426291,-0.00220889,-0.580775,0.0454078,-0.450819,0.44835,0.0504452,-0.570771,0.0714849,-0.475117,0.51013,0.240882,-0.493338,-0.0511051,-0.513349,0.563444,0.529231,-0.540765,-0.292747,0.275835,0.177603,-0.399184,0.0262973,0.513789,0.487491,0.635139,-1.05956,0.398215,0.628512,0.180592,0.252856,-0.389569,0.00766638,0.532939,-0.108067,-0.00102931,0.067377,0.109886,0.1434,0.164569,1 +-0.463803,0.521865,0.18417,-0.596678,-0.0462074,-0.472149,0.532489,0.218143,-0.59304,-0.0138433,-0.48912,0.573649,0.371418,-0.519466,-0.0954334,-0.521125,0.619566,0.588332,-0.537537,-0.297534,0.281272,0.226229,-0.379754,0.0287661,0.559156,0.357995,0.753301,-1.09355,0.484413,0.698458,0.107018,0.365471,-0.468191,0.0845188,0.604084,-0.0291757,0.117852,0.200202,0.241472,0.257394,0.269898,1 +-0.524983,0.419765,0.198443,-0.491009,-0.593739,-0.529011,0.409569,0.252156,-0.532659,-0.589321,-0.536197,0.382033,0.16242,-0.59263,-0.608832,-0.522864,0.338954,-0.0832893,-0.491719,-0.602385,0.783157,-0.0491558,-0.0900258,-0.195334,0.401364,1.27135,-0.124149,-0.281932,-0.216504,0.284801,0.909905,-0.0923648,-0.116953,-0.204999,0.311058,0.624504,0.53087,0.440724,0.403932,0.414377,0.433928,1 +-0.418875,0.422893,0.207848,-0.587582,0.0855781,-0.411538,0.412308,0.230967,-0.585763,0.145409,-0.42851,0.437166,0.278664,-0.502374,0.0994012,-0.472679,0.507731,0.494988,-0.523434,-0.153315,1.33426,0.18475,-0.310008,0.00455792,0.512439,1.34026,0.67421,-0.893443,0.401953,0.626134,1.20774,0.274466,-0.350089,0.0591612,0.580696,-0.14384,-0.0647581,0.00715649,0.059241,0.0825596,0.100571,1 +-0.576668,0.849204,0.812982,-0.646943,-0.522974,-0.575208,0.840928,0.849394,-0.660627,-0.47037,-0.582175,0.859939,0.947366,-0.595259,-0.511909,-0.600046,0.892303,1.13753,-0.584084,-0.697748,1.18909,0.625074,-0.813422,0.452209,0.747034,0.902268,1.20108,-1.27936,0.958081,0.93953,0.89899,0.872133,-0.863187,0.560606,0.887865,0.464033,0.553639,0.623065,0.684535,0.707124,0.713021,1 +-0.211107,0.288279,0.0378715,-0.587822,0.174015,-0.201541,0.289708,0.0657977,-0.577437,0.20454,-0.247139,0.334866,0.174974,-0.476597,0.115873,-0.330618,0.398005,0.371028,-0.447081,-0.118772,1.49265,0.141341,-0.44808,0.039151,0.338674,1.57041,0.726264,-1.32435,0.545423,0.484323,1.35241,0.30697,-0.583494,0.128107,0.420094,-0.262412,-0.107667,-0.0343232,0.001989,0.0237384,0.0379514,0 +-0.590131,0.623165,0.0935443,-0.544873,-0.470889,-0.603794,0.644664,0.134844,-0.546523,-0.503274,-0.609961,0.685144,0.311667,-0.543724,-0.635679,-0.603564,0.678937,0.356465,-0.593719,-0.7158,0.876611,0.151426,-0.200732,-0.110676,0.562855,0.678838,0.247769,-0.197733,-0.0996812,0.702836,0.700827,0.152515,-0.0702255,-0.176134,0.59152,0.456656,0.481534,0.457106,0.436306,0.42936,0.453928,1 +-0.622275,0.763596,0.413578,-0.587412,-0.65433,-0.63213,0.773471,0.460794,-0.600256,-0.660836,-0.634239,0.800888,0.621746,-0.5925,-0.782497,-0.626223,0.790403,0.678448,-0.638237,-0.920799,1.19395,0.322222,-0.350838,0.0196405,0.632221,0.921049,0.493898,-0.459955,0.104519,0.789614,0.922329,0.366221,-0.213845,-0.0414995,0.707234,0.637188,0.641756,0.621826,0.642575,0.63293,0.648343,1 +-0.310898,-0.0861878,-0.534618,-0.300513,-0.174485,-0.321173,-0.0784616,-0.547852,-0.246719,-0.192376,-0.343212,-0.0879471,-0.615459,-0.0680567,-0.196714,-0.32597,-0.145509,-0.686084,0.288559,-0.104269,1.18176,-0.353877,0.00560732,-0.274026,-0.0442981,1.6181,-0.519686,0.0634788,-0.432668,-0.12315,1.14582,-0.154035,-0.589911,0.167978,-0.0282363,0.331917,-0.00689644,-0.243191,-0.319174,-0.328499,-0.345701,0 +-0.246819,0.00217891,-0.302362,-0.474128,0.444902,-0.257224,0.0362323,-0.283231,-0.447671,0.406151,-0.311028,0.124499,-0.180642,-0.379394,0.2455,-0.381903,0.216914,-0.0553129,-0.42948,-0.0224389,1.49096,-0.260952,-0.0682065,-0.231177,0.0694362,1.50365,0.112395,-0.438056,-0.0684364,0.340094,1.2018,-0.140361,-0.0617797,-0.24425,0.250377,-0.390109,-0.447191,-0.405961,-0.369839,-0.340713,-0.348919,1 +-0.580826,0.824217,0.861249,-0.614929,-0.759198,-0.585023,0.808704,0.894762,-0.642556,-0.741387,-0.589931,0.788684,0.863287,-0.622975,-0.774771,-0.590301,0.764256,0.65269,-0.555778,-0.782497,1.02978,0.566413,-0.611361,0.236025,0.745685,1.12547,0.575188,-0.846426,0.291757,0.721407,0.850744,0.516607,-0.534938,0.161021,0.721647,0.65351,0.841888,0.874622,0.887116,0.882028,0.89912,0 +-0.241602,0.109247,-0.0381613,-0.419025,-0.120631,-0.240012,0.0967526,-0.00805616,-0.461284,-0.0964828,-0.235545,0.0577516,-0.0937142,-0.538656,-0.10312,-0.207948,0.00491742,-0.287319,-0.415976,-0.00420787,0.595528,-0.219562,-0.105388,-0.258673,0.12315,1.04833,-0.328769,-0.256504,-0.308729,-0.050865,0.600326,-0.261912,-0.0469269,-0.282751,0.0370717,0.0454277,0.16384,0.104179,0.089786,0.109147,0.141231,1 +-0.500535,0.635969,0.435527,-0.604824,-0.287509,-0.502974,0.63222,0.473858,-0.61321,-0.234405,-0.508681,0.642265,0.535898,-0.552919,-0.275185,-0.525413,0.660956,0.604304,-0.529461,-0.402123,0.546732,0.350399,-0.494128,0.111785,0.630771,0.698748,0.699657,-1.12396,0.471029,0.673001,0.352468,0.422443,-0.51072,0.135824,0.661896,0.212996,0.356346,0.390679,0.415447,0.426941,0.419365,0 +-0.200812,-0.0959431,-0.192536,-0.281862,-0.0707453,-0.202231,-0.124709,-0.20421,-0.384862,-0.0460176,-0.208668,-0.178933,-0.405092,-0.477626,0.00555716,-0.187728,-0.230137,-0.553349,-0.301033,0.114874,0.832522,-0.44862,0.134184,-0.393987,-0.106847,1.3531,-0.624134,0.166658,-0.525463,-0.311407,0.956282,-0.498716,0.173805,-0.411928,-0.235705,0.0462773,0.0583916,-0.044978,-0.045028,-0.0382113,-0.0340633,0 +0.0670372,-0.323901,-0.152745,-0.323671,0.0414997,0.123939,-0.342992,-0.171966,-0.395027,0.00860568,0.126068,-0.359394,-0.226949,-0.698898,0.0796009,0.120481,-0.442264,-0.445342,-0.792692,0.149897,1.01518,-0.389419,0.34713,-0.375406,-0.2035,1.51517,-0.548032,0.0414996,-0.400534,-0.422573,1.13057,-0.411229,0.100091,-0.291417,-0.261072,0.04078,-0.156733,-0.254425,-0.263931,-0.288469,-0.294616,1 +0.323941,-1.0256,-0.92004,1.09805,0.687963,0.379204,-1.07361,-0.954633,0.882508,0.736759,0.406441,-1.13806,-0.985618,0.879859,0.884527,0.433348,-1.18517,-0.979021,1.40615,1.03726,1.01677,-0.949005,0.594389,-0.652071,-1.04381,1.81394,-1.06276,0.626373,-0.762677,-1.28485,1.34813,-0.986447,0.675969,-0.680057,-1.21999,-0.524273,-0.851823,-0.957311,-0.993294,-1.01337,-1.03467,0 +-0.357505,-0.14314,-0.77647,-0.340233,0.647063,-0.389229,-0.0746734,-0.757269,-0.247209,0.552589,-0.435907,0.0498954,-0.619497,-0.0840688,0.321742,-0.478686,0.174205,-0.396866,-0.199662,-0.0506851,0.933403,-0.594379,0.434737,-0.569241,-0.161331,0.396146,-0.0879869,0.401763,-0.479415,0.373787,0.30649,-0.422383,0.539956,-0.570081,0.129716,-0.529191,-0.730912,-0.728253,-0.717309,-0.705475,-0.692101,1 +1.47512,-1.49559,-1.09962,0.936312,2.58047,1.34605,-1.44962,-1.11595,1.4183,2.6406,1.30091,-1.42016,-1.06173,2.14887,2.59321,1.25835,-1.3779,-0.996762,2.59,2.54706,1.22011,-0.984458,0.503773,-0.630861,-1.45705,1.35802,-0.901329,0.616098,-0.717139,-0.985597,1.19821,-0.967676,0.601805,-0.642715,-1.20716,-3.05685,-1.99702,-1.68759,-1.59504,-1.56995,-1.55938,1 +-0.647233,0.943988,0.948006,-0.63188,-1.00254,-0.65327,0.942029,1.05496,-0.660307,-1.01137,-0.645584,0.927006,1.22175,-0.660926,-1.02769,-0.630371,0.890724,1.05982,-0.628832,-1.00164,0.832263,0.647423,-0.772462,0.357255,0.805076,0.905867,0.814401,-1.39606,0.747974,0.8582,0.905557,0.646494,-0.893522,0.435567,0.778968,0.911454,1.05739,1.13489,1.19843,1.22435,1.25663,1 +-0.185699,-0.0791813,-0.40963,-0.261812,-0.0741137,-0.197473,-0.0672371,-0.373127,-0.295715,-0.101111,-0.211636,-0.0789215,-0.402933,-0.399994,-0.110626,-0.20467,-0.114214,-0.497436,-0.318404,-0.0165918,0.383632,-0.539296,0.247939,-0.496517,-0.20295,0.922608,-0.527662,0.133594,-0.533669,-0.112485,0.704895,-0.541215,0.303292,-0.507651,-0.229198,0.0749633,0.0588814,-0.0680667,-0.116783,-0.126868,-0.117722,0 +1.39565,-1.68827,-1.08192,3.11899,1.32292,1.43064,-1.70793,-1.10659,2.84456,1.29945,1.43459,-1.74285,-1.07929,1.95079,1.3418,1.47591,-1.77773,-1.04367,1.78435,1.40614,0.499466,-1.0629,0.589601,-0.662266,-1.65512,1.36335,-1.14132,0.620076,-0.769353,-2.00039,1.04698,-1.07106,0.668603,-0.689292,-1.85834,-1.12081,-1.43772,-1.40202,-1.35732,-1.33809,-1.3407,0 +-0.0965428,-0.389399,-0.61217,0.0481167,0.065358,-0.10099,-0.396766,-0.630991,-0.0378615,0.0514347,-0.0941638,-0.445042,-0.721147,-0.125968,0.118762,-0.0741337,-0.488931,-0.747864,-0.18333,0.222941,0.651811,-0.751322,0.418305,-0.580216,-0.502814,1.34572,-0.811453,0.370508,-0.654939,-0.562684,1.08957,-0.769633,0.479875,-0.59256,-0.603824,0.0262671,-0.173755,-0.363512,-0.448281,-0.479615,-0.507531,0 +2.86587,-2.16877,-1.15084,4.70372,2.06288,3.02651,-2.20218,-1.17344,5.57762,2.07617,3.09489,-2.20894,-1.12905,7.05374,2.1105,2.96945,-2.17041,-1.07401,7.11146,2.09859,0.401354,-1.07148,0.609492,-0.663335,-2.07187,1.25017,-1.15959,0.637748,-0.771792,-2.33747,0.985967,-1.106,0.678018,-0.692491,-2.24535,-2.14478,-1.96019,-1.71365,-1.62985,-1.60519,-1.60478,0 +-0.483433,0.657678,0.526143,-0.61208,-0.416496,-0.492029,0.664874,0.587912,-0.624604,-0.416376,-0.494348,0.678488,0.786005,-0.599147,-0.447021,-0.489041,0.660666,0.795051,-0.587662,-0.44982,0.902938,0.440355,-0.844187,0.304551,0.571241,1.04365,0.71389,-1.60034,0.815121,0.721657,0.937651,0.51075,-1.02863,0.468841,0.610771,0.283791,0.559586,0.639797,0.697458,0.73512,0.752322,0 +-0.608092,0.703975,0.730313,-0.552779,-0.978531,-0.61192,0.679217,0.817819,-0.624095,-0.984978,-0.594209,0.605254,0.576908,-0.689243,-0.903178,-0.570131,0.553329,0.201991,-0.57073,-0.77702,0.855101,0.178643,-0.315286,0.00366835,0.576388,1.20914,0.0392408,-0.515668,-0.0602205,0.468001,1.2691,0.147548,-0.379554,0.00407814,0.477776,0.915662,1.0101,1.01146,1.00998,1.01894,1.01077,0 +-0.587422,0.598627,0.604374,-0.531629,-0.922128,-0.589681,0.570471,0.656468,-0.603145,-0.915322,-0.573049,0.496317,0.410519,-0.67444,-0.854592,-0.547192,0.434967,0.059271,-0.547032,-0.711042,1.08237,0.051385,-0.28627,-0.067157,0.441994,1.50989,-0.0444882,-0.525213,-0.0781317,0.374007,1.42944,0.038811,-0.338064,-0.0387509,0.376326,0.860758,0.913053,0.860279,0.852163,0.838759,0.855891,1 +-0.481055,0.812802,1.19363,-0.658837,-0.648412,-0.476557,0.79752,1.26076,-0.683006,-0.620816,-0.485492,0.788474,1.35224,-0.641946,-0.624164,-0.488881,0.766894,1.21152,-0.574509,-0.597717,1.17817,0.908445,-1.49512,0.906786,0.713301,1.2621,1.18445,-2.38424,1.51368,0.79666,1.24556,0.915592,-1.62841,0.999261,0.699248,0.495937,0.784326,0.915122,1.00264,1.03248,1.0718,1 +-0.498016,0.484883,0.357155,-0.504453,-0.640706,-0.500305,0.466182,0.412168,-0.562645,-0.647813,-0.488131,0.405311,0.258743,-0.628112,-0.600826,-0.466751,0.348159,-0.0202901,-0.511619,-0.46936,1.14136,-0.0956131,-0.174824,-0.190237,0.281582,1.44955,-0.0744536,-0.403193,-0.154694,0.351738,1.38741,-0.0540635,-0.197443,-0.152015,0.308189,0.562574,0.67375,0.642735,0.617767,0.620846,0.630351,0 +-0.236174,-0.0860279,-0.467401,-0.319513,0.239573,-0.238433,-0.0718348,-0.455777,-0.294596,0.239882,-0.240262,-0.0543536,-0.425482,-0.280683,0.200682,-0.24532,-0.0305352,-0.379274,-0.380793,0.112645,1.70532,-0.47001,-0.0954832,-0.214085,-0.300683,1.16091,-0.376756,-0.16405,-0.20436,0.0669273,1.48514,-0.484943,0.0764327,-0.296165,-0.212506,-0.168118,-0.353957,-0.443403,-0.482814,-0.497187,-0.497526,1 +-0.594069,0.821528,0.864107,-0.620736,-0.752951,-0.598157,0.812612,0.933633,-0.647983,-0.737999,-0.588722,0.794691,1.06014,-0.651501,-0.749253,-0.57234,0.752451,0.894522,-0.621506,-0.707484,1.17029,0.474858,-0.787314,0.294936,0.61255,1.15384,0.716559,-1.49273,0.73593,0.771333,1.11042,0.575328,-0.984448,0.480585,0.681516,0.641356,0.834562,0.891633,0.948935,0.947276,0.978121,0 +-0.599187,0.967666,1.29917,-0.669732,-0.748553,-0.598587,0.949825,1.31118,-0.691042,-0.697169,-0.596858,0.944697,1.38254,-0.63342,-0.71471,-0.594819,0.936351,1.45213,-0.596428,-0.753921,1.03469,0.970955,-1.49142,0.947946,0.818739,0.821418,1.38633,-2.50567,1.74867,0.965967,0.795251,1.15466,-1.84142,1.29458,0.924447,0.638157,0.845056,0.946826,1.01568,1.05557,1.07181,0 +-0.318004,0.118222,-0.0307649,-0.432388,-0.333687,-0.311957,0.123659,-0.06151,-0.45039,-0.342003,-0.334256,0.116853,-0.202551,-0.441274,-0.340893,-0.352337,0.0657476,-0.319763,-0.466232,-0.320703,0.729233,-0.297064,0.321393,-0.38803,0.176544,0.999321,-0.220052,-0.263371,-0.223271,0.120221,0.917701,-0.24446,0.0791513,-0.299813,0.10265,0.313197,0.238204,0.131486,0.0803106,0.0479065,-0.00308847,1 +1.76853,-1.39225,-1.00524,0.723376,2.08246,1.66229,-1.36369,-1.01948,0.984058,2.11599,1.65834,-1.35925,-0.982719,1.23875,2.13143,1.62099,-1.34213,-0.91975,0.744965,2.07526,1.87148,-0.942588,0.46988,-0.618517,-1.49118,1.70196,-0.907256,0.44926,-0.657098,-1.09727,1.76463,-0.914762,0.525183,-0.621675,-1.22956,-2.39008,-1.687,-1.47264,-1.41683,-1.40321,-1.39741,1 +4.36066,-2.187,-1.14786,2.6023,2.98957,4.10475,-2.14329,-1.16377,3.46341,3.07056,4.04116,-2.11898,-1.09936,4.10874,3.01839,4.16362,-2.14325,-1.03275,2.62165,3.04088,0.921979,-1.06739,0.552629,-0.657128,-1.96729,1.04269,-1.07581,0.55148,-0.741877,-1.98263,0.83832,-1.0537,0.619647,-0.676159,-2.17762,-3.62889,-2.21848,-1.83404,-1.71771,-1.68213,-1.66758,1 +3.58529,-2.33962,-1.1603,4.8992,2.38166,3.86102,-2.37487,-1.18279,6.0637,2.42657,3.77422,-2.35644,-1.13678,8.15202,2.44615,3.31669,-2.27814,-1.08217,9.0134,2.36848,0.273536,-1.07895,0.595778,-0.664425,-2.12824,1.2074,-1.15473,0.63375,-0.771812,-2.38914,0.771782,-1.11043,0.67357,-0.692621,-2.35515,-2.4409,-2.0826,-1.77916,-1.68273,-1.664,-1.66409,0 +1.6671,-1.73362,-1.06764,1.86728,1.57514,1.76956,-1.76774,-1.08749,2.12615,1.61626,1.7082,-1.72085,-1.04305,2.05125,1.67918,1.35469,-1.58344,-0.976342,1.37566,1.52917,0.77537,-0.987766,0.596008,-0.647683,-1.58634,1.48866,-1.08992,0.635719,-0.761527,-1.86687,1.24384,-1.03822,0.666814,-0.680847,-1.63345,-1.50091,-1.58458,-1.45678,-1.38081,-1.33386,-1.3066,0 +-0.506772,0.710772,0.687544,-0.59271,-0.639137,-0.498016,0.687603,0.716819,-0.620436,-0.59286,-0.491489,0.643155,0.568062,-0.582975,-0.546333,-0.48993,0.617877,0.365481,-0.487421,-0.504663,1.54851,0.241882,-0.63281,0.216594,0.435637,1.11461,0.515408,-0.832742,0.456816,0.686094,1.2477,0.26522,-0.431129,0.135494,0.575988,0.55036,0.744686,0.73436,0.688483,0.65275,0.649252,1 +-0.63353,0.807005,0.79799,-0.580306,-0.897101,-0.63353,0.785286,0.829764,-0.625884,-0.865956,-0.61193,0.724675,0.618267,-0.626443,-0.801008,-0.594919,0.697318,0.329918,-0.525103,-0.71385,1.50831,0.273126,-0.736589,0.335356,0.453988,0.802697,0.278434,-0.57274,0.299154,0.718598,1.19214,0.236574,-0.451249,0.193935,0.575448,0.845016,0.906806,0.884567,0.845216,0.823637,0.822587,1 +-0.538906,0.480195,0.0505753,-0.616748,-0.2052,-0.553029,0.516857,0.0525542,-0.604504,-0.263201,-0.563584,0.609451,0.281662,-0.497836,-0.358035,-0.574669,0.690542,0.597837,-0.471139,-0.540985,0.0677768,0.359844,-1.08377,0.546613,0.445642,-0.351958,1.10927,-1.53329,0.874282,0.809154,-0.377055,0.737829,-0.950225,0.461494,0.727394,0.26562,0.0794313,0.0596808,0.126288,0.170057,0.193295,1 +-0.0541035,-0.624604,-0.855871,-0.0253473,0.672261,-0.0607102,-0.621816,-0.855721,0.107028,0.680107,-0.0585613,-0.63466,-0.852643,0.400614,0.711132,-0.0534638,-0.627453,-0.813822,0.69361,0.729863,-0.949615,-0.352647,0.804196,-0.549421,-0.250037,-1.06503,-0.794591,0.71355,-0.727514,-0.583714,-0.570321,-0.751462,0.726874,-0.65353,-0.556518,-0.59314,-0.772132,-0.822777,-0.826155,-0.803207,-0.7752,0 +-0.622695,0.713571,0.338374,-0.51002,-0.749263,-0.627842,0.709892,0.342912,-0.55211,-0.750273,-0.607502,0.675859,0.153805,-0.545563,-0.688373,-0.588702,0.658527,0.0225389,-0.486752,-0.614109,-0.522594,0.192106,0.370948,-0.168018,0.758579,-0.620436,-0.139672,0.600936,-0.327859,0.539016,-0.273166,-0.0457376,0.443403,-0.258483,0.585413,0.707743,0.787375,0.707623,0.63404,0.585503,0.589122,0 +-0.631101,0.67489,0.200632,-0.494138,-0.846795,-0.637728,0.67321,0.214815,-0.527112,-0.849504,-0.618797,0.645524,0.0951733,-0.537727,-0.824117,-0.600226,0.619337,-0.00295858,-0.518776,-0.778559,-1.0952,0.0256875,0.61231,-0.264141,0.627253,-1.17312,-0.149437,0.740267,-0.356326,0.535658,-0.87858,-0.0885666,0.59214,-0.30626,0.533389,0.825036,0.810933,0.699298,0.600756,0.576478,0.575848,1 +-0.650751,1.07624,1.0799,-0.637758,-0.848584,-0.655019,1.06559,1.10243,-0.664445,-0.830243,-0.635649,1.02977,0.893942,-0.602065,-0.771192,-0.619367,1.03107,0.686674,-0.496647,-0.737579,-0.415217,0.983629,-0.414517,0.420144,1.1227,-0.753481,0.727284,-0.00021998,0.356456,1.00417,-0.482034,0.729013,-0.311857,0.30591,1.01103,0.725994,0.973304,1.1215,1.12874,1.09347,1.05132,0 +-0.667643,0.957571,1.00834,-0.579436,-1.17572,-0.668992,0.928705,0.994163,-0.643135,-1.12311,-0.645274,0.875571,0.565533,-0.626083,-0.990565,-0.629712,0.860279,0.300083,-0.519795,-0.914652,-0.32637,0.351798,0.565733,-0.0531838,0.862268,-0.636328,0.116083,0.623704,-0.16388,0.738738,-0.194895,0.263371,0.460115,-0.104499,0.797859,1.0627,1.23554,1.24775,1.20786,1.1559,1.11928,1 +-0.695909,1.07954,0.833082,-0.625374,-1.05754,-0.703705,1.09604,0.911504,-0.649202,-1.09559,-0.684575,1.09485,0.971334,-0.627483,-1.08712,-0.663715,1.08674,0.830124,-0.570661,-1.03886,-1.00231,0.619447,0.0162021,0.105588,1.00672,-1.70444,0.765955,0.390669,0.207598,1.05686,-1.39191,0.73648,0.211167,0.116013,1.07315,0.946237,1.11331,1.21309,1.19561,1.16895,1.1342,1 +-0.672861,1.2401,1.60836,-0.667733,-0.997292,-0.677548,1.22789,1.65004,-0.700647,-0.985887,-0.658338,1.18674,1.50321,-0.656279,-0.941969,-0.638607,1.16657,1.14362,-0.549051,-0.875601,-0.528841,1.31013,-0.801687,0.77717,1.21381,-1.02616,1.05912,-0.307979,0.659477,1.12456,-0.802027,1.13827,-0.624784,0.649802,1.17662,0.807814,1.2158,1.45958,1.53081,1.50444,1.46591,0 +-0.632171,1.00913,1.2738,-0.630101,-0.845526,-0.636838,0.993414,1.30677,-0.672341,-0.803327,-0.621046,0.951144,0.924098,-0.624344,-0.73527,-0.606653,0.942088,0.584384,-0.495647,-0.704025,0.0606603,0.914143,-0.697948,0.55139,1.04911,-0.374627,0.520455,-0.403562,0.30551,0.854972,-0.0791412,0.656679,-0.615509,0.425932,0.905057,0.691222,1.00192,1.17527,1.19582,1.1402,1.07824,0 +-0.702846,1.1719,1.03806,-0.651631,-1.11439,-0.710192,1.18113,1.02728,-0.669642,-1.15313,-0.69328,1.20095,1.18792,-0.627363,-1.15965,-0.672341,1.18635,1.09546,-0.568342,-1.12088,-0.241772,1.22583,-0.894742,0.798359,1.18363,-0.915732,0.908565,-0.194715,0.442014,1.10684,-0.720587,1.04982,-0.470659,0.53128,1.16769,1.01284,1.20456,1.28966,1.30836,1.3209,1.31631,1 +0.49075,-1.03529,-0.990075,0.438716,1.09816,0.467281,-1.00951,-1.00055,0.692031,1.05275,0.407571,-0.979331,-0.946877,0.923658,0.967446,0.375336,-0.953853,-0.867145,0.732801,0.941989,-0.636998,-0.697998,0.746634,-0.59194,-0.838569,-0.814241,-0.927276,0.644314,-0.736999,-0.863977,-0.526002,-0.869275,0.625134,-0.634029,-0.911394,-0.978341,-1.18374,-1.15833,-1.13616,-1.10932,-1.07722,0 +-0.626763,1.05453,0.877441,-0.650821,-0.774401,-0.63206,1.05929,0.870933,-0.663785,-0.797899,-0.617078,1.07183,1.00375,-0.600706,-0.800148,-0.601895,1.07471,0.934782,-0.518366,-0.774701,0.0601506,1.24919,-1.00434,0.803507,1.13371,-0.577127,0.944188,-0.40885,0.533949,1.05805,-0.310438,1.02041,-0.672841,0.564834,1.0917,0.634989,0.929165,1.0415,1.06739,1.05877,1.06157,0 +-0.717249,1.30528,1.24296,-0.671851,-1.17808,-0.722776,1.30374,1.23327,-0.690182,-1.20663,-0.702566,1.30278,1.32104,-0.624094,-1.17897,-0.683196,1.29465,1.20299,-0.532089,-1.13205,-0.28627,1.48189,-0.0790812,0.718109,1.35857,-0.998391,1.24116,0.542204,0.683455,1.22191,-0.55037,1.29242,0.0506453,0.559466,1.28772,1.03102,1.33835,1.46555,1.48094,1.45873,1.45163,1 +-0.728723,1.53714,2.3233,-0.705384,-1.35838,-0.731562,1.5151,2.28442,-0.73517,-1.3396,-0.709742,1.48214,2.24011,-0.6747,-1.29275,-0.691172,1.46443,1.95189,-0.578707,-1.24126,-0.0829194,2.12439,-0.975962,1.60993,1.49183,-0.789224,1.78176,-0.0597308,1.41763,1.38905,-0.313476,1.96396,-0.787814,1.40855,1.4252,1.13924,1.59356,1.88024,2.00695,2.01062,1.98528,1 +1.15766,-1.16521,-0.962709,0.10224,2.24367,1.09635,-1.12487,-0.968406,0.310508,2.26272,1.10977,-1.10564,-0.891774,0.564254,2.25332,1.11711,-1.05543,-0.819189,0.63356,2.21494,2.14201,-0.917031,0.406401,-0.587722,-1.58512,1.90494,-0.59285,0.232556,-0.568552,-0.316505,1.86015,-0.795271,0.380784,-0.558327,-1.00095,-2.57202,-1.79355,-1.48139,-1.39744,-1.38343,-1.37705,1 +-0.672111,1.42698,2.77017,-0.727753,-1.14314,-0.669352,1.39468,2.70172,-0.75531,-1.07324,-0.660976,1.38277,2.7926,-0.679997,-1.06405,-0.660387,1.37904,2.77249,-0.594309,-1.09259,0.430949,2.56852,-2.52426,2.46423,1.3362,-0.123549,2.66059,-2.37273,2.82548,1.34821,0.0183211,2.72606,-2.57029,2.64907,1.37435,0.933803,1.32795,1.62923,1.84302,1.93523,1.93525,0 +1.00345,-1.11641,-0.760138,-0.0343129,1.76243,0.962549,-1.1026,-0.763676,0.0507851,1.78503,1.00023,-1.10172,-0.709083,0.0150326,1.84689,0.997822,-1.07162,-0.689832,-0.120131,1.81399,1.6902,-0.736879,0.171976,-0.427351,-1.1244,1.48572,-0.604674,0.0822496,-0.383022,-0.631821,1.41619,-0.686194,0.098172,-0.351388,-1.03564,-1.90804,-1.52844,-1.28909,-1.21407,-1.20642,-1.21179,1 +0.403113,-0.852213,-0.889944,-0.275055,1.67786,0.371488,-0.818849,-0.904827,-0.135284,1.66602,0.330298,-0.770693,-0.820598,0.164919,1.6105,0.234335,-0.683905,-0.709383,0.366081,1.50048,1.48983,-0.763966,0.397445,-0.535858,-0.649882,1.67838,-0.170936,-0.226619,-0.214405,-0.164669,1.46968,-0.482234,0.0831194,-0.379394,-0.457276,-1.7211,-1.56385,-1.35832,-1.27093,-1.24379,-1.23216,1 +-0.725675,1.45496,2.31278,-0.691841,-1.3956,-0.728973,1.43903,2.31561,-0.729883,-1.37327,-0.705914,1.39425,2.07366,-0.685954,-1.28733,-0.683955,1.36711,1.54802,-0.567122,-1.18955,-0.00344829,1.72156,-0.785025,1.24864,1.39456,-0.569931,1.37642,-0.211756,1.01982,1.28102,-0.127807,1.61462,-0.716629,1.1221,1.32309,1.17573,1.62389,1.91642,2.02803,2.00587,1.93341,1 +1.28157,-1.31013,-0.984218,0.277145,1.87561,1.24788,-1.2904,-0.999331,0.533009,1.87795,1.30634,-1.28875,-0.934872,0.81701,1.94968,1.3933,-1.27202,-0.864667,0.79655,2.01398,2.02024,-0.904147,0.370469,-0.544004,-1.37704,1.87956,-0.737769,0.127447,-0.513279,-0.781367,1.72328,-0.818329,0.305541,-0.49052,-1.19602,-1.93519,-1.708,-1.47086,-1.39821,-1.39567,-1.40355,1 +-0.197353,-0.390469,-0.588712,-0.00682636,0.00477767,-0.18288,-0.419055,-0.604634,-0.0742137,0.083429,-0.186739,-0.442753,-0.683665,-0.118692,0.172325,-0.200672,-0.421484,-0.686244,-0.0964127,0.156573,-0.341523,-0.539916,0.801488,-0.545413,-0.227618,-0.370009,-0.859309,0.743746,-0.713691,-0.677928,0.147258,-0.731312,0.762447,-0.621675,-0.445872,0.14378,-0.149297,-0.358125,-0.385241,-0.36795,-0.312617,0 +-0.214055,-0.445022,-0.436386,-0.0228085,-0.377695,-0.178463,-0.501714,-0.479006,-0.260722,-0.339004,-0.158003,-0.538297,-0.577158,-0.801088,-0.260742,-0.192606,-0.46961,-0.559726,-0.925837,-0.201431,-0.256105,-0.671951,0.710602,-0.536597,-0.424882,-0.698418,-0.847575,0.81729,-0.678418,-0.659317,0.0134835,-0.692681,0.85835,-0.585593,-0.446811,0.488101,0.237024,-0.0437786,-0.0563225,-0.0236284,0.00170918,1 +0.0647883,-0.642885,-0.683655,0.192096,0.173575,0.0872374,-0.682986,-0.71566,0.0956532,0.228688,0.079781,-0.714051,-0.773681,-0.0300453,0.315595,0.104849,-0.700927,-0.751372,-0.000919472,0.396056,-0.705355,-0.700497,0.81761,-0.570591,-0.533709,-0.794271,-0.928295,0.784426,-0.721537,-0.951434,-0.26592,-0.806775,0.811513,-0.636438,-0.725205,-0.0290658,-0.316625,-0.466652,-0.493109,-0.497976,-0.465832,0 +-0.708413,1.20856,1.15955,-0.639607,-1.30192,-0.712611,1.18935,1.1591,-0.666934,-1.26532,-0.687873,1.13463,0.726684,-0.575738,-1.15122,-0.665664,1.10901,0.421823,-0.40781,-1.02045,-0.825796,0.900649,0.321663,0.336795,1.16492,-0.79625,0.742736,0.458335,0.338504,1.08359,-0.486452,0.815301,0.16379,0.373107,1.11458,1.14244,1.47561,1.49235,1.42082,1.36982,1.32588,1 +-0.512029,1.20102,2.58664,-0.744375,-0.686604,-0.498936,1.19052,2.4666,-0.767155,-0.617648,-0.506712,1.24605,2.81895,-0.669342,-0.655599,-0.55075,1.31659,3.48423,-0.578597,-0.827315,-0.2662,3.80834,-5.20905,5.18493,1.44795,-0.506532,3.54307,-3.88902,4.79936,1.30657,-0.637688,3.81098,-5.11261,5.47252,1.50923,0.511739,0.85745,1.15191,1.45909,1.63781,1.72935,1 +-0.688033,1.17787,2.15455,-0.708893,-1.00487,-0.695449,1.22056,2.11581,-0.73493,-1.03377,-0.683145,1.3108,2.36014,-0.672561,-1.05186,-0.669682,1.35892,2.6184,-0.61341,-1.11432,-0.194655,2.45223,-3.66653,3.82194,1.36506,-0.485122,1.93068,-2.11022,2.50553,1.34541,-0.483973,2.26129,-2.97088,3.2467,1.42251,0.901549,1.07871,1.2546,1.43872,1.5458,1.62106,1 +-0.664425,1.34015,1.99557,-0.71408,-0.930284,-0.665714,1.32893,1.96437,-0.73628,-0.889115,-0.651651,1.34173,2.24635,-0.661516,-0.894372,-0.640746,1.34162,2.53986,-0.605533,-0.932473,-0.974043,2.51339,-2.62596,2.66443,1.47082,-0.992924,2.12871,-2.08831,2.36617,1.30852,-1.09883,2.35984,-2.64484,2.67463,1.44257,0.711592,1.13763,1.39201,1.57823,1.68954,1.71948,0 +-0.67335,0.871953,0.349659,-0.559766,-1.07833,-0.679257,0.870294,0.361523,-0.574369,-1.06811,-0.660077,0.843317,0.218843,-0.509151,-1.02051,-0.638218,0.81687,0.0870773,-0.396656,-0.914322,-1.44511,0.321193,0.63322,-0.138812,0.845896,-1.16724,0.194035,0.664514,-0.167668,0.773202,-0.955472,0.218833,0.536607,-0.138852,0.777529,0.993144,1.1208,0.997072,0.879819,0.782427,0.75491,1 +-0.22506,-0.345431,-0.706364,-0.0464869,0.138832,-0.209687,-0.370878,-0.728573,0.0222091,0.155334,-0.175724,-0.430579,-0.781747,0.220602,0.270298,-0.160801,-0.44944,-0.791083,0.538926,0.351508,-0.761477,-0.515418,0.641166,-0.584144,-0.189697,-0.380933,-0.768854,0.621675,-0.71458,-0.406811,-0.103579,-0.731602,0.658638,-0.641776,-0.36822,-0.0210197,-0.295475,-0.494118,-0.583244,-0.608652,-0.621156,0 +-0.593979,1.206,1.74837,-0.719108,-0.690022,-0.598437,1.1991,1.71842,-0.737519,-0.662416,-0.593649,1.22673,2.06128,-0.648103,-0.680177,-0.595508,1.24567,2.3962,-0.568432,-0.73585,-0.946806,2.64108,-2.85209,2.76209,1.41431,-0.830973,2.44351,-2.75111,2.7466,1.22425,-1.05321,2.49009,-2.84936,2.66895,1.34589,0.464732,0.904787,1.19415,1.37866,1.46124,1.51975,1 +-0.679198,1.35019,1.9397,-0.703185,-1.06548,-0.684015,1.36051,1.95823,-0.728433,-1.07801,-0.670462,1.37332,2.14636,-0.666264,-1.07221,-0.659467,1.36994,2.05865,-0.586803,-1.05532,-1.1417,2.28017,-1.60746,2.03436,1.51565,-1.15116,1.74292,-1.17733,1.56102,1.28842,-1.0354,1.96933,-1.62775,1.76966,1.41354,0.867655,1.28721,1.56257,1.70588,1.75585,1.74712,1 +0.100381,-0.91893,-0.948746,0.759469,0.351978,0.120571,-0.942589,-0.975472,0.89981,0.370179,0.148597,-0.98153,-0.982279,1.22491,0.451299,0.170247,-0.985128,-0.950025,1.55675,0.553879,-1.28908,-0.848584,0.699807,-0.631201,-0.909325,-1.0159,-1.00475,0.67399,-0.75491,-1.0694,-0.722726,-0.941439,0.699398,-0.678358,-0.989186,-0.0402203,-0.711981,-0.89862,-0.946017,-0.964788,-1.00191,0 +-0.195174,0.782907,1.39224,-0.725145,-0.155774,-0.190896,0.771872,1.33206,-0.739488,-0.0795611,-0.20503,0.815431,1.67461,-0.630101,-0.118942,-0.263231,0.871033,2.25838,-0.536487,-0.243121,-0.670182,2.70535,-3.7494,3.19607,1.10191,-0.655889,2.89341,-3.89583,3.56799,0.89899,-1.0131,2.75141,-3.72024,3.28651,1.13219,-0.094014,0.394647,0.667643,0.885536,1.00751,1.08289,1 +-0.59297,1.33495,2.7604,-0.739798,-0.780318,-0.588921,1.31616,2.64604,-0.764186,-0.718098,-0.588112,1.33118,2.84413,-0.672021,-0.71455,-0.603724,1.36174,3.06216,-0.57111,-0.772802,-0.0772921,3.86627,-5.20144,5.46861,1.53581,-0.295275,3.00604,-3.71351,4.11271,1.33585,-0.398175,3.439,-4.78105,4.93837,1.50847,0.564753,0.978331,1.3169,1.58887,1.75192,1.80944,0 +-0.268229,0.211536,-0.220972,-0.406771,-0.0617697,-0.284111,0.227838,-0.207259,-0.40847,-0.0413898,-0.292277,0.218273,-0.270798,-0.380534,-0.0250778,-0.299054,0.202521,-0.32645,-0.337175,-0.00713644,-0.50995,-0.136993,0.593979,-0.235305,0.34864,-0.813702,-0.338624,0.697538,-0.398735,0.192506,-0.383472,-0.309648,0.582485,-0.370808,0.167828,-0.0119742,0.147738,0.0933043,0.0237084,0.00390809,0.00322844,1 +-0.685594,1.16848,1.16551,-0.650311,-0.937961,-0.692811,1.17578,1.2044,-0.67522,-0.924797,-0.671901,1.14596,0.97961,-0.605673,-0.885936,-0.649742,1.11635,0.740068,-0.499106,-0.861578,-0.283041,1.33442,-0.287179,0.790983,1.31762,-0.460944,0.793521,0.0107247,0.421744,1.08614,-0.187438,0.920649,-0.227239,0.473898,1.12392,0.872673,1.02557,1.14824,1.18927,1.17941,1.17151,1 +-0.700487,1.35348,1.75668,-0.718048,-0.947226,-0.706194,1.38344,1.69196,-0.73636,-0.964917,-0.692291,1.4594,2.07089,-0.648532,-1.0255,-0.682196,1.5187,2.52697,-0.574169,-1.10439,-0.212996,2.99732,-3.45417,3.82016,1.56818,-0.839429,2.27609,-1.56172,2.56458,1.47927,-0.712301,2.67864,-2.66438,3.15335,1.57262,0.813472,1.04395,1.26761,1.41017,1.51966,1.60282,1 +-0.696459,1.08176,0.847705,-0.617807,-1.12191,-0.704375,1.09161,0.87756,-0.643355,-1.14023,-0.683255,1.07046,0.678618,-0.577737,-1.08349,-0.661376,1.04334,0.338934,-0.396836,-0.976472,-0.374707,0.774931,0.0637588,0.232057,1.09862,-0.44901,0.532549,0.193295,0.085798,0.971235,-0.202211,0.569002,0.0827096,0.104439,0.991914,0.999211,1.24215,1.26394,1.21571,1.17941,1.16159,1 +-0.536248,0.319304,-0.393477,-0.429489,-0.462344,-0.546772,0.34815,-0.354786,-0.399714,-0.520075,-0.538116,0.369069,-0.317245,-0.315915,-0.523534,-0.521265,0.360533,-0.30565,-0.254355,-0.455147,-0.329179,0.0627294,0.165589,-0.0106247,0.526512,-0.216034,-0.278873,0.255695,-0.288799,0.351698,0.0774022,-0.193645,0.185249,-0.0880068,0.34764,0.522674,0.42852,0.202961,0.0806005,0.0533139,0.0520046,0 +-0.468801,1.10521,2.11867,-0.738658,-0.512919,-0.462323,1.10195,2.00099,-0.758379,-0.457146,-0.4695,1.15832,2.37384,-0.656509,-0.496117,-0.518826,1.23119,3.07792,-0.569591,-0.670892,0.190377,3.39625,-4.87059,4.7893,1.36795,-0.18383,3.36623,-3.64377,4.40014,1.23548,-0.254945,3.55971,-4.77915,5.15345,1.441,0.32683,0.664565,0.949245,1.19021,1.3391,1.43422,1 +-0.545433,0.705295,0.640796,-0.55055,-0.743276,-0.552409,0.716879,0.635089,-0.599527,-0.784596,-0.545153,0.696649,0.539246,-0.669682,-0.737909,-0.546183,0.672441,0.233606,-0.595129,-0.692561,-0.648672,0.40867,0.483203,0.0698959,0.847155,-0.883398,-0.0124539,0.323771,-0.208698,0.579177,-0.44932,0.255585,0.170047,-0.00395793,0.721017,0.696529,0.83847,0.94017,0.921559,0.923558,0.940979,1 +-0.717389,1.41948,2.18781,-0.681916,-1.32577,-0.722146,1.41272,2.21582,-0.724176,-1.29935,-0.696189,1.35866,1.8187,-0.679537,-1.20499,-0.677718,1.34636,1.28177,-0.545593,-1.12186,-0.655579,1.614,-0.195524,1.21191,1.43952,-0.850594,1.11974,0.0912052,0.856461,1.23751,-0.485492,1.45849,-0.468081,1.15055,1.32066,1.12002,1.53061,1.80583,1.88582,1.8879,1.85837,1 +-0.698628,1.13285,1.06999,-0.615658,-1.27432,-0.701127,1.10672,1.03844,-0.650732,-1.23502,-0.675499,1.03695,0.597477,-0.574269,-1.0886,-0.654759,1.00193,0.268009,-0.399194,-0.962229,-0.468721,0.669572,0.553289,0.124209,1.06146,-0.418115,0.440224,0.614229,0.0502255,0.94026,-0.0482163,0.542704,0.46932,0.0722847,0.956761,1.12502,1.42059,1.48296,1.37973,1.32319,1.28724,1 +-0.340493,1.1356,2.84367,-0.748253,-0.594749,-0.311647,1.10502,2.67568,-0.771832,-0.498426,-0.333976,1.13339,2.93123,-0.671901,-0.513389,-0.40844,1.18669,3.37722,-0.567822,-0.640077,0.0825296,3.97573,-5.4663,5.57743,1.36565,-0.0919949,3.73698,-4.66681,5.2856,1.16778,-0.275375,3.97474,-5.68389,6.01995,1.40263,0.349509,0.822168,1.17688,1.46086,1.63831,1.70769,1 +-0.683515,1.40879,2.3693,-0.748693,-0.935192,-0.680946,1.41598,2.22088,-0.770143,-0.888115,-0.672831,1.50035,2.47595,-0.660527,-0.929935,-0.67374,1.58006,2.93929,-0.536957,-1.05368,-1.03483,4.53328,-3.61424,5.17022,1.79074,-1.71884,3.70216,-0.99997,4.25624,1.57556,-1.65565,4.08418,-2.51283,4.53218,1.80594,0.794001,1.00621,1.25355,1.49177,1.64874,1.66636,1 +-0.685764,0.982089,0.467221,-0.594249,-1.05389,-0.696039,1.00811,0.495317,-0.606693,-1.10608,-0.677758,1.02059,0.479075,-0.550211,-1.09761,-0.656429,1.01299,0.346131,-0.441304,-1.01505,-0.768134,0.683366,0.0810604,0.284731,1.06642,-0.990285,0.374447,0.365231,0.0334737,0.924148,-0.514068,0.519616,0.0382214,0.205,0.970405,0.975832,1.15152,1.07455,0.969295,0.928195,0.922588,1 +-0.5314,0.217434,-0.460505,-0.350638,-0.553519,-0.55012,0.252566,-0.426421,-0.325701,-0.629612,-0.554249,0.290048,-0.392458,-0.293027,-0.675659,-0.535998,0.288479,-0.36744,-0.316325,-0.595728,-0.722816,-0.261532,0.502624,-0.254845,0.259213,-0.610661,-0.413188,0.593379,-0.442663,0.242052,-0.181991,-0.362123,0.535628,-0.322872,0.161051,0.678888,0.441104,0.169837,0.0682466,0.0790013,0.0678768,1 +-0.646643,0.928276,1.27431,-0.613769,-1.10769,-0.650301,0.927026,1.25824,-0.666744,-1.1183,-0.631521,0.901059,0.886226,-0.670882,-1.04426,-0.609382,0.842467,0.521725,-0.61335,-0.946437,-0.781557,0.649992,0.731092,0.235485,1.00103,-1.07013,0.373057,0.344641,0.141931,0.823177,-0.651071,0.713301,0.187388,0.341193,0.972524,0.928106,1.21893,1.32164,1.35859,1.30836,1.2797,1 +-0.564784,0.392588,-0.188558,-0.425741,-0.607313,-0.566303,0.379604,-0.196124,-0.422813,-0.597627,-0.550231,0.34662,-0.301203,-0.334906,-0.543064,-0.535808,0.343282,-0.336975,-0.227688,-0.492539,0.784746,-0.177903,-0.116293,0.014543,0.337455,0.30605,-0.240112,0.236804,-0.16238,0.310428,0.478366,-0.261372,0.116043,-0.129596,0.267789,0.669282,0.524553,0.30646,0.185259,0.140151,0.119561,1 +-0.424672,0.113215,-0.542734,-0.386231,-0.0593909,-0.450239,0.157293,-0.528451,-0.332397,-0.12214,-0.466232,0.206929,-0.458546,-0.220412,-0.231267,-0.468571,0.238933,-0.363382,-0.222521,-0.311707,1.28079,-0.36738,-0.179252,-0.028206,-0.00573699,0.125199,-0.146888,0.374187,-0.169197,0.396656,0.59343,-0.310428,0.116473,-0.158702,0.153595,0.210967,-0.0701655,-0.238113,-0.288209,-0.287439,-0.26486,1 +-0.231567,-0.558277,-0.937701,0.137223,0.372877,-0.272606,-0.492489,-0.922918,0.304691,0.266789,-0.343222,-0.392588,-0.848405,0.424492,0.0343131,-0.382473,-0.344272,-0.759128,0.16416,-0.146228,1.28643,-0.768124,0.538256,-0.625054,-0.455547,1.58823,-0.757999,0.607502,-0.712921,-0.334096,1.31376,-0.810263,0.629762,-0.658268,-0.55257,-0.10187,-0.583814,-0.783386,-0.822767,-0.807495,-0.791772,1 +-0.525773,0.198253,-0.413887,-0.254885,-0.540315,-0.536087,0.208858,-0.404332,-0.277704,-0.578197,-0.524963,0.191496,-0.441374,-0.34791,-0.588282,-0.506442,0.171956,-0.481294,-0.351768,-0.529581,1.23123,-0.547552,0.480335,-0.541265,0.0121643,0.310608,-0.505622,0.663235,-0.5714,0.1642,0.8172,-0.527852,0.614059,-0.559526,0.0542633,0.668453,0.426092,0.149907,0.0393007,0.0297354,0.0236285,1 +0.452289,-1.10366,-1.00362,0.892443,0.938251,0.420694,-1.06963,-1.01713,1.13897,0.843907,0.364332,-1.05131,-0.998551,1.38178,0.724765,0.395326,-1.09853,-0.965377,1.59405,0.830444,-0.498836,-0.947146,0.579086,-0.639787,-1.05251,-0.648453,-0.972704,0.555348,-0.738478,-0.958441,-0.250947,-0.943218,0.63288,-0.668173,-1.13144,-0.701816,-1.16037,-1.20294,-1.18584,-1.15842,-1.1525,1 +-0.440354,-0.151936,-0.655849,-0.0501751,-0.200562,-0.456007,-0.136683,-0.669132,-0.0263771,-0.229957,-0.453548,-0.14275,-0.680827,-0.0764126,-0.256195,-0.434847,-0.167708,-0.679897,-0.184749,-0.238953,-0.406711,-0.671321,0.467951,-0.57158,-0.215494,-0.0545033,-0.720027,0.518806,-0.659007,-0.191276,-0.288699,-0.692621,0.546053,-0.595568,-0.269558,0.375636,-0.0140829,-0.279693,-0.353397,-0.372348,-0.366571,1 +-0.250467,-0.500265,-0.722087,0.390939,-0.2457,-0.239653,-0.538856,-0.752941,0.124109,-0.260642,-0.218673,-0.583495,-0.799579,-0.415766,-0.216944,-0.190956,-0.558267,-0.744755,-0.851173,-0.06112,-1.05751,-0.855911,0.639867,-0.634589,-0.651641,-0.802607,-0.971584,0.658637,-0.746874,-0.794111,-0.365661,-0.846925,0.728673,-0.656259,-0.650562,0.42841,0.00388828,-0.338984,-0.452958,-0.472559,-0.478796,1 +-0.503414,0.16395,-0.382063,-0.327529,-0.588752,-0.513259,0.193365,-0.342223,-0.334926,-0.667963,-0.516187,0.227838,-0.282582,-0.453528,-0.685844,-0.491699,0.157323,-0.292407,-0.715739,-0.631901,-1.1417,-0.330628,0.881149,-0.437516,0.218173,-1.42162,-0.495208,0.784826,-0.548022,0.118942,-0.611321,-0.374507,0.782647,-0.484213,0.202521,0.610681,0.482634,0.269948,0.134734,0.159612,0.218273,1 +0.380084,-1.13833,-1.03933,0.754681,1.1406,0.355396,-1.10346,-1.05232,1.07952,1.09979,0.303701,-1.07947,-1.00026,1.41629,0.966187,0.256245,-1.02163,-0.922458,1.1765,0.823487,-0.599976,-0.810923,0.652021,-0.634159,-0.792932,-0.495617,-0.989795,0.655049,-0.75613,-1.0442,-0.0419394,-0.942409,0.666414,-0.678698,-0.98079,-0.910584,-1.30966,-1.29846,-1.27122,-1.22958,-1.22624,0 +0.46951,-1.22206,-1.05139,0.755101,1.28833,0.430679,-1.18002,-1.06773,1.11016,1.2346,0.338065,-1.11714,-1.00348,1.4263,1.08004,0.223701,-1.03382,-0.93931,1.5109,0.911174,-0.55056,-0.828624,0.651171,-0.641516,-0.905536,-0.415836,-0.97943,0.665804,-0.757989,-1.04696,-0.0567821,-0.955522,0.679487,-0.682376,-1.08143,-1.08535,-1.41846,-1.39381,-1.34727,-1.31537,-1.30164,0 +-0.515678,0.212186,-0.2038,-0.384032,-0.73498,-0.511459,0.195794,-0.213156,-0.396476,-0.739818,-0.4898,0.18313,-0.254805,-0.407091,-0.670312,-0.477786,0.199372,-0.191346,-0.527412,-0.573629,0.690672,-0.198503,-0.202141,0.146938,0.235805,-0.0192905,-0.401433,0.0582914,-0.103869,0.0688464,0.34722,-0.249128,-0.186149,0.203481,0.14175,0.778889,0.610981,0.343822,0.227788,0.20481,0.202261,1 +-0.6945,1.28449,1.89867,-0.730862,-0.997951,-0.698878,1.30939,1.84936,-0.749943,-1.00252,-0.685754,1.39825,2.00328,-0.643625,-1.01901,-0.675919,1.45324,2.15596,-0.515498,-1.07528,-1.15082,3.85907,-3.76683,4.73456,1.69604,-1.5522,2.63269,-1.7173,2.81874,1.42806,-1.51312,3.21857,-2.73598,3.49278,1.63178,0.862648,1.13774,1.35207,1.45494,1.51764,1.53156,1 +0.692081,-0.972084,-0.871613,0.360794,0.745695,0.762577,-0.974923,-0.87793,0.440514,0.743166,0.805256,-1.00117,-0.826536,0.0213495,0.726374,0.87763,-1.06945,-0.753701,-1.24417,0.650202,-0.343012,-0.863247,0.643695,-0.623385,-0.974453,-0.992804,-0.830014,0.427231,-0.700887,-0.958831,-0.446351,-0.782987,0.568512,-0.63337,-0.739658,-0.513429,-0.904987,-0.98001,-1.03931,-1.03672,-1.04535,1 +-0.435417,-0.0351628,-0.352737,-0.208288,-0.502044,-0.444372,-0.0213795,-0.333707,-0.311448,-0.533299,-0.441014,-0.010585,-0.344122,-0.675679,-0.479975,-0.431509,-0.00896579,-0.395976,-0.780388,-0.49051,-1.63007,-0.49095,0.793921,-0.517507,-0.00465751,-1.60426,-0.702166,0.778029,-0.665464,-0.165309,-1.25752,-0.522504,0.826825,-0.558077,-0.00251888,0.628702,0.34716,0.134984,-0.0337835,-0.00687663,0.0226489,1 +0.836441,-1.05716,-0.986177,0.51057,1.39678,0.784866,-1.00997,-0.990675,0.734391,1.39185,0.730273,-0.971075,-0.937251,0.856171,1.28145,0.716259,-0.971864,-0.890174,0.69549,1.17762,0.689393,-0.883297,0.404572,-0.580256,-1.06289,0.560076,-0.883297,0.414427,-0.659907,-0.778689,0.578307,-0.911324,0.537467,-0.629482,-1.13,-1.4228,-1.33917,-1.26892,-1.23305,-1.21815,-1.20965,0 +0.337895,-1.04987,-1.02525,0.803257,1.38955,0.288819,-1.01948,-1.04657,1.12712,1.39529,0.252217,-1.0057,-1.02195,1.66794,1.3793,0.205689,-0.988716,-0.975353,2.09099,1.30121,1.8576,-1.0012,0.536837,-0.646683,-1.35481,1.99281,-0.908485,0.518376,-0.71411,-0.688133,1.8195,-0.948196,0.600016,-0.663165,-1.11958,-1.39486,-1.37155,-1.33033,-1.30514,-1.29984,-1.2976,1 +-0.538996,0.499196,0.36863,-0.517656,-0.585983,-0.541545,0.486232,0.398255,-0.562035,-0.598517,-0.534858,0.440834,0.282182,-0.604594,-0.562375,-0.513469,0.393177,-0.0109247,-0.462933,-0.49057,1.31771,0.002289,-0.357045,0.055533,0.330019,1.47307,-0.0219992,-0.628202,0.0773422,0.370988,1.48873,-0.0147927,-0.402023,0.0462575,0.28485,0.566533,0.552969,0.512139,0.501394,0.494018,0.474118,0 +0.24507,-0.891004,-0.789843,0.549611,0.333117,0.307989,-0.932144,-0.83787,0.370669,0.38708,0.370519,-0.992075,-0.903748,0.261782,0.561945,0.466262,-1.07419,-0.912923,0.226119,0.745195,1.2048,-0.903538,0.465422,-0.603744,-1.06573,2.0883,-0.994073,0.502244,-0.720157,-1.15159,1.69477,-0.904677,0.549781,-0.635569,-1.06554,-0.114914,-0.61155,-0.789453,-0.838889,-0.845206,-0.860149,0 +-0.386411,-0.0530541,-0.0097452,-0.298224,-0.576728,-0.36739,-0.0987017,-0.0780219,-0.472109,-0.522894,-0.336195,-0.185259,-0.416226,-0.566573,-0.342972,-0.312477,-0.235865,-0.565613,-0.486822,-0.180791,1.13015,-0.500505,0.159462,-0.400974,-0.189247,1.63226,-0.685135,0.20476,-0.546552,-0.365031,1.49129,-0.525813,0.226349,-0.420914,-0.235215,0.701526,0.38908,0.127078,0.0424392,0.00250877,-0.00790611,1 +-0.582095,0.486072,-0.160122,-0.488281,-0.486992,-0.601016,0.536407,-0.103839,-0.481764,-0.568272,-0.605713,0.589621,0.0300352,-0.480205,-0.688193,-0.597797,0.587812,0.0889164,-0.562215,-0.794481,-0.267579,-0.153445,0.18466,-0.329309,0.420394,-0.361673,0.0569221,0.0719247,-0.219812,0.621966,-0.262951,-0.121421,0.16261,-0.323591,0.425342,0.521804,0.42875,0.308419,0.259923,0.239883,0.267089,1 +-0.396316,0.187218,-0.252446,-0.416456,0.0304151,-0.411249,0.210307,-0.213675,-0.415677,0.00107936,-0.425851,0.218073,-0.174605,-0.434937,-0.0477767,-0.433678,0.207818,-0.273686,-0.355446,-0.100481,0.519026,-0.341063,0.173065,-0.385281,0.161621,0.614959,-0.186649,-0.0327241,-0.300043,0.275715,0.53034,-0.323562,0.156513,-0.377745,0.135823,-0.0568122,-0.0100949,-0.0209797,-0.0537637,-0.0583814,-0.0403702,0 +0.359434,-1.11152,-1.04691,1.00267,1.40211,0.311238,-1.08192,-1.06731,1.35719,1.4068,0.274915,-1.0647,-1.0382,1.9385,1.37933,0.214925,-1.03574,-0.989156,2.37815,1.26245,1.74044,-1.02975,0.562695,-0.657368,-1.4593,2.04662,-0.935632,0.564084,-0.73459,-0.782517,1.63576,-0.985328,0.634609,-0.678638,-1.23813,-1.39754,-1.38903,-1.34374,-1.32436,-1.32367,-1.32438,1 +0.475007,-1.11729,-1.02255,0.841498,1.43981,0.435907,-1.09907,-1.04704,1.16941,1.44898,0.410969,-1.09822,-1.0254,1.73657,1.44507,0.363652,-1.08703,-0.983818,2.26043,1.36889,2.11119,-1.01118,0.528811,-0.644874,-1.5062,2.30682,-0.912563,0.501304,-0.707124,-0.812262,1.94084,-0.948386,0.582025,-0.656838,-1.18238,-1.48083,-1.38131,-1.32575,-1.30896,-1.30791,-1.30949,1 +-0.547782,0.568082,0.515938,-0.540935,-0.672271,-0.549421,0.554089,0.543914,-0.586763,-0.672041,-0.549451,0.518696,0.417536,-0.624884,-0.682266,-0.534468,0.477856,0.0965727,-0.482454,-0.63362,1.13962,0.0975424,-0.417515,0.0841689,0.421154,1.07952,0.0623395,-0.618497,0.0672771,0.437536,1.05947,0.0607903,-0.370868,0.0357626,0.415786,0.652011,0.656119,0.605284,0.583584,0.59263,0.610861,1 +-0.608352,0.784796,0.823487,-0.610831,-0.791223,-0.616918,0.800278,0.904047,-0.641696,-0.821927,-0.622275,0.815131,0.926446,-0.642965,-0.861658,-0.619157,0.807424,0.675699,-0.580166,-0.928775,0.838769,0.601596,-0.724415,0.444093,0.821718,0.614659,0.537147,-0.750533,0.337205,0.754081,0.655689,0.497676,-0.566553,0.277974,0.786505,0.728093,0.850064,0.948036,0.976332,0.95894,0.941909,1 +0.396346,-0.933953,-0.92038,0.210717,1.35266,0.360184,-0.908365,-0.934023,0.397226,1.35461,0.334256,-0.891094,-0.89987,0.639817,1.32327,0.295845,-0.872803,-0.8576,0.786925,1.23804,2.03811,-0.854172,0.281262,-0.483423,-1.18754,1.96816,-0.744475,0.259013,-0.546682,-0.536847,1.89549,-0.852973,0.413088,-0.55121,-1.04287,-1.40192,-1.27697,-1.21039,-1.18316,-1.17775,-1.17358,0 +-0.437076,0.209088,-0.128427,-0.396276,-0.456516,-0.443793,0.210087,-0.0946038,-0.432938,-0.483333,-0.451549,0.182081,-0.168608,-0.495377,-0.471539,-0.42919,0.126838,-0.364791,-0.307889,-0.36668,1.08805,-0.342002,0.0820499,-0.342342,0.0651083,1.17334,-0.320413,-0.10289,-0.34723,0.153915,1.29292,-0.344871,0.08182,-0.34711,0.0286758,0.532529,0.3671,0.22436,0.174205,0.173335,0.172935,1 +1.33581,-1.61411,-1.06324,1.92891,1.46315,1.49489,-1.65923,-1.08498,2.16485,1.49971,1.5626,-1.681,-1.062,2.54799,1.6391,1.51501,-1.67908,-1.01784,2.52992,1.66821,1.15994,-0.994033,0.577577,-0.643535,-1.48252,1.91309,-1.09818,0.625064,-0.760258,-1.76374,1.56087,-1.04382,0.659897,-0.679817,-1.69634,-1.31448,-1.53691,-1.43309,-1.38342,-1.36469,-1.33423,0 +-0.372118,-0.0138332,-0.524153,-0.257464,-0.0773921,-0.375156,-0.00964528,-0.537567,-0.219183,-0.0869075,-0.370429,-0.0230589,-0.568942,-0.147568,-0.0426892,-0.363872,-0.0385013,-0.53079,-0.246389,-0.0353426,-1.46103,-0.301462,0.566273,-0.457446,0.178713,-1.15387,-0.586373,0.465102,-0.581365,-0.0390908,-1.08517,-0.515048,0.513069,-0.507232,-0.0481266,0.133475,-0.0245978,-0.232136,-0.300973,-0.328869,-0.324631,0 +-0.377605,-0.141141,-0.627303,-0.0608399,-0.0936541,-0.390649,-0.126678,-0.634939,-0.0604404,-0.116853,-0.393047,-0.135344,-0.664675,-0.107817,-0.0980921,-0.383752,-0.148867,-0.63302,-0.366061,-0.106088,-1.54517,-0.565493,0.590361,-0.547542,-0.0761425,-1.26843,-0.760408,0.542384,-0.661676,-0.257014,-1.17558,-0.669352,0.606263,-0.582665,-0.236604,0.219492,-0.0835189,-0.310488,-0.386921,-0.399924,-0.395356,0 +-0.69532,1.17337,0.972434,-0.660516,-0.984488,-0.702976,1.19401,1.01236,-0.676069,-1.02505,-0.687553,1.21411,1.13191,-0.609991,-1.06496,-0.671101,1.21255,1.05094,-0.528741,-1.06031,-1.00185,1.23563,-0.313187,0.663066,1.26129,-1.34178,1.13412,0.00525734,0.636309,1.16408,-1.14384,1.20841,-0.28563,0.568732,1.23699,0.87879,1.10685,1.20859,1.23694,1.25176,1.2726,1 +1.70938,-1.37968,-0.880379,0.0642189,2.47992,1.58392,-1.35715,-0.900029,0.235475,2.52998,1.65806,-1.38062,-0.852803,0.437246,2.60546,1.75833,-1.37789,-0.822927,0.648263,2.6992,1.3868,-0.599896,-0.0507551,-0.339754,-1.36865,1.02902,-0.763006,0.304101,-0.550181,-0.725275,1.04871,-0.71563,0.18396,-0.413357,-1.12663,-2.93537,-1.92892,-1.54612,-1.43881,-1.41482,-1.41328,1 +-0.00444783,-0.748784,-0.892173,0.320753,0.65446,-0.0228687,-0.734071,-0.897161,0.432858,0.646473,-0.0601505,-0.728074,-0.885856,0.561565,0.587442,-0.0708453,-0.721187,-0.85858,0.717709,0.597648,-2.03989,-0.625094,0.723616,-0.605613,-0.466282,-1.93051,-0.946896,0.692211,-0.745295,-0.838859,-1.69044,-0.824446,0.745535,-0.655689,-0.667523,-0.417556,-0.805356,-0.886416,-0.870614,-0.848684,-0.830663,1 +-0.681267,1.00459,1.00224,-0.584074,-1.28075,-0.683275,0.975682,1.00318,-0.643715,-1.24541,-0.659097,0.89869,0.621756,-0.635939,-1.12843,-0.6341,0.861108,0.341773,-0.537687,-0.970595,-1.47871,0.433378,1.12833,-0.0212495,0.888785,-1.6093,0.12353,1.16071,-0.174025,0.718179,-1.32482,0.382573,1.1249,-0.0407699,0.874842,1.13955,1.40879,1.43832,1.33196,1.23482,1.17097,1 +4.62477,-2.13678,-0.967497,0.473738,2.73418,4.56366,-2.15628,-0.986257,0.716699,2.80586,4.77573,-2.19174,-0.930075,0.803167,2.91631,5.06662,-2.22412,-0.881818,0.617308,3.07386,2.08021,-0.798179,0.0522645,-0.380164,-2.37615,2.14084,-0.906356,0.242521,-0.575678,-1.81647,2.00434,-0.85787,0.24538,-0.466342,-2.13591,-3.27837,-2.08509,-1.66768,-1.54485,-1.51363,-1.4999,1 +-0.729623,1.44448,2.20292,-0.689562,-1.34282,-0.73541,1.45314,2.14624,-0.724435,-1.36315,-0.712241,1.46131,2.07972,-0.686944,-1.35337,-0.688573,1.43603,1.84028,-0.622485,-1.30358,-0.485312,1.70925,-0.137852,1.15359,1.43813,-1.45617,1.34624,0.839749,1.00686,1.33691,-1.07019,1.72831,0.42985,1.13795,1.44671,1.11011,1.52265,1.77843,1.89146,1.91679,1.94767,1 +-0.719328,1.33826,2.08695,-0.678078,-1.34292,-0.723256,1.33869,2.04504,-0.717479,-1.32519,-0.701407,1.33946,1.94672,-0.696099,-1.32798,-0.678948,1.31767,1.59693,-0.621736,-1.2397,-0.14258,1.50158,-1.00274,1.16774,1.29083,-0.681436,1.08428,-0.287929,0.782347,1.21826,-0.433448,1.44986,-0.568222,1.02914,1.29454,1.18939,1.49912,1.71802,1.79546,1.81963,1.8552,1 +-0.744925,1.66498,2.71285,-0.716589,-1.44672,-0.749263,1.65008,2.68082,-0.748204,-1.43087,-0.723846,1.62257,2.76819,-0.69435,-1.42594,-0.699238,1.58015,2.57997,-0.624334,-1.35729,-0.536577,2.5722,-0.261222,1.91787,1.64075,-1.24251,1.95451,0.493338,1.57048,1.45675,-1.04417,2.44218,-0.0470569,1.82177,1.59753,1.20291,1.67479,1.98633,2.15203,2.20437,2.19993,1 +1.46789,-1.43248,-1.07005,0.401214,2.69695,1.33024,-1.38298,-1.08936,0.761247,2.73551,1.3331,-1.3613,-1.01441,1.27249,2.71412,1.38116,-1.32264,-0.928465,1.46807,2.72529,1.78949,-0.772602,0.250737,-0.526982,-1.40049,1.57726,-0.804536,0.491839,-0.65413,-0.681376,1.44069,-0.863068,0.442913,-0.589531,-1.1453,-3.1733,-2.08244,-1.7081,-1.5956,-1.56455,-1.5518,1 +-0.512509,0.0868075,-0.318294,-0.32692,-0.709053,-0.525882,0.0991515,-0.298874,-0.34685,-0.748334,-0.524183,0.146228,-0.30715,-0.444282,-0.740997,-0.520815,0.182231,-0.318374,-0.491709,-0.664944,-1.3684,-0.358954,0.888465,-0.440764,0.149357,-2.18616,-0.506792,1.0321,-0.540715,0.0488262,-1.50787,-0.318004,0.936871,-0.44956,0.250107,0.747794,0.602925,0.32587,0.190027,0.173755,0.175294,1 +-0.362842,-0.198243,-0.598727,-0.0344228,-0.129976,-0.374377,-0.192146,-0.585523,-0.0991915,-0.14244,-0.3878,-0.206839,-0.611041,-0.311278,-0.158153,-0.376696,-0.235175,-0.648563,-0.402043,-0.14313,-0.723276,-0.499835,0.746375,-0.554089,-0.0382611,-0.77699,-0.826785,0.707154,-0.698998,-0.446162,-0.351928,-0.672401,0.774411,-0.600216,-0.257704,0.270378,-0.0536735,-0.238943,-0.321922,-0.340193,-0.316345,0 +-0.678678,1.35954,1.58587,-0.69453,-1.09015,-0.682136,1.35204,1.57691,-0.71483,-1.09272,-0.662685,1.33982,1.60036,-0.63315,-1.08319,-0.646244,1.32332,1.40297,-0.513139,-0.984838,-0.355756,1.93787,-0.281772,1.20434,1.44552,-0.851853,1.62748,0.416206,1.20704,1.29335,-0.590751,1.78691,-0.2645,1.1168,1.40007,0.8782,1.35025,1.55884,1.61511,1.60841,1.59561,1 +3.85263,-1.74308,-0.901409,-0.0220989,2.29259,3.78426,-1.7414,-0.926307,0.171996,2.2953,3.85017,-1.71767,-0.800618,0.274106,2.28994,3.78544,-1.68339,-0.702856,-0.0200201,2.21507,2.01722,-0.709443,0.139702,-0.483043,-1.79817,1.26733,-0.663305,-0.0305251,-0.504603,-1.27466,1.42792,-0.535138,-0.0674369,-0.371318,-1.58398,-2.74533,-1.79124,-1.43782,-1.33686,-1.30072,-1.28038,1 +-0.709743,1.30228,1.42231,-0.685624,-1.02821,-0.717079,1.32314,1.40836,-0.704795,-1.05143,-0.700787,1.37031,1.63691,-0.642006,-1.1329,-0.682116,1.3734,1.69145,-0.578177,-1.1516,-0.276595,1.76734,-0.276694,1.12774,1.42639,-1.08422,1.47767,0.744755,0.996362,1.29866,-0.782497,1.69446,0.172825,0.991325,1.41691,0.901399,1.17936,1.31962,1.44538,1.48771,1.50289,1 +0.607872,-0.805766,-0.812832,-0.352267,1.97265,0.542794,-0.774801,-0.825386,-0.242271,1.99727,0.600656,-0.789774,-0.753831,0.0248778,2.07036,0.648163,-0.757309,-0.678788,0.294176,2.12851,1.23548,0.024748,-0.528581,-0.0976121,-0.57204,1.31759,-0.359354,-0.00605712,-0.415537,-0.0168317,1.10393,-0.423823,0.0674071,-0.393457,-0.412658,-2.24427,-1.63143,-1.3448,-1.25182,-1.23366,-1.22914,1 +0.16324,-0.886386,-0.887306,0.591501,0.51108,0.160252,-0.868825,-0.884997,0.527002,0.46896,0.0893463,-0.820588,-0.812732,0.00755629,0.382183,0.0187409,-0.754201,-0.708393,-0.394557,0.32747,-1.32748,-0.77527,0.716499,-0.618687,-0.644694,-1.61218,-1.00882,0.709402,-0.749643,-1.15842,-0.992604,-0.897621,0.743856,-0.664495,-0.903268,-0.298964,-0.741497,-0.846785,-0.832862,-0.807155,-0.770463,0 diff --git a/data/oocytes_merluccius_states_2f.arff b/data/oocytes_merluccius_states_2f.arff new file mode 100755 index 0000000..d5c6b9e --- /dev/null +++ b/data/oocytes_merluccius_states_2f.arff @@ -0,0 +1,1050 @@ +@relation oocytes_merluccius_states_2f +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'clase' {0,1,2} +@data +-1.17938,-2.18788,1.34687,2.29522,1.57012,-0.179462,-0.874232,-1.43843,-1.03586,-2.10831,-0.00477764,0.308829,0.0152126,-0.139392,0.770803,-0.161931,0.625664,-0.06147,0.154245,0.953174,0.0190807,0.32742,-0.0143929,-0.118442,0.762846,2 +-1.39212,-1.15397,0.0577917,0.909154,2.55336,0.680807,-0.859089,-1.15355,-1.21517,-2.19692,-0.0943438,-0.0268667,0.304491,-0.290927,0.559966,-0.141241,-0.0703955,0.281272,-0.324181,0.534548,0.0236285,-0.126248,0.30698,-0.380753,0.419105,2 +0.496807,-0.239263,0.696079,0.867805,-0.621596,-0.949335,-0.719118,0.323372,0.259803,0.442224,0.811223,1.68412,-2.37651,1.81855,0.966977,0.722326,2.16994,-2.98272,2.66246,0.997202,0.799529,1.64941,-2.39232,1.87406,0.965877,2 +-2.0204,-1.05094,-2.8051,-1.96459,-2.29231,1.19851,1.7764,2.44548,4.96263,-0.936751,2.27306,-1.012,0.461694,-0.61346,-2.22967,2.82495,-0.182321,-0.537217,-0.310578,-1.66438,2.34214,-0.812312,0.412408,-0.589791,-1.72557,1 +-0.949725,-1.4289,1.13861,1.68543,0.731312,-0.541795,-0.732901,-0.178463,-0.378485,-1.40679,0.200202,0.730263,-0.95903,0.473478,0.748614,0.290458,1.17394,-1.46057,1.00365,0.904647,0.197503,0.739428,-1.01349,0.514058,0.740187,2 +-0.787295,-1.14937,0.684025,1.31302,1.1263,0.627783,-0.0886966,-1.81963,-1.10012,-1.57436,-0.0126138,-0.289488,0.421833,-0.4483,0.341383,-0.269958,-0.309279,0.502604,-0.478506,0.399924,0.0531741,-0.353827,0.483983,-0.487091,0.262042,2 +0.51068,-0.678828,1.14941,1.11935,-0.085898,-0.0698557,0.0430189,-1.12261,-0.908545,-0.339534,0.145669,-0.236934,0.348459,-0.372448,0.370109,0.0779319,-0.273616,0.566243,-0.467991,0.415007,0.331478,-0.343172,0.456866,-0.457736,0.274655,2 +-1.49666,-2.45075,0.65328,1.62138,2.14883,0.719098,-0.445082,-1.62764,-1.17512,-2.57249,-0.554698,-0.359494,0.42963,-0.505982,0.261872,-0.764756,-0.247569,0.554408,-0.478886,0.460315,-0.506052,-0.423223,0.502894,-0.538166,0.176044,2 +-0.227649,-0.14374,-0.363062,0.412488,-0.457236,-0.948456,-0.34718,1.26892,0.966797,0.098192,0.763036,0.565923,-1.25665,0.548881,0.341783,1.08678,1.27586,-3.09131,1.73745,0.313707,0.71484,0.644405,-1.45521,0.660337,0.282242,2 +0.982909,0.131845,0.901759,1.09506,-0.165679,-1.57179,-1.32308,-0.0617598,-0.0832891,0.877031,0.922089,1.46439,-2.17429,1.6645,1.01109,0.806905,1.22725,-2.10357,1.57234,0.994563,0.932813,1.19636,-1.83631,1.3397,0.931584,2 +-1.65471,-0.626653,-2.0837,-1.52029,-0.792922,0.578677,1.56725,2.35467,1.92071,-0.0725344,2.0268,-1.02201,0.523933,-0.640236,-1.87808,1.04989,-0.831583,0.373627,-0.644794,-0.875281,1.48618,-0.881878,0.466192,-0.61299,-1.50211,1 +-0.28674,-0.360643,0.69391,0.106947,0.160122,0.610481,0.419475,-0.994323,-0.69461,-0.296405,-1.91125,-0.561545,0.414037,-0.504393,-0.0483561,-1.55544,-0.817929,0.515228,-0.675699,-0.398355,-2.37516,-0.539656,0.483004,-0.534668,-0.0133836,2 +-0.113874,0.125379,-0.0425192,-0.582315,-0.0226689,0.349749,0.976182,-0.0495758,-0.415886,0.172706,-1.72425,-0.902838,0.654669,-0.640666,-0.934352,-1.31797,-1.01672,0.679417,-0.75546,-1.08551,-1.95514,-0.946597,0.709343,-0.675339,-1.05373,0 +-1.21565,-1.46236,-0.462993,-0.293146,0.519116,0.42863,0.69357,0.465582,0.371058,-0.810623,-2.41832,-0.843867,0.322122,-0.5315,-1.12702,-1.9617,-0.969365,0.362003,-0.65274,-1.3327,-2.68542,-0.711982,0.0883069,-0.349269,-1.03434,0 +0.0390409,-0.371028,0.63382,-0.402483,-1.37413,-0.505882,0.97985,1.20023,0.481144,0.944218,-2.22962,-1.02297,0.574998,-0.645624,-1.59938,-1.79063,-1.11231,0.620706,-0.760618,-1.80377,-2.55607,-1.00646,0.631311,-0.667443,-1.5562,0 +-0.725675,1.53148,0.0884867,-1.40244,-1.56772,0.595798,1.32899,1.60614,0.275025,0.852623,-2.6381,-1.03268,0.624984,-0.65249,-1.78279,-2.32177,-1.11054,0.663055,-0.763566,-1.93108,-2.94025,-1.02754,0.690252,-0.678838,-1.71699,0 +-0.752841,-0.970585,-0.131206,-0.470739,1.04798,1.50539,0.261752,-1.15028,-0.595898,-0.913583,-2.3202,-0.800248,0.553479,-0.603844,-0.657818,-1.86579,-0.916551,0.594319,-0.71518,-0.812602,-2.58244,-0.824766,0.598517,-0.628692,-0.733601,0 +-0.494578,-0.444702,0.200672,-0.520655,0.324691,0.491379,0.494098,0.125229,-0.390119,-0.149027,-1.76142,-0.910204,0.605134,-0.636138,-0.914382,-1.26999,-1.01656,0.617887,-0.746385,-1.1105,-1.99801,-0.92005,0.642825,-0.658927,-0.988286,0 +-0.745385,0.453518,-1.01113,-0.784846,-0.247209,0.708993,1.02245,0.158123,0.230157,0.134244,-1.31806,-0.77529,0.650412,-0.63281,-0.751572,-0.841588,-0.978321,0.656558,-0.75609,-1.08572,-1.49918,-0.937521,0.673001,-0.677598,-0.994343,0 +-0.976402,-0.253096,-0.999411,-0.987376,0.32773,1.17784,0.842807,0.876521,-0.0140431,-0.664245,-1.57882,-1.03586,0.608932,-0.657968,-1.51509,-1.10534,-1.10893,0.641796,-0.766545,-1.63038,-1.72667,-1.02596,0.686854,-0.685074,-1.46867,0 +-1.0938,0.276155,-0.375256,-0.16306,1.61892,1.06469,-0.355916,-0.330258,-1.1172,-1.21049,-1.54226,-0.588542,0.602445,-0.565713,-0.087457,-1.35745,-0.675609,0.421473,-0.639427,-0.220552,-1.92374,-0.630801,0.536397,-0.59292,-0.246929,2 +-1.32661,-1.42262,-0.675619,-0.454497,1.18598,1.84476,0.386791,-0.728973,-0.642985,-1.15039,-2.00087,-1.00519,0.624914,-0.656708,-1.34809,-1.70516,-1.08578,0.660466,-0.765255,-1.47302,-2.1756,-1.01422,0.702166,-0.685874,-1.39906,0 +-0.385781,-0.200902,0.236074,-0.726874,1.254,1.75269,-0.256414,-1.56602,-0.9594,-0.772702,-1.9044,-0.501814,0.622745,-0.527182,-0.0226087,-1.59413,-0.616258,0.564144,-0.617128,-0.174235,-2.32083,-0.542015,0.623415,-0.553569,-0.0466873,0 +0.129327,-0.325241,-0.132455,-0.46928,0.493388,1.74269,0.0522544,-1.08625,-0.892713,-0.543504,-1.75773,-0.611091,0.657608,-0.581985,-0.202461,-1.39349,-0.822097,0.648452,-0.707823,-0.447481,-2.11059,-0.724276,0.677608,-0.626163,-0.346221,0 +-0.893343,-0.846945,-1.01554,-1.05511,0.381153,2.13517,0.944518,-0.522604,-0.215584,-0.718448,-1.7179,-0.79693,0.703196,-0.630891,-0.890434,-1.36716,-0.976112,0.69359,-0.753911,-1.09817,-2.05592,-0.942928,0.710682,-0.678828,-1.06886,0 +-1.53304,-1.85212,-0.963029,-0.770103,1.1072,2.11409,0.783466,-0.430169,-0.556138,-1.10614,-2.00584,-1.01405,0.631811,-0.654889,-1.50728,-1.62448,-1.09752,0.659327,-0.764026,-1.67113,-2.39462,-1.01641,0.702906,-0.683265,-1.47433,0 +-1.5822,-1.98589,-1.34823,-0.945257,0.984168,3.06778,1.46419,-1.00218,-0.546452,-1.78618,-2.0446,-1.03016,0.625514,-0.657428,-1.59013,-1.61759,-1.09845,0.654349,-0.765115,-1.66443,-2.36625,-1.02991,0.700607,-0.685514,-1.56872,0 +-1.59941,-1.99292,-1.15374,-0.744915,1.30517,2.8532,1.1488,-1.24194,-0.750782,-1.75702,-1.8813,-0.986997,0.641456,-0.65274,-1.35147,-1.43818,-1.07782,0.665514,-0.763196,-1.51463,-2.22192,-1.00316,0.707544,-0.683005,-1.38864,0 +-1.74351,-1.36467,-0.824806,-0.716209,-0.0825996,2.36724,1.29788,-0.304071,0.273686,-1.35236,-1.81232,-0.999511,0.641216,-0.65406,-1.46254,-1.46295,-1.09468,0.669102,-0.765445,-1.70598,-2.0778,-1.04187,0.700907,-0.687753,-1.6836,0 +0.116773,0.468501,-0.260692,-0.717708,0.563694,1.05137,0.323302,-0.843177,-0.697318,-0.190177,-1.56949,-0.739268,0.651241,-0.614069,-0.431239,-1.01386,-0.89919,0.643375,-0.730462,-0.675759,-1.84209,-0.806065,0.672641,-0.649042,-0.552789,0 +-0.799888,-0.494428,-0.892863,-0.891573,-0.281162,0.747524,1.07509,0.245,0.831863,-0.170506,-2.15992,-0.906426,0.507462,-0.617687,-1.06532,-1.6411,-0.945457,0.495787,-0.708313,-1.15473,-2.42906,-0.881688,0.507732,-0.613859,-1.16092,0 +-0.740797,-0.452788,-1.11903,-1.21491,-1.61727,0.935172,2.3508,0.497956,1.69588,-0.00920543,-2.92548,-1.08088,0.624994,-0.659497,-2.31626,-2.55973,-1.1454,0.661306,-0.767794,-2.50065,-3.29138,-1.07355,0.708763,-0.687004,-2.26438,0 +-0.273676,0.932693,-0.415247,-0.497087,-0.288169,0.541835,0.800458,0.562545,-0.358654,-0.106008,-2.2016,-0.934342,0.656489,-0.643835,-1.1272,-1.82765,-1.03106,0.679777,-0.75586,-1.26088,-2.49429,-0.934353,0.69564,-0.671291,-1.05575,0 +-0.161121,0.894052,-0.716329,-1.11344,-1.47777,0.238423,0.711202,1.84188,0.719268,1.10622,-2.10206,-0.863197,0.483273,-0.546802,-1.35134,-1.64595,-1.02477,0.564144,-0.711342,-1.64114,-2.34534,-0.920669,0.487172,-0.552689,-1.49031,0 +-0.477016,-0.410879,-0.61241,-1.29139,-0.861238,0.862878,1.35938,0.716619,0.856291,0.234915,-2.09432,-0.77592,0.685494,-0.63342,-1.15524,-1.7195,-0.869234,0.651971,-0.725125,-1.23237,-2.53481,-0.856971,0.631941,-0.650931,-1.00211,0 +-1.08695,0.308549,-1.28389,-1.53636,-1.30414,1.01639,1.50894,1.40568,1.25417,0.419865,-1.92134,-1.00254,0.599546,-0.660946,-1.47937,-1.31252,-1.09637,0.640296,-0.769443,-1.73186,-2.19086,-1.03843,0.679877,-0.689192,-1.56702,0 +-1.25543,-1.07092,-0.985608,-0.479305,0.416726,1.09177,1.1626,0.168607,-0.0697058,-0.764566,-1.68983,-0.770852,0.75612,-0.618477,-1.03668,-1.32991,-0.871053,0.822667,-0.725275,-1.25171,-1.90393,-0.896041,0.75627,-0.671021,-1.08763,0 +-0.743636,-0.57198,-0.501894,-0.810033,-0.294506,0.886866,1.07605,0.432308,0.219193,-0.0992214,-1.44874,-0.7344,0.687593,-0.63336,-0.977741,-1.07828,-0.922258,0.702716,-0.753451,-1.25477,-1.79784,-0.924527,0.702766,-0.681606,-1.13417,0 +-0.177533,-1.21442,0.545263,1.97507,1.47262,-1.47262,-1.20133,-0.708023,-0.697188,-0.701647,-0.0935742,0.135614,0.0537537,-0.192516,0.666134,-0.493878,0.341143,-0.0443384,-0.073454,0.805286,-0.295055,0.202711,0.0565024,-0.16233,0.710332,2 +-1.60137,-1.3538,-1.48602,-0.991364,-0.177403,1.19851,1.42096,1.0848,1.13285,-0.860549,2.28919,-1.0341,0.501604,-0.622625,-1.78378,2.12123,-0.973243,0.480305,-0.693051,-1.08674,2.06757,-0.995533,0.581116,-0.649002,-1.54475,2 +-0.843507,-1.79139,0.962429,2.15751,1.34667,-0.651441,-1.01349,-0.732042,-0.705844,-1.71149,1.2218,0.18382,-0.328669,-0.0187907,0.554419,0.744695,0.399454,-0.438735,0.121101,0.807845,0.855781,0.337235,-0.430109,0.0947338,0.683985,2 +0.0211797,-0.847285,0.426251,1.73098,0.815551,-1.57422,-1.29714,-0.338414,-0.371368,0.055233,0.288489,0.168098,-0.266539,-0.0366919,0.589242,0.124419,0.417166,-0.524633,0.12317,0.7557,0.0439286,0.235525,-0.252766,-0.0143528,0.664145,2 +-0.907526,-0.479965,-1.00491,-0.113534,1.59778,-0.310198,-0.126498,0.297414,-0.160311,-0.521205,1.58435,-0.715839,0.151636,-0.345041,-0.660876,1.19253,-0.462993,0.0543233,-0.402603,0.0142331,1.13913,-0.604134,0.232206,-0.415057,-0.340703,2 +-1.6989,-2.81415,-0.0830294,1.63393,1.84921,0.419745,0.0801107,-1.12189,-0.675819,-2.37877,1.46735,-0.545093,0.16283,-0.430439,-0.243411,0.984508,-0.32658,0.256554,-0.44925,0.303591,1.00571,-0.494318,0.312027,-0.478326,-0.0427392,2 +-1.45932,-2.34118,0.329639,1.40625,0.828195,0.0881369,-0.0189108,-0.401274,0.131756,-1.92336,1.07571,-0.351828,-0.187948,-0.220252,-0.20291,1.33721,-0.392678,-0.22545,-0.334956,-0.106198,1.00771,-0.441334,0.00789622,-0.343372,-0.293476,2 +-1.73042,-1.6658,-0.639527,0.112735,1.63573,1.37129,0.905187,-0.860988,-0.647683,-2.0526,1.10925,-0.89932,0.522674,-0.636488,-0.873382,1.60335,-0.906216,0.506952,-0.729143,-0.731182,1.30693,-0.904797,0.590471,-0.660676,-0.950265,2 +-0.308259,-0.803317,0.465362,0.933662,0.825026,-0.731262,-0.800638,0.172875,-0.0983618,-0.792602,1.16076,0.909705,-1.50609,0.841868,0.67488,0.6741,1.25727,-1.34271,1.04666,0.952114,0.661626,0.842977,-0.993274,0.562405,0.833462,2 +0.322082,-0.30676,0.983739,0.892313,0.100731,-0.791532,-0.723446,-0.0890365,-0.248148,-0.0947735,0.57264,0.503194,-0.150556,0.06161,0.843997,0.365191,0.193125,0.229068,-0.0882168,0.682436,0.770193,0.20413,-0.0697857,-0.0682864,0.666833,2 +-1.56276,-0.507082,-2.34453,-1.70888,-1.7976,0.560636,1.42806,2.43959,3.85859,-0.352527,2.14319,-0.873412,0.270548,-0.5105,-1.96038,2.25206,0.0455277,-0.146648,-0.380214,-1.2076,1.96093,-0.647133,0.301043,-0.501524,-1.12969,1 +0.42915,-0.129876,1.29585,0.930494,-0.186619,-1.08546,-0.414597,-0.117782,-0.302312,0.190437,0.258174,0.220532,-0.350188,0.10267,0.655579,-0.609222,0.929395,-0.613959,0.644555,1.0264,-0.352138,0.831993,-0.781088,0.516997,0.972564,2 +-1.60514,-0.260312,-1.94536,-1.43514,-0.153545,0.580036,1.07772,2.15258,1.45499,-0.338484,1.65892,-0.641506,0.20506,-0.474897,-0.793871,0.990325,-0.636968,0.274216,-0.57219,-0.174954,1.20346,-0.69419,0.259093,-0.493578,-0.822068,1 +-2.07028,-1.29312,-2.50652,-1.51936,-0.427091,0.87882,1.3234,1.99267,2.90331,-1.01131,1.70597,-0.894722,0.435187,-0.605913,-1.22926,1.84328,-0.217793,-0.0637888,-0.436626,-0.579046,1.39058,-0.664015,0.336495,-0.543984,-0.702356,1 +-1.07491,-1.52536,0.675829,1.42772,0.996012,0.220322,-0.18479,-1.09798,-0.461534,-1.82504,0.504433,0.212746,0.159472,-0.206939,0.704415,0.14398,0.00157922,0.544483,-0.307899,0.570461,0.485402,-0.0929345,0.278214,-0.351258,0.476826,2 +-0.649452,-1.47585,1.52977,1.48213,0.702706,0.125269,-0.374007,-0.695939,-0.712051,-1.85078,0.12293,0.801468,-0.34637,0.249648,1.01356,-0.304331,0.630271,0.0606902,0.155474,0.949985,-0.0909454,0.606893,-0.170616,0.105648,0.937821,2 +-1.80456,-0.756,-2.27185,-1.41449,-0.48985,0.63287,0.557407,1.80926,3.10896,-0.738758,1.88296,-0.606693,0.159872,-0.421034,-0.867925,2.10864,0.229508,-0.517117,-0.128137,-0.830363,1.83206,-0.365191,-0.0465671,-0.317594,-0.762907,1 +-1.60674,-0.246069,-1.2122,-0.909744,-0.164509,1.1288,1.6392,1.14831,0.57207,-1.0431,2.19338,-0.914252,0.334916,-0.5506,-1.86933,2.57602,-0.638128,-0.348559,-0.293426,-1.17852,2.20113,-0.728433,0.129067,-0.454997,-1.64669,1 +-1.24202,-2.07757,1.07352,1.05474,1.41486,1.0176,-0.0185609,-1.61188,-1.10047,-2.01279,-0.205469,-0.344671,0.635099,-0.46983,0.283431,-0.779388,-0.243131,0.624234,-0.465742,0.473148,-0.0799708,-0.271587,0.652521,-0.483043,0.38746,2 +-1.12256,-0.135494,-0.539276,-0.917241,-0.294926,1.42636,1.35699,-0.0546133,0.0802907,-0.404912,0.0741337,-0.666544,0.79591,-0.600406,-0.991454,0.117463,-0.906986,0.762866,-0.740687,-1.37728,0.402783,-0.901619,0.729773,-0.675149,-1.20181,0 +1.15582,1.9067,0.708363,-0.970665,-1.3916,0.0853283,0.73529,-0.0459975,-0.444262,1.63274,-0.303731,-0.896921,0.606533,-0.630211,-0.826485,-0.198403,-0.995313,0.623994,-0.747494,-0.926696,0.170037,-0.863737,0.678078,-0.651381,-0.741047,0 +-0.178103,0.900379,-0.308029,-0.299913,0.0472669,0.267269,0.152795,0.403382,-0.166838,-0.229857,-0.627313,0.0966928,-0.189237,0.257204,0.546483,-1.00955,0.77554,-0.590391,0.473578,0.63263,-0.805895,0.616448,-0.438965,0.341123,0.708763,2 +-0.275735,0.0277265,-0.42819,0.302921,1.76122,-0.827345,-1.44824,0.0573119,-0.283481,-0.175484,-0.195584,0.069716,-0.177663,-0.0843386,0.554879,-0.361253,0.413637,-0.406101,0.136393,0.819439,-0.415566,0.139222,-0.0832092,-0.1013,0.638467,2 +0.222491,-0.324981,1.00102,1.13623,-0.26506,-0.618197,-0.706514,-0.683815,-0.333537,0.317555,-0.123789,0.542804,-0.424792,0.261082,0.87972,-0.0455077,0.284581,-0.333127,0.153125,0.721147,-0.114414,0.488921,-0.415556,0.283191,0.834441,2 +0.311388,0.61249,-0.462534,0.156393,1.64257,-1.42089,-1.95363,0.293866,-0.261402,0.746335,0.745525,-0.0361322,0.0358125,-0.193435,0.524383,0.362133,0.337485,-0.117443,0.0166319,0.815871,0.472429,0.0894263,0.168398,-0.200102,0.643365,2 +0.0998611,0.555328,-0.720977,-0.42824,0.791363,-0.854561,-1.33122,0.718858,0.560226,0.689563,1.10321,0.0564225,-0.452248,0.0785017,0.346431,0.962679,0.61261,-0.850863,0.478416,0.703856,0.974783,0.207069,-0.420334,0.0978122,0.49021,2 +0.0236085,-0.0947436,-0.12349,0.372897,1.5602,-0.710402,-1.44694,-0.0988916,-0.402133,-0.159852,0.0973823,0.271477,-0.386321,0.088107,0.672441,-0.0284161,0.664315,-0.774661,0.478726,0.913693,-0.0401403,0.332807,-0.343662,0.110536,0.729413,2 +-0.889924,-0.8777,-0.769523,0.0894661,1.94764,-0.235335,-0.914082,0.0660976,0.0229788,-0.873312,-0.0726844,-0.202011,-0.0276664,-0.263541,0.241622,-0.0711851,0.272537,-0.333377,0.0198503,0.615339,-0.10144,-0.119741,0.0214696,-0.268089,0.322552,2 +-0.12186,-0.135594,1.06175,0.994633,1.04685,-0.812712,-0.771982,-0.896481,-0.719947,-0.478016,-0.553529,0.234056,0.00662682,-0.0607001,0.704515,-0.793372,0.166888,-0.0607104,-0.0429089,0.667054,-0.594059,0.321743,-0.151266,0.0313148,0.720877,2 +0.431639,0.442503,0.157113,0.849983,0.385991,-1.00335,-1.1854,0.257824,-0.134004,0.0176015,0.134094,0.929345,-1.12535,0.721017,0.946827,-0.53184,1.59785,-0.713071,1.2043,1.1557,-0.370219,1.3614,-0.751092,0.760618,1.16729,2 +0.825766,1.23553,-0.0439785,-0.954812,-0.364612,0.55086,0.304871,-0.290638,-0.309898,0.689273,0.146488,-0.342812,0.59288,-0.418765,0.149667,0.18434,-0.552869,0.613979,-0.500465,-0.077552,0.515498,-0.46956,0.567392,-0.443153,0.000709535,2 +-0.240132,0.0875972,-0.5107,0.0170615,1.58977,-0.780358,-1.20131,0.282582,-0.189577,-0.000129868,0.986407,-0.1218,-0.282931,-0.0804505,0.239463,0.526662,0.124879,-0.491319,0.0473169,0.600126,0.748933,-0.0338934,-0.219992,-0.0829093,0.400654,2 +0.658398,0.685434,0.212306,-0.709562,0.696239,0.870224,-0.328069,-1.21733,-0.931664,0.236614,0.24424,-0.308479,0.731442,-0.432198,0.178803,0.135344,-0.5718,0.799119,-0.601955,-0.0757728,0.443163,-0.379734,0.758909,-0.487051,0.132505,0 +1.18707,0.57173,0.770973,-0.288179,-0.112545,0.662845,-0.359874,-1.43486,-0.816,0.603585,0.330218,0.0218694,0.659797,-0.351488,0.619547,0.256744,-0.20429,0.786085,-0.484133,0.418625,0.468421,-0.0623595,0.723906,-0.400664,0.543444,2 +-0.358405,0.071605,-0.681776,-0.20514,1.15745,-0.664674,-1.02408,0.667133,0.0946737,0.256924,1.16594,-0.288119,-0.30554,-0.0310846,-0.00519725,0.740198,0.0331438,-0.390859,0.0268569,0.540965,0.709383,-0.148837,-0.18414,-0.0779717,0.299253,2 +0.375546,0.580126,-0.761917,-0.260792,0.436706,-0.982159,-0.994123,0.640436,0.634299,0.750313,1.26523,0.310518,-0.854881,0.401973,0.46991,1.05804,0.905846,-1.37827,0.89816,0.752342,1.09234,0.452269,-0.777269,0.38845,0.609342,2 +1.37315,1.70598,-0.410089,0.172166,-0.0868575,-1.56847,-1.25826,0.621026,0.236564,1.2979,0.668043,1.82078,-2.41585,1.95634,1.12465,0.0189108,2.35589,-2.37681,2.61075,1.24792,0.0566224,2.18689,-2.25389,2.22925,1.30958,2 +0.795051,1.26496,-0.389409,-0.159292,0.933663,-1.32275,-1.66379,0.379024,-0.151446,1.21982,1.0096,0.296715,-0.541545,0.258614,0.65436,0.46914,0.659147,-0.605703,0.505173,0.943608,0.642705,0.432298,-0.417516,0.310588,0.799658,2 +0.815721,1.13144,-0.354207,-0.0886467,0.95977,-1.40537,-1.49972,0.441384,-0.104019,1.00298,0.602495,1.00736,-1.40218,1.03299,0.974693,-0.40762,1.61523,-1.71634,1.72615,1.22982,-0.222021,1.63742,-2.0155,1.72624,1.21715,2 +0.155524,0.341993,-0.620916,-0.423393,0.372018,-0.792092,-0.942918,0.935672,0.63269,0.705365,1.40031,0.0211098,-0.637138,0.208168,0.220112,1.12865,0.582285,-1.15073,0.568262,0.651921,1.07272,0.200392,-0.594399,0.202751,0.456047,2 +0.894052,1.50714,-0.523734,-1.16842,-1.76482,0.0932344,0.684075,0.947086,0.400174,1.92673,-0.294106,-0.634599,0.71535,-0.597717,-0.566582,-0.0992514,-0.905407,0.681836,-0.738598,-0.864357,0.290688,-0.849104,0.696059,-0.651141,-0.745985,0 +0.862558,2.65105,-0.233246,-0.925807,-1.81532,-0.474558,0.982639,0.785235,0.391248,1.69437,-0.623065,-0.773841,0.750373,-0.609731,-0.904407,-0.390709,-0.975702,0.732071,-0.745405,-1.26569,0.129926,-0.900629,0.728134,-0.666504,-1.03067,0 +0.614329,0.727504,0.6743,-0.545333,-1.0552,-0.111335,0.198693,0.190866,0.0772622,1.15661,-0.580356,-0.586783,0.579186,-0.537467,-0.177883,-0.08162,-0.761047,0.567962,-0.667473,-0.333077,-0.149547,-0.693211,0.602295,-0.59113,-0.335766,2 +0.943938,0.524523,-0.229118,0.537846,0.321063,-1.53144,-1.45472,0.411848,0.0562125,1.10945,-0.217853,0.650861,-0.358314,0.195265,0.911194,-0.315306,1.28272,-0.970635,0.813272,0.994433,-0.466641,0.91918,-0.533569,0.342652,0.977551,2 +0.425872,-0.599996,1.29993,1.53316,0.220212,-1.08564,-0.930325,-0.638897,-0.627822,-0.0110145,-0.484493,0.381893,-0.177393,0.0290859,0.823297,-0.433898,0.439935,-0.454168,0.157513,0.846216,-0.482244,0.459775,-0.294246,0.0816102,0.827445,2 +1.16806,0.649722,0.295945,0.726454,-0.170557,-1.55266,-1.2753,0.159592,0.116863,1.08474,0.169687,0.975413,-0.853282,0.646464,1.03905,0.145839,1.24217,-1.34653,1.07048,1.0502,0.0580117,1.09108,-1.01192,0.741547,1.05345,2 +0.312277,-0.399284,0.730433,1.04489,0.0355026,-0.764875,-0.775131,-0.445062,-0.0403402,-0.0477765,-0.0790313,0.509101,-0.527662,0.22466,0.79728,0.065398,0.575458,-0.921279,0.381093,0.790923,-0.0199202,0.533399,-0.59193,0.246829,0.779948,2 +1.5,1.11146,-0.102,0.749123,0.238063,-1.67676,-1.73054,0.0681866,-0.0457575,1.14274,0.16405,1.25522,-0.766295,0.855441,1.19941,-0.250347,1.71003,-0.883857,1.30614,1.23322,-0.0883267,1.52415,-0.792542,0.946507,1.24947,2 +-0.332767,-1.0812,1.13175,0.996212,0.263801,-0.0875371,-0.452998,-0.67448,-0.620626,-0.383142,-0.0869674,-0.42967,0.473238,-0.460854,0.088287,0.0506452,-0.536897,0.479465,-0.554538,-0.00730634,0.403473,-0.44911,0.457656,-0.488621,0.0383711,2 +0.324591,0.343692,0.187218,-0.916081,-1.19704,0.130736,0.437196,0.625594,0.59226,1.1033,0.132145,-0.774331,0.654629,-0.602275,-0.616728,0.659647,-0.94011,0.63353,-0.727614,-0.87817,0.779449,-0.859799,0.667393,-0.644714,-0.807125,2 +-0.707823,-1.9928,1.51932,1.79868,1.00023,-0.0916051,-0.16431,-1.22042,-0.914742,-1.85523,0.133075,0.0360225,0.0869475,-0.228888,0.589332,-0.116403,0.055173,0.0641285,-0.24443,0.661656,0.0131437,0.134254,0.00164928,-0.185409,0.625404,2 +0.576858,-0.0947336,0.700647,1.23525,0.507652,-0.942798,-0.818969,-0.559536,-0.491829,-0.348779,0.352447,0.597987,-0.257384,0.198483,0.943039,-0.114604,0.820268,-0.149717,0.3683,1.06473,0.0271568,0.761867,-0.255975,0.241582,1.01943,2 +-1.64601,-1.76029,-0.517037,0.349968,1.66779,1.83798,0.112905,-0.804766,-0.915222,-2.23403,0.559426,-0.873002,0.556048,-0.626233,-0.731861,0.801858,-0.740907,0.382513,-0.658038,-0.44952,0.705035,-0.782267,0.561215,-0.626063,-0.560875,2 +-0.378864,-1.27746,1.51416,1.68128,0.682896,-0.0502653,-0.465002,-1.11563,-0.845626,-1.58583,0.261092,0.299943,-0.0656478,-0.0517745,0.778919,-0.00345827,0.272357,-0.0610502,-0.0869774,0.790583,0.0850684,0.360803,-0.10236,-0.0371117,0.792162,2 +-1.24708,-1.11728,-0.567382,-0.274975,0.536677,1.49407,0.866506,-0.560376,-0.225849,-1.14488,-0.437846,-0.790903,0.644564,-0.620286,-0.61272,-0.128467,-0.922728,0.617537,-0.740198,-0.67411,-0.0764525,-0.900429,0.670892,-0.668912,-0.812102,2 +-0.541035,-0.513898,-0.217314,-0.241172,0.645604,1.09363,0.624334,-0.638587,-0.53075,-0.962979,-0.240232,-0.861628,0.656439,-0.620946,-0.771782,0.0665974,-0.934922,0.670991,-0.73462,-0.689492,0.0995614,-0.894522,0.701077,-0.662366,-0.836071,2 +-0.961409,-1.28117,0.566973,1.1972,0.508061,0.153085,0.0677168,-0.687383,-0.356925,-1.33738,0.177933,-0.258743,0.100581,-0.361613,0.194455,0.303292,-0.404942,0.0734739,-0.468341,0.0923049,0.190047,-0.32678,0.132945,-0.389019,0.04062,2 +1.7898,1.30915,-0.316675,0.320193,-0.0865676,-1.72969,-1.4678,0.457116,0.253606,1.46224,-0.0337635,1.04547,-0.392238,0.525283,1.15171,-0.481994,1.39809,-0.698978,0.935802,1.13637,-0.491219,1.32174,-0.594609,0.723216,1.212,2 +1.94202,1.47094,-0.290848,0.356785,-0.192956,-1.77215,-1.41056,0.425432,-0.0538436,1.79609,-0.00708651,1.1007,-0.365681,0.583864,1.2037,-0.771772,1.56609,-0.24585,1.04749,1.25315,-0.61242,1.50605,-0.354626,0.830633,1.31631,2 +0.103869,-0.534358,0.706894,0.519945,-0.676439,-0.0968825,-0.0131636,-0.233926,-0.00780611,0.255515,0.336415,-0.415077,0.356166,-0.451629,0.0603307,0.63259,-0.564843,0.319793,-0.560626,-0.0505652,0.697998,-0.513069,0.364732,-0.494028,-0.114734,2 +0.243541,1.34031,-0.746285,-1.12694,-1.70531,0.0241282,1.18022,0.988646,0.850733,1.42051,-0.226969,-0.662156,0.690882,-0.599646,-0.783236,0.333637,-0.949235,0.662226,-0.743676,-1.09159,0.447371,-0.927056,0.647793,-0.656788,-1.06105,0 +-0.0639387,1.1709,-0.354097,-0.859779,-1.42546,0.190117,0.961349,1.12189,0.297384,1.08445,0.0435087,-0.704195,0.732172,-0.615019,-0.896741,0.627913,-0.945977,0.710222,-0.749153,-1.21677,0.720847,-0.937871,0.692521,-0.675469,-1.05741,0 +-1.88178,-1.37664,-1.42475,-1.01492,-0.547152,1.91962,2.55038,0.604294,0.360044,-0.85774,-0.250577,-0.745055,0.705954,-0.626783,-1.22777,0.093954,-1.00391,0.680876,-0.760248,-1.63268,0.240642,-1.00104,0.683645,-0.685864,-1.41917,0 +-0.71412,0.404842,-0.38887,-1.09042,-1.10938,-0.00462769,1.30171,1.20939,1.02344,0.642276,-1.64124,-1.07746,0.602905,-0.660896,-1.87343,-1.04841,-1.15932,0.636398,-0.769713,-2.26212,-0.910194,-1.09421,0.675299,-0.690702,-2.15656,0 +-0.554479,-0.499205,-0.0324241,-0.516717,0.790203,1.6091,0.310358,-0.970625,-0.885566,-0.739398,-2.38457,-0.921379,0.63385,-0.645764,-0.925387,-1.91827,-1.03919,0.658278,-0.757299,-1.18626,-2.70702,-0.921859,0.708463,-0.672091,-0.934203,0 +-0.392608,-0.623095,0.0605903,-0.720187,0.383612,1.34005,0.931754,-0.553579,-0.554428,-0.672731,-2.08065,-0.865126,0.657508,-0.642715,-0.833702,-1.62574,-1.0092,0.67384,-0.758109,-1.05877,-2.39932,-0.926796,0.711782,-0.677098,-0.950535,0 +-0.296445,-0.0229187,-0.373057,-0.799328,0.234395,1.66871,1.06648,-1.21611,-0.533868,-0.51114,-2.14046,-0.906026,0.658817,-0.642955,-0.9593,-1.72544,-1.02719,0.676539,-0.7558,-1.18694,-2.47186,-0.931614,0.720887,-0.67366,-1.01074,0 +0.540096,0.394967,0.397655,-0.640496,-0.257054,0.520795,0.81761,-0.624184,-0.574069,0.393178,-1.752,-0.710342,0.537977,-0.578127,-0.316695,-1.55352,-0.830903,0.548231,-0.691082,-0.447991,-2.08588,-0.729033,0.611051,-0.606223,-0.392948,0 +-1.30792,-1.76169,-0.801738,-0.131826,1.33837,1.68116,0.666364,-1.00519,-0.636818,-1.4686,-1.38622,-0.866646,0.579226,-0.642505,-0.65394,-1.10852,-0.949025,0.614049,-0.748593,-0.696499,-1.55053,-0.914972,0.658228,-0.672681,-0.83783,0 +-1.01129,-1.56602,-0.779888,-0.678668,1.03546,1.64062,0.79735,-0.454148,-0.300293,-1.20774,-1.26665,-0.750283,0.662706,-0.627553,-0.679687,-0.876621,-0.977861,0.657868,-0.754261,-1.00387,-1.49414,-0.914303,0.6938,-0.675749,-0.917771,0 +-0.53196,0.397685,-0.668333,-1.11864,-0.0167918,1.48509,0.89825,0.0308648,-0.302692,-0.219612,-1.47906,-0.860908,0.675609,-0.638497,-0.946896,-1.0778,-1.01005,0.678827,-0.75637,-1.18095,-1.63867,-0.943168,0.711622,-0.676699,-1.0712,0 +-0.825536,-0.320163,-0.609552,-1.14225,-0.303431,1.5232,1.40947,0.0847285,0.308359,-0.57201,-1.29087,-0.913513,0.655049,-0.650222,-1.25027,-0.915972,-1.05331,0.67442,-0.764426,-1.602,-1.52871,-1.00677,0.703086,-0.686324,-1.45045,0 +-0.748514,-0.730932,-0.121451,-0.740118,0.832193,2.12639,0.672271,-1.49577,-0.907346,-0.881269,-1.466,-0.885526,0.677388,-0.635729,-0.917171,-1.14552,-0.994993,0.686943,-0.748554,-1.06439,-1.73917,-0.909815,0.721827,-0.669822,-0.922349,0 +-0.557647,-0.395746,-0.627473,-0.497816,1.4388,1.37358,0.099921,-1.12634,-0.872912,-0.843817,-1.57687,-0.722986,0.704625,-0.600956,-0.521165,-1.30231,-0.893702,0.681336,-0.723126,-0.764196,-1.9773,-0.789604,0.722167,-0.640756,-0.599157,0 +-0.744106,-0.445262,-0.622225,-0.697908,0.269848,1.80903,0.923458,-0.691631,-0.498756,-0.648622,-1.5401,-0.978011,0.607063,-0.649692,-1.20328,-1.18799,-1.05777,0.627912,-0.756809,-1.33805,-1.90911,-0.981989,0.675559,-0.677128,-1.25151,0 +-1.52396,-1.57241,-1.00257,-1.06729,0.323102,1.98888,1.26765,0.10128,0.361563,-1.17333,-1.38637,-0.860449,0.665694,-0.647063,-1.24418,-1.11343,-1.0217,0.672571,-0.763776,-1.48993,-1.8144,-0.993904,0.698828,-0.687733,-1.45534,0 +-1.75738,-2.58002,-1.42077,-0.446361,2.80593,2.33802,-0.0738539,-1.02713,-0.974653,-2.18726,-1.62546,-0.901898,0.640306,-0.637288,-0.889704,-1.75728,-0.886296,0.59268,-0.728763,-0.686304,-2.13157,-0.850204,0.667004,-0.661876,-0.681436,0 +-1.41581,-1.80637,-0.957961,-0.649322,0.648403,2.06083,1.5399,-0.484933,-0.198543,-1.53362,-1.40194,-0.833602,0.677668,-0.642016,-1.04629,-1.04829,-1.0093,0.675839,-0.761037,-1.23776,-1.64861,-0.968606,0.702686,-0.684815,-1.23468,0 +-0.671641,-0.188338,-0.751322,-0.834591,-1.00187,1.17425,2.16287,0.85841,-0.104169,-0.139841,-1.92708,-1.07589,0.614349,-0.661586,-1.96467,-1.71007,-1.13415,0.655099,-0.768544,-2.05207,-2.28529,-1.06553,0.697938,-0.688163,-1.9337,0 +-0.40898,-0.0838389,-0.547042,-0.664874,-0.0713451,0.345541,0.575038,0.771192,0.139032,0.0605604,-1.86256,-0.85733,0.692361,-0.63349,-0.992214,-1.40284,-0.976062,0.7343,-0.746395,-1.24367,-2.14738,-0.951884,0.723216,-0.678018,-1.19508,0 +-1.65957,-1.85619,-1.32962,-0.972813,0.162411,2.3354,1.82107,0.176494,0.250577,-1.49986,-1.72271,-0.934502,0.670652,-0.647303,-1.40161,-1.39379,-1.04475,0.687173,-0.761787,-1.52839,-1.93492,-1.02429,0.702406,-0.688043,-1.62416,0 +-2.32417,-1.58316,-1.81019,-1.11555,1.03813,2.16291,1.3526,0.370998,0.336375,-1.75697,-1.73182,-0.926096,0.635299,-0.6538,-1.26641,-1.40764,-1.06055,0.646004,-0.766725,-1.41298,-2.19397,-1.0244,0.682546,-0.688973,-1.46629,0 +-0.791672,-1.91529,0.134754,0.545433,0.173135,0.278824,0.960949,-0.157063,-0.0507651,-1.00676,-0.290778,-0.997062,0.540645,-0.651381,-1.31539,0.399025,-1.04728,0.567712,-0.75566,-1.29127,-0.722586,-0.991605,0.623515,-0.678488,-1.35026,2 +-0.810503,-1.07713,0.555298,0.638837,0.112745,-0.133874,0.984398,-0.500265,-0.403362,-0.509441,-0.40794,-0.975502,0.544483,-0.651221,-1.1612,0.209657,-1.02531,0.585883,-0.757379,-1.06689,-0.792442,-0.967776,0.636139,-0.678947,-1.12632,2 +-2.19118,-2.81223,-0.846066,0.325211,1.42774,1.14741,1.17727,0.161001,-0.342392,-2.18451,-0.547482,-1.00438,0.546412,-0.655299,-1.39589,0.000199941,-0.985208,0.529391,-0.748494,-1.19119,-0.993913,-0.989006,0.628772,-0.682126,-1.37666,2 +-2.06499,-2.34934,-1.41561,-0.390919,-0.365611,0.854791,2.54471,1.14507,1.16162,-1.39415,-0.862258,-1.1188,0.578547,-0.664694,-2.38516,-0.109087,-1.1499,0.597697,-0.766045,-2.39505,-1.38887,-1.10179,0.660937,-0.690852,-2.33684,2 +-1.71211,-0.59147,-2.30288,-1.74634,-1.85728,0.912673,1.97661,2.58945,3.27528,-0.453778,1.48016,-0.93871,0.439375,-0.59221,-1.34096,1.95083,-0.849354,0.263531,-0.550221,-0.984878,1.54388,-0.889735,0.380694,-0.537417,-1.4329,1 +-1.55505,-0.384032,-2.37688,-1.79551,-1.52918,0.778249,1.38905,2.44517,3.20168,-0.174255,2.14586,-0.882978,0.322392,-0.522674,-1.66557,2.50266,-0.786185,0.181051,-0.496817,-1.06171,2.19009,-0.848585,0.32758,-0.50996,-1.40452,1 +-2.05792,-1.07097,-2.70033,-1.74796,-1.00433,1.10074,1.14066,1.72594,3.93823,-0.974333,2.07227,-0.98009,0.500985,-0.639707,-1.86816,3.0338,-0.756729,0.097752,-0.560526,-1.75549,2.21625,-0.881419,0.440245,-0.605943,-1.8174,1 +0.491869,0.233985,1.1103,1.06104,-0.565843,-1.36722,-0.827085,0.336075,0.269158,0.278524,0.186019,1.71109,-3.08021,2.40946,0.974013,0.385881,1.4625,-3.18819,2.24573,0.903628,0.144699,1.47018,-2.70959,2.02527,0.973683,2 +0.168597,-0.214085,0.780848,1.14455,-0.272617,-0.951674,-0.736929,0.243531,0.289098,-0.335556,-0.679138,1.35563,-1.76857,1.24956,1.01519,-0.706574,1.36478,-1.71773,1.35949,1.00617,-0.882378,1.19391,-1.53307,1.08678,1.00556,2 +-1.36725,-0.0383612,-2.26811,-1.5716,-0.669772,0.403013,1.14896,1.99143,2.35626,-0.12193,1.15396,-0.835721,0.328109,-0.541515,-1.42931,1.71995,-0.785236,0.0965326,-0.522424,-0.95904,1.07742,-0.819159,0.34822,-0.547252,-1.41238,1 +0.905427,1.45436,0.0768124,-0.0517048,-0.684115,-0.759268,-0.401563,0.0523543,-0.296685,1.67711,0.458136,-0.174814,-0.0984817,-0.172835,0.167708,0.351638,-0.497536,0.0869173,-0.456217,-0.0987616,0.51032,-0.256494,0.043109,-0.266569,0.100271,2 +-2.19379,-1.39382,-2.78592,-1.96355,-2.27396,1.49253,2.47731,2.64251,4.23829,-0.999261,1.74786,-1.05065,0.53117,-0.638887,-1.84503,1.77567,-1.01311,0.607113,-0.729713,-1.51535,1.45664,-1.0348,0.617068,-0.663075,-1.77161,1 +-1.66273,-0.410819,-2.36038,-1.68518,-1.12277,0.767634,1.25871,2.0506,3.09691,-0.410709,2.2452,-0.909195,0.415726,-0.605883,-1.71446,1.81274,-0.667693,0.247359,-0.596158,-0.588482,1.87948,-0.81637,0.438985,-0.605204,-1.1804,1 +-1.50678,-0.357375,-2.13362,-1.66841,-1.42071,0.687533,1.47066,2.38508,2.87753,-0.228918,2.01947,-0.963778,0.44952,-0.606953,-1.62589,2.43242,-0.81782,0.364301,-0.63375,-0.842088,1.95596,-0.900889,0.449,-0.59176,-1.37226,1 +-0.0726244,0.646244,-0.526432,-1.042,-0.597368,-0.118352,0.903278,1.1186,0.722836,0.430989,-0.141661,-0.688183,0.432158,-0.545183,-0.576687,0.271737,-0.7562,0.28668,-0.573989,-0.608792,0.145599,-0.75658,0.393757,-0.540985,-0.717799,0 +-0.368769,-0.0414896,-0.574569,-1.21467,-0.967207,0.757909,0.915242,0.683385,0.689672,0.742587,0.676699,-0.876821,0.657468,-0.639607,-1.27584,0.91907,-0.966037,0.721517,-0.748544,-1.54296,1.11021,-0.957931,0.697199,-0.676539,-1.30595,0 +-1.2282,-1.09693,-1.26172,-0.946716,-0.544613,1.767,1.12184,0.129347,0.972684,-0.540166,0.402273,-0.966237,0.636179,-0.65261,-1.33879,0.526842,-1.06467,0.671841,-0.763126,-1.53524,0.610541,-1.0211,0.693591,-0.685664,-1.45727,0 +-0.419724,-0.456017,-0.717209,0.295595,0.332407,-0.779798,-0.61366,0.98101,1.00684,-0.360953,0.207329,0.105269,-0.429879,-0.0465571,0.26652,0.452768,0.886696,-1.88305,0.955043,0.614189,0.128617,0.393138,-0.826755,0.24479,0.399404,2 +-0.293156,0.104929,-0.788674,0.0679166,0.610321,-0.788534,-0.974433,0.729633,0.676089,0.131556,0.700357,0.113874,-0.368559,-0.0100249,0.445012,0.657368,0.896311,-1.3497,0.828415,0.770573,0.604334,0.353587,-0.629292,0.215175,0.594479,2 +0.24438,0.267379,-0.647223,0.0656077,0.225849,-0.983468,-0.865266,0.906336,0.720417,0.356476,0.461364,0.471599,-0.991404,0.446182,0.536967,0.67512,1.20194,-2.27982,1.46177,0.720088,0.464693,0.692461,-1.30259,0.681407,0.627023,2 +0.622655,0.75548,-0.768844,0.00270857,0.228388,-1.25164,-1.25272,0.931074,0.718898,0.805856,0.831443,0.927456,-1.47489,0.938341,0.75664,0.854222,1.57981,-2.66193,2.01824,0.896311,0.844677,1.05866,-1.77995,1.21446,0.802937,2 +0.312637,0.478995,0.502364,0.633699,0.34662,-0.872613,-1.26283,-0.14246,-0.40886,0.616109,0.716079,0.217394,-0.668832,0.448411,0.555548,0.573749,0.465042,-0.905447,0.570631,0.79764,0.908315,0.387211,-0.702006,0.45052,0.674919,2 +0.929935,1.08641,-0.282412,0.263381,0.685934,-1.21292,-1.38523,0.425292,-0.148157,0.57169,0.276815,0.979401,-1.09169,0.827695,1.02074,-0.0952933,1.35371,-1.4629,1.32176,1.14156,0.161061,1.09599,-1.27692,0.990885,1.05789,2 +1.12907,0.0475268,1.01593,0.743036,-0.697169,-0.889394,-0.69526,-0.278314,-0.426541,1.19466,0.30631,0.210427,-0.156024,0.108837,0.625044,0.398245,-0.0687863,-0.263211,0.0455178,0.413398,0.656099,0.189697,-0.426081,0.264441,0.541915,2 +0.955032,0.742886,-0.398255,0.134924,-0.000359824,-1.13628,-1.19841,0.615768,0.511779,0.835121,0.803747,1.04396,-1.37677,0.908875,0.83741,0.53026,1.73773,-2.25489,1.86841,0.993374,0.591221,1.26121,-1.61151,1.17149,0.941099,2 +1.96641,1.27295,-0.16389,0.303231,-0.311438,-1.94427,-1.55599,0.688723,0.268279,1.84819,0.736819,1.25941,-1.53313,1.15898,1.03282,0.215595,1.92699,-2.63097,2.25785,1.19222,0.315326,1.76444,-2.22365,1.81726,1.16944,2 +0.997722,1.02581,-0.242601,0.30597,0.541095,-1.29339,-1.42964,0.289778,-0.114674,0.864617,0.533979,0.539756,-0.743316,0.360704,0.762917,0.114884,1.21066,-1.73122,1.19358,1.00077,0.159822,0.933443,-1.22754,0.797909,0.932933,2 +1.14365,0.51039,0.736619,0.765535,-0.437976,-1.39074,-0.844007,0.0812602,0.0268669,0.833252,0.422753,0.882468,-1.18272,0.780168,0.92044,0.212356,1.04515,-1.80375,1.22326,0.95946,0.170097,1.06774,-1.54108,1.09161,0.982709,2 +1.31385,1.2461,-0.734301,-0.22549,0.0112745,-1.50637,-1.42987,0.712281,0.631981,1.64445,0.993364,0.650372,-0.963198,0.540835,0.710153,0.630491,1.5294,-2.12981,1.65529,0.938681,0.652371,1.07523,-1.47804,1.05106,0.891993,2 +0.3274,0.569651,-0.864337,-0.0849585,0.483293,-1.27226,-1.25449,0.908725,0.844716,0.699508,0.89884,0.221652,-0.474348,0.0609703,0.461344,0.850684,1.06294,-1.67138,1.04426,0.719238,0.763846,0.498636,-0.81702,0.359864,0.598787,2 +0.998081,1.02066,-0.785735,-0.292757,0.0178213,-1.34917,-1.33405,0.968356,0.803067,1.35397,1.09952,0.865276,-1.42815,0.863607,0.656209,1.11743,1.63759,-2.93858,2.20447,0.799339,1.04622,1.06024,-1.87,1.27442,0.717968,2 +0.769903,0.687663,-0.0655879,-1.01788,-0.580396,0.534119,0.988546,-0.480075,-0.207688,0.822128,0.126308,-0.814421,0.601416,-0.618707,-0.597477,0.604464,-0.933253,0.574948,-0.719888,-0.809074,0.709313,-0.843917,0.651291,-0.638477,-0.744725,0 +0.61203,-0.422883,1.35668,1.18002,-0.410109,-0.991934,-0.872783,-0.517307,-0.527362,0.855551,0.494808,0.718638,-0.791642,0.604064,0.862938,0.463083,0.456317,-0.968616,0.524743,0.722596,0.638288,0.699678,-0.961509,0.670562,0.788164,2 +0.0321643,-0.0377215,-0.140791,-0.777479,-0.984018,0.746455,1.39328,0.375006,0.0398805,0.314106,-0.260772,-0.873932,0.206669,-0.397065,-1.53565,0.209058,-0.89941,-0.0330339,-0.311158,-1.53269,0.417346,-0.784636,0.0034384,-0.181991,-1.43438,0 +0.813892,1.3148,-0.783207,-1.17605,-0.553329,0.0869175,0.772462,0.524553,0.263251,0.814931,-0.00862576,-0.626243,0.663035,-0.604854,-0.398815,0.643985,-0.83819,0.721686,-0.724525,-0.646913,0.502524,-0.830573,0.672581,-0.655859,-0.59238,0 +0.435447,0.532889,0.00287858,-1.12141,-0.867285,0.649242,1.52027,-0.032814,-0.351998,0.871643,-1.12977,-0.957321,0.615968,-0.648103,-1.02794,-0.482054,-1.02806,0.638267,-0.75551,-1.0606,-0.459945,-0.957381,0.691292,-0.675799,-1.05526,0 +0.40868,0.399704,-0.0331338,0.263461,-0.340753,-0.73565,-0.355126,0.418625,0.341153,0.422203,-0.358425,0.464773,0.232886,-0.0740536,0.886796,-0.85755,0.879749,0.553259,0.324971,0.942039,-0.604764,0.584574,0.252367,-0.000939403,0.914662,2 +0.417416,0.0927746,0.216984,0.705124,0.00351828,-0.573959,-0.201881,-0.383682,-0.199062,0.0219893,-0.699468,0.642626,0.276375,-0.0149525,0.936812,-1.16586,1.04979,0.577487,0.431559,1.02044,-0.913923,0.769573,0.239013,0.0899761,0.989625,2 +-0.514208,-1.72727,1.81447,2.03039,0.331987,-0.704375,-0.383752,-0.760238,-0.848035,-0.973743,-0.655839,-0.234475,0.404382,-0.442093,0.398025,-0.849754,-0.295425,0.582595,-0.493388,0.401923,-0.675369,-0.210007,0.459945,-0.446791,0.420854,2 +-0.578157,-1.57561,0.880759,1.45162,0.690652,0.178753,-0.0335336,-1.34514,-0.854761,-1.20224,-0.0495857,-0.304041,0.242621,-0.395676,0.230577,-0.0762226,-0.227329,0.304161,-0.420824,0.432268,-0.0384211,-0.227928,0.321932,-0.392118,0.336425,2 +0.888225,0.712891,-0.389309,0.108447,-0.560756,-1.31523,-0.567712,0.717509,0.573629,1.32406,0.0629692,0.707434,-0.389019,0.218613,0.903758,-0.139502,1.12109,-0.867465,0.647853,0.906007,-0.155554,0.862298,-0.543534,0.337475,0.955822,2 +1.52783,1.04659,0.158083,0.309478,-0.320443,-1.46995,-0.894632,0.223351,-0.132435,1.52382,0.026657,0.692871,0.126098,0.116493,1.05447,-0.748803,0.764166,0.439904,0.296915,1.02805,-0.34765,0.746984,0.192596,0.178883,1.06481,2 +1.45078,1.56887,-0.145579,0.0755029,-0.34818,-1.4454,-0.746874,0.536477,0.0769224,1.3562,0.472479,1.10496,-0.966707,0.716999,1.00784,0.110626,1.35438,-1.13193,0.911854,1.00302,0.16382,1.24338,-0.990115,0.79613,1.05744,2 +1.00922,0.664715,-0.104919,0.291997,-0.240662,-1.12988,-0.377635,0.495527,0.0390409,0.766525,0.316085,0.641576,-0.335146,0.147578,0.875971,-0.124089,0.861668,-0.380834,0.307629,0.894782,-0.0473967,0.754171,-0.352257,0.209228,0.940959,2 +0.822637,0.631711,0.0819899,0.365141,-0.275535,-0.698298,-0.300893,0.0157223,-0.0209197,0.426651,-0.0253176,0.61252,0.283551,0.0771324,1.00139,-0.992684,0.526452,0.580066,0.118692,0.907026,-0.459675,0.604724,0.294516,0.110096,0.961969,2 +0.911824,0.69445,0.0187208,0.461154,-0.248798,-1.05959,-0.460045,0.299373,-0.00567715,0.631911,0.379794,0.655989,-0.216634,0.113694,0.912953,0.0125539,1.05292,-0.438745,0.415237,0.936732,0.207718,0.834552,-0.303072,0.195604,0.934862,2 +0.742337,0.0125239,1.21678,-0.349489,0.115284,0.555818,-0.140011,-1.21972,-0.866725,0.376086,0.172556,-0.328719,0.759218,-0.496207,0.240273,0.250867,-0.503563,0.902418,-0.601655,0.0329739,0.618477,-0.46953,0.770893,-0.57073,0.0990114,2 +-1.31579,-1.5067,-1.4182,-0.727814,0.489171,0.486382,1.05371,1.37368,0.348509,-0.396896,1.33472,-0.95962,0.596068,-0.644514,-1.08738,0.692931,-0.374377,0.643975,-0.622235,-0.236484,0.981,-0.645844,0.651611,-0.621586,-0.336575,2 +0.926636,0.026657,0.780158,1.33213,-0.0157523,-1.39813,-1.03983,-0.586803,-0.457056,0.747624,0.288389,0.597727,-0.00461767,0.0444184,0.965677,0.0793712,0.566663,0.0797409,0.104759,0.94064,0.407471,0.595668,-0.0275364,0.0433589,0.930194,2 +0.986217,0.834901,-0.149757,0.298384,-0.558167,-1.32874,-0.524233,0.412308,0.298754,1.29913,0.417486,0.791433,-0.438775,0.26559,0.954803,0.26598,1.25244,-1.01952,0.789164,0.969196,0.358535,0.995083,-0.69522,0.448241,0.969465,2 +0.901409,0.880189,-0.385511,0.123699,-0.451689,-1.23434,-0.624814,0.760478,0.580536,0.992384,0.684685,0.804336,-0.457896,0.30729,0.888375,0.301133,1.32996,-0.623745,0.795231,0.943268,0.499965,1.00026,-0.570311,0.426631,0.953753,2 +1.76008,0.811033,0.0803507,0.661506,-0.34814,-1.47168,-0.821818,-0.121181,-0.375466,1.53389,0.201331,0.844597,0.0267969,0.192006,1.08158,-0.5316,0.783276,0.519575,0.311298,1.06898,-0.0387609,0.908335,0.191806,0.293167,1.09362,2 +0.83778,1.39013,0.40894,-0.69358,-1.86191,-0.442193,1.14114,0.968626,0.262182,1.40957,0.180901,-0.749863,0.630471,-0.6324,-0.5314,0.67332,-0.973084,0.63369,-0.757879,-0.905027,0.815131,-0.910714,0.669782,-0.67399,-0.860679,0 +1.43055,0.941759,-0.0425592,0.403142,-0.319404,-1.29147,-0.811073,0.236404,-0.0540734,1.2059,0.533829,1.16778,-0.559796,0.637678,1.11558,-0.147658,1.41528,-0.427651,0.911844,1.17576,0.152016,1.3472,-0.584434,0.794581,1.19587,2 +1.50813,0.854322,0.596928,0.617927,-0.644574,-1.58157,-0.943638,0.0789813,-0.063219,1.56193,0.555688,0.859879,-0.409609,0.301533,1.01329,0.338194,0.930954,-0.434627,0.463213,1.01211,0.478916,0.869514,-0.430639,0.334946,1.00475,2 +1.76772,0.743236,0.560106,0.879929,-0.432428,-1.74559,-1.03679,-0.288289,-0.279023,1.58867,0.295655,0.94018,-0.218473,0.329019,1.10015,-0.299773,0.96015,0.120431,0.454807,1.13403,0.0801608,1.07753,-0.126788,0.458965,1.15225,2 +1.66203,0.994663,0.0438985,0.539945,-0.308849,-1.36713,-0.882658,-0.0629992,-0.150076,1.27245,-0.106428,1.1789,0.147848,0.451829,1.24456,-0.952324,1.30949,0.638507,0.783916,1.21266,-0.553199,1.31592,0.26525,0.61334,1.27583,2 +0.663125,1.62084,0.643505,-1.00735,-1.98511,-0.607952,0.845446,1.09148,0.504453,1.9488,-0.668023,-0.854961,0.658837,-0.642016,-0.949015,-0.0397505,-1.02422,0.666164,-0.761377,-1.20492,-0.0364221,-0.976592,0.685894,-0.682286,-1.16734,0 +0.87928,1.66496,0.0789414,-1.29736,-1.57277,-0.0513448,1.28081,0.412948,0.069546,1.83765,-0.810283,-0.67465,0.777589,-0.596818,-0.649332,-0.0969125,-0.879659,0.791752,-0.723816,-0.91905,-0.214365,-0.874392,0.758579,-0.662176,-0.903448,0 +1.01824,1.4505,0.119002,-1.08631,-0.94031,-0.550111,0.91947,0.304381,0.194075,1.48098,-0.171256,-0.230457,0.809564,-0.512319,-0.00731621,0.688073,-0.526522,0.887845,-0.649362,-0.329469,0.473668,-0.650182,0.760518,-0.631361,-0.320863,0 +1.34814,1.78385,0.0792712,-0.781547,-1.38376,-0.379214,0.030525,0.907306,0.0166519,1.76115,-0.144479,-0.267209,1.04428,-0.450619,-0.178283,0.570751,-0.594409,1.0123,-0.627113,-0.463793,0.647403,-0.67459,0.825236,-0.610061,-0.425672,0 +-0.406671,-0.670242,0.770043,1.15577,0.885916,-0.292567,-0.718588,-0.977082,-0.585993,-0.799858,-0.993764,0.441394,0.012484,0.00905571,0.903528,-0.768354,0.30562,-0.0524644,-0.0199402,0.81766,-0.805626,0.36727,-0.0460674,-0.00456763,0.840238,2 +0.416896,0.227499,0.709753,0.841887,0.432448,-0.539266,-1.02439,-0.728403,-0.479495,-0.0405701,-0.414337,1.10966,-0.439974,0.647593,1.22251,-0.385491,1.00981,-0.559626,0.73509,1.12703,-0.300293,1.04758,-0.628542,0.672941,1.16019,2 +-0.0899659,0.42849,-0.338264,-0.246919,2.14762,-0.0106148,-1.71789,-0.234095,-0.521515,-0.630481,-0.916901,0.276755,0.103659,-0.0644283,0.713941,-0.501494,0.472549,-0.365791,0.171816,0.754211,-0.663985,0.322952,-0.181531,0.0257775,0.730892,2 +0.91915,0.42987,0.507931,0.792911,0.575878,-0.73425,-1.46793,-0.770863,-0.553659,0.361983,-0.5715,1.12923,-0.134734,0.548931,1.24303,-0.631471,1.15155,-0.164849,0.663595,1.17606,-0.61367,1.18624,-0.26538,0.621326,1.25105,2 +0.144549,-0.205919,0.804626,1.09982,0.497097,-0.399274,-1.01015,-0.884897,-0.523504,-0.334856,-0.75585,0.778339,-0.152065,0.311768,1.09433,-0.587512,0.670602,-0.238813,0.348809,1.00749,-0.605933,0.730383,-0.297234,0.351338,1.04811,2 +-0.165249,-1.0736,0.81823,1.03765,0.745155,-0.193165,-0.835391,-0.814871,-0.421344,-0.720907,-1.15716,0.450809,-0.0749432,0.0149928,0.872543,-0.983269,0.382503,-0.118302,0.0262372,0.81834,-1.00724,0.402073,-0.105568,0.00746648,0.832112,2 +-0.083729,0.470839,0.239953,0.360853,1.24215,-0.0610201,-1.14326,-0.75646,-0.706614,-0.403862,-0.929905,0.311248,0.244071,-0.0572518,0.824607,-1.11487,0.522374,0.284141,0.149147,0.944038,-0.996542,0.492829,0.147638,0.0892864,0.914482,2 +-0.10203,-0.30627,0.454158,0.369299,1.77886,0.283631,-1.48566,-1.15537,-0.911933,-0.740448,-0.441894,0.675869,0.151586,0.14427,1.0188,-0.159532,0.649212,-0.380594,0.337835,0.912333,-0.257844,0.605024,-0.209008,0.176104,0.938051,2 +0.187418,1.01811,0.504033,0.603314,1.16342,-0.624784,-1.55733,-0.445032,-0.609751,-0.342053,-0.840499,0.788154,0.00417802,0.246699,1.0744,-0.782987,0.870764,-0.187868,0.38831,1.0357,-0.917371,0.821288,-0.157123,0.275825,1.07805,2 +0.581076,0.430329,0.109376,-0.998691,0.993424,1.70935,-0.459995,-1.35842,-1.02887,-0.375476,-1.89297,-0.198103,0.809324,-0.417286,0.311927,-1.44735,-0.340443,0.692581,-0.477696,0.166159,-1.49552,-0.311128,0.711602,-0.47047,0.20427,2 +-0.0062769,0.766395,-0.938241,-1.17541,-1.78759,0.488441,1.83319,1.3222,0.974013,0.625474,-1.53877,-0.985417,0.581585,-0.641446,-1.53313,-0.746405,-1.09614,0.623245,-0.759848,-1.76853,-0.984668,-1.02722,0.642066,-0.672641,-1.62048,0 +0.77715,1.11163,0.480855,-0.814361,-0.677738,0.418535,0.406611,-0.292607,-0.309238,0.786715,-0.717339,-0.36734,0.567332,-0.416566,0.16347,-0.00369815,-0.660127,0.540065,-0.601206,-0.0947235,-0.148577,-0.500085,0.527612,-0.46863,0.00268857,2 +0.723366,1.02276,0.0431289,-1.16301,-1.25152,0.237574,1.68834,0.751092,-0.0781517,0.81739,-1.2627,-1.04195,0.55146,-0.624834,-1.63848,-0.546662,-1.1117,0.596598,-0.741717,-1.75834,-0.546502,-1.02313,0.624194,-0.638747,-1.59741,0 +1.05155,0.466941,0.687783,0.575768,0.332567,-0.811173,-1.42323,-0.648982,-0.486312,0.75669,-0.32647,0.982729,-0.227578,0.500035,1.18246,-0.336965,1.0832,-0.3883,0.709303,1.15116,-0.295675,1.11374,-0.512599,0.698638,1.20427,2 +0.146898,0.0404402,0.769024,0.269038,1.18802,0.0319344,-1.04461,-1.04878,-0.749663,-0.414567,-0.247199,0.478406,0.24616,0.0750534,0.864157,0.196524,0.269898,0.268588,-0.00311842,0.688003,0.195504,0.349269,0.088107,0.0650583,0.77493,2 +0.417636,0.133665,1.14342,0.454517,0.167628,-0.106798,-0.442164,-0.845046,-0.595498,-0.133924,-0.146988,0.247719,0.361383,-0.0963827,0.781408,0.336815,-0.162181,0.391148,-0.340613,0.513089,0.419075,0.0350729,0.339044,-0.215165,0.607672,2 +0.826006,1.0425,0.962379,-0.650991,-0.509411,0.581815,0.369649,-0.897711,-0.661686,0.603055,-0.336605,-0.260852,0.623705,-0.340683,0.289648,0.417796,-0.528451,0.615968,-0.545243,0.126208,0.423073,-0.366661,0.564174,-0.359164,0.202031,2 +0.193545,0.454707,0.0205599,-0.729783,-0.934263,0.549971,0.969245,-0.167688,0.0708953,0.682536,-0.194095,-0.639357,0.559716,-0.555068,-0.313087,0.538177,-0.912073,0.570421,-0.707773,-0.746644,0.573619,-0.813362,0.622585,-0.628202,-0.626633,0 +-0.513918,-0.664994,0.0220792,0.293416,2.03551,0.603135,-0.85709,-1.19602,-0.847675,-1.37835,-0.00672669,0.625454,0.280433,0.148697,0.931264,0.478076,0.403223,-0.215265,0.239263,0.753741,0.485752,0.417786,-0.145249,0.14297,0.779418,2 +0.0161521,0.316155,-0.55172,-0.97962,-0.344801,0.874662,0.98001,0.0499755,-0.205729,0.402953,-0.535658,-0.730512,0.625384,-0.582285,-0.559636,0.138642,-0.901758,0.55197,-0.697578,-0.904987,0.385042,-0.846546,0.63261,-0.639337,-0.801018,0 +-0.895292,-1.19302,-0.399954,-0.0988817,3.21134,0.831363,-1.31641,-1.44524,-0.987186,-1.57922,-0.030535,0.468051,0.34685,0.151706,0.782887,0.516947,0.0377715,0.18391,-0.124289,0.524014,0.527442,0.136553,0.00629701,-0.000459638,0.542414,2 +0.77536,0.804596,0.309159,0.390119,0.211377,-0.952803,-1.11082,0.145069,-0.0250177,0.377435,-0.08175,1.10085,-0.610021,0.692461,1.17867,-0.369829,1.16269,-0.339104,0.760968,1.15308,-0.316795,1.1605,-0.621126,0.75623,1.2084,2 +-0.223211,0.332757,-0.0152226,0.657478,2.21151,-0.740987,-1.67801,-0.372997,-0.547632,-1.06809,-0.0996712,0.893942,-0.294446,0.461264,1.1209,-0.608622,0.855261,0.135234,0.372628,1.0974,-0.507302,0.931374,-0.194265,0.458576,1.1539,2 +0.38856,1.32732,-0.464173,-1.46995,-1.32545,0.00841593,1.59749,1.20692,0.307429,1.32371,-0.141251,-0.824266,0.59266,-0.629292,-0.901299,0.622875,-0.994033,0.63347,-0.754261,-1.18949,0.555328,-0.949495,0.645214,-0.669922,-1.06918,0 +0.00339837,-0.400124,0.595579,0.903407,1.10345,-0.135504,-0.75597,-0.731702,-0.701846,-1.08671,-0.375736,0.883108,-0.233526,0.387161,1.11347,-0.659187,0.811053,-0.0162821,0.356895,1.04675,-0.690832,0.887536,-0.360743,0.427591,1.09107,2 +-1.0188,-1.84143,0.514618,1.14965,2.31231,1.46728,-0.842667,-2.40908,-1.40439,-2.42166,-0.243971,0.250148,0.629092,-0.223021,0.789254,-0.0455077,-0.00319844,0.549861,-0.345071,0.641896,-0.00549722,0.0590111,0.464463,-0.302002,0.671461,2 +-0.955222,-1.19565,-0.10141,0.24448,1.9026,2.08323,-0.477106,-1.99593,-1.22027,-1.98013,-0.349099,-0.119601,0.523294,-0.339114,0.426302,-0.349679,-0.0867875,0.513618,-0.310468,0.525673,-0.195314,-0.0657778,0.335026,-0.277704,0.455147,2 +-0.602375,-0.0575618,-0.862518,-1.15529,-0.313237,1.24288,1.25927,0.212776,0.493059,-0.380034,-0.280333,-0.818659,0.640786,-0.629852,-0.863737,0.333817,-1.02224,0.640076,-0.756939,-1.21668,0.379454,-0.964668,0.67507,-0.677038,-1.12991,0 +-0.534009,-0.502964,0.206969,0.830963,1.90068,0.36813,-1.08608,-1.06324,-0.924037,-1.61111,0.0963529,0.486302,0.166678,0.0279765,0.922918,-0.140041,0.79545,-0.0755131,0.364312,1.03238,-0.0852882,0.640826,-0.134914,0.154934,0.958561,2 +-1.51563,-1.47642,0.649762,1.01854,2.65187,1.0307,-0.481054,-1.6434,-1.36411,-2.94386,-0.698548,0.569481,-0.133155,0.206629,0.953184,-1.10384,0.737629,-0.748054,0.583175,0.992784,-0.890104,0.847795,-0.758519,0.567942,1.00655,2 +-1.42339,-1.53372,-0.990525,-0.630041,0.0861378,1.88797,1.73492,0.337175,-0.0736339,-1.37384,-0.36713,-1.01426,0.610331,-0.6541,-1.45777,0.280253,-1.10601,0.629961,-0.765915,-1.64878,0.369859,-1.04472,0.675769,-0.687073,-1.60773,0 +-1.71736,-1.32132,-1.67197,-1.11295,-0.252676,1.51881,2.11517,1.2468,0.879559,-1.17865,-0.483523,-0.965877,0.65334,-0.651291,-1.5623,0.182241,-1.10028,0.659667,-0.767414,-1.82497,0.217524,-1.06443,0.682446,-0.690502,-1.78315,0 +-0.172126,-0.749913,0.656529,0.835591,1.53697,0.541085,-0.556518,-1.54688,-1.12659,-1.52128,-0.375166,0.87928,0.423843,0.212866,1.14498,-0.644494,1.12722,-0.0215895,0.752022,1.2056,-0.458915,1.10391,-0.181841,0.560316,1.20993,2 +-0.378914,-0.503663,-0.911204,0.233306,1.83007,1.94085,-0.65401,-1.72682,-1.16047,-1.75925,-0.12261,0.723516,0.0445882,0.414697,0.830154,0.284031,0.392538,-0.765785,0.492369,0.503913,0.263421,0.435527,-0.544423,0.375057,0.595648,2 +-1.02548,-1.57464,0.947486,1.51971,1.65374,0.747294,-0.745395,-1.61228,-1.20673,-2.181,-0.168747,0.320563,0.282052,-0.103339,0.854192,-0.10165,0.206869,0.300753,-0.18415,0.799129,-0.0337234,0.239983,0.20378,-0.151116,0.791982,2 +-0.351768,-1.33591,0.0358225,-0.460504,1.04085,2.03661,0.575598,-1.91021,-1.06358,-0.987207,-0.40938,-0.605374,0.575368,-0.498666,-0.206739,0.18326,-0.764386,0.61257,-0.666364,-0.253016,0.314426,-0.69425,0.614139,-0.57257,-0.328489,2 +-1.75451,-0.974653,-0.498916,-0.04104,3.48851,1.95002,-1.03282,-1.87424,-1.33518,-2.74615,-0.345721,0.00785627,0.416216,-0.323022,0.533719,0.10175,0.0335935,0.0484562,-0.231437,0.566933,0.0803707,-0.018271,0.180032,-0.26488,0.508521,2 +-1.56129,-2.41902,0.893043,1.22806,2.85689,0.802987,-0.742087,-1.93895,-1.32472,-2.7043,-0.343932,0.012544,0.503134,-0.309029,0.639437,0.0396106,-0.269718,0.498016,-0.485462,0.452878,0.139182,-0.178453,0.444532,-0.411718,0.46933,2 +-0.98091,-1.11301,-0.596328,-0.887885,0.736649,1.51123,1.13938,-0.792282,-0.290977,-0.689183,-0.435647,-0.817939,0.61246,-0.609152,-0.73444,0.246729,-0.990365,0.603844,-0.73577,-1.06251,0.431009,-0.921349,0.648722,-0.661576,-1.0127,0 +-0.462114,-0.600256,-0.73616,-0.860848,-0.687993,1.08597,1.09359,-0.032784,0.340323,0.436137,-0.212686,-0.846505,0.619617,-0.631241,-0.936072,0.46932,-1.01678,0.614089,-0.752632,-1.22357,0.557737,-0.961699,0.651841,-0.6735,-1.15343,0 +-0.111785,-0.523564,1.10466,1.19378,0.784356,0.0583515,-0.765255,-1.35721,-0.925956,-0.883088,-0.129067,0.725725,0.173045,0.193056,1.07247,0.0460275,0.523644,0.193785,0.109057,0.952924,0.151256,0.619577,-0.0302551,0.179372,0.985537,2 +-0.287519,0.581016,-0.604294,-0.8375,-1.68632,0.63409,1.67837,1.20747,0.318144,0.703136,-0.374247,-1.01317,0.623185,-0.646194,-1.71537,0.316905,-1.10259,0.661436,-0.759998,-1.89003,0.379934,-1.03245,0.675589,-0.678608,-1.71685,0 +0.160062,1.27125,-0.190597,-0.953743,-1.55767,-0.150566,1.39823,1.07458,0.4492,1.15544,-0.968716,-0.850024,0.655249,-0.636928,-1.10618,-0.199842,-1.00416,0.679747,-0.75638,-1.3627,-0.273656,-0.966127,0.682136,-0.677118,-1.19782,0 +0.690422,1.33258,-0.0402803,-1.24755,-1.99607,0.269098,1.63905,1.03398,-0.109186,1.7975,-1.78667,-1.08467,0.600466,-0.663755,-1.8476,-1.05573,-1.15486,0.637798,-0.771312,-2.07238,-1.18373,-1.07394,0.683505,-0.690552,-1.83194,0 +-1.50482,-0.590011,-0.750033,-0.217783,1.35017,0.849604,0.533879,-0.699618,-0.336215,-1.10502,-0.399694,-0.975882,0.617088,-0.6537,-1.11024,0.0979721,-1.04111,0.636148,-0.758998,-1.15983,0.335896,-0.982779,0.681347,-0.683235,-1.14786,0 +-0.826555,0.963408,-0.514468,-1.04741,-0.565093,0.748324,1.42351,0.659337,-0.0923847,0.221572,-0.548042,-1.05873,0.622305,-0.657038,-1.77535,0.0560426,-1.13562,0.655999,-0.766775,-1.9916,0.176314,-1.05479,0.697029,-0.686344,-1.74401,0 +-0.124429,1.08459,-0.136723,-0.997142,-0.318154,0.569281,1.25218,0.00869569,-0.296205,0.230057,-0.400414,-0.991804,0.628202,-0.651521,-1.29167,0.138882,-1.08543,0.639577,-0.762777,-1.45454,0.283441,-0.993004,0.696209,-0.681026,-1.27274,0 +-1.12384,0.424602,-1.78045,-1.38602,-0.379754,0.415637,0.809074,1.65162,1.70039,-0.180981,0.886956,-0.688103,0.24523,-0.476696,-0.663675,0.0931744,-0.213605,0.676699,-0.438455,0.0789614,0.412448,-0.564993,0.344521,-0.478136,-0.260263,1 +0.214275,-0.715779,1.15858,1.63792,-0.236954,-0.993763,-0.726115,-0.526252,-0.450639,0.166319,0.251927,0.927066,-0.973593,0.689343,1.00789,0.193705,0.496447,-0.523714,0.339254,0.818889,0.479056,0.664135,-0.784236,0.471589,0.85671,2 +1.12857,0.16253,1.48789,1.52313,-0.598867,-1.767,-1.21686,-0.208948,-0.181421,0.853972,0.272207,2.16017,-1.84436,2.0417,1.40863,-0.0657178,1.64635,-1.06304,1.51053,1.30937,0.216214,1.88768,-1.55499,1.68607,1.29207,2 +0.966117,-0.030565,1.49637,1.8569,-0.374287,-1.86689,-1.37209,-0.363082,-0.400994,0.769453,0.20512,1.786,-1.33215,1.44515,1.35528,-0.256225,1.18463,-0.628692,0.902028,1.21668,0.108537,1.56748,-1.02736,1.16304,1.26729,2 +0.670192,-0.765685,1.75914,1.85549,-0.104079,-1.6012,-1.10594,-0.36754,-0.545703,0.240942,0.229348,1.30299,-1.22441,1.08785,1.1807,-0.282802,0.643845,-0.425022,0.383392,0.996432,0.0715351,1.0189,-0.75596,0.683935,1.10063,2 +-0.85884,0.682366,-2.09147,-1.30655,0.732312,0.00672676,-0.600976,1.67755,1.27093,0.138752,1.63516,-0.405072,-0.138582,-0.240352,-0.447071,1.84256,0.117502,-0.634979,-0.0421593,-0.424102,1.40314,-0.180672,-0.345151,-0.117153,-0.240732,1 +0.432288,0.369319,0.988676,0.00441773,0.0373417,0.0603205,0.480315,-1.04102,-0.626633,-0.0776819,0.194525,-0.642525,0.535948,-0.562415,-0.144599,0.192386,-0.661636,0.463133,-0.641736,-0.0915751,0.532409,-0.581545,0.45043,-0.533459,-0.111416,0 +1.3366,2.04751,1.38847,-0.586383,-1.1528,-0.625584,0.47071,-0.299673,-0.370099,1.41139,-0.154514,-0.739818,0.527432,-0.594449,-0.343752,-0.0296155,-0.865526,0.605024,-0.718948,-0.458525,0.318504,-0.729703,0.600936,-0.61252,-0.332487,0 +-2.02399,-0.855161,-2.35112,-1.73598,-1.12894,1.1894,1.45199,2.30844,3.2488,-1.02917,2.02357,-0.892063,0.40858,-0.600296,-1.47247,1.1401,-0.305071,0.870314,-0.547572,-0.906086,1.45139,-0.725545,0.483763,-0.584794,-1.03771,1 +-0.44996,-1.50107,1.97088,2.08051,0.631591,-0.773671,-0.494388,-0.870944,-0.900489,-1.36963,-0.00267867,0.993404,-0.297164,0.422633,1.14895,-0.462564,0.569191,0.438275,0.105079,0.974293,-0.16363,0.706354,-0.0410698,0.170906,1.03495,2 +-0.380124,-0.393147,-0.264351,-0.760468,0.034793,1.73521,1.33991,-1.13846,-0.626553,-0.411938,-1.8453,-0.830903,0.691431,-0.618237,-0.724375,-1.63978,-0.938221,0.676978,-0.726724,-0.820968,-1.3458,-0.846696,0.725635,-0.647863,-0.737679,0 +-1.80446,-0.596078,-2.48165,-1.91315,-2.0007,1.26753,2.27797,2.42086,3.49947,-0.699018,1.48701,-0.640726,-0.00899553,-0.364691,-1.1916,1.08114,-0.747394,-0.0330239,-0.442683,-1.55529,1.17358,-0.705685,0.057472,-0.378545,-1.62313,1 +-1.18745,-0.140111,-1.94846,-1.63925,-1.35165,0.900709,1.94096,2.25435,1.89832,-0.14276,1.11555,-0.865536,0.26576,-0.51015,-1.74702,0.359014,-0.923548,0.279953,-0.617048,-1.73441,0.580446,-0.819039,0.24444,-0.486092,-1.8301,1 +0.435107,1.1755,-0.287329,-0.736769,-0.0616298,1.43558,0.997801,-1.0949,-0.797609,-0.363242,-1.91556,-0.570471,0.854052,-0.518526,-0.254725,-1.85049,-0.763486,0.806015,-0.652441,-0.440214,-1.52161,-0.655969,0.818239,-0.576708,-0.333517,0 +0.844716,0.752791,0.96128,-0.259253,0.171466,0.566992,0.260003,-1.56731,-0.893542,-0.0613499,-1.39462,0.197184,0.791602,-0.197203,0.741717,-1.46595,-0.0269468,0.854312,-0.297734,0.623915,-1.13576,0.12205,0.750453,-0.197973,0.678508,2 +-0.334636,-1.01096,1.47195,1.59387,0.618377,-0.227618,-0.662935,-1.06074,-0.791102,-1.18544,-1.43108,0.990955,0.199352,0.273866,1.19387,-1.82201,0.87911,0.644604,0.392698,1.11317,-1.71246,0.892773,0.250228,0.238154,1.14808,2 +-0.095953,-1.20047,1.50955,1.82314,0.880199,-0.424292,-0.358485,-1.40327,-1.14706,-1.30425,-1.75379,0.582395,0.579536,0.0110747,1.02308,-2.3156,0.298424,0.828704,-0.10276,0.876301,-1.92623,0.489291,0.580096,-0.0518745,0.976062,2 +-1.47014,-0.288099,-2.2867,-1.79694,-1.80732,0.774131,1.77951,2.51488,3.14187,-0.154994,1.55881,-0.660457,-0.000789545,-0.368639,-1.30502,1.32899,-0.61246,0.246759,-0.453178,-1.13756,1.18399,-0.695889,0.136503,-0.384492,-1.4109,1 +-0.874882,1.60001,-1.67617,-1.59715,0.0185309,0.304071,0.185169,2.20212,1.30936,-0.311617,1.75227,-0.683235,0.14214,-0.401133,-0.842577,0.44905,0.237334,0.766175,-0.10239,-0.221821,0.754461,-0.158083,0.0704456,-0.260172,-0.090096,1 +1.5041,0.827935,1.28274,-0.262422,-0.774361,-0.234585,-0.0365621,-0.711931,-0.473038,1.10119,-0.256414,0.67366,0.414947,0.182011,1.01005,-0.364671,0.170946,0.552869,-0.0515847,0.77733,-0.0291057,0.369899,0.301133,0.0917052,0.841848,2 +1.33654,0.479015,1.13014,1.27485,-0.473088,-0.999511,-0.8983,-0.791223,-0.527162,0.544823,-0.558906,2.12423,-0.371948,1.48417,1.55691,-1.28558,2.04541,0.226679,1.77557,1.48279,-0.953953,2.26946,-0.278124,1.64659,1.56521,2 +1.09019,1.39756,0.02033,-0.863727,-1.09074,0.341803,0.59306,0.186998,-0.30519,1.16815,-0.666334,-0.111125,0.778419,-0.312707,0.268679,-0.603465,-0.478876,0.704585,-0.515348,0.0974824,-0.190137,-0.360663,0.660377,-0.409769,0.149247,0 +0.992374,-0.0548931,2.07154,1.35047,-0.780788,-0.962389,-0.759188,-0.948776,-0.658108,0.726724,-0.329589,0.73652,0.152975,0.287999,1.08424,-0.87878,0.383902,0.394657,0.117463,0.915222,-0.291187,0.713841,0.0511051,0.319544,1.02913,2 +-1.9042,-0.910784,-2.62663,-1.917,-2.43364,1.30854,2.16151,2.74097,4.1253,-0.679118,2.06853,-0.83703,0.201431,-0.495737,-2.15908,1.84094,-0.903957,0.263881,-0.594849,-1.69094,1.893,-0.892753,0.375696,-0.55076,-1.90147,1 +0.946507,0.83766,0.889695,-0.579096,-0.752342,0.462394,0.360004,-0.542774,-0.267329,0.445912,-0.267729,0.0584315,0.774101,-0.304641,0.560916,-0.310688,-0.331488,0.670072,-0.466881,0.360104,0.0665675,-0.210137,0.686454,-0.385471,0.399624,2 +1.40614,0.723816,0.496317,0.957271,-0.178153,-1.21656,-1.03868,-0.385441,-0.261352,0.675629,-0.231017,2.58368,-1.60217,2.19298,1.55768,-0.835591,2.21063,-0.956532,2.02651,1.40239,-0.573839,2.38383,-1.40067,1.9517,1.49496,2 +1.1785,0.316955,1.99311,0.626843,-0.457696,-0.409929,-0.579806,-1.18476,-0.746394,0.513219,-0.0645384,1.06152,0.389389,0.469081,1.20325,-0.188388,0.701077,0.353567,0.313407,1.083,0.121581,0.814641,0.172266,0.360903,1.05135,2 +0.383412,0.126648,1.27028,0.280093,-0.154794,1.06123,0.519436,-1.55521,-1.09271,-0.728803,-0.749803,-0.103829,0.800358,-0.355556,0.520016,-0.888195,-0.313297,0.760258,-0.480425,0.411779,-0.434897,-0.205899,0.779658,-0.418895,0.446171,2 +1.29464,0.299683,0.885946,1.30908,0.0853882,-1.23382,-1.07933,-0.943528,-0.641566,0.570811,-0.597108,2.22023,-0.562415,1.7929,1.58717,-1.39871,1.52144,0.267019,1.17941,1.37767,-1.03153,2.01111,-0.294296,1.5001,1.53163,2 +0.377525,-0.406341,1.3616,1.26794,-0.0206699,-0.716809,-0.730372,-0.622355,-0.483463,-0.172026,-0.566633,1.26524,-0.436256,0.773701,1.28334,-1.0288,0.690792,0.120191,0.375066,1.02652,-0.736599,0.933933,-0.246539,0.508761,1.1452,2 +-0.132695,-0.371748,-0.0624295,0.655979,1.37603,-0.828094,-0.903028,-0.483913,-0.527572,-0.0660376,0.457986,-0.319953,0.442943,-0.446821,0.320183,-0.0389109,-0.0244181,0.581225,-0.293426,0.587203,0.227529,-0.24451,0.502264,-0.441164,0.403982,2 +-0.782877,-1.42344,0.0443683,1.11348,1.82919,-0.378555,-0.771842,-0.758379,-0.726414,-1.06692,0.580376,-0.291767,0.377455,-0.437406,0.335566,0.459425,-0.10287,0.395706,-0.361243,0.500295,0.500245,-0.271047,0.423673,-0.452778,0.352227,2 +0.704825,1.2411,-0.561895,-0.486292,0.282612,-0.862418,-0.909445,0.535768,0.132325,1.19525,1.05206,0.0938642,0.235485,-0.207528,0.529711,0.493848,0.546972,0.593459,0.109936,0.661056,0.732022,0.138922,0.300943,-0.178532,0.594879,2 +0.670112,1.0744,-0.254685,0.0206598,0.313467,-1.06708,-1.12893,0.542164,-0.067307,0.983779,1.0605,0.098322,-0.0504252,-0.0796609,0.594919,0.315106,0.380913,0.0454277,0.14315,0.743626,0.603775,0.187268,0.0245281,-0.0401502,0.676349,2 +-2.09357,-1.61223,-2.45323,-1.48892,-0.339844,1.20946,1.30969,1.68404,2.66728,-1.05732,1.15253,-1.05924,0.573569,-0.661326,-1.64835,1.28928,-0.896551,0.581175,-0.730143,-0.645374,0.907416,-0.972954,0.623835,-0.675979,-1.23454,2 +-2.23405,-1.6977,-2.51094,-1.71611,-1.03761,1.54836,1.59597,1.72101,3.52481,-1.23717,1.13705,-1.07057,0.565913,-0.659447,-1.83677,1.23985,-1.03606,0.584594,-0.747644,-1.24333,0.925917,-1.03401,0.627653,-0.677598,-1.73826,2 +1.31805,2.12811,0.171576,-1.43848,-1.9348,-0.201061,0.977781,0.870484,0.117083,2.26051,1.41912,-1.04682,0.583894,-0.658787,-1.54282,2.08476,-1.10595,0.610201,-0.764256,-1.68215,1.68994,-1.02387,0.664115,-0.682866,-1.48285,0 +-0.145949,-0.515937,0.0945637,0.93816,1.14148,-0.985248,-1.01809,-0.169717,-0.376386,-0.217274,0.948866,-0.073224,0.0693561,-0.26489,0.468601,0.739538,0.0963128,0.028316,-0.188278,0.584694,0.969605,-0.101021,0.171236,-0.321432,0.452188,2 +0.947276,0.932983,0.125918,0.205579,0.38866,-1.04463,-1.3335,-0.442323,-0.373557,1.36685,0.843737,0.107507,0.294856,-0.192156,0.650122,0.311927,0.192346,0.371178,-0.100071,0.73547,0.539176,0.087987,0.370549,-0.225919,0.671151,2 +-0.885436,0.260073,-1.16171,-0.908325,0.508901,0.161361,0.14335,0.915052,0.681346,-0.138202,1.6094,-0.9391,0.547622,-0.644145,-0.992984,1.52957,-0.799818,0.491599,-0.682876,-0.455467,1.15011,-0.839789,0.55087,-0.636268,-0.727894,2 +0.391029,-0.138152,-0.32616,-0.602705,0.0297954,0.844177,0.595139,-0.492569,-0.431439,0.130676,0.496447,-0.927436,0.576748,-0.642026,-0.950954,0.961659,-0.995583,0.567952,-0.741407,-1.1427,0.682876,-0.894862,0.638238,-0.660467,-0.89806,0 +-1.29128,-1.75319,0.206199,1.45197,2.519,-0.272507,-0.881189,-1.20344,-0.969305,-1.82715,-0.14232,-0.229308,0.24619,-0.392148,0.363792,-0.20446,0.221262,-0.0807306,-0.129567,0.722506,-0.275035,-0.114184,0.242092,-0.36751,0.452638,2 +-1.87196,-1.41603,-2.37948,-1.64579,-1.26206,1.27907,1.40804,1.80499,3.55826,-0.934243,1.28582,-1.02864,0.55098,-0.647753,-1.53669,1.21646,-0.891104,0.608402,-0.708813,-1.13038,0.948416,-0.970495,0.587173,-0.65299,-1.42688,2 +-0.093904,0.071555,-0.528671,0.338534,1.36706,-0.769363,-1.1544,-0.0687664,-0.201791,0.000449848,1.0477,-0.0655978,-0.00981512,-0.190866,0.45034,0.739718,0.518426,-0.517487,0.331138,0.748814,0.810643,0.129517,-0.181691,-0.0392706,0.573289,2 +0.847375,0.667433,0.279163,0.763946,0.620956,-1.20946,-1.29833,-0.316795,-0.396296,0.454628,0.989785,0.587063,-0.479815,0.288209,0.841748,0.668103,1.05971,-0.958711,0.802397,1.03714,0.801948,0.742467,-0.520525,0.373797,0.923908,2 +-0.987297,0.473948,-2.08519,-1.72449,-0.497946,0.547162,0.417466,1.82683,2.33809,-0.110746,2.35745,-0.933523,0.500055,-0.635119,-1.3203,2.14421,-0.665544,0.150066,-0.504963,-0.675979,1.94644,-0.722996,0.305031,-0.51133,-0.908745,2 +0.425682,0.600176,0.0845286,-0.442034,-0.833462,0.340863,1.03193,-0.136483,-0.361813,0.642036,0.801947,-0.83622,0.441554,-0.584094,-0.745535,1.38549,-0.934822,0.459215,-0.692981,-0.895002,1.24639,-0.869834,0.557457,-0.629512,-0.883428,2 +-0.291767,-0.713141,0.581096,1.4997,0.384072,-0.812242,-0.658148,-0.436436,-0.383162,-0.401983,1.28699,0.16426,-0.42908,0.0465374,0.49111,1.45543,0.18479,-0.775001,0.127588,0.499156,1.27642,0.156613,-0.455797,0.0427092,0.437286,2 +0.952973,0.733771,0.145459,0.833442,0.506942,-1.40514,-1.63175,-0.175794,-0.311397,0.852973,0.720227,0.537957,-0.406381,0.200972,0.861768,0.194125,0.795311,-0.811892,0.533159,0.970215,0.239053,0.658248,-0.444642,0.283871,0.941859,2 +0.210287,-0.0442783,0.475827,1.08182,0.866356,-0.864846,-1.16762,-0.420734,-0.657378,-0.139252,0.73456,0.109327,0.0932344,-0.180901,0.665504,0.257044,0.500025,-0.127428,0.171676,0.896021,0.422173,0.263541,0.0448181,-0.0881367,0.768014,2 +0.91899,0.862947,-0.10301,0.404132,0.651861,-1.21829,-1.46222,0.0745634,-0.219183,0.745865,0.929975,0.413278,-0.304471,0.130956,0.786225,0.434587,0.943828,-0.711801,0.670952,1.01543,0.499276,0.634839,-0.431799,0.305301,0.921749,2 +0.955632,0.828344,0.0507352,0.403652,0.253326,-1.26051,-1.23607,0.257164,-0.0745834,0.843077,1.04657,0.473728,-0.589621,0.312647,0.75601,0.731742,0.75495,-1.07771,0.708933,0.890834,0.718219,0.557187,-0.668123,0.404432,0.823407,2 +0.145509,-0.0533838,-0.416146,-0.844446,-0.91887,0.889015,1.16882,-0.0094954,0.0130437,0.670832,0.207169,-0.756859,0.562695,-0.579236,-0.598737,0.416476,-0.921379,0.555098,-0.69421,-0.758968,0.749493,-0.840409,0.582075,-0.597507,-0.778849,2 +-1.03299,-1.0313,-0.83852,0.0148726,1.85597,0.0165519,-0.542654,0.0988416,-0.0547731,-1.01852,0.938471,-0.0366519,-1.05017,0.71483,0.0625796,0.501894,0.112465,-0.457126,0.0901759,0.59256,0.545113,0.108907,-1.26701,1.00234,0.271337,2 +1.42039,1.03428,0.159352,0.366081,0.08167,-1.12674,-1.1563,-0.140791,-0.263471,1.03505,0.0239983,1.13384,-0.983518,0.889335,1.13259,-0.524223,1.10005,-0.677378,0.864757,1.11491,-0.436346,1.27597,-0.967436,0.985478,1.20099,2 +-0.0329738,0.968986,-0.0624195,-0.484113,1.25808,0.411708,-0.534738,-1.0044e-05,-0.768753,-0.692341,0.51001,-0.492599,0.570371,-0.506132,0.0373719,0.547002,-0.0120441,-0.389629,-0.169107,0.254036,0.465042,-0.149457,0.118582,-0.34794,0.217563,2 +1.03177,1.15536,0.499556,-0.692001,-0.630152,0.582045,0.104839,-0.631311,-0.46892,0.815811,-0.0255175,-0.46888,0.608812,-0.528541,0.108857,0.234785,-0.616768,0.73495,-0.630551,-0.0786114,0.275085,-0.524213,0.695819,-0.561005,0.038551,2 +1.17273,1.10841,-0.18358,0.46994,0.687184,-1.86146,-1.8857,0.573519,-0.0364521,1.10927,0.271227,0.891654,-1.08262,0.692631,0.945787,-0.00465768,1.27234,-1.58078,1.18832,1.08793,0.0359225,0.997982,-1.12359,0.818859,1.02908,2 +1.62555,1.63974,-0.189357,0.351258,0.0441784,-1.75789,-1.39008,0.362732,0.0708454,1.33378,0.518516,1.63171,-2.27815,1.8248,1.10995,0.0166319,1.97117,-2.49572,2.30929,1.24899,-0.00210888,2.01608,-2.63364,2.32734,1.28134,2 +-0.769893,-0.586613,-0.209767,-0.865956,0.293446,1.917,1.44944,-0.993584,-0.747634,-0.711242,0.0258374,-0.941489,0.645894,-0.645574,-1.02216,0.131496,-1.02564,0.662346,-0.752082,-1.11367,0.473118,-0.953583,0.729293,-0.671551,-1.13072,0 +0.617018,0.272367,0.788364,-0.376825,-0.168018,0.969066,0.276605,-1.12889,-0.788594,0.0520146,0.524453,-0.504053,0.636139,-0.525683,0.0104051,0.546822,-0.575248,0.752871,-0.601086,-0.054943,0.79649,-0.554459,0.676589,-0.559746,-0.051315,2 +0.121421,0.458855,-0.766745,-0.516117,0.438875,-0.628482,-0.813442,0.763026,0.646653,0.575838,1.09231,-0.113294,-0.458485,0.0551831,0.129057,1.0082,0.351358,-0.907266,0.344481,0.557497,0.909005,0.00211898,-0.446092,0.0827396,0.294366,2 +0.453458,1.10721,-0.562215,-0.81599,-0.864737,0.488061,1.06624,0.0742136,-0.12222,0.791343,0.46951,-0.577397,0.465992,-0.48989,-0.275385,0.610401,-0.807185,0.525463,-0.659267,-0.460485,0.768404,-0.742377,0.55246,-0.566772,-0.502694,2 +0.26471,0.384602,-0.217624,0.429669,1.4003,-1.19286,-1.60814,-0.0239883,-0.277564,0.328149,1.07668,0.330828,-0.598737,0.247519,0.645614,0.482634,0.710772,-0.643905,0.441134,0.955932,0.798499,0.443303,-0.423493,0.214055,0.790413,2 +1.56786,1.36221,-0.0424192,0.383002,-0.110166,-1.59508,-1.66833,0.372348,0.0996613,1.50567,0.693031,1.63111,-2.57347,2.12019,1.06868,0.40832,1.95502,-2.75706,2.5112,1.19128,0.365161,1.91105,-2.8417,2.46582,1.19754,2 +1.24268,0.576558,1.08217,1.07651,-0.360114,-1.24022,-1.23194,-0.412538,-0.302352,0.772322,0.434327,1.69661,-1.88489,1.76844,1.25282,0.279893,1.84321,-2.24999,2.13071,1.2458,0.339074,1.85561,-2.21292,1.98102,1.23816,2 +1.0972,0.912303,0.0399105,0.59162,0.311258,-1.49979,-1.55646,0.139831,0.0739139,0.870354,0.706344,1.36182,-2.23978,1.68914,0.977622,0.053284,2.06454,-1.81352,2.05083,1.22336,0.141391,1.75474,-1.66657,1.62679,1.23695,2 +-0.296905,0.483143,-0.643325,-1.1325,-0.871993,1.45475,1.13755,0.249708,0.237764,0.0228689,0.083709,-1.06251,0.624004,-0.657228,-1.81878,0.26538,-1.13992,0.660267,-0.766045,-2.16238,0.427701,-1.05591,0.710122,-0.684215,-1.83895,0 +-0.523304,-1.297,0.502024,0.822087,0.974243,0.754261,0.00894559,-1.28814,-0.839509,-1.44091,0.202361,-0.296155,0.577197,-0.522614,0.271567,0.30647,-0.356805,0.615538,-0.606923,0.215754,0.290138,-0.400624,0.669512,-0.576797,0.168677,2 +0.123869,0.185509,-0.212156,-0.892343,-0.946067,0.300423,0.961979,0.303122,0.384302,0.888615,-0.692201,-0.725455,0.528381,-0.59295,-0.519276,-0.120181,-0.881358,0.507531,-0.69515,-0.671981,-0.190137,-0.85725,0.580756,-0.631631,-0.77647,2 +-0.200942,-0.567912,0.117053,1.02514,0.77719,-0.594629,-0.584654,-0.362133,-0.456846,-0.410359,-0.309109,-0.0143928,0.242801,-0.358524,0.525743,-0.540126,0.51046,0.181671,-0.099981,0.754341,-0.498326,0.172925,0.226559,-0.30538,0.608302,2 +0.319823,0.18397,0.0679267,0.723206,0.51103,-1.10654,-0.700007,-0.0299654,-0.234905,0.24463,0.219822,0.0306951,0.229728,-0.317374,0.599797,-0.146398,0.437826,0.194884,-0.0844286,0.820039,0.0524144,0.218173,0.217454,-0.239782,0.719757,2 +-0.201521,-0.820618,1.41606,1.22021,0.050975,-0.0180011,0.0413997,-1.09481,-0.800488,-0.712181,-0.364771,-0.525703,0.479935,-0.540115,0.0408002,-0.0691361,-0.454517,0.440994,-0.57218,0.236654,-0.119312,-0.48983,0.505353,-0.544183,0.0741036,2 +0.423543,0.0686664,0.130426,0.841967,0.444173,-1.2773,-0.888955,-0.0886367,-0.16379,0.452349,0.0566723,0.147838,0.205479,-0.258463,0.687284,-0.375886,0.443593,0.239703,-0.0786914,0.847825,-0.330668,0.311817,0.227549,-0.182511,0.79724,2 +0.938551,-0.0398704,0.541445,0.962748,0.160242,-1.46639,-1.01508,-0.396156,-0.269248,0.91852,0.419585,0.165389,0.089926,-0.239872,0.656389,0.2655,0.434517,-0.0367021,-0.0736139,0.773671,0.232566,0.272287,0.0697959,-0.191246,0.717649,2 +1.01621,0.359764,0.330548,0.708553,-0.287459,-1.2962,-0.852693,-0.0883268,0.0733042,0.967926,0.67352,0.100551,0.151236,-0.276574,0.624684,0.394827,0.248398,0.154304,-0.182291,0.73607,0.416306,0.18415,0.159182,-0.216194,0.69458,2 +-0.158262,-1.12562,0.856471,0.830233,0.175804,0.195584,0.0389709,-0.947896,-0.727634,-0.365811,0.0631691,-0.648502,0.523824,-0.574039,-0.169677,-0.0654179,-0.637128,0.518226,-0.642256,-0.069226,0.0160422,-0.569451,0.557047,-0.566582,-0.0988017,2 +0.109626,0.195354,0.554489,-0.106508,-0.894682,0.14219,0.5728,0.222101,-0.0710551,0.324401,0.0849884,-0.814261,0.576588,-0.616268,-0.619437,0.532479,-0.904547,0.536237,-0.718798,-0.733171,0.32616,-0.820159,0.611761,-0.635779,-0.700647,2 +-0.182401,0.627533,-0.566303,-1.28171,-1.26732,0.32661,1.64789,1.18382,0.720337,0.630451,0.47007,-0.886636,0.525493,-0.593799,-1.08787,1.07197,-1.02856,0.524023,-0.704255,-1.38505,0.838939,-0.972054,0.588052,-0.631771,-1.3315,0 +0.998701,1.45142,0.314416,-0.75639,-1.51488,-0.22505,0.464922,0.586493,0.194225,1.49725,0.426241,-0.676948,0.358894,-0.38816,-0.431868,0.91943,-0.848974,0.34649,-0.542684,-0.626173,0.762397,-0.746625,0.277834,-0.266749,-0.63287,2 +-1.45494,-0.981409,-1.13667,-0.609262,2.24662,0.625344,-0.274636,0.649432,-0.333766,-1.37543,0.91912,-0.603344,0.549211,-0.513478,-0.505023,1.09637,-0.498536,-0.0535639,-0.379914,-0.646653,0.950215,-0.525403,0.240083,-0.421843,-0.561725,2 +0.344661,-0.587202,-0.407331,0.518696,0.586053,-0.955602,-0.532919,0.0112544,-0.10277,0.481434,1.15615,-0.146338,0.0412199,-0.307879,0.26525,0.454687,0.109696,0.198203,-0.233855,0.599057,0.646853,0.014393,0.160432,-0.257854,0.514488,2 +-0.0155424,0.603335,-0.141521,-1.16927,-1.26043,0.645074,1.0999,0.700037,0.152735,1.06221,0.573409,-1.03717,0.600336,-0.654449,-1.60392,1.24771,-1.10432,0.607692,-0.758319,-1.72477,1.07486,-1.0202,0.67321,-0.678098,-1.56333,0 +0.868695,0.432808,0.02044,0.598906,-0.168138,-1.53158,-0.794321,0.362233,0.232066,0.98144,0.989266,0.295945,-0.10158,-0.129397,0.648363,0.685914,0.590951,-0.195564,0.0739938,0.801508,0.786895,0.405212,-0.097832,-0.0656777,0.733361,2 +-1.13802,-0.267329,-1.25386,-1.09667,-1.48802,0.443873,2.07345,1.84292,1.4081,0.172116,0.293766,-1.034,0.602045,-0.660656,-1.67108,1.03273,-1.14246,0.630851,-0.770473,-2.0374,0.844877,-1.08102,0.669932,-0.690162,-1.94075,0 +-0.422963,-1.31899,0.405881,0.864936,0.948716,-0.0364721,-0.30682,-0.482484,-0.638727,-0.888355,0.701377,-0.379994,0.284181,-0.479325,0.124319,0.133535,-0.277024,0.424932,-0.508261,0.401663,0.549871,-0.315126,0.442583,-0.484493,0.2651,2 +-0.267499,-1.51564,1.79757,2.30704,0.0936841,-0.969635,-0.622105,-1.04863,-0.786625,-0.568502,0.288179,-0.0238482,0.207878,-0.325021,0.556368,0.0728344,-0.0876671,0.334686,-0.382623,0.589921,0.30601,0.024468,0.230567,-0.307609,0.595828,2 +0.454058,0.114644,-0.0605404,0.607392,0.234895,-1.22236,-0.629952,0.145669,0.0516548,0.524633,0.320903,0.152096,0.0801508,-0.22376,0.652601,0.0923348,0.684275,-0.127708,0.116503,0.863168,0.113844,0.395357,0.00607711,-0.111865,0.777799,2 +1.00361,0.583734,-0.04097,0.348389,-0.292927,-1.37765,-0.558517,0.287299,0.117582,1.23241,0.83672,0.357075,-0.109566,-0.083539,0.713661,0.390679,0.804196,-0.20511,0.236604,0.906936,0.640776,0.565853,-0.158952,0.0356227,0.838939,2 +0.987776,0.967646,0.637538,-0.561315,-1.8916,-0.22538,0.969805,0.304361,0.418085,1.29644,0.632251,-0.503903,0.49004,-0.53113,-0.0548529,1.0854,-0.718548,0.463673,-0.645414,-0.271797,1.08053,-0.655059,0.558817,-0.569911,-0.26529,2 +0.873462,0.0998911,0.155944,1.04618,0.210587,-1.50399,-0.830154,-0.26541,-0.227499,0.722456,0.83687,0.351998,-0.0582714,-0.0764924,0.744286,0.417975,0.659257,0.0816099,0.0933344,0.868995,0.685844,0.49066,0.0216695,-0.0457675,0.81739,2 +0.509141,1.1733,-0.0202601,-1.35003,-1.70251,0.257874,1.32117,0.682856,0.002189,1.96161,0.417226,-1.04361,0.598987,-0.656239,-1.59193,1.10117,-1.10988,0.624304,-0.764536,-1.632,0.999221,-1.03442,0.684435,-0.683485,-1.57371,0 +0.886336,0.871383,0.701157,-0.790453,-1.76786,0.0234286,0.832762,0.337525,0.342712,1.32201,0.637518,-0.606113,0.553969,-0.578916,-0.193575,1.13381,-0.806315,0.543304,-0.699607,-0.404092,1.10413,-0.753771,0.621436,-0.626123,-0.426161,2 +1.4507,1.09217,-0.411918,0.252196,-0.617308,-1.52713,-0.635489,0.460524,0.324921,1.61149,0.69482,0.440764,0.127698,-0.106718,0.786675,0.157473,0.849624,0.24402,0.246729,0.862358,0.289308,0.646763,0.0724046,0.0393409,0.896701,2 +0.53114,-0.651551,1.15431,1.77322,-0.0172516,-1.29204,-0.882038,-0.51165,-0.642835,0.225959,0.699328,0.141991,0.155924,-0.239942,0.682866,0.44971,0.0935842,0.275955,-0.276615,0.711502,0.672801,0.188378,0.189787,-0.221681,0.705574,2 +-0.0628892,-0.721407,2.21294,2.05395,0.114074,-0.824966,-0.831763,-1.21086,-0.832822,-0.734071,-0.541335,1.28863,-0.432048,0.750043,1.29507,-1.01332,1.04603,0.121251,0.565383,1.19675,-0.545053,1.19191,-0.20361,0.582705,1.25849,2 +0.450539,-0.0384911,1.34468,0.69475,-0.0726744,-0.36818,-0.799678,-0.610711,-0.575088,0.243111,-0.016352,0.376216,0.334766,-0.0892262,0.841748,-0.0661976,0.216444,0.596698,-0.110366,0.685834,0.246649,0.189787,0.314246,-0.176763,0.726404,2 +-1.96835,-1.28366,-2.19571,-1.38174,-1.00942,1.42145,1.89134,2.19932,2.28287,-1.1426,0.922339,-0.991534,0.508051,-0.611281,-1.50003,2.15878,-0.79556,-0.193625,-0.334416,-1.67309,1.2076,-0.843427,0.270897,-0.482644,-1.53695,1 +0.567502,1.05359,1.06852,0.884477,0.0963928,-0.912773,-0.89902,-0.5718,-0.584814,0.217414,0.0278864,0.304251,-0.116393,0.119192,0.763227,-0.61336,0.724455,-0.0172117,0.228648,0.982619,-0.345231,0.707464,0.0121242,0.14284,1.00075,2 +0.405192,0.357075,0.364602,-0.515218,0.259003,0.26479,-0.00297857,-0.0229688,-0.481564,0.0612101,-0.977372,-0.209727,0.651501,-0.452198,0.311977,-0.951244,-0.475347,0.83626,-0.555598,0.106108,-0.763106,-0.465372,0.663625,-0.537127,0.12263,2 +0.30641,-0.538796,1.93817,1.81268,0.0884267,-1.04487,-0.890544,-0.861098,-0.724705,-0.404972,-0.704585,1.35358,-0.32637,0.688813,1.30977,-1.23202,1.15221,0.136263,0.681466,1.22748,-0.945597,1.27364,-0.236194,0.640577,1.29288,2 +0.601456,-0.783356,1.8876,2.09589,-0.462624,-1.15563,-1.11897,-0.950515,-0.684565,0.304861,-0.436666,1.49904,-0.270827,0.889745,1.38919,-1.20178,1.05498,0.156173,0.607053,1.22459,-0.748054,1.4173,-0.200192,0.79776,1.34998,2 +-0.417256,-0.801527,1.59667,1.73814,0.372648,-0.497746,-0.85851,-0.528891,-0.611341,-1.16876,-0.994123,0.876781,-0.154834,0.216184,1.05839,-1.21511,0.863047,0.221142,0.309069,1.01089,-1.15702,0.747084,-0.0364321,0.135294,1.01754,2 +0.336655,0.358764,0.764846,-0.110026,-0.299843,-0.0176813,0.0514248,0.146588,-0.197653,-0.00486755,-0.434927,-0.0338933,0.440274,-0.325081,0.484883,-0.553859,-0.308109,0.641336,-0.453718,0.310388,-0.375326,-0.298314,0.498906,-0.424232,0.324261,2 +-0.283211,-0.971094,1.66218,1.67176,0.0439285,-0.539366,-0.573699,-0.779658,-0.584004,-0.687074,-0.642785,0.458366,0.108657,-0.0584312,0.892253,-0.907276,0.403203,0.444192,-0.028406,0.834871,-0.763516,0.319384,0.171036,-0.131505,0.820258,2 +0.927986,0.675869,1.18749,0.519086,-0.456826,-0.444912,-0.497337,-0.255715,-0.654369,0.444852,-0.0765725,0.509521,0.00378821,0.198503,0.932844,-1.32709,1.00902,0.910564,0.377555,1.10187,-0.969555,0.996332,0.617978,0.237744,1.17155,2 +-0.675399,0.416616,-1.31554,-1.19571,-0.956612,0.132835,1.25999,1.89805,1.11768,0.455687,1.83523,-0.779418,0.220652,-0.456796,-1.13311,1.03573,-0.544713,0.299213,-0.462793,-0.154764,1.20926,-0.664785,0.147028,-0.373917,-0.734271,1 +-0.208398,0.63362,-0.414407,-0.803227,-0.667183,-0.536277,0.681526,1.76833,0.601396,0.641216,1.93985,-0.61273,0.0493859,-0.375956,-0.845696,1.40342,0.323542,-0.789853,0.193705,0.215705,1.30106,-0.032694,-0.574239,0.00846599,-0.0707955,1 +-1.39264,-0.409649,-1.63285,-1.30871,-0.993024,0.729293,1.78143,2.07997,1.52382,-0.273696,2.0568,-0.869604,0.296195,-0.518136,-1.59116,1.21754,-0.79678,0.339214,-0.589122,-0.686174,1.39507,-0.844307,0.377125,-0.536657,-1.25734,1 +1.32783,0.532299,1.1982,1.33483,-0.360564,-1.57955,-1.08376,-0.499366,-0.464193,0.87855,-0.0210097,2.16287,-1.11237,1.73531,1.48746,-1.00511,1.79863,-0.0305251,1.43142,1.43801,-0.541885,2.13096,-0.560156,1.57076,1.48571,2 +1.77144,2.12313,0.874592,-0.910594,-1.03165,0.0982419,0.370079,-0.686484,-0.677328,1.51668,-0.400774,-0.568562,0.707484,-0.526262,-0.0722144,-0.515468,-0.683295,0.657458,-0.620656,-0.190767,-0.0344131,-0.495577,0.722586,-0.51119,0.0281861,0 +-0.715919,0.165849,-0.863467,-0.950105,0.641266,-0.0253475,0.453468,1.12688,0.20404,-0.0635188,1.94266,-0.748903,0.379244,-0.569901,-0.633819,0.673021,-0.608882,0.517337,-0.560865,-0.209927,1.20974,-0.778059,0.441584,-0.560705,-0.73539,1 +1.28765,0.868395,0.840279,-0.527422,-0.269858,0.498636,-0.00830596,-1.08861,-0.859939,0.768224,-0.280693,-0.00803595,0.911674,-0.281242,0.565563,-0.679337,-0.181991,0.87711,-0.344191,0.495288,-0.0747233,-0.0167818,0.824167,-0.293236,0.567142,0 +0.75486,0.785226,0.891804,-0.0802908,0.00443783,0.51116,-0.148297,-0.875811,-0.820518,-0.111275,0.208348,0.276605,0.594109,-0.161521,0.772652,0.0731342,0.129816,0.726724,-0.167218,0.678568,0.466772,0.0922049,0.522424,-0.246759,0.655929,2 +0.862428,0.44942,1.11689,-0.391858,-0.836051,0.0167419,0.668922,-0.189687,-0.424772,0.647073,0.0012594,-0.232406,0.579506,-0.462883,0.292987,0.0166919,-0.599966,0.627333,-0.611051,-0.0163219,0.364682,-0.454238,0.584934,-0.512429,0.118222,0 +0.722236,0.615359,0.667833,-0.0827296,0.110906,0.359384,0.291747,-1.20732,-0.93833,0.126758,-0.0435487,-0.0495356,0.669822,-0.333816,0.548921,-0.0569621,-0.303291,0.728433,-0.466012,0.383862,0.458486,-0.219822,0.648563,-0.420464,0.406041,0 +-0.0546332,0.794131,-0.0338534,-0.778289,0.372018,-0.130646,0.130376,1.45996,-0.34605,-0.0865176,-1.33864,-0.945717,0.634899,-0.647013,-1.00936,-1.54548,-0.851153,0.504153,-0.721427,-0.75595,-1.14398,-0.828744,0.63246,-0.657758,-0.682656,0 +-1.67923,-0.552909,-1.52561,-1.21772,1.15091,0.83786,0.676659,1.11741,0.427451,-0.907136,1.54882,-0.944597,0.454817,-0.610131,-1.48848,-0.427351,-1.0299,0.576208,-0.738648,-1.45981,0.458136,-0.912923,0.53072,-0.634979,-1.40704,1 +0.758539,1.50801,0.174844,-0.548252,-0.267399,0.394967,0.637968,-0.482074,-0.726494,0.308369,-1.30116,-0.785945,0.684355,-0.609342,-0.515128,-1.14888,-0.890044,0.666314,-0.727514,-0.526132,-0.809484,-0.771842,0.719988,-0.639977,-0.419655,0 +0.784686,0.997711,0.156264,-0.950185,-1.08244,0.231497,0.378175,0.308919,0.240932,1.08433,-1.04041,-0.176434,0.983448,-0.401273,-0.112984,-1.47147,-0.627823,0.797719,-0.635119,-0.316255,-0.957961,-0.537597,0.769203,-0.549991,-0.1423,0 +1.08708,2.09431,0.251617,-0.842947,-1.81732,-0.259043,0.936302,0.982989,0.20409,1.27654,-0.876751,-0.303831,0.866686,-0.507421,-0.276325,-0.750722,-0.63308,0.802577,-0.677059,-0.528221,-0.477756,-0.626983,0.7148,-0.619267,-0.330418,0 +-2.15634,-2.42362,-1.48165,-0.436076,0.696819,1.49286,0.69413,0.623115,0.742267,-1.4171,0.0983519,-0.89763,0.559356,-0.635379,-0.813631,-0.0540835,-0.458096,0.55196,-0.629072,-0.118992,-0.179092,-0.704885,0.610461,-0.635109,-0.311568,2 +-0.79607,-1.14295,0.149667,0.842957,0.985418,-0.159402,0.10109,-0.604944,-0.576498,-0.833452,-0.464013,-0.398975,0.42866,-0.500515,0.209518,-1.21834,-0.0825096,0.585983,-0.416246,0.607393,-0.935942,-0.137942,0.539456,-0.434647,0.521445,2 +0.118132,0.703526,-0.117692,-0.727684,0.475577,0.620246,0.42898,-0.278624,-0.65266,-0.125618,-0.962529,-0.867125,0.658837,-0.629282,-0.750992,-0.79697,-0.8778,0.595568,-0.704055,-0.671471,-0.639137,-0.815801,0.678688,-0.639667,-0.646114,2 +0.356615,1.02407,0.131825,-0.612,-0.0667573,0.804666,0.318294,-0.738968,-0.732251,0.329849,-0.300353,-0.729043,0.6135,-0.606083,-0.34731,0.108107,-0.81693,0.65311,-0.698148,-0.411608,-0.0217892,-0.748843,0.670332,-0.627553,-0.411579,2 +-0.141591,-0.188258,0.443903,-0.158652,0.745325,0.786195,-0.14354,-0.866786,-0.726584,-0.568672,-0.615229,-0.545313,0.646593,-0.563194,-0.0129135,-0.262461,-0.598127,0.771442,-0.642585,-0.0704154,-0.36835,-0.63253,0.687324,-0.6125,-0.149037,2 +0.751752,-0.5514,0.985368,1.57742,0.138682,-1.60139,-1.15273,-0.573099,-0.439055,0.656669,-0.0641286,0.310808,0.0089157,-0.062999,0.803997,-0.382313,0.274815,0.234905,-0.0862877,0.809754,-0.227549,0.351798,0.0490061,-0.0497455,0.845176,2 +1.58328,1.97035,0.386171,-1.32126,-1.28984,0.116423,0.544723,0.492359,-0.236354,1.54904,-0.460834,-0.887146,0.606533,-0.624904,-0.787244,0.0292257,-0.98051,0.594639,-0.729243,-0.917731,-0.0165418,-0.870304,0.671691,-0.644135,-0.767085,0 +1.24448,0.957561,-0.107018,-0.579736,-0.975513,0.0538137,0.949305,-0.186059,-0.331148,1.13169,-0.193785,-0.228608,0.861298,-0.49097,0.0594311,0.432188,-0.541165,0.889064,-0.644894,-0.226289,0.231327,-0.623175,0.7551,-0.61333,-0.232926,0 +-0.0944637,-0.152185,0.394247,-0.5725,-0.800348,0.47067,1.22729,0.359714,0.249868,-0.197953,-0.81653,-0.725535,0.652371,-0.629262,-0.559136,-0.124149,-0.893303,0.699327,-0.743276,-0.787904,-0.357315,-0.902418,0.701737,-0.676389,-0.880379,0 +-0.0126438,-1.00856,1.17606,1.85232,0.63234,-1.13455,-0.87813,-0.729903,-0.679927,-0.518806,-0.310188,0.145559,0.280433,-0.275225,0.723676,-0.945657,0.153965,0.498076,-0.229777,0.789863,-0.617738,0.22474,0.338344,-0.231007,0.793421,2 +-0.0944237,-0.0201701,-0.783796,-0.556817,0.0822098,-0.524543,-0.176714,1.25513,0.77548,0.375386,0.443033,-0.0929944,0.269068,-0.396626,0.399375,-0.331688,-0.0311148,0.91923,-0.216604,0.220552,-0.0234384,-0.253146,0.561835,-0.413717,0.181021,2 +0.314646,0.113265,0.201541,0.667883,0.282482,-0.438225,-0.401234,-0.374996,-0.455427,-0.0308548,-0.34623,0.2463,0.51026,-0.226739,0.812113,-1.33399,0.466132,0.886246,0.0612001,0.890664,-0.87816,0.38741,0.615019,-0.110156,0.896701,2 +1.40074,0.765655,0.0614999,0.389519,-0.165309,-1.16597,-0.753051,0.0422193,-0.211366,1.10236,0.415737,0.85764,0.0870274,0.177193,1.02155,-0.42903,1.28173,0.615728,0.629752,1.06894,0.010385,1.07446,0.192916,0.339344,1.1035,2 +1.08904,0.482584,0.951314,-0.125918,-0.828125,0.00134939,0.316525,-0.731912,-0.473768,0.912433,0.0932844,-0.44935,0.535788,-0.501834,0.127888,0.1838,-0.590651,0.546912,-0.603295,0.0540936,0.316985,-0.517277,0.566403,-0.523803,0.02019,2 +0.511879,-0.526812,1.55279,1.13037,-0.18424,-0.553999,-0.672991,-1.00026,-0.589931,0.212616,0.433148,0.0603306,0.369879,-0.294296,0.645294,0.282892,0.0323541,0.511479,-0.289818,0.610191,0.451099,0.0354527,0.349149,-0.290298,0.626173,2 +1.01834,0.657598,0.941679,-0.32734,-0.829834,0.116143,0.112385,-0.556548,-0.290068,0.866436,-0.199113,-0.40928,0.618477,-0.507192,0.175694,-0.178912,-0.563914,0.67376,-0.601456,0.0556229,-0.136503,-0.498136,0.642925,-0.542064,0.0727143,2 +1.55749,1.4246,0.648503,-1.15813,-1.76932,-0.141541,0.955362,0.40898,-0.0235384,1.8898,-0.160551,-0.544943,0.582965,-0.557757,-0.126108,0.0945538,-0.815201,0.573939,-0.696009,-0.40851,0.094244,-0.705425,0.623735,-0.602895,-0.315206,2 +0.688473,1.26531,-0.0364922,-0.518856,-0.839379,-0.784886,-0.130956,0.842078,0.317575,1.4657,0.710032,-0.166648,0.0601406,-0.303551,0.284741,-0.440494,0.0313247,1.1886,-0.243671,0.119332,-0.241492,-0.175914,0.671132,-0.32628,0.218413,2 +1.13824,0.134964,0.825156,1.19832,-0.260812,-1.6314,-1.0066,-0.348669,-0.335795,1.13478,0.216694,0.477856,-0.0232785,0.00503768,0.892303,-0.0537237,0.442743,0.158692,0.0218693,0.871793,0.0649083,0.485103,-0.0167417,0.0133236,0.89895,2 +1.95785,1.31206,-0.157783,0.034493,-0.546193,-1.44442,-0.605803,0.128587,-0.0984517,1.92175,0.432378,0.988946,-0.0844886,0.331668,1.0997,-0.589012,1.34382,0.376236,0.697449,1.17597,-0.22513,1.26706,0.0978622,0.526512,1.22326,2 +0.514768,0.114904,-0.392988,0.372727,0.904847,-0.811732,-0.69471,-0.323851,-0.271197,0.22397,0.809634,0.221202,-0.0724045,-0.113094,0.640557,-0.0537237,0.344801,0.238863,-0.0375416,0.828115,0.274056,0.363662,0.0861679,-0.0423191,0.795261,2 +0.905097,0.317105,0.247249,0.750362,-0.312567,-1.46798,-0.906186,0.205869,0.101081,1.10716,0.670142,0.67526,-0.252566,0.104289,0.905377,0.32692,0.868395,-0.18422,0.359394,0.94,0.521575,0.747224,-0.293476,0.180132,0.929875,2 +1.95477,2.09946,0.778959,-1.02144,-1.32295,-0.284341,0.727864,-0.145899,-0.298144,1.57398,-0.229118,-0.254425,0.611141,-0.369459,0.335696,-0.0598407,-0.504903,0.561465,-0.53052,0.186939,0.241542,-0.38854,0.561855,-0.422893,0.189597,2 +1.94038,1.70596,0.316755,-1.27163,-1.73959,0.0254376,0.831083,-0.222211,-0.0205399,2.19221,0.218793,-0.599077,0.547062,-0.547962,-0.18311,0.69395,-0.812402,0.540235,-0.679987,-0.412888,0.751002,-0.704725,0.598647,-0.586273,-0.351388,2 +0.645444,0.67401,-0.147508,-0.0234286,0.441044,-1.04117,-0.708983,0.311377,-0.216894,0.906876,0.479695,0.279123,-0.0716448,-0.0879468,0.710462,-0.719888,0.543234,0.974293,0.193096,0.761737,-0.242451,0.380984,0.396246,-0.018041,0.806165,2 +1.31112,1.10969,-0.105049,0.289518,0.0622395,-1.11089,-0.699368,-0.0658478,-0.443313,1.12958,0.175214,0.508991,0.377615,-0.0538935,0.955033,-1.06725,0.743976,1.02623,0.262801,1.01292,-0.474098,0.717309,0.657948,0.108337,1.03962,2 +1.12678,1.92974,-0.0995913,-0.988106,-2.13045,-0.51089,1.27132,1.11634,0.59317,1.73411,0.113355,-0.684525,0.668183,-0.618787,-0.496587,0.739418,-0.902558,0.679387,-0.746415,-0.788584,0.669282,-0.874622,0.685445,-0.670372,-0.763716,0 +0.758009,1.64331,-0.114384,0.111065,-0.300053,-1.51811,-0.626083,0.963668,0.104649,1.17628,0.89802,0.215525,-0.0955531,-0.143949,0.605524,-0.291497,0.298364,1.04051,0.00189912,0.53196,0.197573,0.167678,0.487371,-0.179162,0.609741,2 +0.953043,0.411209,-0.611201,-1.54131,-1.37254,0.537157,1.27451,0.426261,0.26546,1.75758,-0.526842,-1.04186,0.622235,-0.657298,-1.59852,-0.233736,-1.12988,0.649942,-0.767284,-1.85778,-0.115174,-1.03448,0.699678,-0.684785,-1.543,0 +-0.793621,-1.18785,0.140101,1.30115,1.36264,-0.760248,-0.859649,-0.467621,-0.372038,-0.810213,1.49198,-0.294286,0.145439,-0.412538,0.158413,1.45459,-0.00320844,-0.215614,-0.232386,0.406981,1.31803,-0.175844,0.0762727,-0.356275,0.241082,2 +-0.508061,-0.116543,-0.00525744,0.0237882,-0.047067,0.501624,0.508991,-0.527222,0.107597,-0.557907,1.59906,-0.754271,0.402823,-0.579496,-0.556887,2.15111,-0.811812,0.376855,-0.661266,-0.582445,1.75945,-0.771482,0.478866,-0.599456,-0.642346,2 +1.00953,0.304611,0.737539,-0.233416,-0.739458,-0.385101,0.441034,-0.00114949,-0.496787,1.15434,1.46279,-0.684245,0.356146,-0.55161,-0.475307,1.98952,-0.758988,0.328769,-0.642685,-0.501994,1.65059,-0.683316,0.424082,-0.573319,-0.481914,2 +1.08117,0.719018,1.10539,0.480435,-1.32913,-1.01022,0.0665874,-0.104209,-0.185289,1.39857,1.21531,-0.507811,0.202991,-0.462084,-0.213825,1.5481,-0.613919,0.18448,-0.565953,-0.271077,1.33005,-0.501045,0.252656,-0.474288,-0.196654,2 +-1.01223,-0.132295,-1.84496,-1.50343,-0.8984,0.350219,0.949065,1.72354,2.20112,0.299064,2.30685,-1.05296,0.565933,-0.657998,-1.77002,1.49082,-1.00335,0.596688,-0.749523,-0.990565,1.67413,-0.999951,0.636998,-0.676319,-1.4114,2 +-1.5998,-1.22992,-1.52559,-1.3162,-0.639657,1.87571,2.04051,0.810723,0.65379,-0.418255,0.391978,-1.12002,0.584404,-0.665264,-2.29979,1.11239,-1.16081,0.617088,-0.770573,-2.36628,0.830174,-1.10293,0.667024,-0.691361,-2.28598,0 +-2.08098,-1.82985,-1.89809,-1.13115,0.214125,1.37536,1.28496,1.19642,1.58021,-1.3073,1.61616,-1.0673,0.577117,-0.662206,-1.6934,1.52063,-1.01655,0.617338,-0.751462,-1.0629,1.36794,-1.02891,0.648732,-0.684015,-1.52142,2 +-2.14411,-3.05045,-0.453538,1.73355,3.33429,0.622585,-0.827525,-1.74193,-1.11739,-2.89855,0.736609,-0.665514,0.457836,-0.584654,-0.235105,0.471479,-0.399794,0.358824,-0.533009,0.260842,0.498726,-0.514158,0.460525,-0.559686,-0.00444794,2 +-3.05892,-4.73035,-1.48805,1.61791,5.13878,1.19898,-0.700167,-2.32141,-1.15374,-4.19306,-0.175354,-0.818899,0.539146,-0.631641,-0.534558,-0.0880369,-0.57119,0.537737,-0.649342,0.0546933,-0.258263,-0.734011,0.590071,-0.644214,-0.377775,2 +-1.99202,-2.24144,-0.557967,0.866265,2.60212,1.0465,-0.0932644,-1.17682,-0.872353,-2.62412,0.20461,-0.553589,0.436037,-0.536977,-0.0387508,-0.465982,-0.0189008,0.0905955,-0.148427,0.515938,-0.335156,-0.0236584,-0.311258,-0.00450766,0.307339,2 +-1.78709,-2.63268,-0.493838,1.0574,2.13915,0.688053,0.42884,-0.945157,-0.635279,-2.52924,0.43003,-0.83791,0.50999,-0.627912,-0.67319,0.908395,-0.802557,0.472089,-0.697429,-0.424102,0.46911,-0.81799,0.555608,-0.646114,-0.699438,2 +-2.08016,-1.50547,-2.3161,-1.54678,-1.06605,1.25892,1.45822,1.7896,3.45814,-1.16853,2.10525,-1.05022,0.554459,-0.656978,-1.74315,2.17791,-0.975222,0.568092,-0.730642,-1.09604,1.88687,-1.01211,0.608772,-0.671171,-1.63026,2 +-0.546133,-1.17748,0.500595,1.41354,0.523324,-0.417745,-0.438375,-0.650721,-0.356925,-0.737819,1.34829,-0.344301,0.0480066,-0.377775,-0.000369614,1.49886,-0.208798,-0.303651,-0.282552,0.150177,1.23273,-0.254375,-0.00739629,-0.32668,0.0767923,2 +-0.132995,-0.455427,0.798179,1.1379,0.201072,-0.573919,-0.497516,-0.609052,-0.391248,-0.235295,1.25315,-0.301372,-0.0483063,-0.307599,0.00399825,1.50569,-0.255575,-0.380894,-0.253506,0.0253277,1.18772,-0.232136,-0.0935341,-0.269498,0.0559225,2 +-1.27365,-1.45712,0.180752,0.814161,0.996472,1.00507,0.38707,-1.19825,-0.806175,-1.62592,1.29913,-0.849034,0.509501,-0.626633,-0.69308,1.88004,-0.802227,0.476117,-0.696369,-0.384332,1.5385,-0.805346,0.559066,-0.637238,-0.608272,2 +0.517537,1.04426,-0.350079,-1.45535,-1.42325,0.0196804,1.40253,1.31562,0.312527,1.49145,1.18294,-1.10975,0.589192,-0.664964,-2.12793,1.80771,-1.16183,0.626183,-0.771342,-2.24899,1.47438,-1.08813,0.67377,-0.691201,-2.01186,0 +-1.54163,-0.533679,-1.48989,-1.25812,-0.737789,1.32134,1.89038,1.33718,1.19847,-0.733841,1.04765,-1.11687,0.587093,-0.665694,-2.19133,1.7866,-1.16505,0.623585,-0.771762,-2.26492,1.37236,-1.10694,0.672081,-0.692661,-2.22902,0 +0.263231,-0.0371917,-0.154414,0.467671,0.741067,-1.01475,-1.00822,-0.0414398,-0.252776,0.635779,1.46837,-0.283251,0.0759229,-0.30705,0.193635,0.996862,0.133904,-0.320053,0.0465772,0.535958,1.12829,-0.105658,-0.0292156,-0.188198,0.374756,2 +-0.139352,-0.830383,0.573399,1.2934,-0.186909,-0.788444,-0.482674,-0.36689,-0.0212095,0.0824497,1.16912,-0.215984,-0.0906855,-0.255675,0.138302,1.27381,-0.197883,-0.32603,-0.239423,0.149587,1.1323,-0.155144,-0.201441,-0.117113,0.149647,2 +-0.958281,0.289778,-2.54219,-1.69588,-0.136613,0.0227689,0.195634,2.48416,1.97368,0.504203,2.18534,-0.736849,0.209467,-0.476996,-1.2242,1.52633,-0.177623,0.0484262,-0.315346,-0.185199,1.78223,-0.437926,0.0970026,-0.402943,-0.530031,1 +1.73705,1.02845,0.606933,0.587852,-0.977721,-1.70996,-1.29463,0.534298,0.458695,1.51522,0.73625,2.58198,-4.11199,3.71982,1.18002,0.40796,2.52954,-3.64613,3.59267,1.21826,0.49051,2.48666,-3.82912,3.54531,1.21549,2 +1.33769,1.33875,-0.412868,0.00253865,-1.3167,-1.31397,-0.647313,1.41315,1.02591,1.33091,0.914202,2.70124,-5.69701,4.93383,0.779279,0.938381,2.84546,-6.40546,5.30237,0.740318,0.679977,2.74865,-5.8024,5.00679,0.869364,2 +1.39925,1.05314,-0.16348,0.0676567,-1.33313,-1.4851,-0.833882,1.12934,1.29848,1.41701,0.740857,2.54323,-5.06203,4.40724,0.887026,0.656829,2.51553,-4.77718,4.0993,0.847485,0.459585,2.40061,-4.57105,3.96349,0.981859,2 +-1.24384,-0.314356,-2.29081,-1.63548,-1.43902,0.343302,1.30801,2.59183,2.93405,0.104339,2.16434,-0.845196,0.278214,-0.513518,-1.70044,2.39061,-0.507851,0.28469,-0.53044,-0.977611,2.1475,-0.792392,0.32763,-0.501374,-1.04628,1 +-0.549861,-1.00601,0.691871,1.1269,0.564154,-0.324321,-0.659847,-0.16393,-0.0533938,-1.13259,-0.24474,1.09561,-1.75873,1.06203,0.783617,-0.0606803,1.37073,-2.41266,1.59048,0.868865,-0.227339,1.08703,-1.82787,1.11984,0.79629,2 +-1.28875,-0.322112,-2.19184,-1.63968,-0.14241,0.32768,0.196034,2.26221,2.68301,-0.453778,1.21039,-0.81608,0.353687,-0.559486,-1.22528,1.82396,-0.386691,-0.10242,-0.451289,-0.889514,1.32473,-0.657738,0.268099,-0.517087,-0.848595,1 +-0.734141,-0.181251,-0.723386,-0.686084,-0.114804,0.963548,1.2623,-0.0958631,0.0136534,-0.246769,-0.833892,-0.915931,0.63268,-0.648892,-1.05292,-0.558776,-1.03896,0.629002,-0.760438,-1.1722,-0.360833,-0.991815,0.668953,-0.683525,-1.22242,0 +1.70912,1.72508,0.726275,-0.829444,-0.986267,-0.545583,0.231277,0.0531239,-0.261532,1.63116,0.0185709,-0.289048,0.814021,-0.446251,0.190027,-0.0596008,-0.321663,1.10947,-0.456766,0.0895363,0.28551,-0.386741,0.793252,-0.507122,0.146548,2 +2.00497,2.16819,1.23407,-0.53064,-1.51926,-1.12838,-0.0428191,0.304911,-0.300293,2.24272,0.234105,-0.321472,0.378825,-0.302032,0.167478,0.276894,-0.580086,0.437506,-0.482684,-0.0546931,0.574379,-0.351618,0.274686,-0.254705,0.111715,2 +-1.65255,-0.852682,-2.5333,-1.70087,-1.85164,0.725975,1.4271,2.41694,4.05565,-0.42967,1.16947,-0.862258,0.38899,-0.566493,-1.0742,1.77765,-0.238603,-0.212306,-0.40869,-0.759568,1.22638,-0.7143,0.371828,-0.537607,-0.73512,1 +-1.23529,-0.215005,-2.09733,-1.53829,-0.9396,0.455007,1.08467,2.53412,2.0978,0.0829195,1.87102,-0.8375,0.350309,-0.566503,-1.35134,1.79025,-0.623145,0.239683,-0.546932,-0.55206,1.58965,-0.779079,0.343552,-0.542264,-1.04736,1 +0.678788,-0.248568,0.872103,1.38097,0.167498,-1.00611,-1.03252,-0.447981,-0.394737,-0.0837689,0.0885767,1.71674,-1.49696,1.3412,1.28321,-0.399105,1.36699,-0.800218,1.0545,1.20373,-0.197933,1.46308,-1.10477,1.0687,1.2413,2 +-1.28894,-2.43396,0.668443,1.68017,1.83712,1.1893,-0.201142,-2.08069,-1.37182,-2.60329,-0.563254,-0.304941,0.50979,-0.479005,0.351798,-1.0922,-0.284681,0.707164,-0.515867,0.447011,-0.680617,-0.318784,0.577078,-0.506882,0.337545,2 +-2.01565,-1.54501,-2.62727,-1.79182,-2.06802,1.14441,2.13336,2.48086,4.26677,-0.876181,2.19061,-1.00847,0.443513,-0.610341,-2.39784,1.63454,-0.932453,0.559266,-0.695949,-1.7124,1.79161,-0.968286,0.525853,-0.633969,-2.13488,1 +-2.23228,-1.48529,-2.79455,-1.65547,-1.42534,1.58904,1.60426,1.83765,4.057,-1.38789,1.78878,-0.907606,0.437376,-0.61258,-1.38195,0.770853,-0.926536,0.621146,-0.718858,-0.991505,1.24308,-0.963838,0.583764,-0.662166,-1.43326,1 +1.02322,0.634929,0.126788,1.72823,0.270388,-1.88161,-1.76976,0.0613399,-0.202201,0.42847,-0.104019,2.02014,-1.51123,1.56132,1.3882,-0.423273,1.90833,-1.44506,1.58696,1.26569,-0.155834,1.9217,-1.35155,1.35413,1.30019,2 +1.05639,-0.0619396,0.716289,1.53676,0.342872,-1.40303,-1.07982,-0.742736,-0.560505,0.222271,-0.724046,1.86729,-0.75481,1.28472,1.46112,-1.16388,1.6204,-0.473488,1.21604,1.33691,-0.922069,1.76149,-0.661706,1.14499,1.41731,2 +0.832303,0.944268,0.350508,-0.311737,-0.631231,0.435367,0.346111,-0.217693,-0.477896,0.313577,-0.638737,-0.0768623,0.488901,-0.282911,0.434827,-0.597228,-0.46923,0.519695,-0.467511,0.151156,-0.235485,-0.338684,0.493768,-0.368469,0.200732,2 +0.0705455,1.19191,-0.0269768,-0.993164,0.280813,1.99948,0.213346,-1.55266,-0.969995,-0.202641,-1.23152,-0.341283,0.739258,-0.416256,0.134155,-1.12039,-0.454108,0.665374,-0.482034,0.0848685,-0.813072,-0.374327,0.700897,-0.435727,0.103049,0 +-1.08914,-0.438645,0.246499,0.443423,1.02575,0.22533,0.00905554,-0.794441,-0.768943,-0.644055,-0.0424192,-0.0709951,0.176344,-0.341653,0.463953,-0.0507251,0.573829,-1.06576,0.467191,0.7359,-0.0554728,0.353127,-0.519006,0.108957,0.615129,2 +-1.79003,-0.906076,-2.554,-1.82233,-1.61105,1.2096,1.39113,2.14575,4.14124,-1.039,1.35843,-0.659997,0.145009,-0.475727,-1.26732,0.0611401,-0.824856,0.558227,-0.631851,-1.5165,0.600746,-0.782087,0.401194,-0.558476,-1.59463,1 +-1.87684,-1.04974,-2.52938,-1.68187,-1.37505,1.11014,1.34414,2.123,3.66012,-0.800618,1.74347,-0.166878,-0.662655,-0.00811588,-1.06817,1.57786,-0.32594,-0.172246,-0.307559,-0.110316,1.5706,-0.539756,0.0693261,-0.425861,-0.853982,1 +-2.16852,-1.25875,-2.99402,-1.99935,-2.37517,1.22175,2.15466,2.80313,4.97139,-1.05463,2.12998,-0.801867,0.129097,-0.452638,-2.18272,2.11835,-0.891733,0.168537,-0.575918,-1.86505,2.05742,-0.897141,0.375436,-0.566433,-2.223,1 +-0.747394,-0.843727,0.0561025,0.0679166,1.44229,1.74171,0.363262,-1.88082,-1.26498,-1.59039,-0.0679667,-0.544353,0.425752,-0.484373,-0.0450178,0.0331938,-0.544353,0.303881,-0.53022,0.0654481,0.346111,-0.522774,0.406931,-0.485892,-0.0714651,2 +-0.0618197,0.363702,-0.087877,-1.42282,-0.689952,1.76681,1.18198,-1.00043,-0.459515,0.840269,-0.161171,-0.8784,0.664844,-0.614179,-0.934812,0.0873573,-1.00525,0.678038,-0.73511,-1.25973,0.484433,-0.880629,0.73537,-0.643005,-0.968766,0 +-0.0493658,-0.731002,1.02268,1.2224,0.380904,-0.442433,-0.709942,-0.524503,-0.515977,-0.586173,0.229907,0.941429,-1.25763,0.971934,0.985878,0.484373,0.473298,-1.01236,0.539226,0.772742,0.557877,0.772492,-1.19252,0.855171,0.855861,2 +0.166608,-0.447821,1.18067,1.05907,0.284521,-0.146638,-0.730452,-1.05145,-0.594409,-0.47023,0.166718,1.01328,-1.29816,1.05726,1.04415,0.460445,0.644245,-1.24646,0.73564,0.853053,0.485752,0.884597,-1.34264,0.971345,0.924847,2 +-1.21536,-1.08371,-1.08185,-0.281702,2.7478,0.985158,-0.444672,-0.650472,-0.779888,-1.71477,0.750593,-0.242141,-0.487131,0.160911,-0.149876,0.269758,0.137832,-0.275595,-0.125828,0.478246,0.316085,0.0569621,-0.34662,0.0482965,0.423862,2 +-0.536477,-1.172,-0.0723746,-0.304201,-0.214305,1.01531,0.670991,-0.12332,0.1231,-0.456646,0.0459675,-0.687703,0.588202,-0.601805,-0.439495,0.503634,-0.882558,0.59297,-0.731972,-0.635609,0.373587,-0.851343,0.640057,-0.65348,-0.682476,2 +-0.965867,-0.917721,-0.742986,-0.431069,1.34162,1.55378,0.741987,-1.05294,-0.578856,-1.45485,-0.966057,-0.835091,0.614459,-0.595268,-0.690152,-1.14594,-0.801548,0.558356,-0.684655,-0.42874,-0.781257,-0.725355,0.67392,-0.603634,-0.405472,0 +-0.0621395,-0.966497,0.800318,1.21575,1.00582,-0.149257,-0.77669,-0.903088,-0.655629,-1.18948,0.113454,0.942839,-1.69834,1.29863,0.884857,0.325781,0.616618,-1.27953,0.664865,0.785106,0.0422694,0.807365,-1.47421,0.969515,0.822457,2 +-1.1901,-1.89605,0.350019,0.376026,0.59289,1.28754,0.684555,-1.01732,-0.256854,-1.70166,0.0538537,-0.594889,0.421694,-0.521944,-0.18388,0.380964,-0.75466,0.46986,-0.661536,-0.26623,0.229948,-0.703276,0.461114,-0.547322,-0.376116,2 +0.152615,0.322602,-0.771992,-0.0203901,0.525203,-0.838519,-0.835751,0.773331,0.637488,0.10136,0.730313,0.794011,-1.46141,0.963339,0.697789,0.69377,1.16112,-1.81819,1.2458,0.854802,0.46973,0.970475,-1.62458,1.11605,0.808904,2 +-0.351458,-0.501784,-0.311158,0.71502,1.94393,-0.756649,-1.3658,0.0935441,-0.445022,-0.840708,0.623495,0.389669,-0.713261,0.438675,0.716639,0.212176,0.634779,-0.454448,0.409689,0.957551,0.299733,0.498306,-0.586533,0.40841,0.818599,2 +-1.0135,-1.11523,-0.401134,0.916651,1.98463,-0.298554,-0.893073,-0.0407501,-0.369849,-1.58899,0.111106,0.186239,-0.590361,0.226809,0.5321,-0.150476,0.297934,-0.342113,0.0542935,0.766325,-0.24535,0.220852,-0.404622,0.0909256,0.619167,2 +0.539486,0.760408,-0.310858,0.339434,1.33399,-1.33215,-1.62176,0.310088,-0.18278,0.257624,0.418455,0.704755,-1.16482,0.702056,0.789704,0.124899,0.970745,-1.1495,0.870604,0.997922,0.0428891,0.804756,-0.98004,0.69449,0.936381,2 +0.28694,-0.332117,1.00522,0.458075,0.200242,-0.392168,-0.488621,-0.325011,-0.434317,0.0310049,-0.38843,-0.120811,0.380314,-0.240312,0.380484,-0.044908,-0.399015,0.389749,-0.453628,0.155964,-0.10234,-0.237624,0.335156,-0.318874,0.275955,2 +0.253106,0.375946,-0.513549,-1.41763,-0.723066,0.884337,1.435,0.418125,-0.111006,0.746155,-0.260363,-1.0098,0.602275,-0.649332,-1.40549,0.246729,-1.05398,0.614429,-0.754461,-1.31337,0.293307,-0.983798,0.677089,-0.67414,-1.28517,0 +-0.419085,-0.30628,-0.517667,0.753751,2.1022,-0.714,-1.30334,-0.0582315,-0.452308,-1.04714,0.392598,0.403513,-0.59147,0.340034,0.746815,0.0791313,0.666484,-0.587143,0.424352,0.947306,0.192676,0.493678,-0.575138,0.361473,0.814201,2 +0.675379,-0.207278,0.874392,0.99926,0.241982,-0.866106,-0.977381,-0.360004,-0.262162,-0.0907955,-0.00882566,1.73712,-2.79258,2.4296,1.16307,-0.00819595,1.54616,-2.42726,1.91115,1.11729,-0.127458,1.79831,-2.87983,2.44408,1.19031,2 +0.447751,0.251077,0.558317,0.578257,0.619667,-1.09098,-1.00069,-0.391778,-0.314666,0.42894,-0.328009,0.32615,-0.831693,0.421584,0.557037,-0.241892,0.589381,-1.11719,0.625044,0.811243,-0.351308,0.520675,-0.872103,0.484693,0.757379,2 +1.37929,1.03417,0.159702,0.409999,-0.235575,-1.27151,-1.20433,0.240782,0.0667174,1.07783,-0.125838,1.53026,-2.05571,1.69592,1.1563,-0.0078961,1.8355,-2.68742,2.29312,1.17491,-0.222161,1.74756,-2.41982,2.06464,1.22564,2 +0.508141,0.0904358,0.743296,0.59222,0.0111445,-0.703206,-0.787524,0.08162,-0.553979,0.542015,-0.153845,-0.063079,-0.00562718,-0.150576,0.378815,0.127837,-0.3271,-0.0575619,-0.319813,0.087967,0.161751,-0.085778,-0.075373,-0.152915,0.301812,2 +-0.8373,0.215774,-1.41696,-0.381403,1.16008,0.836271,-0.567552,0.720887,0.302112,-1.42851,-0.344601,-0.558277,0.743696,-0.57109,-0.314616,-0.610781,-0.176923,-0.04096,-0.442533,-0.28655,-0.5111,-0.230927,0.248109,-0.4699,-0.272477,2 +0.258693,0.821158,-0.446392,-0.863677,-0.956112,0.721857,1.08475,0.0581415,0.0806206,0.573379,-0.749803,-0.736309,0.608462,-0.604374,-0.545163,-0.0403502,-0.888295,0.597527,-0.721897,-0.675469,-0.1842,-0.834012,0.644555,-0.643345,-0.661326,2 +1.55451,0.98093,-0.151126,0.483183,-0.0190907,-1.55075,-1.52742,0.319014,0.0798809,1.33747,0.0180112,1.62557,-2.35589,1.91532,1.11391,0.178403,1.92826,-3.02835,2.49072,1.11156,-0.0780417,1.8824,-2.79402,2.35465,1.19216,2 +0.750553,0.177823,0.503943,0.799508,-0.0535738,-1.04164,-0.958111,-0.257224,0.00934549,0.499636,-0.641706,1.3142,-1.65561,1.30314,1.1094,-0.513908,1.23714,-1.7951,1.35342,1.06604,-0.711262,1.33329,-1.69643,1.36273,1.13707,2 +-0.0481564,-0.18389,-0.107787,-0.917321,-0.422963,1.15059,1.18413,0.170936,-0.454477,0.0784717,-1.30751,-0.844586,0.482074,-0.593939,-0.97945,-0.811603,-0.975932,0.55082,-0.727184,-1.19918,-0.936761,-0.846276,0.560426,-0.623744,-0.968946,0 +1.15066,0.990165,-0.0820898,0.441534,0.521035,-1.74764,-1.79205,0.512639,-0.052894,1.21386,0.577707,1.16968,-1.60099,1.21636,1.01411,0.458586,1.47681,-1.83798,1.52425,1.10429,0.386841,1.33861,-1.57295,1.35741,1.12123,2 +1.08007,0.587232,-0.421814,0.415996,-0.0846885,-1.45003,-1.26954,0.983428,0.321613,1.0364,0.521125,1.48754,-3.04132,2.42015,0.885177,0.340114,1.71704,-2.3948,2.11273,1.06749,0.203301,1.74444,-2.7925,2.44463,1.12033,2 +1.42035,1.95229,-0.299713,0.0781116,0.0687064,-1.64179,-1.62966,0.953743,0.174175,1.28298,0.254336,1.53748,-1.92951,1.55625,1.12347,0.00193909,2.35795,-2.72052,2.51673,1.18626,-0.128567,2.18528,-2.30162,2.08295,1.2826,2 +0.0014993,0.294096,-0.846436,-1.10896,-1.12068,-0.0535837,1.40293,1.44265,0.618787,1.02224,-0.298974,-0.598557,0.604744,-0.53119,-0.802447,0.3274,-0.839029,0.507731,-0.623735,-1.07858,0.303452,-0.834751,0.507092,-0.559046,-0.893753,0 +-1.12883,-0.351098,-1.07566,-0.991744,-0.321453,1.12487,1.24356,0.767264,0.414737,-0.243551,0.200002,-0.849984,0.670472,-0.635769,-1.17072,0.595219,-1.01035,0.668153,-0.756739,-1.38773,0.670112,-0.973184,0.67401,-0.680497,-1.24154,0 +-1.40493,-0.973783,-1.84159,-1.214,-0.845096,1.81802,2.09156,1.59306,0.442174,-0.427501,-0.26533,-1.10992,0.606903,-0.662985,-2.3185,0.289738,-1.17468,0.642175,-0.770723,-2.66978,0.446611,-1.10402,0.691691,-0.690272,-2.39932,0 +-0.00517744,0.00577722,0.0173015,0.889014,1.22806,-0.719937,-0.145969,-0.709992,-0.73476,-0.742147,-0.945117,-0.280383,0.582795,-0.502134,0.360594,-1.58166,-0.0928845,0.792732,-0.459405,0.513859,-1.43602,-0.152905,0.699578,-0.484663,0.463363,2 +0.391678,-0.00550725,0.532699,1.1538,0.398085,-1.17332,-0.769513,-0.237664,-0.380604,-0.00200895,-0.104529,0.166249,0.186089,-0.278813,0.677409,-0.154854,0.414457,0.127477,-0.106628,0.810094,-0.251427,0.260662,0.188838,-0.233446,0.740008,2 +-0.799798,-1.42758,0.841688,1.57751,0.750033,-0.0519045,-0.162221,-0.929155,-0.526372,-1.61562,-0.636428,-0.333567,0.372498,-0.494418,0.250598,-0.522004,-0.24464,0.358244,-0.498736,0.399245,-0.665224,-0.292127,0.425792,-0.492409,0.293466,2 +1.48126,0.637878,-0.193625,0.507991,-0.103869,-1.19804,-0.416146,-0.203101,-0.395386,1.1493,-0.0176813,0.298154,0.425302,-0.219872,0.810443,-1.05154,0.120811,0.717069,-0.277344,0.67521,-0.697878,0.320013,0.671971,-0.173405,0.840818,2 +-0.119841,0.515967,-0.665874,-1.26767,-1.35932,0.466512,1.28121,1.43793,0.295425,1.22556,-0.79635,-1.0673,0.600636,-0.659397,-1.80781,0.0239483,-1.12929,0.622555,-0.765485,-1.93188,-0.205529,-1.05638,0.680657,-0.685614,-1.79998,0 +0.838549,0.168817,0.26547,1.01807,0.188518,-1.1476,-0.55183,-0.311278,-0.544273,0.435317,-0.106938,0.221212,0.381573,-0.250797,0.770713,-0.761697,0.433578,0.77595,-0.0738538,0.852293,-0.532559,0.375656,0.509141,-0.157983,0.872423,2 +0.263911,-0.138182,-0.220392,0.384551,-0.186739,-0.622775,-0.045028,0.0493958,0.253886,0.32774,0.468641,-0.128297,0.187198,-0.342892,0.393108,0.0550831,0.118322,0.0994912,-0.252976,0.59298,0.069676,0.0610801,0.217624,-0.275725,0.606873,2 +0.927876,0.872793,-0.026677,-0.601845,-1.65622,-0.636528,0.804926,1.32019,0.34704,1.59856,-0.103509,-0.670192,0.778819,-0.589041,-0.589221,0.615499,-0.880309,0.797969,-0.718858,-0.894102,0.337835,-0.887995,0.729533,-0.660856,-0.909425,0 +1.66417,1.89006,-0.0743636,-1.22432,-2.11981,-0.171466,1.11035,0.354396,0.596868,1.9677,0.211217,-0.644065,0.622605,-0.597527,-0.364182,0.777389,-0.884787,0.63262,-0.732611,-0.641896,0.621176,-0.787025,0.681416,-0.637118,-0.519126,0 +-0.984778,-0.14384,-1.36667,-0.789044,0.182761,-0.219812,0.51146,1.66641,0.397106,0.544703,0.18454,-0.704445,0.891114,-0.562475,-1.04286,0.741397,-0.901589,0.867855,-0.698208,-1.4545,0.619167,-0.8571,0.855621,-0.63282,-1.28405,0 +-0.85837,-0.643595,-1.1447,-1.14942,1.93721,-0.137613,-0.662046,1.37435,-0.211047,0.161351,0.805896,-0.974743,0.602065,-0.656429,-1.09265,0.600866,-0.932653,0.584614,-0.749503,-0.859339,0.503414,-0.947056,0.677179,-0.678488,-0.967366,2 +1.63206,0.721957,-0.0814002,0.682585,0.00413797,-1.71057,-0.853742,-0.190067,-0.323092,1.48689,0.0012594,0.616168,0.187498,0.0205401,1.00252,-0.691941,0.57254,0.562724,0.00455782,0.952754,-0.477476,0.713931,0.359814,0.0687265,1.0636,2 +1.52638,1.37488,-0.433078,-0.00834602,-0.416746,-1.20637,-0.380894,0.32744,0.0280263,1.3785,0.216544,0.480355,0.350718,-0.172535,0.828215,-0.523684,0.762976,0.892063,0.0990416,0.825216,-0.373327,0.577327,0.492119,-0.105548,0.891453,2 +0.915552,0.24546,0.553359,0.970504,-0.00845586,-1.18772,-0.846016,-0.301992,-0.34687,0.602295,0.425572,0.36851,0.169737,-0.149067,0.831053,0.105229,0.433878,0.340883,-0.0739937,0.842218,0.20351,0.414537,0.219233,-0.12286,0.863577,2 +-1.05376,0.0804706,-0.672541,-0.71411,-0.57164,0.12232,0.710242,1.11964,0.741207,0.407461,1.21832,-0.720617,0.420844,-0.578836,-0.733761,0.103789,-0.881838,0.65293,-0.676129,-0.751702,0.284471,-0.843317,0.617688,-0.600716,-0.962479,2 +0.26521,-0.701446,1.91884,1.68021,-0.488271,-0.801068,-0.354187,-0.955762,-0.606603,-0.103669,0.287359,0.0675371,0.24491,-0.24457,0.642726,0.1847,-0.0477066,0.349399,-0.315795,0.583335,0.334656,0.0900759,0.253446,-0.234485,0.640396,2 +0.0958931,0.185559,-0.544104,-1.04736,-1.2463,0.590141,1.01949,1.06371,0.524283,0.736739,0.272457,-0.917051,0.630671,-0.645914,-0.993483,0.897531,-1.05958,0.6525,-0.761527,-1.28124,0.692401,-1.00158,0.681376,-0.681656,-1.30757,0 +0.595079,0.400904,-0.315596,0.432618,-0.119721,-1.1266,-0.634959,0.517856,0.333487,0.623195,0.514218,0.272017,0.0366221,-0.135144,0.734591,0.313906,0.440814,-0.0867576,-0.0390708,0.760878,0.405402,0.32738,0.0208699,-0.119012,0.748573,2 +0.045038,-0.893802,1.62921,1.32424,-0.111465,-0.403242,-0.0387411,-1.00015,-0.661046,-0.475967,0.206659,-0.236774,0.372837,-0.422603,0.391618,0.372927,-0.24549,0.38815,-0.463793,0.436686,0.53048,-0.207119,0.349839,-0.410069,0.395856,2 +1.39462,1.20854,0.49024,-0.771052,-1.47434,-0.0299253,0.478905,0.0875471,-0.0985117,1.64743,0.202251,-0.546732,0.577467,-0.542864,-0.0821796,0.752072,-0.747874,0.563844,-0.6738,-0.255315,0.729053,-0.670222,0.615579,-0.586743,-0.26547,2 +1.392,0.727504,-0.0168917,0.727703,0.138052,-1.69968,-1.25914,0.0467171,-0.207668,1.30955,0.492549,0.486242,0.18464,-0.112685,0.881878,-0.028536,0.802247,0.36715,0.18463,0.993464,0.199372,0.732312,0.194485,0.0593911,0.995183,2 +1.77946,1.46173,-0.289578,0.422083,-0.283121,-1.59592,-1.01754,0.0804905,-0.228078,1.76963,0.362383,0.623745,0.392098,-0.00223876,0.992464,-0.464483,0.668493,0.79695,0.137983,0.973783,-0.0988815,0.741857,0.518476,0.088067,1.03257,2 +1.09649,0.990165,-0.689443,-0.00461785,-0.544404,-1.38714,-0.737809,0.767504,0.642006,1.56736,0.711312,0.402843,0.0523144,-0.116573,0.771163,0.373947,0.787155,-0.0886467,0.190307,0.842897,0.442473,0.593929,-0.0339333,0.00545747,0.85833,2 +0.663745,-0.332787,0.466302,1.10449,0.658748,-1.5378,-0.996802,-0.479785,-0.398205,0.535518,0.198003,0.324931,0.12351,-0.165189,0.788664,-0.280163,0.439985,0.298794,-0.0783016,0.875661,-0.100611,0.445152,0.2654,-0.114674,0.893692,2 +0.103849,-0.683665,0.304391,1.54002,0.937961,-1.27001,-0.759368,-0.69517,-0.630531,-0.166179,-0.205309,0.0283762,0.345191,-0.359774,0.611561,-0.67478,0.217394,0.578936,-0.243511,0.773671,-0.532699,0.16418,0.45034,-0.308769,0.729413,2 +-0.095903,0.358534,-0.786675,-0.538956,-0.309688,0.393327,-0.202331,0.220112,0.260443,0.781508,-1.12675,-0.893293,0.580146,-0.624804,-0.9386,-0.525783,-0.973403,0.574898,-0.726554,-1.10807,-0.639967,-0.881708,0.624874,-0.642505,-0.997762,2 +0.567472,1.13347,-0.235245,-0.997012,-1.57418,0.110816,1.53838,0.840518,0.20359,1.13403,-0.30614,-0.610371,0.831343,-0.580496,-0.641626,0.534338,-0.835721,0.852372,-0.709503,-1.06477,0.34811,-0.880459,0.759568,-0.665764,-0.969655,0 +0.156853,0.682366,-1.0087,-1.12188,-1.86299,-0.193585,1.24164,2.12889,1.01945,1.45195,-0.460375,-0.777969,0.695919,-0.631721,-1.11605,0.336755,-0.975402,0.702816,-0.75525,-1.50706,0.205649,-0.986307,0.695699,-0.684005,-1.39941,0 +1.0627,2.10373,-0.460814,-1.2907,-1.564,-0.145609,0.934303,0.990225,0.059311,1.9619,0.0172916,-0.437616,0.85813,-0.524553,-0.186449,0.720887,-0.752492,0.828564,-0.69419,-0.620856,0.662656,-0.787804,0.734411,-0.651661,-0.555618,0 +1.4937,1.75463,0.0515048,-1.44421,-2.42467,0.0353028,1.27268,1.15177,0.145519,2.3929,-0.389559,-1.06257,0.616908,-0.659167,-1.75762,0.303531,-1.13957,0.651151,-0.768484,-2.0003,0.317195,-1.063,0.69437,-0.688133,-1.79105,0 +0.779888,0.596088,-0.0525643,0.71369,0.623715,-1.44975,-1.50757,0.069426,-0.20437,0.788654,-0.249918,0.579806,-0.0724145,0.0761429,0.928736,-0.42969,1.1391,-0.270088,0.586173,1.06328,-0.439035,0.804856,-0.130876,0.175664,1.00605,2 +0.251357,0.880339,-0.227759,-1.19694,-0.491809,1.04809,0.40741,-0.431069,-0.234205,0.938721,-0.603555,-0.85716,0.703066,-0.615888,-0.794641,-0.0710052,-0.968946,0.713231,-0.727554,-0.989635,0.128757,-0.881269,0.759258,-0.649482,-0.888545,2 +0.0242582,-1.27863,1.33121,1.76594,-0.0665074,-0.743136,-0.537727,-0.890424,-0.650591,-0.107357,-0.324781,-0.158442,0.231177,-0.32627,0.402533,-0.166488,-0.289928,0.238313,-0.404202,0.283661,-0.0156423,-0.123599,0.203251,-0.304021,0.390918,2 +0.332987,-0.81594,1.41219,1.08859,0.0561525,-0.221172,-0.539506,-1.06871,-0.647433,-0.232136,-0.267939,-0.349479,0.420234,-0.429699,0.210367,-0.110046,-0.441784,0.426291,-0.503314,0.135644,0.255345,-0.311857,0.394037,-0.418315,0.214325,2 +0.431629,-0.146648,-0.293276,0.602635,0.466442,-0.833142,-1.1175,0.134654,0.0725745,0.296075,0.590261,0.594149,-0.543894,0.281992,0.822528,0.232866,1.05189,-0.440214,0.611601,0.961969,0.272807,0.794111,-0.474208,0.343122,0.944737,2 +-0.136513,-0.961829,1.22813,0.731731,-0.0901559,0.110116,0.302932,-1.15413,-0.590411,-0.257594,0.0116043,-0.468261,0.418385,-0.484922,0.0613202,0.317924,-0.621816,0.421473,-0.598767,-0.093834,0.391119,-0.525913,0.4499,-0.517786,-0.0701158,2 +0.891264,0.486542,0.436197,0.885156,0.0658678,-1.27735,-0.928895,0.0457675,-0.247349,0.473418,-0.0738638,0.652561,-0.18403,0.153025,0.953583,-0.364132,0.884247,-0.252906,0.36707,0.992734,-0.445452,0.771922,-0.268089,0.209288,0.990475,2 +0.964468,0.474798,-0.12177,0.639607,0.145899,-1.15596,-1.17277,0.0868774,0.0965528,0.627813,0.51027,0.764006,-0.698258,0.436067,0.931354,0.353917,1.07604,-1.25934,0.836531,0.974463,0.211167,0.895622,-0.847345,0.529551,0.958511,2 +0.478386,0.478236,0.411299,-0.235815,-0.032764,0.342033,0.0665274,-0.614959,-0.399304,0.0905857,-0.180172,-0.514698,0.57149,-0.504663,-0.00397785,0.0258074,-0.608062,0.545603,-0.587662,-0.213625,0.258104,-0.526912,0.559166,-0.529461,-0.0911255,2 +0.594519,0.514788,0.562425,-0.534838,-0.728324,-0.165389,0.0907056,0.422983,-0.22384,1.17289,0.000289878,-0.75562,0.712691,-0.580156,-0.621016,0.519646,-0.870814,0.737759,-0.692351,-0.852333,0.648503,-0.787045,0.748334,-0.624014,-0.656839,2 +0.467151,0.578097,-0.71479,-1.41193,-0.991315,1.03579,0.640286,0.974783,0.18468,0.839979,0.0447881,-0.885716,0.722726,-0.617168,-1.14785,0.733961,-1.02845,0.702126,-0.740358,-1.51463,0.793662,-0.918191,0.7564,-0.656269,-1.14009,2 +1.3855,0.441284,0.773771,1.04969,-0.315356,-1.61406,-1.35924,-0.220092,-0.196534,1.25886,0.28685,1.15847,-0.649542,0.635129,1.1581,0.154175,1.39427,-0.905247,1.07808,1.19307,0.176664,1.28939,-0.77594,0.763886,1.17281,2 +1.39891,0.377715,0.666954,0.868964,-0.392138,-1.54191,-1.09979,-0.0746935,-0.0387809,1.15925,0.47048,0.91997,-0.529401,0.42991,1.04369,0.298254,1.08516,-0.741727,0.707154,1.0697,0.317745,1.03208,-0.641596,0.528641,1.06036,2 +0.852573,0.553659,0.869464,0.0940938,-1.23446,-0.419944,0.280553,0.140681,-0.107997,0.953174,-0.0343831,-0.508461,0.494358,-0.494858,-0.069016,0.302872,-0.739338,0.487161,-0.638317,-0.342722,0.36772,-0.61337,0.500515,-0.542864,-0.239613,2 +0.28545,-0.411698,1.54852,1.56628,-1.04766,-1.23373,-0.685175,0.0934342,-0.123449,0.607623,-0.149137,-0.258773,0.181671,-0.312597,0.197244,-0.0501854,-0.479155,0.290548,-0.474508,-0.0664674,0.0807206,-0.275435,0.175244,-0.332057,0.165759,2 +1.97175,1.45786,-0.270078,0.587032,-0.00886566,-1.91527,-1.68768,0.297454,-0.000139863,1.60184,0.0999911,1.12711,-0.513049,0.616538,1.18052,-0.549241,1.52934,-0.424822,1.0869,1.25456,-0.471609,1.4659,-0.521465,0.870284,1.30531,2 +-0.246759,-1.15986,0.752412,1.19314,-0.802807,-0.336425,-0.0145329,-0.0576318,0.299853,-0.295285,-0.779458,-0.321393,0.181531,-0.382613,0.132755,-0.421474,-0.55161,0.180541,-0.517407,-0.100121,-0.562105,-0.452249,0.231797,-0.431519,-0.0875373,2 +0.434008,0.0136734,0.00912552,-1.02971,0.0331238,1.08049,-0.327929,0.00736634,-0.302882,0.405232,-0.969435,-0.697269,0.602195,-0.579306,-0.40747,-0.492799,-0.638847,0.411129,-0.600586,-0.541175,-0.565693,-0.65464,0.617798,-0.586523,-0.406061,2 +-0.57288,-1.42692,1.06574,1.73951,0.766805,-0.210137,-0.712291,-0.924877,-0.879389,-1.09051,-0.83819,-0.115743,0.18356,-0.312827,0.459895,-0.559916,-0.165859,0.0891962,-0.345951,0.437956,-0.718098,-0.0783516,0.124229,-0.287839,0.446981,2 +0.561975,0.290548,0.366591,1.04553,0.813552,-1.36212,-1.2349,-0.289878,-0.447341,0.171236,-0.679038,0.646034,-0.0869973,0.135014,0.991605,-0.916451,1.09101,-0.170507,0.573449,1.11907,-0.941739,0.834272,-0.114124,0.22524,1.06216,2 +1.41406,0.727374,-0.0446382,0.99921,0.401963,-1.76126,-1.50099,-0.174515,-0.315316,1.0728,-0.191636,0.826456,0.0254376,0.234375,1.11324,-0.896601,1.16131,0.250787,0.598387,1.18563,-0.685724,1.09669,0.145529,0.382403,1.21456,2 +-0.559956,0.340353,-0.785356,-1.38965,-0.892853,1.31798,1.74163,0.26638,0.280823,0.303282,-1.51199,-1.07975,0.606133,-0.661666,-1.83248,-0.904577,-1.11994,0.630791,-0.767094,-1.75872,-0.788574,-1.06455,0.690612,-0.687243,-1.82625,2 +-0.724905,-1.77305,1.02969,1.28024,1.42499,0.332077,-0.680447,-1.53978,-1.05934,-1.34674,-1.14006,-0.126868,0.451719,-0.357485,0.488621,-0.569691,-0.294686,0.480694,-0.456447,0.380124,-0.44918,-0.223051,0.424832,-0.406051,0.391278,2 +-0.389399,-0.826315,0.935332,1.40492,1.20813,-0.30646,-1.01059,-1.1319,-0.916381,-0.961339,-0.712171,0.457806,-0.0523643,0.0742238,0.902898,-0.215135,0.333317,-0.229358,0.0580916,0.819099,-0.357105,0.434108,-0.205909,0.110276,0.8577,2 +-0.763396,-1.57904,1.03273,1.29917,0.272097,0.426481,-0.0177813,-0.937791,-0.481074,-1.38315,-1.18144,-0.218883,0.301832,-0.396076,0.383093,-0.508991,-0.403153,0.373717,-0.505502,0.236444,-0.607802,-0.34819,0.364592,-0.450419,0.195524,2 +-0.475297,-0.606823,0.226979,1.2931,1.47087,-0.787135,-1.24996,-0.454098,-0.447881,-0.929025,-1.00016,0.628123,-0.454058,0.223781,0.903488,-1.00331,0.89811,-0.53061,0.528451,1.00978,-1.08938,0.746435,-0.521025,0.360354,0.966007,2 +-0.526092,-1.24693,1.1948,1.57832,0.59318,0.288779,-0.479485,-1.61063,-0.914332,-1.15179,-0.949925,0.24623,0.138962,-0.0863776,0.770123,-0.360174,0.105089,0.0721446,-0.147008,0.682436,-0.492599,0.199782,0.0309549,-0.0767223,0.709483,2 +0.410279,1.15598,-0.371188,-0.912443,-0.890224,0.827535,0.83795,-0.0718549,-0.0146028,0.555358,-0.911984,-0.606723,0.585203,-0.568282,-0.258333,0.0547832,-0.853852,0.577077,-0.698698,-0.59256,-0.108687,-0.778349,0.614269,-0.621945,-0.520515,2 +0.742676,0.482424,0.463603,0.600106,-0.128727,-0.861298,-1.06842,-0.153995,0.0503854,0.547282,-0.312077,1.17835,-0.905127,0.828824,1.17092,-0.153475,1.26817,-1.30085,1.17698,1.13875,-0.239213,1.2986,-1.24858,1.13791,1.18659,2 +-0.0150926,-0.433238,0.481914,0.882378,0.534918,-0.538476,-0.729833,-0.42946,-0.267399,-0.332277,-0.932314,0.366351,-0.105338,0.0132337,0.823387,-0.69356,0.460784,-0.330858,0.166778,0.861678,-0.894452,0.446372,-0.248738,0.126838,0.850154,2 +0.402763,-0.377145,1.00625,1.04172,0.484163,-0.574479,-1.22319,-0.733141,-0.590311,-0.0238982,-0.605703,0.665274,-0.199212,0.252197,0.998501,-0.194685,0.65389,-0.518146,0.384752,0.953433,-0.380294,0.708833,-0.440584,0.363112,0.990655,2 +-0.0343631,-0.832342,1.49115,1.34202,0.337035,-0.109276,-0.901968,-1.0176,-0.791532,-0.626613,-0.856161,0.331838,0.234285,-0.0591609,0.83877,-0.369829,0.0985018,0.26516,-0.176653,0.691192,-0.446002,0.249098,0.144269,-0.0789612,0.774341,2 +0.0842888,-0.0338634,0.827085,0.786315,0.629382,-0.199852,-1.12328,-1.00013,-0.663305,-0.0948835,-0.51154,0.650042,-0.0324241,0.247119,0.988356,-0.0611001,0.463173,-0.136923,0.22484,0.846086,-0.1423,0.627373,-0.319294,0.356705,0.947206,2 +0.51015,-0.158452,0.767314,0.951914,0.5519,-0.615199,-1.55506,-0.963838,-0.548451,0.404652,-0.439385,1.15263,-0.437596,0.722436,1.21245,-0.100451,0.842447,-0.620386,0.587952,1.03242,-0.251017,1.02245,-0.637278,0.69467,1.14812,2 +1.30112,1.92638,0.238723,-1.23014,-1.30285,0.597288,0.560196,-0.377715,-0.541345,1.85503,-0.506922,-0.677058,0.695539,-0.552689,-0.399224,0.358954,-0.85704,0.689262,-0.691511,-0.604154,0.191426,-0.733101,0.702016,-0.601605,-0.430829,0 +0.439455,0.149277,0.750303,0.311837,0.732232,0.0138833,-0.934133,-0.759648,-0.745035,-0.194155,-0.270957,0.477107,0.524983,-0.00977507,0.863797,0.336215,0.00655678,0.473028,-0.269638,0.594259,0.185559,0.144709,0.358445,-0.160551,0.698218,2 +0.279293,-0.400974,1.07045,0.933792,-0.252177,-0.319274,-0.705605,-0.599736,-0.307339,0.0916952,-0.178633,0.535928,-0.130476,0.177993,0.915882,0.391938,0.172476,-0.0671372,-0.00814596,0.688553,0.304841,0.350908,-0.184759,0.137473,0.778379,2 +1.25181,0.594629,1.07229,-0.502194,-0.131985,0.422553,-0.290618,-1.30488,-0.700187,0.768574,-0.353917,0.20445,0.517227,-0.116303,0.689902,0.38744,-0.115883,0.527042,-0.304351,0.461504,0.392838,0.0413798,0.462154,-0.218383,0.580786,2 +1.13715,1.66295,-0.091895,-1.29542,-1.69513,0.0214096,1.34263,0.176364,0.158902,1.91367,-0.357855,-0.672311,0.636089,-0.586843,-0.493428,0.582985,-0.916411,0.618257,-0.724325,-0.846386,0.525783,-0.831323,0.643295,-0.640376,-0.672731,0 +1.55144,0.746754,1.43608,-0.185129,-0.875252,-0.126628,-0.200922,-0.5108,-0.572609,1.03985,-0.281352,-0.113065,0.678648,-0.333177,0.47081,0.574409,-0.40809,0.630831,-0.503843,0.247749,0.544414,-0.267719,0.59289,-0.416426,0.333906,2 +0.362473,1.92794,-0.802967,-1.4358,-2.24488,-0.0406301,2.42969,1.31561,0.374087,1.87528,-0.526432,-1.10623,0.598667,-0.664704,-2.12856,0.358954,-1.17096,0.635339,-0.771822,-2.4032,0.454618,-1.09784,0.683835,-0.691631,-2.17147,0 +1.08224,0.549291,0.600306,0.899769,0.259253,-1.14643,-1.36888,-0.480605,-0.38823,0.605224,-0.389759,1.39387,-0.71463,0.937681,1.30499,-0.415237,1.52055,-0.81668,1.26563,1.27699,-0.384921,1.4961,-0.922578,1.15528,1.31886,2 +0.419795,0.131776,1.60439,0.59072,-0.0597907,0.0768724,-0.378355,-1.1721,-0.801797,-0.135564,-0.304701,0.146358,0.432018,-0.188308,0.731432,0.415697,-0.145089,0.435766,-0.354926,0.546193,0.444333,-0.00307847,0.36808,-0.254855,0.601036,2 +0.0872673,-0.59293,1.47956,0.879119,0.288359,0.196574,-0.622725,-1.25257,-0.824396,-0.467711,-0.207358,0.683965,0.189817,0.198643,1.0155,0.301732,0.416466,-0.126348,0.194695,0.824586,0.333827,0.533469,-0.0949034,0.189677,0.882788,2 +-0.67322,-0.0333836,-0.605044,-0.683515,2.31077,1.9639,-0.695589,-1.6761,-1.13012,-1.47978,-0.018301,-0.0117141,0.3881,-0.292617,0.569801,0.140321,0.670722,-0.944667,0.540555,0.848555,0.241192,0.485592,-0.547892,0.331838,0.800558,2 +0.178972,0.792192,0.168348,-0.565603,-0.20363,0.543144,0.437586,-0.393178,-0.257614,0.114354,-0.404052,-0.177953,0.427241,-0.357905,0.383592,0.398845,-0.569781,0.411758,-0.534258,-0.0109246,0.430529,-0.349059,0.147238,-0.242551,0.0864476,2 +-0.022479,-0.0859778,0.0667173,-0.67456,1.23731,1.79885,-0.131326,-1.86444,-1.09517,-0.728633,-0.385661,-0.189937,0.820038,-0.40868,0.34842,0.369329,-0.493988,0.75447,-0.580276,0.105818,0.468491,-0.379544,0.741057,-0.502644,0.179502,2 +-0.0246579,0.136713,0.191786,-0.912863,-0.0491559,1.3241,0.870254,-1.01966,-0.562444,0.0555329,-0.87921,-0.900929,0.63375,-0.639857,-0.812502,-0.404142,-0.861778,0.606903,-0.730962,-0.648223,0.0290858,-0.862358,0.711832,-0.662875,-0.703386,2 +-0.751562,-0.201841,-0.283891,-0.220952,1.77323,0.523044,-0.476747,0.307459,-0.665464,-1.43729,-0.320273,0.442483,0.547682,0.0066369,0.706224,-0.272656,0.929175,-1.42514,0.923478,0.529711,-0.156653,0.610391,-0.676429,0.270748,0.500935,2 +0.193155,0.20431,-0.48991,-1.03532,-0.831793,0.518366,1.16754,0.928965,-0.0329838,0.726554,-0.680927,-1.06541,0.609891,-0.660357,-1.73647,0.00691665,-1.1354,0.641686,-0.768494,-1.89997,0.136553,-1.06146,0.685085,-0.688373,-1.76372,0 +-0.341453,-0.77643,0.934663,1.22463,1.34266,0.0137033,-1.11238,-1.21519,-0.870084,-1.26773,-0.376856,0.795771,-0.114794,0.318034,1.07891,-0.274396,0.519666,-0.134074,0.156134,0.932054,-0.240932,0.683805,-0.219892,0.263011,1.00659,2 +-0.809374,1.36715,-0.243881,-0.906656,-0.897811,0.344931,1.57387,0.998301,0.250208,0.0212896,-0.874752,-1.02145,0.602565,-0.651391,-1.58724,-0.221851,-1.13301,0.626453,-0.765695,-1.99032,-0.115104,-1.04512,0.667423,-0.682536,-1.70589,0 +-0.308539,-0.863047,0.970035,0.499635,0.623675,0.604214,-0.155954,-1.16143,-0.484743,-1.1584,-0.376905,-0.0987116,0.563614,-0.385711,0.527632,0.179002,-0.415067,0.572999,-0.547352,0.273076,0.193156,-0.320593,0.575628,-0.477356,0.324661,2 +-0.690752,-1.25039,-0.212396,0.161621,2.70467,1.32036,-1.53857,-1.90986,-1.01897,-1.53743,0.174145,0.628902,0.159102,0.151746,0.905737,0.721967,0.276165,-0.299014,0.0890365,0.641516,0.559466,0.360284,-0.186978,0.0938342,0.728553,2 +-0.921089,0.0893963,-0.741467,-0.461104,1.82482,1.72753,-0.696539,-0.569161,-0.839709,-1.62159,0.222631,0.08195,0.601845,-0.315395,0.61337,0.55156,0.600006,-0.951004,0.51171,0.675549,0.460075,0.355646,-0.26604,0.0633591,0.698838,2 +0.0344332,-0.382583,0.869894,1.05272,0.977581,-0.22411,-1.30545,-0.905677,-0.745835,-0.629772,-0.148977,1.10363,-0.36685,0.627833,1.20469,0.0600007,0.780718,-0.453738,0.466432,1.03069,-0.00797601,0.934573,-0.560955,0.573539,1.10112,2 +0.846336,0.368839,1.10851,0.106688,0.059191,0.030675,-0.359324,-1.03055,-0.69494,0.254645,-0.12159,0.156603,0.59232,-0.207348,0.698328,0.548442,-0.232546,0.59212,-0.430239,0.430309,0.46973,-0.0890464,0.487052,-0.331657,0.524363,2 +-0.242331,-0.883147,1.0903,1.21139,0.337655,-0.189977,-0.614329,-0.805885,-0.356995,-0.824676,-0.253346,0.614059,-0.213275,0.167738,0.956382,0.0201702,0.267829,-0.150986,-0.0229887,0.751282,-0.10165,0.404662,-0.24534,0.100181,0.81734,2 +-0.550301,1.21463,-1.28091,-1.26048,3.23857,0.670702,-1.41389,-0.285011,-0.716719,-1.18216,-0.129477,-0.0444581,0.773231,-0.36749,0.418225,-0.131166,0.14293,0.233276,-0.165049,0.524313,-0.199452,0.0990016,0.30736,-0.179752,0.544163,2 +0.645474,1.88677,0.0342332,-1.5171,-1.28871,0.351668,1.16427,0.636948,-0.0832991,1.39008,-0.584044,-0.985357,0.514818,-0.607133,-1.43035,0.107807,-1.07829,0.549451,-0.721897,-1.65082,0.119572,-0.961509,0.588702,-0.628472,-1.30793,0 +0.55065,0.435807,0.547192,-0.454587,-0.496897,0.655369,0.316595,-0.732921,-0.18347,0.208638,-0.248278,-0.172465,0.561415,-0.403652,0.354687,0.392968,-0.565703,0.59215,-0.599327,0.0435188,0.260802,-0.455707,0.598847,-0.514348,0.123789,2 +0.382663,0.181411,-0.16312,-0.894362,-0.518376,0.962899,0.787055,-0.20488,0.090066,0.0760728,-0.67427,-0.516007,0.578447,-0.519406,-0.0990513,-0.0189307,-0.829994,0.584754,-0.686254,-0.49019,-0.178672,-0.738828,0.638767,-0.603065,-0.436087,2 +-0.0487361,-0.684205,1.28492,1.23765,0.595978,0.0169717,-1.02591,-1.08198,-0.872353,-0.719028,-0.533449,0.567043,0.235805,0.0690364,0.966127,-0.329049,0.242111,0.276435,-0.104429,0.763986,-0.434267,0.406181,0.101171,0.00904571,0.867755,2 +0.209278,-0.574868,1.25202,1.0254,0.332777,-0.501904,-0.928246,-0.87899,-0.466891,-0.149207,-0.165879,0.957461,-0.431669,0.51019,1.12992,0.154714,0.543534,-0.42961,0.281172,0.910085,-0.00666665,0.765985,-0.549341,0.477157,1.01925,2 +1.51183,1.10992,-0.178683,0.557217,0.427071,-1.48748,-1.80739,-0.0545134,-0.205879,1.24259,-0.00831591,1.59457,-0.830323,1.18184,1.36569,-0.416856,1.5678,-0.517916,1.26688,1.31022,-0.310648,1.69012,-0.855521,1.36366,1.37847,2 +0.963508,2.1394,-0.428031,-0.966167,-1.88718,-0.255065,1.50344,1.0349,-0.00902551,1.74447,-0.666794,-1.08466,0.597797,-0.663205,-1.83943,-0.0251776,-1.15127,0.63286,-0.770743,-2.0278,0.053244,-1.06527,0.681516,-0.688693,-1.78432,0 +-1.67299,-0.855641,-2.04152,-1.51941,-1.14938,1.05043,1.40181,2.07997,2.55819,-0.513718,2.22179,-1.03123,0.549781,-0.65355,-1.57155,1.70502,-1.07018,0.61144,-0.751892,-1.59392,1.60042,-1.00273,0.619017,-0.672001,-1.47141,2 +-1.85429,-2.28455,-0.0788514,1.14738,2.32306,0.742197,-0.256874,-1.2709,-0.927026,-2.31433,0.657388,-0.728113,0.559066,-0.615798,-0.32684,0.945457,-0.65379,0.635449,-0.664844,-0.0983318,0.690892,-0.710022,0.606963,-0.630971,-0.309549,2 +-2.13151,-1.78593,-2.23335,-1.42576,-0.450729,1.53957,1.3995,1.61692,2.65523,-1.46737,2.01281,-1.03229,0.546193,-0.65273,-1.66211,1.69128,-1.0443,0.576618,-0.741717,-1.72939,1.61229,-0.996952,0.596348,-0.666823,-1.74921,2 +-1.57377,-2.51813,-0.176833,0.330308,2.05157,1.63753,0.169027,-1.58063,-0.913812,-2.05072,0.644485,-0.803906,0.597517,-0.629752,-0.520805,1.06147,-0.744146,0.709832,-0.691861,-0.304611,0.77717,-0.805946,0.664755,-0.65398,-0.549651,2 +-0.289868,-0.182091,-0.421204,0.206519,1.53292,-0.638257,-0.932104,-0.202661,-0.207878,-0.197663,1.15902,-0.237544,0.277844,-0.372228,0.30778,0.805166,0.136963,0.294796,-0.111036,0.534768,0.953243,-0.158382,0.281712,-0.330278,0.384851,2 +0.0824397,0.226219,-0.679048,-0.42884,0.397875,-0.454028,-0.697529,0.456756,0.295385,0.810953,0.724525,0.160931,0.0849185,-0.129097,0.667483,0.165989,0.221881,0.491049,-0.00331833,0.635819,0.234016,0.264161,0.0976023,-0.0575317,0.745615,2 +0.294646,0.485132,-0.189567,0.542394,1.33462,-0.732801,-1.40799,-0.514318,-0.643105,0.154145,0.595688,0.187508,0.026747,-0.0340532,0.713481,0.0699558,0.283991,0.189707,0.00794616,0.795471,0.40844,0.194485,0.161191,-0.103979,0.741217,2 +-1.39436,-1.86292,-0.591461,-0.092065,2.13381,1.50632,-0.079781,-1.31993,-0.848774,-1.5194,0.595528,-0.771072,0.599986,-0.628922,-0.460874,1.23464,-0.738209,0.672121,-0.698408,-0.325221,0.8377,-0.798609,0.659067,-0.655599,-0.540406,2 +0.333407,0.462064,0.0124639,-0.783176,0.492969,1.16471,0.212126,-1.01854,-0.737249,-0.153005,1.08954,-0.757879,0.631881,-0.618927,-0.434757,1.6743,-0.831243,0.656518,-0.71434,-0.49108,1.473,-0.763196,0.698698,-0.644055,-0.446901,2 +0.16411,0.59279,-0.147498,0.14268,0.998851,-0.966916,-0.955632,0.44858,-0.286889,0.186159,0.493219,-0.0206798,0.196074,-0.205249,0.565563,-0.354536,0.290118,0.442503,0.0117343,0.670452,0.0878971,0.145969,0.150566,-0.10243,0.659967,2 +-0.0195204,0.962149,-1.74624,-1.17934,0.157413,-0.431908,-0.273546,1.19604,0.888585,1.16487,0.794681,-0.625913,0.507342,-0.498936,-0.441164,-0.259283,-0.561905,0.533489,-0.515847,-0.419345,0.107288,-0.576478,0.578897,-0.506292,-0.369029,2 +-0.666324,0.385981,-0.45056,-1.00597,-0.839179,0.704415,1.20312,0.270158,0.448271,0.512219,0.955832,-1.06508,0.589381,-0.663885,-1.64366,1.62637,-1.13449,0.626143,-0.770783,-1.79628,1.32687,-1.0659,0.672081,-0.690842,-1.72157,0 +-1.18303,-1.47012,-0.221242,0.164749,1.22264,1.26135,0.250827,-0.957101,-0.574399,-1.46035,1.16,-0.683625,0.434267,-0.541245,-0.275475,1.07221,-0.523194,0.487841,-0.525153,0.0240483,1.06189,-0.65355,0.515977,-0.545593,-0.270318,2 +-0.566912,-1.23782,0.598587,1.25385,1.23635,-0.20317,-0.731282,-1.03513,-0.555108,-1.16941,-0.873882,0.309499,-0.0874871,-0.0457175,0.786995,-0.630571,0.439295,-0.354486,0.136843,0.8576,-0.789673,0.369539,-0.22417,0.0354528,0.790413,2 +0.230937,0.0948736,0.28637,0.712621,0.587382,-0.67318,-1.06008,-0.478496,-0.0479464,-0.137383,-0.209917,0.726005,-0.437056,0.333947,0.998641,-0.0356725,0.883877,-0.876491,0.677518,1.01106,-0.14244,0.783686,-0.644814,0.476187,0.994473,2 +-0.752562,-1.26556,0.915732,1.1999,0.897171,0.22467,-0.424142,-1.2352,-0.684655,-1.23338,-0.737619,-0.0188407,0.193395,-0.289898,0.574989,-0.227139,-0.110956,0.0793511,-0.308829,0.515978,-0.397825,-0.0546832,0.166269,-0.281092,0.513858,2 +-0.301882,-0.391638,-0.168667,-0.0167019,2.44018,1.23279,-1.18167,-2.02242,-1.18852,-1.29968,-0.316845,0.330288,0.00857587,0.0277965,0.682956,0.36867,0.175184,-0.514708,0.195754,0.486702,0.118542,0.216114,-0.131585,0.0367921,0.59147,2 +-0.252216,-0.436306,0.434987,1.03867,0.821518,-0.680567,-0.93992,-0.261132,-0.282881,-0.580556,-0.685694,0.51129,-0.381193,0.153855,0.851443,-0.494718,0.79736,-0.827505,0.503424,0.943658,-0.71416,0.609292,-0.560016,0.272177,0.861158,2 +0.410859,0.191596,0.343932,-0.911843,-0.925127,0.411049,1.14257,0.111295,0.067507,0.639467,-0.77705,-0.771532,0.584724,-0.584714,-0.607083,0.126158,-0.925267,0.568781,-0.702926,-0.831043,-0.137333,-0.831733,0.620646,-0.625214,-0.732471,0 +0.605154,-0.0557227,1.38097,0.396925,-0.421913,0.188438,-0.338664,-0.949975,-0.721207,0.384692,-0.381723,-0.212856,0.512199,-0.390259,0.38751,0.315466,-0.426241,0.546023,-0.525233,0.240013,0.106878,-0.298584,0.541245,-0.442493,0.323631,2 +1.31869,0.778249,0.349739,0.515317,-0.0598307,-1.1332,-1.34731,-0.168108,-0.185119,1.12671,0.0708054,1.16933,-0.913373,0.867465,1.1527,0.0832093,1.33114,-1.37547,1.20704,1.10701,-0.0762426,1.27658,-1.21034,1.07908,1.16809,2 +0.506552,0.992104,0.100381,-0.99993,-0.96087,0.397865,0.943078,0.0915451,0.00494765,0.872283,-0.450499,-0.725545,0.557167,-0.569441,-0.424562,0.438545,-0.876331,0.538526,-0.688603,-0.587372,0.248448,-0.782927,0.593559,-0.604944,-0.559126,2 +-0.809214,-0.677268,-0.810843,-0.278024,2.38479,0.754401,-0.848585,-0.929505,-0.441354,-1.28218,-0.105968,0.156024,0.136853,-0.12181,0.332268,0.83845,0.0235485,-0.372348,0.0671772,0.0690963,0.350878,-0.0371018,-0.152195,-0.0646482,0.191846,2 +0.152016,-0.343242,1.4714,1.03126,0.618417,-0.578357,-1.1073,-0.716479,-0.677648,-0.383312,-0.0529141,0.363882,0.0101451,0.0548633,0.81744,0.491509,0.0736339,-0.0289359,-0.10225,0.645974,0.32803,0.269628,-0.115483,0.0445783,0.738788,2 +0.0868175,0.153165,0.586403,0.772391,0.595858,-0.835861,-0.903268,-0.721247,-0.410569,0.24574,-0.0803606,0.381603,-0.151866,0.0720649,0.804586,-0.0113744,0.626963,-0.257824,0.329709,0.971704,-0.0472568,0.563164,-0.296275,0.264551,0.906806,2 +0.916571,0.688413,0.459045,0.517326,0.423982,-0.957761,-1.36317,-0.481784,-0.332837,0.688623,0.109416,0.886066,-0.590471,0.57186,1.06588,-0.00333833,1.02183,-0.726284,0.83861,1.12069,0.012384,1.11135,-0.8586,0.896691,1.13963,2 +0.968556,1.1984,-0.349389,-1.47408,-1.44373,-0.10128,1.11705,1.03038,0.459955,1.69004,-0.0342732,-0.726794,0.49088,-0.520255,-0.635309,0.752192,-0.957181,0.514348,-0.679907,-0.983089,0.562645,-0.850344,0.539636,-0.574379,-0.81686,0 +0.971634,0.847775,0.313706,0.887685,0.298204,-1.37583,-1.51227,-0.222281,-0.287159,0.802817,0.0659377,1.27326,-0.802787,0.856801,1.22305,-0.202481,1.26376,-0.752352,0.935702,1.18142,-0.278274,1.30584,-0.893263,0.973763,1.2422,2 +0.460215,0.129027,0.334456,0.782027,0.800588,-0.954573,-1.25617,-0.177013,-0.318904,-0.0351327,0.0357725,0.997882,-0.649022,0.578227,1.09785,-0.252866,1.15701,-0.77522,0.821388,1.12022,-0.278344,1.12542,-0.811233,0.737949,1.14363,2 +0.795481,0.333217,0.57307,0.30691,0.220342,0.0219793,-0.798999,-0.880819,-0.756409,0.410739,0.219972,0.419855,0.132455,0.159732,0.793262,0.75556,0.0128237,0.150996,-0.0942738,0.558897,0.650232,0.226759,0.0367921,0.0776621,0.659657,2 +1.19294,0.75581,1.03887,-0.488991,-0.188578,0.250807,-0.10126,-1.04218,-0.802937,0.851683,0.154934,0.100081,0.353157,0.00143944,0.529571,0.77655,-0.293726,0.379374,-0.287809,0.267429,0.718708,-0.044818,0.145379,0.0017193,0.394727,2 +0.69451,1.13244,-0.304531,0.186429,1.22159,-1.24696,-1.7422,0.159192,-0.291427,0.616758,0.497417,0.652461,-0.42788,0.361173,0.954223,0.249908,0.87908,-0.600086,0.594119,1.03289,0.253966,0.822537,-0.59161,0.557487,1.02895,2 +0.336875,0.517786,0.318524,-0.505572,-0.601745,0.467071,0.707604,-0.432988,-0.180781,0.381643,0.126568,-0.410539,0.522674,-0.446981,0.109706,0.725745,-0.712051,0.560545,-0.629072,-0.213755,0.639947,-0.579246,0.546013,-0.513069,-0.14333,2 +1.02333,0.441024,0.337145,0.989445,0.24561,-1.26603,-1.24383,-0.317814,-0.342182,0.629802,0.216024,1.24491,-0.67273,0.832673,1.2157,-0.340623,1.23447,-0.283031,0.885417,1.24648,-0.126698,1.38067,-0.63357,0.967606,1.26994,2 +0.104999,-0.73477,1.58046,0.948145,0.16308,0.214715,-0.447061,-1.19201,-0.798799,-0.613919,0.180132,0.34714,0.131526,-0.000699511,0.821628,0.646264,0.155604,-0.370239,0.237124,0.667094,0.57224,0.329129,-0.366081,0.32667,0.738788,2 +0.273786,0.0322343,0.454897,0.730442,0.684605,-0.419375,-0.866026,-0.769953,-0.692891,0.0147928,-0.0529141,0.65322,-0.353097,0.456107,0.973114,-0.277764,0.69369,-0.330068,0.527992,1.04841,-0.112485,0.790503,-0.485382,0.609132,1.02868,2 +-0.348569,-0.462713,-0.192706,0.454427,1.8701,-0.115024,-1.42985,-0.908815,-0.661686,-0.418785,0.152016,0.425192,-0.0196803,0.149057,0.87854,-0.214595,0.77527,0.128597,0.282432,1.02542,-0.115593,0.618587,-0.00695651,0.189447,0.991594,2 +1.15676,0.614849,0.397555,1.06481,0.373777,-1.24565,-1.33652,-0.478566,-0.42886,0.42917,-0.034733,1.43131,-0.662545,0.983239,1.32506,-0.412598,1.52392,-0.466472,1.18369,1.30737,-0.210977,1.59885,-0.809554,1.17397,1.34454,2 +0.675789,0.513029,0.75614,0.672301,0.819139,-1.06643,-1.42497,-0.472659,-0.49048,0.247149,-0.0599806,0.984658,-0.435657,0.564864,1.15643,0.0824897,1.04198,-0.789733,0.79638,1.1195,0.0726445,1.06768,-0.712741,0.739428,1.15149,2 +0.851233,0.512959,0.343382,0.69304,0.0313746,-1.12796,-1.29701,-0.0543834,0.049126,0.661526,0.241382,0.918151,-0.680637,0.558717,1.05939,0.214575,1.12888,-1.11481,0.974873,1.09303,0.213655,1.09675,-1.00198,0.872173,1.10287,2 +0.872283,0.509221,-0.219792,-0.830003,-1.56467,0.14378,1.28368,0.0961029,0.291337,1.46816,-0.202441,-0.440474,0.608192,-0.287879,-0.874012,0.605604,-0.627513,0.395656,-0.28655,-1.1119,0.604674,-0.65361,0.272337,-0.271077,-0.984698,0 +0.16445,0.260782,0.036832,-1.001,-0.188328,0.752622,1.21596,0.108677,-0.352577,-0.0558526,-1.11768,-1.02722,0.617957,-0.655809,-1.4933,-0.491,-1.12974,0.644864,-0.767754,-1.86326,-0.383192,-1.06003,0.686924,-0.687913,-1.76242,0 +0.505593,1.15712,0.414177,-1.12591,-1.04299,0.864427,0.921939,0.0277564,-0.362622,0.785486,-0.719128,-1.026,0.628522,-0.65365,-1.48726,-0.0969125,-1.11401,0.655959,-0.765145,-1.70548,-0.240172,-1.01206,0.71572,-0.679957,-1.43276,0 +0.499775,1.63258,-0.293376,-1.1027,-1.45537,-0.344941,0.10157,1.32773,0.624434,1.88476,-0.231836,-0.628082,0.69511,-0.582095,-0.875641,0.484853,-0.906986,0.681346,-0.731932,-1.16047,0.374417,-0.875042,0.666074,-0.643265,-0.988556,0 +-0.0682665,1.26431,-0.153495,-1.60066,-1.78213,0.0390409,2.11182,1.65699,0.51016,1.26097,-0.949415,-1.11791,0.594889,-0.665514,-2.24216,-0.0419094,-1.1765,0.634229,-0.772312,-2.47298,-0.246529,-1.10864,0.680487,-0.692521,-2.27718,0 +0.893363,1.09017,-0.526212,-1.11573,-1.68003,-0.0471769,2.0244,0.913123,0.278704,1.22931,-1.28155,-1.04521,0.565093,-0.647123,-1.63536,-0.465382,-1.11117,0.584254,-0.752282,-1.87902,-0.566383,-0.984918,0.588512,-0.655489,-1.51908,0 +0.775221,2.31151,-0.0335836,-1.13004,-1.50921,-0.185869,0.920269,1.49779,0.239713,1.02645,-0.607653,-0.335366,0.890524,-0.454687,-0.566712,0.362673,-0.641346,0.893572,-0.634949,-0.854712,0.0927947,-0.730023,0.685564,-0.567022,-0.708683,0 +0.583195,3.64581,0.530081,-1.26978,-0.757979,-0.138592,1.9487,0.476707,-0.55201,0.0522545,-0.645644,-1.00043,0.648123,-0.649862,-1.4602,0.137803,-1.10569,0.666983,-0.764945,-1.72752,0.215655,-1.0624,0.690472,-0.689962,-1.76457,0 +0.439645,-0.193195,0.324051,0.97942,0.140391,-1.33103,-1.23659,0.138162,0.295016,0.363682,0.0103749,1.33395,-2.03148,1.52899,0.973434,0.124779,1.37293,-2.07347,1.49172,0.89814,0.0855482,1.04496,-1.58688,1.07719,0.884497,2 +-0.0548831,-1.05182,1.28653,1.22111,0.598607,-0.394967,-0.606763,-0.711182,-0.640226,-0.820808,0.890434,0.854902,-1.51055,1.19035,0.883867,0.339274,0.722056,-0.603774,0.597837,0.970345,0.704005,0.65414,-0.865926,0.646684,0.873362,2 +0.284641,-0.460005,1.10628,1.11639,-0.00415796,-0.726304,-0.712391,-0.335316,-0.318624,-0.130356,1.07586,0.738259,-1.4112,0.976772,0.769314,0.928246,0.535178,-1.10239,0.649162,0.791942,1.02904,0.610141,-1.17286,0.790483,0.748623,2 +1.07534,0.675709,1.18551,0.399414,-0.925837,-1.26243,0.135813,-0.379484,-0.251767,1.40723,0.649912,-0.270557,-0.188318,-0.194814,-0.0128635,1.1383,-0.412748,-0.186719,-0.340014,-0.0212495,0.994183,-0.301952,-0.115943,-0.237733,-0.0347031,2 +0.466891,1.29024,0.0172715,-0.713551,-1.56176,-0.600096,0.859089,1.17863,0.30639,1.64948,1.13235,-1.06947,0.569091,-0.657618,-1.77192,1.494,-1.10705,0.61163,-0.764566,-1.59273,1.42716,-1.04393,0.650142,-0.682326,-1.6462,0 +-1.46699,-0.500155,-2.32933,-1.67826,-1.199,0.53206,1.04462,2.34505,3.09761,-0.0854081,1.78821,-0.915372,0.440434,-0.580526,-1.18244,1.31693,-0.290278,0.602225,-0.560316,-0.475017,1.36269,-0.779239,0.491869,-0.579626,-0.645534,1 +-1.80458,-1.02625,-2.51513,-1.77979,-1.61364,0.903558,1.30354,2.46368,4.04058,-0.691352,1.83041,-0.904887,0.343842,-0.523164,-1.63879,2.42108,-0.0722047,-0.59134,-0.220512,-1.36525,1.89556,-0.677448,0.241092,-0.481484,-1.22363,1 +-1.71247,-0.556777,-2.63131,-1.83681,-0.763526,0.411758,0.917791,2.16582,3.66611,-0.467301,0.514418,-0.910984,0.454428,-0.625134,-1.58733,1.50815,-0.546063,-0.114124,-0.506192,-1.44068,0.686604,-0.785006,0.402683,-0.604764,-1.47132,1 +-1.69907,-0.546832,-2.56302,-1.81094,-1.60092,0.466042,1.68618,2.51633,3.83562,-0.38899,1.22898,-0.960919,0.464912,-0.620896,-1.81995,2.44945,-0.689862,-0.0271768,-0.528731,-1.91616,1.61767,-0.845796,0.404712,-0.596338,-1.73746,1 +-2.35555,-1.73966,-2.93293,-1.89545,-2.22286,1.3552,1.93218,2.3525,5.31553,-1.32807,2.12045,-1.04117,0.493009,-0.63372,-2.46309,3.23523,-0.780058,-0.0402304,-0.501694,-2.39335,2.33931,-0.955662,0.494458,-0.63377,-2.37122,1 +0.455917,0.0130836,1.07856,0.986317,-0.236164,-0.540855,-1.0015,-0.0217194,-0.2657,-0.0965227,-0.96063,1.98794,-1.64656,1.6471,1.34025,-1.04331,2.07608,-1.6971,1.94703,1.20079,-1.11339,1.98107,-1.82362,1.73031,1.28359,2 +0.928715,0.424192,0.908475,0.907695,-0.439055,-0.81683,-1.04479,-0.123869,-0.129606,0.364142,-0.440764,2.52055,-2.59286,2.68408,1.48358,-0.683955,2.23293,-2.35527,2.6422,1.34145,-0.600826,2.431,-2.82334,2.80151,1.44572,2 +-0.255595,-0.0687663,-0.425022,-0.00929555,1.67647,1.13263,-0.562335,-1.09329,-1.11592,-1.15541,-1.41398,-0.276055,0.652141,-0.437955,0.322982,-1.84504,-0.249918,0.44838,-0.395806,0.352288,-1.40364,-0.173725,0.478276,-0.370978,0.386471,2 +0.904647,0.275755,1.5708,0.431718,-0.262022,-0.426861,-0.680057,-0.42876,-0.462903,0.222621,-0.300813,0.828285,0.0295056,0.364812,1.10783,-0.670102,0.703286,0.336855,0.404072,1.05673,-0.199102,0.706004,0.0121341,0.365621,1.05762,2 +0.720857,0.730682,0.94002,0.00287848,0.61387,0.0794411,-0.206339,-1.07022,-0.948206,-0.24501,-0.59142,0.301912,0.917421,-0.145129,0.790963,-1.23034,0.118092,0.924547,-0.146138,0.723526,-0.413078,0.206309,0.724805,-0.160231,0.765315,2 +0.325631,0.615719,0.240852,-0.889214,-1.20134,0.627313,1.42407,-0.0182711,-0.111735,0.725385,-0.499396,-0.81726,0.690772,-0.623195,-0.741517,-0.596028,-0.979141,0.702416,-0.748344,-0.990315,0.101011,-0.908865,0.726105,-0.667583,-0.928046,0 +0.709753,-0.148007,1.76739,1.53655,-0.294006,-0.917641,-0.982689,-0.806145,-0.567122,0.0290758,-0.131416,2.67375,-1.97224,2.6782,1.57716,-0.412658,2.21059,-1.7917,2.45535,1.44009,-0.134844,2.46576,-2.31629,2.63307,1.45304,2 +1.61956,1.96069,0.793931,-0.357195,-0.4087,-0.153415,-0.454987,-0.809754,-0.680497,1.03944,-0.283401,0.441124,0.522834,0.065678,0.85834,-0.51115,0.324111,0.701197,0.0638188,0.793642,-0.028346,0.355436,0.475527,0.0387812,0.784976,2 +1.23195,0.251727,1.16753,0.894502,-0.826875,-1.08298,-1.01766,-0.0359125,-0.104419,0.964878,-0.287809,2.98684,-3.20583,3.38392,1.50938,-0.463283,2.83079,-2.95118,3.50054,1.37393,-0.464023,2.95507,-3.38896,3.53345,1.496,2 +1.48403,1.1233,1.49499,0.986187,-0.902688,-1.29105,-1.15581,-0.267039,-0.222901,0.975762,-0.240902,3.39169,-3.12295,3.98931,1.65319,-0.688523,2.82491,-2.36196,3.55253,1.56676,-0.520415,3.37777,-3.65375,4.38982,1.62123,2 +1.6624,1.11703,0.568362,0.401943,-0.763276,-1.06278,-1.00461,0.240392,0.0722447,1.04793,0.22402,3.42958,-5.24255,5.12975,1.3716,-0.00147924,3.13964,-4.67467,4.89626,1.33015,0.0240483,3.415,-5.60553,5.55011,1.38813,2 +2.10809,0.600536,1.71031,0.486651,-1.31861,-0.538936,-0.089926,-0.834701,-0.541105,1.02095,-1.05173,3.04716,-0.723446,2.9924,1.78457,-2.06901,2.41449,0.192476,2.6886,1.61479,-1.52782,3.17371,-1.35709,3.52659,1.77083,2 +0.160671,0.112095,0.951055,0.400834,0.212206,0.00850588,-0.563614,-0.73542,-0.415247,-0.22406,-0.83737,0.301842,0.312117,-0.164749,0.794301,-1.14702,0.261092,0.677978,-0.110206,0.793472,-0.802447,0.159772,0.436257,-0.22464,0.741577,2 +0.644874,0.353767,0.603135,-0.363622,0.134514,0.724525,0.0110246,-0.935852,-0.527112,-0.214055,-0.932154,0.107358,0.473278,-0.259393,0.598667,-0.952264,-0.126068,0.683025,-0.34778,0.505743,-0.661086,-0.126218,0.599257,-0.360993,0.501474,2 +0.284451,1.66668,0.523244,-0.701766,0.131306,1.23867,-0.558696,-0.171056,-1.14786,-0.0258273,-1.93517,-0.393857,0.77591,-0.463123,0.0858082,-2.14861,-0.51137,0.864596,-0.562934,0.0567323,-1.65959,-0.397186,0.827835,-0.48955,0.127477,0 +-0.332347,-1.08771,1.57467,1.42643,0.502434,-0.0839788,-0.511709,-1.1974,-0.743556,-1.0918,-1.04103,1.01351,-0.390189,0.412298,1.12392,-1.08374,0.87851,-0.260163,0.456567,1.0391,-1.02008,0.83872,-0.374776,0.350259,1.05637,2 +0.855041,0.348889,1.4514,0.222121,0.124249,-0.193205,-0.514238,-0.655889,-0.765935,0.0702757,-0.931904,0.337225,0.453048,-0.130716,0.851983,-1.18283,0.335916,0.761207,-0.0678767,0.855311,-0.832053,0.24557,0.517827,-0.177473,0.812672,2 +1.41026,0.864347,0.0168917,0.190117,-1.53286,-1.03196,-0.563064,1.05478,1.08529,0.996422,0.0231287,3.40995,-5.40419,4.86168,1.08582,0.151716,3.4792,-6.25714,5.60671,0.865766,-0.180881,3.51067,-5.94252,5.37917,1.07365,2 +0.420184,-0.466961,1.87002,1.24528,0.230937,-0.565783,-0.914043,-1.09905,-0.762716,-0.263861,-0.83809,1.6486,-1.01833,1.25923,1.37332,-1.12189,1.33322,-0.731802,1.10458,1.24406,-1.006,1.5079,-1.05907,1.20513,1.32129,2 +0.769773,0.955622,0.61294,-0.659267,0.0725845,0.752062,0.181021,-1.00054,-0.91783,0.311767,-1.20838,0.00300864,0.591011,-0.158092,0.442853,-1.26513,-0.0731842,0.722286,-0.234195,0.427161,-1.01524,-0.00786613,0.483234,-0.0407399,0.44999,0 +-0.683635,-0.749813,1.22875,1.00299,0.915852,-0.32741,-0.516327,-0.558716,-0.684825,-1.0043,-0.109396,-0.400824,0.284001,-0.466132,0.120041,-0.377565,-0.0244181,0.272357,-0.366461,0.42831,-0.393957,-0.349199,0.382243,-0.48947,0.182101,2 +-0.0554028,0.0925747,1.11371,0.154384,0.546812,-0.00677663,0.149117,-0.906996,-0.784356,-0.372837,0.277684,-0.663765,0.474278,-0.548511,-0.196863,-0.242491,-0.532069,0.696639,-0.581385,0.0309349,-0.128907,-0.631881,0.621146,-0.57248,-0.157963,2 +0.345241,1.93607,0.346161,-0.942818,-1.26653,0.343202,0.969405,0.784996,-0.198053,0.679208,-0.885766,-0.67469,0.596998,-0.601335,-0.419874,-0.854911,-0.859239,0.616618,-0.727974,-0.560216,-0.585643,-0.793692,0.65476,-0.643165,-0.524733,0 +1.08644,0.108587,1.94463,0.846945,-0.818279,-0.77624,-0.648952,-0.684465,-0.596628,0.918171,-0.63254,1.25567,-0.267899,0.897441,1.29052,-1.13125,0.851703,0.287939,0.610321,1.12979,-0.724175,1.13692,-0.296905,0.849714,1.2475,2 +1.94054,1.40402,-0.0885267,0.026317,-1.56801,-1.50918,-0.924527,1.08537,1.04366,1.83671,0.348609,3.97639,-6.51916,6.35137,1.14467,0.362732,3.60334,-6.34013,5.98908,0.935412,0.0979721,3.80942,-6.6032,6.35116,1.15619,2 +1.09432,0.925257,0.199043,-0.764835,-0.456077,0.421853,0.884367,-0.385511,-0.593099,0.528082,-0.349159,-0.427471,0.394027,-0.2852,-0.0529139,-0.466102,-0.600636,0.40862,-0.461004,-0.124939,-0.0233685,-0.466122,0.401663,-0.320403,-0.0530641,0 +1.29472,0.541585,0.944988,0.769343,-0.98001,-1.20263,-1.00709,0.73488,0.0983219,0.839509,0.152226,3.2831,-4.9041,4.82215,1.37102,0.113265,2.54209,-3.86345,3.58592,1.1739,-0.0356625,2.84473,-4.52435,4.19217,1.31837,2 +-0.48944,-1.42774,0.952624,1.03109,0.814391,-0.0903857,-0.270678,-0.760028,-0.774471,-0.834861,1.17787,-0.432998,0.279733,-0.456666,0.100151,0.294056,-0.155184,0.476357,-0.395067,0.453898,0.626353,-0.379304,0.418185,-0.476167,0.207148,2 +-1.03789,-1.03046,0.440095,0.833102,1.28887,0.152945,0.0210896,-0.717379,-0.768364,-1.42728,1.13731,-0.526622,0.110806,-0.291827,-0.139412,-0.12325,-0.256844,0.395426,-0.322222,0.350798,0.416726,-0.375056,0.211946,-0.296375,0.119301,2 +-0.440644,-0.303891,-0.0550631,0.563384,0.641476,-0.123579,-0.338274,-0.0740638,-0.0659776,-0.854232,0.637168,1.43926,-3.10547,2.64764,0.849544,0.497696,1.45987,-2.53861,1.92762,0.882548,0.527712,1.29629,-2.52924,1.93175,0.815681,2 +-0.646883,-1.08574,0.988176,0.838709,1.03855,0.406241,-0.0730143,-1.34036,-0.975762,-1.19264,1.01815,-0.576788,0.523824,-0.566922,-0.0303649,0.417616,-0.488331,0.763776,-0.588782,0.0985518,0.929915,-0.583774,0.652111,-0.595548,-0.0520746,2 +0.361013,-0.524673,1.76044,1.42707,-0.188328,-0.270078,-0.576288,-1.00782,-0.875941,-0.365401,-0.112115,1.2826,-0.176004,0.740578,1.28722,-0.686414,1.10224,0.175254,0.712861,1.19888,-0.2047,1.20295,-0.313696,0.717839,1.22523,2 +-0.0603904,-0.608612,1.09628,0.783186,0.427161,0.480115,-0.303242,-1.00416,-0.726934,-1.08659,-0.28514,0.513929,0.175284,0.0535239,0.929095,-0.684915,0.24432,0.48951,-0.0779518,0.807415,-0.20373,0.223161,0.229328,-0.077242,0.780448,2 +0.643775,0.647183,0.170596,-0.318634,0.307879,1.37428,-0.251037,-1.12082,-1.061,-0.311268,-0.418085,-0.0448179,0.356725,-0.160421,0.447681,-0.618397,-0.214025,0.65327,-0.389619,0.421084,-0.125808,-0.212816,0.57117,-0.3474,0.375966,0 +-1.23949,0.351618,-0.616398,-0.544183,1.72714,0.865776,0.184949,0.375256,-0.564593,-1.82246,0.291147,-0.760897,0.524903,-0.552769,-0.540965,-0.146398,-0.282102,-0.283251,-0.270847,-0.0455976,-0.0711351,-0.441164,0.139492,-0.395006,-0.173855,2 +0.594909,1.81038,0.247359,-0.93977,-0.98001,1.03056,1.11777,-0.763406,-0.658707,0.690672,-0.788364,-0.739778,0.579426,-0.579436,-0.475707,-0.916331,-0.81673,0.593759,-0.695629,-0.420364,-0.488591,-0.737899,0.699308,-0.61255,-0.443403,0 +-0.53037,-0.793012,1.11143,0.725724,0.548731,-0.26442,-0.260682,-0.277364,-0.437536,-0.77598,0.359464,-0.630081,0.34811,-0.554109,-0.30515,1.00532,-0.513459,0.0553028,-0.457296,-0.103939,0.5108,-0.623995,0.397316,-0.561085,-0.295006,2 +0.866656,0.405631,0.732961,-0.672631,-0.688283,0.98109,0.461604,-0.652361,-0.689352,0.55267,-0.637658,-0.415417,0.681107,-0.485662,0.107278,-0.652591,-0.554828,0.645124,-0.583604,0.0673171,-0.312307,-0.459935,0.713131,-0.51085,0.0986116,0 +0.124479,-0.0068366,-0.155804,0.248558,0.312347,0.162251,-0.396606,0.482384,-0.475657,-0.400224,-0.299793,0.77564,-0.906826,0.955672,0.729723,-0.452908,0.567142,-0.601466,0.705805,0.627193,-0.26544,0.670792,-1.15171,1.01719,0.666703,2 +0.221002,1.39903,-0.397076,-0.875721,-0.659637,-0.0840688,0.914602,0.63373,-0.283761,1.15526,-1.32052,-0.716929,0.622745,-0.609941,-0.49064,-1.17042,-0.868665,0.65371,-0.731402,-0.659827,-0.917091,-0.831513,0.681706,-0.650212,-0.663215,0 +2.47673,2.31182,0.867845,-0.774521,-1.76107,-0.0478365,0.344961,-0.12289,-0.484183,1.70941,-1.12624,0.828175,-0.028406,0.806215,0.998961,-2.20925,0.44945,0.0705454,0.488391,0.842218,-1.3839,1.11236,-0.860139,1.3922,1.06333,0 +-0.198253,1.1178,-0.614259,-0.903318,0.506352,1.29526,-0.000719677,-0.0489161,-0.709213,-0.273926,0.462903,-0.258173,0.406021,-0.334606,0.248119,-0.0291357,-0.0133335,-0.874952,0.283361,0.233936,0.466072,-0.0741037,-0.447041,0.120001,0.137882,0 +0.345221,0.114824,0.7352,0.348899,0.599856,0.424522,-0.943818,-1.03714,-0.7956,-0.299094,-0.0131735,0.549661,0.560126,0.0825997,0.894822,-0.383512,0.454977,1.031,0.00833597,0.790973,0.118752,0.290018,0.55117,-0.100371,0.769903,2 +0.891534,-0.0726744,1.06075,1.24476,-0.140071,-0.772172,-0.978791,-0.610301,-0.413208,0.0649483,-0.399384,2.24989,-1.8567,2.27804,1.53202,-0.869604,1.67055,-0.822917,1.57616,1.35442,-0.554309,1.84102,-1.38419,1.77022,1.43203,2 +1.68876,0.701706,0.549741,0.746814,-0.521385,-0.874062,-0.851223,-0.228558,-0.336275,0.745865,-0.201731,2.69756,-2.10467,2.87097,1.61924,-1.24473,2.04737,0.187408,2.00656,1.49695,-0.688353,2.33644,-1.2436,2.34932,1.55174,2 +0.691991,1.0003,0.133245,-0.883857,-0.18332,0.455237,0.079651,-0.263831,-0.0393806,0.344481,-0.319404,-0.0613598,0.641826,-0.335126,0.415887,-0.438815,-0.381303,0.729812,-0.44918,0.195604,-0.0137732,-0.268778,0.650662,-0.3871,0.293286,0 +0.886426,0.8165,-0.0226789,-0.821048,-0.273316,0.556518,0.0273766,-0.316225,-0.511339,0.922858,-0.153125,-0.313736,0.635789,-0.404492,0.199183,-0.178792,-0.569191,0.749833,-0.55058,-0.0461073,0.220972,-0.4492,0.686184,-0.477026,0.067147,0 +0.02048,0.781677,0.321083,-0.540625,-0.293546,0.349149,0.691172,-0.253756,-0.341103,0.247499,0.0908755,-0.716839,0.644854,-0.566922,-0.464972,0.322842,-0.778549,0.675149,-0.656838,-0.438895,0.583345,-0.741867,0.675509,-0.607093,-0.479086,0 +0.290578,1.07164,0.0941639,-1.06566,0.295325,0.555068,0.670752,-0.581315,-0.566053,0.254645,0.222171,-0.634459,0.42802,-0.479145,-0.471329,0.276894,-0.705974,0.447811,-0.588342,-0.422103,0.642016,-0.652361,0.518376,-0.53155,-0.455027,0 +1.28618,0.768604,0.697729,0.933403,-0.0803507,-0.981839,-1.38207,-0.297534,-0.375556,0.514038,0.115663,2.64543,-2.32595,2.85969,1.53396,-0.639757,2.09994,-0.665814,2.13381,1.46796,-0.212226,2.35697,-1.87582,2.49271,1.46452,2 +-0.65416,-1.42277,1.44889,1.56542,1.10599,0.495128,-0.454987,-1.79994,-1.14756,-1.80806,0.133025,0.636868,0.235965,0.136193,1.03399,-0.59273,0.664804,0.65424,0.187908,1.04611,0.0424093,0.552779,0.295755,0.0531041,0.985487,2 +0.191536,-0.179482,1.2722,0.618097,0.300623,0.42882,-0.34723,-1.10414,-1.06847,-0.506222,0.0872373,-0.0883966,0.657758,-0.304121,0.506622,-0.669862,-0.0752831,1.01752,-0.288359,0.549341,0.0651182,-0.123669,0.658088,-0.340283,0.492139,2 +0.196314,-0.125928,0.269588,-0.325411,0.182811,0.717369,-0.0710752,-0.743596,-0.200282,-0.201821,0.291717,-0.0295054,0.576048,-0.277144,0.463863,-0.140461,-0.275415,0.834951,-0.38802,0.273716,0.458136,-0.22444,0.641746,-0.365901,0.292477,2 +-1.98371,-0.903707,-2.6684,-1.90094,-1.33463,0.767534,1.49554,2.76114,3.91337,-0.808934,1.95146,-0.757789,0.240282,-0.541955,-1.69412,2.21163,0.230867,-0.596808,-0.256394,-1.29671,1.82033,-0.622905,0.398035,-0.602395,-1.20132,1 +1.1685,0.884687,0.528002,0.354466,-0.176694,-0.799199,-0.940879,0.0704155,-0.118412,0.500165,0.120061,2.53961,-2.56662,2.90356,1.43095,-0.371388,2.52588,-1.18061,2.59138,1.3041,-0.0796309,2.3267,-2.10373,2.45541,1.37723,2 +-0.568132,-0.629901,0.397186,0.492179,0.423323,-0.135554,0.0698358,0.132735,-0.10108,-0.913173,1.03274,0.893763,-2.04329,1.52089,0.6738,0.637088,1.38972,-2.13352,1.77285,0.806265,0.814511,1.03116,-2.0566,1.39946,0.73498,2 +-1.0437,0.747624,-0.28521,-0.770533,1.59411,0.764406,-0.587702,0.361273,-0.422913,-1.18163,0.0935442,-0.740148,0.658857,-0.609352,-0.516297,-0.173565,-0.607962,0.256604,-0.577697,-0.393377,0.202891,-0.61317,0.480045,-0.573249,-0.379614,2 +1.15868,1.7193,0.664605,-0.357845,-0.0484063,0.451549,0.16302,-0.981879,-0.801277,-0.120461,-2.04809,2.08427,0.516567,1.743,1.60597,-3.56173,0.812002,1.69934,0.681416,1.10127,-2.51486,1.38154,0.77692,0.996722,1.3884,2 +-0.235705,-0.314616,-0.229258,-0.595898,0.00171916,0.597527,0.340743,-0.181311,0.0811803,0.158133,0.741317,-0.785675,0.472699,-0.557507,-0.704855,1.44505,-0.879719,0.478136,-0.665874,-0.83797,1.22292,-0.808174,0.507752,-0.579386,-0.794241,2 +0.206699,1.21708,-0.0173215,-1.06073,-0.63253,0.394547,0.586363,0.32696,-0.0249377,0.75558,0.876711,-0.895561,0.528021,-0.619467,-0.914742,1.75996,-0.981599,0.540105,-0.720427,-1.05088,1.40342,-0.901499,0.595778,-0.642945,-0.979041,0 +-0.0436786,0.481864,-0.461934,-0.87855,-0.356735,0.294766,0.169957,0.455897,0.378385,0.649942,1.14879,-0.75517,0.402173,-0.523394,-0.641176,1.80429,-0.854811,0.430599,-0.63278,-0.815231,1.58909,-0.778559,0.432139,-0.532079,-0.779119,2 +-0.187328,-0.143989,-0.30726,0.611071,0.237104,-1.18046,-0.770783,0.824916,0.657248,-0.00645677,0.667733,0.107368,-0.212386,-0.116773,0.481864,0.800238,0.718798,-1.16479,0.479625,0.689063,0.65368,0.34722,-0.432668,0.032934,0.580206,2 +0.559336,1.19686,-0.689912,0.16278,-0.254136,-1.53705,-1.14624,1.00225,0.892043,1.13542,1.21801,0.538427,-0.903897,0.381673,0.558077,1.24165,0.903248,-1.70619,0.815141,0.61398,1.09509,0.6328,-0.934352,0.402093,0.610591,2 +0.773891,0.800298,-0.790093,-0.00371829,-0.553749,-1.41772,-0.962309,1.2433,1.15125,1.20373,1.44343,0.494438,-0.87813,0.386851,0.499945,1.3501,1.20997,-2.15773,1.25736,0.703596,1.31886,0.81784,-1.24561,0.640946,0.61216,2 +0.240902,-0.0333236,0.442413,1.24588,0.433328,-1.30115,-0.846206,-0.513729,-0.42879,0.363972,1.26159,-0.227349,0.0464273,-0.32674,0.193595,1.19546,-0.218793,-0.180002,-0.312587,0.187238,1.43352,-0.150067,-0.0326039,-0.278294,0.210737,2 +0.921329,0.987377,0.0943638,-1.11404,-0.711312,0.784696,0.389579,-0.300113,-0.480495,1.20268,1.2238,-0.822777,0.474248,-0.577227,-0.819179,1.93414,-0.925887,0.506622,-0.697528,-0.995413,1.81611,-0.811213,0.524403,-0.595938,-0.839579,0 +0.545853,0.281232,-0.0427591,0.905296,0.275895,-1.45363,-1.31304,0.352707,0.147718,0.526682,1.26129,0.312237,-0.631141,0.182941,0.524663,1.27675,0.685524,-1.34738,0.565753,0.681377,1.34447,0.425302,-0.692621,0.197244,0.543484,2 +0.221791,-0.227978,0.295925,1.65784,0.697818,-1.44222,-1.65237,-0.119941,-0.373717,0.0766526,0.793861,0.299064,-0.392788,0.0672172,0.656209,0.536198,0.422413,-0.604164,0.124099,0.741337,0.819759,0.396556,-0.361553,0.0423094,0.703595,2 +-0.332947,-0.259213,-0.782357,-1.03305,-0.392518,0.903138,0.440154,0.293636,0.614739,0.341263,0.602595,-0.872992,0.478166,-0.590951,-0.937781,1.25431,-0.949815,0.51049,-0.692551,-1.09146,1.0115,-0.87843,0.541165,-0.610521,-1.0233,2 +-1.43727,0.545853,-1.948,-0.721177,2.23182,0.332307,-0.537747,0.187278,-0.222291,-0.583654,1.47309,-0.718668,0.433158,-0.572,-0.480355,0.581725,0.28668,-0.141531,-0.057182,0.466981,1.13429,-0.0659077,-0.0248278,-0.200632,0.352807,2 +-0.792502,-1.22138,0.953183,1.28127,0.515278,0.0869175,-0.675929,-0.856741,-0.651221,-0.724705,-1.23715,-0.525832,0.434637,-0.520465,-0.0407398,-0.968336,-0.567052,0.440834,-0.594309,-0.0236283,-0.805686,-0.502334,0.445672,-0.533189,-0.0351529,2 +0.0644985,-0.217513,0.688993,0.197823,-0.628602,-0.116103,0.246789,-0.208808,0.199662,0.134364,-0.529511,-0.365571,0.317834,-0.437846,0.0942441,-0.0947536,-0.561935,0.275415,-0.557117,-0.0829093,0.0545534,-0.50989,0.341163,-0.492669,-0.110966,2 +1.27617,0.969115,-0.515997,0.26544,-0.0310548,-1.31985,-0.951534,0.296395,0.190627,1.14848,-0.140281,0.664705,0.105728,0.171356,1.03219,-0.841468,1.10238,0.0300352,0.556648,1.06303,-0.473618,1.03438,-0.053004,0.373357,1.12163,2 +-0.104819,-0.545293,0.954703,0.952513,-0.560875,-0.550261,-0.0748834,-0.281012,0.0222792,0.0454078,-0.482294,-0.206319,0.0136034,-0.286769,0.238374,-0.0880968,-0.351478,-0.028786,-0.384722,0.131226,-0.164319,-0.2853,0.0701058,-0.320603,0.0884666,2 +0.498446,1.22242,0.0218793,-0.93973,-1.07902,0.370369,1.10293,0.0730542,-0.137363,1.00374,-1.22502,-0.923488,0.648772,-0.63341,-1.0117,-0.647373,-0.995223,0.664135,-0.744156,-0.982069,-0.557477,-0.931694,0.701886,-0.667333,-1.01396,2 +-0.61288,-1.18184,0.829414,1.37283,-0.0295156,-0.391328,-0.0382813,-0.293606,-0.257284,-0.707324,-0.717499,-0.343832,0.136093,-0.405941,0.0916753,-0.293476,-0.406381,0.042659,-0.460884,0.089966,-0.412188,-0.387071,0.170397,-0.423363,-0.0215995,2 +-0.00656676,-0.767474,0.745655,1.8075,0.67451,-1.14919,-1.12535,-0.809704,-0.678138,-0.113384,-0.220622,0.247519,-0.095783,-0.0616397,0.725885,-0.461004,0.250207,-0.198633,-0.0626293,0.743116,-0.280902,0.382613,-0.177843,0.0176015,0.800688,2 +-0.0794211,0.569341,-0.909775,-1.27743,-1.64474,0.336145,1.38762,1.57928,1.15986,0.815461,-0.719798,-0.926956,0.644704,-0.640796,-1.23962,-0.0523443,-1.07367,0.647903,-0.759738,-1.60106,-0.0451878,-1.00977,0.679967,-0.676049,-1.48537,0 +0.14396,-0.681446,1.26412,1.63878,0.255165,-1.19389,-0.824566,-0.720177,-0.467521,-0.12257,-0.304091,0.336146,-0.229607,0.00405816,0.759668,-0.156473,0.321672,-0.499326,0.0717149,0.728454,-0.238933,0.373957,-0.332507,0.0568123,0.740048,2 +-0.772482,-1.52254,1.46357,2.09589,1.31926,-0.725645,-0.885996,-1.07119,-0.93922,-1.55598,-1.02013,0.126588,0.112645,-0.24384,0.664325,-0.883877,0.141371,0.00913544,-0.216724,0.699138,-0.995303,0.145459,0.0739239,-0.230077,0.649012,2 +1.8936,1.49003,-0.385751,0.342692,-0.0400604,-1.88423,-1.44702,0.242881,-0.124419,2.01305,-0.0434387,1.0928,-0.0907255,0.467751,1.21566,-0.884357,1.48759,0.377145,0.895901,1.23844,-0.658877,1.36602,0.137543,0.598717,1.28628,2 +0.59271,0.932134,-0.0705055,-1.30417,-1.40453,0.615199,0.657918,0.44966,0.260952,1.45681,-0.578417,-0.876961,0.656409,-0.620806,-0.964747,0.0025388,-1.01861,0.664165,-0.743996,-1.23857,0.146009,-0.922039,0.690882,-0.65383,-1.03847,0 +1.06943,0.614069,0.230327,0.764675,0.602195,-1.34894,-1.4821,-0.240772,-0.438525,0.759149,0.20502,0.952714,-0.295665,0.452599,1.14553,-0.568372,1.27826,0.229088,0.774091,1.25073,-0.250457,1.16204,0.0085459,0.524253,1.23049,2 +1.26921,0.705395,0.330848,-0.337445,-1.42621,-0.562035,0.210697,0.18297,0.329809,1.64942,0.0641986,-0.381543,0.435967,-0.434367,0.0499557,0.476397,-0.655889,0.424102,-0.598107,-0.181241,0.668663,-0.562535,0.447721,-0.50967,-0.159492,2 +0.825946,0.411369,0.293406,0.659407,-0.316615,-1.14138,-0.880549,0.0482363,0.220752,0.737319,0.356186,0.91948,-0.757059,0.558996,1.00559,0.374007,1.00898,-1.3607,0.855451,0.958441,0.458066,0.915212,-0.931704,0.577078,0.923638,2 +-1.03784,-1.07262,-1.14928,-0.287829,0.910644,0.555678,-0.0114644,0.269438,0.870424,-1.24561,0.350958,-0.278883,0.357185,-0.335815,0.106828,-0.0357325,0.155964,-0.210507,-0.0502853,0.293856,0.201302,-0.0111145,-0.0158122,-0.175214,0.323631,2 +1.41102,1.42418,-0.696869,0.157123,-0.217064,-1.10893,-1.15144,0.396236,0.315206,1.14216,0.138342,0.91955,-0.0893562,0.40948,1.11198,-0.748144,1.40329,-0.00584722,0.876291,1.16059,-0.411698,1.395,-0.22455,0.709033,1.24139,2 +-1.39366,0.275885,-1.24017,-0.806305,1.95706,0.930634,-0.22423,-0.148267,-0.335276,-1.07693,-0.00851581,-0.797559,0.574429,-0.621885,-0.519455,-0.36749,-0.229728,-0.0534439,-0.466042,-0.295685,-0.123659,-0.371278,0.297165,-0.524293,-0.334286,2 +0.676339,-0.202441,0.932284,1.37258,0.0599007,-1.05319,-0.935592,-0.630761,-0.418815,0.145659,0.252646,0.923508,-0.587402,0.483354,1.07715,0.087957,0.834921,-0.638188,0.480635,1.034,0.177073,0.887436,-0.6123,0.446981,1.03455,2 +1.01999,0.350448,1.16115,-0.00607713,-0.584194,-0.559416,-0.16275,-0.24512,-0.480105,1.14222,-0.156204,-0.404892,0.529811,-0.441914,0.0846388,0.0806306,-0.519696,0.507052,-0.537247,-0.0589011,0.34846,-0.405981,0.481844,-0.4685,0.0695658,2 +0.130176,-0.908155,0.9817,2.12443,0.369809,-1.34449,-1.29638,-0.603934,-0.642465,-0.0394006,-0.335636,0.237274,0.00470776,-0.115483,0.713391,-0.585953,-0.0166619,0.0652879,-0.260732,0.534039,-0.340743,0.24554,-0.057112,-0.109826,0.674869,2 +0.137803,0.654629,-0.446601,-0.973663,-0.814611,0.6542,1.05698,0.108167,0.132845,0.648413,-0.481524,-0.827675,0.690502,-0.614929,-0.832122,-0.0675769,-0.994843,0.672101,-0.744096,-1.06562,-0.0496056,-0.910185,0.703905,-0.658767,-0.961309,2 +1.11587,0.934512,-0.179372,0.42769,-0.0622495,-1.19575,-0.790883,0.349539,0.120021,0.619567,0.032654,0.568592,-0.0206998,0.136483,0.942039,-0.651691,0.964098,-0.120421,0.373087,0.982109,-0.405072,0.917771,-0.134104,0.270937,1.03729,2 +-0.432898,0.101041,-0.73662,-1.18645,-1.44844,0.887615,1.06991,1.40254,0.846465,0.59264,-0.557677,-0.746854,0.71496,-0.629332,-1.23904,-0.0617597,-0.988916,0.69375,-0.758659,-1.62732,-0.116763,-0.995793,0.688993,-0.684395,-1.40933,0 +-0.192256,-0.724385,0.20369,1.01639,0.808464,-1.08298,-0.872153,-0.116543,-0.172036,-0.0649781,0.581245,-0.16223,-0.0160221,-0.304021,0.242931,1.02116,0.217264,-0.766605,0.0427391,0.424612,0.641256,-0.0573619,-0.115184,-0.246569,0.282202,2 +0.248129,-0.0536737,0.903538,0.507771,-0.640786,-0.288639,-0.392298,-0.287959,-0.0913452,0.524164,1.29611,-0.509181,0.218283,-0.439885,-0.134094,1.72954,-0.615329,0.189137,-0.528981,-0.262282,1.42274,-0.512579,0.234046,-0.436096,-0.20375,2 +0.0133535,-0.339594,0.294116,1.55806,0.935712,-1.32939,-1.26623,-0.392868,-0.476876,-0.16313,1.32417,0.0357326,-0.1631,-0.161941,0.42959,1.35286,0.0485062,-0.413478,-0.153255,0.415347,1.24646,0.100201,-0.197303,-0.154514,0.444822,2 +-0.0361123,0.476277,0.166758,-0.685694,-0.237334,0.654899,0.591071,-0.442533,-0.200622,0.230757,1.42177,-0.811872,0.478086,-0.59117,-0.664674,1.90332,-0.904257,0.506662,-0.698018,-0.741417,1.61077,-0.831263,0.547622,-0.616058,-0.760708,2 +-0.813732,-0.34683,-1.4119,-0.706564,-0.355016,0.0928146,0.557487,1.35207,1.29376,0.00513755,1.63967,-0.650881,0.253216,-0.438965,-0.707603,1.43882,0.0334436,-0.712681,0.00732646,-0.171256,1.37278,-0.30704,-0.0326939,-0.279973,-0.229828,2 +-0.549381,-0.696879,-1.11282,0.0453777,1.49126,-0.48975,-1.07091,0.719168,0.158263,-0.24437,1.61847,-0.269458,-0.0817299,-0.279123,-0.0146226,1.15845,0.262881,-0.273616,0.0329939,0.634499,1.28056,-0.0503653,-0.0494357,-0.195744,0.333237,2 +0.67326,0.320583,-0.140331,0.868834,0.418025,-1.81231,-1.26283,0.411518,-0.00641679,0.91923,1.09752,0.385391,-0.561905,0.199772,0.648773,1.04623,0.941269,-1.65365,0.946077,0.830234,1.00612,0.556118,-0.790723,0.345311,0.69426,2 +0.73585,0.215165,-0.0810803,0.966776,0.460565,-1.8234,-1.4004,0.414087,-0.0133534,0.827395,1.34301,0.433448,-0.626793,0.193675,0.589512,1.3459,0.941019,-1.48635,0.804706,0.802997,1.25295,0.63348,-0.826075,0.366701,0.678058,2 +0.77716,0.0928446,0.378585,1.12463,0.0292057,-1.89704,-1.59252,0.318254,0.10294,1.14169,1.23824,0.323112,-0.40828,0.0249279,0.59321,1.44979,0.512509,-0.94017,0.280703,0.65362,1.22907,0.38848,-0.478186,0.0746636,0.610231,2 +-0.789683,-0.188618,-1.67256,-0.974013,-0.588482,0.10235,0.315266,2.04501,1.86466,-0.06112,1.14228,-0.481464,-0.0627092,-0.272397,-0.624844,1.49214,0.764776,-2.10155,0.877041,-0.255955,0.953173,0.0942839,-0.656329,0.0724647,-0.249128,2 +-0.395057,0.175184,-0.953453,-0.716849,-0.85811,-0.463053,0.263341,1.53167,1.93224,0.241242,1.3807,-0.352727,-0.221661,-0.208498,-0.525093,1.74035,0.780398,-2.00868,0.917161,-0.262581,1.13616,0.175194,-0.742946,0.155054,-0.1831,2 +-0.372378,0.305131,-1.18131,-0.667703,-0.824366,-0.573679,0.256185,1.72635,1.75209,0.432568,0.990085,0.092075,-0.852113,0.228708,-0.238583,1.4348,1.0394,-2.8279,1.51799,-0.0616197,0.822038,0.462883,-1.3808,0.607903,-0.0650483,2 +-1.11227,-0.793851,-0.930824,-0.81591,0.768174,1.33822,1.05427,-0.0431789,-0.417196,-0.713001,-2.30335,-1.02637,0.574819,-0.655229,-1.4464,-1.7589,-1.0807,0.618077,-0.761537,-1.41149,-2.44811,-1.0099,0.661136,-0.680956,-1.38635,0 +-0.830913,-0.745795,-1.02582,-0.713381,-0.802557,0.865356,1.84524,0.79552,0.173115,0.18493,-2.11169,-0.935582,0.637968,-0.650381,-1.33438,-1.58993,-1.04103,0.675029,-0.762037,-1.49725,-2.36287,-1.00187,0.689892,-0.683515,-1.42073,0 +-0.813961,-0.0761627,-0.965977,-0.832012,-0.235825,0.994833,0.790083,0.271857,0.216554,0.133375,-1.71129,-0.904937,0.615589,-0.645924,-0.973053,-1.20821,-1.03555,0.630291,-0.758509,-1.14781,-1.93471,-0.979461,0.666124,-0.679987,-1.16811,0 +0.0252777,0.104769,0.158253,-0.187788,0.216044,-0.175954,0.685035,-0.376446,-0.357955,0.133725,-1.62224,-0.862528,0.544853,-0.621556,-0.75455,-1.19944,-0.93918,0.517187,-0.724145,-0.861678,-1.90448,-0.855012,0.57289,-0.640356,-0.793662,0 +-0.0153325,0.479475,-0.0358025,-0.540026,-0.723106,-0.259653,0.926406,0.528971,0.0856081,0.860759,-1.43067,-0.842847,0.342902,-0.540215,-1.20346,-0.982489,-0.93866,0.379074,-0.665594,-1.32509,-1.66683,-0.83717,0.40862,-0.563574,-1.21165,0 +0.598607,-0.215354,1.51402,0.729842,-0.805646,-1.13997,0.117572,0.559226,-0.131456,0.28607,-1.33332,-0.576688,-0.00147921,-0.293386,-0.482514,-0.835651,-0.663775,-0.0340334,-0.419335,-0.488571,-1.91463,-0.465212,-0.213775,-0.115173,-0.416246,2 +0.22542,0.493099,0.196394,-0.399574,-0.570801,0.220982,0.763686,0.232406,-0.235874,0.263071,-2.35149,-0.916581,0.484753,-0.609811,-1.16891,-2.10854,-0.996022,0.482833,-0.711192,-1.31239,-2.7893,-0.887446,0.514698,-0.617677,-1.15105,0 +-1.8569,-1.41659,-1.17259,-0.456476,0.171586,1.38611,1.56088,0.581985,0.488041,-1.50196,-1.58148,-1.06931,0.580066,-0.659167,-1.8062,-1.22836,-1.12737,0.622655,-0.767924,-1.77044,-2.06241,-1.06073,0.656499,-0.684395,-1.81138,0 +-1.46947,-0.588152,-1.28212,-0.760767,-0.0943638,0.907726,1.45742,1.01455,0.57209,-0.746365,-0.921349,-1.00281,0.49089,-0.63392,-1.80611,-0.392988,-1.071,0.538916,-0.747724,-1.70951,-1.17173,-1.00575,0.588682,-0.666833,-1.77669,0 +-0.503733,-0.0687463,-0.529331,-0.703306,0.622215,0.482264,1.0163,-0.0425492,-0.484773,-0.200472,-1.13688,-0.991554,0.580766,-0.65382,-1.1907,-0.733861,-1.0654,0.61158,-0.761877,-1.27317,-1.38411,-0.989806,0.664705,-0.681296,-1.22682,0 +-1.28919,-1.28357,-0.856851,-0.625334,1.43801,1.02139,1.12686,-0.0865976,-0.334796,-1.43881,-1.34874,-1.03222,0.57131,-0.658557,-1.4648,-1.0808,-1.03329,0.534348,-0.740298,-1.32084,-1.64647,-0.983389,0.615629,-0.672351,-1.35982,0 +-1.66507,-0.840978,-1.50773,-0.761617,0.740657,1.27637,0.784986,0.527382,0.584854,-1.332,-1.62076,0.564964,-2.11759,1.25391,-0.181761,-1.53673,0.564184,-2.79852,1.389,-0.201771,-2.21475,0.921499,-3.27868,2.13305,-0.190417,0 +-1.54294,-1.62165,0.323722,1.03983,1.12455,0.664575,0.712231,-0.849904,-0.861868,-1.98979,-0.759638,-0.744285,0.278634,-0.491519,-0.678877,-0.38873,-0.843467,0.308409,-0.6132,-0.706574,-1.19574,-0.763706,0.357445,-0.527562,-0.758959,2 +-1.93118,-1.88838,-1.35808,-0.771392,0.763586,1.26215,1.99344,0.806125,0.217903,-1.59666,-1.042,-1.05287,0.548322,-0.65384,-1.85318,-0.61258,-1.08002,0.553989,-0.753391,-1.73688,-1.40378,-1.02184,0.616108,-0.676878,-1.74737,0 +-1.81324,-1.80309,-0.233846,0.413507,1.37587,1.46386,1.06153,-1.1402,-0.744495,-2.22203,-1.04748,-0.869534,0.405172,-0.57199,-0.973813,-0.693261,-0.924957,0.40719,-0.671721,-0.917431,-1.48412,-0.864187,0.47027,-0.593169,-1.00171,2 +-1.40189,-1.08292,-0.593929,-0.587192,-0.334796,0.541505,0.87863,1.52686,0.814801,-0.561235,-1.4026,-1.05691,0.549051,-0.647603,-1.81056,-1.04781,-1.12894,0.599037,-0.762377,-1.91429,-1.80737,-1.03369,0.599077,-0.660546,-1.85524,0 +-2.13834,-0.818209,-1.90418,-1.07834,-0.273066,2.11105,2.1478,0.492629,0.971704,-1.52888,-1.58639,-1.04133,0.560536,-0.648682,-1.72556,-1.22158,-1.11209,0.578427,-0.751322,-1.91017,-1.84685,-0.996072,0.515718,-0.61172,-1.85533,0 +-1.19178,-0.978671,-0.911714,-0.738308,-0.0975722,1.78893,1.86622,-0.201781,-0.130026,-0.901579,-1.90101,-1.07263,0.608872,-0.662575,-1.83564,-1.76891,-1.12625,0.650201,-0.769393,-1.85182,-2.14945,-1.07199,0.692031,-0.690432,-1.90309,0 +-0.777929,-0.555008,-0.733991,-0.997571,0.38724,0.628382,1.13579,0.695729,-0.0967126,-0.186539,-1.48326,-0.954053,0.628642,-0.651731,-1.17775,-1.09951,-1.07051,0.642115,-0.764296,-1.39874,-1.51781,-1.00979,0.679967,-0.685094,-1.34361,0 +-0.339284,0.133864,-0.114904,-0.813422,-0.565463,0.363502,1.16619,0.700027,-0.110876,0.459135,-1.39979,-1.00109,0.619217,-0.65435,-1.36477,-0.993164,-1.08033,0.661996,-0.763356,-1.45403,-1.6237,-1.00868,0.6939,-0.682166,-1.39915,0 +-0.867635,0.542344,-1.3072,-1.33365,-0.825956,0.896031,1.89118,1.75466,0.51157,-0.200242,-0.986077,-1.10274,0.594839,-0.664495,-2.05797,-0.504133,-1.1534,0.63201,-0.771532,-2.03664,-1.20037,-1.09492,0.679637,-0.691721,-2.09225,0 +0.156573,1.49289,-0.255305,-0.537407,-1.49219,-1.03158,0.409809,2.33088,0.901988,1.081,-1.703,-1.03725,0.560845,-0.650501,-1.58566,-1.41563,-1.12114,0.61181,-0.764346,-1.76612,-2.1638,-1.00267,0.601706,-0.664824,-1.55369,0 +-0.0477966,0.311827,-1.15736,-0.38835,0.534588,-0.865926,-0.646144,1.52681,0.607632,0.390719,1.30615,0.156543,-0.711072,0.344222,0.343542,1.0208,0.851123,-1.51718,0.949255,0.719318,0.951105,0.484093,-0.983229,0.565373,0.650721,2 +1.02187,1.11892,0.516887,-0.485992,-1.40628,0.0111246,0.297974,-0.195954,-0.0500854,1.50304,1.21203,-0.604834,0.276025,-0.46922,-0.309698,1.81418,-0.760767,0.295465,-0.593409,-0.515638,1.5619,-0.644934,0.329649,-0.486172,-0.439135,2 +0.425932,0.111885,0.743936,1.13183,-0.00177913,-1.28188,-1.07974,-0.150117,0.0562025,0.253706,1.26774,0.739798,-1.32785,0.759678,0.680877,1.4096,0.759838,-1.96833,1.04507,0.67445,1.20677,0.723446,-1.36399,0.749103,0.635909,2 +0.876491,0.952474,-0.238943,0.422123,0.0965627,-1.71964,-1.44585,0.911364,0.500775,0.924727,1.24557,1.18704,-2.18492,1.55627,0.726475,0.986427,1.68823,-2.99016,2.21044,0.901539,0.863857,1.32123,-2.17178,1.53606,0.881218,2 +-0.166708,0.384532,-0.971455,-0.993333,-1.15397,0.55053,1.368,1.17672,0.605504,0.446032,0.901909,-0.991045,0.57138,-0.651711,-1.28725,1.49634,-1.09638,0.599077,-0.762117,-1.64186,1.22776,-1.03031,0.650821,-0.682206,-1.56715,0 +-0.661786,-1.46597,0.691262,1.93689,0.935292,-1.15195,-1.02416,-0.628053,-0.395186,-0.618887,0.85813,-0.0136932,-0.177433,-0.136423,0.354866,1.14334,-0.113335,-0.418385,-0.158023,0.256804,1.05236,0.00438787,-0.298124,-0.0696358,0.314606,2 +1.28508,1.04917,-0.0539836,0.686863,-0.187288,-1.90167,-1.70377,0.821568,0.292837,1.36562,1.08703,1.31965,-1.9124,1.35283,0.883328,0.844087,1.8488,-2.75254,2.22235,1.05431,0.741137,1.46149,-1.99671,1.50215,1.01345,2 +0.808374,1.09152,-0.616328,0.038571,-0.357645,-1.44559,-1.07834,1.273,0.861878,1.0707,1.107,0.868745,-1.80698,1.13258,0.59199,1.06477,1.30221,-3.04525,1.91785,0.684475,0.783307,0.930365,-1.84303,1.14369,0.688383,2 +1.42092,0.95933,-0.0290158,0.853882,0.0134034,-2.05616,-1.83703,0.579786,0.131796,1.4269,0.853052,1.66474,-2.24235,1.77168,1.06629,0.504293,1.74525,-2.34529,1.8976,1.10471,0.40837,1.51994,-1.75903,1.39436,1.1237,2 +-0.845756,-0.486342,-0.67488,0.477956,0.813762,-0.722046,-0.657658,0.678258,0.750453,-0.7363,0.195754,0.170047,-0.314776,-0.0388009,0.538996,0.247509,0.620136,-0.978671,0.385191,0.708403,-0.0402802,0.225999,-0.335746,-0.0289757,0.556817,2 +1.13814,1.15253,-0.272167,0.601045,0.273726,-1.92856,-1.71862,0.792812,0.198043,1.14163,1.13286,1.35055,-1.92733,1.51466,0.921879,0.611481,1.90993,-2.20798,2.11769,1.14955,0.703726,1.55674,-1.81637,1.53465,1.08784,2 +-1.61189,-0.719108,-1.49165,-0.648552,1.08777,1.55603,-0.0281462,1.78816,-0.0486961,-1.82627,0.435047,-0.840658,0.589072,-0.638607,-0.690192,-1.06809,-0.124459,1.49725,-0.365741,-0.291987,-0.753781,-0.451579,0.879879,-0.568452,-0.289888,2 +-1.63378,-1.14323,-1.35445,-0.71449,0.376566,1.12482,0.85741,0.736819,1.17738,-1.5012,1.52639,-0.736139,0.467611,-0.615169,-0.596348,0.53158,1.05555,0.464392,0.180712,0.153455,0.446132,0.234245,0.274036,-0.309478,0.137303,2 +-1.38095,-0.547082,-1.84835,-1.0645,0.61387,0.793861,0.537067,0.751732,1.28721,-0.852882,1.06813,-0.49075,0.106598,-0.406761,-0.503493,1.45819,-0.136083,-0.745605,-0.0436986,-0.125788,1.06389,-0.304181,-0.257824,-0.211017,-0.464813,1 +-1.45312,-0.161131,-1.85524,-1.56073,-1.29272,0.924038,1.47536,2.06891,2.26266,-0.260462,0.819409,-0.915412,0.433678,-0.589881,-1.2228,0.0640187,-0.917611,0.398195,-0.670142,-0.969745,0.392638,-0.87879,0.422193,-0.579096,-1.37639,1 +1.23605,1.19291,0.320173,-1.0636,-0.583894,1.26032,0.593459,-0.926466,-0.787244,0.579237,-1.42119,-0.536987,0.841328,-0.519925,-0.132245,-1.26711,-0.705824,0.811492,-0.645774,-0.213795,-1.08607,-0.59233,0.845616,-0.561925,-0.176054,2 +-1.42365,-0.132995,-1.87982,-1.63997,-1.41346,0.846516,1.52449,2.42593,2.49761,-0.384782,1.53003,-0.549441,-0.0258573,-0.38757,-1.08819,0.618377,-0.671651,0.44811,-0.548312,-0.747364,0.943718,-0.71443,0.264681,-0.483323,-1.05553,1 +-1.19821,0.077602,-1.58755,-1.54245,-1.2345,0.155704,0.954083,2.49709,2.2993,0.363272,1.94154,-0.529071,-0.350138,-0.124909,-1.62823,1.08714,-0.46924,0.311527,-0.421414,-0.570541,1.2738,-0.521835,-0.0666873,-0.255755,-0.895412,1 +0.0373417,0.105698,0.352248,-0.558536,0.258793,1.73759,0.350179,-1.51848,-0.704075,-0.664894,-0.624194,-0.044608,0.833412,-0.384062,0.45065,-0.809983,-0.412028,0.771152,-0.549491,0.277924,-0.485002,-0.339574,0.783676,-0.479595,0.254055,2 +-1.74552,-0.553679,-1.97784,-1.60505,-0.823617,0.360973,1.08602,2.58159,2.78438,-0.406371,1.957,-0.818499,0.280103,-0.542424,-1.56965,1.68349,-0.393477,0.154334,-0.48918,-0.436936,1.50861,-0.672541,0.241362,-0.508601,-0.881548,1 +0.170726,-0.709283,1.27965,1.29198,0.522454,-0.0099151,-0.415067,-1.05713,-0.949485,-1.10233,-0.792772,0.851223,0.332407,0.289039,1.15883,-1.72004,0.591171,0.813571,0.158872,1.02572,-1.31585,0.821368,0.364452,0.186949,1.13851,2 +1.08087,0.276445,0.855871,1.16254,-0.217723,-0.552639,-0.662316,-0.574649,-0.443553,-0.282642,-0.484243,2.12736,-0.643495,1.40913,1.49472,-1.32517,1.86841,0.3068,1.3415,1.36296,-1.07564,2.10859,-0.331628,1.34671,1.49918,2 +0.113385,-0.902568,1.85424,1.61534,0.22414,-0.12167,-0.535918,-1.14682,-0.888165,-1.15494,-0.318374,1.40593,-0.316555,0.754391,1.34179,-1.03455,0.969465,0.310608,0.5102,1.18601,-0.663635,1.23018,-0.130376,0.634849,1.28776,2 +-0.191796,0.140571,1.3058,0.492259,1.04882,0.330438,-0.219593,-1.01013,-1.10486,-1.36389,-0.820828,-0.0840088,0.887805,-0.366321,0.516717,-1.514,-0.233286,0.954153,-0.432178,0.476847,-0.810933,-0.14217,0.83733,-0.378814,0.504933,2 +0.145669,-0.164439,0.412998,-0.5719,0.364222,2.07897,0.787454,-2.02125,-1.19081,-0.708903,-0.716159,-0.431229,0.814961,-0.49051,0.0994315,-0.792232,-0.554179,0.777279,-0.608482,0.0946338,-0.299813,-0.454607,0.827495,-0.521515,0.0891862,2 +0.854472,-0.065158,1.26423,1.22707,0.0669472,-0.741077,-0.863847,-0.872523,-0.567042,-0.116543,-0.241462,1.87575,-0.739438,1.34138,1.46414,-0.803687,1.5383,-0.0232087,1.15014,1.33066,-0.361793,1.74756,-0.644215,1.22335,1.39401,2 +-1.1993,0.0364222,-1.88045,-1.60019,-1.43281,0.534218,1.63753,2.53101,2.11013,0.115164,1.92577,-0.501814,-0.179382,-0.288828,-1.32554,1.63124,-0.663415,0.220242,-0.499665,-0.975652,1.69967,-0.701637,0.168877,-0.436296,-1.20734,1 +1.01947,0.575898,1.26284,0.568052,-0.375956,0.0967927,-0.477546,-1.30743,-0.91866,0.412488,-0.891094,0.488691,0.935052,-0.00412783,0.948086,-1.37556,0.294716,1.12408,-0.0389609,0.854582,-0.773941,0.457876,0.843947,0.0150728,0.936701,2 +-1.31915,-0.373797,-1.52689,-0.881888,1.27669,0.613799,-0.0210797,1.14488,0.600726,-1.14634,0.620056,-0.083579,-0.0946036,-0.18281,0.189178,1.18965,0.280453,-1.08556,0.330058,0.0357826,0.894922,0.014433,-0.568781,0.0904159,0.0363021,1 +-0.997022,0.624214,-1.99156,-1.52694,-0.0375216,-0.00299848,0.292057,2.42986,1.61328,0.0935143,2.01281,-0.38709,-0.28655,-0.239143,-1.13085,2.20629,-0.145139,-0.450549,-0.214605,-0.270777,1.82419,-0.284191,-0.278284,-0.233556,-0.520875,1 +-0.0220592,0.51034,-0.0506052,-0.834331,-0.595489,1.91457,1.0995,-0.829154,-0.684155,-0.16255,-0.789494,-0.532019,0.787275,-0.580776,-0.423622,-0.963538,-0.815541,0.75488,-0.727414,-0.69506,-0.586743,-0.737329,0.77593,-0.642645,-0.519176,0 +-0.556108,0.701287,-0.615199,-0.578886,-0.526432,1.92725,1.13157,-0.50973,-0.537597,-0.536367,-0.678528,-0.6942,0.712651,-0.602335,-0.570411,-0.916451,-0.937291,0.697099,-0.740477,-0.915352,-0.389199,-0.845666,0.725705,-0.65386,-0.750703,0 +-0.339254,0.12333,-0.432408,-0.504763,0.28686,2.6318,1.48341,-1.87956,-1.14258,-1.4662,-1.31735,-0.723935,0.802157,-0.584114,-0.604694,-1.61338,-0.924427,0.793891,-0.719928,-0.954113,-1.01303,-0.793052,0.845966,-0.630841,-0.728074,0 +0.291647,0.498216,-0.105518,-1.18407,0.147818,2.23553,1.15151,-1.33882,-1.10904,-0.496327,-1.25748,-0.750163,0.825246,-0.572919,-0.718378,-1.49594,-0.914032,0.841828,-0.703635,-1.01068,-0.998271,-0.79688,0.881798,-0.614809,-0.787864,0 +0.802287,1.24837,0.160322,-1.05961,-0.893972,1.04552,0.251817,-0.10162,-0.536177,1.01907,-1.30008,-0.254265,0.970075,-0.484543,-0.240022,-1.38881,-0.677378,0.850144,-0.686374,-0.602755,-0.802717,-0.632011,0.789024,-0.620166,-0.418755,0 +0.500605,-0.444292,-0.279663,-0.887115,0.170966,1.52208,1.07357,-1.0881,-0.928515,0.0398406,-1.28406,-0.897361,0.669022,-0.639497,-0.95921,-1.60271,-1.04963,0.684205,-0.758918,-1.32828,-0.895901,-0.947766,0.739018,-0.67342,-1.16878,0 +-1.06971,-0.356136,-1.09201,-0.891703,1.19295,2.05466,0.601675,-1.10067,-0.444632,-1.22055,-1.54865,0.0501955,1.32584,-0.327789,-0.226499,-1.85727,-0.534978,1.05404,-0.63277,-0.795341,-1.20679,-0.580686,0.887616,-0.61279,-0.598937,0 +-0.384262,0.254495,-0.0861778,-0.79547,-0.123849,0.672531,0.740467,0.212106,-0.0329838,-0.111275,-1.29865,-0.345761,1.10713,-0.465722,-0.536677,-1.48976,-0.759718,0.916071,-0.692601,-1.03133,-0.790433,-0.754041,0.836551,-0.646064,-0.866106,0 +1.53858,1.07868,0.692381,0.568741,-0.359314,-1.12333,-1.14302,-0.176714,-0.268558,1.02235,-0.165569,2.1546,-0.852103,1.58009,1.50032,-0.878,1.74613,0.160052,1.44472,1.3511,-0.523034,1.97488,-0.611031,1.45156,1.44922,2 +-0.359364,0.899859,-0.595948,-0.437966,-1.28558,-0.0561125,1.40109,0.961049,0.349509,0.67516,-1.19798,-0.872883,0.610251,-0.641576,-0.886596,-0.957361,-0.995762,0.638877,-0.757949,-0.966987,-0.71382,-0.94076,0.658228,-0.674949,-0.969615,0 +0.462114,-0.277454,1.28231,1.5883,0.262382,-0.680337,-0.742686,-1.00675,-0.83725,-0.473618,-1.07841,2.25197,-0.61144,1.87179,1.62893,-1.79495,1.54212,0.174604,1.27788,1.40256,-1.38238,2.05188,-0.537177,1.66387,1.56983,2 +0.863787,0.436796,0.860849,-0.501714,0.497806,0.711102,-0.402203,-1.36286,-0.873452,0.14391,-0.441024,0.101241,0.870574,-0.248368,0.601416,-0.466222,-0.159162,0.957071,-0.370838,0.435707,-0.10144,-0.0476067,0.784156,-0.317774,0.516107,2 +0.590571,1.2438,0.0207998,-0.412518,0.866936,0.685714,-0.824186,-1.18472,-0.855931,0.0216395,-1.11149,0.168358,0.722566,-0.221801,0.658148,-1.06353,-0.0253076,0.913373,-0.310588,0.506162,-0.927796,0.0250877,0.665224,-0.271557,0.578187,2 +1.0516,0.969305,0.436017,-0.901089,-0.262022,0.374537,0.201301,-0.604814,-0.350878,0.726784,-1.19491,-0.397335,0.679627,-0.474158,0.167078,-1.15249,-0.581255,0.61154,-0.59146,0.0506953,-0.906046,-0.473548,0.704135,-0.522584,0.107367,2 +2.10965,1.51498,0.616078,0.644364,-1.13216,-1.42903,-1.05833,0.191516,0.0785816,1.42198,-0.440714,3.70601,-3.47465,4.21334,1.65274,-0.822277,3.34908,-2.32418,4.00824,1.44463,-0.851663,3.65225,-3.32719,4.34031,1.63663,2 +1.28224,2.18623,0.255735,-0.812992,-0.810353,0.253616,0.0158622,-0.377945,-0.226869,0.987357,-0.4297,0.481844,0.473418,-0.00958516,0.807605,-0.484943,-0.00386812,0.704905,-0.271417,0.568252,-0.189447,0.14324,0.646673,-0.208988,0.677608,0 +1.91508,1.58113,0.626733,0.421353,-1.02985,-1.11921,-1.06525,0.290977,0.0381314,1.22837,-0.578007,3.10018,-2.70305,3.24882,1.58834,-0.89858,3.18809,-2.56343,3.78369,1.40277,-1.01877,3.46067,-3.29162,4.07435,1.62047,2 +1.65924,1.007,0.896731,0.727703,-0.948736,-1.19244,-1.07362,0.188728,-0.044678,1.08269,-0.771162,3.25493,-3.14998,3.5894,1.59398,-0.979371,2.86739,-2.35114,3.29433,1.37422,-1.14004,3.14003,-3.05101,3.63604,1.58451,2 +1.22004,0.512879,0.915532,1.17223,-0.165969,-0.946906,-1.23928,-0.384762,-0.549931,0.386971,-1.39867,2.53996,-1.19906,2.17022,1.63985,-1.86225,2.02162,-0.492339,1.88332,1.45556,-1.81986,2.48307,-1.29607,2.28432,1.62711,2 +2.25094,1.36006,0.733851,0.44899,-0.846726,-1.41356,-1.16299,0.130696,-0.0528341,1.4588,-0.26574,3.31175,-3.05208,3.75279,1.62514,-0.59207,2.9548,-2.38597,3.57868,1.45322,-0.63237,3.28018,-3.27156,4.05825,1.61908,2 +2.05409,1.19086,0.412638,0.318264,-1.35344,-1.22797,-0.963158,0.454847,0.401144,1.61132,0.0534938,3.57882,-4.80191,5.02458,1.5152,-0.161991,2.82447,-3.55636,3.94453,1.34018,-0.256534,3.23349,-4.55551,4.77287,1.49433,2 +0.936931,0.982009,0.350129,0.544193,0.374237,-0.316275,-0.807615,-0.502254,-0.553179,-0.287799,-0.0585013,2.66026,-2.91699,3.49947,1.51799,-0.624154,1.98122,-1.52382,2.21577,1.40898,-0.519036,2.44551,-2.53976,2.97728,1.51557,2 +-0.288009,-1.06079,1.80484,1.38251,0.121251,0.0066368,-0.59284,-0.79562,-0.563014,-1.13224,-0.154254,1.48691,-1.03603,1.1799,1.31117,-0.501494,0.895601,-0.405591,0.602465,1.08899,-0.372568,1.15168,-0.902958,0.896401,1.17922,2 +1.31119,0.677408,0.514738,0.603234,-0.794261,-0.923478,-0.798159,0.419984,0.340493,0.413138,-0.0130736,3.08724,-4.14563,3.96415,1.34025,-0.212316,2.50581,-3.14918,3.02936,1.14874,-0.471059,2.7707,-3.67364,3.4092,1.31846,2 +0.871313,0.746155,0.452928,-0.352018,-0.290048,0.380234,-0.239123,-0.457836,-0.34743,0.380184,-0.513788,0.385751,0.559956,-0.0850282,0.726205,-0.801588,-0.00524744,0.83701,-0.275225,0.564344,-0.498876,0.0519846,0.675699,-0.250807,0.620066,2 +0.873113,0.451669,1.47597,1.39511,-0.460455,-0.829264,-0.946317,-0.610981,-0.638397,0.180782,-0.727634,3.0173,-1.89782,3.04286,1.71002,-1.14414,2.13088,-1.09491,2.07006,1.45263,-1.0664,2.64737,-1.83117,2.63716,1.62675,2 +1.74071,1.05109,0.702596,0.51047,-1.02622,-1.26136,-0.967866,0.468381,0.104639,1.24388,-0.410859,3.23137,-3.78095,3.9559,1.53635,-0.680297,2.64222,-2.87598,3.31717,1.34507,-0.804446,2.96811,-3.56131,3.76974,1.5359,2 +1.56015,0.845576,0.681546,-0.807684,-0.336046,0.77577,-0.0445482,-1.29335,-0.847435,1.02745,-1.28365,0.240882,0.889574,-0.123849,0.671142,-1.46295,0.0784916,1.01933,-0.218623,0.568042,-1.20651,0.207948,0.849064,-0.112175,0.670022,0 +0.830823,0.256355,0.677229,0.00621685,0.277514,0.377155,0.110226,-1.33279,-0.85841,-0.0497656,-2.03502,-0.247869,0.96053,-0.391128,0.305211,-2.70878,-0.382123,1.10359,-0.44912,0.20351,-2.16332,-0.212206,1.00684,-0.381673,0.368699,2 +0.489111,0.173195,0.317355,-0.538606,-0.146498,1.02191,0.687184,-1.08287,-0.614369,0.014383,-1.74892,-0.3477,0.582815,-0.466851,0.182451,-1.73155,-0.583025,0.608702,-0.610271,0.0644286,-1.56233,-0.474598,0.661326,-0.516267,0.0940338,0 +1.90633,1.70791,0.750473,0.760088,-0.793881,-1.53635,-1.06637,-0.0927147,-0.0528341,1.15954,-0.167518,3.86073,-3.59946,4.67424,1.68125,-0.85827,3.10115,-1.51942,3.7267,1.59915,-0.637618,3.56527,-2.99412,4.32861,1.65391,2 +1.03307,1.03384,0.935682,-0.394687,-0.144199,0.486712,-0.410039,-0.77574,-0.919769,0.585793,-0.158402,0.325041,0.976972,-0.159122,0.691522,-0.512169,0.262272,1.32023,-0.14228,0.618777,-0.038631,0.173625,0.909065,-0.227498,0.623794,2 +-0.560576,0.325601,-0.153245,-0.452528,0.610821,1.65899,0.433358,-1.31269,-0.733491,-0.921479,-0.22559,-0.322272,0.659587,-0.487221,0.181641,-0.270558,-0.657528,0.670432,-0.647203,-0.0653979,0.0733342,-0.548711,0.717399,-0.564913,-0.0138333,0 +-0.30535,-0.0344231,0.119991,-0.382183,0.494638,0.724475,0.567382,-1.11701,-0.890244,0.154325,-0.110676,-0.848774,0.569141,-0.620386,-0.661016,-0.12331,-0.927266,0.568981,-0.727064,-0.69399,0.240502,-0.83764,0.635919,-0.647053,-0.636688,0 +-0.222271,0.354157,-0.785256,-0.617018,-0.416206,1.12159,0.948985,0.505752,0.0274666,-0.581605,-0.51118,-0.834671,0.650302,-0.628932,-0.825176,-0.630751,-0.977991,0.689132,-0.747574,-1.01016,-0.263641,-0.901309,0.703875,-0.665074,-0.890924,0 +-0.196714,0.534858,-0.424872,-0.89783,-0.638697,1.0667,0.617787,0.478256,-0.178712,0.382813,-0.330158,-0.668263,0.638767,-0.61162,-0.506242,-0.393887,-0.894472,0.655079,-0.743036,-0.733981,-0.105928,-0.831453,0.677408,-0.659167,-0.676139,0 +1.32603,0.829144,0.71456,0.498985,-0.771232,-0.999421,-0.795381,0.515627,0.270128,0.463353,0.0558527,2.93141,-3.44941,3.51718,1.4121,-0.303012,2.75857,-2.80195,3.23317,1.23012,-0.316245,2.9483,-3.52372,3.60984,1.39469,2 +0.167288,0.194555,1.60147,0.69467,0.577337,-0.147987,-0.423283,-1.07352,-1.00406,-0.623455,-0.341273,0.587193,0.731202,0.0282463,0.999721,-0.978171,0.491859,1.10991,0.0868175,0.930994,-0.435377,0.517907,0.69452,0.0137834,0.967176,2 +0.153475,-0.453118,1.25813,0.948485,0.362802,-0.463333,-0.317764,-0.746974,-0.704735,-0.426331,1.03106,-0.176234,0.0913453,-0.233296,0.386121,-0.349739,0.170387,0.601925,-0.12147,0.722257,0.129447,-0.0133335,0.318474,-0.252366,0.604264,2 +-0.0173615,-0.0177712,1.24095,0.552379,0.228018,-0.476327,-0.267529,-0.596058,-0.524963,-0.0804905,0.20456,-0.40751,0.394567,-0.4895,0.198823,-0.16289,-0.182591,0.538796,-0.451469,0.415437,-0.218093,-0.340693,0.50988,-0.507871,0.273896,2 +-1.27972,-1.85139,0.481384,1.0239,1.62926,0.44869,0.147048,-1.16762,-0.723835,-2.06523,1.26805,-0.675119,0.414847,-0.543694,-0.257114,0.0559826,-0.328059,0.67277,-0.495517,0.349819,0.542624,-0.520925,0.532889,-0.534138,0.0284959,2 +-0.344002,-1.33112,1.87735,1.40561,0.298994,-0.278124,0.161851,-1.1435,-0.924507,-0.947346,1.09368,-0.534418,0.418975,-0.505932,0.0108549,-0.189347,-0.446871,0.67369,-0.525503,0.258753,0.474708,-0.453128,0.534688,-0.505462,0.156293,2 +-0.167088,-0.870993,1.27916,0.73404,0.418735,-0.368969,-0.117672,-0.53167,-0.646223,-0.4093,1.41199,-0.550091,0.425142,-0.537837,-0.0202599,0.997222,-0.303831,0.61266,-0.505163,0.269038,1.19524,-0.47065,0.555468,-0.547322,0.0924146,2 +1.50703,1.33919,0.262352,-0.661106,-0.38738,0.634319,-0.123809,-1.0753,-0.732531,0.971844,-0.404972,0.448041,0.957461,-0.0130335,0.783157,-0.558656,0.111066,1.14091,-0.186099,0.584274,-0.169287,0.251437,0.913723,-0.141541,0.687213,0 +1.20951,0.824096,1.1451,0.091655,-0.236874,-0.609921,-0.681496,-0.290568,-0.651991,0.948896,-0.67509,0.0504154,0.949915,-0.213845,0.588922,-1.46019,-0.198383,1.10607,-0.28634,0.386841,-0.698358,0.0172716,0.886786,-0.212146,0.564364,2 +0.00141933,0.337565,0.544653,0.425342,0.0229088,-0.463843,0.10236,-0.324641,-0.323671,-0.00902551,1.1534,-0.252386,-0.426671,0.0530042,-0.161961,1.70256,-0.0809604,-1.3214,0.438335,-0.176783,1.18144,-0.196744,-0.623335,0.248049,-0.167388,2 +0.328739,-0.386161,1.27033,0.684085,-0.0222191,-0.956212,-0.2864,-0.0539536,-0.332627,0.179662,0.924487,-0.460554,0.177643,-0.445572,-0.0933641,1.61894,-0.46909,-0.067657,-0.412898,-0.12162,1.08674,-0.480255,0.229118,-0.463923,-0.131486,2 +-1.2569,-1.46328,0.472319,1.26147,0.75571,-0.155054,0.638447,-0.775011,-0.546202,-1.32474,1.27071,-0.646813,0.200412,-0.460784,-0.521035,1.78264,-0.582755,-0.0687764,-0.405471,-0.350668,1.40832,-0.648193,0.264671,-0.491819,-0.540176,2 +-1.26254,-1.50758,-0.174954,0.69398,1.85,0.835061,-0.0250078,-0.706954,-0.834871,-2.17176,0.710852,-0.685184,0.405182,-0.526332,-0.304791,-1.31672,-0.222011,0.990255,-0.412868,0.401663,-0.698568,-0.310968,0.643875,-0.480485,0.32605,2 +-0.831563,0.647823,0.0379514,-0.0663176,1.34667,0.213496,-0.322382,0.600676,-0.608892,-1.46309,0.993624,-0.0659876,-0.411408,0.246679,0.294886,-0.588292,1.40924,0.384761,0.7358,1.0878,-0.288429,1.12241,-0.0646583,0.460075,1.09694,2 +0.392078,0.807804,0.952054,-0.20514,0.0175314,0.131386,0.120181,-0.706254,-0.786105,0.274186,-1.79537,-0.401733,0.250677,-0.390839,0.074034,-1.57458,-0.619747,0.360933,-0.578277,-0.149367,-2.11631,-0.447051,0.341753,-0.438175,0.00775609,2 +-0.422313,-0.310568,-0.24482,-0.216364,0.81785,1.31877,0.512339,-1.04048,-0.943158,-0.863707,-1.71072,-0.729193,0.580406,-0.580656,-0.459065,-1.43602,-0.790763,0.433578,-0.649722,-0.585503,-2.05654,-0.681297,0.523014,-0.565433,-0.40803,0 +-0.482814,0.213565,-0.541435,-1.01655,-0.486222,0.93863,1.23725,0.126208,0.083809,0.237024,-1.81299,-0.799718,0.667383,-0.639617,-0.904727,-1.37304,-0.982069,0.679557,-0.758009,-1.15766,-2.09154,-0.941019,0.701876,-0.680817,-1.08453,0 +-0.529801,-0.113025,-0.127268,-0.765695,0.813392,1.29339,0.480815,-0.763456,-0.882238,-0.374477,-1.97123,-0.925027,0.627733,-0.644204,-0.940399,-1.59215,-1.03372,0.649292,-0.75494,-1.17772,-2.21344,-0.91924,0.69562,-0.668962,-0.953363,0 +-0.444632,0.81727,-0.424852,-1.14697,-0.600076,0.868815,1.07063,0.718038,0.030735,0.210567,-1.76603,-1.03436,0.596198,-0.656748,-1.54796,-1.30051,-1.10652,0.625214,-0.764376,-1.69,-2.04481,-1.02119,0.67457,-0.682226,-1.51203,0 +-0.38735,0.445572,-0.990735,-1.09513,-0.476927,1.80838,1.70023,-0.497576,-0.53155,0.0648383,-1.9258,-0.992404,0.614159,-0.650431,-1.35661,-1.4377,-1.07688,0.645904,-0.761367,-1.48734,-2.18548,-0.988306,0.698058,-0.678368,-1.35286,0 +-0.976222,-0.624564,-0.714061,-1.22722,1.05028,1.39111,1.23495,9.94621e-06,-0.356645,-1.07067,-2.4683,-0.950285,0.650352,-0.646893,-1.16837,-2.04646,-1.04673,0.656159,-0.757179,-1.36512,-2.65988,-0.969965,0.696519,-0.679097,-1.18256,0 +-0.0966127,0.77533,-0.538876,-0.903737,-0.0672571,0.187968,0.700187,0.0675969,-0.0206398,0.63355,-1.362,-0.826035,0.538326,-0.607732,-0.778319,-0.903917,-0.968266,0.515088,-0.711612,-1.07034,-1.58517,-0.884957,0.549421,-0.626543,-1.01836,0 +0.149637,0.190927,0.228468,-0.370049,-0.176274,0.139432,0.415796,0.166988,-0.497356,0.463293,-1.39252,-0.743106,0.535508,-0.582035,-0.424432,-1.14468,-0.855221,0.556247,-0.698778,-0.576108,-1.69948,-0.765925,0.574829,-0.603424,-0.534928,0 +-0.626413,-0.451439,0.0643785,-0.151586,0.716469,0.49045,0.150356,-0.0693561,-0.588472,-0.495917,-1.18887,-0.891603,0.575478,-0.6332,-0.835551,-0.797689,-0.968736,0.560276,-0.733571,-0.944757,-1.46618,-0.883777,0.622255,-0.655159,-0.855561,0 +-0.859019,-0.739968,-0.412468,-0.42867,0.251537,0.717929,0.85845,0.584754,-0.109936,-0.69521,-1.14708,-0.930045,0.55061,-0.6325,-1.02672,-0.764816,-1.04454,0.57197,-0.742656,-1.34847,-1.47792,-0.950595,0.61349,-0.654959,-1.22139,0 +-0.554948,0.0545134,-0.218293,-0.645294,0.371268,0.848015,0.559876,-0.318984,-0.437016,-0.150846,-1.14283,-0.835371,0.536577,-0.608752,-0.679547,-0.71551,-0.954113,0.542514,-0.723436,-0.861468,-1.36734,-0.880259,0.594249,-0.642545,-0.863457,0 +-0.912153,-0.742037,-0.773461,-0.95893,0.135764,0.708673,1.77816,0.439195,0.0666974,-0.352058,-1.22466,-0.913053,0.646414,-0.650341,-1.18745,-0.880879,-1.05583,0.660486,-0.764955,-1.4006,-1.50283,-0.998151,0.697379,-0.684795,-1.32633,0 +-1.71302,-0.523254,-1.7047,-1.01497,-0.765395,1.08017,1.84978,1.70333,1.39673,-0.935172,-1.52345,-0.982949,0.556018,-0.641906,-1.37488,-1.45341,-1.05733,0.52974,-0.741987,-1.85761,-1.90455,-0.986467,0.583195,-0.661006,-1.8385,0 +-1.5273,-1.52687,-1.60178,-0.922118,-0.067337,1.96671,1.62923,0.416186,0.243061,-0.779958,-1.43856,-1.09734,0.600086,-0.663825,-2.04883,-1.11008,-1.1378,0.641836,-0.769773,-1.92862,-1.77706,-1.08128,0.683006,-0.690652,-1.94573,0 +-1.19355,-0.427121,-1.03058,-0.742556,-0.337255,1.3668,2.20179,0.136863,-0.169007,-0.554219,-1.61912,-1.07436,0.602765,-0.662585,-1.76673,-1.25667,-1.13077,0.639757,-0.769373,-1.78863,-1.92063,-1.06047,0.686014,-0.689092,-1.7318,0 +-0.371958,-0.700407,-0.644874,-0.750952,0.0319144,0.8171,0.529171,0.708263,0.115583,-0.199122,-1.43236,-0.833082,0.651431,-0.643345,-0.913563,-1.0246,-0.99992,0.667053,-0.759518,-1.1628,-1.70928,-0.944098,0.69504,-0.680367,-1.02878,0 +-2.08828,-2.35694,-1.19424,0.267789,2.28103,1.36857,0.369999,-0.547932,-0.53164,-2.38034,-1.6438,-0.97978,0.587472,-0.656448,-1.07867,-1.6039,-0.98027,0.57225,-0.754091,-1.01853,-2.24643,-0.932314,0.648263,-0.679197,-0.949015,0 +-2.01492,-1.70998,-1.37226,-0.827005,1.14578,2.01384,1.71011,-0.118722,-0.302872,-1.72787,-1.68077,-1.0715,0.598407,-0.662206,-1.71158,-1.2848,-1.11285,0.63276,-0.767974,-1.5835,-1.80143,-1.05317,0.678828,-0.688963,-1.61478,0 +-1.34769,-0.301712,-1.26845,-0.96017,-0.895022,0.977581,1.74593,1.34843,0.866076,-0.310918,-1.76864,-0.845796,0.667283,-0.646084,-1.27223,-1.39487,-1.02074,0.677568,-0.763216,-1.64139,-1.82711,-0.999441,0.698638,-0.686544,-1.4613,0 +-0.971834,0.161731,-1.14721,-1.38465,-1.70389,1.11682,1.46555,1.59362,1.61046,0.119262,-1.81929,-0.903588,0.649622,-0.65246,-1.48036,-1.33992,-1.04163,0.671541,-0.765265,-1.72956,-2.13978,-1.00932,0.696759,-0.688073,-1.54211,0 +-0.267619,-0.0720847,-0.808614,-1.44378,-1.15584,1.47809,1.3849,0.503443,0.568622,0.416826,-1.99518,-1.06519,0.621945,-0.659927,-1.94596,-1.52869,-1.14004,0.654589,-0.768954,-2.16961,-2.28605,-1.06152,0.704775,-0.687693,-1.95143,0 +-0.691202,0.808794,-0.993594,-1.08481,-1.34677,0.823747,1.43955,1.23806,0.55141,0.521765,-1.60723,-1.06936,0.618617,-0.661146,-2.00314,-1.22626,-1.13594,0.654869,-0.769263,-2.1597,-1.98566,-1.06796,0.701387,-0.688763,-2.00216,0 +-0.691421,0.466492,-0.507871,-1.43801,-1.31874,1.16443,1.25943,1.37795,0.488371,0.501395,-1.46938,-1.07997,0.614709,-0.661366,-2.07007,-1.19453,-1.14592,0.649972,-0.769563,-2.19379,-1.67118,-1.0763,0.697549,-0.688933,-2.0839,0 +-1.22312,-0.232086,-0.916931,-0.789853,1.52796,0.728074,0.436896,0.707983,-0.383132,-1.22858,-1.56228,-0.894042,0.637888,-0.644224,-0.85746,-1.40632,-0.94044,0.638807,-0.745615,-0.722426,-1.88984,-0.897551,0.668353,-0.67309,-0.825076,2 +-0.964998,-0.156064,-0.377885,-1.17984,0.340703,0.63367,0.223141,0.473258,-0.168278,0.713621,-1.45115,-1.02047,0.610331,-0.658487,-1.3558,-1.26783,-1.1034,0.631661,-0.767874,-1.48572,-1.72695,-1.01552,0.682756,-0.686334,-1.34074,2 +-2.00429,-0.782847,-1.84921,-1.23071,-0.555078,1.65726,2.82166,1.56265,0.646563,-1.19767,-1.81939,-1.13426,0.59264,-0.666154,-2.52155,-1.67163,-1.18336,0.63193,-0.772652,-2.60922,-2.14489,-1.12365,0.678458,-0.69322,-2.55023,0 +-0.478146,0.662726,-0.764506,-1.43949,-1.14934,0.800268,1.33346,1.08645,1.38607,-0.139022,-1.81888,-1.08831,0.616348,-0.661546,-2.23188,-1.52299,-1.14742,0.654279,-0.769293,-2.36815,-2.17188,-1.0793,0.702736,-0.688833,-2.2432,0 +-0.44906,-1.25871,1.01386,0.422683,-0.411698,0.0577918,1.00051,-0.189597,-0.282432,-0.36734,-1.11743,-0.981969,0.539396,-0.651341,-1.23791,-0.299054,-1.03237,0.558746,-0.753571,-1.23661,-1.47129,-0.976192,0.626423,-0.678398,-1.23032,2 +-0.276045,0.1029,-0.305451,-0.435827,0.263301,-0.32647,-0.0807805,0.724225,0.138382,0.373507,1.29918,-0.829584,0.443723,-0.582285,-0.687853,1.23877,-0.667403,0.381863,-0.604954,-0.135983,1.08605,-0.789664,0.534089,-0.610321,-0.536637,2 +0.404912,0.119761,-0.386381,0.153735,0.409929,-0.738598,-0.75645,0.00510745,0.0397406,0.682656,0.790483,-0.0313845,-0.0751131,-0.119621,0.474378,0.390739,0.115983,-0.117872,-0.0230886,0.538546,0.542834,-0.024578,-0.0277363,-0.12257,0.466322,2 +-0.114184,-0.546722,-0.188778,-0.605144,0.354047,1.01709,0.0848184,-0.743446,-0.198533,-0.024418,1.01236,-0.644065,0.541015,-0.523893,-0.261452,0.668943,-0.651141,0.756849,-0.645894,-0.312467,0.829694,-0.683166,0.624944,-0.543904,-0.34757,2 +0.155864,0.201901,0.0354926,-0.657638,0.258833,0.962479,-0.138262,-0.887675,-0.354526,0.169367,1.30071,-0.573189,0.657178,-0.587232,-0.127417,1.02152,-0.566183,0.83662,-0.650651,-0.159142,1.22831,-0.624854,0.749653,-0.619597,-0.182251,2 +0.603924,0.486192,0.284511,-0.421164,-0.240412,-0.20326,0.924577,-0.139742,-0.5097,0.563964,1.27046,-0.909185,0.512689,-0.63239,-0.951314,1.83073,-0.98055,0.541645,-0.739348,-0.965197,1.59959,-0.916102,0.602735,-0.662915,-0.982679,0 +0.160272,-0.225619,0.30682,-0.045068,0.587053,0.454028,-0.36679,-0.936352,-0.573999,-0.0645084,1.49644,-0.536137,0.534448,-0.561365,-0.0327538,1.57443,-0.499975,0.61158,-0.619057,0.0607703,1.58116,-0.557007,0.606883,-0.588802,-0.0464174,2 +-1.75446,-1.73639,-1.3954,-0.870364,-0.0333037,0.961349,1.18772,1.08828,1.5474,-1.07161,2.16347,-1.03924,0.546113,-0.651871,-1.6627,2.08464,-1.01306,0.53017,-0.73624,-1.24903,1.95361,-0.997592,0.602785,-0.667433,-1.51612,2 +-1.14296,-0.874652,-0.949225,-0.822547,0.129137,0.590421,0.573759,0.861658,0.827075,-0.32777,2.1711,-1.01687,0.537967,-0.645584,-1.49542,2.04974,-0.995672,0.519575,-0.730013,-1.07217,2.06916,-0.985108,0.606433,-0.664475,-1.3512,2 +0.699817,0.948815,0.823527,-0.515767,-0.261642,0.00270872,0.400654,-0.744416,-0.67308,0.85754,1.25888,-0.736239,0.457876,-0.581465,-0.394717,1.83211,-0.839699,0.465352,-0.688073,-0.49065,1.66557,-0.752842,0.545923,-0.61333,-0.439905,0 +-0.91879,-0.161801,-1.08494,-1.04719,-0.665684,0.098142,0.707923,1.45704,1.6575,0.119032,2.14785,-0.955432,0.432738,-0.582605,-1.45195,2.05741,-0.931004,0.343112,-0.641366,-1.25115,1.9924,-0.922219,0.503673,-0.611161,-1.35048,2 +0.637778,0.519316,-0.273856,0.289598,0.14327,-1.37438,-1.09448,0.566193,0.293676,1.03084,1.17081,0.296245,-0.538556,0.176284,0.59316,1.08066,0.656529,-1.11621,0.626673,0.717329,1.07597,0.353687,-0.651441,0.288229,0.626083,2 +-0.644774,-0.00125933,-0.405532,-0.883687,-0.363822,-0.233845,0.323791,1.39511,1.02392,0.341963,2.07698,-0.997861,0.493039,-0.605683,-1.44329,1.91381,-0.978571,0.464103,-0.701247,-1.15312,1.73978,-0.948756,0.553779,-0.625394,-1.24217,2 +0.87821,0.774201,0.562934,-0.46984,-0.618767,-0.287989,0.573279,-0.0976722,-0.419474,1.04096,0.547392,-0.845596,0.521715,-0.607822,-0.69475,1.31021,-0.950285,0.517696,-0.71545,-0.842897,0.913493,-0.851983,0.577777,-0.63385,-0.741277,0 +-1.20223,-0.2651,-1.308,-1.20529,-0.953783,0.344701,0.987666,1.72207,1.9384,0.0392609,1.64289,-1.01092,0.529411,-0.642445,-1.46778,1.91447,-0.954123,0.482164,-0.704745,-1.18333,1.57253,-0.966417,0.568332,-0.65311,-1.42306,2 +-0.67458,-1.05076,-0.335936,0.519345,0.765555,-0.369249,-0.677598,0.0869074,0.288029,-0.372957,0.144439,-0.34661,0.179702,-0.38866,0.145289,0.0888565,-0.161571,0.0509749,-0.310608,0.26572,0.130756,-0.322732,0.227409,-0.397635,0.1628,2 +-1.41635,-0.851213,-1.36201,-1.20721,-0.717519,0.499475,0.69501,1.86535,2.22046,-0.337605,1.04734,-1.04054,0.555068,-0.657128,-1.66589,1.0803,-1.03283,0.559236,-0.743546,-1.47064,0.907556,-1.00371,0.615429,-0.675859,-1.61074,2 +-1.08006,-1.38294,-0.210717,0.0298653,1.1703,1.555,0.253496,-1.22829,-0.589751,-1.4765,1.19247,-0.69475,0.566403,-0.596768,-0.289318,1.10075,-0.679197,0.664445,-0.670862,-0.213076,1.23446,-0.748684,0.651041,-0.635199,-0.40821,2 +-0.651791,1.20286,-0.956222,-1.30688,-0.716559,0.24506,1.21094,1.55482,0.69459,0.322002,-0.110116,-1.07182,0.585743,-0.662376,-1.71848,0.697429,-1.13689,0.629312,-0.769533,-1.86696,0.36841,-1.07202,0.669132,-0.689512,-1.86323,0 +-0.406721,-0.847965,-0.0872473,1.14969,1.39526,0.0495658,-0.910354,-1.32911,-0.79635,-0.808054,-0.318844,-0.341603,0.276305,-0.425801,0.201442,-0.129726,-0.297234,0.0450678,-0.432578,0.16335,0.0117643,-0.24443,0.190387,-0.396966,0.191666,2 +0.187948,-0.49045,0.584094,0.683615,-0.242421,-0.354057,0.154194,-0.38846,-0.164679,-0.0957631,-0.196504,-0.396326,0.30662,-0.447081,0.0876573,0.242951,-0.579206,0.273686,-0.561925,-0.0935741,0.342113,-0.51018,0.324681,-0.485392,-0.129777,2 +-1.37988,1.09522,-1.868,-1.57241,1.47854,1.14198,-0.156763,0.931144,0.495248,-1.1179,-0.103869,-0.513908,0.536387,-0.515428,-0.219732,-0.169247,0.123899,-0.383172,-0.238643,-0.176144,-0.0419394,-0.220292,0.140411,-0.452838,-0.302502,2 +0.0437886,1.41014,-0.547302,-1.42194,-1.49077,0.134334,1.26917,1.1523,0.953993,1.04694,-0.362313,-0.690442,0.404092,-0.472289,-0.931874,0.310788,-0.822457,0.0992713,-0.396086,-1.20487,0.301872,-0.791273,0.238663,-0.395826,-1.11882,0 +1.25259,2.01732,0.40855,-0.896071,-1.26377,0.0311348,0.239013,0.0543333,-0.20436,1.56561,-1.03964,-0.38881,-0.124929,-0.0923047,-0.249947,-0.660207,-0.599696,0.0262171,-0.359084,-0.331208,-0.360553,-0.480795,0.0243682,-0.216204,-0.342273,2 +0.155894,0.00494763,0.689203,0.613859,-0.911784,-0.546752,-0.171986,0.036762,0.193325,0.565193,-0.112775,-0.385331,0.202681,-0.394527,0.049456,0.403702,-0.577477,0.194645,-0.528541,-0.152385,0.292967,-0.484853,0.232906,-0.437476,-0.151276,2 +-0.000539706,-0.337974,1.01366,1.54905,-0.191616,-0.972434,-0.591271,-0.32726,-0.332127,-0.116013,-0.839059,-0.312777,0.182131,-0.370039,0.138532,-0.556438,-0.446261,0.155274,-0.456347,0.0128738,-0.486112,-0.292567,0.133755,-0.356116,0.104179,2 +-0.252836,-0.886936,0.871903,1.54923,0.333197,-0.362053,-0.575008,-0.760748,-0.631071,-0.690762,-0.974203,-0.313326,0.197563,-0.389689,0.157653,-0.585283,-0.438895,0.16405,-0.48959,0.0641687,-0.6127,-0.316595,0.197793,-0.401523,0.115573,2 +0.548881,-0.294326,0.597957,1.5416,0.556528,-1.11206,-1.05827,-0.723966,-0.562874,-0.137673,-0.51031,0.345061,-0.0966426,-0.0310447,0.782667,-0.767754,0.240272,-0.0927347,-0.115723,0.748734,-0.660876,0.40907,-0.135813,-0.00386797,0.802887,2 +-0.453548,0.534568,-0.442294,-1.0298,-0.721237,0.644005,1.16284,0.737479,0.291137,0.255515,-0.745145,-0.950874,0.533369,-0.601246,-1.28612,-0.205899,-1.04835,0.565663,-0.728933,-1.50855,-0.128357,-0.966297,0.627793,-0.649492,-1.36687,0 +-1.01906,-2.14492,0.753261,1.7174,0.856221,0.377105,-0.186089,-1.38458,-0.649412,-1.69797,0.0718748,-0.392957,0.300353,-0.467541,0.148228,0.34726,-0.51014,0.307269,-0.562605,0.0797211,0.283511,-0.446012,0.341603,-0.492959,0.0253575,2 +-0.947846,-1.6728,0.282452,1.25577,1.23107,0.153365,-0.267069,-0.800098,-0.341303,-1.84066,0.243221,-0.0435785,0.0825596,-0.299233,0.47009,0.0757729,0.20421,-0.0214696,-0.165049,0.681756,-0.0193704,0.02053,0.034823,-0.267559,0.494828,2 +0.322972,-0.186319,0.369119,1.14112,1.06583,-0.682346,-1.15768,-0.528711,-0.567142,-0.700887,0.353467,0.481594,-0.210037,0.0914254,0.871104,-0.295515,0.640476,0.00950526,0.214415,1.00396,-0.155204,0.603425,-0.137772,0.158073,0.969915,2 +-1.40711,-1.9504,0.590761,1.38967,1.16271,0.723496,0.22504,-1.34859,-0.849264,-2.05493,0.196164,-0.621066,0.478416,-0.556647,-0.172066,0.525583,-0.689422,0.481654,-0.654969,-0.175464,0.57127,-0.648673,0.503124,-0.587982,-0.273686,2 +-1.75182,-2.86822,1.04964,1.98939,2.02959,0.801158,-0.308249,-1.93732,-1.19013,-2.90745,0.173935,-0.340853,0.342882,-0.466362,0.258314,0.118422,-0.277294,0.355286,-0.496507,0.423043,0.126068,-0.300633,0.349559,-0.466871,0.274885,2 +-0.933873,-0.97921,0.130136,1.31092,2.06375,0.0680367,-0.439855,-0.849504,-0.932053,-2.34763,0.12263,0.0475768,0.180222,-0.241302,0.616159,-0.461364,0.49048,0.247259,0.0468871,0.926617,-0.2653,0.323312,0.0372519,-0.0924546,0.780808,2 +0.263901,0.250238,0.318694,0.670291,0.585343,-0.646533,-0.645724,-0.0303152,-0.376785,-0.397475,0.493728,0.403782,-0.042689,0.0203902,0.839849,-0.241772,0.765565,0.496507,0.291867,0.98143,-0.0121939,0.569002,0.0596809,0.101311,0.93975,2 +-0.863297,-1.02753,-0.0196004,0.883997,1.25542,-0.0513448,-0.36761,-0.278614,-0.167008,-1.60707,0.601775,-0.0519944,0.0976123,-0.288878,0.47041,0.210497,0.462583,-0.154195,0.0352628,0.801768,0.301453,0.213745,-0.0699357,-0.16316,0.61257,2 +-2.09021,-2.93953,0.392088,1.39696,2.16133,1.3646,0.171986,-1.82577,-1.19264,-2.8735,-0.217603,-0.797679,0.548681,-0.621706,-0.474987,0.0313847,-0.777159,0.535378,-0.699687,-0.256504,0.211167,-0.768584,0.578937,-0.638707,-0.466652,2 +-1.1725,-2.37631,0.318404,1.0514,0.848795,0.616978,0.443213,-1.03779,-0.474218,-1.53655,0.252386,-0.584304,0.436836,-0.559176,-0.12115,0.557917,-0.657418,0.40915,-0.650402,-0.125109,0.693231,-0.661676,0.479615,-0.594239,-0.313367,2 +-0.895162,-2.06004,1.02777,1.44108,0.69536,0.316365,-0.0909155,-1.12746,-0.700167,-1.41276,0.300933,-0.328069,0.229828,-0.410749,0.205909,0.542494,-0.424802,0.184859,-0.501265,0.168498,0.688543,-0.345971,0.22445,-0.421164,0.122,2 +1.2817,0.446292,0.5515,0.922478,0.247829,-1.29615,-0.871453,-0.567992,-0.4904,0.565773,0.136453,0.38903,0.00352834,0.00483778,0.860049,-0.430949,0.511959,0.111655,0.10238,0.970345,-0.0674769,0.608072,-0.003908,0.0958432,0.977281,2 +-0.114104,-1.00677,1.06565,1.6898,0.986337,-0.650741,-0.826166,-1.22717,-0.872313,-0.847855,0.419785,0.278094,-0.0870573,-0.0361322,0.760608,0.332317,0.213395,-0.123999,-0.0907055,0.743586,0.482434,0.354387,-0.173585,-2.98484e-05,0.757379,2 +1.05406,0.141801,0.59152,1.09027,0.083719,-1.55669,-1.10698,-0.179752,-0.24413,0.747094,0.489171,0.536338,-0.392758,0.170527,0.860139,0.456846,0.713131,-0.707584,0.377875,0.926656,0.473258,0.644884,-0.487851,0.221252,0.875071,2 +1.26959,1.81079,-0.443703,0.22512,0.434867,-1.29143,-1.48003,0.435597,-0.220422,0.928706,0.217923,0.691991,0.133255,0.160801,1.01212,-0.875481,0.976072,0.908545,0.549431,1.09269,-0.475267,0.872943,0.321593,0.321853,1.1228,2 +0.159122,0.168817,0.196024,-0.00517757,-0.777489,-0.309219,0.557407,0.272267,0.3467,0.315626,0.0786915,-0.496677,0.517627,-0.518206,-0.0186407,0.454328,-0.696969,0.435317,-0.631281,-0.303671,0.538207,-0.627053,0.485912,-0.559946,-0.276195,2 +0.236604,0.812002,-0.354646,-1.44114,-1.17715,0.529911,1.26725,1.05373,0.258453,0.98097,-0.549071,-0.967246,0.641306,-0.635699,-1.33325,0.096053,-1.07379,0.65407,-0.753151,-1.61007,0.293866,-0.98024,0.699867,-0.666633,-1.40475,0 +0.658897,0.643095,-0.215065,0.892573,0.557237,-1.48963,-1.14432,0.301033,-0.0274165,0.219113,-0.73567,0.484303,-0.0759527,0.0327741,0.889455,-0.945237,0.892533,-0.369669,0.339434,0.957721,-0.942978,0.649462,-0.126678,0.0643186,0.908505,2 +-1.42262,-2.92819,0.657898,1.31944,2.13927,0.8778,-0.364482,-1.48459,-1.13873,-2.38386,0.0545733,-0.410439,0.341933,-0.472409,0.139022,-0.345361,-0.281982,0.398925,-0.499116,0.427591,-0.0445581,-0.277294,0.345901,-0.452718,0.298534,2 +-0.425762,0.0414198,-0.622146,0.465952,0.950475,-1.42347,-1.13343,0.869644,0.466142,0.144489,0.275835,0.177603,-0.399184,0.0262973,0.513789,0.487491,0.635139,-1.05956,0.398215,0.628512,0.180592,0.252856,-0.389569,0.00766638,0.532939,2 +-0.112825,0.298964,-0.504573,0.537726,0.499685,-1.41094,-0.839069,1.01242,0.38708,0.179372,0.281272,0.226229,-0.379754,0.0287661,0.559156,0.357995,0.753301,-1.09355,0.484413,0.698458,0.107018,0.365471,-0.468191,0.0845188,0.604084,2 +-0.0863277,-0.405881,0.387001,1.07591,0.989546,-1.14147,-1.30031,-0.310088,-0.376526,0.0601506,0.783157,-0.0491558,-0.0900258,-0.195334,0.401364,1.27135,-0.124149,-0.281932,-0.216504,0.284801,0.909905,-0.0923648,-0.116953,-0.204999,0.311058,2 +0.514068,1.33244,-0.905557,-0.270308,0.0195704,-1.58965,-1.17869,1.54414,0.719118,1.40577,1.33426,0.18475,-0.310008,0.00455792,0.512439,1.34026,0.67421,-0.893443,0.401953,0.626134,1.20774,0.274466,-0.350089,0.0591612,0.580696,2 +0.949085,1.02628,-0.422173,0.5094,0.132765,-1.7735,-1.5746,0.763936,0.294646,1.27666,1.18909,0.625074,-0.813422,0.452209,0.747034,0.902268,1.20108,-1.27936,0.958081,0.93953,0.89899,0.872133,-0.863187,0.560606,0.887865,2 +0.026597,0.431689,-0.754771,0.10202,0.188358,-1.19235,-0.711142,0.987277,0.800078,0.457736,1.49265,0.141341,-0.44808,0.039151,0.338674,1.57041,0.726264,-1.32435,0.545423,0.484323,1.35241,0.30697,-0.583494,0.128107,0.420094,2 +-0.616958,-1.10867,0.272507,1.65133,1.18665,-0.904217,-0.830313,-0.310068,-0.347999,-1.1666,0.876611,0.151426,-0.200732,-0.110676,0.562855,0.678838,0.247769,-0.197733,-0.0996812,0.702836,0.700827,0.152515,-0.0702255,-0.176134,0.59152,2 +0.0605004,-0.345851,0.125948,1.41538,0.98079,-1.39528,-1.29582,-0.107687,-0.262351,-0.238693,1.19395,0.322222,-0.350838,0.0196405,0.632221,0.921049,0.493898,-0.459955,0.104519,0.789614,0.922329,0.366221,-0.213845,-0.0414995,0.707234,2 +-0.10212,-0.0418794,0.3875,0.201641,0.334406,0.32717,-0.196914,-0.646324,-0.59196,-0.174954,1.18176,-0.353877,0.00560732,-0.274026,-0.0442981,1.6181,-0.519686,0.0634788,-0.432668,-0.12315,1.14582,-0.154035,-0.589911,0.167978,-0.0282363,2 +-0.77637,-0.263741,-1.49923,-0.118372,1.23907,-0.495687,-0.451349,0.485292,0.393227,-0.0853482,1.49096,-0.260952,-0.0682065,-0.231177,0.0694362,1.50365,0.112395,-0.438056,-0.0684364,0.340094,1.2018,-0.140361,-0.0617797,-0.24425,0.250377,2 +0.519716,-0.014183,0.354586,1.23363,0.255705,-1.57132,-1.18075,-0.104879,-0.0177512,0.480205,1.02978,0.566413,-0.611361,0.236025,0.745685,1.12547,0.575188,-0.846426,0.291757,0.721407,0.850744,0.516607,-0.534938,0.161021,0.721647,2 +-0.112305,-0.55179,0.0808704,0.617367,-0.0982819,-0.267839,-0.685684,-0.301183,0.335076,0.131146,0.595528,-0.219562,-0.105388,-0.258673,0.12315,1.04833,-0.328769,-0.256504,-0.308729,-0.050865,0.600326,-0.261912,-0.0469269,-0.282751,0.0370717,2 +0.527802,0.353667,-0.383182,0.554688,0.154694,-1.65843,-1.23956,0.824116,0.432878,0.97998,0.546732,0.350399,-0.494128,0.111785,0.630771,0.698748,0.699657,-1.12396,0.471029,0.673001,0.352468,0.422443,-0.51072,0.135824,0.661896,2 +0.243901,0.1842,0.406181,0.2857,-0.608212,-0.573449,-0.247459,0.138772,0.390059,0.473128,0.832522,-0.44862,0.134184,-0.393987,-0.106847,1.3531,-0.624134,0.166658,-0.525463,-0.311407,0.956282,-0.498716,0.173805,-0.411928,-0.235705,2 +-0.721777,-0.547842,0.125708,0.150996,0.65316,0.313237,-0.453588,-0.234075,-0.406671,-0.225699,1.01518,-0.389419,0.34713,-0.375406,-0.2035,1.51517,-0.548032,0.0414996,-0.400534,-0.422573,1.13057,-0.411229,0.100091,-0.291417,-0.261072,2 +0.491849,1.32237,-0.325841,-1.26314,-1.54095,0.377765,1.05674,1.24375,0.495867,0.937661,1.01677,-0.949005,0.594389,-0.652071,-1.04381,1.81394,-1.06276,0.626373,-0.762677,-1.28485,1.34813,-0.986447,0.675969,-0.680057,-1.21999,0 +-1.70513,-1.50085,-1.29094,-0.06143,2.44555,0.394597,-0.193295,-0.014313,-0.125588,-1.65888,0.933403,-0.594379,0.434737,-0.569241,-0.161331,0.396146,-0.0879869,0.401763,-0.479415,0.373787,0.30649,-0.422383,0.539956,-0.570081,0.129716,2 +-1.98267,-1.26221,-2.48914,-1.68173,-1.56542,1.04561,1.48094,2.08514,3.89268,-0.692991,1.22011,-0.984458,0.503773,-0.630861,-1.45705,1.35802,-0.901329,0.616098,-0.717139,-0.985597,1.19821,-0.967676,0.601805,-0.642715,-1.20716,2 +-0.241162,-1.27557,1.34401,2.34809,0.468781,-1.39584,-1.34665,-0.637968,-0.472119,-0.492059,0.832263,0.647423,-0.772462,0.357255,0.805076,0.905867,0.814401,-1.39606,0.747974,0.8582,0.905557,0.646494,-0.893522,0.435567,0.778968,2 +-1.07177,-1.75888,0.546233,1.31564,0.549231,0.0528342,0.00331835,-0.732931,-0.228788,-1.27488,0.383632,-0.539296,0.247939,-0.496517,-0.20295,0.922608,-0.527662,0.133594,-0.533669,-0.112485,0.704895,-0.541215,0.303292,-0.507651,-0.229198,2 +-0.834481,0.222471,-0.69571,-1.13166,-0.941729,1.01835,1.9755,1.02333,0.314576,-0.152655,0.499466,-1.0629,0.589601,-0.662266,-1.65512,1.36335,-1.14132,0.620076,-0.769353,-2.00039,1.04698,-1.07106,0.668603,-0.689292,-1.85834,0 +0.103529,-0.438975,0.621816,0.116463,-0.806185,0.271717,0.683036,-0.522864,-0.048876,0.239833,0.651811,-0.751322,0.418305,-0.580216,-0.502814,1.34572,-0.811453,0.370508,-0.654939,-0.562684,1.08957,-0.769633,0.479875,-0.59256,-0.603824,2 +-1.01449,-0.730142,-1.5868,-1.30573,-1.51989,1.14928,2.12658,1.43329,1.54292,-0.0208497,0.401354,-1.07148,0.609492,-0.663335,-2.07187,1.25017,-1.15959,0.637748,-0.771792,-2.33747,0.985967,-1.106,0.678018,-0.692491,-2.24535,0 +-0.532199,-1.24095,0.836071,1.6248,0.0695759,-0.909125,-0.764776,-0.310848,0.248209,-0.559076,0.902938,0.440355,-0.844187,0.304551,0.571241,1.04365,0.71389,-1.60034,0.815121,0.721657,0.937651,0.51075,-1.02863,0.468841,0.610771,2 +-0.190407,-1.14953,1.61616,2.01942,0.12267,-0.849134,-0.842488,-0.726794,-0.704295,-0.53034,0.855101,0.178643,-0.315286,0.00366835,0.576388,1.20914,0.0392408,-0.515668,-0.0602205,0.468001,1.2691,0.147548,-0.379554,0.00407814,0.477776,2 +0.0275166,-0.795261,1.4436,1.65596,0.0111046,-0.806395,-0.784966,-0.769753,-0.578896,-0.189937,1.08237,0.051385,-0.28627,-0.067157,0.441994,1.50989,-0.0444882,-0.525213,-0.0781317,0.374007,1.42944,0.038811,-0.338064,-0.0387509,0.376326,2 +0.538986,-0.351048,0.665174,1.388,-0.387011,-1.43465,-1.09168,-0.0586613,0.186639,0.621206,1.17817,0.908445,-1.49512,0.906786,0.713301,1.2621,1.18445,-2.38424,1.51368,0.79666,1.24556,0.915592,-1.62841,0.999261,0.699248,2 +-0.125588,-0.862807,1.26179,1.70604,-0.155544,-1.17822,-0.485832,-0.36794,-0.256324,-0.170916,1.14136,-0.0956131,-0.174824,-0.190237,0.281582,1.44955,-0.0744536,-0.403193,-0.154694,0.351738,1.38741,-0.0540635,-0.197443,-0.152015,0.308189,2 +-0.0685764,0.174195,-0.491909,-0.0586514,0.485372,-0.81617,-0.642595,0.69438,0.189367,0.540785,1.70532,-0.47001,-0.0954832,-0.214085,-0.300683,1.16091,-0.376756,-0.16405,-0.20436,0.0669273,1.48514,-0.484943,0.0764327,-0.296165,-0.212506,2 +0.20349,-0.658927,0.85799,1.71315,0.0390109,-1.44778,-1.19746,-0.177743,-0.0860778,0.155614,1.17029,0.474858,-0.787314,0.294936,0.61255,1.15384,0.716559,-1.49273,0.73593,0.771333,1.11042,0.575328,-0.984448,0.480585,0.681516,2 +1.04533,0.519626,0.521115,0.997631,-0.445232,-1.59971,-1.36608,0.346041,0.160421,1.03312,1.03469,0.970955,-1.49142,0.947946,0.818739,0.821418,1.38633,-2.50567,1.74867,0.965967,0.795251,1.15466,-1.84142,1.29458,0.924447,2 +0.136073,0.483034,0.279713,-0.268848,0.174385,0.421014,-0.144409,-0.164979,-0.555048,0.0129837,0.729233,-0.297064,0.321393,-0.38803,0.176544,0.999321,-0.220052,-0.263371,-0.223271,0.120221,0.917701,-0.24446,0.0791513,-0.299813,0.10265,2 +-1.40643,-0.418915,-2.06891,-1.60038,-1.21131,0.44846,1.04598,2.24338,2.93648,-0.0401103,1.87148,-0.942588,0.46988,-0.618517,-1.49118,1.70196,-0.907256,0.44926,-0.657098,-1.09727,1.76463,-0.914762,0.525183,-0.621675,-1.22956,2 +-2.36662,-1.88998,-2.66499,-1.80413,-1.90211,1.5414,1.81549,2.33006,4.71207,-1.48112,0.921979,-1.06739,0.552629,-0.657128,-1.96729,1.04269,-1.07581,0.55148,-0.741877,-1.98263,0.83832,-1.0537,0.619647,-0.676159,-2.17762,2 +-1.4588,-0.280633,-1.92086,-1.79408,-1.38196,1.46213,1.82131,1.86696,2.10575,-0.376935,0.273536,-1.07895,0.595778,-0.664425,-2.12824,1.2074,-1.15473,0.63375,-0.771812,-2.38914,0.771782,-1.11043,0.67357,-0.692621,-2.35515,0 +-0.498616,-0.0175114,-0.664455,-1.56115,-1.28696,1.00072,1.6447,1.02071,0.97954,0.410849,0.77537,-0.987766,0.596008,-0.647683,-1.58634,1.48866,-1.08992,0.635719,-0.761527,-1.86687,1.24384,-1.03822,0.666814,-0.680847,-1.63345,0 +0.821978,0.271757,0.937201,0.593289,-0.524173,-0.958131,-0.730292,-0.146898,0.0232787,0.782917,1.54851,0.241882,-0.63281,0.216594,0.435637,1.11461,0.515408,-0.832742,0.456816,0.686094,1.2477,0.26522,-0.431129,0.135494,0.575988,2 +0.609662,0.466791,1.39657,1.06901,-0.299423,-1.45836,-0.789224,-0.144139,-0.403552,0.689503,1.50831,0.273126,-0.736589,0.335356,0.453988,0.802697,0.278434,-0.57274,0.299154,0.718598,1.19214,0.236574,-0.451249,0.193935,0.575448,2 +-0.276565,-0.233316,0.212546,0.50923,0.966027,-0.471139,-0.253536,-0.108847,-0.423393,-0.69503,0.0677768,0.359844,-1.08377,0.546613,0.445642,-0.351958,1.10927,-1.53329,0.874282,0.809154,-0.377055,0.737829,-0.950225,0.461494,0.727394,2 +0.0167518,-0.153435,-0.681976,-1.08781,-0.921129,1.2038,1.38562,0.0199802,0.201032,0.468851,-0.949615,-0.352647,0.804196,-0.549421,-0.250037,-1.06503,-0.794591,0.71355,-0.727514,-0.583714,-0.570321,-0.751462,0.726874,-0.65353,-0.556518,0 +0.526052,0.0631891,1.44015,0.226149,-0.222151,0.0670472,-0.203021,-0.801847,-0.702216,0.237614,-0.522594,0.192106,0.370948,-0.168018,0.758579,-0.620436,-0.139672,0.600936,-0.327859,0.539016,-0.273166,-0.0457376,0.443403,-0.258483,0.585413,2 +0.386371,0.126248,1.18813,0.0552328,0.607613,0.374627,-0.267009,-1.32194,-0.848824,-0.404792,-1.0952,0.0256875,0.61231,-0.264141,0.627253,-1.17312,-0.149437,0.740267,-0.356326,0.535658,-0.87858,-0.0885666,0.59214,-0.30626,0.533389,2 +0.171256,-0.552739,1.74913,1.39935,-0.339964,-0.885466,-0.546822,-0.362253,-0.4499,-0.107767,-0.415217,0.983629,-0.414517,0.420144,1.1227,-0.753481,0.727284,-0.00021998,0.356456,1.00417,-0.482034,0.729013,-0.311857,0.30591,1.01103,2 +1.59759,0.0926647,1.70723,0.570241,-0.984228,-0.647933,-0.625694,-0.147358,-0.546602,0.951474,-0.32637,0.351798,0.565733,-0.0531838,0.862268,-0.636328,0.116083,0.623704,-0.16388,0.738738,-0.194895,0.263371,0.460115,-0.104499,0.797859,2 +-0.137842,-0.774551,1.67495,1.61178,0.57225,-0.302852,-0.610781,-1.12032,-0.840838,-1.27447,-1.00231,0.619447,0.0162021,0.105588,1.00672,-1.70444,0.765955,0.390669,0.207598,1.05686,-1.39191,0.73648,0.211167,0.116013,1.07315,2 +0.140061,-0.793651,1.51332,1.77468,-0.221192,-1.06025,-0.780298,-0.485372,-0.340583,-0.212356,-0.528841,1.31013,-0.801687,0.77717,1.21381,-1.02616,1.05912,-0.307979,0.659477,1.12456,-0.802027,1.13827,-0.624784,0.649802,1.17662,2 +0.177463,-0.287159,1.35037,1.22651,-0.151546,-1.07998,-0.689073,-0.14347,-0.297264,0.0559927,0.0606603,0.914143,-0.697948,0.55139,1.04911,-0.374627,0.520455,-0.403562,0.30551,0.854972,-0.0791412,0.656679,-0.615509,0.425932,0.905057,2 +-0.0217493,-0.611481,1.92615,1.7773,0.089886,-0.742616,-0.769403,-0.762657,-0.668523,-0.791083,-0.241772,1.22583,-0.894742,0.798359,1.18363,-0.915732,0.908565,-0.194715,0.442014,1.10684,-0.720587,1.04982,-0.470659,0.53128,1.16769,2 +-1.14853,-0.339124,-0.908595,-0.833642,-0.106748,1.76948,1.5489,-0.0560526,-0.12164,-0.83855,-0.636998,-0.697998,0.746634,-0.59194,-0.838569,-0.814241,-0.927276,0.644314,-0.736999,-0.863977,-0.526002,-0.869275,0.625134,-0.634029,-0.911394,0 +-0.0750432,-0.79633,1.47265,1.36893,-0.0600806,-0.482834,-0.369259,-0.395316,-0.353427,-0.843457,0.0601506,1.24919,-1.00434,0.803507,1.13371,-0.577127,0.944188,-0.40885,0.533949,1.05805,-0.310438,1.02041,-0.672841,0.564834,1.0917,2 +0.260862,-0.711182,2.07263,1.58701,-0.26502,-0.486662,-0.395896,-0.879689,-0.700997,-0.677178,-0.28627,1.48189,-0.0790812,0.718109,1.35857,-0.998391,1.24116,0.542204,0.683455,1.22191,-0.55037,1.29242,0.0506453,0.559466,1.28772,2 +1.0186,0.235325,1.73274,1.48881,-0.686074,-1.17271,-0.815851,-0.516357,-0.470949,0.344891,-0.0829194,2.12439,-0.975962,1.60993,1.49183,-0.789224,1.78176,-0.0597308,1.41763,1.38905,-0.313476,1.96396,-0.787814,1.40855,1.4252,2 +-1.69868,-1.07204,-2.16893,-1.49375,-0.880709,0.885087,1.37063,2.22197,2.73304,-0.805596,2.14201,-0.917031,0.406401,-0.587722,-1.58512,1.90494,-0.59285,0.232556,-0.568552,-0.316505,1.86015,-0.795271,0.380784,-0.558327,-1.00095,1 +1.96254,1.20442,0.473698,0.976162,-0.792632,-1.85847,-1.37163,0.352627,0.085838,1.40682,0.430949,2.56852,-2.52426,2.46423,1.3362,-0.123549,2.66059,-2.37273,2.82548,1.34821,0.0183211,2.72606,-2.57029,2.64907,1.37435,2 +-1.04306,0.331868,-1.89896,-1.59701,-0.840179,0.293406,1.23543,2.01926,1.82518,0.322712,1.6902,-0.736879,0.171976,-0.427351,-1.1244,1.48572,-0.604674,0.0822496,-0.383022,-0.631821,1.41619,-0.686194,0.098172,-0.351388,-1.03564,1 +-1.30988,-0.370568,-1.58038,-1.13304,-0.51125,0.98006,1.06656,1.44406,1.33009,-0.483513,1.48983,-0.763966,0.397445,-0.535858,-0.649882,1.67838,-0.170936,-0.226619,-0.214405,-0.164669,1.46968,-0.482234,0.0831194,-0.379394,-0.457276,1 +0.843447,-0.558616,2.07022,1.46045,-0.36866,-1.0834,-1.14785,-0.692391,-0.599027,0.459895,-0.00344829,1.72156,-0.785025,1.24864,1.39456,-0.569931,1.37642,-0.211756,1.01982,1.28102,-0.127807,1.61462,-0.716629,1.1221,1.32309,2 +-1.16982,-0.482184,-1.52352,-1.23589,-1.03727,0.625724,1.78382,1.88239,1.45981,-0.119701,2.02024,-0.904147,0.370469,-0.544004,-1.37704,1.87956,-0.737769,0.127447,-0.513279,-0.781367,1.72328,-0.818329,0.305541,-0.49052,-1.19602,1 +1.37837,1.17208,0.0437686,-1.07409,-1.52968,0.40923,1.11275,-0.243581,0.0363423,1.4424,-0.341523,-0.539916,0.801488,-0.545413,-0.227618,-0.370009,-0.859309,0.743746,-0.713691,-0.677928,0.147258,-0.731312,0.762447,-0.621675,-0.445872,0 +1.7574,1.41854,-0.784536,-1.68261,0.0157323,1.00737,-0.457906,-0.371778,-0.63316,1.56017,-0.256105,-0.671951,0.710602,-0.536597,-0.424882,-0.698418,-0.847575,0.81729,-0.678418,-0.659317,0.0134835,-0.692681,0.85835,-0.585593,-0.446811,0 +0.916541,1.58498,-0.123689,-0.795001,-1.41225,0.535238,1.56422,-0.0795411,-0.384732,0.886856,-0.705355,-0.700497,0.81761,-0.570591,-0.533709,-0.794271,-0.928295,0.784426,-0.721537,-0.951434,-0.26592,-0.806775,0.811513,-0.636438,-0.725205,0 +1.1051,0.749003,1.791,0.526192,-0.620726,-0.263721,-0.351528,-1.12213,-0.762716,0.500285,-0.825796,0.900649,0.321663,0.336795,1.16492,-0.79625,0.742736,0.458335,0.338504,1.08359,-0.486452,0.815301,0.16379,0.373107,1.11458,2 +1.9446,1.29698,0.10234,0.158152,-1.07418,-1.26945,-0.747214,0.624924,0.382043,1.43703,-0.2662,3.80834,-5.20905,5.18493,1.44795,-0.506532,3.54307,-3.88902,4.79936,1.30657,-0.637688,3.81098,-5.11261,5.47252,1.50923,2 +0.953253,1.00171,-0.0344132,0.290198,0.459105,-0.574149,-0.799139,-0.624094,-0.475167,0.45042,-0.194655,2.45223,-3.66653,3.82194,1.36506,-0.485122,1.93068,-2.11022,2.50553,1.34541,-0.483973,2.26129,-2.97088,3.2467,1.42251,2 +0.942219,0.754041,1.05111,0.921878,-0.772742,-0.923578,-0.885357,0.0205199,0.0403803,0.358824,-0.974043,2.51339,-2.62596,2.66443,1.47082,-0.992924,2.12871,-2.08831,2.36617,1.30852,-1.09883,2.35984,-2.64484,2.67463,1.44257,2 +0.696319,0.818579,1.23469,-0.141561,0.0365521,0.452718,-0.0207099,-1.24089,-0.996242,0.114934,-1.44511,0.321193,0.63322,-0.138812,0.845896,-1.16724,0.194035,0.664514,-0.167668,0.773202,-0.955472,0.218833,0.536607,-0.138852,0.777529,2 +0.729923,0.65414,0.381243,-0.986607,-1.03201,0.53188,0.990855,0.146968,-0.247899,0.871234,-0.761477,-0.515418,0.641166,-0.584144,-0.189697,-0.380933,-0.768854,0.621675,-0.71458,-0.406811,-0.103579,-0.731602,0.658638,-0.641776,-0.36822,0 +0.6137,0.206029,0.677798,1.0002,-0.607423,-0.861478,-0.77545,-0.0118642,0.211197,0.22467,-0.946806,2.64108,-2.85209,2.76209,1.41431,-0.830973,2.44351,-2.75111,2.7466,1.22425,-1.05321,2.49009,-2.84936,2.66895,1.34589,2 +0.293866,-0.794011,1.44236,1.23436,0.20437,-0.339514,-0.667853,-1.10098,-0.545573,-0.500135,-1.1417,2.28017,-1.60746,2.03436,1.51565,-1.15116,1.74292,-1.17733,1.56102,1.28842,-1.0354,1.96933,-1.62775,1.76966,1.41354,2 +0.280962,-0.457196,0.680157,-0.63386,-0.889175,0.665324,1.70876,-0.0846786,-0.637708,0.434437,-1.28908,-0.848584,0.699807,-0.631201,-0.909325,-1.0159,-1.00475,0.67399,-0.75491,-1.0694,-0.722726,-0.941439,0.699398,-0.678358,-0.989186,0 +1.27713,0.905707,-0.271107,0.0795709,-1.09862,-1.12501,-0.65452,1.01702,1.13159,0.892483,-0.670182,2.70535,-3.7494,3.19607,1.10191,-0.655889,2.89341,-3.89583,3.56799,0.89899,-1.0131,2.75141,-3.72024,3.28651,1.13219,2 +1.86646,1.14771,0.463003,0.364841,-1.21219,-1.21553,-0.838749,0.465812,0.34752,1.34865,-0.0772921,3.86627,-5.20144,5.46861,1.53581,-0.295275,3.00604,-3.71351,4.11271,1.33585,-0.398175,3.439,-4.78105,4.93837,1.50847,2 +-0.192946,-0.481294,0.317515,-0.0436487,-0.144789,0.899819,0.752671,-0.865826,-0.20397,-0.646863,-0.50995,-0.136993,0.593979,-0.235305,0.34864,-0.813702,-0.338624,0.697538,-0.398735,0.192506,-0.383472,-0.309648,0.582485,-0.370808,0.167828,2 +0.24519,-0.0547431,1.7347,1.17874,-0.24488,-0.471419,-0.319064,-0.67367,-0.742826,-0.327829,-0.283041,1.33442,-0.287179,0.790983,1.31762,-0.460944,0.793521,0.0107247,0.421744,1.08614,-0.187438,0.920649,-0.227239,0.473898,1.12392,2 +0.883967,0.535568,0.810153,0.665444,-0.12314,-0.563484,-0.860549,-0.12352,-0.294236,0.0107548,-0.212996,2.99732,-3.45417,3.82016,1.56818,-0.839429,2.27609,-1.56172,2.56458,1.47927,-0.712301,2.67864,-2.66438,3.15335,1.57262,2 +0.0403803,-0.967256,1.6099,1.06357,0.353627,0.109416,0.0188407,-1.4191,-0.946896,-0.870854,-0.374707,0.774931,0.0637588,0.232057,1.09862,-0.44901,0.532549,0.193295,0.085798,0.971235,-0.202211,0.569002,0.0827096,0.104439,0.991914,2 +-0.454757,-0.643185,0.332027,0.134244,0.965857,1.75821,0.199842,-1.88427,-1.10133,-1.42523,-0.329179,0.0627294,0.165589,-0.0106247,0.526512,-0.216034,-0.278873,0.255695,-0.288799,0.351698,0.0774022,-0.193645,0.185249,-0.0880068,0.34764,0 +1.85135,1.62395,-0.0343832,0.0877969,-1.14784,-1.30073,-0.908185,0.635819,0.719228,1.41842,0.190377,3.39625,-4.87059,4.7893,1.36795,-0.18383,3.36623,-3.64377,4.40014,1.23548,-0.254945,3.55971,-4.77915,5.15345,1.441,2 +-0.403173,-0.594309,1.07111,0.753061,0.790703,0.582185,-0.291827,-0.937471,-1.00119,-1.29921,-0.648672,0.40867,0.483203,0.0698959,0.847155,-0.883398,-0.0124539,0.323771,-0.208698,0.579177,-0.44932,0.255585,0.170047,-0.00395793,0.721017,2 +0.650402,-0.373977,2.15436,1.1397,-0.336505,-0.421534,-0.493249,-1.42212,-0.765625,0.0927547,-0.655579,1.614,-0.195524,1.21191,1.43952,-0.850594,1.11974,0.0912052,0.856461,1.23751,-0.485492,1.45849,-0.468081,1.15055,1.32066,2 +1.33964,0.952014,1.9775,0.137323,-0.801977,-0.112455,-0.0397106,-1.25411,-0.732441,0.644735,-0.468721,0.669572,0.553289,0.124209,1.06146,-0.418115,0.440224,0.614229,0.0502255,0.94026,-0.0482163,0.542704,0.46932,0.0722847,0.956761,2 +2.24086,1.4834,0.0174315,0.0407999,-1.56409,-1.40186,-1.00558,0.952863,0.793671,1.88436,0.0825296,3.97573,-5.4663,5.57743,1.36565,-0.0919949,3.73698,-4.66681,5.2856,1.16778,-0.275375,3.97474,-5.68389,6.01995,1.40263,2 +2.12059,2.00319,0.441924,0.171816,-1.11093,-1.10495,-0.716219,0.442283,-0.0583813,1.30996,-1.03483,4.53328,-3.61424,5.17022,1.79074,-1.71884,3.70216,-0.99997,4.25624,1.57556,-1.65565,4.08418,-2.51283,4.53218,1.80594,2 +-0.506262,-0.624694,1.64683,1.09218,1.0164,0.362233,-0.214435,-1.4915,-1.1964,-1.62031,-0.768134,0.683366,0.0810604,0.284731,1.06642,-0.990285,0.374447,0.365231,0.0334737,0.924148,-0.514068,0.519616,0.0382214,0.205,0.970405,2 +-0.454228,-0.481824,0.30591,-0.00869585,1.05435,2.05046,0.81641,-2.38547,-1.461,-1.54182,-0.722816,-0.261532,0.502624,-0.254845,0.259213,-0.610661,-0.413188,0.593379,-0.442663,0.242052,-0.181991,-0.362123,0.535628,-0.322872,0.161051,0 +0.904907,0.973643,0.38899,0.0926845,0.214915,0.297474,-0.533629,-1.14227,-0.967086,0.385921,-0.781557,0.649992,0.731092,0.235485,1.00103,-1.07013,0.373057,0.344641,0.141931,0.823177,-0.651071,0.713301,0.187388,0.341193,0.972524,2 +0.513359,0.12302,1.47251,0.467331,-0.319783,-0.517896,-0.0543834,-0.548871,-0.563234,0.339154,0.784746,-0.177903,-0.116293,0.014543,0.337455,0.30605,-0.240112,0.236804,-0.16238,0.310428,0.478366,-0.261372,0.116043,-0.129596,0.267789,2 +-0.95909,-1.35262,0.583504,0.867165,1.06637,0.377575,0.10285,-0.965847,-0.626223,-1.51244,1.28079,-0.36738,-0.179252,-0.028206,-0.00573699,0.125199,-0.146888,0.374187,-0.169197,0.396656,0.59343,-0.310428,0.116473,-0.158702,0.153595,2 +-2.02407,-2.36976,-0.0575418,0.689652,2.08698,1.4611,0.404602,-1.62988,-0.845076,-2.54914,1.28643,-0.768124,0.538256,-0.625054,-0.455547,1.58823,-0.757999,0.607502,-0.712921,-0.334096,1.31376,-0.810263,0.629762,-0.658268,-0.55257,2 +-0.0355626,-0.577887,1.25274,0.95817,0.465562,-0.378095,0.128797,-1.07879,-0.839729,-0.568202,1.23123,-0.547552,0.480335,-0.541265,0.0121643,0.310608,-0.505622,0.663235,-0.5714,0.1642,0.8172,-0.527852,0.614059,-0.559526,0.0542633,2 +-1.69798,-0.404792,-0.901099,-1.21761,1.08535,2.21046,1.26374,-0.57147,-0.553929,-1.35231,-0.498836,-0.947146,0.579086,-0.639787,-1.05251,-0.648453,-0.972704,0.555348,-0.738478,-0.958441,-0.250947,-0.943218,0.63288,-0.668173,-1.13144,0 +-0.494258,-0.767884,0.902498,0.625903,0.477616,-0.0404901,0.178593,-0.699328,-0.658328,-0.565683,-0.406711,-0.671321,0.467951,-0.57158,-0.215494,-0.0545033,-0.720027,0.518806,-0.659007,-0.191276,-0.288699,-0.692621,0.546053,-0.595568,-0.269558,2 +0.718898,1.4951,0.569721,-0.96004,-0.73462,1.00615,0.692691,-0.663505,-0.729443,0.617988,-1.05751,-0.855911,0.639867,-0.634589,-0.651641,-0.802607,-0.971584,0.658637,-0.746874,-0.794111,-0.365661,-0.846925,0.728673,-0.656259,-0.650562,0 +-0.247439,-0.993943,0.365931,0.0653079,0.711712,1.85968,0.605823,-1.98892,-1.15018,-1.25632,-1.1417,-0.330628,0.881149,-0.437516,0.218173,-1.42162,-0.495208,0.784826,-0.548022,0.118942,-0.611321,-0.374507,0.782647,-0.484213,0.202521,0 +-1.22254,-0.782587,-0.656579,-0.545033,0.560196,1.35071,0.83699,-0.168418,0.0554429,-1.21114,-0.599976,-0.810923,0.652021,-0.634159,-0.792932,-0.495617,-0.989795,0.655049,-0.75613,-1.0442,-0.0419394,-0.942409,0.666414,-0.678698,-0.98079,0 +-1.28139,-1.51497,-1.3414,-0.518556,0.973913,1.64277,1.38139,-0.10259,-0.372517,-1.48832,-0.55056,-0.828624,0.651171,-0.641516,-0.905536,-0.415836,-0.97943,0.665804,-0.757989,-1.04696,-0.0567821,-0.955522,0.679487,-0.682376,-1.08143,0 +0.573669,0.0076463,2.05402,0.574608,-0.425792,-0.483763,0.471619,-1.02878,-0.777599,0.0998312,0.690672,-0.198503,-0.202141,0.146938,0.235805,-0.0192905,-0.401433,0.0582914,-0.103869,0.0688464,0.34722,-0.249128,-0.186149,0.203481,0.14175,2 +1.03214,1.28112,0.493598,0.185189,0.138682,-0.372298,-0.746634,-0.790503,-0.377945,0.307839,-1.15082,3.85907,-3.76683,4.73456,1.69604,-1.5522,2.63269,-1.7173,2.81874,1.42806,-1.51312,3.21857,-2.73598,3.49278,1.63178,2 +-1.07445,0.400904,-1.59905,-0.8977,1.11474,0.766085,0.12216,1.12137,-0.20305,-0.63247,-0.343012,-0.863247,0.643695,-0.623385,-0.974453,-0.992804,-0.830014,0.427231,-0.700887,-0.958831,-0.446351,-0.782987,0.568512,-0.63337,-0.739658,2 +0.488821,0.686434,0.642715,-0.599366,0.498056,0.543094,-0.534178,-1.19833,-0.730852,0.508831,-1.63007,-0.49095,0.793921,-0.517507,-0.00465751,-1.60426,-0.702166,0.778029,-0.665464,-0.165309,-1.25752,-0.522504,0.826825,-0.558077,-0.00251888,2 +-1.35838,-1.117,-1.16641,-0.656309,0.20462,0.463983,0.486222,0.968446,1.2519,-0.669052,0.689393,-0.883297,0.404572,-0.580256,-1.06289,0.560076,-0.883297,0.414427,-0.659907,-0.778689,0.578307,-0.911324,0.537467,-0.629482,-1.13,2 +-0.774041,-0.0866275,-1.08861,-1.19145,-0.590031,0.292237,0.711202,1.30777,1.40524,0.24522,1.8576,-1.0012,0.536837,-0.646683,-1.35481,1.99281,-0.908485,0.518376,-0.71411,-0.688133,1.8195,-0.948196,0.600016,-0.663165,-1.11958,2 +0.311388,-0.150076,0.565773,0.812492,-0.0118742,-0.475727,-0.47063,-0.55203,-0.351688,0.155084,1.31771,0.002289,-0.357045,0.055533,0.330019,1.47307,-0.0219992,-0.628202,0.0773422,0.370988,1.48873,-0.0147927,-0.402023,0.0462575,0.28485,2 +0.728553,1.52634,0.423143,-0.971994,-1.26552,-0.552919,0.545443,0.893582,0.135854,1.69056,1.2048,-0.903538,0.465422,-0.603744,-1.06573,2.0883,-0.994073,0.502244,-0.720157,-1.15159,1.69477,-0.904677,0.549781,-0.635569,-1.06554,0 +2.15678,2.05851,0.350219,-0.882188,-1.1495,-0.861338,-0.249278,0.362213,-0.22425,2.4015,1.13015,-0.500505,0.159462,-0.400974,-0.189247,1.63226,-0.685135,0.20476,-0.546552,-0.365031,1.49129,-0.525813,0.226349,-0.420914,-0.235215,2 +-1.16698,-1.61354,0.583275,1.20848,2.24796,-0.181281,-0.985498,-1.15728,-0.880918,-1.5863,-0.267579,-0.153445,0.18466,-0.329309,0.420394,-0.361673,0.0569221,0.0719247,-0.219812,0.621966,-0.262951,-0.121421,0.16261,-0.323591,0.425342,2 +-0.854732,-0.914912,-0.172606,0.701136,0.934043,-0.288779,-0.537697,-0.0583915,0.00528748,-0.750343,0.519026,-0.341063,0.173065,-0.385281,0.161621,0.614959,-0.186649,-0.0327241,-0.300043,0.275715,0.53034,-0.323562,0.156513,-0.377745,0.135823,2 +-0.892843,0.136403,-1.03113,-1.20731,-0.629152,0.363542,0.811303,1.34057,1.38271,0.0949736,1.74044,-1.02975,0.562695,-0.657368,-1.4593,2.04662,-0.935632,0.564084,-0.73459,-0.782517,1.63576,-0.985328,0.634609,-0.678638,-1.23813,2 +-0.820618,0.234195,-1.19453,-1.30016,-0.730163,0.247489,0.658388,1.62631,1.56756,0.292567,2.11119,-1.01118,0.528811,-0.644874,-1.5062,2.30682,-0.912563,0.501304,-0.707124,-0.812262,1.94084,-0.948386,0.582025,-0.656838,-1.18238,2 +0.254336,-0.0880868,0.723416,0.756409,0.294656,-0.690672,-0.928266,-0.36804,-0.405201,0.267629,1.13962,0.0975424,-0.417515,0.0841689,0.421154,1.07952,0.0623395,-0.618497,0.0672771,0.437536,1.05947,0.0607903,-0.370868,0.0357626,0.415786,2 +-0.258943,-0.907276,0.38848,1.44357,1.38462,-1.22372,-1.64901,-0.430969,-0.50954,-0.184789,0.838769,0.601596,-0.724415,0.444093,0.821718,0.614659,0.537147,-0.750533,0.337205,0.754081,0.655689,0.497676,-0.566553,0.277974,0.786505,2 +-1.05415,-0.356915,-1.11737,-0.875851,-0.407241,0.315755,0.616838,1.17047,1.38956,-0.0936641,2.03811,-0.854172,0.281262,-0.483423,-1.18754,1.96816,-0.744475,0.259013,-0.546682,-0.536847,1.89549,-0.852973,0.413088,-0.55121,-1.04287,2 +-0.170387,-0.895621,0.763376,1.10565,0.289408,-0.181701,-0.447721,-0.686744,-0.544343,-0.442253,1.08805,-0.342002,0.0820499,-0.342342,0.0651083,1.17334,-0.320413,-0.10289,-0.34723,0.153915,1.29292,-0.344871,0.08182,-0.34711,0.0286758,2 +-0.40784,0.36807,-0.758129,-1.16714,-1.67206,0.210597,2.06085,1.27822,0.866955,0.956682,1.15994,-0.994033,0.577577,-0.643535,-1.48252,1.91309,-1.09818,0.625064,-0.760258,-1.76374,1.56087,-1.04382,0.659897,-0.679817,-1.69634,0 +0.0834192,0.477106,0.213555,-0.55052,0.00426791,0.875082,0.687823,-0.722846,-0.477996,-0.250987,-1.46103,-0.301462,0.566273,-0.457446,0.178713,-1.15387,-0.586373,0.465102,-0.581365,-0.0390908,-1.08517,-0.515048,0.513069,-0.507232,-0.0481266,2 +0.0913253,-0.129746,0.437276,-0.478536,-0.117433,1.08512,0.539216,-0.679367,-0.643775,-0.0930744,-1.54517,-0.565493,0.590361,-0.547542,-0.0761425,-1.26843,-0.760408,0.542384,-0.661676,-0.257014,-1.17558,-0.669352,0.606263,-0.582665,-0.236604,2 +-0.118142,-0.893213,1.05514,1.47082,0.768344,-0.269378,-0.832602,-0.962629,-0.789313,-0.987906,-1.00185,1.23563,-0.313187,0.663066,1.26129,-1.34178,1.13412,0.00525734,0.636309,1.16408,-1.14384,1.20841,-0.28563,0.568732,1.23699,2 +-1.78064,-0.4282,-2.48225,-1.83172,-1.62006,0.934283,1.58384,2.59276,3.31953,-0.38864,1.3868,-0.599896,-0.0507551,-0.339754,-1.36865,1.02902,-0.763006,0.304101,-0.550181,-0.725275,1.04871,-0.71563,0.18396,-0.413357,-1.12663,1 +-0.249888,0.100421,-0.425152,-0.826405,-0.266859,1.68111,1.22745,-0.565943,-0.351188,-0.500835,-2.03989,-0.625094,0.723616,-0.605613,-0.466282,-1.93051,-0.946896,0.692211,-0.745295,-0.838859,-1.69044,-0.824446,0.745535,-0.655689,-0.667523,0 +1.3357,1.0273,1.33636,-0.207369,-0.575978,0.629602,-0.0272967,-1.54596,-0.849794,0.497766,-1.47871,0.433378,1.12833,-0.0212495,0.888785,-1.6093,0.12353,1.16071,-0.174025,0.718179,-1.32482,0.382573,1.1249,-0.0407699,0.874842,2 +-1.66315,-0.549741,-2.48353,-1.89007,-2.45775,0.910944,2.05104,2.77613,4.04025,-0.329649,2.08021,-0.798179,0.0522645,-0.380164,-2.37615,2.14084,-0.906356,0.242521,-0.575678,-1.81647,2.00434,-0.85787,0.24538,-0.466342,-2.13591,1 +1.30882,1.29085,0.486352,0.536397,0.201162,-0.760667,-0.903528,-0.753931,-0.626913,0.4915,-0.485312,1.70925,-0.137852,1.15359,1.43813,-1.45617,1.34624,0.839749,1.00686,1.33691,-1.07019,1.72831,0.42985,1.13795,1.44671,2 +1.11748,1.10303,1.00356,1.18187,-0.584694,-1.26491,-0.570401,-0.435477,-0.425002,0.537737,-0.14258,1.50158,-1.00274,1.16774,1.29083,-0.681436,1.08428,-0.287929,0.782347,1.21826,-0.433448,1.44986,-0.568222,1.02914,1.29454,2 +1.49183,0.625794,0.834102,1.09078,-0.144909,-0.968696,-0.889295,-0.759638,-0.567582,0.379075,-0.536577,2.5722,-0.261222,1.91787,1.64075,-1.24251,1.95451,0.493338,1.57048,1.45675,-1.04417,2.44218,-0.0470569,1.82177,1.59753,2 +-2.05288,-1.23135,-2.60626,-1.70623,-1.60176,1.31003,1.94064,2.38539,3.64196,-1.09308,1.78949,-0.772602,0.250737,-0.526982,-1.40049,1.57726,-0.804536,0.491839,-0.65413,-0.681376,1.44069,-0.863068,0.442913,-0.589531,-1.1453,1 +0.559466,-0.0114443,-0.444452,0.502584,0.273436,1.09209,0.475147,-1.66425,-1.17063,-0.517287,-1.3684,-0.358954,0.888465,-0.440764,0.149357,-2.18616,-0.506792,1.0321,-0.540715,0.0488262,-1.50787,-0.318004,0.936871,-0.44956,0.250107,2 +0.341803,0.392708,0.04088,-0.716849,-0.0425292,1.53162,0.91923,-1.04858,-0.718558,-0.468181,-0.723276,-0.499835,0.746375,-0.554089,-0.0382611,-0.77699,-0.826785,0.707154,-0.698998,-0.446162,-0.351928,-0.672401,0.774411,-0.600216,-0.257704,0 +0.849184,0.0465273,0.997002,0.919909,-0.240872,-0.437946,-0.420584,-0.701247,-0.414737,-0.115084,-0.355756,1.93787,-0.281772,1.20434,1.44552,-0.851853,1.62748,0.416206,1.20704,1.29335,-0.590751,1.78691,-0.2645,1.1168,1.40007,2 +-1.68934,0.0492659,-2.21645,-1.67423,-1.51409,0.670372,1.54875,2.92083,2.93848,-0.526242,2.01722,-0.709443,0.139702,-0.483043,-1.79817,1.26733,-0.663305,-0.0305251,-0.504603,-1.27466,1.42792,-0.535138,-0.0674369,-0.371318,-1.58398,1 +0.764456,0.560675,0.65297,0.764205,0.372018,-0.493588,-0.67439,-0.493778,-0.505612,-0.479705,-0.276595,1.76734,-0.276694,1.12774,1.42639,-1.08422,1.47767,0.744755,0.996362,1.29866,-0.782497,1.69446,0.172825,0.991325,1.41691,2 +-1.39622,-0.0270767,-1.97535,-1.58946,-1.08357,0.846376,1.28001,2.09983,2.22733,-0.252326,1.23548,0.024748,-0.528581,-0.0976121,-0.57204,1.31759,-0.359354,-0.00605712,-0.415537,-0.0168317,1.10393,-0.423823,0.0674071,-0.393457,-0.412658,1 +-0.296385,0.284011,-0.178413,-1.0016,0.165209,1.97573,1.0652,-1.16476,-0.685604,-0.607772,-1.32748,-0.77527,0.716499,-0.618687,-0.644694,-1.61218,-1.00882,0.709402,-0.749643,-1.15842,-0.992604,-0.897621,0.743856,-0.664495,-0.903268,0 diff --git a/data/oocytes_trisopterus_nucleus_2f.arff b/data/oocytes_trisopterus_nucleus_2f.arff new file mode 100755 index 0000000..417f44b --- /dev/null +++ b/data/oocytes_trisopterus_nucleus_2f.arff @@ -0,0 +1,940 @@ +@relation oocytes_trisopterus_nucleus_2f +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'clase' {0,1} +@data +1.06957,1.02609,-0.58262,-1.49064,-0.939545,-1.29981,-1.24074,1.42859,1.38262,1.33908,2.16953,-0.0564591,-1.22487,0.117615,0.165409,0.889682,-0.12772,-1.26713,0.0681124,-0.306852,-0.886554,-0.27392,-0.34592,-0.238559,-0.100345,1 +0.865225,1.00701,-0.0426067,-1.06352,-0.811925,-1.01213,-0.366579,0.912349,1.02087,0.91116,0.0499326,-0.724393,0.155864,-0.541583,-0.78408,-0.516946,-0.709541,0.155335,-0.568258,-0.790476,-1.52995,-0.753807,0.379172,-0.549728,-0.960983,1 +0.470672,0.831544,-0.0809656,-0.906693,-0.738285,-0.912619,-0.432493,1.03002,0.812084,0.928331,0.712939,-0.812214,0.098466,-0.596083,-0.924243,0.45618,-0.842368,0.120094,-0.590406,-1.33993,-0.672401,-0.834472,0.358263,-0.553146,-1.39264,0 +0.69303,0.440988,0.130288,-0.175814,-0.27281,-0.0205986,-0.231153,0.0626856,0.0757185,0.020309,0.691231,0.438749,-0.295698,0.448294,0.867894,0.0837041,0.518355,-1.43324,0.705193,0.74686,-0.945901,0.614093,-1.5323,0.880447,0.750328,1 +-0.03655,-0.069342,1.81607,1.01117,-0.133597,0.240198,0.241837,-0.524212,-0.595593,-0.468783,0.909801,3.09775,-3.2848,3.60618,1.80226,-0.525132,1.99495,-0.65643,1.9284,1.74768,-1.2859,2.14154,-1.4139,2.07216,1.94735,1 +-0.253571,-0.435931,2.10468,1.55881,0.130378,0.465315,0.575974,-0.949849,-1.08747,-0.8012,0.56436,2.36751,-0.898587,1.94494,1.84252,-0.779962,1.7844,-0.113018,1.27817,1.75827,-1.45288,1.98428,-0.650883,1.40583,1.96429,1 +0.694159,0.861717,-0.317086,-1.22871,-0.806737,-1.11209,-0.599661,1.26953,1.01223,1.1358,0.160012,-0.924383,-0.190306,-0.562222,-1.49595,-0.104932,-0.799401,-0.11029,-0.483545,-1.50427,-1.2805,-0.78387,0.179212,-0.471561,-1.45644,1 +-0.406627,-0.362321,1.65378,1.48554,0.132097,0.423738,0.2183,-1.03338,-1.08809,-0.560472,0.465475,1.6764,-0.813694,1.12013,1.76625,-0.880617,1.74288,-0.129299,1.27851,1.76067,-1.7627,1.51619,-0.169417,0.829585,1.79539,1 +0.961772,0.993505,-0.840709,-1.44044,-0.868663,-1.28863,-1.28854,1.42852,1.58996,1.2625,3.39081,-0.590576,-0.977984,-0.0350409,-3.23953,1.96686,-0.133897,-1.02569,0.150167,-0.158053,0.395943,-0.412394,-0.45504,-0.101444,-0.667214,1 +0.36375,0.117735,0.948829,0.0679428,-0.231503,-0.0504022,0.222978,-0.0712409,-0.519765,0.0838142,0.749899,-0.171156,-0.0247864,-0.265165,0.449463,-0.219949,0.212703,-0.760343,0.037879,0.738085,-1.08801,0.211064,-0.575864,0.0455752,0.678977,1 +0.642098,0.781191,-0.502814,-1.10937,-0.781231,-1.07493,-0.89297,1.18285,1.19034,1.11592,0.839509,-0.370017,0.104233,-0.352727,-0.312738,0.344341,-0.723483,-0.0375295,-0.486543,-0.976174,-0.545401,-0.707872,0.140483,-0.412174,-1.05674,0 +0.639369,0.776474,-0.150607,-1.27831,-0.809146,-1.09286,-0.681906,1.17964,1.18889,1.13789,1.08157,-0.991056,-0.0660638,-0.63756,-1.65386,0.60078,-0.860418,0.021598,-0.574385,-1.74368,-0.307571,-0.844947,0.295768,-0.543012,-1.6606,1 +0.162481,0.427845,0.396822,-0.315217,-0.348489,-0.237909,-0.0251062,0.322403,0.162931,0.283535,0.51004,0.0513717,-0.281815,-0.0364202,0.560652,-0.104972,-0.414743,-0.16457,-0.377583,0.0733098,-1.21936,-0.45668,0.092959,-0.371926,-0.114977,0 +0.260627,0.424237,0.403489,-0.203708,-0.36521,-0.299626,0.122983,0.115437,0.131388,0.296797,0.608166,-0.502215,0.117885,-0.395253,-0.241228,0.172915,-0.570917,0.0445554,-0.424387,-0.368688,-0.771777,-0.576984,0.223917,-0.403888,-0.450303,0 +0.688552,0.719046,-0.352976,-0.995604,-0.732038,-0.92964,-1.04936,1.19626,0.831993,1.04042,-0.301625,-0.859818,0.153186,-0.596953,-1.31187,-0.591155,-0.858889,0.165409,-0.60182,-1.59025,-1.732,-0.826317,0.384039,-0.558493,-1.39878,1 +-0.0241368,-0.047354,1.88386,0.914438,-0.122633,0.340593,0.8209,-0.579472,-0.868373,-0.5102,0.573355,1.94229,-0.805258,1.34458,1.79802,-0.934057,1.10919,0.197462,0.552727,1.51009,-1.619,1.25806,-0.0938984,0.600891,1.6795,1 +0.415242,0.659028,0.122033,-0.755036,-0.667954,-0.666884,-0.214722,0.812714,0.58302,0.760793,0.335836,-0.0164211,0.228595,0.262796,-0.621869,0.0136926,-0.162731,-0.129789,0.101884,-0.749579,-1.06773,-0.288102,-0.0677128,-0.0940782,-0.562691,1 +0.666794,0.380311,0.352906,-0.299516,-0.343302,0.0247465,0.551917,0.294299,-0.243736,0.0309832,0.554806,-0.337455,0.166249,-0.460478,0.298586,-0.357394,0.257658,-0.807417,0.00919475,0.657529,-1.34535,0.257139,-0.543232,-0.019719,0.618111,1 +0.36454,0.538175,-0.185458,-0.405947,-0.38336,-0.330319,-0.603199,0.594894,0.563021,0.325142,-0.00275853,-0.680597,0.116496,-0.58441,-0.387977,-0.225756,-0.670382,0.160582,-0.560743,-0.495778,-1.59528,-0.684165,0.376224,-0.523772,-0.658919,1 +0.126071,0.303823,0.572646,-0.0969068,-0.275739,-0.00396772,0.545801,0.0678328,-0.09113,0.0363602,0.47471,-0.599871,0.0784969,-0.553596,-0.195423,-0.140703,-0.554116,0.0692419,-0.501915,-0.122613,-1.29233,-0.574355,0.283195,-0.472311,-0.303653,1 +0.0419169,0.250573,1.61086,0.322073,-0.222618,-0.0255459,0.714448,-0.229944,-0.620669,-0.124601,0.924053,-0.162951,-0.00177905,-0.405128,0.576394,-0.0339013,-0.00705626,0.0355304,-0.31084,0.743312,-0.852322,-0.0191697,0.226336,-0.296467,0.714028,1 +-0.124582,0.0732598,1.91588,0.823198,-0.167948,0.0574686,0.450993,-0.463915,-0.810115,-0.249693,0.868204,-0.0291141,-0.0395583,-0.340333,0.72824,-0.108021,0.213942,-0.0526712,-0.184179,0.958314,-0.937506,0.165109,0.100445,-0.193953,0.909361,1 +0.351487,0.0865225,1.24649,0.709561,-0.2197,0.00519725,0.0761383,-0.242077,-0.289481,-0.300985,0.967089,3.71945,-3.84519,4.16433,1.87217,-0.499446,2.72874,-1.53261,2.60761,1.93038,-1.43058,2.55712,-1.94321,2.33057,2.06818,0 +0.115896,0.271811,1.42152,0.267773,-0.275809,-0.0777772,0.508231,-0.0249663,-0.539804,-0.0495327,0.931899,-0.331678,0.0536306,-0.478438,0.354016,0.0425967,-0.240978,0.102963,-0.427036,0.488922,-0.771627,-0.27286,0.314418,-0.415772,0.385198,1 +-0.469762,-0.423178,2.55283,1.62686,-0.0585879,0.0670333,0.0607767,-0.697627,-0.795773,-0.484544,0.628825,1.43758,-0.756215,0.821009,1.60851,-0.771826,1.10733,-0.0861928,0.632593,1.49819,-1.4285,1.20335,-0.242987,0.643127,1.63773,1 +0.552077,0.611135,-0.230444,-0.409415,-0.435621,-0.377123,-0.605628,0.717177,0.411314,0.361322,-0.439299,-0.617072,0.0374594,-0.592875,-0.124142,-0.613323,-0.650413,0.174354,-0.572006,-0.342062,-1.97325,-0.682086,0.385938,-0.543222,-0.561902,1 +0.014452,0.0442757,1.33407,0.731029,-0.0610366,0.0415973,-0.376114,-0.315647,-0.681706,-0.186837,0.852082,0.484014,0.0482335,-0.058498,1.12829,-0.293689,0.548759,-0.0788668,0.0390484,1.2119,-1.20734,0.49237,-0.0597472,0.00540723,1.19584,0 +0.456559,0.202879,0.842897,0.475259,-0.339514,-0.215881,-0.575804,0.0132927,0.12846,-0.0212782,1.20604,2.78626,-3.61002,3.02319,1.74432,-0.0402578,2.69366,-2.85713,2.7289,1.82165,-1.33969,1.87307,-1.87244,1.47027,1.76266,0 +0.806388,0.188567,0.468803,-0.387867,-0.484414,-0.260487,0.404788,0.216291,0.153096,0.300615,0.32757,0.0340812,0.429294,-0.166559,0.566149,-0.666084,0.735426,-0.732188,0.337025,0.988718,-1.66686,0.405907,-0.357954,-0.0333815,0.821639,1 +0.0278347,0.267613,0.997882,0.36482,-0.270432,-0.249783,-0.10968,0.0264055,-0.18299,0.0793466,1.84044,0.151497,-0.953237,0.00494714,0.628385,0.0978564,0.0616261,-0.311569,-0.160862,0.757035,-1.00849,-0.143362,0.0182,-0.27285,0.488302,0 +-0.394913,-0.374015,2.00354,1.46124,0.0670931,0.295478,-0.00475735,-0.867014,-0.860748,-0.54599,0.570147,2.60613,-1.41517,2.03256,1.97037,-0.590526,2.45234,-0.717866,2.06934,1.88549,-1.75532,1.96041,-0.751737,1.30082,1.92337,1 +0.144381,-0.00432765,1.30304,0.940404,-0.167658,-0.0153815,-0.0543901,-0.453041,-0.357254,-0.274409,1.27786,3.87161,-4.39924,4.4902,1.5382,-0.0775574,3.44222,-2.46748,3.76511,1.99717,-1.07855,2.95469,-2.5753,2.92733,2.12831,0 +0.139204,-0.00510722,0.962682,0.951968,-0.0697018,0.0378293,-0.45494,-0.396572,-0.411684,-0.285033,1.17849,2.71448,-2.63248,2.44392,1.68512,-0.232922,2.63676,-1.67126,2.55813,1.90344,-1.34356,2.13687,-1.54569,1.77956,1.95622,0 +0.512239,0.577733,-0.630974,-0.810495,-0.556955,-0.670392,-0.702754,1.06652,0.719165,0.771577,0.194153,-0.569648,0.432783,-0.4204,-0.595933,-0.0988757,-0.640279,0.320664,-0.488252,-0.863586,-1.24143,-0.670372,0.424217,-0.484984,-0.92903,1 +-0.406527,-0.397572,2.17445,1.61688,0.0986558,0.158813,-0.242227,-0.705963,-0.917706,-0.571436,0.898377,1.67064,-0.963392,1.08697,1.61274,-0.31001,1.28704,-0.758524,0.853452,1.54585,-1.14205,1.3775,-0.915538,0.949939,1.66811,0 +0.0758883,-0.227095,1.53161,1.16922,-0.09136,0.192974,0.101334,-0.607547,-0.684115,-0.420069,1.15722,2.25582,-1.41927,1.51449,1.60152,-0.285723,2.77395,-1.0837,2.45926,1.95224,-1.28011,2.1311,-1.06933,1.43476,1.94682,0 +0.744332,0.979892,-0.948,-1.34852,-0.93004,-1.32754,-1.31142,1.31958,1.47427,1.46786,-0.326871,-0.918586,0.135746,-0.624368,-1.79191,-0.453631,-0.861577,0.16324,-0.602739,-1.66513,-1.62972,-0.877459,0.377863,-0.570727,-1.69134,0 +0.678438,0.671482,-0.587947,-1.08257,-0.704324,-0.870582,-0.847145,1.17932,0.885824,1.02815,0.153416,-0.741233,0.276328,-0.512409,-1.02399,-0.368278,-0.777294,0.188157,-0.563241,-1.29364,-1.41937,-0.72934,0.411344,-0.499476,-1.17626,1 +0.196992,0.0214882,1.20904,0.780582,-0.136765,0.0860229,0.125221,-0.476029,-0.54645,-0.264475,1.46618,2.49217,-2.2496,2.10752,1.2025,-0.0480136,2.61189,-0.734097,2.46584,1.87481,-0.956815,2.06578,-0.950888,1.60273,1.95459,1 +0.82103,0.800721,-0.629215,-1.18067,-0.810405,-1.04021,-1.0872,0.991846,1.24369,1.18298,3.15536,-0.617022,-0.475809,-0.500965,-1.58808,1.46148,-0.416112,-0.296677,-0.315977,-0.332657,-0.0450253,-0.546121,0.00852536,-0.386248,-0.595753,1 +-0.102014,-0.0796563,1.66623,0.819091,-0.168618,-0.215082,-0.297647,-0.282905,-0.416491,-0.0527309,0.755735,0.328859,0.0448953,-0.102344,0.967919,-0.371036,0.142302,-0.113998,-0.18291,0.862407,-1.12336,0.168507,0.0124932,-0.141612,0.870432,0 +0.818211,0.571546,0.0614562,-0.423678,-0.576234,-0.347839,-0.235371,0.445955,0.423558,0.38364,-0.16424,-0.558953,0.107081,-0.570987,-0.108561,-0.817591,-0.518066,0.025276,-0.529929,-0.0784869,-2.00777,-0.513708,0.281426,-0.497397,-0.137385,1 +0.641688,0.415542,-0.0552897,-0.289731,-0.298556,-0.00385778,-0.260587,-0.0623058,0.18267,0.14642,-0.00802564,-0.206997,0.333677,-0.403749,0.403249,-0.555685,-0.129689,0.111809,-0.357854,0.568798,-1.68294,-0.279507,0.34603,-0.425706,0.353826,1 +1.06864,1.04441,-1.21874,-1.6287,-1.00513,-1.46523,-1.42068,1.81617,1.49923,1.5769,0.122523,-1.11036,-0.0447155,-0.686613,-2.36413,-0.29157,-0.945881,0.115497,-0.615952,-2.42377,-1.10603,-0.925672,0.368078,-0.574974,-2.19253,1 +0.464745,0.0551397,0.730359,0.430774,-0.326781,-0.143301,-0.526591,-0.0580981,0.0776774,0.0291941,0.923193,2.13524,-2.42228,1.76564,1.7059,-0.317726,2.28651,-2.22973,1.91055,1.70897,-1.63551,1.49119,-1.30456,0.903704,1.60436,0 +-0.205327,0.0989057,1.63874,0.837241,-0.0428266,-0.00204878,0.0822549,-0.284314,-0.561022,-0.354215,1.67183,0.435651,-0.958714,0.321194,0.942153,0.476019,0.313218,-0.47367,0.0264853,0.9486,-0.811415,0.205697,-0.446675,0.0756787,0.846245,1 +0.659318,0.639509,-0.702505,-0.994155,-0.6195,-0.871352,-0.996943,1.13891,1.0664,0.908741,-0.726062,-0.776574,0.14553,-0.557314,-1.05748,-0.969868,-0.684255,0.171756,-0.52929,-0.926602,-2.35333,-0.707552,0.384399,-0.513178,-0.895449,1 +0.559343,0.284784,-0.0369698,-0.479387,-0.392885,-0.379442,-0.522093,0.808736,0.428325,0.36503,-0.155015,-0.639679,0.122593,-0.588657,-0.30965,-0.503264,-0.591925,0.168837,-0.548789,-0.268872,-1.75861,-0.599032,0.372466,-0.51063,-0.390856,1 +0.725282,0.978333,-0.740794,-1.22709,-0.8195,-0.962592,-0.529389,1.1008,0.967669,1.13753,-0.0193494,-0.635541,0.34615,-0.530579,-0.951098,-0.403249,-0.715068,0.308561,-0.553157,-1.1476,-1.84533,-0.796173,0.412544,-0.559243,-1.1718,0 +-0.1094,-0.238149,1.42062,1.25512,-0.0041478,0.0597573,-0.389646,-0.609276,-0.633902,-0.330479,1.13938,2.25565,-1.78572,1.66208,1.64011,-0.370786,2.29104,-1.03156,1.97522,1.84664,-1.29092,2.06902,-1.06192,1.57079,1.95967,0 +0.0877118,0.0622758,1.36253,0.720135,-0.21904,0.139673,0.175204,-0.413973,-0.438399,-0.247034,0.612994,1.8868,-1.48727,1.21772,1.75136,-0.741353,2.04319,-0.977794,1.46884,1.75994,-1.84606,1.44304,-0.641968,0.69242,1.68323,0 +0.87436,0.793964,-0.58413,-1.41285,-0.909001,-1.22777,-0.912689,1.47311,1.38772,1.28976,0.0205787,-1.04443,-0.0148319,-0.67455,-1.88758,-0.447065,-0.91126,0.100265,-0.611565,-1.98472,-1.41478,-0.882306,0.348149,-0.568388,-1.79266,1 +-0.47398,-0.30962,2.55662,1.54,-0.0411875,-0.0740293,0.0561193,-0.507472,-0.87381,-0.433032,0.729959,0.416122,-0.21855,-0.0323024,1.0944,-0.554626,0.533247,-0.202339,0.0919593,1.17324,-1.13525,0.604538,-0.177223,0.123842,1.24611,0 +0.67515,0.977164,-0.113708,-1.12953,-0.742073,-0.778553,0.285284,1.1006,0.493179,0.825217,0.378542,-0.979892,-0.0279647,-0.662936,-1.4731,-0.147609,-0.864726,0.130308,-0.606827,-1.44635,-1.02051,-0.842848,0.380911,-0.566019,-1.4045,1 +0.763931,0.987318,-0.573266,-1.35028,-0.844837,-1.14618,-0.830104,1.32567,1.06428,1.24676,0.763531,-1.07285,-0.0293139,-0.681136,-2.04017,0.252671,-0.908202,0.117475,-0.611884,-1.86468,-0.683215,-0.89255,0.375994,-0.572286,-1.79979,1 +0.58335,0.598632,-0.54765,-0.782441,-0.56583,-0.669333,-1.33802,0.771717,0.6927,0.908652,-0.192404,-0.500416,0.0906902,-0.361142,-0.628565,-0.610525,-0.348129,-0.403499,-0.276249,-0.527491,-1.70129,-0.360093,-0.137025,-0.271411,-0.465045,1 +-0.0100945,-0.0432363,1.44806,0.930919,-0.14678,0.148848,0.0983561,-0.462946,-0.50966,-0.332347,0.842428,1.88071,-1.2108,1.13606,1.73144,-0.636001,2.1457,-0.608916,1.65121,1.81134,-1.705,1.51152,-0.502204,0.771547,1.74392,0 +0.141093,0.00978461,0.855051,0.56577,-0.0470643,0.0433663,0.0827546,-0.366389,-0.522003,-0.18246,1.30216,1.51462,-1.55121,1.04671,1.41526,-0.465035,1.16251,-0.191295,0.730189,1.48234,-1.2874,0.938765,-0.192294,0.475299,1.48169,1 +1.24565,1.12097,-0.257409,-1.26961,-0.83906,-0.987558,-0.657709,1.36275,1.15718,0.800431,2.43588,0.193364,-0.900776,-0.116926,0.209555,0.103193,3.04876,0.385718,1.66307,0.736726,-1.23931,1.5996,0.117975,0.324472,0.921644,1 +0.577963,0.390256,0.25473,-0.349298,-0.405308,-0.333997,-0.170566,0.34716,0.023677,0.392865,0.586548,-0.0845437,0.21781,-0.344151,0.470872,-0.407017,-0.150997,-0.188527,-0.321474,0.484734,-1.24607,-0.133557,-0.0434461,-0.258498,0.395593,0 +0.570707,0.396512,0.314088,-0.695768,-0.611095,-0.74735,0.0430264,0.523993,0.385219,0.811705,0.553606,-0.297227,0.404838,-0.38296,-0.00137933,-0.0319124,-0.457209,0.197651,-0.464116,-0.0751687,-0.989747,-0.520914,0.340473,-0.480356,-0.211364,0 +-0.0392485,-0.0598172,1.51006,0.772336,-0.0688423,0.326641,0.754526,-0.621969,-0.982731,-0.361052,0.987128,1.42011,-0.54736,0.676049,1.52709,-0.827046,1.2528,0.413453,0.738874,1.5588,-1.5075,1.06555,0.188996,0.424557,1.58458,1 +0.867424,0.789627,-0.417161,-1.31488,-0.840319,-1.13154,-1.13898,1.09572,1.24345,1.26367,2.5143,-0.909881,-0.177423,-0.640189,-1.3591,1.4914,-0.473051,-0.376084,-0.439599,-0.753447,-0.593684,-0.669763,0.161891,-0.501745,-0.876769,1 +0.781081,0.74805,-0.441898,-1.08908,-0.800571,-1.05764,-1.23488,1.0043,1.27991,1.14388,3.07454,-0.708182,-0.438889,-0.535037,-1.40509,2.29908,-0.407616,-0.511949,-0.339264,-0.463656,0.0708111,-0.575634,-0.0326121,-0.384749,-0.745751,1 +0.669243,0.381281,0.424097,-0.324142,-0.461307,-0.399631,-0.567329,0.730719,0.503983,0.23756,0.235471,-0.442088,0.234381,-0.532158,-0.00658647,-0.370617,-0.594474,0.183189,-0.561632,-0.281456,-1.32328,-0.592745,0.403199,-0.523083,-0.363151,1 +-0.112059,0.0832143,1.27963,0.552997,-0.188477,-0.0755784,0.0320625,-0.314308,-0.442027,-0.00709595,1.82409,-0.103773,-0.376503,-0.34682,0.563461,0.280306,0.325581,0.0940483,-0.106252,0.98408,-0.974006,-0.0606169,0.148818,-0.296187,0.654681,1 +0.508341,0.198221,1.28732,-0.216131,-0.330179,0.137775,1.61963,-0.459488,-0.638929,-0.0136324,1.07669,0.30925,-0.0607467,-0.0945283,0.918396,-0.301704,0.463106,0.353216,0.0161509,1.14097,-1.0898,0.524782,0.30916,0.0358805,1.22943,1 +1.1688,1.2818,0.243107,-0.918516,-0.725542,-0.717396,-0.0534406,0.954246,0.749419,0.380112,1.04107,0.263945,-0.281406,-0.187257,0.914438,-1.78077,0.599201,1.57497,0.448024,1.02293,-2.30779,0.784329,1.2085,0.298047,1.31862,1 +0.845676,0.971437,-0.816512,-1.34284,-0.814513,-1.21429,-1.05887,1.36564,1.02345,1.31644,0.432673,-0.594914,0.215662,-0.592905,-0.894129,0.790686,-0.814113,0.148219,-0.605658,-1.23088,0.286083,-0.803429,0.378582,-0.56502,-1.11167,0 +0.826956,0.851213,-0.659228,-1.19932,-0.773816,-1.14345,-1.14847,1.23713,1.23242,1.15582,0.706432,-0.640479,0.240398,-0.567279,-0.904544,0.919905,-0.841099,0.148818,-0.605868,-1.41904,0.847975,-0.817442,0.377643,-0.562641,-1.23975,0 +0.657649,0.730109,-0.377373,-0.881946,-0.591396,-0.720065,-0.298426,0.697927,0.552977,0.816482,0.485654,-0.52823,0.221219,-0.539684,-0.203548,0.62049,-0.687903,0.104752,-0.560912,-0.631174,0.40125,-0.591326,0.282645,-0.498057,-0.414942,0 +0.776914,0.905753,-0.368208,-0.807877,-0.563191,-0.755086,-0.771936,0.634862,1.0751,0.605848,1.36231,-0.262046,0.192954,-0.34733,-0.23642,1.30374,-0.239389,0.116376,-0.369158,-0.106611,1.41526,-0.316197,0.0899407,-0.423777,-0.262726,1 +-0.0125032,-0.211874,0.745781,0.232043,-0.136665,0.297357,0.286903,-1.31804,1.77457,-0.505912,1.79507,-0.186928,0.294758,-0.451892,-0.238539,1.70571,-0.133767,0.511559,-0.370487,-0.0257858,1.70109,-0.444676,0.293979,-0.497207,-0.681066,1 +0.815593,0.879038,-0.840839,-1.31048,-0.773116,-1.13076,-0.634552,1.06935,1.09121,1.23086,1.06789,-0.980782,0.0282045,-0.658619,-1.53122,1.40613,-0.890072,0.102494,-0.609106,-1.65594,1.56342,-0.863107,0.356025,-0.567698,-1.56773,1 +-0.699306,-0.677189,2.6911,2.28513,0.129589,-0.180291,-0.986089,-0.832343,-0.780452,-0.518955,1.26572,0.301045,-0.395823,-0.0678229,0.937405,0.538485,0.727411,-0.487742,0.310389,1.21567,0.670752,0.799381,-0.585299,0.262106,1.14143,0 +0.817671,0.87544,-0.597122,-1.38918,-0.843757,-1.27523,-1.08942,1.324,1.23393,1.34838,0.989897,-0.969678,-0.00391787,-0.667044,-1.32154,1.42762,-0.899477,0.117365,-0.612664,-1.6604,1.67008,-0.877539,0.369947,-0.571456,-1.64302,1 +-0.181491,-0.184059,1.90093,0.847385,-0.147459,-0.337295,-0.67452,-0.472521,0.136465,-0.076298,1.73348,-0.20092,-0.21882,-0.326901,0.301395,1.24382,0.0574284,-0.496188,-0.0297239,0.520315,1.4693,0.0294536,-0.591785,-0.0213381,0.194113,0 +0.717896,0.89277,-0.471611,-1.2082,-0.818811,-1.13314,-0.812474,1.29186,1.01597,1.19157,1.45546,-0.518156,0.331578,-0.539154,-0.924873,1.63604,-0.806158,0.167288,-0.60196,-1.38405,1.75522,-0.813164,0.385648,-0.5651,-1.30617,0 +0.539494,0.755645,-0.224277,-0.778353,-0.594874,-0.803959,-0.891611,0.695488,0.579342,0.91135,1.12666,-0.326151,0.349728,-0.508151,-0.388267,1.3507,-0.612344,0.234881,-0.555575,-0.475879,1.18305,-0.623348,0.372765,-0.5277,-0.462216,0 +0.321104,0.0475239,0.76525,0.258928,-0.313128,-0.0773874,0.14551,-0.271901,0.00353809,0.0601671,1.80855,0.120973,-0.390616,-0.223867,0.670702,0.859388,0.736506,0.0852931,0.271191,1.13493,0.660368,0.435541,0.0323623,-0.0164508,0.989587,0 +1.19364,1.03408,-0.709691,-1.48243,-0.963422,-1.292,-1.29393,1.2977,1.41908,1.36899,0.958624,-0.69327,0.14563,-0.605918,-0.760143,0.953727,-0.80239,0.106691,-0.597562,-1.15447,0.994334,-0.746071,0.301734,-0.545011,-0.967169,0 +-0.304703,-0.239579,2.33778,1.34966,-0.0932089,-0.113228,-0.252821,-0.916007,0.00691624,-0.43681,1.53159,0.450093,-0.651882,0.114547,0.89234,0.843747,0.740653,-0.641818,0.449803,1.12348,0.900946,0.789996,-0.949359,0.439069,0.941373,0 +0.631234,0.438859,1.18604,-0.0882715,-0.460487,-0.314437,0.640679,-0.261037,0.497617,-0.0113336,1.72788,0.821289,-1.00909,0.421998,0.980112,0.796913,1.10106,-0.449703,0.549378,1.36874,0.846615,1.07944,-0.87431,0.464575,1.11898,0 +0.32835,-0.0378593,0.894139,0.204128,-0.160732,0.0914199,-0.316476,-0.681906,0.430824,-0.14549,1.53427,-0.0476939,0.193464,-0.348839,0.283354,1.02543,0.347569,0.567049,-0.0838342,0.817462,0.852802,0.212243,0.319485,-0.251342,0.662866,1 +0.216491,0.307022,1.07074,0.186488,-0.320914,-0.481346,-0.630394,-0.0641548,0.29102,0.222508,2.00413,-0.312089,-0.0722704,-0.504833,0.242187,1.46364,-0.297357,0.00923481,-0.441338,0.334567,1.67414,-0.331808,0.0694819,-0.432163,-0.0874821,0 +0.817931,0.830464,-0.279347,-1.12395,-0.717846,-0.864975,-0.52891,0.91139,0.825387,0.94797,1.39549,-0.40157,0.16424,-0.54695,-0.076618,1.16554,-0.706962,0.174604,-0.586958,-0.672751,1.35467,-0.670232,0.349748,-0.542252,-0.571457,0 +0.574645,0.581461,0.366389,-0.411154,-0.523583,-0.431523,-0.3094,-0.245855,1.1099,0.344851,2.47289,0.212243,-1.26887,0.138784,0.0999051,1.30213,1.074,-0.471691,0.700535,0.968819,1.12491,0.549738,-0.405078,0.167918,0.523563,0 +0.493189,0.718566,-0.176253,-0.894769,-0.668773,-0.840059,-0.339394,0.982221,0.581471,0.920655,-0.052871,-0.813074,0.0945881,-0.617601,-0.886054,0.280986,-0.817941,0.154435,-0.595853,-1.17173,-0.223797,-0.788468,0.394044,-0.557144,-1.06885,0 +0.598652,0.826886,-0.451652,-1.18475,-0.721314,-1.18986,-1.11334,1.12081,1.08093,1.23107,1.11394,-0.481936,0.286833,-0.556995,-0.649014,1.46318,-0.790616,0.14537,-0.600591,-1.0436,1.36041,-0.778623,0.370267,-0.556205,-1.01088,0 +0.80126,0.813354,-0.641248,-1.2648,-0.653921,-0.979812,-1.19748,0.879248,0.98485,1.15055,0.457159,-0.733977,0.190965,-0.562981,-0.679527,0.809716,-0.701225,0.025386,-0.540394,-0.867584,0.757194,-0.610555,0.167138,-0.465844,-0.773825,1 +0.754576,0.968079,-0.549998,-1.29978,-0.841059,-1.29288,-1.50071,1.31316,1.17665,1.3864,1.33788,-0.573186,0.27417,-0.579862,-1.13632,1.59442,-0.817542,0.150757,-0.604908,-1.32921,1.54386,-0.814913,0.378952,-0.563241,-1.26037,0 +0.706682,0.392824,0.571666,-0.398291,-0.603489,-0.343651,0.542352,0.450563,0.12831,0.362601,0.453331,-0.229884,0.228045,-0.271461,-0.0182101,0.443886,-0.147669,-0.087732,-0.224157,0.253151,0.155565,-0.225157,0.0541103,-0.271521,0.240078,1 +-0.0555896,-0.0341013,1.75163,0.859339,-0.205877,-0.136705,-0.0318425,-0.689202,0.144431,-0.246225,1.69015,0.590126,-0.862767,0.213733,0.948739,1.06531,0.659628,-0.69197,0.257998,1.09099,1.07256,0.666554,-0.936686,0.278747,0.859048,0 +0.548769,0.78398,-0.445426,-1.13556,-0.648105,-0.955216,-1.11016,0.952907,1.23714,1.00552,0.950449,-0.518086,0.463226,-0.443217,-0.625247,1.27437,-0.581321,0.341542,-0.49181,-0.63849,1.2888,-0.665455,0.371356,-0.522413,-0.839619,1 +0.628085,0.653212,0.0458248,-0.870912,-0.660778,-0.903624,-0.349408,0.730199,0.685864,0.907672,1.32879,-0.314647,0.435311,-0.483565,-0.548869,1.68889,-0.631883,0.27334,-0.563611,-0.786339,1.66917,-0.713479,0.389296,-0.548309,-0.953527,0 +0.922854,0.915987,-0.680117,-1.29888,-0.74753,-1.08284,-1.18412,1.1833,1.03403,1.17558,1.54995,-0.456839,0.192894,-0.535646,-0.417181,1.48115,-0.721854,0.0893009,-0.573665,-0.862087,1.62934,-0.65605,0.209445,-0.47365,-0.726451,0 +0.249613,0.315297,1.02315,0.147579,-0.29252,-0.36353,-0.796943,0.0544901,0.141902,0.180951,1.95229,-0.264355,-0.113968,-0.443407,0.285473,1.49055,-0.298656,-0.0153617,-0.424137,0.338294,1.69684,-0.326151,0.0477238,-0.413513,-0.124892,0 +-0.349548,-0.229134,2.36602,1.17152,-0.0995754,0.0875521,0.274639,-0.907882,-0.0650343,-0.52871,1.61188,0.63702,-1.05278,0.584439,0.845676,1.03212,0.778593,-0.757255,0.605038,1.1347,1.28354,0.670672,-1.3401,0.599691,0.525611,1 +0.960183,1.23964,-0.830714,-1.34844,-0.886424,-1.18754,-1.03357,1.0356,1.29466,1.25851,0.8025,-0.895509,0.083814,-0.633453,-1.34382,0.941134,-0.818071,0.0654839,-0.593105,-1.40868,1.01896,-0.754036,0.271621,-0.539374,-1.13942,1 +0.370287,0.259907,0.375384,-0.00490726,-0.3652,-0.342882,-1.22735,-1.44153,3.72302,-0.317875,2.31399,0.629924,-1.45377,0.579182,0.0148817,1.49441,1.40738,-1.10559,1.22514,0.83809,1.39551,0.787768,-1.45287,0.716087,-0.00222892,1 +0.554476,0.684255,-0.0622159,-0.810605,-0.569987,-0.793834,-0.715118,0.790446,0.524092,0.846156,1.23712,-0.373185,0.274969,-0.523063,-0.429314,1.57671,-0.631584,0.244546,-0.56558,-0.666524,1.53367,-0.694249,0.378073,-0.545551,-0.733737,0 +-0.54674,-0.476639,2.65271,1.35698,-0.00607674,0.123372,-0.283015,-1.62766,1.06878,-0.757514,1.68313,0.640658,-0.295668,0.058118,0.687133,1.39604,0.838979,-0.251952,0.362551,0.953457,1.27093,0.549178,-0.643967,0.14554,0.452831,1 +0.177992,0.0350507,1.03983,0.682296,-0.16361,-0.203098,-0.858959,-1.05791,0.978833,-0.18173,1.61097,2.38435,-3.18054,2.59667,1.27086,0.789037,3.22107,-3.06202,3.64124,1.68221,0.659458,2.61424,-3.03835,2.449,1.31946,0 +0.587817,0.595263,-0.333267,-0.939515,-0.52806,-0.779902,-0.373755,0.40171,0.936506,0.822729,0.834732,-0.623538,0.512159,-0.431024,-1.30128,1.32781,-0.705183,0.396372,-0.525092,-1.38446,1.59046,-0.800601,0.404028,-0.560922,-1.41174,1 +0.677418,0.681396,-0.20101,-1.23397,-0.724323,-1.07203,-0.952118,1.16418,1.04039,1.13562,0.955995,-1.03017,-0.0163211,-0.676679,-1.72898,1.30031,-0.903894,0.110629,-0.612034,-1.76399,1.40551,-0.867594,0.365539,-0.568888,-1.58053,1 +-0.488652,-0.520494,2.19385,1.82579,0.0845335,0.189836,-0.445775,-0.999762,-0.791006,-0.547479,1.01538,1.49084,-0.848175,0.896378,1.5753,0.398371,2.02071,-0.997603,1.57863,1.7351,0.293329,1.74494,-1.00737,1.03153,1.63127,1 +0.405547,0.140663,0.611115,-0.027345,-0.384489,-0.244086,-0.67515,-1.11123,2.52253,-0.142951,2.2194,0.360442,-0.71188,-0.0408277,0.179491,1.33417,1.25375,-0.121933,0.708291,0.961862,1.21062,0.623108,-0.433282,0.148739,0.311539,1 +0.954406,1.01297,-0.608976,-1.22421,-0.886923,-1.2674,-1.08031,1.22957,1.11811,1.29656,0.592675,-0.870652,0.112838,-0.636561,-1.40703,0.818231,-0.863596,0.14497,-0.608246,-1.4936,0.778103,-0.843797,0.379472,-0.568498,-1.37134,0 +0.298146,0.331768,0.010804,-0.340173,-0.285563,-0.158003,-0.0541502,0.484724,0.0418171,0.241058,-0.116716,-0.423008,-0.290061,-0.276109,-0.132158,0.214023,-0.34708,-0.725532,-0.0712211,-0.445256,-0.104663,-0.327381,-0.282245,-0.140962,-0.27417,1 +0.501105,0.604868,-0.043966,-0.607137,-0.607517,-0.581661,-0.408716,0.777933,0.611444,0.629085,0.448314,-0.723453,0.279637,-0.523803,-0.825247,0.574165,-0.821959,0.189176,-0.594054,-1.26142,0.478657,-0.778883,0.41901,-0.553316,-1.07253,1 +0.91123,0.679177,-0.297717,-0.971897,-0.696048,-0.867184,-0.191495,0.730909,0.85718,0.85764,0.777254,-0.58377,0.162851,-0.544092,-0.367189,0.877478,-0.679187,0.0182798,-0.544911,-0.65639,1.07749,-0.60241,0.186628,-0.481406,-0.530849,0 +-0.551997,-0.390686,2.37698,1.68553,-0.025716,-0.323263,-1.01358,-0.953417,0.586478,-0.480356,1.86278,0.753666,-1.02407,0.350647,0.883805,1.32917,0.899107,-1.22882,0.60149,1.07041,1.50793,0.730479,-1.51837,0.518206,0.240228,0 +0.0256658,-0.157863,0.833682,0.313698,-0.0226277,0.193924,-0.333117,-0.751378,0.861847,-0.388777,1.58285,-0.244936,0.264795,-0.440029,-0.0175804,1.50839,-0.173515,0.441887,-0.361782,0.139374,1.55569,-0.378293,0.275129,-0.468023,-0.329889,1 +0.525841,0.618281,0.190345,-0.679867,-0.605558,-0.742063,-0.27344,0.541953,0.5109,0.771467,0.731589,-0.414173,0.332408,-0.506942,-0.414772,1.08095,-0.644137,0.25469,-0.554086,-0.602819,0.991636,-0.673211,0.40109,-0.536066,-0.622878,0 +0.448964,0.830924,0.00807549,-0.792355,-0.622339,-0.732178,-0.317106,0.604838,0.642028,0.776404,1.11887,-0.790516,0.169837,-0.590066,-1.05656,1.49441,-0.800911,0.213853,-0.58438,-1.27787,1.55854,-0.803989,0.393144,-0.562901,-1.26625,1 +0.768678,0.829755,-0.305792,-0.886933,-0.694769,-0.870812,-0.671971,1.08187,0.955676,0.778373,0.0269852,0.172225,-1.88776,1.0281,0.00331809,0.20131,-0.197062,-1.35113,0.23611,-0.628225,0.0503423,-0.0217982,-1.60294,0.740384,-0.452402,0 +0.413513,0.613144,-0.149758,-0.675609,-0.497787,-0.520604,-0.000559649,0.644676,0.336166,0.605558,1.51442,-0.173335,0.297927,-0.443527,-0.00194902,1.52916,-0.636451,0.197202,-0.569498,-0.508721,1.71678,-0.685344,0.362351,-0.54678,-0.733737,0 +-0.152646,-0.0390586,2.08446,0.841229,-0.287312,0.0791867,0.678548,-0.541343,-0.465874,-0.261576,1.40262,0.421918,-0.375824,0.0331817,0.937855,0.738775,0.478997,-0.156534,0.0328218,1.10666,0.933008,0.470732,-0.368338,0.0141324,0.873371,1 +0.47345,0.324852,0.403239,-0.21841,-0.468603,-0.550678,-0.793764,0.514688,0.252242,0.539934,0.0277447,0.517956,-0.954866,0.477588,0.671841,0.205078,0.574105,-2.06594,0.738135,0.463926,0.0413073,0.524292,-1.51722,0.549189,0.54576,0 +0.951988,0.353776,0.0667833,-0.32823,-0.543502,-0.380861,-0.412024,0.0634252,0.868014,0.326121,2.12234,-0.396063,-0.0102744,-0.550778,-0.0492431,1.01407,0.712849,0.248214,0.00578662,1.10222,0.976464,0.392564,0.197532,-0.252651,0.739734,1 +0.697917,0.815683,-0.549638,-1.16424,-0.794124,-1.30248,-1.16383,1.3181,1.28,1.25364,1.20781,-0.541183,0.300175,-0.556775,-0.951158,1.52738,-0.789397,0.16471,-0.599221,-1.20758,1.56646,-0.796493,0.375884,-0.560452,-1.17049,0 +0.823318,0.629804,0.162101,-0.797992,-0.641338,-0.793904,-0.246755,0.663476,0.618251,0.737316,0.491061,1.85938,-3.86676,3.22874,0.797862,0.578153,1.85788,-5.76629,3.43478,0.518855,0.67442,2.43599,-7.54794,5.3369,0.65521,0 +0.96634,0.694539,0.136115,-0.702844,-0.645976,-0.782021,-0.702115,0.381681,1.13044,0.610635,2.13797,2.70754,-6.51233,5.22919,0.556355,1.71275,2.89825,-6.02003,4.25873,0.94728,1.22327,2.44077,-5.37449,3.66712,0.688892,1 +-0.230594,0.0324822,1.14931,0.514348,-0.175624,-0.128499,0.171486,-0.189476,-0.3832,0.0300437,1.33826,-0.47375,-0.561492,-0.337145,-0.120704,1.21652,-0.458858,-0.356874,-0.290981,-0.0962072,0.247164,-0.493749,0.0489132,-0.371666,-0.232193,1 +0.0281045,-0.0793665,1.31867,0.862377,-0.138434,-0.0884414,-0.175504,-0.810585,-0.021758,-0.174624,1.47109,1.50833,-1.58084,1.06986,1.33391,0.708091,1.9775,-1.56784,1.68865,1.62655,0.627096,1.64444,-1.59138,1.11644,1.39816,0 +1.11436,0.909601,-0.125371,-1.0765,-0.713249,-0.995064,0.413943,1.19401,0.617441,0.706662,1.28107,-0.0355906,-0.56598,-0.202919,0.467493,0.230554,-0.174804,-0.277588,-0.242417,0.0452352,0.221668,-0.125721,-0.157863,-0.215092,0.172445,1 +0.116506,-0.290161,-0.0698817,0.157574,-0.314587,-0.498846,-2.29561,-2.88787,8.857,-1.18091,2.04123,2.94362,-5.14665,4.40435,-0.288692,1.32332,4.21002,-5.27481,5.6672,0.338884,1.11351,3.2635,-5.807,4.39081,-0.393324,1 +0.38222,0.413763,0.298716,-0.352127,-0.245965,-0.391825,0.0677829,0.205987,-0.067353,0.32769,0.662347,-0.580801,0.230613,-0.538715,-0.350128,0.954276,-0.594254,0.0856429,-0.534527,-0.34684,0.888153,-0.521954,0.271871,-0.478507,-0.260417,1 +0.30996,0.573275,-0.208975,-0.484824,-0.385878,-0.513438,-0.927511,0.438439,0.34707,0.644946,0.283714,-0.0314828,0.206487,-0.267383,0.245515,0.615742,-0.315677,-0.159982,-0.330909,0.0203789,0.331378,-0.286333,-0.0805058,-0.239688,0.0339812,0 +0.408066,0.630024,-0.135366,-0.252092,-0.332378,-0.353706,-0.693599,0.0989957,0.130778,0.444476,0.751768,-0.325292,-0.260577,-0.178272,-0.106442,1.05569,-0.165429,-1.01662,0.10852,-0.175134,1.01872,-0.0551799,-0.860008,0.168698,-0.0768879,1 +-0.107421,-0.185948,2.03377,0.973576,-0.0553897,0.270462,0.78363,-0.860458,-0.543981,-0.559033,1.52532,1.2009,-0.889572,0.636071,1.15607,0.852352,1.2182,-0.641198,0.665864,1.44199,0.789837,1.1155,-0.853292,0.559493,1.2098,1 +0.440498,0.441998,0.0481935,-0.495908,-0.442227,-0.367928,-0.322813,0.135486,0.284834,0.573825,1.07377,-0.0308032,0.395363,-0.423938,0.0117335,1.43037,-0.421089,0.293329,-0.511979,-0.11011,1.31067,-0.497137,0.357174,-0.495148,-0.208426,0 +0.332258,0.270681,0.647365,0.0863527,-0.23748,-0.240728,-0.466804,-0.159972,-0.0815452,0.205298,1.55989,-0.0662638,0.0671831,-0.421269,0.531508,1.25267,-0.207156,0.087212,-0.417331,0.477558,1.37084,-0.188227,0.143002,-0.409515,0.271081,0 +0.444926,0.586208,-0.103064,-0.301724,-0.295378,-0.0298535,-0.50957,-0.0451053,0.185268,0.216351,0.664166,-0.403839,0.412784,-0.382121,-0.184089,0.764411,-0.436471,0.104453,-0.405108,-0.194303,0.899446,-0.314797,0.0356405,-0.317546,-0.102964,1 +-0.0873022,0.146909,0.574355,0.183679,0.0925192,0.188627,0.0234372,-0.369127,-0.388207,-0.202839,1.10012,-0.448514,0.167438,-0.503944,0.0559892,1.23025,-0.516277,0.321384,-0.514148,-0.111749,1.39706,-0.532898,0.41886,-0.524422,-0.323912,1 +-0.403059,-0.296777,2.31027,1.42679,-0.051212,0.00315837,-0.123222,-0.626756,-0.430794,-0.484534,1.40032,0.757544,-0.693749,0.290201,1.15223,0.750718,0.69252,-0.573935,0.265324,1.18214,1.06252,0.734007,-0.919356,0.330619,0.886543,0 +1.62119,0.840199,-0.531938,-1.17912,-0.872771,-1.09532,-1.32426,0.827916,1.85859,0.890901,2.47939,0.338824,-0.919416,-0.058578,-0.114227,1.52903,2.44149,-1.58206,1.39846,0.768528,1.2605,1.63665,-1.47409,0.684675,0.210274,1 +-0.0172606,0.116616,0.700546,0.0911301,-0.0871023,0.270722,0.506772,-0.513468,-0.0493329,-0.205157,1.17773,-0.321124,0.45496,-0.411145,-0.158093,1.18601,-0.326211,0.50978,-0.40067,0.0185199,1.21506,-0.439959,0.415332,-0.471561,-0.245256,1 +0.167638,0.041887,1.12362,0.651313,-0.241827,-0.194463,-0.385478,-0.450413,0.0330319,-0.0201388,1.38962,1.93186,-2.4161,1.84534,1.53178,0.532678,3.03295,-2.24643,3.15108,1.76831,0.334716,2.35961,-2.05059,1.91133,1.70767,1 +-0.58311,-0.65636,2.28746,1.63478,0.181101,0.0081956,-1.22756,-1.56717,1.18476,-0.785129,1.78569,0.391685,-0.393904,-0.0885815,0.60205,1.23818,0.784549,-0.2004,0.312888,0.939964,1.4822,0.474609,-0.704643,0.053301,0.0413771,1 +0.410695,0.616782,-0.369677,-0.556295,-0.45631,-0.602389,-0.452272,0.537335,0.537705,0.629655,1.3834,-0.325042,0.332927,-0.499606,-0.193534,1.62015,-0.679387,0.173745,-0.571856,-0.603009,1.73489,-0.69262,0.334437,-0.535826,-0.814643,0 +0.1087,0.20032,0.0470041,0.140083,-0.0969769,0.0302835,-0.381041,-0.239698,0.136615,-0.00108925,0.561492,-0.0324423,-0.31058,0.168148,0.137235,0.757674,0.0492329,-1.06643,0.431293,0.143461,0.761822,0.0424465,-0.979612,0.425157,0.103553,1 +-0.111479,-0.14587,1.73924,1.03263,-0.0794965,-0.111909,-0.441698,-0.80191,0.0294839,-0.29176,1.69441,0.624217,-0.883146,0.201979,0.993914,0.878588,0.776684,-0.570527,0.386348,1.20331,1.14992,0.721964,-0.855411,0.288192,0.780032,0 +0.355405,0.606077,-0.132377,-0.243386,-0.226156,-0.421798,-0.794074,0.133067,0.225746,0.366219,1.20843,-0.272031,0.32813,-0.43838,-0.0379093,1.48272,-0.47491,0.150157,-0.491061,-0.110249,1.59003,-0.513888,0.216331,-0.472571,-0.40104,0 +0.425816,0.156644,0.573785,0.188627,-0.282775,-0.21884,-0.767359,-0.0612264,0.173065,0.154495,1.25089,1.90827,-2.67213,1.76615,1.50596,0.529459,2.85192,-2.31306,2.68214,1.55953,0.126591,2.09442,-1.55321,1.4342,1.6764,1 +0.0729999,-0.0851233,1.80526,0.980682,-0.136635,0.114807,0.432623,-0.630104,-0.454271,-0.453211,1.18883,1.56668,-1.01425,1.11611,1.42907,0.411474,1.58614,-0.341683,1.05746,1.60792,0.380681,1.63777,-0.869813,1.00494,1.53763,1 +-0.215482,-0.29129,2.11559,1.37035,-0.0508222,-0.00544691,-0.575084,-1.40612,0.589866,-0.545171,1.24931,2.22394,-2.59569,2.47327,1.49187,0.551158,2.39426,-1.90141,2.65964,1.62991,0.653461,2.32396,-3.00922,2.50513,1.27465,0 +0.426546,0.098326,-0.176393,0.0316127,-0.23763,-0.373415,-2.15389,-2.35526,5.88744,-0.654581,2.05577,2.57538,-4.48901,3.53412,0.157054,1.16087,3.37953,-2.62872,3.91849,0.750898,1.05895,2.34896,-3.14605,2.47608,-0.0573187,1 +0.132567,0.172146,0.199291,-0.0663536,-0.112618,-0.0919195,-0.389586,0.283524,-0.0275848,0.0808658,0.511529,-0.225706,0.339474,-0.45515,0.20091,0.770767,-0.576224,0.190425,-0.549039,-0.207206,0.478757,-0.544052,0.362641,-0.505073,-0.178522,0 +0.263455,0.177493,0.247364,0.253971,-0.260587,-0.434122,-2.10747,-2.19341,4.08603,-0.203618,2.17752,2.64783,-4.91752,3.61487,0.0602269,1.5498,3.95607,-5.99079,5.46443,0.702015,1.21516,2.72258,-4.48348,3.08194,-0.161362,1 +-0.0833643,0.0753287,1.50973,0.545821,-0.189686,-0.0609065,-0.102314,-0.242787,-0.349448,-0.0860426,1.21215,0.232422,-0.286413,-0.188946,0.901555,0.54581,0.135426,-0.195963,-0.231683,0.863446,0.719815,0.186228,-0.115896,-0.195253,0.834332,0 +-0.478458,-0.384569,2.54487,1.40398,0.0307131,0.0230075,-0.460407,-0.483285,-0.771317,-0.438879,0.321783,0.00805546,-0.478318,-0.169957,0.720115,-0.121163,0.216851,-0.508871,-0.00496748,0.897478,-0.12741,0.308111,-0.388447,0.0485036,0.966449,1 +0.570487,0.537195,0.0917396,-0.748679,-0.671182,-0.617971,0.134106,0.775055,0.190256,0.808516,0.0679627,-0.979173,0.0404378,-0.640579,-1.58086,0.636211,-0.848794,0.140273,-0.599141,-1.3373,0.558623,-0.790546,0.335446,-0.551827,-1.14609,1 +0.0779572,0.0243166,-0.206567,0.116476,-0.280126,-0.258958,-0.358143,0.0508821,0.258178,0.372536,-0.27308,-0.725762,0.203418,-0.559043,-0.679927,0.116796,-0.746131,0.189986,-0.572606,-0.822329,-0.305832,-0.706742,0.402079,-0.52798,-0.789517,1 +-0.0127531,0.372196,0.860058,-0.112908,-0.505563,-0.500265,-0.445076,-1.15949,2.65918,0.122073,2.40705,0.329069,-0.352717,-0.358553,-0.47392,2.43774,0.0957273,-0.0699817,-0.378632,0.160552,1.92606,-0.375864,0.18161,-0.490071,-0.855521,1 +0.104173,0.63784,0.324012,-0.0408875,-0.220849,0.0162612,0.385688,0.185838,-0.6015,0.0569789,1.12159,-0.791536,0.0242667,-0.627126,-0.65617,1.35464,-0.713079,0.191235,-0.582361,-0.592005,1.48519,-0.696028,0.394564,-0.551507,-0.691501,1 +0.234691,0.349718,0.155844,0.0630255,-0.1833,0.0514519,0.078357,-0.206377,-0.397542,0.104673,1.41337,-0.520365,0.246585,-0.542043,-0.29253,1.34485,-0.432073,0.138434,-0.4931,0.0561792,1.50055,-0.461017,0.280036,-0.497437,-0.208116,1 +0.166938,0.556135,0.194783,-0.351827,-0.277688,-0.206437,-0.038189,0.664116,-0.0024886,0.174315,0.668613,-0.87413,-0.00144923,-0.655341,-0.861777,0.98479,-0.818761,0.149438,-0.604459,-1.0555,1.1859,-0.774205,0.407287,-0.560133,-0.997133,1 +0.580841,0.809476,-0.299925,-0.917487,-0.56599,-0.774725,-0.51011,0.737515,0.605658,0.830484,-0.115227,-0.967999,-0.00675632,-0.664875,-1.34141,0.388927,-0.834012,0.0990355,-0.603029,-1.18118,0.43805,-0.799741,0.356434,-0.558483,-1.14362,1 +0.686134,0.869413,-0.316586,-1.1606,-0.733138,-0.901006,-0.208006,1.03432,0.635421,1.01761,0.918796,-1.04802,-0.0314428,-0.679967,-1.776,1.32603,-0.914348,0.123322,-0.614243,-1.8545,1.27953,-0.876229,0.378472,-0.571856,-1.62418,1 +0.962122,0.803379,-0.596373,-1.14297,-0.726072,-0.999821,-0.975195,0.829205,1.03344,1.09292,1.58629,-0.353286,0.196902,-0.488842,-0.296248,1.62134,-0.524013,-0.150857,-0.439959,-0.567199,1.66405,-0.459138,-0.0814853,-0.361052,-0.542702,0 +1.0768,1.04826,-0.714868,-1.30726,-0.843157,-1.1874,-1.07267,1.24368,1.25005,1.16303,1.56515,-0.519915,0.16412,-0.54765,-0.441798,1.53281,-0.706532,0.058108,-0.576004,-0.821599,1.64696,-0.63748,0.206047,-0.513748,-0.74707,0 +0.739344,0.811415,-0.576474,-1.26891,-0.763041,-1.03825,-1.22894,1.35776,1.04729,1.1786,1.64501,-0.664286,0.216701,-0.582091,-0.915308,1.89337,-0.826467,0.143421,-0.600641,-1.39536,1.94354,-0.828296,0.356175,-0.563211,-1.44243,0 +0.788188,0.888622,-0.519815,-1.34462,-0.870812,-1.22862,-1.35718,1.17381,1.41675,1.34064,1.64516,-0.697817,0.21833,-0.588577,-1.23509,1.96835,-0.833503,0.152046,-0.602759,-1.56071,2.03018,-0.85656,0.360022,-0.567279,-1.68048,0 +0.799631,0.829525,-0.560892,-0.952388,-0.691691,-1.11284,-1.4931,1.02579,0.993205,1.12062,1.7975,-0.43775,0.251752,-0.559783,-0.61906,1.94605,-0.645846,0.0916896,-0.559043,-0.686064,2.00478,-0.698767,0.2365,-0.525212,-1.12531,0 +0.745451,0.649933,-0.484414,-1.32759,-0.721724,-0.931819,-0.525322,1.09444,0.845336,1.14355,0.604918,-0.909131,0.096507,-0.632733,-1.34892,0.85676,-0.871952,0.130648,-0.60202,-1.65208,0.816782,-0.824928,0.372616,-0.557454,-1.37653,1 +0.762372,0.849364,-0.723423,-1.27813,-0.827176,-1.27479,-1.08059,1.32747,1.27126,1.31327,1.57667,-0.513978,0.29188,-0.548459,-0.806408,1.78174,-0.806687,0.158713,-0.601,-1.38337,1.87638,-0.82015,0.371346,-0.5644,-1.3927,0 +0.78461,0.907852,-0.717197,-1.21636,-0.742063,-1.03196,-1.34093,1.10817,1.00252,1.2067,1.45876,-0.374305,0.292789,-0.532158,-0.459028,1.50754,-0.594094,-0.0538506,-0.506192,-0.733997,1.51837,-0.553566,0.0723703,-0.433772,-0.633942,0 +0.644846,0.848115,-0.707482,-0.992995,-0.60139,-0.877818,-1.44681,1.08238,0.763981,1.02145,0.952837,-0.867014,0.170726,-0.597502,-1.46647,1.20856,-0.770058,0.10932,-0.576724,-1.23838,1.16847,-0.736616,0.30904,-0.541833,-1.07368,1 +-0.0139724,0.193194,1.41651,0.398661,-0.358443,-0.540963,-0.299206,0.0827346,-0.0195592,0.25515,0.463656,-0.559353,0.0561192,-0.553217,-0.0738096,0.238979,-0.495508,0.0516815,-0.508801,-0.000479682,0.0775274,-0.453092,0.263356,-0.465714,0.0126729,0 +0.541843,0.657469,-0.526781,-1.09149,-0.591615,-0.575874,-0.239948,0.779093,0.447884,0.91219,0.742822,-0.894899,0.0800461,-0.636771,-1.19307,0.924053,-0.85666,0.125461,-0.600521,-1.44262,0.844257,-0.795154,0.374944,-0.553046,-1.16419,1 +0.60149,0.835112,-0.753716,-1.1739,-0.717037,-1.04708,-0.94742,1.21653,0.894269,1.19825,1.44623,-0.572286,0.260167,-0.555695,-0.763411,1.71979,-0.799401,0.133577,-0.593355,-1.26029,1.68611,-0.78355,0.339734,-0.548709,-1.16466,0 +0.413393,0.463306,0.166658,-0.561492,-0.457789,-0.630664,-0.462376,0.413693,0.471641,0.650863,1.67002,-0.217891,-0.144641,-0.248624,-0.0485035,1.50111,-0.416971,-0.470792,-0.154475,-0.234062,1.60987,-0.446475,-0.305762,-0.115656,-0.482365,0 +0.841518,0.990397,-0.872901,-1.40308,-0.858779,-1.24466,-1.03632,1.24284,1.26573,1.36289,1.12144,-0.696448,0.213243,-0.590046,-0.902945,1.32137,-0.860518,0.14506,-0.608346,-1.56271,1.45583,-0.844857,0.38232,-0.568018,-1.4204,0 +0.686583,0.685294,-0.191875,-1.14772,-0.776824,-0.98344,-0.445575,0.782431,1.23884,1.04287,1.25409,-0.715338,0.302044,-0.535866,-1.16615,1.37431,-0.739374,0.331388,-0.542203,-1.39033,1.4792,-0.803489,0.407836,-0.557184,-1.44852,1 +0.700416,0.857889,-0.612854,-1.30266,-0.808157,-1.21034,-0.636091,1.27839,1.15776,1.23889,0.394134,-0.92954,0.1087,-0.621609,-1.50723,0.777803,-0.875999,0.121353,-0.598742,-1.78339,0.689731,-0.837501,0.362721,-0.554166,-1.55215,1 +0.529789,0.540294,0.030843,-0.758854,-0.561182,-0.639409,-0.132407,0.548179,0.89262,0.599391,0.821529,-0.314637,0.21802,-0.103903,-0.649064,1.17283,-0.411244,-0.280956,-0.0785771,-0.790616,1.07126,-0.403639,-0.298386,-0.030553,-0.712909,1 +0.607537,0.757335,-0.316237,-1.0571,-0.631883,-0.866355,-0.752897,1.03342,0.656999,0.978423,0.851423,-0.450183,0.336096,-0.496618,-0.550928,1.16643,-0.745731,0.190315,-0.58321,-0.974995,0.925722,-0.748869,0.406437,-0.548979,-0.952008,0 +0.736066,0.669363,-0.633562,-1.05332,-0.677888,-0.745921,-0.931549,0.949889,0.734467,1.02295,0.244986,-0.808177,0.214862,-0.578133,-1.21459,0.584719,-0.798062,0.192894,-0.580812,-1.26461,0.228525,-0.752048,0.417301,-0.538564,-1.05485,1 +0.38186,0.767589,0.122813,-0.906683,-0.680837,-0.622248,0.298346,0.668613,0.782041,0.682096,1.35232,-0.54736,0.441108,-0.482745,-1.04992,1.42779,-0.686044,0.330379,-0.544401,-1.0679,1.48234,-0.743842,0.423338,-0.549378,-1.20354,1 +0.778193,0.962792,-0.493129,-1.27537,-0.886384,-1.26185,-1.13827,1.30475,1.35564,1.27513,1.20011,-0.851433,0.137834,-0.618301,-1.36609,1.63604,-0.872711,0.143321,-0.606288,-1.72791,1.61431,-0.852392,0.372456,-0.566079,-1.53483,0 +0.643267,0.71033,-0.737795,-1.10719,-0.63731,-0.881596,-0.844227,0.905103,1.04568,1.01527,0.855241,-0.587298,0.407197,-0.479977,-0.898417,1.17562,-0.713019,0.283145,-0.539594,-1.1247,1.13607,-0.715318,0.40019,-0.52901,-0.992196,0 +0.541413,0.771917,-0.27311,-0.625947,-0.611315,-0.7659,-0.595163,0.449224,0.5282,0.871392,0.924393,-0.0941884,-0.217491,-0.180161,-0.0660838,1.32019,-0.298596,-0.519945,-0.114018,-0.245145,1.24119,-0.343392,-0.323203,-0.132307,-0.242797,0 +-0.0175804,-0.18203,1.13693,0.89421,-0.1096,-0.284114,-1.4684,-1.95124,3.33763,-0.633482,2.10517,1.50296,-2.35213,1.37971,0.41957,1.16914,2.48276,-2.33632,2.41437,1.15452,1.18314,1.81285,-2.59283,1.49012,0.392654,0 +0.69229,0.641138,-0.506972,-0.897488,-0.605458,-0.859688,-1.30837,0.89272,0.723003,1.02025,0.525532,-0.349668,0.295818,-0.521854,-0.661317,0.978473,-0.6372,0.195812,-0.572386,-0.767299,0.758204,-0.661037,0.366669,-0.531568,-0.595693,0 +0.700146,0.906553,-0.585869,-1.19769,-0.755376,-1.20167,-1.02889,1.24535,1.10762,1.19822,1.70454,-0.482515,0.264305,-0.558384,-0.669733,1.90867,-0.772506,0.153805,-0.591795,-1.16128,1.9718,-0.795674,0.334477,-0.550288,-1.35702,0 +0.629884,0.716957,-0.136115,-0.757344,-0.560832,-0.799351,-0.281795,0.616002,0.424667,0.803139,0.628675,-0.239299,0.410215,-0.461667,-0.294538,1.07938,-0.587358,0.290171,-0.552687,-0.621589,0.72938,-0.6569,0.417211,-0.533237,-0.579482,0 +0.542412,0.778043,-0.289471,-0.778223,-0.678118,-0.678358,-0.776384,0.52951,0.643647,0.931239,0.942653,-0.659858,0.397962,-0.498667,-1.21179,1.36099,-0.718896,0.312498,-0.548469,-1.16246,1.26596,-0.745411,0.41891,-0.542892,-1.1388,1 +0.544031,0.566039,0.0260656,-0.806248,-0.604109,-0.764221,-0.317226,0.716147,0.527091,0.83847,0.587937,-0.503054,0.344581,-0.473221,-0.780582,1.09676,-0.694779,0.207456,-0.556525,-0.983171,0.995304,-0.701615,0.361871,-0.521074,-0.826976,0 +0.921814,0.969098,-0.511539,-1.29033,-0.830664,-1.16941,-1.14868,0.934357,1.2252,1.26061,1.39019,-0.588847,0.204818,-0.593315,-0.794384,1.53577,-0.760613,0.121903,-0.592815,-0.937236,1.6092,-0.758204,0.344171,-0.554166,-0.925042,0 +0.308061,0.279986,1.77838,0.158693,-0.467504,-0.171866,1.14988,-0.0431363,-0.0433462,-0.123522,1.11227,0.317106,-0.725912,0.330079,0.925782,0.341842,0.177413,-0.31055,0.00460726,0.883665,0.369967,0.301564,-0.505003,0.222038,0.935177,1 +0.573076,0.774245,0.19977,-0.989187,-0.752147,-0.87438,-0.268912,0.885274,0.902235,0.872301,1.42366,-0.436571,0.332328,-0.522214,-0.365819,1.73314,-0.589856,0.340613,-0.548099,-0.661027,1.7758,-0.743312,0.40091,-0.556764,-1.15627,1 +0.407576,0.207476,0.337075,-0.0662236,-0.185208,0.144841,0.301575,-0.268882,-0.360342,0.0329521,-0.268583,-0.153826,0.224897,-0.414103,0.531048,-0.0857329,-0.330469,0.169057,-0.414323,0.307991,0.307381,-0.106242,0.20015,-0.302354,0.54665,0 +0.118815,0.181191,0.258728,-0.0486832,-0.100965,0.316806,0.704853,-0.581201,-0.565949,0.0193096,0.300555,-0.372186,0.334846,-0.464026,0.0926391,0.603239,-0.0132828,-0.421819,-0.166239,0.438979,1.15442,0.0321622,-0.348419,-0.16433,0.319045,1 +-0.0424268,-0.0664736,-0.16394,0.295408,0.14577,0.403279,-0.395543,-0.209815,-0.589986,-0.161681,-0.494809,-0.577953,0.0603169,-0.560733,-0.0818252,0.412444,-0.529959,0.147809,-0.507722,-0.0822148,0.514398,-0.468283,0.336405,-0.444156,-0.0744693,0 +0.313188,0.363221,-0.0181401,-0.258428,-0.43726,-0.301654,-0.396532,0.297787,0.261966,0.47471,-0.796263,-0.807827,0.12842,-0.596443,-0.833663,0.241148,-0.724253,0.211634,-0.572716,-0.725272,-0.167398,-0.714298,0.432982,-0.540104,-0.776344,1 +0.0514217,0.247584,0.232153,-0.00341808,-0.130109,-0.0291739,-0.340933,0.176433,-0.23647,0.116786,0.310829,-0.507692,0.074619,-0.585059,0.00153907,1.28517,-0.630064,0.12784,-0.576804,-0.249423,1.35501,-0.618771,0.368368,-0.538334,-0.369347,0 +0.0471641,0.0430564,0.390915,0.0126131,-0.135516,0.167348,0.794204,-0.261986,-0.374804,0.0011995,-0.102174,-0.251392,0.272061,-0.314887,0.216821,0.659008,-0.185818,0.384649,-0.296577,0.292,0.901815,-0.265285,0.311189,-0.352017,0.128479,1 +0.123002,0.332478,-0.0740894,-0.0767978,-0.213903,-0.16343,-0.366519,0.536885,-0.174844,0.224897,-0.0297837,-0.630384,0.281556,-0.494179,-0.507871,0.834762,-0.667924,0.147599,-0.539894,-0.535396,1.16905,-0.600811,0.294468,-0.468543,-0.531628,1 +0.207756,-0.00554698,0.233562,0.343172,0.012703,0.259388,-0.659988,-0.297527,-0.440458,-0.103583,0.542992,-0.587578,0.0756485,-0.516777,-0.199091,1.20996,-0.0377494,-0.56475,-0.131958,0.434032,1.51194,-0.0199592,-0.521804,-0.104333,0.0831942,0 +0.0918295,0.195473,0.244326,-0.0171705,-0.191365,-0.110179,-0.294878,0.18303,-0.0300435,0.162101,0.618061,-0.61904,0.0807857,-0.599351,-0.208815,1.52653,-0.654171,0.112118,-0.569198,-0.342252,1.81572,-0.668393,0.315237,-0.534477,-0.742083,0 +0.49285,0.246285,0.0990156,-0.263535,-0.320884,-0.207076,-0.439689,0.247974,0.0960773,0.3275,0.759603,-0.376723,-0.0671632,-0.443837,0.139533,1.34654,-0.0782972,-0.954097,0.0232071,0.259148,1.70785,-0.0556197,-0.888702,0.14555,-0.184759,0 +0.443077,0.657899,0.0853531,-0.795743,-0.588757,-0.810415,-0.270532,0.824328,0.481846,0.818041,0.203338,-0.69182,0.116256,-0.618001,-0.694589,1.14481,-0.800201,0.136575,-0.600491,-0.986399,1.43893,-0.787738,0.372596,-0.561212,-1.04163,0 +0.461007,0.525772,-0.32882,-0.431543,-0.356325,-0.602319,-0.945151,0.298296,0.465894,0.631923,0.34698,-0.649844,0.0408975,-0.580722,-0.389926,1.17795,-0.377883,-0.595723,-0.262286,-0.335796,1.42749,-0.377143,-0.286623,-0.253561,-0.428955,0 +0.154075,-0.0539804,0.168817,0.215812,-0.133057,-7.98575e-05,-0.459588,0.0220379,-0.222148,0.126121,0.5657,-0.514368,0.0991656,-0.568798,-0.0152317,1.5651,-0.576724,0.103623,-0.54655,-0.132927,1.75508,-0.591326,0.287562,-0.511609,-0.54711,0 +0.270901,0.478557,0.125091,-0.18142,-0.34597,-0.261426,-0.312479,0.337225,-0.00356801,0.333927,0.484744,-0.901985,-0.0302134,-0.659089,-0.944622,1.55705,-0.768828,0.148898,-0.595823,-0.767389,1.91225,-0.772746,0.353386,-0.551297,-1.13828,1 +0.259847,0.60218,-0.223777,-0.370567,-0.327151,-0.390216,-1.13807,0.213583,0.4374,0.525452,-0.143921,-0.727391,-0.0275049,-0.60176,-0.522813,0.647525,-0.396912,-0.562072,-0.295808,-0.335246,0.652452,-0.414113,-0.18299,-0.315387,-0.374595,0 +0.519605,0.427785,-0.213163,-0.503574,-0.503774,-0.654371,-1.05501,0.593414,0.595893,0.746491,0.936676,0.173105,-0.269782,-0.27345,0.297557,1.93635,0.0140522,-0.426386,-0.216022,0.0260558,1.60939,-0.161871,-0.373315,-0.0619158,-0.0729001,1 +0.449963,0.0135525,-0.11001,0.420379,-0.0935188,0.25623,-0.501575,-0.584319,-0.196072,-0.0719604,0.281665,-0.197782,0.195603,-0.301125,0.378752,0.639899,0.643986,-1.12089,0.443876,0.981442,0.704363,0.627086,-1.05093,0.398941,0.879617,1 +0.178392,0.262076,0.0711709,0.116156,-0.201839,0.0109041,-0.719275,-0.192774,-0.070961,0.20109,0.2742,-0.530039,0.184979,-0.512349,-0.122933,1.0562,-0.112868,-0.712459,-0.0731001,0.231613,1.25297,-0.135536,-0.506252,-0.0875018,0.0555394,0 +0.769018,0.590496,-0.573315,-0.522733,-0.344571,-0.157973,0.229444,0.283045,-0.113977,0.330979,-0.789087,0.397212,-0.426366,0.0842037,0.898807,-0.350528,0.447634,-0.916517,0.088911,0.708921,0.189316,0.695998,-0.959673,0.334397,0.92983,1 +-0.0425467,0.14508,0.538714,-0.0479636,-0.111119,0.201629,0.720195,-0.250742,-0.331308,-0.0536804,-0.726921,-0.700186,0.00573683,-0.608686,-0.339534,-0.00898499,-0.571177,0.176033,-0.54752,-0.118835,0.0987758,-0.562552,0.38286,-0.516576,-0.195523,1 +0.314967,0.562841,-0.275439,-0.650563,-0.459658,-0.611245,-0.303004,0.544201,0.512109,0.690971,-0.0226076,-0.853492,0.116476,-0.603769,-1.04946,0.994624,-0.787008,0.103373,-0.569528,-1.08177,1.41894,-0.753077,0.324862,-0.529519,-1.07284,1 +0.041747,0.242147,0.195972,-0.122193,-0.184109,-0.141242,0.157694,0.243706,-0.235351,0.209705,-0.196282,-0.679997,0.21868,-0.537725,-0.508901,0.668423,-0.668503,0.190355,-0.545781,-0.518356,1.08748,-0.636351,0.374465,-0.517246,-0.540653,1 +0.141922,0.429205,0.134666,-0.267543,-0.304013,-0.285733,-0.409205,0.30981,0.231263,0.339034,-0.684175,-0.946791,-0.0433662,-0.667714,-1.13678,0.353196,-0.644047,-0.0502326,-0.541873,-0.471971,0.10964,-0.645486,0.243506,-0.51002,-0.580482,1 +0.0661137,0.0741693,0.354266,0.0337116,-0.135016,-0.0916096,-0.212184,0.0670732,-0.211524,0.165529,0.198121,-0.644397,0.25504,-0.500765,-0.501345,1.26246,-0.611205,0.194983,-0.51004,-0.428535,1.59997,-0.62043,0.277548,-0.49137,-0.65687,1 +0.060047,0.294588,-0.137635,-0.0650843,-0.147389,-0.128799,-0.563511,0.0461247,0.0763881,0.239679,-0.637021,-0.754226,0.0745991,-0.600681,-0.645806,0.422578,-0.58298,0.0835241,-0.5111,-0.335746,0.184339,-0.563031,0.323832,-0.476608,-0.375014,1 +-0.0422569,0.0243666,0.0867323,0.489202,0.094618,0.12796,-0.29165,-0.274459,-0.431113,-0.153006,0.0480236,-0.621619,0.0865425,-0.548499,-0.232812,1.23627,-0.544561,0.120694,-0.503384,-0.135735,1.42995,-0.532738,0.299806,-0.475269,-0.316297,1 +0.207376,-0.00948482,-0.168238,0.0782871,-0.00919503,0.0637151,-0.716497,-0.289861,-0.103183,0.12802,0.124432,-0.391425,-0.00950481,-0.343662,0.0316026,1.27734,-0.31025,-0.0806159,-0.304863,0.0954377,1.41507,-0.342672,-0.0298136,-0.304103,-0.179512,1 +0.14571,0.274869,-0.342602,-0.197102,-0.23755,-0.169527,-0.376943,0.418281,0.12703,0.299416,-0.271401,-0.861537,0.0485433,-0.619081,-1.0028,0.904394,-0.714008,0.179581,-0.561422,-0.660438,0.861977,-0.682766,0.36433,-0.471151,-0.69355,1 +0.360712,0.50946,-0.0727801,-0.446705,-0.523543,-0.596663,-0.0942283,0.636141,0.424557,0.596903,0.666364,-0.612374,0.0495728,-0.625267,-0.409395,1.67261,-0.666414,0.10926,-0.573775,-0.422258,1.80786,-0.71112,0.326111,-0.54607,-0.80242,0 +0.247144,0.371186,0.227155,-0.368678,-0.452742,-0.349108,0.0867025,0.295998,0.326881,0.443817,-0.00926496,-0.888613,0.0293239,-0.653841,-1.00543,1.00598,-0.780452,0.120404,-0.599411,-0.805698,1.07884,-0.760803,0.370457,-0.558044,-0.883066,1 +0.598432,0.480886,-0.301804,-0.775465,-0.461847,-0.496038,-0.300635,0.777364,0.305852,0.633333,-0.622149,-0.83856,-0.0282045,-0.588237,-1.12401,0.534667,-0.720165,0.184299,-0.549329,-0.960953,1.01134,-0.686903,0.361382,-0.516946,-0.906253,1 +0.34603,0.463666,-0.0281346,-0.160912,-0.384119,-0.208406,-0.175823,0.18156,0.123712,0.318665,0.503584,-0.769428,-0.104523,-0.537205,-0.72865,1.22356,-0.214273,-0.908002,-0.0729102,-0.121333,1.44299,-0.155515,-0.791965,0.132657,-0.18188,1 +0.27288,0.635641,0.0778872,-0.538055,-0.43745,-0.684374,-0.49219,0.617731,0.394184,0.63808,0.18206,-0.746471,0.0843837,-0.613823,-0.695958,1.15334,-0.658699,0.000369677,-0.543492,-0.591735,1.42072,-0.644886,0.238389,-0.508511,-0.657869,0 +0.155575,0.40044,0.0165009,-0.215792,-0.217281,-0.301754,-0.284524,0.134786,0.0941484,0.326171,0.136535,-0.556815,0.0352107,-0.586119,-0.21867,1.30497,-0.621119,0.089051,-0.550778,-0.29168,1.27267,-0.605818,0.247554,-0.439259,-0.405128,0 +0.447085,0.499296,0.0794963,-0.712739,-0.475879,-0.722204,-0.157234,0.727191,0.476638,0.660378,-0.314438,-0.526711,0.158033,-0.577383,-0.428455,0.65609,-0.704284,0.168278,-0.58407,-0.709641,0.861157,-0.665655,0.227805,-0.41847,-0.671931,0 +0.315047,0.498367,-0.191845,-0.543652,-0.315277,-0.36453,-0.721124,0.479147,0.246945,0.512729,-0.0819051,-0.502614,-0.0213383,-0.563291,-0.188437,0.870192,-0.667894,0.10941,-0.575884,-0.496048,1.05986,-0.667464,0.332548,-0.533867,-0.554976,0 +0.475249,0.676179,0.028994,-0.637021,-0.493649,-0.607117,-0.873051,0.961752,0.36518,0.618251,-0.0850534,-0.543362,0.0547399,-0.605628,-0.339994,0.774965,-0.708941,0.146599,-0.593055,-0.598871,0.921464,-0.716397,0.370927,-0.550528,-0.699007,0 +0.242497,0.36365,0.0182399,-0.144781,-0.296238,-0.25461,-0.245575,0.189786,-0.0991156,0.378642,0.170247,-0.402779,0.175524,-0.548489,-0.0339615,1.19363,-0.566749,0.184539,-0.551857,-0.178902,1.50094,-0.604958,0.363161,-0.530219,-0.450463,0 +0.25534,0.197552,0.185548,0.000759627,-0.147399,0.0655641,-0.0269252,-0.178492,-0.283454,0.09133,0.215382,-0.704593,0.0259857,-0.602999,-0.411504,0.846585,-0.548679,0.0734996,-0.534337,-0.0830744,1.20676,-0.533837,0.262666,-0.474529,-0.205647,1 +0.176873,0.225666,0.432153,-0.171386,-0.227195,-0.0969467,-0.0676828,0.359253,-0.171006,0.159283,0.0885714,-0.626766,0.0786668,-0.590416,-0.27375,1.16045,-0.621609,0.134816,-0.559343,-0.288132,1.41782,-0.609556,0.359053,-0.526521,-0.415042,0 +0.155095,0.252362,0.246824,-0.00106937,-0.289161,-0.258678,-0.0208585,0.284844,-0.0444556,0.248884,0.0757584,-0.690431,0.0420769,-0.58421,-0.429834,1.24089,-0.663706,0.138214,-0.555226,-0.441158,1.38402,-0.647685,0.320954,-0.500775,-0.553666,0 +0.155834,0.413213,0.230953,-0.0694918,-0.120644,-0.0911599,-0.860678,-0.197172,0.0184499,0.186138,0.312359,-0.60129,-0.418171,-0.300335,-0.45583,1.25568,-0.338824,-0.675639,-0.0934189,-0.0919395,1.65294,-0.312819,-0.594174,0.0856932,-0.379632,1 +0.137125,0.21809,0.32845,0.0221379,-0.202389,-0.16424,-0.410785,0.231753,-0.175004,0.207196,0.478627,-0.598991,-0.0837041,-0.481406,-0.23688,1.55226,-0.500815,-0.120094,-0.390606,-0.0939884,1.80723,-0.457179,-0.336865,0.0755288,-0.578273,0 +0.439489,0.393854,-0.203938,-0.339174,-0.339714,-0.106451,-0.508241,0.461087,-0.0130828,0.342982,-0.0172506,-0.927141,-0.105272,-0.647075,-1.13781,1.14176,-0.716397,0.0677527,-0.573755,-0.58315,1.39759,-0.687813,0.324982,-0.52911,-0.67414,1 +0.351047,0.30959,-0.0272451,-0.34562,-0.330469,-0.373135,-0.216741,0.21875,0.286923,0.430564,-0.204218,-0.757554,-0.00219882,-0.643417,-0.523793,0.969278,-0.663526,0.131658,-0.579532,-0.376683,1.01239,-0.681096,0.358883,-0.543042,-0.561642,0 +0.429115,0.320604,-0.320094,-0.316766,-0.38346,-0.370047,-0.0918596,0.360702,0.278027,0.447345,-0.616362,-0.925033,-0.0293139,-0.660568,-1.11302,0.60205,-0.754466,0.122313,-0.593285,-0.719235,0.518356,-0.72864,0.358953,-0.544791,-0.788517,0 +0.431853,0.390156,-0.0705913,-0.500266,-0.370517,-0.547999,-0.475959,0.459148,0.233012,0.607957,0.233462,-0.796283,0.041917,-0.592875,-0.842648,1.16249,-0.526971,-0.239809,-0.430424,-0.513908,1.55574,-0.514568,0.00827549,-0.411564,-0.587668,1 +0.616322,0.289631,-0.0479638,-0.169427,-0.280386,0.203808,0.676889,-0.0899307,-0.54605,0.085873,0.313988,-0.126011,0.0857829,-0.299586,0.507401,0.574974,0.340973,0.207106,-0.0198393,0.971037,0.897617,0.311419,-0.103593,-0.100055,0.750908,1 +0.480606,0.384919,0.361891,-0.54599,-0.571766,-0.661837,-0.220759,0.830874,0.301265,0.666345,0.350138,-0.713698,0.029134,-0.63739,-0.469912,1.48233,-0.704773,0.147469,-0.592135,-0.504453,1.71814,-0.732248,0.367259,-0.557984,-0.818631,0 +0.40052,0.661267,0.136485,-0.621329,-0.45579,-0.604009,-0.234861,0.552227,0.294728,0.597732,-0.233052,-1.01298,-0.0276149,-0.67437,-1.54651,0.988727,-0.833073,0.134416,-0.606168,-1.11976,1.30676,-0.807697,0.384839,-0.5643,-1.15438,1 +0.458858,0.566959,-0.0772877,-0.574725,-0.586009,-0.631224,-0.18136,0.737965,0.260007,0.739384,-0.196662,-0.597202,0.0519915,-0.593445,-0.350698,0.972077,-0.598302,0.0978362,-0.549259,-0.320984,1.20802,-0.618651,0.282865,-0.505373,-0.469143,0 +0.493799,0.625267,-0.333497,-0.944962,-0.677678,-0.873381,-0.38315,0.971127,0.629385,1.02285,-0.533447,-0.988518,-0.00839542,-0.668603,-1.47637,0.506652,-0.833163,0.119115,-0.604229,-1.1506,0.311779,-0.832353,0.369767,-0.566689,-1.29925,1 +0.457509,-0.0222578,0.296007,-0.0340413,-0.405538,0.196512,0.438419,-0.304453,-0.157963,0.205248,-0.723193,-0.313308,0.354056,-0.434902,0.216821,-0.336665,0.027095,-0.114098,-0.220059,0.628315,-0.269182,-0.00404798,-0.0588277,-0.244895,0.56386,1 +0.32749,0.136975,-0.549868,-0.01811,-0.330968,0.149238,-1.46955,-0.0350808,-0.0664935,0.502215,0.331348,-0.506962,0.140973,-0.519485,-0.0649944,0.538055,0.487153,-0.938665,0.00481715,0.606957,0.787028,0.308221,-0.43713,-0.150817,0.552417,1 +0.712269,0.0639249,0.14531,-0.210694,-0.262766,0.16477,0.949349,-0.445266,-0.361691,0.0952079,-0.315157,-0.141403,0.515147,-0.263486,0.300305,-0.340013,0.0686222,-0.247354,-0.154725,0.545441,-0.178302,0.413613,-0.366769,0.106252,0.802699,1 +0.110529,0.330499,0.155934,-0.0393184,-0.113968,-0.135685,-0.467733,0.215822,-0.1648,0.138564,-0.369527,-0.699876,0.0633252,-0.614483,-0.412654,0.616422,-0.7112,0.14646,-0.588088,-0.541213,0.701225,-0.6569,0.397402,-0.538734,-0.494169,0 +0.205017,0.489661,0.480626,-0.41886,-0.405488,-0.363361,-0.144201,0.386228,0.117236,0.438829,0.0810155,-0.522623,0.0586678,-0.600631,-0.125571,1.08539,-0.670312,0.104622,-0.582401,-0.406767,1.15591,-0.673471,0.34669,-0.542202,-0.536566,0 +0.390566,0.677109,-0.087542,-0.796683,-0.58258,-0.749709,-0.531188,0.920825,0.521854,0.821799,0.000299792,-0.688862,0.00775572,-0.61955,-0.646545,0.840649,-0.76551,0.104812,-0.595124,-0.817511,0.857,-0.751258,0.344261,-0.551287,-0.857669,0 +0.379102,0.607857,-0.151897,-0.634952,-0.512379,-0.574475,-0.269112,0.472161,0.531219,0.669693,0.224517,-0.722134,0.0660937,-0.635601,-0.628685,1.34116,-0.707882,0.159332,-0.592275,-0.541943,1.48413,-0.732168,0.385608,-0.558583,-0.768418,0 +0.351947,0.352387,0.0461746,-0.568988,-0.434951,-0.370407,-0.102104,0.554656,0.18257,0.547939,-0.170606,-0.921704,-0.00780574,-0.660678,-1.13506,0.876129,-0.744751,0.079966,-0.568558,-0.779203,1.01023,-0.742453,0.349648,-0.542382,-0.872681,1 +0.420119,0.47466,-0.318795,-0.612054,-0.54743,-0.598671,-0.106611,0.52861,0.49288,0.741503,-0.350158,-0.823668,-0.021948,-0.660248,-0.766669,0.770467,-0.731519,0.139223,-0.598482,-0.633812,0.630864,-0.755786,0.377073,-0.560482,-0.849224,0 +0.588767,0.906283,-0.18284,-0.950918,-0.734397,-1.01198,-0.43703,1.03515,0.750148,0.98467,-0.339024,-0.743472,0.0726701,-0.643757,-0.798962,0.562301,-0.788158,0.158173,-0.604768,-0.980582,0.639949,-0.795134,0.38345,-0.56406,-1.06728,0 +0.643667,0.3819,0.436171,-0.909541,-0.698207,-0.901135,0.805638,1.11074,0.119185,0.873531,-0.156734,-1.01052,-0.0285644,-0.678228,-1.54364,0.251312,-0.808147,0.0980161,-0.607497,-0.997163,0.585519,-0.822379,0.361492,-0.567998,-1.24845,1 +0.245085,0.362221,0.370377,-0.0317026,-0.244166,0.0756886,0.539864,0.00901505,-0.3819,0.0197693,-0.316836,-0.124722,-0.249543,-0.144681,0.472081,0.243307,0.217481,-0.381671,0.100275,0.792116,0.574325,0.30913,-0.65527,0.242307,0.805638,1 +0.135685,0.320514,0.112118,-0.122743,-0.288192,-0.179391,-0.32737,0.319245,-0.0481935,0.306912,-0.150138,-0.862467,-0.0627856,-0.646575,-0.803369,0.868284,-0.72873,0.113068,-0.587788,-0.582101,1.1221,-0.683245,0.366659,-0.540433,-0.581741,1 +0.247614,0.36515,-0.0983661,-0.0984859,-0.264385,-0.175544,-0.319065,0.384479,0.0926692,0.196332,-0.0353706,-0.433942,0.117226,-0.544821,0.130658,0.876719,-0.465215,-0.00381803,-0.47462,0.045685,0.835711,-0.499036,0.222518,-0.458838,-0.139274,0 +0.699036,0.830115,-0.296018,-1.01401,-0.725652,-0.862057,-0.615612,1.17086,0.649803,0.951238,-0.789417,-0.621889,0.137465,-0.62001,-0.670992,0.352856,-0.709831,0.202839,-0.592615,-0.769488,0.0574884,-0.756055,0.401919,-0.560882,-0.887843,0 +0.185098,0.321444,0.213583,-0.159952,-0.330029,-0.170147,0.0346011,0.169967,0.246935,0.211874,-0.0309731,-0.804539,-0.0585779,-0.625807,-0.623818,0.906812,-0.650223,0.0529108,-0.561962,-0.319805,0.827696,-0.640009,0.294838,-0.508291,-0.452352,1 +0.0776873,0.141742,0.494319,0.137245,-0.133387,0.0899208,-0.319235,0.138424,-0.385858,0.0157415,0.0672431,-0.809946,-0.0559893,-0.649784,-0.587748,1.1004,-0.707992,0.147969,-0.591965,-0.482415,1.36838,-0.668194,0.40132,-0.548939,-0.540294,1 +0.156914,0.526641,0.438719,-0.376134,-0.559973,-0.615392,-0.315327,0.348319,0.69228,0.597602,-0.147699,-0.732078,0.157174,-0.604149,-0.750578,0.787468,-0.683865,0.19989,-0.574025,-0.570287,0.593294,-0.725582,0.377503,-0.548089,-0.753627,1 +0.0578782,-0.0194194,0.977753,0.337305,-0.0762482,0.221788,0.519075,-0.477928,-0.671202,-0.138464,0.562791,-0.544261,0.0442257,-0.576804,0.00732589,0.818151,-0.262236,0.121803,-0.441858,0.446025,1.14055,-0.181191,0.174045,-0.379971,0.373875,1 +0.235201,0.0865925,0.490401,0.115067,-0.0600771,0.377103,0.741363,-0.184049,-0.715937,-0.238739,-0.0943783,0.293779,-0.792145,0.171236,0.881466,0.475339,0.416861,-0.954326,0.373505,0.909751,1.04147,0.663566,-1.49409,0.719605,0.770007,1 +-0.101814,-0.0628455,0.498926,0.392895,-0.00681634,0.159363,-0.214352,-0.460477,-0.155285,-0.107821,0.562022,-0.41978,0.308291,-0.431014,-0.0463247,1.34947,-0.377993,0.243096,-0.414993,0.0836242,1.63266,-0.480656,0.224667,-0.443896,-0.45639,1 +0.23744,0.191245,-0.0279847,0.18168,-0.100285,0.115257,-0.081935,-0.0667334,-0.319645,-0.0311927,0.323313,-0.720085,0.0125631,-0.599301,-0.390036,0.955036,-0.335246,-0.283225,-0.391615,0.158003,1.31908,-0.234382,-0.131848,-0.305452,0.125431,1 +0.0367598,0.180501,0.522123,0.0513219,-0.214832,-0.103593,-0.00254856,0.258738,-0.169997,0.103054,0.162021,-0.545701,0.0522213,-0.574875,-0.0349909,0.978053,-0.625747,0.083594,-0.550288,-0.277048,1.29387,-0.577693,0.282185,-0.486763,-0.327271,0 +-0.228085,-0.118975,0.717146,0.539204,0.226276,0.526931,0.232233,-0.580072,-1.0151,-0.391825,0.000299792,-0.557604,-0.0589177,-0.570527,0.0105841,0.734957,-0.497577,0.202439,-0.536946,0.0596773,1.03702,-0.421779,0.412014,-0.495858,0.0837139,1 +0.548589,0.648254,-0.134596,-0.707712,-0.62001,-0.712829,-0.685714,0.879507,0.653411,0.761662,0.265784,-0.567998,0.0850133,-0.599911,-0.262416,1.21047,-0.618221,-0.0164011,-0.513209,-0.396682,1.23694,-0.63826,0.21795,-0.479447,-0.582261,0 +0.211234,0.210534,0.298916,-0.0489031,-0.259138,-0.00472731,-0.318415,0.2909,-0.0577383,0.121773,-0.277098,-0.878028,-0.0448954,-0.661557,-0.834632,0.665365,-0.755496,0.141282,-0.599261,-0.684295,0.74647,-0.704334,0.404208,-0.552707,-0.645696,1 +0.349588,0.580402,0.014402,-0.47422,-0.550848,-0.605258,-0.315187,0.614333,0.51028,0.623188,-0.580552,-0.672821,0.104173,-0.617301,-0.461377,0.43766,-0.706762,0.177542,-0.588757,-0.534717,0.332298,-0.703734,0.403379,-0.553066,-0.639769,0 +0.47429,0.330799,-0.0254161,-0.133297,-0.260957,0.0619461,-0.278927,0.106612,-0.123492,0.1271,0.0319025,-0.0225877,-1.05872,0.154825,0.276488,0.820949,0.427655,-1.92483,0.625497,0.518446,1.25959,0.635441,-2.16879,1.06258,0.442757,1 +0.119025,0.168338,0.114387,0.141113,-0.124232,-0.0787167,-0.336315,0.209065,-0.191965,0.0766281,0.00933483,-0.462506,0.189896,-0.496418,0.029084,1.04387,-0.537635,0.143871,-0.49299,-0.124242,1.10636,-0.519415,0.294548,-0.444866,-0.219859,0 +0.363261,0.502344,-0.175664,-0.379722,-0.403839,-0.312948,-0.570047,0.278167,0.396153,0.461597,0.150018,-0.919975,-0.00453753,-0.654591,-1.05851,1.30463,-0.772676,0.149638,-0.594974,-0.780302,1.43564,-0.758504,0.386168,-0.559723,-0.889732,1 +0.617841,0.679167,-0.253321,-0.680697,-0.636531,-0.685274,-0.361262,0.791796,0.883985,0.636871,-0.0130429,-0.466784,0.190815,-0.560932,-0.155345,0.862307,-0.16445,-0.157154,-0.267334,0.217301,0.741643,-0.30966,0.0629955,-0.345031,0.0785767,1 +0.490941,0.54748,-0.00689629,-0.543802,-0.530999,-0.462106,-0.0404678,0.421819,0.351937,0.573386,0.243546,-0.43696,0.0867624,-0.52923,0.0717405,0.989157,-0.344931,-0.257929,-0.3458,0.119934,1.21926,-0.351737,-0.0680926,-0.325101,-0.0374796,0 +0.202859,0.444366,0.556265,-0.335236,-0.337105,-0.312958,-0.191045,0.270642,0.0964071,0.340523,-0.214742,-0.888363,-0.00869525,-0.658629,-0.904494,0.735546,-0.782331,0.146969,-0.603019,-0.81942,0.931129,-0.733638,0.399811,-0.557544,-0.762961,1 +0.284224,0.439589,0.409685,-0.625307,-0.483295,-0.318115,0.375294,0.47329,0.138624,0.480007,0.0834542,-0.868414,-0.00472743,-0.659079,-0.839559,1.30586,-0.738345,0.16305,-0.593605,-0.626906,1.55081,-0.744532,0.386248,-0.559483,-0.842768,0 +0.497117,0.423098,-0.0343112,-0.495128,-0.508391,-0.579072,-0.136085,0.420719,0.4924,0.607017,0.2907,-0.563891,0.190266,-0.56527,-0.288462,1.255,-0.508661,0.010794,-0.462906,-0.199121,1.43125,-0.562592,0.184519,-0.459108,-0.469353,0 +0.253441,0.496937,0.231743,-0.376294,-0.399181,-0.438539,-0.460587,0.598032,0.207636,0.45577,-0.248834,-0.667044,-0.00231875,-0.613064,-0.303004,0.604218,-0.712039,0.115417,-0.5839,-0.531169,0.671721,-0.680527,0.357174,-0.537855,-0.576654,0 +0.459708,0.40057,-0.190006,-0.498177,-0.526721,-0.661147,-0.249323,0.809246,0.537075,0.631244,-0.405917,-0.662177,0.104303,-0.612884,-0.435901,0.634432,-0.71143,0.132847,-0.582181,-0.577883,0.406037,-0.717217,0.374584,-0.548589,-0.717007,0 +0.279926,0.282465,0.901345,0.343312,-0.134846,0.159992,0.0238669,-0.278757,-0.508171,-0.205457,-0.488982,0.951168,-0.776834,0.366599,1.39516,-0.188756,0.568298,-0.0793666,-0.0327223,1.15306,-0.192694,0.755235,-0.194313,0.134686,1.32948,1 +0.192304,0.379272,0.161891,-0.0862626,-0.249583,0.185568,-0.584269,-0.223697,-0.134486,0.189716,0.184159,-0.524362,0.167328,-0.472131,-0.177962,0.83756,0.141072,-0.935987,0.100215,0.446525,0.905383,0.0995252,-0.682585,0.0282047,0.360442,1 +0.269382,0.378093,0.496188,-0.340713,-0.359993,-0.215642,0.120744,0.240858,-0.0978563,0.340403,-0.757045,-0.565,-0.0690921,-0.51004,-0.187637,0.405198,-0.49284,-0.0353907,-0.47377,-0.144141,0.65627,-0.47446,0.211144,-0.45505,-0.14588,1 +0.450793,0.464665,0.215622,-0.326331,-0.464625,-0.517416,-0.203928,0.561012,0.410145,0.406297,0.0153615,-0.190356,-0.96586,0.0915896,0.0751187,1.19055,-0.211114,-1.04354,0.12723,-0.0562291,1.22545,0.574555,-3.91027,3.04913,0.0101543,0 +-0.0417672,0.0404078,1.05377,0.306882,-0.173415,0.185968,0.794004,-0.399371,-0.630594,-0.0770975,0.807427,-0.636491,0.0189096,-0.610155,-0.170347,1.37727,-0.305682,0.249033,-0.458858,0.341063,1.66715,-0.429644,0.252751,-0.481116,-0.351407,1 +0.23727,0.76581,-0.0564491,-0.354206,-0.409355,-0.289361,0.254171,0.227035,0.0759983,0.36551,0.0429064,-0.956565,-0.0140223,-0.669213,-1.22169,1.21321,-0.751538,0.162321,-0.592615,-0.697018,1.47848,-0.746111,0.392225,-0.558563,-0.853262,1 +0.233712,0.449523,0.320534,-0.294099,-0.378872,-0.336545,-0.429734,0.379342,0.162821,0.403109,0.0984659,-0.615952,0.0981861,-0.604818,-0.319895,1.11854,-0.642448,0.12743,-0.571397,-0.323163,1.33178,-0.639239,0.344871,-0.532877,-0.444536,0 +0.308501,0.0146419,0.871951,0.149648,-0.235701,0.00416781,0.665775,-0.102924,-0.513358,0.0145022,0.611325,-0.469323,-0.14617,-0.524882,0.132427,0.695798,0.061756,-0.0326522,-0.266184,0.807927,0.942233,0.104562,0.00595676,-0.261246,0.70962,1 +0.32823,0.389726,-0.0918597,-0.0339114,-0.311779,-0.113138,-0.116926,0.101744,-0.0114937,0.21974,0.207926,-0.695249,-0.149398,-0.508161,-0.495328,1.17186,-0.390846,-0.340783,-0.301485,0.00742598,1.51832,-0.407237,-0.0824647,-0.301844,-0.235921,1 +0.313478,0.535566,0.412194,-0.279836,-0.366379,-0.340733,-0.0853831,0.248594,-0.0678827,0.372356,-0.660977,-0.917547,-0.0011294,-0.653911,-1.12653,0.390496,-0.80181,0.151407,-0.598392,-0.997343,0.497247,-0.751028,0.398072,-0.551397,-0.891461,1 +0.308071,0.651722,0.225386,-0.360532,-0.414563,-0.470122,-0.393214,0.445675,0.25438,0.435091,0.143231,-0.702974,0.0280946,-0.606078,-0.38259,1.16041,-0.642228,0.128549,-0.554756,-0.331118,1.47239,-0.651593,0.313938,-0.525591,-0.545221,0 +0.431273,0.753367,0.0541702,-0.445925,-0.386928,-0.379971,0.160532,0.447405,0.188836,0.286023,-0.407067,-0.536036,-0.29134,-0.47371,-0.130269,0.156464,1.56743,-4.08539,1.8728,0.486733,0.396862,2.11262,-4.9235,2.70197,0.611394,1 +0.305872,0.530199,0.165859,-0.435371,-0.423718,-0.394264,0.321873,0.293329,0.187707,0.424917,0.286973,-0.438689,0.214402,-0.556655,-0.142232,1.39931,-0.504833,0.244186,-0.533328,-0.071041,1.68935,-0.608176,0.351057,-0.532108,-0.575544,0 +0.271581,0.478318,-0.0850734,-0.398821,-0.253601,-0.241248,-0.789397,0.370077,0.267843,0.337815,-0.580981,-0.539594,-0.183919,-0.349918,-0.354536,0.600311,-0.394414,-0.399631,-0.184409,-0.265324,0.730629,-0.372346,-0.25433,-0.132237,-0.303234,1 +0.384219,0.362721,-0.187327,-0.521404,-0.487073,-0.631993,-0.784749,0.797253,0.446385,0.733208,-0.580741,-0.849294,0.0569188,-0.648464,-0.950119,0.561542,-0.755256,0.14525,-0.594634,-0.740953,0.412024,-0.759424,0.378522,-0.558104,-0.885844,0 +0.481246,0.536756,0.0390485,-0.779522,-0.67426,-0.672731,-0.0552896,0.989857,0.823978,0.665295,-0.619,-1.00091,-0.032842,-0.678348,-1.44511,0.338574,-0.796923,0.0675228,-0.596263,-1.00612,0.159083,-0.812844,0.342042,-0.562851,-1.2165,1 +0.461177,0.667394,-0.228705,-0.992595,-0.668923,-0.779622,-0.41958,1.09527,0.699386,0.908931,-0.949469,-1.06195,-0.0363801,-0.682816,-1.88404,0.204998,-0.872052,0.118435,-0.611095,-1.39437,0.139863,-0.85648,0.373495,-0.570167,-1.45382,1 +0.396382,0.555285,-0.0140823,-0.573525,-0.499856,-0.342172,-0.202769,0.497747,0.336046,0.520884,-0.755665,-0.986229,-0.0319925,-0.675979,-1.3535,0.403589,-0.792425,0.138254,-0.603149,-0.871212,0.384499,-0.788717,0.38261,-0.56395,-1.0157,1 +0.324822,0.323293,0.504503,-0.630384,-0.543202,-0.369647,0.4555,0.538425,0.110799,0.562611,-0.295558,-0.876599,0.0717506,-0.63913,-1.08439,0.843237,-0.769498,0.196452,-0.590506,-0.884715,1.29575,-0.759633,0.409765,-0.558483,-0.950169,1 +0.211694,0.120334,0.678947,0.0587078,-0.106512,0.140963,0.458468,-0.233082,-0.539924,-0.0587476,0.211414,0.362491,-0.516787,-0.215612,0.835831,0.821789,-0.0663337,0.132657,-0.366679,0.672021,1.1166,-0.0210986,0.156334,-0.326651,0.519525,1 +0.426046,0.472531,0.314907,-0.498257,-0.470772,-0.517056,-0.265384,0.269612,0.299945,0.594694,-0.103853,-0.899576,-0.00399783,-0.644247,-1.07059,0.963381,-0.732008,0.104762,-0.576114,-0.694109,1.13326,-0.691571,0.303034,-0.525482,-0.715328,0 +0.586068,0.271971,0.137125,-0.196092,-0.207256,0.115437,0.151117,-0.146,-0.32794,0.0797364,-0.0075459,0.516317,-2.15277,1.22911,0.634052,0.541663,0.71029,-2.77402,1.47234,0.736496,1.06783,1.04961,-3.55166,2.39593,0.671471,1 +0.565879,0.588287,-0.0534308,-0.670902,-0.639679,-0.660687,-0.642258,0.518156,0.453961,0.880117,-0.0795564,-0.923903,-0.0229175,-0.630524,-1.24087,1.07408,-0.790227,0.0794963,-0.574765,-1.00193,1.27943,-0.757095,0.293219,-0.52766,-1.02074,0 +0.0625856,0.262446,0.246625,-0.146839,-0.195863,0.0382991,0.213453,0.198211,-0.271191,0.117945,-0.2738,-0.812954,-0.00921497,-0.639469,-0.623648,0.610235,-0.699136,0.135915,-0.58336,-0.469692,0.808956,-0.659598,0.372226,-0.535636,-0.489871,1 +0.566489,0.63743,-0.453051,-0.773526,-0.548069,-0.613064,-0.278827,0.667844,0.411954,0.775655,-0.988538,-0.986259,-0.00748592,-0.667764,-1.44666,0.00114945,-0.827566,0.14615,-0.60253,-1.12456,-0.247114,-0.794414,0.389196,-0.560722,-1.08443,1 +0.270442,0.230524,0.217561,-0.450803,-0.438929,-0.381651,0.172046,0.425427,0.249443,0.501115,-0.72974,-0.931089,-0.0428265,-0.663876,-1.08291,0.189146,-0.757165,0.0951677,-0.586049,-0.741763,-0.0160612,-0.731799,0.34621,-0.538444,-0.821149,1 +-0.0376394,0.113048,0.335446,0.261047,0.0206686,0.256989,-0.0416171,-0.076618,-0.592215,-0.157953,-0.257299,-0.653741,0.0758484,-0.582161,-0.247984,0.703724,-0.563231,0.247364,-0.5479,-0.134146,0.842028,-0.516107,0.470822,-0.512669,-0.137964,0 +0.243646,0.164989,0.886034,0.0369698,-0.253201,-0.00165899,0.502854,-0.16434,-0.347119,0.0470144,0.432003,-0.494689,-0.103853,-0.517046,0.076378,0.676129,0.0845335,-0.129079,-0.227335,0.823828,0.755545,0.10907,-0.0939084,-0.183739,0.76544,1 +0.0439158,0.313688,0.598192,-0.0360002,-0.147139,-0.156584,0.18258,0.150108,-0.276588,0.0780773,0.14528,-0.752907,0.0809256,-0.60254,-0.545491,0.943252,-0.706662,0.203258,-0.578993,-0.555345,1.17918,-0.663236,0.417531,-0.543482,-0.541023,1 +-0.149158,0.0712209,0.567469,0.54745,-0.0358304,0.264685,0.484914,-0.357974,-0.663656,-0.21838,0.307961,-0.741983,0.0166508,-0.623568,-0.436301,1.24581,-0.614233,0.215122,-0.56489,-0.248054,1.59148,-0.604668,0.395063,-0.542012,-0.503714,1 +0.079986,0.162441,0.285513,-0.0970167,-0.325671,-0.116246,-0.110929,0.172246,-0.029074,0.324652,-0.280296,-0.826946,0.0652842,-0.623218,-0.796393,0.566279,-0.671552,0.14492,-0.556505,-0.471831,0.487163,-0.630834,0.359243,-0.512529,-0.452772,0 +0.104663,0.425816,0.0528309,-0.199431,-0.352946,-0.228814,-0.0831543,0.34577,0.0399681,0.355325,0.187747,-0.779612,0.0498926,-0.614743,-0.589007,1.0534,-0.694929,0.131178,-0.567489,-0.518815,1.36152,-0.658169,0.329999,-0.520005,-0.580372,1 +0.274599,0.231383,0.0990955,0.0942383,-0.0242668,0.106242,-0.178482,-0.0297837,-0.318195,-0.10858,-0.193654,-0.498716,0.00811553,-0.511739,0.0787767,0.385958,-0.40126,0.0334415,-0.470082,0.199351,0.813494,-0.246345,0.125371,-0.361312,0.292809,0 +0.0790566,0.180061,0.337705,-0.119075,-0.142972,0.020239,-0.188207,0.0395783,-0.173125,0.133717,-0.971517,-0.789377,-0.0543102,-0.6383,-0.537705,-0.0728899,-0.683155,0.119724,-0.578903,-0.399221,-0.176863,-0.643117,0.339144,-0.516037,-0.434722,0 +0.125601,0.391485,0.41947,-0.202629,-0.253171,-0.12755,0.215522,0.215772,-0.214882,0.192954,-0.197142,-0.78403,-0.0141822,-0.632523,-0.540503,0.762042,-0.720195,0.170566,-0.581891,-0.578972,0.96652,-0.684864,0.410865,-0.544161,-0.599941,1 +0.446925,0.608096,-0.20095,-0.810415,-0.585919,-0.771487,-0.23602,0.979653,0.649534,0.76512,-0.6015,-0.971447,-0.0187997,-0.670402,-1.31422,0.465804,-0.814493,0.138924,-0.60222,-1.05691,0.098336,-0.774615,0.352716,-0.553496,-1.01975,1 +0.0502823,0.0757384,-0.0569188,0.058458,0.00719598,0.0133828,-0.342132,0.0174005,-0.165819,0.0357605,-0.00873525,-0.40172,0.110679,-0.297627,-0.0121434,0.939015,-0.483015,0.160752,-0.396053,-0.19958,1.15393,-0.434182,0.0759184,-0.25551,-0.264885,1 +-0.00684632,0.000949457,0.347689,0.152796,-0.0195993,0.194114,-0.0586878,-0.0817651,-0.461297,-0.0455149,0.147009,-0.665175,0.025496,-0.590546,-0.250393,1.02878,-0.592955,0.179481,-0.553237,-0.175724,1.43922,-0.559653,0.362021,-0.512709,-0.354446,1 +0.034541,-0.0524812,0.23623,0.252042,0.0320423,0.258388,-0.204438,-0.125541,-0.461827,-0.126251,-0.326061,-0.568318,-0.139653,-0.503974,-0.0513119,0.427405,-0.54756,0.0190794,-0.470452,-0.114207,0.835032,-0.470092,0.216931,-0.378772,-0.0825049,1 +0.231023,0.089231,0.428595,0.142952,-0.0901406,0.144681,0.0499626,-0.25494,-0.505972,-0.00752572,0.193154,-0.588007,4.99507e-05,-0.56593,-0.0837741,0.748099,-0.0408877,-0.594514,-0.212674,0.43753,0.912049,0.0677726,-0.353226,-0.156534,0.508611,1 +-0.0770678,0.187167,0.123702,0.107361,-0.00182907,0.0520615,-0.365349,0.207566,-0.389626,0.00257874,0.384899,-0.723583,0.0768578,-0.598682,-0.461837,1.28031,-0.587848,0.161941,-0.519575,-0.265684,1.57674,-0.589797,0.308441,-0.500285,-0.524182,1 +0.231993,0.222738,0.10911,-0.29135,-0.313258,-0.318715,-0.202609,0.482735,0.153566,0.367399,-0.342992,-0.897178,0.0394084,-0.641398,-1.05908,0.490471,-0.763441,0.105492,-0.577523,-0.879348,0.534816,-0.739315,0.358383,-0.538285,-0.898437,1 +0.277548,0.612154,0.286463,-0.663206,-0.513149,-0.605648,0.0531209,0.810985,0.347899,0.575634,-0.574475,-1.01032,-0.0447355,-0.678438,-1.4774,0.526571,-0.846326,0.12662,-0.609166,-1.18445,0.517196,-0.818851,0.375414,-0.566029,-1.19409,1 +0.537085,0.763871,-0.110819,-0.890901,-0.683205,-0.897627,-0.477258,0.795454,0.644946,0.978203,-0.558364,-0.807387,0.00887511,-0.652552,-0.777603,0.525941,-0.744761,0.134476,-0.595294,-0.718326,0.563841,-0.745621,0.363421,-0.553726,-0.82052,0 +0.147589,0.201409,0.880547,-0.116566,-0.311469,-0.247864,0.25511,0.0392585,-0.129499,0.264045,0.171636,-0.791486,-0.0394784,-0.628705,-0.594274,1.3301,-0.691471,0.137205,-0.570907,-0.501635,1.5726,-0.672991,0.34587,-0.535176,-0.659078,0 +0.208506,0.30911,0.535446,0.0598472,-0.356195,-0.278747,-0.0365799,0.172485,0.0721105,0.212593,0.372705,-0.780512,-0.0795564,-0.611685,-0.596223,1.49555,-0.632323,0.0751187,-0.537145,-0.366559,1.59635,-0.622808,0.256959,-0.482065,-0.588037,0 +0.164929,0.143291,0.375724,0.100415,-0.188217,-0.0641047,-0.0214882,-0.0794564,-0.212623,0.12843,0.390975,-0.7106,-0.0484634,-0.605188,-0.371596,1.42995,-0.588747,0.110169,-0.537495,-0.225976,1.71224,-0.597562,0.276308,-0.508551,-0.6192,0 +0.189006,0.172335,0.432483,0.104123,-0.262896,-0.224017,0.0171406,0.187567,-0.00149914,0.136016,0.444296,-0.648584,-0.0319825,-0.588457,-0.244606,1.5156,-0.589806,0.123202,-0.531529,-0.216841,1.68858,-0.634332,0.300025,-0.516287,-0.595543,0 +0.299216,0.297637,0.516047,-0.18276,-0.47336,-0.361582,0.697837,0.524122,0.0737296,0.271771,0.161401,-0.862577,-0.0223378,-0.65728,-0.791236,1.20618,-0.724483,0.14585,-0.587218,-0.591006,1.48562,-0.703524,0.377753,-0.550338,-0.702465,1 +0.157454,0.233372,0.568018,-0.0395683,-0.27269,-0.20006,0.389296,-0.265484,-0.0927591,0.245515,-0.105662,-0.69202,0.105242,-0.577124,-0.435441,0.868034,-0.67409,0.193374,-0.571197,-0.450613,1.27344,-0.633772,0.388187,-0.535256,-0.468513,1 +-0.226006,-0.240478,0.50969,0.467134,-0.053021,0.0486834,-0.0120234,-0.172625,-0.178322,-0.0333815,0.536965,-0.592585,0.16443,-0.555925,-0.224227,1.34595,-0.508771,0.166449,-0.520235,-0.0354205,1.48649,-0.51125,0.308131,-0.498676,-0.279047,1 +0.356954,0.308671,0.307671,-0.331478,-0.418321,-0.288072,-0.239029,0.486713,0.0986159,0.403809,0.130558,-0.868623,-0.0277048,-0.647235,-0.867614,1.24361,-0.678768,0.1087,-0.568358,-0.481466,1.39426,-0.672821,0.347,-0.535036,-0.616582,0 +0.252651,0.113338,0.91143,0.0203289,-0.0814254,0.196142,-0.919745,-0.323812,-0.381201,0.0372297,0.27329,-0.809076,-0.0362601,-0.645816,-0.6205,1.16393,-0.604648,0.0831443,-0.559393,-0.222478,1.2592,-0.577223,0.311079,-0.517156,-0.303813,1 +0.494299,0.669863,-0.390316,-0.845446,-0.396702,-0.393114,-0.597852,0.417421,0.355825,0.644816,-0.865455,-0.416252,0.40068,-0.450613,-0.361012,0.0591676,-0.414423,0.466454,-0.451323,-0.25601,-0.0363901,-0.518266,0.486273,-0.49136,-0.279257,1 +0.114457,0.485194,-0.0604869,-0.331238,-0.512099,-0.620559,0.0796863,0.74733,0.360862,0.591356,-0.535027,-0.988887,-0.0352507,-0.676449,-1.35768,0.360102,-0.779223,0.105572,-0.597892,-0.821549,0.239539,-0.762442,0.359103,-0.557654,-0.899646,1 +0.165619,0.229474,0.544061,-0.0701915,-0.34705,-0.164919,0.0457449,0.431113,-0.0852632,0.2016,0.495888,-0.574995,-0.0112738,-0.599521,-0.0886914,1.58858,-0.559533,0.169617,-0.552657,-0.104802,1.73596,-0.628575,0.32773,-0.532238,-0.603199,0 +0.125961,0.25487,-0.406047,-0.0535706,-0.177833,-0.287282,-0.14498,0.199121,-0.0370996,0.335656,-0.526421,-0.855641,0.00591673,-0.652042,-0.810076,0.326121,-0.780542,0.126141,-0.598612,-0.826097,0.493149,-0.714358,0.384269,-0.547989,-0.705193,1 +0.366479,0.603529,0.25564,-0.514668,-0.460767,-0.447225,-0.114287,0.701075,0.286983,0.412784,-0.332278,-0.522044,0.190555,-0.560393,-0.130608,0.560862,-0.606098,0.277468,-0.555385,-0.40145,0.731449,-0.624827,0.421059,-0.532228,-0.430364,1 +0.181151,0.388057,0.179591,-0.174494,-0.239819,-0.201419,-0.349738,0.131298,-0.041867,0.293529,0.0800161,-0.913789,-0.0374995,-0.663846,-0.992725,1.21966,-0.748629,0.134246,-0.594264,-0.658669,1.27765,-0.709171,0.38228,-0.551038,-0.669573,1 +0.191495,0.412644,0.539444,-0.180371,-0.394334,-0.379062,0.234811,0.454161,-0.0175403,0.311769,0.014592,-0.835122,-0.0317326,-0.642927,-0.72991,1.18605,-0.664525,0.148448,-0.567119,-0.40041,1.38335,-0.665185,0.358134,-0.533877,-0.58347,0 +0.213833,0.0745991,0.549798,0.18249,-0.32789,0.076768,0.32788,0.487932,-0.498007,0.0278749,0.558773,-0.845586,-0.0366299,-0.65645,-0.727281,1.49157,-0.644466,0.170566,-0.578533,-0.300905,1.78255,-0.67525,0.370147,-0.553466,-0.777603,1 +0.366219,0.563761,0.1647,-0.484614,-0.417251,-0.477608,-0.365649,0.724303,0.222408,0.454791,-0.256579,-0.683195,-0.0581081,-0.618431,-0.329979,0.69169,-0.72956,0.113917,-0.591546,-0.578882,0.812574,-0.71175,0.351707,-0.5465,-0.671981,0 +0.0707411,0.27359,0.612894,0.0295338,-0.226866,-0.0731098,-0.0189795,0.193404,-0.216791,0.0873822,0.447205,-0.727291,-0.0680127,-0.599041,-0.445975,1.51564,-0.618541,0.140113,-0.548159,-0.304353,1.75252,-0.643407,0.313508,-0.524492,-0.722194,0 +0.611784,-0.32867,0.00539696,-0.0355205,-0.341533,-0.0795263,-0.043726,0.301834,-0.264935,0.362381,1.02974,-0.240688,-0.138844,-0.214832,0.221868,1.34824,0.471201,-1.36561,0.556235,0.664486,1.57732,0.497447,-1.90195,0.992126,-0.000599813,1 +0.277698,0.118075,0.104483,-0.186568,-0.265295,-0.183859,0.175164,0.105092,-0.160482,0.341003,0.0843137,-0.807997,0.0129529,-0.63791,-0.680617,1.14744,-0.678048,0.155974,-0.574245,-0.454021,1.34829,-0.641288,0.36419,-0.535706,-0.485564,1 +0.177433,0.326921,0.425007,-0.181001,-0.374714,-0.279487,0.210375,0.282535,0.00553699,0.320164,0.150068,-0.732078,0.00789565,-0.625567,-0.470712,1.24339,-0.681246,0.14616,-0.571107,-0.453701,1.60103,-0.681226,0.354516,-0.540983,-0.673241,0 +0.375784,0.567948,-0.167468,-0.919705,-0.658119,-0.712329,0.463626,0.685224,0.622638,0.852642,-0.563721,-0.831644,0.229074,-0.568718,-1.33581,0.593954,-0.754376,0.265484,-0.56516,-1.03719,0.823438,-0.770128,0.432073,-0.550658,-1.09798,1 +0.399111,0.653122,0.110629,-0.539464,-0.462986,-0.402619,-0.118295,0.715378,0.245835,0.412074,-0.625597,-0.244206,-0.992745,0.0396481,0.0185997,0.232283,-0.34732,-0.743542,-0.123792,-0.260327,0.313708,-0.204928,-0.862257,0.183649,-0.317876,0 +0.307601,0.474939,0.622338,-0.404468,-0.443417,-0.396292,0.269042,0.234471,0.496348,0.288102,-0.604838,0.571017,1.54521,0.383589,0.60205,-0.389726,-0.332408,0.592985,-0.318485,0.020109,-0.0335416,-0.302724,0.56565,-0.348189,0.0916396,0 +0.591875,0.811865,-0.0580782,-0.804948,-0.591076,-0.535196,-0.157284,0.883036,0.468603,0.567019,-1.56594,-0.632163,0.0498526,-0.462137,-0.507642,-1.2878,-0.484194,-0.152357,-0.445995,-0.411944,-1.20758,-0.394184,0.0234871,-0.385868,-0.259638,1 +0.43707,0.412204,-0.00410782,-0.71158,-0.390046,-0.443726,-0.337845,0.320844,0.409875,0.595084,-0.465405,-0.527091,0.586158,-0.289621,-0.840819,-0.277038,-0.630394,0.157054,-0.415822,-0.938095,0.374984,-0.505093,0.123362,-0.243726,-0.74749,1 +0.617981,0.36377,0.226945,-0.263335,-0.36481,-0.259338,0.0433263,-0.0428465,0.634122,0.129349,-0.135696,1.88573,0.45535,2.25539,1.45122,-0.172405,0.719495,0.0578082,0.924702,0.895979,0.120114,1.09345,-1.56538,1.44762,1.06373,0 +0.193254,0.357794,1.27375,0.161402,-0.338095,-0.128769,0.76551,0.0195393,-0.276388,-0.0640047,0.691321,0.754306,0.464425,0.0994753,1.14599,-0.230753,0.294908,0.234251,-0.123862,1.01153,0.500056,0.30899,0.169077,-0.182849,0.977943,0 +0.246705,0.365669,1.33705,0.188577,-0.36421,-0.115666,0.972566,-0.149628,-0.198901,-0.102554,0.41852,0.690321,0.456949,0.0803658,1.17233,-0.731648,0.332977,0.349098,-0.104123,1.02452,0.0810055,0.448624,0.298396,-0.106381,1.12238,0 +0.326441,0.405797,0.459938,-0.199291,-0.352137,-0.23765,0.18306,0.413623,0.111549,0.141992,0.295958,1.17611,1.16647,0.50949,1.13809,0.0696319,-0.165959,0.411534,-0.288912,0.411444,0.778053,-0.0698719,0.18278,-0.133946,0.368518,0 +0.72815,0.283904,0.348759,-0.47327,-0.416112,-0.0338813,1.15195,-0.0367398,0.18153,0.0798963,-0.123742,0.61987,0.964461,0.310889,0.981261,-0.284664,0.0700214,0.657599,-0.0709113,0.632493,0.271841,0.274509,-0.111329,0.260427,0.687583,1 +0.452542,0.818441,0.0296936,-0.805068,-0.662677,-0.639519,0.159153,0.859289,0.558524,0.65641,-1.4496,-0.772356,0.160102,-0.588137,-0.748519,-0.985929,-0.786419,0.206587,-0.589187,-1.01388,-1.00834,-0.737855,0.441558,-0.548219,-0.853312,1 +0.495968,0.376194,0.403499,-0.30899,-0.335516,-0.16337,0.522563,-0.165879,0.943302,-0.0861326,-0.251512,1.445,1.58354,2.17125,0.627476,-0.0813653,0.676599,1.68762,0.91007,0.326441,0.315107,0.459278,0.32833,0.322893,0.284834,1 +0.0367098,0.170726,1.58435,0.384049,-0.215732,0.0150718,0.478557,-0.21941,-0.51025,-0.155245,0.560632,0.733897,0.723403,0.213283,1.08043,-0.298736,0.432832,0.441877,0.0436059,1.11035,0.543802,0.470722,0.159792,-0.0606365,1.01477,0 +0.311569,0.347849,0.0979162,-0.278237,-0.189966,0.0325522,0.398232,-0.0252861,0.00902508,0.0354207,-0.210814,0.340393,1.12263,0.23582,0.607776,-0.113028,-0.112029,0.739124,-0.0985261,0.259967,0.429264,-0.0793866,0.312289,-0.0536804,0.238339,0 +0.459808,0.441158,-0.317256,-0.460507,-0.295518,-0.0882315,0.306472,0.351117,0.0399781,0.21878,-0.231863,-0.131678,0.621569,-0.171306,0.324012,-0.318315,-0.40051,0.429024,-0.350148,-0.104163,0.385369,-0.296328,0.406617,-0.242837,-0.0466645,1 +0.34608,-0.171186,1.19948,0.439329,-0.151437,0.343801,0.852572,-0.817512,-0.223857,-0.374634,0.359843,1.35992,0.69229,0.826446,1.397,-0.405657,1.36423,1.32931,1.24516,1.40241,0.118865,1.18592,0.211094,0.574215,1.28713,1 +0.752297,0.831294,-0.240408,-0.883675,-0.650363,-0.395013,-0.168058,0.643717,0.450023,0.628165,-0.359673,-0.286643,0.385339,-0.232543,0.0455149,-0.416301,-0.0630755,-0.311419,-0.0741795,0.257009,0.0406377,0.0302132,-0.433612,0.0701117,0.301674,1 +0.420999,0.422728,0.294908,-0.414443,-0.461577,-0.49161,-0.186568,0.687083,0.391145,0.406077,-0.0374795,0.877358,1.53406,0.338094,0.701735,-0.00249855,-0.384599,0.445256,-0.435111,-0.0102443,0.603729,-0.318216,0.51055,-0.399231,0.0607865,0 +0.16348,0.161331,1.19553,0.177063,-0.154146,0.0758385,0.375734,-0.313348,-0.420099,-0.119264,0.355735,0.792115,0.934797,0.275769,1.08267,-0.29187,0.373705,0.642767,0.0418268,1.03847,0.324092,0.426306,0.304123,0.00301854,1.01592,0 +0.819181,0.670012,-0.426256,-0.608626,-0.404818,-0.355395,-0.272091,0.335486,0.265125,0.431413,-0.516237,-0.100605,0.40132,-0.0379693,0.284384,-0.590356,-0.0141923,-0.100825,0.021548,0.27269,0.137834,0.430414,-0.941853,0.575425,0.485783,1 +0.231713,0.23731,0.246275,-0.136205,-0.0636851,0.316966,0.823798,-0.2555,-0.421828,-0.176383,-0.157074,0.195353,0.716557,0.0057467,0.708321,-0.29204,-0.0702316,0.767339,-0.147479,0.387867,0.470302,0.00775555,0.444936,-0.0888411,0.340083,1 +0.370417,0.317416,0.047274,-0.225396,-0.332738,-0.179122,-0.36509,0.242097,0.386108,0.226276,0.0244965,0.854841,1.03854,0.221378,0.973816,-0.184309,-0.139464,0.628595,-0.214932,0.338614,0.178302,-0.113108,0.416951,-0.170216,0.374554,0 +0.258158,0.394843,0.355655,-0.16445,-0.262326,-0.0404277,0.498686,-0.0370397,-0.0113238,0.0547701,0.0532807,1.14788,1.20149,0.493899,1.23473,-0.143621,-0.0875421,0.539844,-0.271521,0.541573,0.387397,-0.00760602,0.436501,-0.213103,0.592135,0 +0.446865,0.608136,0.31033,-0.676089,-0.6383,-0.69329,0.352786,0.632613,0.585419,0.633273,-0.359823,0.266344,1.12866,-0.0696619,0.1452,-0.261526,-0.636051,0.298666,-0.559443,-0.600141,0.122143,-0.594114,0.514758,-0.522873,-0.464475,0 +0.388837,0.700766,-0.107411,-0.315397,-0.358303,-0.316027,-0.0152616,0.388257,0.290651,0.225436,-0.824138,0.680666,1.3034,0.204208,0.788417,-0.67469,-0.319785,0.543752,-0.414743,0.12706,-0.412504,-0.254461,0.705503,-0.395893,0.243696,0 +0.240208,0.464485,0.537105,-0.225116,-0.271641,-0.168807,-0.157583,0.0805258,0.548519,0.0142623,-0.0267154,1.04172,1.23262,0.954056,0.936716,-0.0960772,0.0420868,0.688292,0.106251,0.333387,0.621019,0.0317424,0.156284,-0.0203986,0.303663,0 +0.71072,0.741083,-0.0282246,-0.535796,-0.515957,-0.433532,-0.0257958,0.659688,0.639579,0.262326,-0.837241,0.864436,1.21695,0.347509,1.12847,-1.02115,-0.362761,0.367208,-0.471312,0.192175,-0.480836,-0.187158,0.573795,-0.375814,0.438199,0 +0.395013,0.752557,0.0926091,-0.937276,-0.665855,-0.968628,-0.29108,0.953097,0.795583,0.913839,-1.38375,-0.884065,0.0959973,-0.626147,-1.16518,-0.822299,-0.859399,0.130548,-0.606138,-1.36583,-0.242627,-0.810535,0.385279,-0.559123,-1.20591,1 +0.828875,0.963521,-0.693909,-0.928491,-0.604678,-0.634762,-0.446035,0.793725,0.937476,0.612444,-1.26798,0.456949,-0.0731199,0.514697,0.839839,-0.839379,-0.0194095,-0.150258,-0.0181303,0.410445,-0.447325,1.11404,-2.94315,2.17473,0.860668,0 +0.443926,0.538225,-0.0772477,-0.598921,-0.554356,-0.688792,-0.625857,0.749259,0.757035,0.669803,-0.989157,0.519455,1.38945,0.122952,0.32871,-0.726051,-0.415752,0.535536,-0.439779,-0.148149,-0.387447,-0.373655,0.689682,-0.425057,-0.0251563,0 +0.485933,0.662646,-0.594674,-0.952008,-0.578333,-0.739394,-0.903564,1.01391,0.852962,0.877359,-1.28548,-0.566459,0.517146,-0.357744,-0.551048,-0.909431,-0.700955,0.343162,-0.511999,-0.977854,-0.338045,-0.649694,0.569538,-0.472621,-0.865015,1 +0.175734,0.348739,0.570757,-0.0864325,-0.374365,-0.405627,0.252222,0.112698,0.245745,0.277538,-0.0541703,1.52954,1.32103,0.615422,0.943302,0.129469,0.101574,0.712309,-0.234871,0.411534,0.448044,0.0121831,0.580102,-0.326041,0.487672,0 +0.541813,0.678408,-0.253311,-0.706462,-0.660058,-0.678588,-0.472811,0.865775,0.908402,0.684345,-1.0113,-0.0783571,0.987978,-0.104093,0.0292539,-0.913039,-0.642218,0.359992,-0.516017,-0.658389,-0.297287,-0.585769,0.561252,-0.49105,-0.463896,0 +0.723303,0.715627,0.1095,-1.12734,-0.831004,-0.956035,-0.326071,1.41197,0.948589,0.920685,-0.831074,-0.858129,0.0799661,-0.625527,-0.988428,-0.854851,-0.833453,0.152286,-0.596573,-1.30576,-0.299026,-0.776524,0.394993,-0.547779,-1.09178,1 +0.560482,0.61956,-0.432843,-0.347869,-0.424707,-0.336076,-0.468583,0.80168,0.238499,0.342812,-1.20171,-0.260537,-0.452792,-0.067623,-0.0116837,-0.829295,-0.499966,-0.170117,-0.405927,-0.337705,-0.212204,-0.32843,-0.07292,-0.25425,-0.141792,1 +0.133317,0.0861227,1.04234,0.243796,-0.172945,0.09127,0.213223,-1.00392,1.1868,-0.407416,1.6342,0.758524,-0.72854,0.335466,0.828215,0.630364,0.915208,0.824827,0.499716,1.02852,0.98366,0.730869,-0.43694,0.311519,0.644866,1 +0.757504,0.921395,-0.133167,-1.0104,-0.644746,-0.702434,0.276378,0.711979,0.459438,0.725062,-1.02455,-0.536905,0.371676,-0.424817,-0.326941,-1.11583,-0.322813,-0.170327,-0.350728,-0.0127929,-0.454181,-0.174604,-0.115826,-0.257539,0.0895407,1 +1.06675,0.318395,-0.608876,-0.648084,-0.60073,-0.432992,-0.754196,0.603169,0.515237,0.698427,-0.815483,-0.303254,0.174544,-0.425767,0.296067,-1.05929,-0.394024,0.210794,-0.471052,0.155465,-0.38353,-0.265914,0.447085,-0.382,0.298526,1 +0.295788,0.259238,1.23009,-0.0353506,-0.350678,0.0527512,1.35772,0.005477,-0.60047,-0.050812,-0.431983,-0.0460349,0.495188,-0.251752,0.569467,-1.5242,0.140533,0.702355,-0.208676,0.797972,-0.887953,0.276548,0.842358,-0.152816,0.976264,1 +0.250942,0.477938,0.2008,-0.573995,-0.465545,-0.522133,0.581071,0.117665,0.277418,0.607017,-1.08408,-0.859169,0.153256,-0.584869,-1.1369,-0.741013,-0.772326,0.173635,-0.571687,-0.996933,-0.0682126,-0.696158,0.429704,-0.515617,-0.813963,1 +0.532498,1.05225,-0.431233,-1.06656,-0.71077,-1.00065,-0.67474,1.30507,0.857819,0.959744,-1.55839,-0.904324,0.0329719,-0.582291,-1.39609,-0.994664,-0.745151,0.0574783,-0.514238,-1.19182,-0.454281,-0.706702,0.305412,-0.47372,-1.09693,1 +0.69308,0.394244,-0.176253,-0.852762,-0.720955,-0.677708,-0.144641,0.543752,0.704983,0.932548,-1.7148,-0.43681,1.15043,0.211104,-0.769248,-1.27369,-0.570117,0.843937,-0.188087,-0.918516,-0.67384,-0.566539,0.842008,-0.350687,-0.854471,1 +0.544451,0.484464,0.168987,-0.597592,-0.477658,-0.40135,0.474999,0.430874,0.415272,0.368398,-1.20932,0.530219,1.98553,0.69238,0.405717,-1.34981,0.315667,1.02172,0.304343,0.553936,-1.15263,0.395773,0.648824,0.0936788,0.809835,1 +0.183649,0.481616,0.316316,-0.344371,-0.185818,-0.339414,0.165229,0.350878,0.0452752,0.176114,-0.00534711,1.27199,1.02801,0.394373,1.05707,0.126721,0.196302,0.885544,-0.121084,0.650893,0.712669,0.0636649,0.56574,-0.324112,0.50982,0 +-0.0954677,0.268083,1.73526,0.308121,-0.150927,0.171726,1.35767,-0.304653,-0.740104,-0.34643,0.352437,0.588717,-0.442427,0.500735,1.15607,-0.181091,0.391335,0.357394,0.19987,0.991306,-0.150777,0.511029,-0.121124,0.313938,1.10223,1 +0.537195,0.810046,-0.0776175,-0.815023,-0.713908,-0.94746,-0.334696,1.02823,0.986409,0.795544,-1.77458,-0.260797,1.35454,0.560682,-0.51079,-1.43889,-0.369587,0.713558,-0.0348911,-0.502364,-0.788287,-0.36453,0.558464,-0.256699,-0.416302,1 +0.487093,0.579842,0.302134,-0.497957,-0.489112,-0.0741492,0.790806,0.335756,0.100125,0.179881,-1.91062,-0.353506,0.289281,-0.463186,0.205607,-1.79162,-0.257719,0.494888,-0.40094,0.360652,-1.70906,-0.248954,0.645266,-0.375064,0.325861,1 +1.14003,0.683245,-0.215322,-0.767889,-0.588517,-0.367588,0.686283,0.334926,0.32791,0.395163,-1.48528,-0.082195,0.930729,-0.0510222,0.245565,-1.48229,-0.0690223,0.558953,-0.152457,0.40159,-0.832863,0.162491,0.689432,-0.0337213,0.645396,1 +0.743202,0.698797,-0.156014,-0.706542,-0.556135,-0.495468,-0.0907302,0.696198,0.402599,0.524213,-1.85452,0.70965,1.95606,0.945521,0.726181,-1.60417,-0.120454,0.912339,-0.0786371,0.250782,-0.919056,0.0109938,1.00627,-0.0809454,0.392025,0 +0.3468,0.603529,0.223577,-0.497997,-0.379282,-0.332038,0.261187,0.290201,0.234022,0.318765,-1.13883,1.79981,2.5992,1.44445,0.863946,-0.964361,0.225006,0.868493,0.0529507,0.480736,-0.1814,0.414342,0.348879,0.208986,0.72919,0 +0.232732,0.18293,1.34486,0.352966,-0.210555,0.125481,0.83832,-0.731759,-0.194963,-0.266014,0.115107,2.26394,1.15648,1.58351,1.72869,-1.14986,2.46452,2.68645,2.58534,1.72714,-0.405358,2.44474,1.03329,1.51093,1.71675,0 +0.514088,0.677778,0.50935,-0.366309,-0.456759,-0.322863,0.154305,0.32766,0.32741,0.190785,-0.374834,1.61225,1.80516,0.852422,1.25019,-0.532458,0.0986957,0.777933,-0.166609,0.679477,0.143581,0.205007,0.723073,-0.153126,0.752797,0 +0.344191,0.448674,0.976844,-0.123062,-0.38308,-0.00445746,0.891351,0.10935,-0.279497,-0.0220078,-0.280056,0.982011,1.32204,0.481786,1.22351,-0.948549,0.631493,0.914978,0.213683,1.19449,-0.249963,0.608796,0.705833,0.0539306,1.21935,0 +0.683415,0.47414,0.458069,-0.205007,-0.406927,-0.121033,0.49265,0.143861,-0.0140622,0.0646547,-0.894379,0.900676,1.16635,0.387307,1.21177,-1.56645,0.69155,1.18615,0.447674,1.21689,-1.22574,0.913329,0.460327,0.508361,1.47671,0 +0.351567,0.808656,0.895359,-0.186977,-0.40094,-0.321553,0.731469,0.433902,0.0858329,-0.0505321,-0.999102,0.721284,1.24019,0.3104,1.04677,-1.23661,-0.0181602,0.643227,-0.269482,0.654851,-0.702864,0.10963,0.791796,-0.214782,0.793304,0 +0.784859,0.867124,-0.20012,-0.563201,-0.500246,-0.251462,-0.0257358,0.683555,0.544751,0.14532,-1.52191,0.322993,1.14823,0.301285,0.810405,-1.14803,0.0655839,1.21478,0.030633,0.475699,-0.733627,0.0730097,1.06451,-0.111029,0.531798,1 +0.490961,0.842558,0.415052,-0.355735,-0.475179,-0.344931,0.391205,0.530989,0.318665,0.10941,-0.789517,1.23996,1.65732,0.617421,1.13666,-0.870142,-0.0794965,0.626946,-0.322893,0.465884,-0.220129,0.0393282,0.752267,-0.280396,0.629604,0 +0.442867,0.758784,0.60121,-0.180021,-0.413633,-0.241927,0.516417,0.257639,0.222358,-0.0135124,-0.442647,1.29968,1.60068,0.852322,1.37324,-0.589087,0.299276,1.02016,0.00973445,0.836681,0.212154,0.3459,0.784919,-0.0910798,0.821579,0 +0.72904,0.806348,-0.0878719,-0.762582,-0.553506,-0.466594,-0.21801,0.731039,0.634082,0.425507,-1.66058,0.0535405,1.19555,0.250742,0.355385,-1.45033,-0.305922,0.804039,-0.264395,-0.0247364,-0.786788,-0.206337,0.92914,-0.269372,0.153865,1 +0.54685,0.657689,0.937406,-0.295038,-0.493669,-0.248494,0.695708,0.244686,-0.113867,0.149668,-1.2283,2.2921,2.36353,2.82215,1.80891,-1.98406,2.43758,4.23305,3.44696,1.67466,-1.48543,2.53484,1.73641,2.25589,2.05275,1 +0.41878,0.686513,0.36355,-0.357294,-0.393884,-0.208515,0.51056,0.240718,0.329379,0.0666336,-0.824758,0.69225,1.5183,0.599151,0.949369,-0.81908,-0.0185699,1.05445,-0.0120336,0.431483,-0.0730899,0.0386086,0.763961,-0.169007,0.562131,0 +0.404708,0.58268,0.096527,-0.305842,-0.422528,-0.266354,0.0768279,0.477848,0.00452755,0.30969,-1.45371,1.88699,2.70124,1.69689,1.04813,-1.19296,0.289831,0.784849,0.0489829,0.636671,-0.63777,0.466744,0.706992,0.114567,0.859258,0 +0.595533,0.748669,0.389856,-0.396952,-0.495298,-0.335696,-0.0349908,0.703764,0.431293,0.133647,-0.607947,1.84235,1.93795,1.10016,1.38509,-0.680237,0.209905,0.847575,-0.129129,0.74818,-0.0643947,0.343891,0.830474,-0.110049,0.894149,0 +0.676399,0.766809,0.128969,-0.398351,-0.485694,-0.304683,0.136715,0.411035,0.431873,0.167958,-0.254241,1.90065,1.76741,1.11434,1.46537,-0.461816,0.421039,1.00899,0.0913197,0.915338,0.210994,0.433562,0.598592,0.0102646,0.916077,0 +0.557694,0.841728,0.0900505,-0.467923,-0.517656,-0.480926,0.0465345,0.573455,0.466564,0.323203,-0.928191,1.13131,1.67109,0.599191,1.0585,-1.05955,-0.071341,0.569797,-0.246675,0.479417,-0.357364,0.129299,0.670212,-0.142742,0.704053,0 +0.569338,0.775914,-0.312289,-0.433632,-0.359583,-0.0505122,0.159013,0.378153,0.297357,0.0536207,-0.900886,0.607357,1.01646,0.613323,1.0076,-0.836201,0.41859,1.50175,0.446415,0.682746,-0.193714,0.405227,0.869663,0.172536,0.734647,1 +0.654571,0.78452,0.239429,-0.69293,-0.609626,-0.52842,0.738875,0.566209,0.534517,0.380721,-1.3718,-0.209805,0.524892,-0.330809,0.276828,-1.15567,-0.323832,0.652742,-0.389496,0.0106142,-0.488082,-0.260467,0.828805,-0.364,0.120554,0 +0.733208,0.539514,0.179721,-0.861827,-0.618681,-0.574305,0.0841039,0.526111,0.56487,0.658159,-1.38041,-0.0613565,1.33947,0.175683,-0.178592,-1.20075,-0.451263,0.681806,-0.336066,-0.430534,-0.331528,-0.374085,0.877299,-0.318165,-0.349198,1 +0.5466,0.677798,-0.641738,-0.438909,-0.259188,-0.184589,-0.439549,0.549718,0.316666,0.171686,-1.47691,0.29062,1.19051,0.172485,0.623178,-1.30255,0.0533206,0.934997,-0.160772,0.445666,-0.687413,0.0994252,0.997533,-0.157993,0.530589,1 +0.897018,0.561492,-0.577413,-0.551248,-0.480846,-0.198791,-0.502734,0.649044,0.520674,0.305373,-1.8674,0.048903,0.76524,-0.139664,0.519945,-1.61362,-0.12797,0.769188,-0.264115,0.282405,-1.20256,-0.0855233,0.809776,-0.209805,0.354295,1 +0.593524,0.56571,-0.0631154,-0.640868,-0.516537,-0.399781,-0.0680926,0.804948,0.454351,0.414243,-1.60047,1.11126,1.90078,0.672681,0.925262,-1.50255,-0.135256,0.781381,-0.288412,0.249873,-0.960103,-0.0410477,0.906842,-0.259258,0.392025,0 +0.540314,0.825717,-0.0808157,-0.775255,-0.632963,-0.704693,-0.440698,0.782811,0.757035,0.69224,-1.08575,1.6548,2.42119,1.05485,0.844417,-0.87447,0.12767,1.16643,-0.102334,0.352107,-0.302554,0.105132,1.07723,-0.226695,0.445485,0 +0.869903,0.646835,-0.193844,-0.690961,-0.531928,-0.394703,0.376294,0.568908,0.466354,0.350538,-1.43559,-0.111219,0.998412,0.0184597,0.14652,-1.38731,-0.216132,0.839319,-0.209645,0.154645,-0.549698,-0.108591,0.962662,-0.203088,0.292649,1 +0.61895,0.716257,-0.0203789,-1.02566,-0.704524,-0.678208,-0.0266553,0.898237,0.805488,0.752407,-2.36834,-0.34632,0.788078,-0.0953678,-0.159812,-1.93881,-0.405238,0.790996,-0.187337,-0.306992,-1.43564,-0.370397,0.942043,-0.225486,-0.288392,1 +2.12677,0.330998,-0.768288,-1.02642,-0.671642,-0.335806,0.91113,0.850883,0.367738,0.313418,-1.38466,0.644166,-0.931929,0.459978,1.02294,-1.95406,0.844826,-0.41877,0.270032,1.23916,-1.68448,1.73313,-1.18126,1.0866,1.63846,1 +1.23977,0.701225,-0.0667834,-1.41642,-0.89268,-1.17846,-1.23403,0.997233,1.41505,1.22775,-3.39624,-0.306752,0.308411,-0.452932,0.21889,-3.53228,-0.616982,0.222008,-0.56593,-0.285493,-2.80526,-0.357164,0.561492,-0.456609,0.161211,1 +1.11375,0.548779,-0.10922,-0.658579,-0.54769,-0.430194,0.186218,0.465405,0.610165,0.323663,-0.156304,1.4289,0.709781,0.772216,1.59024,-0.490591,0.900766,0.853402,0.267573,1.26452,0.0125831,0.884954,0.497237,0.126381,1.33835,1 +0.711729,1.00834,-0.716047,-1.11361,-0.737416,-0.931119,-0.318865,1.14461,0.859758,0.960803,-2.75787,-0.245385,1.57666,0.54741,-0.767529,-1.99369,-0.478368,1.08166,-0.0499828,-0.932009,-1.40252,-0.454881,1.08639,-0.209645,-0.780702,1 +0.508381,0.702834,0.21922,-0.574745,-0.635771,-0.678937,-0.0642747,0.922174,0.593165,0.539564,-1.70614,0.294079,1.692,0.439019,0.162601,-1.29365,-0.234601,1.03651,-0.134396,-0.032642,-0.812384,-0.268283,0.957405,-0.311329,-0.0299237,0 +0.41936,0.735307,0.531658,-0.808996,-0.581191,-0.878768,0.47473,0.833313,0.598132,0.600191,-2.00932,-0.293839,1.54581,0.694029,-0.58294,-1.76263,-0.304613,1.5676,0.452042,-0.575474,-0.815333,-0.403069,0.873231,-0.203758,-0.472761,1 +0.6022,0.745171,-0.131178,-0.453411,-0.538485,-0.429804,0.0869423,0.372416,0.481506,0.40208,-1.22333,1.59878,2.82945,1.81295,0.879397,-1.05556,0.353836,1.45568,0.420919,0.480556,-0.228335,0.329049,0.900376,0.0445058,0.621099,0 +0.193714,0.395663,0.762442,-0.106611,-0.289291,0.231763,1.09922,-0.18317,-0.433102,-0.0833941,-1.00173,0.0975264,0.91066,0.0239467,0.557614,-1.50538,0.340503,1.1855,0.235001,0.916337,-1.02466,0.347109,0.951738,0.111599,0.958004,1 +0.693879,0.65624,0.0778872,-0.577443,-0.526551,-0.294089,0.30927,0.34606,0.470432,0.298237,-0.641428,-0.234531,0.522154,-0.331718,0.224727,-0.599171,-0.265474,0.58382,-0.311309,0.144651,0.137065,-0.212034,0.547989,-0.266034,0.174804,1 +0.999582,1.06807,-1.09995,-1.12075,-0.682026,-0.866455,-1.16782,1.00911,1.1202,0.916197,-2.12518,-0.490141,0.589986,-0.0988359,-0.43693,-1.96317,-0.256399,0.237919,-0.204768,0.0576784,-1.34549,-0.14552,0.256899,-0.221648,0.194693,1 +1.47721,0.803429,-0.471571,-0.841129,-0.649334,-0.478387,0.0372396,0.678488,0.685244,0.372786,-0.790087,0.27365,0.676069,0.0460946,0.858849,-1.27259,0.669253,0.429684,0.411604,1.14342,-0.526231,1.21659,-0.719805,1.04335,1.38315,1 +0.208426,0.424077,1.41613,0.106122,-0.32813,-0.0391284,0.987848,-0.126261,-0.495908,-0.081755,0.0565789,0.882835,0.900386,0.369227,1.25346,-1.06213,0.890371,0.942972,0.450033,1.34398,-0.189076,0.91064,0.657709,0.199461,1.38184,0 +0.264865,0.641418,1.09672,-0.0248963,-0.368188,-0.0364499,0.709351,0.192894,-0.258048,-0.116046,-0.369148,-0.0318327,0.389606,-0.322023,0.642877,-0.923123,0.191565,0.605698,-0.178212,0.898157,-0.353356,0.148528,0.713828,-0.239109,0.869593,0 +-0.0268753,-0.0468543,1.1612,0.444916,-0.00557702,0.575784,0.950239,-0.920025,-0.605508,-0.456999,-0.416152,1.13475,1.62874,0.979742,1.21303,-1.04763,1.27782,2.22071,1.33241,1.33799,-0.405557,1.28112,0.997493,0.937796,1.35425,1 +0.421419,0.269282,0.318715,-0.188367,-0.246355,0.436451,1.19317,-0.506712,0.30957,-0.343971,-0.385309,1.25006,2.19716,1.26469,0.991396,-0.651173,1.14005,2.73941,1.32672,0.939285,-0.0597073,0.843757,1.0124,0.553057,0.860458,1 +0.525921,0.625287,0.52912,-0.380261,-0.4561,-0.21885,0.321144,0.406197,0.267133,0.115557,-0.0168208,1.05582,1.09729,0.36345,1.24671,-0.324762,0.111799,0.653841,-0.196712,0.750179,0.252481,0.102604,0.553506,-0.21857,0.725352,0 +0.416641,0.593674,1.01589,-0.0648744,-0.408936,-0.12726,0.755096,0.126401,-0.132737,-0.0482134,0.170576,0.992185,1.03039,0.397412,1.24522,-0.730549,0.52835,0.740104,0.136495,1.1532,0.215342,0.543362,0.484924,-0.0121731,1.11457,0 +0.634852,0.603119,0.126291,-0.519545,-0.582331,-0.584389,-0.303174,0.848325,0.771407,0.407107,-0.989927,0.411204,1.04817,-0.0184,0.634402,-0.935027,-0.338434,0.448784,-0.451832,0.122203,-0.688862,-0.318036,0.588927,-0.431743,0.151617,0 +0.428955,0.491021,0.54645,-0.266104,-0.333037,-0.0537904,0.539004,0.120844,-0.0834642,0.0482537,-0.690961,0.6016,0.847805,0.308511,1.04745,-1.33925,0.221808,0.645496,-0.0723705,0.91202,-0.613383,0.323292,0.623038,-0.0410973,1.00402,0 +0.301764,0.56552,0.23711,-0.176143,-0.277438,-0.0831643,0.269762,0.16353,0.10968,0.00791581,-0.106572,1.24154,1.50249,0.631084,1.17707,-0.304453,0.14633,0.863026,-0.064115,0.621679,0.457409,0.220219,0.560113,-0.0733396,0.605048,0 +0.416801,0.60179,0.295878,-0.398751,-0.509041,-0.365269,0.113668,0.422358,0.450063,0.320574,-0.149568,0.81983,1.32417,0.249943,0.850883,-0.3095,-0.261097,0.552547,-0.377773,0.216531,0.395553,-0.180351,0.623368,-0.360352,0.295957,0 +0.536356,0.626416,0.135785,-0.341323,-0.424697,-0.264175,0.290231,0.514048,0.201929,0.159493,-0.223587,1.14082,1.51526,0.52818,1.07516,-0.339933,-0.0583681,0.81949,-0.267064,0.389277,0.363061,0.00119914,0.832963,-0.305432,0.416741,0 +0.677788,0.840129,0.206187,-0.433512,-0.472141,-0.295168,0.434252,0.585329,0.244386,0.0978165,-0.749399,0.104972,0.639719,-0.203888,0.642817,-0.669393,0.00146906,0.860188,-0.177923,0.379782,0.128909,0.0668831,0.839379,-0.172065,0.428854,1 +0.483455,0.45562,-0.388567,-0.354176,-0.307451,-0.0409874,-0.030943,0.295888,0.137974,0.192904,-0.973856,-0.00639661,0.702635,-0.155185,0.487822,-0.950928,-0.176004,0.703234,-0.259098,0.244786,-0.223987,-0.0814955,0.735556,-0.193674,0.337035,1 +0.566949,0.612574,0.141053,-0.441678,-0.359243,-0.105742,0.0540504,0.314487,0.177882,0.12775,-0.917767,1.65977,2.10329,1.223,1.33448,-0.943932,0.288961,1.00082,0.0482933,0.760713,-0.452052,0.511479,0.892061,0.172306,0.959683,0 +0.515007,0.74793,-0.0629555,-0.726032,-0.605018,-0.62034,-0.12691,0.777613,0.665115,0.597552,-0.979073,0.591865,1.6796,0.357943,0.49183,-0.846076,-0.392225,0.569008,-0.431294,-0.0699016,-0.303903,-0.343382,0.726581,-0.424777,0.0336614,0 +0.624737,0.52859,-0.0426267,-0.523373,-0.352777,-0.10879,0.127,0.345091,0.171306,0.18303,-0.620809,0.231293,0.664665,-0.000669775,0.785269,-0.696428,0.0354504,0.675469,-0.0728302,0.58288,0.119584,0.161711,0.297197,0.152217,0.621679,1 +0.524652,0.562152,0.0960172,-0.486933,-0.484324,-0.376213,-0.148059,0.423238,0.536995,0.369238,-0.532778,0.859028,1.7004,0.519385,0.838,-0.653881,-0.202619,0.684284,-0.266454,0.227155,0.124462,-0.100385,0.646845,-0.246315,0.341233,0 +0.650173,0.828805,-0.435711,-0.920485,-0.65628,-0.579892,-0.499606,0.972277,0.696468,0.720655,-2.01902,-0.574655,0.356574,-0.500346,-0.518576,-1.79967,-0.612504,0.398221,-0.498846,-0.609006,-1.47457,-0.603569,0.551827,-0.479327,-0.623348,1 +0.779542,0.659618,-0.167768,-0.67457,-0.599531,-0.519755,-0.0412273,0.630564,0.464855,0.561882,-1.43999,0.632653,1.52652,0.277917,0.562371,-1.33765,-0.108111,0.543462,-0.296058,0.427665,-0.943053,-0.113168,0.654961,-0.32719,0.417631,0 +0.611195,0.71157,-0.363531,-0.867694,-0.677638,-0.767039,-0.666324,1.20056,1.05388,0.719046,-2.23908,-0.726092,0.211264,-0.576604,-0.735466,-1.70927,-0.708112,0.288771,-0.558564,-0.844996,-1.55946,-0.686174,0.521854,-0.521514,-0.855261,0 +0.482975,0.482185,0.224287,-0.545861,-0.499776,-0.65679,0.0706113,0.63762,0.551707,0.500835,-1.19669,1.14401,1.7702,0.596083,0.858959,-1.19363,-0.257469,0.501695,-0.376084,0.244336,-0.725462,-0.10923,0.67419,-0.307411,0.433682,0 +0.655071,0.762582,-0.0577584,-0.941493,-0.602909,-0.58385,-0.386498,0.621069,0.841938,0.645276,-1.33206,-0.0604569,0.800121,-0.0262557,0.290111,-1.20525,-0.176443,0.323872,-0.122873,0.231973,-0.343362,-0.0231375,0.139573,-0.0118433,0.391185,0 +0.663026,0.806987,-0.602509,-1.32238,-0.78348,-0.978683,-0.61875,1.18792,1.24627,1.0968,-1.92793,-0.925202,0.0121333,-0.650373,-1.13289,-1.40766,-0.78474,0.0911499,-0.586458,-0.939415,-0.850054,-0.741903,0.347709,-0.543432,-0.863236,1 +0.733827,0.799032,-0.698897,-1.07543,-0.677049,-0.771696,-0.649653,1.0032,1.07388,0.852662,-1.88542,-0.775505,0.202819,-0.576164,-0.908322,-1.47139,-0.665535,0.352936,-0.533268,-0.772396,-1.05136,-0.652392,0.556375,-0.51053,-0.766799,1 +0.543112,0.662557,-0.265914,-0.686383,-0.594724,-0.570017,-0.334317,0.762152,0.591375,0.653302,-1.90564,-0.396702,0.641538,-0.295388,-0.272031,-1.51284,-0.467054,0.543152,-0.377943,-0.310719,-0.988348,-0.440059,0.691001,-0.375634,-0.278737,0 +0.826517,0.705333,-0.477788,-0.467863,-0.326081,-0.319974,-0.452652,0.404758,0.433082,0.216032,-1.21658,2.38137,2.62274,2.1968,1.62895,-1.32615,0.822918,1.4693,0.875879,1.12652,-0.867964,1.19737,0.451053,1.05111,1.40939,0 +0.217661,0.187617,1.32834,0.313228,-0.211684,0.14605,0.854521,-0.482235,-0.155245,-0.330439,-0.0396783,1.63693,1.5024,1.09205,1.48438,-0.811365,1.54625,1.9338,1.35574,1.49883,-0.101774,1.39855,0.894429,0.603679,1.41579,0 +1.10789,0.606237,0.137994,-0.70998,-0.406397,-0.041817,0.522653,0.0189396,0.447414,0.0104444,-1.22419,4.53306,-1.18215,7.41656,2.15451,-1.50936,2.93689,0.300285,4.12902,1.63186,-1.00699,5.91291,-10.1453,12.6856,2.01687,1 +0.614023,0.398841,0.678008,-0.31005,-0.455,-0.298516,-0.246255,0.378632,0.870772,0.0443958,-0.923214,2.33543,3.55649,3.00221,1.32371,-0.65524,1.18651,2.56736,1.40666,0.906253,-0.0196293,1.01878,0.691371,0.851423,0.900126,0 +0.555545,0.556835,-0.11027,-0.461627,-0.463526,-0.242217,-0.239189,0.457479,0.519025,0.296847,-1.52014,1.02757,1.39759,0.425107,1.11484,-1.41177,-0.0660939,0.705803,-0.298416,0.458159,-1.35356,0.00276828,0.762312,-0.27304,0.586418,0 +0.421739,0.515457,0.110599,-0.280436,-0.195583,0.0631355,0.0585279,-0.252901,0.85612,-0.226615,-0.508681,2.83206,2.36073,3.07283,1.68969,-0.572346,1.34748,2.16897,1.57242,1.05028,0.0372995,1.33283,0.120784,1.2789,1.07978,0 +0.125881,0.413303,1.17145,0.221279,-0.262266,0.0925093,0.937256,-0.239129,-0.460177,-0.186537,-0.41907,1.70092,1.50998,1.01719,1.55045,-1.17634,1.28126,1.56913,0.961762,1.47802,-0.684085,1.22083,0.987128,0.487543,1.56286,0 +0.418191,0.421279,0.0273449,-0.356604,-0.339574,-0.096347,0.226256,0.210325,0.142842,0.193974,-0.639799,1.18243,1.73267,0.859208,0.996953,-0.602859,0.189096,0.833792,0.0715305,0.604548,-0.0407277,0.297986,0.431333,0.139204,0.725412,0 +0.403768,0.726841,-0.0463846,-0.636181,-0.614773,-0.685304,-0.798132,0.685934,0.869223,0.706982,-0.281396,-0.634862,0.136255,-0.548319,-0.326201,-0.110609,-0.623678,0.187787,-0.533398,-0.376324,0.461667,-0.481416,0.277958,-0.450333,-0.217031,1 +0.202019,0.219729,1.49247,0.211604,-0.149508,0.20062,0.93027,-0.488832,-0.572986,-0.293299,-0.625687,1.03836,1.42532,0.866484,1.29325,-1.22937,1.13748,2.02256,1.14238,1.34116,-0.571666,1.18457,1.25839,0.640579,1.42529,1 +0.719075,1.04423,-0.43768,-0.673271,-0.471931,-0.381291,-0.27242,0.791086,0.693779,0.217591,-1.1933,0.445965,1.74734,0.758224,0.548969,-1.01648,0.330938,1.53218,0.484844,0.507592,-0.479287,0.422688,0.807977,0.317866,0.628025,1 +-0.138304,0.069262,1.9947,0.632043,-0.161981,0.00641658,0.643307,-0.397672,-0.875929,-0.174464,0.502724,0.0226175,-0.0148019,-0.275359,0.787048,-0.290221,0.504803,0.185528,0.0503322,1.15511,0.470742,0.548269,0.0105542,-0.0260455,1.09731,1 +0.547879,0.485803,0.16321,-0.552177,-0.451802,-0.192274,0.340243,0.0826846,0.0426766,0.423498,0.374764,-0.603739,0.161941,-0.540364,-0.215002,0.29086,-0.335086,-0.340673,-0.325791,0.00656645,0.696198,-0.178043,-0.386088,-0.167288,0.0298335,1 +0.0421268,0.117885,0.389156,-0.126431,-0.247484,0.0611565,0.403129,-0.672231,0.938255,-0.0371695,1.4656,-0.345491,0.290451,-0.425727,-0.257199,1.44351,-0.260517,0.381571,-0.338295,0.00379797,1.46833,-0.460887,0.223677,-0.412863,-0.450203,1 +0.464235,0.441878,0.255999,-0.298726,-0.354376,-0.105792,0.232183,0.207576,0.153016,0.124452,-0.50992,1.47338,1.54213,0.908112,1.28072,-0.499196,0.378172,0.974345,0.174924,0.835642,-0.167728,0.360882,0.570107,0.0398883,0.901285,0 +0.606587,0.480316,-0.0726102,-0.379602,-0.241058,0.129119,0.756225,0.248224,-0.243117,-0.0611863,-1.20487,0.180911,0.825547,-0.00613678,0.694349,-1.13274,-0.151417,0.613083,-0.295228,0.412314,-0.567269,0.0821947,0.682985,-0.0880915,0.63836,1 +0.410665,0.551787,0.0613463,-0.281865,-0.115577,0.132288,0.235631,0.335786,-0.120904,-0.206706,-0.704214,0.421589,1.14424,0.320604,0.781661,-0.615572,0.0741192,0.957335,-0.00432783,0.449793,0.162801,0.207936,0.543502,0.137055,0.475499,1 +0.466204,0.667644,-0.0837541,-0.915898,-0.737106,-0.778023,-0.0230473,0.781471,0.679767,0.939295,0.847875,-0.942053,-0.00822551,-0.665755,-1.14995,1.13151,-0.82052,0.089091,-0.600251,-1.0545,1.10689,-0.816042,0.350068,-0.562621,-1.20181,1 +0.741573,0.946111,-0.89381,-0.596603,-0.404548,-0.365779,-0.740324,1.03637,0.675439,0.227086,-2.08348,0.699306,2.38307,1.36575,0.719715,-1.73292,0.122613,1.7984,0.392834,0.232882,-1.24133,0.25405,1.66281,0.244016,0.441138,1 +0.760443,0.808676,-0.813184,-0.612094,-0.423318,-0.243097,-0.463226,0.713139,0.467164,0.303993,-1.69137,0.194943,0.814733,-0.0675831,0.668463,-1.41282,-0.00447767,0.859128,-0.21944,0.453571,-1.13095,0.056139,0.959334,-0.169487,0.531488,1 +0.392195,0.462536,-0.318545,-0.580791,-0.32896,-0.38291,0.136765,0.40163,0.179372,0.469383,-0.386788,-0.585019,0.453961,-0.371097,-0.65663,-0.193544,-0.675589,0.186088,-0.494349,-0.746401,0.464415,-0.578243,0.329089,-0.40031,-0.65708,1 +0.469832,0.781681,-0.158483,-0.98484,-0.72964,-0.896498,-0.825387,0.867444,1.03665,1.00328,-0.596813,-0.410185,0.574965,-0.390626,-0.618611,-0.248264,-0.704843,0.181081,-0.566419,-0.906203,0.0697017,-0.699656,0.406447,-0.531888,-0.882126,0 +0.487113,0.40115,-0.0445756,-0.225636,-0.358723,-0.208456,-0.576114,0.390556,0.279287,0.261177,-0.652282,0.557464,1.40637,0.469182,0.726411,-0.526021,-0.0037081,0.573935,0.0150116,0.330299,0.231563,0.094368,0.205387,0.0366901,0.375704,0 +0.307401,0.668133,-0.000609742,-0.281046,-0.353406,-0.308071,-0.087452,0.542722,0.322553,0.177473,-0.664755,1.00101,1.39344,0.611664,0.964141,-0.662316,-0.174464,0.572856,-0.305093,0.276778,-0.0611065,-0.0322625,0.669343,-0.238669,0.442547,0 +0.61899,0.934887,-0.351417,-1.03061,-0.726931,-0.968778,-0.780452,0.964901,0.91034,1.01977,0.676309,-0.406557,0.107471,-0.54786,0.0363,0.885494,-0.643757,0.0570886,-0.571896,-0.325302,0.954546,-0.672471,0.306312,-0.538205,-0.568198,0 +0.683945,0.611824,0.205847,-0.392185,-0.2914,0.247284,0.665165,-0.0392085,-0.00805555,-0.176293,-0.463965,1.72481,2.35408,1.55659,1.33962,-0.479787,0.934677,2.10205,0.72929,1.01039,0.00620656,0.795723,1.28692,0.222288,0.931719,1 +0.567689,0.834772,-0.439429,-0.244736,-0.410975,-0.285443,-0.368388,0.420299,0.401989,0.211864,-1.3127,1.30057,1.39913,1.13245,1.23943,-1.06027,0.300945,0.763291,0.154325,0.735087,-0.626236,0.442107,0.683645,0.154445,0.914088,0 +0.315317,0.430444,1.27335,0.107731,-0.238919,0.0841439,0.934207,-0.223078,-0.31008,-0.288651,-0.486113,1.34034,1.28917,0.982501,1.4905,-1.24923,0.795403,1.3346,0.610295,1.25742,-0.616482,0.973336,0.761982,0.43758,1.44889,0 +0.0686723,0.176823,0.719295,-0.0122732,-0.239848,-0.190305,0.297657,-0.020029,-0.214532,0.20152,-0.85603,-0.687823,0.153076,-0.566769,-0.493159,-0.52772,-0.642498,0.142981,-0.556565,-0.399811,-1.01061,-0.602719,0.393594,-0.514757,-0.363261,1 +-0.262086,-0.345131,1.52222,1.34941,-0.0136026,0.111279,-0.439099,-0.584619,-0.551967,-0.359782,-0.235831,1.35563,-0.917417,0.905373,1.64762,-0.755335,1.22769,-0.434002,0.861567,1.4603,-1.15036,1.29694,-0.769798,0.931499,1.60074,1 +-0.0242768,-0.09116,1.1761,1.06916,-0.0554896,0.012863,-0.540893,-0.485184,-0.467154,-0.248663,0.490101,2.22579,-2.04007,2.09871,1.80982,-0.156894,2.13104,-1.29481,1.95004,1.77722,-0.392705,2.33079,-2.03192,2.27632,1.97395,0 +0.487053,0.496717,0.112258,-0.789447,-0.521244,-0.71034,-0.143891,0.946101,0.479927,0.661917,-0.315447,-0.660038,0.289251,-0.545711,-0.797532,0.0322924,-0.791616,0.134676,-0.588187,-1.10853,-0.0568089,-0.743382,0.348859,-0.52891,-1.00217,0 +0.776004,0.641488,-0.672791,-0.954286,-0.594854,-0.60061,-0.518416,0.810595,0.489621,0.853372,-1.43277,-0.785189,0.155854,-0.580961,-1.11474,-0.988467,-0.558574,-0.140093,-0.497597,-0.794424,-1.71587,-0.567709,0.172246,-0.483595,-0.650943,1 +0.256689,0.404518,0.519755,-0.245545,-0.446145,-0.404818,0.0288342,0.444706,0.20067,0.362751,-0.566449,-0.307551,0.150997,-0.483515,0.226276,-0.373325,-0.590556,0.0986458,-0.567449,-0.149868,-0.700546,-0.404228,0.188207,-0.471461,0.0731697,0 +-0.00136933,0.217171,1.22364,0.27326,-0.238839,-0.288192,-0.030843,0.0533807,-0.283125,0.105352,-0.938275,-0.533937,0.111469,-0.541903,-0.0812555,-0.658968,-0.500995,0.113028,-0.522114,0.0104243,-1.16581,-0.478418,0.318365,-0.487762,-0.00442771,0 +-0.223587,-0.212014,1.75515,0.862697,-0.0615063,-0.216971,-0.569637,-0.194733,-0.500215,-0.078067,-0.250513,0.170656,0.0651143,-0.162521,0.850483,-0.208216,0.058098,-0.143701,-0.216132,0.754306,-0.4747,0.12802,-0.106532,-0.132737,0.80175,0 +0.76559,0.863436,-0.233272,-0.758774,-0.696668,-0.588817,-1.00302,0.752467,0.766939,0.727261,-0.512459,-0.486513,0.284974,-0.460458,-0.383,-0.131458,-0.605208,0.198551,-0.542203,-0.534307,-0.358473,-0.644037,0.353966,-0.527291,-0.559173,1 +-0.341063,-0.394903,1.459,1.4014,0.0710809,0.123592,-0.625867,-0.78304,-0.6742,-0.312838,-0.294648,1.17659,-0.786049,0.681756,1.53018,-0.761522,1.04712,-0.477648,0.536166,1.429,-1.09014,1.20775,-0.657259,0.704604,1.59932,0 +0.717536,0.567818,-0.116576,-1.00254,-0.671392,-0.78391,0.0726002,0.722314,0.673101,0.872471,-0.789227,-0.811885,0.0475639,-0.599631,-0.890801,-0.416132,-0.721004,0.106611,-0.576114,-0.756175,-0.527141,-0.723993,0.375114,-0.539614,-0.826816,1 +0.631284,0.830304,-0.80224,-1.00892,-0.577633,-0.652482,-0.457129,0.781791,0.595583,0.864696,-0.731799,-0.857879,0.110259,-0.6022,-1.12767,-0.47326,-0.572946,-0.186018,-0.503454,-0.737635,-0.595663,-0.518885,0.0475639,-0.440918,-0.628385,1 +0.373815,0.360802,1.07068,-0.101424,-0.470202,-0.392585,0.147699,0.304423,0.326131,0.168498,-0.830734,-0.194823,-0.210634,-0.385489,0.519425,-0.80221,-0.322283,-0.0449654,-0.466344,0.352287,-1.16639,0.289381,-0.63845,0.0391787,0.815392,0 +-0.0828646,-0.157973,1.72414,1.03907,-0.113998,-0.180451,-0.878348,-0.458528,-0.392744,-0.0954775,0.380311,0.40134,-0.297457,-0.0472242,1.07453,-0.0651841,0.397302,-0.301285,-0.07319,1.03128,-0.159233,0.627775,-0.420409,0.126021,1.19244,0 +0.380041,0.0374694,0.465175,0.121883,-0.234312,-0.137165,-0.0352106,-0.263286,-0.240068,0.21927,-0.156494,-0.0891712,0.250323,-0.404008,0.481586,-0.239239,-0.137495,-0.102614,-0.355905,0.553666,-0.421149,-0.0344313,-0.051002,-0.251572,0.596752,0 +0.137934,-0.0428665,1.57856,0.676779,-0.188856,0.166799,0.208526,-0.513268,-0.535106,-0.249103,-0.153146,0.101724,0.00882514,-0.243177,0.882096,-0.772416,0.0661935,0.231743,-0.294619,0.834053,-0.726621,0.354495,0.192894,-0.141992,1.09547,1 +0.297447,0.515727,0.390805,-0.544281,-0.561612,-0.693319,-0.360712,0.846266,0.409285,0.668104,-1.13644,-0.541513,0.339114,-0.516417,-0.665725,-0.532168,-0.697377,0.213283,-0.572706,-0.834642,-0.812044,-0.677129,0.412764,-0.52781,-0.727131,0 +0.898447,0.660208,-0.860118,-0.800581,-0.38247,-0.43796,-1.06932,0.25465,0.516107,0.667194,-0.600111,-0.0064166,0.50993,0.010634,0.0935486,-0.492749,0.343461,-0.87546,0.233092,0.179861,-0.959474,0.386348,-0.87459,0.265894,0.420039,1 +0.353416,0.573695,-0.124862,-0.698927,-0.500695,-0.770197,-0.284204,0.818551,0.49257,0.745791,-0.157644,-0.547,0.30895,-0.518865,-0.641108,0.144811,-0.755216,0.117555,-0.574095,-0.998572,0.083804,-0.688932,0.32733,-0.502894,-0.811285,0 +-0.173435,-0.366249,1.75672,1.41127,0.0532307,0.202179,-0.30916,-0.736106,-0.774015,-0.488102,0.462276,1.53559,-0.807557,1.02608,1.68987,-0.185238,1.42977,-0.340553,1.00918,1.60697,-0.311679,1.75204,-0.991346,1.35173,1.80605,1 +0.377693,0.668263,0.283514,-0.754846,-0.617191,-0.723083,-0.0464745,0.865515,0.279397,0.778173,-0.976774,-0.331578,0.36476,-0.511789,-0.434752,-0.368278,-0.651643,0.211804,-0.576974,-0.672611,-0.665205,-0.654691,0.399421,-0.532788,-0.585679,0 +0.504513,0.600181,-0.353136,-0.89312,-0.614063,-0.948579,-0.888552,0.958804,0.767769,1.02303,-1.13195,-0.551038,0.271681,-0.550158,-0.744861,-0.602519,-0.732608,0.158943,-0.562502,-0.937056,-1.20101,-0.687723,0.395263,-0.505522,-0.778703,0 +0.596882,0.654911,-0.308861,-0.910391,-0.600451,-0.920085,-1.52907,0.76491,0.841798,1.07356,-0.608856,-0.476828,0.256889,-0.514888,-0.470882,-0.160832,-0.659218,0.0188995,-0.534527,-0.760213,-0.380391,-0.629305,0.261686,-0.490751,-0.63851,0 +0.644157,0.652782,-0.404338,-0.969978,-0.684584,-0.908142,-0.682246,0.890152,1.02432,0.961103,-0.533447,-0.705763,0.228085,-0.562721,-0.995474,-0.270382,-0.828306,0.157733,-0.599451,-1.30958,-0.405358,-0.797862,0.398751,-0.554136,-1.2026,0 +0.586928,0.678798,-0.157194,-0.78438,-0.428885,-0.468553,-0.531918,0.888553,0.274949,0.523893,-0.590926,-0.483445,0.230474,-0.390866,-0.4012,-0.231773,-0.295838,-0.600381,-0.233032,-0.425307,-0.569977,-0.150238,-0.598881,-0.0182198,-0.27291,1 +0.93002,1.16292,-0.503254,-1.25911,-0.854301,-1.04156,-0.452831,1.1176,1.22976,0.975755,-1.91698,0.373595,-0.248044,-0.131508,0.884844,-1.87226,0.465095,-0.213083,-0.251362,0.524632,-1.94171,0.439109,-0.0538704,-0.223407,0.696338,1 +-0.113458,-0.301385,1.98629,1.41215,0.0100544,0.252981,0.423688,-0.767619,-0.903614,-0.61892,0.160302,1.8714,-0.523243,1.40988,1.85883,-0.322813,1.60649,-0.116576,1.02705,1.68585,-0.5833,1.97179,-0.866664,1.39267,1.92757,1 +0.513918,0.780662,-0.30984,-0.890761,-0.709101,-0.971507,-0.744242,1.02187,0.826307,1.01633,-0.2923,-0.746291,0.16463,-0.594284,-1.10351,0.274629,-0.808756,0.132407,-0.591236,-1.32498,-0.0486034,-0.772326,0.344481,-0.534667,-1.16582,0 +0.423827,0.155275,1.00811,0.499626,-0.285154,-0.213233,-0.341163,-0.152746,0.0422269,-0.0669931,0.617591,2.20914,-2.40747,2.23246,1.77622,-0.0166508,1.89403,-1.32969,1.55069,1.68711,-0.282855,2.33422,-2.41201,2.25784,1.9155,0 +0.288552,0.285513,1.5117,0.325531,-0.384589,-0.124082,0.203029,-0.0523513,-0.0712309,-0.100185,0.385089,1.06085,-0.887133,0.550408,1.44933,-0.211344,0.754466,-0.256709,0.192874,1.27692,-0.404878,0.976814,-0.628405,0.420889,1.45152,0 +0.761172,0.712779,-0.285393,-1.14661,-0.816732,-0.836701,-0.850074,1.23424,0.830584,1.07019,-0.926662,-0.643807,0.396243,-0.495318,-1.0024,-0.513598,-0.74786,0.249043,-0.573136,-1.1572,-0.734977,-0.753487,0.432443,-0.550788,-1.05075,1 +0.621969,1.04509,-0.564111,-1.01052,-0.618341,-0.816772,-0.320804,0.754716,0.684574,0.860008,-0.527621,-0.939555,0.0910001,-0.627046,-1.5744,-0.0645045,-0.841318,0.124172,-0.597832,-1.46902,-0.096607,-0.803599,0.379322,-0.554935,-1.27333,1 +0.245125,0.0506022,0.828475,-0.406667,-0.335876,-0.62041,0.591945,-0.282715,0.417431,0.516027,0.00723599,0.120794,1.37146,0.0845934,-0.294129,0.351337,-0.425317,0.642257,-0.417711,-0.671891,0.0510619,-0.465655,0.701855,-0.428595,-0.560912,1 +1.3695,0.421579,0.0336914,-0.714688,-0.557834,-0.191295,1.08216,0.130758,0.0800561,0.262966,-0.483385,0.644866,0.71127,0.275409,1.03794,-0.886973,1.27126,-0.854981,0.742462,1.20549,-1.26635,1.2109,-1.10208,0.618991,1.25193,1 +0.94716,0.174304,-0.195173,-0.397262,-0.216141,0.352976,-0.303603,-0.348189,-0.0815952,0.0601072,-0.190785,0.815392,0.81989,0.485973,1.07608,-0.383579,1.44121,-1.17252,0.974155,1.15415,-0.828276,1.41386,-1.38934,0.908842,1.2437,1 +0.395323,0.323772,-0.352587,-0.470272,-0.0261657,-0.0177202,-0.732258,-0.40137,-0.0841838,0.344441,-0.620769,-0.257059,0.391235,-0.293119,0.0111638,-0.378492,-0.0972768,-0.374994,-0.23723,0.0344212,-0.781381,-0.0971569,-0.0739794,-0.237889,0.189706,1 +0.537335,0.78332,-0.323353,-1.07898,-0.706932,-0.812704,-0.522004,1.01263,0.571726,1.04736,-0.932638,-0.868124,0.0802859,-0.617431,-1.14605,-0.399601,-0.793405,0.129679,-0.585589,-1.06931,-0.590886,-0.780312,0.370877,-0.548769,-1.10611,1 +1.14994,-0.147339,-0.771317,-0.425187,-0.290141,0.190366,-0.448084,-0.377193,-0.0987758,0.424907,-0.361971,-0.0634253,0.486003,-0.286363,0.374165,-0.542972,0.648724,-1.41487,0.355195,0.524452,-1.23786,0.558673,-0.897667,0.16508,0.556045,1 +-0.527211,-0.65652,2.1308,1.98108,0.157034,0.209055,-0.383859,-1.00891,-0.952987,-0.598362,0.348079,1.34523,-0.78446,0.909991,1.64641,-0.232153,1.41127,-0.540094,0.960663,1.61741,-0.523083,1.6002,-0.980842,1.14732,1.77855,1 +0.686273,0.833873,-0.914348,-1.13292,-0.524362,-0.905193,-1.08887,0.821949,0.778883,1.04944,-0.981651,-0.854051,-0.0284944,-0.618691,-1.18012,-0.534916,-0.629934,-0.282025,-0.461917,-1.16719,-1.33777,-0.586898,0.0289042,-0.430264,-0.906153,0 +1.2379,0.27385,-0.0226077,-0.712329,-0.67363,-0.67471,0.994215,0.914988,0.263056,0.530909,0.0188496,-0.504733,0.264065,-0.51066,-0.168338,-0.0596272,-0.0283346,-0.574085,-0.288002,0.158413,-0.380931,0.0557692,-0.405847,-0.212193,0.231263,1 +0.653022,0.496468,-0.0800462,-0.790416,-0.526251,-0.615312,-0.250562,0.610805,0.36394,0.733847,0.00158908,-0.742852,0.148499,-0.597123,-0.781331,0.203338,-0.623868,-0.116086,-0.51024,-0.770078,-0.138854,-0.51006,0.0216382,-0.416102,-0.598372,0 +1.05979,0.253211,-0.176783,-0.459868,-0.454881,-0.205697,0.824708,-0.288482,0.0496928,0.38221,0.414073,-0.398282,0.38302,-0.440089,-0.0327021,0.290091,-0.0547101,-0.519835,-0.186628,0.191125,0.0617861,0.122633,-0.680097,0.00451772,0.27266,1 +0.449763,0.0063365,1.10894,0.478408,-0.281126,-0.0892909,0.133857,-0.209185,-0.107911,-0.131897,0.717147,0.690591,-0.92885,0.445076,1.22546,-0.0814152,0.65544,-0.320594,0.23654,1.2367,-0.245285,0.89255,-0.791566,0.538795,1.39082,1 +0.115616,0.264625,0.761392,0.0833643,-0.351627,-0.409645,-0.631024,0.0977664,0.0569488,0.394344,0.187847,-0.395023,0.227445,-0.485074,0.0261056,0.242547,-0.499736,0.137185,-0.506732,-0.012603,-0.0261957,-0.494759,0.307421,-0.464655,-0.0909003,0 +0.676899,0.814413,-0.516737,-0.926252,-0.69273,-0.915867,-1.28207,0.753497,0.926072,1.08013,-0.30985,-0.754076,0.0158513,-0.58311,-0.877748,0.1452,-0.661507,-0.121763,-0.502844,-0.951588,-0.426416,-0.650833,0.148319,-0.471151,-0.888313,0 +0.190765,0.298216,0.384309,-0.250383,-0.324242,-0.178642,0.402679,0.187587,-0.069272,0.265245,0.165129,-0.484864,0.572106,-0.369807,-0.567818,0.406297,-0.624467,0.299775,-0.525032,-0.559383,0.133347,-0.63793,0.426646,-0.506302,-0.617571,1 +-0.102104,-0.0845736,1.76015,0.678058,-0.208726,0.00739604,0.211604,-0.0599371,-0.252871,-0.286083,-0.00160916,-0.23706,-0.0462646,-0.392705,0.469962,-0.334127,-0.257239,-0.0106943,-0.43801,0.45666,-0.603589,-0.139724,0.0166809,-0.328949,0.5095,1 +0.495498,0.733907,-0.122573,-0.917387,-0.71103,-1.11638,-0.719095,1.18722,0.868733,1.04385,-0.51002,-0.737276,0.116116,-0.622029,-0.924643,0.0393685,-0.808856,0.141712,-0.600671,-1.18072,-0.415982,-0.788757,0.363561,-0.553446,-1.11592,0 +-0.242837,-0.396712,2.06372,1.20943,-0.121204,-0.0255259,-0.14568,-0.478567,-0.54574,-0.263655,0.573885,0.318255,0.00696616,-0.0483036,0.945131,0.416432,0.451402,-0.241648,0.0589275,0.985629,0.102154,0.392684,-0.416352,0.0462748,0.998452,1 +-0.284314,-0.0817052,1.96601,0.961762,-0.18153,-0.196552,-0.358543,-0.306552,-0.453801,-0.0856129,0.336126,-0.321824,-0.0740094,-0.443367,0.335636,0.176853,-0.209275,-0.196752,-0.3829,0.375874,0.0773375,-0.0607169,-0.0586478,-0.270811,0.524982,1 +-0.0132828,0.0725302,0.830924,0.811105,-0.093019,-0.18126,-0.948719,-0.326591,-0.234961,-0.0139222,0.186598,1.21364,-1.38866,0.745941,1.41115,-0.2914,1.73826,-1.24946,1.20288,1.46494,-0.895489,1.41129,-1.2425,0.918137,1.57613,1 +-0.198361,-0.228575,1.91445,1.21555,-0.139094,-0.0695517,-0.2184,-0.415122,-0.514448,-0.270451,0.740054,0.289121,-0.458548,-0.0500327,0.990197,-0.0564489,0.340323,-0.173975,-0.0341914,1.04288,-0.102344,0.594783,-0.38333,0.175084,1.21179,1 +0.179172,-0.174754,0.61994,0.81955,-0.0883316,-0.16316,-0.888882,-0.243796,-0.12714,-0.0454549,0.172545,1.38883,-1.75628,1.1937,1.53224,-0.38333,1.65619,-1.47377,1.2625,1.60015,-0.901385,1.52862,-1.4765,1.16462,1.67346,0 +0.347439,0.56488,-0.245166,-0.813044,-0.431883,-0.578123,-0.0614263,0.685164,0.302394,0.69312,-0.170696,-0.89352,0.136485,-0.603059,-1.40474,0.0940385,-0.833113,0.0939883,-0.587778,-1.32054,-0.0840039,-0.762942,0.336515,-0.522313,-1.15218,1 +-0.0263356,0.301874,0.535766,-0.00403774,-0.245076,-0.380161,-0.380111,0.269332,-0.0141822,0.314548,-1.01957,-0.642558,0.12701,-0.584799,-0.385289,-0.76513,-0.643557,0.107101,-0.563741,-0.321394,-1.37234,-0.615443,0.344151,-0.519935,-0.366249,0 +-0.0265955,0.135746,1.64763,0.301774,-0.389556,-0.408266,0.342962,0.178332,-0.07276,0.121533,0.0461047,-0.716707,-0.027465,-0.622659,-0.361872,-0.131508,-0.571167,0.0384288,-0.564051,-0.130788,-0.471561,-0.541093,0.241967,-0.513798,-0.217291,0 +0.562511,0.30972,1.42309,0.0713409,-0.488242,-0.278727,0.654441,-0.0585979,0.226566,-0.0228973,0.411204,0.565749,-0.539134,0.143741,1.21086,-0.441048,0.465864,-0.0515918,-0.000719813,1.13039,-0.720735,0.720195,-0.4008,0.220969,1.31437,1 +0.688312,0.895659,-0.608186,-1.34144,-0.85747,-1.17068,-0.972776,1.32368,1.26029,1.28644,-1.20209,-1.06762,-0.0478438,-0.684894,-1.88347,-0.787078,-0.927511,0.117455,-0.615552,-2.0243,-1.03586,-0.899247,0.371856,-0.574125,-1.83579,1 +-0.0782771,-0.168558,1.45392,1.25643,0.0258357,0.196013,-0.135446,-0.785249,-0.71119,-0.453141,0.697247,1.30275,-0.864596,0.860128,1.57661,-0.135106,1.3874,-0.215972,0.900396,1.60865,-0.261367,1.63385,-0.803109,1.12252,1.78254,1 +0.719395,0.818551,0.259887,-0.83851,-0.670082,-0.58275,0.00292844,0.697677,0.729879,0.532218,0.962262,-0.458329,-0.213003,-0.54643,0.104662,-0.0191494,0.307441,0.427225,-0.267084,0.834322,-0.479287,-0.0541905,0.367438,-0.407146,0.631913,1 +0.198971,0.285983,1.43903,0.27366,-0.468863,-0.189066,0.597422,0.0240968,0.0549399,-0.0305731,-0.192265,-0.414922,-0.0801461,-0.446165,0.211154,-0.724572,-0.434342,0.0931788,-0.512369,0.207026,-1.10236,-0.290161,0.199011,-0.41939,0.341133,1 +0.406087,0.117685,1.32158,0.511549,-0.332208,-0.12658,0.325861,-0.221149,-0.138624,-0.14561,0.576654,1.39342,-1.38333,1.08439,1.58778,-0.240628,1.27705,-0.625687,0.772036,1.52073,-0.463786,1.58476,-1.27681,1.13674,1.71229,1 +0.391675,0.486313,0.456859,-0.440948,-0.558564,-0.54742,0.105032,0.5657,0.329969,0.519655,-0.0409676,-0.716557,0.0423567,-0.625077,-0.482855,-0.186767,-0.668553,0.0814852,-0.582371,-0.356334,-0.355625,-0.646356,0.301275,-0.533527,-0.45639,0 +0.501225,1.15422,-0.806827,-1.10501,-0.500735,-0.831064,-0.91168,0.891891,0.717236,0.883016,0.0257858,-0.824058,0.229414,-0.56578,-1.41865,0.322133,-0.622329,0.272081,-0.523923,-0.72932,0.0510619,-0.707852,0.394344,-0.544201,-0.788837,1 +-0.507732,-0.480277,2.10968,1.79255,0.0141022,-0.249563,-0.821219,-0.560912,-0.567628,-0.304493,0.0161711,0.393034,-0.676239,0.0282644,1.00422,-0.386718,0.462056,-0.705913,0.0687121,1.02625,-0.894089,0.603299,-0.652672,0.21952,1.13719,0 +-0.0990857,0.179951,1.57724,0.316576,-0.41958,-0.349318,0.34626,0.0544601,0.141772,0.093299,0.081925,-0.852342,-0.029164,-0.651073,-0.753387,-0.21889,-0.662197,0.0970067,-0.581901,-0.353336,-0.566979,-0.626287,0.311179,-0.538095,-0.385039,1 +-0.251882,-0.212913,1.51803,1.34913,-0.0987359,-0.342932,-0.944822,-0.306152,-0.334606,-0.0947778,1.06287,0.362251,-0.74777,0.0121732,0.945191,0.322983,0.609815,-0.806198,0.229064,1.12989,0.094668,0.767848,-0.914418,0.414983,1.21509,0 +0.586938,0.635591,-0.0738196,-0.831804,-0.639479,-0.839539,-0.896718,0.778383,0.683455,0.944642,-0.508921,-0.828825,0.0561492,-0.632273,-1.11348,0.0642448,-0.806588,0.137954,-0.593934,-1.15415,-0.52801,-0.774995,0.357674,-0.543162,-1.08554,0 +0.650913,0.500385,0.342742,-0.644247,-0.613244,-0.734387,-0.429904,0.372815,0.477278,0.806428,0.669373,-0.626716,0.111989,-0.568938,-0.396732,0.571247,-0.409545,-0.269352,-0.415302,-0.134966,0.245765,-0.311699,-0.152456,-0.312169,-0.136495,0 +0.950459,1.15912,-1.0908,-1.65841,-1.01396,-1.4892,-1.70247,1.55633,1.78636,1.60812,2.09761,-1.1061,-0.0500126,-0.678838,-2.60902,2.36142,-0.895159,0.0278546,-0.58371,-2.29714,0.977624,-0.871772,0.30996,-0.552027,-1.87362,1 +0.686653,0.823608,-0.499316,-1.19318,-0.8014,-1.11985,-0.971687,1.33748,0.926312,1.2364,-0.173375,-0.803639,0.0432263,-0.644127,-1.01717,0.136465,-0.846746,0.112398,-0.604998,-1.25815,-0.475229,-0.821759,0.348489,-0.558693,-1.26163,0 +0.532248,0.82114,-0.535336,-0.973356,-0.580222,-0.862317,-1.2408,0.827336,0.789996,1.01236,0.0403678,-0.58326,0.0615362,-0.581291,-0.356544,0.272251,-0.527591,-0.292909,-0.430274,-0.624407,-0.313318,-0.482495,-0.0550698,-0.378892,-0.555295,0 +0.402399,0.314238,1.01266,0.102434,-0.545451,-0.665485,-0.654271,0.267163,0.475549,0.426886,0.490011,-0.779532,-0.102144,-0.624538,-0.535066,0.209655,-0.534957,-0.0744892,-0.543012,-0.207306,-0.106112,-0.446545,0.0863726,-0.466064,-0.175794,0 +-0.414113,-0.463876,2.60611,1.73204,-0.149718,-0.303264,-0.151777,-0.465045,-0.54744,-0.329899,0.82024,0.0105841,-0.417641,-0.262226,0.717996,0.166679,0.0852731,-0.353196,-0.216122,0.770807,-0.00190899,0.338884,-0.446565,-0.00351787,0.930399,1 +-0.504463,-0.471601,2.29872,1.96612,0.0433661,-0.21879,-0.83894,-0.661557,-0.707941,-0.396772,-0.144111,-0.0546102,-0.242107,-0.294149,0.683415,-0.348489,0.125181,-0.352906,-0.195283,0.815193,-0.906932,0.168437,-0.224957,-0.146869,0.827456,1 +-0.0981362,0.0207186,1.94036,0.509531,-0.366699,-0.519155,-0.150387,0.141492,0.0928391,0.106482,0.51071,-0.769118,-0.12781,-0.615602,-0.554076,0.175374,-0.570577,-0.0230775,-0.552627,-0.224567,-0.00944485,-0.505633,0.178062,-0.49223,-0.20071,0 +0.573695,0.706922,-0.62059,-1.14212,-0.697977,-0.967019,-1.00073,1.14166,1.09155,1.09968,-0.0945682,-0.749389,0.338954,-0.489192,-1.59695,0.390406,-0.74776,0.215092,-0.525082,-1.5205,-0.170337,-0.728201,0.375664,-0.477098,-1.29006,1 +-0.168418,-0.130928,2.21897,0.899766,-0.354366,-0.519615,-0.484664,0.0287942,-0.0285443,0.0544203,0.776724,-0.606807,-0.0931189,-0.586998,-0.102834,0.326331,-0.49199,-0.0273451,-0.525762,0.00142927,0.227365,-0.403699,0.131258,-0.453361,0.0413272,1 +0.483085,0.871952,-0.0656241,-1.0058,-0.691031,-1.03675,-0.839959,1.04716,0.736196,1.06414,0.668463,-0.767369,0.00252859,-0.58408,-1.05439,0.862477,-0.803529,0.107961,-0.591256,-1.12993,0.552837,-0.793365,0.331298,-0.542192,-1.18513,0 +0.0446654,0.20073,1.44523,0.389856,-0.412214,-0.390096,-0.517726,0.0696718,0.045635,0.21811,0.524192,-0.503974,-0.149798,-0.556225,0.0842237,-0.134896,-0.36484,-0.0332419,-0.505643,0.258918,-0.32882,-0.257499,0.0846336,-0.4193,0.300835,0 +-0.331248,-0.381121,1.55398,1.55952,0.0305532,-0.232622,-1.16831,-0.496198,-0.43748,-0.211454,0.329719,0.723793,-1.16373,0.480486,1.1934,-0.144091,0.847895,-1.13226,0.506022,1.26493,-0.731988,0.911909,-1.09501,0.613344,1.33562,0 +0.643397,0.724822,-0.716727,-1.09586,-0.690161,-1.04575,-0.906363,1.25131,0.927911,1.12049,0.285533,-0.836021,0.080246,-0.623978,-1.29996,0.655111,-0.835142,0.103323,-0.595334,-1.4154,0.0101644,-0.800881,0.338514,-0.542252,-1.29883,0 +0.380061,0.515007,-0.0551498,-0.728011,-0.595573,-0.661917,-0.394563,0.766899,0.519615,0.813944,0.238719,-0.716927,0.180371,-0.568438,-0.800281,0.464915,-0.787998,0.137225,-0.5828,-1.08635,0.0798961,-0.748959,0.361372,-0.533177,-1.02053,0 +0.0820749,0.051032,1.48812,0.430384,-0.351827,-0.306512,0.0477039,0.00698617,-0.0321823,0.0599273,0.625237,-0.223567,-0.094888,-0.391685,0.47311,-0.028984,-0.185358,-0.114707,-0.377623,0.498547,-0.172655,0.0207184,-0.115277,-0.220579,0.652902,0 +0.758714,0.954446,-1.23824,-1.24755,-0.578723,-1.05052,-1.41688,1.04741,0.906163,1.20394,0.0758084,-0.877758,-0.00618663,-0.616762,-1.30025,0.526361,-0.705883,-0.138724,-0.51105,-1.30822,0.080036,-0.67394,0.131348,-0.471351,-1.11645,0 +-0.281606,-0.244096,2.13045,1.09516,-0.244576,-0.433612,-0.676639,-0.136175,-0.220449,0.0146021,0.689172,-0.415522,-0.279017,-0.495278,0.170796,0.211394,-0.29118,-0.239879,-0.431314,0.234931,0.0554096,-0.187507,-0.1098,-0.339134,0.283154,0 +0.385498,0.514738,0.318565,-0.500755,-0.467963,-0.422728,0.384559,0.367478,0.0606667,0.484904,0.101005,-0.880827,0.0552397,-0.628176,-1.17886,0.421599,-0.764551,0.116396,-0.576324,-1.1028,-0.00485737,-0.754966,0.353236,-0.541053,-1.06382,1 +-0.117805,-0.179362,1.19483,1.12989,-0.0573986,-0.0952476,-0.399471,-0.487642,-0.379462,-0.208965,-0.0829046,0.944831,-1.09209,0.482655,1.34025,-0.449143,1.36325,-1.27409,0.779002,1.39369,-1.15384,1.06426,-1.03084,0.550638,1.40551,1 +0.386978,0.409995,1.43426,0.00866529,-0.526491,-0.175224,0.700626,0.0730699,0.0297537,0.0295339,0.156524,-0.209325,-0.12786,-0.405997,0.537465,-0.538145,-0.176014,0.0393183,-0.405818,0.589966,-0.823008,-0.00507741,0.0630854,-0.298086,0.720794,1 +0.671651,0.735686,-0.743922,-1.21517,-0.815892,-0.907662,-2.04145,0.861347,1.3448,1.36167,-0.20102,-0.979583,-0.0782171,-0.659348,-1.61991,0.185758,-0.682066,-0.226026,-0.504663,-1.52454,-0.47383,-0.647395,0.0476039,-0.463546,-1.25916,1 +0.34548,0.224177,0.177313,-0.554816,-0.390796,-0.280866,-0.0179401,0.530149,0.209805,0.439609,0.371366,-0.617271,0.334307,-0.508491,-0.799821,0.712789,-0.519445,-0.233272,-0.377463,-0.743992,0.00127927,-0.552717,0.0689522,-0.395083,-0.777713,1 +0.530209,0.76583,-0.176573,-1.0413,-0.715717,-0.998652,-0.969248,1.13794,0.848444,1.08262,0.100475,-0.80145,0.0252761,-0.641518,-0.953727,0.391595,-0.803479,0.105212,-0.595883,-1.02102,-0.426216,-0.793785,0.348829,-0.555705,-1.08974,0 +0.532418,0.790316,-0.357424,-1.09193,-0.790826,-1.00247,-0.608336,1.19684,0.871942,1.13343,0.211134,-0.757305,0.0743592,-0.636971,-0.781841,0.544461,-0.854731,0.136595,-0.609806,-1.3573,0.0274949,-0.848225,0.377373,-0.568498,-1.41541,0 +0.584719,0.908881,-0.0868524,-1.25626,-0.777703,-1.08959,-0.0920694,1.16187,0.904374,1.06079,-0.0753487,-0.921265,0.124532,-0.621579,-1.62455,0.07306,-0.852083,0.135166,-0.60229,-1.41595,-0.412504,-0.831134,0.361861,-0.557924,-1.37045,1 +0.83769,1.05051,-0.852162,-1.53289,-0.926072,-1.40106,-1.3637,1.49435,1.41888,1.50754,-0.0459448,-0.904154,0.0399281,-0.653342,-1.50711,0.245675,-0.884825,0.114467,-0.605528,-1.67207,-0.173425,-0.859938,0.36435,-0.566299,-1.52244,0 +-0.0473541,-0.195933,0.840918,1.15702,-0.0554796,-0.30963,-1.17884,-0.264975,-0.240738,-0.0213281,1.22488,0.498097,-0.988258,0.197661,0.991906,0.571916,1.04647,-1.30217,0.711869,1.33576,0.207476,1.0355,-1.32257,0.770448,1.35733,0 +0.0651342,0.0409775,0.951868,0.822669,-0.18193,-0.323402,-0.698637,-0.18305,-0.119824,0.0125333,1.17931,0.0347908,-0.552827,-0.190226,0.685474,0.483045,0.357214,-0.56506,-0.0196294,0.985939,0.178542,0.446295,-0.585289,0.117556,1.01524,0 +0.625287,0.668193,-0.378712,-0.834952,-0.542472,-0.502894,-0.264025,0.720455,0.441708,0.665565,0.709441,-0.558823,0.133027,-0.555156,-0.365759,0.453041,-0.0124833,-0.524962,-0.186888,0.0982562,0.0369597,-0.12757,-0.233272,-0.265534,0.0935285,1 +-0.500995,-0.574465,1.80238,2.09956,0.113288,-0.133816,-1.15344,-0.818541,-0.654081,-0.391575,0.606827,0.366998,-0.551567,-0.0109441,1.05375,0.0663237,0.548579,-0.672591,0.152936,1.1363,-0.435441,0.756795,-0.70985,0.340913,1.27911,1 +-0.559853,-0.558354,1.53277,2.00538,0.157633,-0.117995,-1.16988,-0.653991,-0.629884,-0.390416,0.261387,0.283544,-0.466444,-0.113738,1.00588,-0.298526,0.640259,-0.569048,0.190475,1.21444,-0.915578,0.630504,-0.406467,0.165819,1.2556,1 +0.812394,0.960863,-0.781241,-1.45319,-0.865775,-1.22066,-0.857719,1.40825,1.18932,1.33458,0.264305,-1.03346,0.0348309,-0.659408,-2.09995,0.709021,-0.922984,0.125361,-0.613094,-2.1113,0.250493,-0.901356,0.375144,-0.573055,-1.89303,1 +0.785119,0.503124,0.00795556,-0.794804,-0.668973,-0.614113,-0.287322,0.313078,0.477328,0.873441,0.151647,-0.877029,0.0721004,-0.63766,-1.15802,0.0961173,-0.454261,-0.264665,-0.450173,-0.537445,-0.342582,-0.462237,0.0592475,-0.442947,-0.429165,1 +0.0117335,-0.118985,1.44422,0.919955,-0.195443,-0.316636,-0.54664,-0.184289,-0.139304,-0.0650741,1.05885,0.405138,-0.756095,0.0805057,0.997752,0.268263,0.542522,-0.563021,0.180831,1.082,0.0684924,0.744171,-0.837261,0.405078,1.19405,1 +-0.40036,-0.34607,2.32229,1.54116,-0.190815,-0.679997,-1.23616,-0.121963,-0.225016,0.0232574,0.749998,-0.30917,-0.416462,-0.409266,0.265384,0.518905,-0.093249,-0.563531,-0.247914,0.417631,0.165699,-0.0365401,-0.376723,-0.1814,0.405927,0 +-0.504863,-0.541283,2.14663,1.81737,-0.131128,-0.589187,-1.13194,-0.29189,-0.27281,-0.0577582,1.10571,-0.263735,-0.463356,-0.369447,0.324412,0.615952,-0.0349909,-0.574815,-0.225546,0.542572,0.242577,0.0529008,-0.431483,-0.123232,0.54618,0 +0.125141,0.368738,0.685904,-0.265534,-0.531738,-0.726072,-0.607986,0.600531,0.407866,0.672591,0.361712,-0.904724,-0.0410075,-0.659688,-0.971767,0.2739,-0.724982,0.0519614,-0.587608,-0.608726,-0.185888,-0.723053,0.303354,-0.547509,-0.772046,0 +-0.519475,-0.542702,1.73012,1.98526,0.179062,-0.149608,-1.05652,-0.863576,-0.709171,-0.378592,0.679037,0.367238,-0.49139,-0.051352,1.06205,0.0235671,0.69299,-0.592255,0.241687,1.25115,-0.443607,0.814453,-0.574375,0.333657,1.35928,1 +0.788957,1.03947,-1.01375,-1.54421,-0.931089,-1.35835,-1.22273,1.40356,1.50136,1.51254,0.54734,-0.991356,-0.00482737,-0.672191,-1.65988,0.799291,-0.908422,0.111569,-0.612544,-1.85322,0.226306,-0.890342,0.36456,-0.571176,-1.80006,0 +0.636821,0.734727,-0.538734,-0.910141,-0.642498,-1.11944,-1.5587,1.26715,0.888253,1.11051,0.410775,-0.811895,0.000229852,-0.63774,-0.961742,0.842218,-0.737485,-0.00918508,-0.56516,-1.05946,0.294828,-0.720415,0.244696,-0.523752,-1.00595,0 +0.69271,0.791536,-0.342932,-1.17901,-0.853522,-1.28267,-1.46716,1.6604,1.28015,1.24719,0.478867,-0.827506,0.0643047,-0.650034,-1.23102,0.914178,-0.859009,0.129349,-0.608966,-1.47343,0.497927,-0.844877,0.365939,-0.56477,-1.44422,0 +0.594684,0.865815,-0.707792,-0.842188,-0.524802,-0.843057,-1.55185,0.916717,0.80257,0.905603,0.49115,-0.559423,0.0230473,-0.577463,-0.251302,0.714188,-0.529829,-0.283565,-0.436251,-0.621449,0.409945,-0.483995,-0.10917,-0.3643,-0.630014,0 +0.705763,0.760263,-1.10894,-0.919556,-0.664785,-0.670172,-1.49867,0.667194,0.810875,1.10823,-0.495628,-0.796813,0.063675,-0.617931,-0.866415,-0.303483,-0.385459,-0.391185,-0.396733,-0.638899,-0.916927,-0.452872,-0.0171705,-0.429494,-0.532418,1 +-0.112338,-0.0076958,1.89096,0.721414,-0.313118,-0.263056,0.259947,-0.18205,-0.171716,-0.077997,0.319395,-0.379852,-0.159283,-0.509701,0.295378,-0.192404,-0.298816,-0.0314928,-0.465945,0.388507,-0.716047,-0.210075,0.063815,-0.386398,0.404358,0 +-0.576924,-0.45554,2.1171,1.64805,-0.0527511,-0.494698,-0.789137,-0.258508,-0.426796,-0.134096,-0.263945,-0.454241,-0.161092,-0.539664,0.183039,-0.649054,-0.329519,-0.135126,-0.449354,0.29122,-1.34651,-0.266434,0.121453,-0.402679,0.335356,0 +0.092819,-0.0532008,1.23987,0.994894,-0.158093,-0.230903,-0.511859,-0.240638,-0.0968068,-0.202369,0.87566,0.67482,-1.13815,0.490541,1.18297,0.21817,0.815442,-0.813024,0.40092,1.29536,-0.184969,0.971807,-1.12434,0.643437,1.37172,1 +0.662506,0.997633,-1.14705,-1.0804,-0.789737,-1.06489,-1.64233,0.774155,1.13151,1.39419,0.27363,-0.853642,-0.0120034,-0.612054,-1.20612,0.634682,-0.581971,-0.363571,-0.426006,-1.28677,0.250163,-0.535866,-0.0977363,-0.38177,-1.00254,1 +0.717446,0.859958,-0.43678,-1.33169,-0.842028,-1.27531,-1.24312,1.24406,1.3516,1.33211,0.230404,-0.848485,0.0500225,-0.654981,-1.23692,0.702455,-0.848994,0.132537,-0.608206,-1.42263,0.167878,-0.837671,0.36443,-0.56405,-1.37989,0 +0.871322,1.00807,-1.10527,-1.55831,-0.953507,-1.33765,-1.13794,1.58404,1.51175,1.47014,-0.782391,-1.10977,-0.0454051,-0.686204,-2.37066,-0.144341,-0.92968,0.113608,-0.614873,-2.13061,-0.908192,-0.902495,0.371766,-0.573805,-1.88459,1 +0.745351,0.742802,-0.715348,-1.10046,-0.646775,-1.15562,-2.20547,1.12517,1.10845,1.28639,-0.270302,-0.800411,-0.0338315,-0.614453,-0.988138,0.176723,-0.672601,-0.157963,-0.512169,-1.06795,-0.420479,-0.647455,0.117975,-0.474829,-0.951798,0 +-0.423188,-0.45507,1.18541,1.82898,0.180201,-0.159283,-1.34423,-0.592295,-0.58313,-0.321294,0.512389,0.408036,-0.584569,0.0151116,1.08409,-0.142222,0.868143,-0.774265,0.404348,1.32526,-0.572966,0.834212,-0.627096,0.366169,1.36836,0 +0.754686,1.01423,-0.775804,-1.32869,-0.879018,-1.28028,-0.895599,1.34729,1.20864,1.3443,-0.190356,-0.990497,0.0243166,-0.659438,-1.70711,0.238259,-0.889752,0.124282,-0.609116,-1.72092,-0.294199,-0.884785,0.36453,-0.570937,-1.73054,1 +-0.21958,0.282765,0.978713,-0.0514917,-0.18174,-0.0510219,0.45578,-0.187137,-0.453491,0.174794,0.595633,-0.513538,0.295418,-0.470362,-0.254221,0.704104,-0.482585,0.16354,-0.454591,-0.189036,0.45548,-0.471082,0.32838,-0.432503,-0.162721,1 +1.05576,0.489811,0.307001,-0.0656939,-0.396283,0.00977474,0.335926,-0.0643747,-0.160612,-0.0521812,-0.963961,3.59815,0.701255,3.43717,2.35554,-1.8187,4.00523,3.69193,4.68226,2.0626,-2.01062,4.10005,1.854,3.90624,2.42103,0 +0.307981,-0.0819451,1.44998,0.901356,-0.123362,-0.157923,-0.463486,-0.319895,-0.50943,-0.189386,-1.16336,0.92983,0.585849,0.7106,1.41847,-1.7489,1.03152,0.529469,0.744171,1.40373,-1.48326,1.72204,-0.253191,1.29241,1.8261,1 +0.995704,0.12676,0.297397,0.119734,-0.262126,0.21805,0.618651,-0.343781,-0.392365,-0.178972,-0.806488,3.73171,1.23173,3.52517,2.31855,-1.67477,4.37773,4.20702,5.33651,2.07587,-1.73059,4.50667,2.38984,4.47745,2.42933,1 +1.31548,0.337675,0.0755385,-0.00756581,-0.370957,-0.189326,-0.630464,0.000139923,0.235031,0.033122,-0.312529,4.88541,-1.91327,5.92023,2.48591,-1.10841,5.20394,1.48217,6.40925,2.17324,-1.1563,5.74102,-1.63293,6.85401,2.54906,1 +1.16787,0.31058,-0.0318026,-0.0915897,-0.1817,0.149028,0.23632,-0.330968,-0.167418,-0.190165,-0.598242,2.73809,-0.135406,2.86695,2.145,-1.64951,2.77671,2.26285,2.84905,1.94156,-1.4808,3.52031,0.855111,3.18733,2.33299,1 +1.13546,0.411054,-0.500016,-0.987418,-0.532958,-0.524422,0.0881117,0.442737,0.486203,0.679108,-2.2157,0.143531,-0.199641,0.488692,0.266234,-2.13405,-0.00627669,-0.107681,-0.0691623,0.329979,-1.79275,0.505912,-0.667404,0.553147,0.60174,1 +0.551317,0.742093,-0.635511,-0.939175,-0.605298,-0.708621,-0.0357903,0.734377,0.467294,0.902545,-1.65598,-0.930579,0.0555495,-0.627856,-1.38355,-1.12032,-0.788208,0.225056,-0.577134,-1.09485,-1.16871,-0.758674,0.472561,-0.535616,-1.06822,1 +0.868543,0.338684,-0.741163,-0.712459,-0.34681,-0.225376,0.00156918,0.194074,0.0351407,0.543662,-1.10254,0.0269351,0.481496,0.245535,0.247634,-1.13825,0.198011,-0.443507,0.250173,0.435661,-0.951558,0.677868,-1.08851,0.895349,0.65552,1 +0.733577,0.312029,-0.425866,-0.876719,-0.421389,-0.332817,0.194553,0.631394,0.139304,0.579882,-1.38887,-0.615432,0.250423,-0.441328,-0.676149,-1.14947,-0.623538,0.29142,-0.481126,-0.643127,-0.999841,-0.486783,0.49133,-0.381131,-0.379682,1 +0.403339,0.287822,0.0924292,-0.444716,-0.311769,-0.156294,0.648044,0.157254,-0.312638,0.365789,-1.66335,-0.0546901,0.831454,-0.141742,0.170276,-1.17905,-0.159463,0.773955,-0.259078,0.227745,-1.30141,-0.21955,0.700486,-0.326371,0.241487,0 +0.417061,0.370867,-0.741183,-0.654371,-0.316796,-0.391205,-0.441058,0.340003,0.234621,0.680697,-1.24776,0.181031,0.514328,-0.0802861,0.137355,-0.937026,-0.280406,0.356494,-0.289461,0.0488233,-1.1039,-0.0986261,0.341623,0.0256062,0.305132,0 +0.967549,0.980632,-0.805298,-1.40053,-0.864536,-1.20605,-1.29546,1.24874,1.2733,1.33509,2.27913,-0.0935188,-1.89051,0.670102,-0.953047,1.12884,-0.189026,-1.06412,0.120634,-0.370057,0.771776,-0.105492,-1.30724,0.610315,-0.372546,1 +1.01945,0.0368198,-0.402669,-0.43684,-0.0933689,-0.205587,-0.413883,0.117745,-0.0924192,0.244476,0.606347,0.123932,-0.534787,0.154645,0.651522,-1.45669,0.807447,2.58542,0.87494,0.713509,-1.2366,0.530109,1.57263,0.294619,0.833333,1 +0.793415,0.426076,0.175274,-0.600441,-0.580552,-0.349938,0.697247,0.0261057,0.193254,0.527761,-1.15591,-0.505673,0.336585,-0.49273,-0.264535,-1.26864,-0.242157,0.281735,-0.403669,0.29154,-1.14732,-0.220209,0.47427,-0.39994,0.396222,1 +0.563851,0.441158,-0.305852,-0.632553,-0.548879,-0.461597,0.0284344,0.557804,0.227825,0.69193,-0.620769,0.268293,0.376483,-0.0579783,0.332997,-0.471181,-0.000839671,-0.325711,0.0796661,0.25469,-0.496428,0.0434759,-0.538564,0.254231,0.29065,0 +1.25187,0.43706,0.323432,-0.169707,-0.481356,-0.149348,0.0537506,0.100135,0.122533,0.0474941,-0.572996,3.66355,-0.871812,3.53002,2.35027,-1.22542,4.42444,1.44899,4.7187,2.11171,-1.57598,4.38056,-0.131438,4.09293,2.42602,1 +-0.0743693,-0.123822,1.64465,0.902555,-0.0991457,-0.00937476,0.0653342,-0.563201,-0.72803,-0.167138,-0.859668,1.66075,-0.279687,1.00576,1.71512,-1.51178,1.03162,-0.446045,0.501425,1.39741,-1.19247,1.42137,-0.715597,0.832384,1.66066,0 +0.680607,0.702025,-0.622039,-1.04345,-0.609596,-0.767289,-0.0971367,0.9486,0.737905,0.828256,-1.898,-0.714518,0.179152,-0.487323,-0.688292,-1.81293,-0.699356,0.225366,-0.499486,-0.958224,-1.56839,-0.555495,0.447275,-0.377383,-0.639349,1 +0.216411,0.00390783,0.982151,0.605268,-0.100685,0.296427,0.27399,-0.538505,-0.690711,-0.271801,-1.59965,1.0993,0.502524,0.512619,1.55561,-2.22572,1.27627,1.14113,0.804798,1.53577,-2.26134,1.51843,0.702644,0.794854,1.78721,0 +0.985579,0.125441,0.767799,0.194433,-0.308181,0.279847,1.27192,-0.368918,-0.590206,-0.316386,-0.815383,3.75347,0.734117,3.95661,2.38267,-1.5578,3.4344,1.31385,3.69113,2.11112,-1.42,4.23007,-0.337755,4.25469,2.46317,1 +0.406237,0.40056,-0.288682,-0.705183,-0.36417,-0.337315,-0.201429,0.500186,0.14642,0.584789,-1.52443,-0.625507,0.246575,-0.493939,-0.595413,-1.28018,-0.531898,0.244656,-0.483665,-0.16432,-1.227,-0.448854,0.483205,-0.38256,-0.166499,0 +1.31446,0.245915,0.155345,-0.131658,-0.3459,0.0961973,0.648344,-0.266054,-0.278877,-0.0685422,-1.06868,3.4161,1.61305,3.86872,2.29049,-1.99416,3.49191,4.76302,4.54118,1.97127,-1.92945,4.27795,3.03094,4.97394,2.40902,1 +0.467863,0.391745,-0.238499,-0.665415,-0.441218,-0.21842,0.233052,0.522713,0.0736496,0.501835,-1.43458,-0.541353,0.521994,-0.282535,-0.56536,-1.62023,-0.572536,0.498316,-0.404938,-0.538165,-1.30367,-0.476429,0.67411,-0.324942,-0.443647,1 +0.558454,0.366849,0.497957,-0.467134,-0.466924,-0.266234,0.80188,0.265175,0.0217981,0.304553,-0.499306,0.511039,1.06907,0.394883,0.752687,-0.63812,0.183539,1.14095,0.171516,0.605508,-0.469442,0.21898,0.561382,0.170267,0.758414,0 +1.33738,0.953377,0.241737,-0.851723,-0.725852,-0.738205,-0.0293139,0.708391,0.772616,0.458609,-0.312868,0.927081,-0.67541,0.646045,1.40502,-2.04213,1.33158,2.39947,1.22589,1.37306,-1.75894,1.97861,1.83555,1.39928,1.8815,1 +0.458309,0.399691,0.304453,-0.465894,-0.498836,-0.170526,0.0983661,0.0349408,-0.0698416,0.536056,-1.71098,-0.0693321,0.404978,-0.409066,0.244076,-1.46517,-0.232752,0.477178,-0.417501,0.285593,-1.66994,-0.318356,0.566329,-0.439689,0.231893,0 +0.421209,0.377973,-0.229684,-0.505822,-0.484854,-0.378672,-0.307421,0.553766,0.181231,0.633862,-1.53936,-0.360043,0.240698,-0.507462,-0.0344212,-1.27123,-0.441168,0.32762,-0.486443,0.0498227,-1.44338,-0.421729,0.54643,-0.429404,0.0113136,0 +0.759713,0.180341,0.694779,0.256699,-0.175804,0.277338,0.828755,-0.597542,-0.595263,-0.29109,-1.14868,3.42454,1.06622,3.45685,2.33435,-1.94796,3.03431,2.43196,3.33408,2.01584,-1.75527,3.95756,1.53421,3.9065,2.41583,0 +1.05544,0.118455,0.61915,-0.098376,-0.520255,-0.370227,0.315517,0.131488,0.251032,0.197172,-0.986189,1.52911,0.741163,0.852332,1.65941,-1.48428,2.04654,1.14364,1.47537,1.6763,-1.84499,1.75637,0.0564091,0.888333,1.81371,1 +1.10467,0.848634,-0.771387,-1.30422,-0.757484,-1.01004,-1.34888,1.01391,1.15248,1.15642,1.95162,0.590496,-2.6653,1.20109,0.113418,0.670662,0.392974,-1.68606,0.699636,0.379822,0.344081,0.493129,-1.8391,0.937626,0.503883,1 +0.96513,0.862537,-0.705603,-1.32504,-0.773066,-1.08877,-1.16419,1.11516,1.14417,1.20368,1.8205,0.0160111,-1.76366,0.472221,-0.293099,0.80124,-0.0328221,-1.15906,0.248064,0.120434,0.321723,-0.0126133,-1.0076,0.349938,0.141592,1 +1.25945,0.617071,-0.526091,-1.16556,-0.721054,-1.12594,-0.914148,1.01668,1.3369,0.971077,-3.32284,1.04034,2.40972,1.31848,1.01343,-2.82429,0.433952,2.15153,0.579992,0.534537,-3.20692,0.631243,1.51652,0.319285,1.12485,1 +0.0797162,-0.139973,1.05969,0.730709,-0.0568089,0.429464,0.608976,-0.681926,-0.896578,-0.337115,-1.6336,1.6008,0.859129,0.96591,1.74552,-2.16838,1.62849,1.11475,1.25293,1.66231,-2.14476,1.76743,0.644726,1.05138,1.88103,0 +0.607657,0.517926,1.12143,-0.312499,-0.552577,-0.471031,0.105892,0.468443,0.23739,0.268553,-1.64882,0.853462,1.71418,0.930299,0.950338,-1.82052,0.315976,1.32794,0.225886,0.682835,-1.80501,0.486063,0.0129829,0.595753,0.949029,1 +0.761822,0.21846,0.425776,0.147289,-0.20116,0.177873,0.734317,-0.293399,-0.549338,-0.192704,-1.34612,3.46218,1.21108,3.62862,2.35634,-2.16961,2.9187,3.04176,3.51571,1.97967,-2.05045,3.70426,1.89503,3.82265,2.41489,0 +0.558743,0.49153,-0.342052,-0.642877,-0.381271,-0.316546,-0.0366199,0.604388,0.256559,0.411854,-1.95117,0.008895,1.00244,0.250852,-0.0612165,-1.79188,-0.262326,0.8747,-0.186338,-0.192215,-1.64102,-0.0934989,0.889142,0.0785871,0.0133625,0 +-0.12842,-0.116176,1.25401,0.714938,-0.051192,0.209135,0.331238,-0.523453,-0.85611,-0.191455,-1.59659,0.0675028,0.739514,-0.0267555,0.652152,-1.90706,0.308051,1.00424,0.140493,0.937096,-1.60959,0.394184,0.859908,0.0742595,1.0833,1 +0.830504,0.96671,-0.537235,-1.32297,-0.788797,-1.12737,-1.02837,1.13088,1.1201,1.20416,2.32054,-0.54664,-0.902735,-0.114857,-1.04162,1.85688,-0.153536,-0.880587,0.00597651,-0.122473,1.16078,-0.280606,-0.664715,0.147859,-0.249303,1 +0.691401,0.324342,-0.0104244,-0.315187,-0.341803,0.0010895,0.114497,0.0666834,-0.27351,0.262126,-1.6579,0.458308,0.337165,0.114417,0.975595,-1.83942,0.458059,0.156284,0.221428,1.02834,-1.82587,0.623917,-0.296357,0.422428,1.12343,0 +0.20026,0.261417,1.06276,0.174904,-0.264375,0.0513519,0.338174,-0.158593,-0.335856,-0.0609964,-1.39633,0.324012,1.16742,0.246884,0.709351,-1.68702,-0.00119947,0.749069,-0.138774,0.58315,-1.36442,0.146479,0.628975,-0.112318,0.786008,1 +0.499366,0.743352,-0.598332,-0.78409,-0.497977,-0.459068,-0.594184,0.345321,0.369677,0.793455,-1.74225,-0.372276,0.614023,-0.0350209,-0.553616,-1.45431,-0.299366,0.6371,-0.104663,-0.224067,-1.17711,-0.20086,0.54635,-0.0629553,-0.124842,1 +0.595453,0.178362,0.519625,0.154245,-0.207916,0.337085,0.614393,-0.487932,-0.627346,-0.146989,-1.07083,2.14455,0.610895,1.44535,1.95949,-2.04336,2.51494,2.2624,2.48081,1.85473,-1.94272,2.7077,1.34368,1.99506,2.13193,0 +2.15115,0.682516,-0.825787,-1.14617,-0.786379,-0.633482,-0.276768,0.823298,1.01305,0.555885,-1.51497,1.0177,0.74818,0.626076,1.47538,-2.3935,1.43044,0.840359,0.843157,1.33935,-2.17292,2.38334,-0.123882,1.42181,1.84509,1 +1.16557,0.314877,0.530239,-0.0762481,-0.460258,0.0200791,0.785919,-0.113028,-0.232962,-0.043516,-0.813764,3.63181,0.562172,3.37091,2.33515,-1.69597,3.94,2.88705,4.49306,2.09913,-1.73654,4.25186,1.35717,4.06093,2.44606,0 +-0.0941085,-0.279427,2.11805,1.07507,-0.142772,0.0349009,0.673181,-0.617251,-0.76551,-0.330748,-1.25139,1.05166,1.17975,0.804598,1.42683,-1.81175,0.884465,0.991256,0.597992,1.33894,-1.48307,1.05912,0.496767,0.471851,1.54969,1 +0.831044,0.810226,-0.0429265,-0.921345,-0.740704,-0.722174,0.444686,1.07789,0.683865,0.603639,-1.9583,0.134346,1.37591,0.445505,0.105002,-1.76776,-0.195173,1.01285,-0.078817,-0.0540003,-1.612,-0.0694221,0.543452,-0.0878816,0.274129,1 +0.607986,0.497307,-0.626196,-1.08186,-0.643017,-0.591795,-0.111069,1.07635,0.511899,0.903085,-2.51935,-0.971847,0.067353,-0.645316,-1.71834,-1.99356,-0.810296,0.214612,-0.584519,-1.31967,-2.22865,-0.78328,0.447984,-0.547869,-1.21288,1 +0.45511,0.208725,-0.642557,-0.38234,-0.214592,-0.183349,-0.63767,0.0482435,-0.0779472,0.54778,-1.08427,0.91056,1.0219,0.394234,0.690801,-1.01001,0.370626,0.920235,0.160892,0.719955,-0.777763,0.534616,0.808656,0.317916,0.909151,0 +0.605318,0.316586,0.0450452,-0.152536,-0.470132,-0.0714607,-0.156254,-0.0147019,0.112388,0.326301,-0.523643,0.770147,-1.06962,0.357044,1.14031,-1.9491,0.98376,0.972426,0.333407,1.22844,-2.2468,1.229,0.834622,0.335356,1.41867,1 +0.343332,0.316746,-0.102014,-0.490351,-0.257849,0.0607668,0.397682,0.141272,-0.114147,0.221838,-1.31571,0.659898,0.78365,0.576134,0.588417,-1.25246,-0.0857531,0.687593,-0.105452,0.254281,-1.11651,0.105762,0.409176,0.308491,0.428065,0 +0.479547,0.431873,-0.32796,-0.611664,-0.376304,-0.359223,-0.377493,0.517576,0.326331,0.51022,-1.42416,0.925052,0.852382,0.624357,0.757044,-1.43757,-0.0299637,0.790786,-0.114427,0.25615,-1.30184,0.144041,0.738005,0.101395,0.522673,0 +-0.0199691,-0.212184,1.28754,0.951358,0.0802159,0.228095,0.318455,-0.759253,-0.939984,-0.372885,-1.1821,1.98637,1.1891,1.80146,1.8846,-1.92812,1.46941,1.17394,1.37277,1.61455,-1.49693,2.00053,0.627955,1.60645,1.92463,0 +0.468623,0.54665,-0.396313,-0.651023,-0.389606,-0.308351,-0.150218,0.537015,0.277388,0.468303,-1.41665,0.74657,0.609785,0.711639,0.519255,-1.4071,-0.0952379,0.660288,-0.120134,0.209165,-1.18377,0.115996,0.486193,0.264345,0.41905,0 +0.667794,-0.0531808,1.03476,0.32881,-0.290411,-0.0094747,0.649364,-0.250303,-0.566509,-0.059817,-1.18933,1.10815,1.58478,1.03102,1.36213,-1.85451,1.34578,1.49772,1.33961,1.50427,-1.54888,1.47764,0.129149,1.05596,1.71932,1 +0.632803,0.573265,-0.504093,-0.587468,-0.246045,-0.223337,-0.47452,0.319895,-0.0231173,0.4007,-1.30051,1.53365,-0.134676,1.75994,1.16185,-1.40698,0.425666,-0.0250764,0.365479,0.72927,-1.04509,0.773655,-0.348669,0.804139,1.02443,0 +-0.213883,-0.231383,1.95855,1.03122,0.0451951,0.247554,0.691621,-0.813774,-1.01734,-0.462436,-1.20104,0.950408,0.964961,0.680307,1.40582,-1.96728,0.968768,1.09695,0.698576,1.38965,-1.37495,1.32152,0.776914,0.755116,1.67714,1 +0.98398,1.00707,-0.761272,-1.46164,-0.918716,-1.31636,-1.4984,1.3498,1.40316,1.4315,2.37678,-0.4738,-1.26074,0.225646,-1.45742,2.50386,0.507981,-3.48546,1.65295,-1.02588,1.41874,-0.05502,-1.48743,0.63887,-0.726971,1 +0.661127,0.0670532,0.519675,0.190396,-0.228425,0.411214,0.813694,-0.604888,-0.703064,-0.151007,-1.41178,2.16192,0.860198,1.59738,1.9919,-2.36731,2.41322,2.58512,2.47435,1.8292,-2.2595,2.65154,1.34363,2.04421,2.15791,0 +0.356574,0.485903,0.703044,-0.422258,-0.38321,-0.334806,0.470202,0.415642,-0.0151716,0.251802,-1.6075,-0.418101,0.610365,-0.193264,-0.432633,-1.5167,-0.502344,0.592565,-0.341213,-0.497317,-1.06976,-0.428085,0.661747,-0.32766,-0.294948,1 +0.266734,0.18238,0.914858,-0.100685,-0.298496,0.0450254,0.607277,-0.175894,-0.4,0.115487,-1.16838,0.168238,1.30611,0.502534,0.381211,-1.66478,-0.0174006,1.09084,0.118325,0.444846,-1.04253,0.105492,0.925882,0.067743,0.567948,1 +0.629754,0.0315627,0.962552,0.288602,-0.267383,0.537075,1.37337,-0.548099,-0.913788,-0.324732,-1.28463,2.96665,1.94793,2.75709,2.16057,-2.12286,3.42072,3.51709,3.87359,1.99595,-2.04776,3.48009,1.80508,3.08938,2.32632,1 +0.96635,0.262576,0.706382,-0.110919,-0.424247,0.202549,1.1962,-0.157024,-0.408566,-0.131018,-1.70743,2.22576,0.759953,1.65901,2.02001,-2.61986,2.53625,3.05041,2.4682,1.77681,-2.80608,2.53252,1.84502,1.77361,2.04772,1 +0.462736,0.341313,-0.275169,-0.522703,-0.404578,-0.220949,0.166339,0.451202,0.100115,0.442717,-0.908342,0.516836,1.03567,0.315847,0.559053,-1.14384,0.0445054,1.03413,0.0963269,0.311219,-0.868443,0.114827,0.580811,0.242857,0.442287,0 +0.441108,0.4741,-0.604858,-0.669053,-0.36498,-0.0592174,0.305323,0.246255,0.0068063,0.454901,-1.46232,-0.350788,0.737685,-0.178182,-0.241058,-1.6134,-0.38257,0.657399,-0.29194,-0.167368,-1.33989,-0.264035,0.717137,-0.176133,-0.0497129,1 +0.629734,0.69207,-0.701445,-1.09202,-0.639479,-0.662916,-0.0705912,0.721154,0.833203,0.872901,-1.60353,-0.731499,0.345351,-0.403479,-1.09493,-1.58154,-0.720965,0.21838,-0.530259,-0.961273,-1.19985,-0.640609,0.543182,-0.43699,-0.878868,1 +0.923223,0.452262,0.45517,-0.128459,-0.437,0.194403,1.17665,-0.120344,-0.443337,-0.0961471,-1.53448,3.20717,0.623098,2.46845,2.19825,-2.22907,3.59687,2.44263,3.3712,1.89703,-2.63051,3.33555,1.03013,2.33385,2.16079,0 +0.869253,0.375684,-0.252262,-0.434152,-0.366469,-0.10955,0.644157,0.166589,-0.142582,0.231863,-1.64418,-0.0836642,0.800571,-0.180761,0.261546,-1.87472,-0.0367799,0.741933,-0.208866,0.555385,-1.54502,0.0248762,0.91155,-0.205447,0.624147,1 +0.904983,0.698897,-0.515997,-0.611035,-0.538814,-0.321543,0.56542,0.497497,0.089391,0.421509,-2.99108,3.14674,2.8063,2.58883,1.55635,-2.42982,1.40607,2.05521,0.824817,1.0447,-2.58641,1.49978,1.5834,0.612344,1.37377,1 +-0.0743793,-0.129019,0.940104,1.08219,0.016261,-0.0658338,-0.952737,-0.530609,-0.471571,-0.136435,0.210934,1.5228,-1.90301,1.54195,1.64504,-0.319465,1.93324,-1.74381,1.64515,1.71551,-0.785679,1.78558,-1.30743,1.35494,1.81334,0 +-0.438549,-0.280166,2.06365,1.38304,0.014522,-0.0370096,-0.208346,-0.623278,-0.780072,-0.333787,0.470352,0.23682,-0.449963,0.0992854,0.869383,0.158123,0.296017,-0.410855,0.0164608,0.906343,0.367738,0.439029,-0.43767,0.143661,0.957005,1 +0.650253,0.482745,0.897457,-0.0852432,-0.513039,-0.398861,0.07305,0.112958,0.333317,0.180921,0.712219,1.41076,-2.60709,1.82489,1.43525,0.0753987,1.50715,-1.78363,1.16884,1.49606,-0.14504,1.62918,-2.3127,1.50403,1.57435,0 +-0.519215,-0.395503,2.36582,1.5922,0.0911999,0.155465,-0.299326,-0.795394,-1.07688,-0.468803,0.162351,0.361701,-0.405248,0.0919394,1.05151,-0.138154,0.567538,-0.392215,0.175394,1.15837,-0.0975665,0.70982,-0.245325,0.257869,1.28132,1 +0.281715,-0.125551,0.988827,0.630944,-0.174294,0.0491132,-0.134016,-0.470242,-0.0745491,-0.190835,1.321,2.28603,-3.62775,3.59337,1.51054,0.971307,2.85513,-4.9978,4.20732,1.59347,0.646805,2.61586,-5.18639,4.01467,1.47671,1 +-0.125601,-0.227555,1.16596,1.15384,0.0258757,0.0297838,-0.772246,-0.679307,-0.596373,-0.184708,0.847595,1.61095,-2.14095,1.92543,1.59934,0.205038,1.78117,-1.66076,1.68195,1.66758,0.251462,1.85869,-2.03011,1.70132,1.61312,0 +0.283125,0.567159,0.119614,-0.636071,-0.52792,-0.411144,-0.403579,0.89362,0.590796,0.477768,0.775674,0.120404,0.658289,-0.27362,0.0519814,0.951518,-0.157404,0.512249,-0.389626,-0.0725402,0.687553,-0.379612,0.508211,-0.428485,-0.213413,1 +0.808986,0.762482,-0.85629,-1.2491,-0.707982,-0.834652,-1.35295,1.0041,0.891841,1.19065,0.069202,-0.903095,0.0390985,-0.618671,-1.42157,0.225206,-0.62033,-0.336795,-0.441508,-1.38864,0.238759,-0.530099,-0.134776,-0.361212,-1.05338,1 +0.585879,0.540404,0.0884914,-0.87515,-0.649304,-0.817601,-0.240798,0.758174,0.511659,0.916107,-0.192984,-0.433052,0.174584,-0.489731,-0.414373,0.235851,-0.613983,0.150707,-0.534697,-0.576834,0.0271651,-0.658489,0.305013,-0.493619,-0.650423,0 +0.498247,0.667364,-0.313488,-0.995954,-0.624987,-0.755395,-0.362441,0.878538,0.594454,0.931679,0.497797,-0.490851,0.194503,-0.514258,-0.618321,0.635791,-0.690241,0.18232,-0.568778,-0.794334,0.700646,-0.717686,0.379742,-0.532218,-0.834692,0 +0.445605,0.701135,-0.180981,-0.816822,-0.541903,-0.797023,-0.782191,0.737385,0.484154,0.906922,0.353006,-0.446435,0.174304,-0.499276,-0.487433,0.470552,-0.624288,0.159862,-0.535976,-0.472101,0.357314,-0.653052,0.365899,-0.504783,-0.575704,0 +0.422248,0.660887,-0.297817,-0.743222,-0.479947,-0.72919,-0.662017,0.683105,0.52765,0.786549,0.463466,-0.485314,0.192085,-0.523783,-0.443807,0.563321,-0.630634,0.0995553,-0.527391,-0.505223,0.539264,-0.617611,0.288912,-0.462166,-0.552247,0 +0.708531,0.829455,-0.688962,-1.24665,-0.707792,-1.06588,-1.07698,1.13973,0.960973,1.208,0.356644,-0.543532,0.204378,-0.556925,-0.905233,0.670492,-0.735896,0.125731,-0.567969,-1.04238,0.490541,-0.715997,0.338414,-0.505343,-0.906313,0 +0.538624,0.0259557,0.339404,0.574785,-0.126811,-0.172855,-0.829075,-0.238829,-0.0431963,-0.0423066,0.8024,1.96101,-3.22821,3.02395,1.69496,0.194353,2.55791,-2.78148,2.71497,1.81057,-0.123162,2.59821,-3.41874,2.92655,1.89414,0 +0.752837,0.904084,-1.01624,-1.30436,-0.756905,-1.04794,-0.458408,1.27197,0.833403,1.21019,-0.0481436,-1.02513,0.0037879,-0.65634,-1.90963,0.444866,-0.883965,0.10915,-0.597223,-1.79276,0.344221,-0.827006,0.377293,-0.544291,-1.48907,1 +0.697357,0.804229,-0.800461,-1.06358,-0.549559,-0.756785,-0.562861,0.787498,0.518625,0.949999,0.00431759,-0.739594,0.0147819,-0.458808,-1.24911,0.385698,-0.663246,-0.00961484,-0.485044,-1.11812,0.391115,-0.608846,0.197102,-0.429214,-0.889672,1 +0.867964,0.959404,-0.548329,-1.1981,-0.699166,-1.05341,-0.732958,0.883036,0.860778,1.09881,-0.776514,-0.937756,0.113838,-0.624857,-1.68232,-0.361372,-0.863186,0.191575,-0.597692,-1.81378,-0.665445,-0.845646,0.417761,-0.561582,-1.58625,1 +-0.0970468,-0.266334,1.13404,1.32971,0.12775,0.144601,-0.556415,-0.790976,-0.705783,-0.404848,0.497417,2.44774,-2.85952,3.14937,1.96109,-0.138664,2.67297,-1.88454,2.77936,1.92733,-0.392375,2.70306,-2.12631,2.66978,2.07191,1 +0.00519707,-0.196632,1.29848,1.19019,0.0558393,0.193004,-0.202459,-0.781131,-0.696838,-0.43728,0.723213,2.25405,-2.64136,2.77875,1.86462,0.0317826,2.16115,-1.32704,1.87583,1.81997,0.0574884,2.3966,-2.0102,2.11111,1.86676,0 +0.780492,0.91193,-0.954156,-1.07235,-0.412724,-0.704383,-0.943652,0.493899,0.557284,0.867654,0.267223,-0.865285,0.0385388,-0.615492,-1.1539,0.500725,-0.667934,0.00164897,-0.542463,-0.981172,0.579442,-0.621569,0.246715,-0.499846,-0.767689,1 +0.645546,0.71098,-0.141502,-0.9107,-0.552217,-0.735526,0.130209,0.551777,0.477888,0.754706,-0.179641,-0.825107,0.234821,-0.570107,-1.36357,0.14668,-0.787218,0.213253,-0.579132,-1.19653,0.115337,-0.80265,0.408436,-0.559113,-1.21074,1 +0.558294,0.38277,0.962762,0.10935,-0.387048,-0.193144,0.0498327,-0.0477638,0.0818351,0.00503739,0.375534,1.89451,-2.8454,2.50086,1.72296,-0.272211,1.62248,-1.64052,1.25115,1.57738,-0.524392,1.87957,-2.21857,1.71472,1.75416,0 +0.562901,0.577293,-0.0307232,-0.669263,-0.569178,-0.725092,-0.458778,0.603099,0.41968,0.803059,0.209505,-0.338434,0.326831,-0.423188,-0.167478,0.625867,-0.518536,0.286952,-0.501085,-0.386368,0.593544,-0.532538,0.379082,-0.468523,-0.342952,0 +0.365539,-0.011004,0.243097,0.580052,-0.16473,-0.248124,-1.05917,-0.134276,-0.034591,0.129969,0.374714,1.25615,-2.09648,1.51076,1.45013,-0.0859428,2.0317,-2.56971,1.93532,1.6509,-0.545301,1.75705,-2.02237,1.51577,1.68254,0 +-0.198661,-0.247664,1.54159,1.26351,0.0467243,0.123722,-0.242857,-0.58278,-0.698677,-0.428865,0.736316,1.66092,-2.35815,2.15476,1.64384,0.376503,1.40836,-1.78661,1.33284,1.51655,0.253391,1.60997,-2.07218,1.60612,1.55426,0 +0.0817951,-0.021858,1.09631,0.831684,-0.0761883,-0.0202188,-0.562451,-0.500375,-0.305502,-0.183239,1.06942,2.19239,-3.73725,3.32904,1.6704,0.445925,2.24133,-2.62595,2.44059,1.7415,0.387487,2.32889,-3.26211,2.64296,1.68097,0 +0.452392,0.889412,-0.205008,-0.713768,-0.578453,-0.770247,-0.80261,0.705883,0.464055,0.848525,0.0131128,-0.207706,-0.0901406,-0.21955,-0.0544002,0.444146,-0.432393,0.168927,-0.443057,-0.184079,0.0750688,-0.539964,0.290261,-0.463875,-0.315827,0 +0.602519,0.896348,-0.653731,-0.976344,-0.518875,-0.860328,-0.852832,0.884505,0.517116,0.937736,0.384379,-0.614283,0.167538,-0.541363,-0.649873,0.63833,-0.666674,0.166139,-0.556595,-0.597732,0.626766,-0.664745,0.353056,-0.515217,-0.655301,0 +0.759163,0.495238,-0.536536,-0.715657,-0.514478,-0.285793,-0.521904,0.104473,0.156124,0.777793,0.160392,-0.758894,0.105002,-0.585589,-0.739764,0.0997653,-0.312888,-0.435991,-0.390436,-0.402359,0.148998,-0.349349,0.000379824,-0.412304,-0.246835,1 +0.0315926,-0.051092,1.55388,0.814813,-0.157833,0.148709,0.140583,-0.479917,-0.569687,-0.280766,0.585259,1.50049,-2.00543,1.67297,1.62219,-0.0518715,1.46385,-1.19443,1.02997,1.58206,-0.0726002,1.68904,-1.70965,1.39159,1.70693,0 +-0.178362,-0.292769,1.6585,1.25211,-0.0186898,0.00678638,-0.344441,-0.581041,-0.577433,-0.320924,0.469352,1.45682,-2.02318,1.69215,1.57907,0.121763,1.07159,-1.32154,0.760922,1.36856,-0.122483,1.31669,-1.49033,1.08231,1.52392,0 +-0.571457,-0.620979,2.15264,1.87608,0.107471,0.12857,-0.381181,-0.905723,-0.842138,-0.512878,0.0424767,0.597072,-0.570077,0.25442,1.21928,-0.253261,0.803479,-0.597722,0.296757,1.28137,-0.650913,0.80107,-0.407266,0.258498,1.36321,1 +0.755336,0.876259,-0.793705,-1.44319,-0.789047,-1.1264,-1.089,1.31586,1.16884,1.30172,-0.78316,-1.04498,0.0130628,-0.666035,-2.08186,-0.421339,-0.899507,0.0991055,-0.603949,-1.97118,-1.04355,-0.85747,0.362201,-0.561762,-1.59297,1 +0.817461,0.970078,-0.810555,-1.3532,-0.825037,-1.20566,-1.33278,1.26062,1.2699,1.32436,2.00264,-0.873391,-0.159762,-0.633103,-1.00492,2.0929,-0.430754,-0.242027,-0.487992,-0.366559,1.02056,-0.58356,0.149678,-0.470951,-0.423438,1 +0.595873,0.576634,-0.166898,-0.846506,-0.588797,-0.738135,-0.441138,0.697607,0.461017,0.886933,0.672151,-0.454371,0.177732,-0.49171,-0.428455,0.785519,-0.633073,0.205217,-0.542143,-0.569697,0.738165,-0.650253,0.374934,-0.504213,-0.618051,0 +0.680067,0.409635,0.992605,0.0836741,-0.429704,-0.198891,0.247084,-0.0324022,0.0770278,-0.0178201,0.620649,1.46554,-2.20133,1.70644,1.57913,-0.161251,1.48922,-1.15776,1.03767,1.58575,-0.276578,1.81022,-1.92512,1.55,1.76476,0 +0.41927,0.105842,0.435161,0.523363,-0.154195,-0.185688,-1.03736,-0.31,0.0302534,0.0397583,1.35418,2.24208,-3.89234,3.34568,1.53985,0.544501,3.29133,-3.49775,3.93807,1.80129,0.348279,3.05454,-4.05793,3.5685,1.74387,1 +0.581401,0.770177,-0.549998,-1.05586,-0.555006,-0.919455,-1.16705,0.669383,0.697028,1.11713,-0.441398,-0.675929,0.186588,-0.585749,-0.805148,0.0105943,-0.694479,0.187447,-0.567389,-0.701925,-0.408306,-0.698817,0.379932,-0.534407,-0.720415,0 +0.413663,0.279577,0.330499,0.0113538,-0.314418,-0.222148,-0.687833,0.0392085,-0.159432,0.352946,0.584739,0.0553395,0.14535,-0.122833,0.520854,0.383799,0.543662,-0.591855,0.417671,0.790886,0.248034,0.420409,-0.933578,0.498897,0.81954,1 +0.715867,0.804818,-1.16965,-1.2856,-0.693999,-1.12614,-0.859738,1.16855,1.08316,1.2577,-0.809026,-0.997803,0.0604468,-0.626556,-1.95217,-0.318185,-0.871672,0.107311,-0.585139,-1.854,-0.851503,-0.834962,0.367548,-0.550198,-1.51972,1 +-0.406877,-0.438779,2.0099,1.68058,0.0962571,0.0232174,-0.477588,-0.806408,-0.756195,-0.463785,0.937256,1.81737,-2.31808,2.13282,1.69594,0.248983,2.06953,-1.41652,1.99952,1.78098,0.12736,2.11862,-1.77435,1.89617,1.7594,1 +0.663466,0.771627,-0.478927,-1.24541,-0.65616,-0.94845,-0.534976,1.10772,0.768059,1.05749,0.202379,-0.879088,0.156114,-0.589747,-1.48719,0.410155,-0.832723,0.212333,-0.581531,-1.56812,0.413473,-0.810795,0.428065,-0.548099,-1.39396,0 +0.648874,0.814063,-0.628065,-1.29281,-0.724313,-0.951178,-0.603589,0.873091,0.934177,1.18754,-0.630374,-0.895319,0.18176,-0.599032,-1.73277,-0.151807,-0.806727,0.260557,-0.574645,-1.58106,-0.807697,-0.781831,0.478418,-0.540343,-1.28518,1 +0.0378092,-0.0426266,0.990067,0.935417,-0.106492,-0.156164,-0.573635,-0.357444,-0.311699,-0.10821,0.995354,1.4372,-2.35508,1.6803,1.48603,0.111289,2.05762,-1.77085,1.97984,1.68394,-0.0553197,1.88725,-1.93126,1.65722,1.74734,1 +0.12688,-0.00471743,1.34785,0.879318,-0.0398182,0.233632,-0.0845436,-0.633612,-0.516217,-0.435711,0.589227,1.93431,-2.49032,2.41221,1.78405,-0.0806457,1.74804,-1.08704,1.36228,1.69602,-0.172705,2.061,-1.68313,1.77033,1.88737,1 +0.606397,0.726771,-0.56533,-0.836781,-0.556365,-0.797133,-1.08987,0.902215,0.489042,0.952837,0.16369,-0.700666,0.212923,-0.542233,-0.963231,0.544921,-0.682755,0.177832,-0.544821,-0.843227,0.375754,-0.6386,0.398881,-0.49209,-0.718836,0 +0.451352,0.71018,-0.232473,-0.608366,-0.452852,-0.427046,-0.499526,0.260247,0.130668,0.688183,0.0714008,-0.800491,0.221818,-0.570967,-1.21717,0.376713,-0.768678,0.209425,-0.575734,-1.06813,0.338914,-0.744891,0.425227,-0.540993,-0.987008,1 +0.414313,0.0481036,0.152556,0.458039,-0.18249,-0.34557,-1.19661,-0.0256259,0.111569,0.194354,0.547919,1.26935,-2.49662,1.64839,1.34014,0.014792,2.14368,-2.99995,2.13992,1.59656,-0.497157,1.79007,-2.39018,1.62573,1.62309,0 +0.376463,0.240358,1.14873,0.302424,-0.304293,-0.0807556,0.256479,-0.0994654,-0.134696,-0.125331,0.329769,1.22636,-1.97167,1.389,1.46124,-0.242537,0.912789,-0.951148,0.445395,1.32553,-0.549988,1.1266,-1.19139,0.744372,1.46475,0 +0.379082,-0.0666934,0.270611,0.580871,-0.0769479,-0.18273,-1.1323,-0.152406,-0.0997352,0.0406279,0.784999,1.98524,-3.49996,2.9069,1.5974,0.274459,2.83909,-3.78316,3.31172,1.69952,-0.212693,2.47392,-3.50171,2.80889,1.82594,1 +0.0990756,-0.2365,1.31393,0.945811,-0.0248165,-0.0311728,-0.711719,-0.362701,-0.686153,-0.150567,-0.517626,-0.133647,-0.19969,-0.287682,0.570217,-0.751018,0.324172,-0.409935,-0.0813056,0.892391,-1.02312,0.405347,-0.178632,-0.0420867,1.01986,1 +0.513438,0.571936,-0.248314,-0.65607,-0.366259,-0.570177,-0.810805,0.537915,0.284444,0.658509,0.14571,0.440828,-0.942093,0.319605,0.645506,0.187577,0.597632,-2.09878,0.71106,0.521044,0.12823,0.67435,-2.00485,0.896578,0.579392,0 +0.321953,0.697198,-0.300775,-0.779962,-0.363611,-0.445326,-1.50807,0.209575,0.393424,0.823608,0.519415,-0.681746,-0.0640149,-0.491451,-0.655021,0.60057,-0.432703,-0.45592,-0.362881,-0.666844,0.553126,-0.34702,-0.271921,-0.206906,-0.443537,1 +0.860968,0.981142,-0.675649,-1.42476,-0.863107,-1.2366,-1.19889,1.33408,1.14811,1.37529,2.47112,-0.898377,-0.288292,-0.559373,-1.52469,2.36667,-0.610505,-0.40175,-0.361412,-1.04456,1.57173,-0.676379,0.0410375,-0.405617,-1.03674,1 +0.0824247,0.314178,1.04934,0.051132,-0.370697,-0.487472,-0.651722,0.303663,-0.00917493,0.393014,0.131608,-0.574435,0.0300435,-0.524942,-0.180881,0.228725,-0.533068,0.0784768,-0.506252,-0.124971,0.180331,-0.535806,0.287132,-0.477888,-0.201609,0 +0.586048,0.757664,0.0166408,-0.775025,-0.628345,-0.459858,-0.334846,0.792185,0.313258,0.654101,-0.0308331,-0.00652654,-0.0700716,0.0757183,-0.0548,0.118285,0.0149217,-0.760263,0.111529,-0.168677,0.0613063,0.0353704,-0.775584,0.196352,-0.058578,1 +0.0420369,0.0110439,1.22003,0.83876,-0.0544902,0.0303634,-0.388687,-0.457539,-0.459868,-0.248523,0.714088,1.68293,-2.49834,2.12013,1.65861,0.0333518,1.6338,-1.54083,1.35706,1.63545,0.00122929,1.81274,-2.08748,1.66492,1.71581,0 +0.434552,0.111199,1.05696,0.0670633,-0.29188,-0.184279,0.296487,-0.299116,-0.322203,0.170657,0.32766,-0.322253,-0.380241,-0.275759,0.154245,0.126041,0.0979761,-0.915038,-0.00540724,0.397952,0.0884414,0.225416,-0.836631,0.140963,0.510969,1 +-0.0741194,-0.313018,1.66863,1.1694,-0.0017891,-0.0769877,-0.831164,-0.605198,-0.680706,-0.161011,0.508661,0.161531,-0.355825,-0.0627057,0.8561,0.225636,0.460997,-0.643817,0.0807955,0.981402,0.220989,0.644006,-0.591036,0.21915,1.13419,1 +0.633113,0.608566,-0.578902,-0.926252,-0.453631,-0.624307,-0.894309,0.60214,0.386148,0.884165,0.705233,-0.391195,-0.0470742,-0.403369,-0.260127,0.771067,-0.216951,-0.852252,-0.05511,-0.25546,0.667424,-0.142882,-0.69289,0.0412776,-0.212304,0 +0.521204,0.670942,-0.558404,-1.11327,-0.592265,-0.734587,-0.0785369,0.767289,0.538914,0.973446,0.391645,-0.869173,0.242677,-0.552487,-1.65667,0.603199,-0.776864,0.32721,-0.542692,-1.51232,0.602469,-0.768049,0.499256,-0.535166,-1.34904,1 +0.581431,0.781561,-0.483335,-0.906153,-0.616242,-0.745511,-0.0589776,0.790766,0.332138,0.907252,0.536725,-0.693689,0.104373,-0.552277,-0.807957,0.804838,-0.726252,0.157733,-0.559663,-0.818871,0.755595,-0.725472,0.354126,-0.521084,-0.898547,0 +0.705393,0.616972,-0.242267,-1.20665,-0.62032,-0.915278,-0.0896408,0.897977,0.597132,1.00763,0.204008,-0.833023,-0.278067,-0.448664,-1.57589,0.577893,-0.672171,-0.422438,-0.268763,-1.34425,0.52849,-0.628635,-0.149448,-0.23688,-1.21414,0 +0.618451,0.823828,-0.18317,-1.12722,-0.762971,-1.16698,-1.01229,1.32291,1.03155,1.13228,0.0978962,-0.753327,0.0202589,-0.58301,-1.09017,0.375274,-0.782431,0.0776273,-0.577323,-1.05341,0.29096,-0.774815,0.288572,-0.526681,-1.15664,0 +0.757704,0.895329,-0.777334,-1.23794,-0.749759,-1.08287,-1.13833,1.13486,0.991166,1.24264,2.02421,-0.742813,-0.535126,-0.306272,-0.940334,1.85748,-0.433362,-0.725082,-0.0544703,-0.340433,0.96498,-0.499536,-0.18241,-0.208615,-0.417621,1 +0.912389,0.770997,-0.595273,-0.873631,-0.578753,-0.857449,-1.3759,0.83812,0.852912,0.873261,1.29627,1.96019,-5.48146,4.13537,0.542672,1.07709,3.14062,-7.37687,5.02742,0.552847,0.265464,2.35981,-5.5877,3.75211,0.967129,1 +-0.276668,-0.370507,1.45756,1.45069,0.0386187,-0.0974764,-0.850843,-0.641608,-0.578862,-0.223287,0.65627,1.72406,-2.41785,1.9825,1.63857,0.029374,1.86334,-2.06612,1.78636,1.65203,-0.0165909,1.85389,-2.07653,1.68355,1.69041,0 +0.483335,-0.113958,0.388457,-0.40169,-0.248914,0.215072,0.513678,-0.137465,0.0736196,0.0638351,0.805798,0.476998,0.0873221,0.0357702,0.726071,0.708041,0.862007,-1.97424,1.13589,0.635721,0.577363,0.499116,-1.24591,0.520515,0.432582,1 +0.669093,0.711859,-0.318295,-1.15993,-0.616632,-0.513198,-0.414792,0.453201,0.671661,0.87541,-0.0776974,-0.89309,0.0840938,-0.616442,-1.15608,0.0742893,-0.713968,0.0573284,-0.577893,-0.685744,0.195733,-0.681826,0.278857,-0.529529,-0.736676,1 +0.613873,0.78366,-0.777144,-1.35813,-0.727211,-1.11989,-1.13902,1.46131,1.10098,1.25399,-0.271791,-0.952837,0.14639,-0.584729,-1.97703,-0.0155914,-0.861078,0.158173,-0.588987,-1.80943,-0.14668,-0.800041,0.393004,-0.526421,-1.5363,1 +-0.0522714,0.00157911,1.14358,0.326171,-0.143301,0.0808258,0.104723,-0.0983061,-0.49222,-0.0658137,0.304043,0.230204,0.458918,-0.104993,0.703684,0.341792,0.16389,0.270771,-0.158553,0.687153,0.0904703,-0.0419572,0.280906,-0.277128,0.607307,1 +0.683185,0.810385,-0.781401,-1.14597,-0.641158,-0.841508,-0.668673,1.06185,0.731059,1.01515,0.532178,-0.577373,0.124911,-0.554676,-0.738155,0.667144,-0.723093,0.172006,-0.580851,-0.872211,0.526851,-0.741863,0.394394,-0.542382,-0.919795,0 +-0.139673,0.00827544,1.00659,0.572556,-0.080406,-0.21884,-0.796683,-0.0361802,-0.319894,0.0584181,-0.21971,0.0725301,-0.174204,-0.194973,0.743992,-0.27263,-0.0124533,-0.174854,-0.242037,0.686244,-0.594454,-0.0119536,0.0487533,-0.234351,0.677558,0 +0.519845,0.684015,-0.295488,-1.02846,-0.627686,-0.868683,-0.609885,1.13538,0.594884,0.978693,0.393844,-0.641798,0.113418,-0.530819,-0.91182,0.686813,-0.732868,0.12721,-0.557454,-0.922604,0.555245,-0.699726,0.324172,-0.489161,-0.884015,0 +0.649504,0.584679,-0.303484,-1.04889,-0.731909,-0.927301,-0.665605,1.01033,0.877379,1.07459,0.160112,-0.890741,-0.0189296,-0.624008,-1.27271,0.481986,-0.805848,0.0386387,-0.559083,-1.23493,0.392994,-0.779502,0.282295,-0.515737,-1.21382,0 +0.69327,0.889922,-0.623498,-1.30025,-0.771937,-1.11035,-0.269772,1.15475,0.935487,1.17781,0.259757,-1.0801,-0.0698517,-0.663416,-2.21624,0.613373,-0.903954,0.083554,-0.597602,-1.87081,0.636371,-0.869333,0.333117,-0.550668,-1.684,1 +0.381241,0.572656,-0.245166,-0.778583,-0.484194,-0.610735,-0.10924,0.518536,0.385948,0.762682,0.319005,-0.586009,0.405448,-0.432553,-0.920805,0.587767,-0.608806,0.282765,-0.470742,-0.762672,0.43655,-0.604029,0.40047,-0.43682,-0.741353,0 +0.315297,0.0463046,0.831993,0.628325,-0.166909,-0.0653141,-0.365379,-0.40152,-0.315907,-0.0618059,1.32004,1.58664,-2.25741,1.90913,1.4041,0.782171,2.18868,-2.7847,2.39378,1.57221,0.576684,2.01271,-3.074,2.19623,1.51664,1 +0.756515,0.153386,0.652562,0.139484,-0.368218,-0.12693,0.0487533,-0.289761,0.0715608,0.0593876,0.889812,1.42633,-2.30814,1.93769,1.5181,-0.0629754,1.97221,-0.815703,1.51257,1.68212,-0.117226,2.03045,-1.61503,1.70894,1.85075,1 +0.745671,0.887463,-0.563731,-1.43149,-0.867734,-1.19607,-0.876199,1.37251,1.3116,1.28592,-0.462916,-1.07534,-0.0262256,-0.679797,-2.12263,-0.229914,-0.895499,0.125971,-0.612104,-1.73832,-0.323852,-0.877918,0.373225,-0.570877,-1.66653,1 +-0.226516,-0.362831,1.2285,1.50011,0.0543201,0.071331,-0.719435,-0.694089,-0.700775,-0.307661,0.511329,0.880307,-1.15204,0.663836,1.36986,-0.360612,1.32746,-0.531858,0.91002,1.55998,-0.430664,1.29817,-0.513518,0.76555,1.6263,1 +0.997523,0.368288,-0.0190196,-0.623638,-0.522823,-0.116956,0.411934,0.284974,0.0376194,0.359763,-0.0682226,0.305842,-0.193494,0.277398,0.662566,-0.342132,0.979093,-1.67361,0.843727,0.748449,-0.574755,0.868143,-1.40529,0.666654,0.82032,1 +-0.52952,-0.538954,1.96274,1.73639,0.12681,0.0361902,-0.538105,-0.702225,-0.850323,-0.439958,0.384569,0.949569,-0.698317,0.71009,1.38337,0.110869,0.988388,-0.643267,0.664595,1.34193,-0.0215182,0.933448,-0.689322,0.569188,1.37958,1 +-0.330129,-0.390636,1.60337,1.64504,0.101404,0.087652,-0.703494,-0.830434,-0.698976,-0.431703,1.00774,2.49017,-3.11204,2.97541,1.78342,0.500555,3.00633,-3.23814,3.45096,1.83047,0.38208,2.76838,-3.43587,2.9235,1.68542,1 +0.779962,0.678568,-0.268363,-0.733118,-0.630554,-0.87388,-1.27856,0.739244,0.899127,0.876869,1.85795,1.21993,-4.18386,2.89558,0.251812,1.59248,2.21791,-5.64935,3.5978,0.446075,1.03137,1.6621,-4.53096,2.87584,0.613543,1 +-0.00399788,0.159053,0.999441,0.269342,-0.238849,-0.307121,-0.576484,0.0907402,-0.0314227,0.173305,0.32824,-0.32788,-0.0744292,-0.377633,0.242307,0.119255,-0.390866,0.0251261,-0.471891,0.19972,0.124222,-0.388827,0.216491,-0.436011,0.115726,0 +0.348119,0.330888,0.3454,-0.161611,-0.313458,-0.333017,-0.596503,0.2002,-0.00940481,0.394564,0.0135925,-0.101165,0.134846,-0.261457,0.493319,-0.138834,-0.00190908,-0.360552,-0.0442159,0.532038,-0.177053,0.00337795,-0.366729,0.00224896,0.485893,0 +0.425077,0.609106,-0.247324,-0.707662,-0.581361,-0.469162,0.18148,0.777164,0.250573,0.660438,-0.519585,-0.496847,0.258378,-0.51031,-0.307591,-0.335096,-0.666814,0.252691,-0.537905,-0.607047,-0.522553,-0.643747,0.411874,-0.512159,-0.518046,0 +0.690901,0.540264,-0.49259,-0.806468,-0.533268,-0.679617,-1.04458,0.773835,0.518136,0.87491,-0.367089,-0.662966,0.12825,-0.586478,-0.621869,-0.00274841,-0.665405,0.160502,-0.560443,-0.571067,-0.294249,-0.649024,0.385878,-0.519015,-0.557864,0 +0.56485,0.498377,-0.32757,-0.469572,-0.452872,-0.36415,-0.241567,0.415852,0.21904,0.525022,-0.679727,1.59101,-1.59858,1.84403,1.11639,-0.522503,1.77921,-3.00209,2.25668,1.02688,-0.642647,1.9154,-3.68849,2.49765,1.18929,1 +-2.13069,-2.04527,-1.03673,1.62399,2.16024,2.30686,1.51131,-2.26656,-1.69629,-2.13835,-0.406297,0.269032,0.515187,-0.177643,0.776284,-0.63803,0.0680225,0.848344,-0.294039,0.312489,-0.238959,-0.266904,0.670812,-0.432313,0.148099,1 +-1.934,-1.91106,-1.89531,0.485664,1.51779,1.48131,1.51953,-0.444136,-0.214502,-1.31789,-0.447375,-0.0504824,0.567629,-0.386138,-0.705923,-0.253351,-0.480097,0.426736,-0.502075,-1.03942,0.257159,-0.569997,0.488892,-0.520704,-0.571137,0 +-2.0764,-2.0552,-1.57632,0.923463,1.45219,2.02662,2.59348,-0.570577,-0.673201,-1.73594,-0.30971,-0.830534,0.0311429,-0.63817,-0.773316,-0.541613,-0.759164,0.138584,-0.573186,-0.986619,0.245615,-0.768718,0.374684,-0.551227,-0.998552,1 +-2.11527,-2.1946,-2.10838,0.702735,2.10369,1.63242,1.15532,-0.61904,-0.782031,-1.67274,-0.858379,-0.526221,0.385369,-0.530229,-0.968449,-0.458168,-0.649444,0.340493,-0.554056,-1.04642,-0.368948,-0.717357,0.487672,-0.540593,-1.03281,0 +-2.27852,-2.2777,-2.12587,1.33619,2.49704,3.05507,0.860998,-2.65085,-1.80661,-2.27505,-1.5262,-0.329939,0.281236,-0.489911,0.0910899,-1.76589,-0.759303,0.147549,-0.600051,-0.786209,-1.32941,-0.702964,0.404818,-0.553416,-0.661907,0 +-2.00449,-1.74758,-1.7812,0.450123,1.42541,1.2665,2.89191,-0.214192,-0.32824,-1.36083,-0.461437,-0.211974,0.357034,-0.519825,-0.654681,-0.177612,-0.569608,0.25474,-0.576104,-0.98399,0.201679,-0.648764,0.422818,-0.544571,-0.745181,0 +-2.00719,-2.23216,-1.74282,1.15193,1.20124,1.21529,2.7201,0.306942,0.258028,-1.56016,-0.895529,-0.335986,0.392475,-0.498916,-0.514058,-0.670282,-0.785289,0.154545,-0.60104,-1.30985,-0.523523,-0.761432,0.38281,-0.556684,-1.00721,0 +-2.1434,-2.21177,-1.65992,1.00409,2.17981,2.15264,0.860728,-1.2766,-1.35193,-1.87508,-0.726591,-0.690831,0.242427,-0.560942,-0.787918,-0.388916,-0.755366,0.233532,-0.579492,-1.00789,-0.00538708,-0.727581,0.47435,-0.534207,-0.934957,0 +-2.0114,-1.70671,-0.777743,2.32,2.56328,1.84125,0.00739599,-2.69987,-2.54317,-2.1615,0.605348,-0.439979,-0.104423,-0.534197,0.197591,0.213853,0.0664834,-0.199421,-0.282315,0.74727,0.260737,-0.151387,0.203089,-0.390925,0.504303,1 +-2.12739,-1.93485,-1.77809,0.870513,2.03351,1.76337,1.58936,-0.954646,-1.0128,-1.7955,-0.202259,-0.806757,0.0376093,-0.628595,-0.730999,-0.38328,-0.507252,-0.0521415,-0.461717,-0.464245,0.0318925,-0.582331,0.214093,-0.475459,-0.608396,1 +-2.03112,-1.55351,-2.20484,0.0518216,1.24505,1.86754,2.48537,0.0318525,-0.0786068,-1.39881,-0.248544,-0.855421,0.0592375,-0.649624,-1.07655,-0.476269,-0.781281,0.0849633,-0.590946,-1.13275,0.158753,-0.803999,0.374684,-0.557444,-1.26457,1 +-2.11496,-1.97232,-1.39744,0.908532,1.34288,1.95341,3.43508,-0.873721,-1.06842,-1.5439,-1.3038,-0.970827,0.0740294,-0.645286,-1.78544,-0.846925,-0.89396,0.153596,-0.605228,-1.85127,-0.615033,-0.87514,0.386728,-0.568188,-1.71506,1 +-2.07967,-2.35432,-1.59387,0.716847,1.26212,1.59812,3.14791,0.0988058,-0.0447154,-1.5486,-0.606997,-0.858819,0.0987358,-0.644966,-1.41665,-0.283944,-0.827136,0.150108,-0.605658,-1.29336,-0.0897408,-0.845166,0.383819,-0.569188,-1.40523,0 +-1.96004,-2.03515,-1.307,0.936796,1.13275,1.64724,2.81318,-0.288702,-0.207776,-1.51691,-0.331318,-1.01353,0.00686621,-0.665745,-1.72074,-0.468893,-0.866615,0.129619,-0.600541,-1.64904,0.135426,-0.869723,0.372616,-0.567179,-1.67949,1 +-2.23351,-2.24606,-1.30378,2.46277,2.81156,2.49194,-0.417931,-2.79159,-2.31071,-2.54801,-0.245345,1.17814,-0.879627,0.531768,1.39088,-0.12731,0.140843,-0.0284645,-0.314228,0.74677,-0.448824,-0.108271,0.25512,-0.404718,0.551267,1 +-2.14765,-2.14467,-1.16214,0.821989,1.67939,1.90972,2.60505,-0.919605,-0.774425,-1.77486,-0.898827,-0.796553,-0.10996,-0.625637,-0.69275,-0.800471,-0.749089,0.0124231,-0.563031,-1.24461,-0.523043,-0.732888,0.248164,-0.526981,-1.0995,1 +-2.00056,-1.78971,-1.29072,1.00169,1.28531,1.92053,2.70625,-0.580901,-1.17584,-1.53188,-1.00106,-0.735447,0.231493,-0.591696,-1.19747,-0.532887,-0.78323,0.21881,-0.594804,-1.35466,-0.186418,-0.799392,0.420809,-0.563221,-1.27039,0 +-2.2212,-2.26304,-2.29673,0.736086,1.61539,1.92604,2.26932,-0.395933,-0.358033,-1.62516,-1.38749,-0.645206,0.151027,-0.621779,-0.996903,-0.926551,-0.738025,0.189606,-0.599761,-1.19467,-1.06281,-0.781641,0.410295,-0.563271,-1.11498,0 +-2.05448,-2.0842,-1.41797,0.642048,1.75454,1.97379,2.29781,-1.18215,-0.882026,-1.66326,-0.432693,-0.82056,0.135945,-0.615552,-1.00939,-0.281485,-0.796623,0.216081,-0.587458,-1.15832,0.247214,-0.810825,0.417251,-0.561002,-1.26897,1 +-1.99505,-2.13939,-1.59181,0.701715,1.42314,1.95763,3.1406,-0.471761,-0.550548,-1.71273,-0.775884,-0.996453,0.0150417,-0.662896,-1.67602,-0.903414,-0.877149,0.140673,-0.606078,-1.7061,-0.461377,-0.853142,0.403089,-0.56465,-1.59527,1 +-2.13487,-2.03827,-1.00135,1.89023,2.31854,1.87542,1.01198,-2.13143,-2.00187,-2.02921,0.412114,-0.703714,0.0447354,-0.61948,-0.371826,0.103453,-0.152596,-0.104133,-0.334297,0.449703,0.404198,-0.355335,0.18156,-0.425656,0.116246,1 +-2.0688,-1.78485,-0.825727,1.55524,2.83623,1.93218,-0.010884,-2.64052,-2.38803,-2.18032,0.280276,0.0748288,0.176573,-0.381671,0.654211,0.450583,0.0958673,0.485873,-0.333997,0.645986,0.560652,-0.184119,0.540064,-0.43768,0.412334,1 +-2.28263,-2.20654,-1.53638,0.524073,2.56302,2.91031,0.956215,-2.11746,-2.07936,-2.07993,-0.446945,-0.356884,0.207206,-0.399081,0.0831343,-0.758514,-0.525122,-0.00470754,-0.482615,-0.316666,-0.277058,-0.480766,0.141842,-0.428425,-0.313098,1 +-2.04903,-2.20492,-0.266164,2.74584,2.16522,2.20333,0.521924,-2.56089,-2.44821,-2.22555,0.899097,-0.502804,-0.107861,-0.555555,0.0652141,0.720884,-0.267963,0.037989,-0.452392,0.421039,0.788048,-0.484604,0.314687,-0.499426,-0.0341214,1 +-2.09968,-1.93914,-0.699866,1.90452,2.41323,2.13487,0.691471,-2.31724,-2.32682,-2.18477,0.596303,-0.385738,-0.158093,-0.5295,0.264865,0.178842,-0.106911,0.0747489,-0.38288,0.651443,0.568958,-0.38346,0.34638,-0.472261,0.187237,1 +-2.25819,-2.12623,-1.43326,1.76015,3.00709,2.43958,-0.940134,-2.48269,-2.49227,-2.34925,0.0923493,-0.458019,-0.112818,-0.520525,0.10936,-0.188846,0.392235,-0.397932,-0.0520017,0.9481,-0.287682,-0.113358,0.102064,-0.362231,0.531218,1 +-2.20699,-2.13672,-1.65214,1.23889,2.3894,2.81079,1.18513,-2.42888,-1.96854,-2.17189,-0.395253,-0.719215,0.0797562,-0.62087,-0.487493,-0.568868,-0.512829,0.153246,-0.52809,-0.0707212,-0.314527,-0.659448,0.389906,-0.537235,-0.532468,1 +-1.9812,-2.01307,-2.19837,0.379172,1.33316,1.51806,2.85967,0.257289,-0.119884,-1.41341,-1.44305,-0.661907,0.14502,-0.630164,-1.19523,-0.870912,-0.739384,0.197791,-0.600181,-1.46852,-1.08252,-0.80214,0.399171,-0.56548,-1.23901,0 +-2.06132,-2.05002,-0.548049,2.15318,2.53034,2.24491,0.329729,-2.67433,-2.53971,-2.27924,0.213853,-0.450443,-0.101125,-0.536106,0.158133,0.207406,-0.0722705,-0.190955,-0.306232,0.633583,0.0128729,-0.287752,0.133487,-0.388277,0.275129,1 +-1.99858,-1.81906,-1.79136,0.72958,1.55895,1.62312,1.68502,-0.550068,-0.585359,-1.46271,-1.16078,-0.430474,0.183519,-0.58328,-0.672081,-0.689611,-0.664815,0.192664,-0.591146,-1.02038,-0.520774,-0.676109,0.421789,-0.540163,-0.758244,0 +-2.10828,-1.90875,-1.97573,0.612524,1.42476,1.58027,2.47369,-0.356275,-0.101944,-1.47951,-1.39867,-0.184219,0.399201,-0.470212,-0.247814,-1.14384,-0.689132,0.205677,-0.589996,-0.847495,-0.979563,-0.710111,0.415602,-0.556894,-0.772046,0 +-2.11563,-2.07207,-0.861377,2.49828,2.50101,2.12556,0.00895513,-2.46809,-2.4888,-2.26687,0.974265,-0.604758,-0.0207287,-0.599461,-0.0921895,0.355105,0.208296,-0.333557,-0.155755,0.890442,0.714938,-0.149658,0.0805059,-0.348798,0.476179,1 +-2.26014,-2.15877,-0.685224,2.50917,2.7564,2.19612,-0.23662,-2.65009,-2.60941,-2.42847,0.814503,-0.560772,-0.0989757,-0.592685,-0.0429465,0.584129,-0.235011,0.156544,-0.462337,0.477108,0.592095,-0.462386,0.285034,-0.493179,-0.00500739,1 +-2.12014,-2.15268,0.136455,2.4395,2.09744,1.72314,1.02091,-1.87161,-2.15291,-2.14073,1.14435,-0.649274,-0.214582,-0.576654,-0.304783,1.12489,-0.586908,-0.00486745,-0.543242,-0.185358,0.979313,-0.667244,0.286133,-0.533657,-0.582211,1 +-2.1535,-2.20322,-0.702744,1.8903,2.16303,2.42598,1.16203,-2.25416,-2.09642,-2.1564,0.447544,-0.221698,-0.156634,-0.489831,0.453751,0.497547,-0.414992,0.0329318,-0.540883,0.0879018,0.515117,-0.588098,0.356764,-0.539924,-0.290591,1 +-2.10547,-1.86867,-2.12357,0.337655,2.15958,2.42042,1.07139,-1.51885,-1.15673,-1.7809,-0.0286343,-0.0561293,0.246915,-0.27333,0.347889,-0.129169,-0.0990158,0.488342,-0.266044,-0.058268,0.373775,-0.376574,0.322033,-0.388707,-0.188067,1 +-1.91995,-1.64276,-0.570677,1.90456,2.19843,2.21976,0.394584,-2.42762,-2.22423,-2.12803,0.427026,-0.618451,-0.0812155,-0.60115,-0.175214,0.441518,-0.569698,0.179262,-0.558064,-0.121293,0.313948,-0.568758,0.386698,-0.516287,-0.244786,1 +-2.07818,-2.10534,-0.250852,2.74136,2.14262,2.25664,0.454131,-2.59578,-2.35371,-2.26603,0.288552,-0.599041,-0.0593175,-0.603629,-0.129009,0.433842,-0.449763,0.169607,-0.523303,0.132877,0.215682,-0.468423,0.397082,-0.488742,-0.0461448,1 +-2.1496,-2.10511,-1.59418,1.24246,2.39124,2.30887,1.15079,-1.77101,-1.82097,-2.11593,2.32666,-0.622339,-0.398371,-0.524852,-0.540853,0.790816,-0.464026,0.332008,-0.523083,-0.00724597,1.28204,-0.696378,0.358473,-0.541203,-0.682955,1 +-1.97362,-2.11103,-1.60707,0.853862,1.42901,2.03458,3.00864,-0.839919,-0.65649,-1.69879,-0.450483,-1.02853,-0.000159934,-0.668843,-1.78916,-0.224906,-0.898907,0.123242,-0.611984,-1.70225,0.103123,-0.885484,0.368778,-0.572166,-1.7246,1 +-2.08391,-1.91064,-1.72689,0.212653,2.00869,1.86823,2.84909,-1.19376,-1.04813,-1.69768,-0.330559,-0.52796,0.304623,-0.488782,-0.280616,-0.944561,-0.484374,-0.051272,-0.442767,-0.599321,-0.422648,-0.350618,-0.1818,-0.316276,-0.421499,1 +-2.0885,-2.08988,-1.66214,1.01321,1.64076,2.01125,2.30504,-0.953627,-0.92881,-1.71584,0.0212883,0.162351,0.714268,-0.314028,-0.199261,-0.31014,-0.681236,0.141572,-0.589877,-0.69351,0.283235,-0.648115,0.373925,-0.540213,-0.572086,0 +-1.97972,-1.87803,-1.97573,0.0409376,1.69347,1.4862,2.92021,-0.129559,-0.391835,-1.53614,-0.897398,-0.815143,-0.0205787,-0.611425,-0.981611,-0.98322,-0.63851,-0.169037,-0.495998,-1.22126,-0.786498,-0.703404,0.253071,-0.516447,-1.05217,1 +-2.0953,-2.18208,-2.31061,0.944112,1.58763,1.82042,2.41849,-0.246375,-0.333047,-1.75314,-0.203938,-0.274569,0.138864,-0.554306,-0.198281,-0.100055,-0.662087,0.148518,-0.593135,-0.730819,0.102004,-0.726082,0.376783,-0.561302,-0.796913,0 +-2.18876,-2.27153,-1.99594,0.440458,1.59603,1.74919,2.8111,-0.105292,-0.0563091,-1.68477,-0.582181,-0.521884,0.333077,-0.4004,-0.586998,-0.669642,-0.521344,0.390915,-0.399671,-0.999122,-0.386768,-0.436461,-0.0379391,-0.267713,-0.695229,1 +-1.96647,-1.71536,-1.74997,0.448704,1.23373,1.40419,3.23131,0.0537705,-0.281975,-1.39922,0.266074,-0.867394,0.0703414,-0.606527,-1.1638,0.0466245,-0.806348,0.0816951,-0.581071,-1.51696,0.479477,-0.796333,0.332438,-0.540913,-1.38976,1 +-1.97294,-1.80574,-1.88596,0.441918,1.45854,1.39196,1.92203,0.0329219,-0.0445255,-1.43979,0.126491,-0.51115,0.0977364,-0.617321,-0.659778,0.283944,-0.753337,0.137315,-0.604838,-1.12111,0.515267,-0.80198,0.369147,-0.567369,-1.13439,0 +-2.0878,-2.30547,-0.941423,1.0297,1.13701,2.82919,3.48622,-1.10059,-1.34167,-1.75986,-0.536935,-0.962682,-0.031003,-0.67425,-1.23732,-0.331408,-0.899606,0.112128,-0.613304,-1.68693,-0.000459781,-0.878148,0.370847,-0.572546,-1.63635,1 +-2.17401,-2.20591,-1.00202,1.32239,2.09021,2.41117,1.78759,-1.92027,-1.68547,-2.07006,0.162931,-0.581351,-0.0187497,-0.530889,-0.179102,-0.293479,-0.558354,0.228944,-0.519835,-0.281136,0.242097,-0.657769,0.378063,-0.520334,-0.596853,1 +-1.97353,-1.97962,-1.48449,0.613823,1.14288,1.44482,2.19088,0.020009,0.209715,-1.35408,-0.540004,-0.406997,0.214003,-0.586538,-0.794274,-0.130278,-0.69343,0.188956,-0.599671,-1.26106,-0.0961173,-0.770078,0.396133,-0.566159,-1.1006,0 +-2.01044,-2.02353,-1.51801,0.321164,1.00026,1.35758,2.67578,0.360952,0.305852,-1.18026,-0.562431,-0.186318,0.284994,-0.544731,-0.901855,-0.365489,-0.633892,0.19978,-0.595414,-1.38033,-0.168308,-0.708002,0.410385,-0.561802,-0.999182,0 +-2.17352,-2.47183,-1.38919,0.562761,1.05742,1.80772,4.12038,0.0263655,0.114657,-1.55012,-0.25563,-0.987888,-0.0272251,-0.676589,-1.37788,-0.0257258,-0.921035,0.124751,-0.614793,-1.99167,0.113937,-0.901665,0.373045,-0.573875,-1.88107,1 +-2.23509,-2.54461,-1.31887,2.8338,2.52206,2.29136,0.356015,-2.61941,-1.8889,-2.49579,1.15574,-0.0679228,-0.41907,-0.371266,0.50935,0.945881,-0.173915,-0.152187,-0.410095,0.409495,0.571426,-0.424097,0.186428,-0.452761,0.038019,1 +-1.94719,-1.6727,-1.43542,0.124742,1.15077,1.34099,3.16453,0.390946,-0.40058,-1.23625,-1.15576,-0.831474,0.119534,-0.569758,-1.21711,-0.923293,-0.895309,0.138064,-0.609096,-1.92979,-0.813644,-0.832084,0.389916,-0.559533,-1.48163,1 +-2.07524,-2.13258,-1.58163,0.700796,0.942523,1.87964,4.70638,-0.379422,-0.387987,-1.45524,-1.16097,-0.917107,-0.0135326,-0.663856,-1.09103,-0.901335,-0.881736,0.114207,-0.612794,-1.56584,-0.630534,-0.879088,0.367678,-0.572546,-1.65073,1 +-2.07478,-1.97289,-0.570627,2.88416,2.43278,1.89688,0.515917,-2.66795,-2.40787,-2.38176,1.2923,-0.269792,-0.271661,-0.441608,0.40079,1.02259,-0.208076,-0.131178,-0.390286,0.481376,0.87395,-0.393284,0.198031,-0.451772,0.129469,1 +-2.03806,-2.01619,-1.68175,0.789317,1.71686,1.8277,1.46788,-0.727101,-0.698097,-1.6172,-0.54708,-0.199241,0.271141,-0.509411,-0.133527,-0.342722,-0.602759,0.185438,-0.579202,-0.56511,-0.12722,-0.649494,0.396942,-0.542602,-0.540234,0 +-1.79747,-1.61359,-2.00143,-0.113818,1.25662,1.21318,2.1801,-0.173675,0.700056,-1.18745,-0.572946,-0.139444,0.270961,-0.531489,-0.701175,-0.158163,-0.554066,0.224647,-0.58411,-1.18254,-0.121663,-0.6568,0.43756,-0.548249,-0.813754,0 +-2.15886,-2.14217,-0.673371,2.5079,2.55705,2.14291,0.0617761,-2.55679,-2.26586,-2.40202,1.51361,-0.361642,-0.14559,-0.523733,0.255879,1.28455,-0.0429266,-0.303084,-0.207636,0.543072,1.1237,-0.323163,0.0844337,-0.390136,0.182989,1 +-1.91117,-1.89795,-1.07805,0.192784,0.887203,1.40965,4.20426,0.178782,-0.559043,-1.09678,-0.881946,-0.971687,0.0094448,-0.63875,-1.66727,-0.451052,-0.877429,0.096317,-0.595593,-1.93088,0.0423267,-0.83919,0.353016,-0.548139,-1.68677,1 +-2.03908,-2.07547,-0.0910201,2.5594,2.2251,1.87033,0.614113,-2.45184,-2.31145,-2.1654,0.96546,-0.704154,-0.131668,-0.616932,-0.357864,1.09612,-0.516617,-0.0606568,-0.497297,-0.0642247,0.504833,-0.624388,0.29169,-0.522373,-0.415462,1 +-2.1343,-1.92856,-1.20927,1.4303,1.89359,1.40224,1.13024,-0.932239,-0.697057,-1.81739,0.0365499,-0.712049,0.0705313,-0.597902,-0.536046,-0.060007,-0.402089,0.089051,-0.432593,-0.234561,0.0323322,-0.58373,0.34614,-0.501355,-0.467624,1 +-1.81467,-1.73965,-1.98244,-0.193514,1.11126,1.16304,1.97366,0.89355,0.343382,-1.04059,-0.495868,-0.228545,0.288372,-0.550318,-0.894129,-0.132947,-0.611425,0.214902,-0.588767,-1.0944,0.0475839,-0.677159,0.400091,-0.54622,-0.797542,0 +-1.86427,-1.79502,-2.10845,-0.0472141,1.33309,1.08732,1.53852,0.609196,0.431283,-1.1338,-0.377753,-0.0192396,0.361522,-0.493529,-0.715368,-0.14596,-0.505053,0.262156,-0.573396,-1.13029,0.121563,-0.604509,0.416531,-0.541253,-0.759183,0 +-1.95202,-1.96515,-1.60879,0.142192,1.32742,1.09048,2.18673,0.461507,0.0294239,-1.16548,-0.417251,-0.133387,0.491031,-0.47384,-0.664985,-0.25572,-0.578643,0.295588,-0.570847,-0.996124,0.177383,-0.621209,0.477948,-0.537975,-0.743342,0 +-2.23631,-2.34704,-0.567259,2.85413,2.33644,2.28749,0.683045,-2.61308,-2.48917,-2.35559,-0.0918996,-0.65581,-0.142452,-0.605358,-0.274489,-0.0700515,-0.416761,-0.0598973,-0.485644,0.140463,-0.771966,-0.602969,0.306352,-0.524532,-0.355705,1 +-2.25193,-2.3198,-1.17298,2.45984,2.64272,2.60818,0.352317,-2.92631,-2.57535,-2.43536,-0.591785,-0.503614,-0.112538,-0.558494,0.0857129,-0.617861,-0.020249,-0.172356,-0.356714,0.645486,-1.25485,-0.426596,0.302204,-0.499006,0.101614,1 +-2.29381,-2.36636,-1.71991,1.3632,2.13166,2.49384,2.00185,-1.5624,-1.41874,-2.17859,-1.28061,-0.770507,-0.0227475,-0.640299,-0.530889,-1.59121,-0.60131,0.204268,-0.525342,-0.481326,-1.42121,-0.69235,0.390826,-0.536785,-0.681166,1 +-2.24391,-2.35749,-1.66565,0.981881,2.11219,3.30954,1.80678,-2.35343,-1.99626,-2.08933,-1.58885,-0.794484,0.0538504,-0.6376,-0.679007,-1.73135,-0.653002,0.265004,-0.560703,-0.52826,-1.60176,-0.733378,0.434342,-0.548899,-0.882486,1 +-2.26698,-2.07708,-1.80319,0.763391,2.47269,2.88055,1.26338,-2.08086,-1.87806,-2.19035,-1.69749,-0.829225,0.0154115,-0.65687,-0.909701,-1.92558,-0.807597,0.104872,-0.605888,-0.985809,-1.32429,-0.779522,0.398341,-0.559453,-1.02862,1 +-2.19753,-2.23883,-0.701375,2.05829,2.80684,2.41976,0.2194,-2.695,-2.53106,-2.49496,0.837451,-0.490291,-0.21916,-0.536556,0.0559392,0.597302,-0.0165211,-0.501795,-0.170976,0.60237,0.449393,-0.340653,0.00706616,-0.36464,0.101974,1 +-1.99819,-1.88243,-1.58183,0.439189,1.43238,2.13025,3.5249,-1.18488,-0.976764,-1.53131,-0.706213,-0.988388,0.0358303,-0.659948,-1.69291,-0.771446,-0.884985,0.131348,-0.609186,-1.63454,-0.211244,-0.877749,0.38323,-0.570987,-1.67707,1 +-2.14318,-2.2519,-1.04355,2.7567,2.7605,2.0635,0.536606,-2.86749,-2.53164,-2.50209,1.12785,-0.378662,-0.268183,-0.449763,0.233202,0.905413,0.0519913,-0.511829,-0.1822,0.67466,0.757284,-0.283215,0.0895309,-0.407037,0.258908,1 +-2.04213,-2.19149,-0.581151,2.19968,2.27687,2.40175,0.507442,-2.473,-2.28954,-2.23988,0.954136,-0.608086,-0.0250563,-0.599471,-0.125681,0.63808,-0.202309,-0.240418,-0.2556,0.350698,0.80205,-0.34716,0.0607667,-0.368168,0.050772,1 +-2.1995,-2.16389,-0.998072,2.4181,3.10137,1.90052,-0.596842,-2.6538,-2.62643,-2.47625,1.30259,-0.0289642,-0.40165,-0.337735,0.665775,0.609046,1.11304,-1.51707,0.691151,1.28718,0.83783,0.578023,-0.85562,0.192914,0.978833,1 +-2.21758,-2.18257,-1.18359,2.56477,2.34052,1.94526,-0.504973,-1.94994,-1.62068,-2.22309,1.65295,0.0980261,-0.579752,-0.246185,0.562881,1.33485,0.317995,-0.671851,0.0202087,0.571836,1.18227,-0.0708713,-0.222338,-0.215791,0.405877,1 +-1.9517,-2.14452,-1.65719,0.980962,1.59817,1.84996,2.21324,-0.614283,-0.589796,-1.76429,0.0787667,-0.683435,-0.0505223,-0.581691,-0.433492,-0.615482,-0.671442,0.0889211,-0.566439,-0.743222,-0.232343,-0.739964,0.319895,-0.5469,-0.931389,1 +-1.99987,-1.80524,-1.78165,0.562761,1.28882,2.09691,3.36949,-0.812154,-0.8561,-1.50466,-0.590926,-0.879787,0.0662436,-0.645136,-1.15207,-0.357174,-0.889132,0.146549,-0.610585,-1.78557,-0.00016994,-0.877309,0.38311,-0.571636,-1.67219,1 +-2.18305,-2.11035,-2.05239,0.916947,1.45882,2.14391,4.02482,-0.938555,-1.25221,-1.62502,0.0578282,-1.00676,-0.0261957,-0.675789,-1.53603,0.279966,-0.908292,0.12783,-0.614113,-1.82851,0.505413,-0.900966,0.372006,-0.573995,-1.88133,1 +-2.37052,-2.38438,-2.23794,1.31503,3.4535,2.38617,-0.793355,-2.46497,-2.18819,-2.4686,-0.773446,-0.377943,0.0392484,-0.417071,0.172335,-1.09162,-0.0459849,0.0951777,-0.184709,0.392365,-0.649264,0.260017,-0.574145,0.142422,0.61911,1 +-2.375,-2.48503,-1.95958,1.50838,1.90494,2.46614,2.66302,-1.12263,-1.05092,-2.21511,-1.53917,-0.0119935,0.618361,-0.340154,-0.0499927,-1.79797,-0.76598,0.150807,-0.599871,-0.880207,-1.26167,-0.661037,0.408536,-0.54697,-0.54632,0 +-2.10378,-2.15916,-1.29234,0.614323,0.995094,2.17051,4.25758,-0.280386,-0.474989,-1.60849,-1.05692,-1.00688,0.00290838,-0.668993,-1.63342,-1.12756,-0.902635,0.135066,-0.608956,-1.9067,-0.45602,-0.869173,0.380091,-0.567728,-1.64281,1 +-2.05787,-1.97619,-2.26109,0.289291,1.61002,1.62412,2.15191,-0.169857,-0.279397,-1.43994,-1.44726,0.32786,1.27754,-0.0499827,-0.300315,-1.20813,-0.368858,0.556135,-0.484215,-0.549568,-0.45573,-0.349838,0.74644,-0.448654,-0.343851,0 +-2.18264,-2.31791,-1.71404,1.59856,2.08412,2.26838,1.93815,-1.3388,-1.48433,-2.16964,-0.359013,-0.697317,0.0599471,-0.587148,-0.395703,-0.632943,-0.420599,-0.0544502,-0.384229,-0.30894,0.12751,-0.375244,0.0326621,-0.337215,-0.231303,1 +-2.07496,-1.9096,-2.08086,0.805828,2.46895,1.56177,0.684265,-1.07101,-1.01261,-1.90769,-0.179691,-0.375404,0.421939,-0.498617,-0.506842,-0.189356,-0.558334,0.183779,-0.533957,-0.34593,0.409655,-0.570637,0.408776,-0.505612,-0.34694,0 +-2.0844,-1.99842,-1.93875,0.901286,1.85777,1.89068,1.74545,-0.914988,-0.752297,-1.78169,-1.26388,-0.2366,0.41833,-0.416292,-0.0889213,-1.12684,-0.655351,0.285813,-0.556535,-0.818371,-1.07459,-0.65726,0.442427,-0.529619,-0.611435,0 +-2.20582,-2.34134,-1.90443,0.0887614,1.01093,1.88965,4.23157,0.694269,0.317936,-1.52091,-1.96872,-1.06725,-0.0361102,-0.683035,-1.95246,-1.73424,-0.908971,0.118455,-0.609186,-2.04474,-1.70867,-0.890132,0.368068,-0.571436,-1.80352,1 +-2.04573,-2.06645,-2.52321,0.0589177,1.82376,1.5208,1.17074,-0.00571686,0.141093,-1.4543,-1.30997,0.261506,0.753267,-0.315717,-0.519035,-1.03301,-0.376713,0.435181,-0.514258,-0.835182,-0.850194,-0.45515,0.593984,-0.485004,-0.487613,0 +-2.1511,-2.26477,-2.58489,0.184729,1.76722,1.78249,2.09384,-0.0222178,0.0375194,-1.61627,-1.70233,-0.144611,0.461157,-0.482915,-0.740904,-1.44453,-0.51032,0.376024,-0.531499,-0.847815,-1.45235,-0.610895,0.489102,-0.534077,-0.662746,0 +-2.16406,-2.3128,-1.08126,3.50081,2.76971,1.44825,-0.832473,-2.36255,-2.48986,-2.36345,1.62369,-0.354466,-0.252621,-0.497887,0.2908,0.482885,0.517716,-0.20021,0.039798,1.14542,0.903024,-0.0434963,0.0703814,-0.320364,0.63684,1 +-2.06911,-1.67801,-1.16109,0.323722,0.978733,1.28216,4.58253,-0.405518,-0.201419,-1.21252,-1.89412,-1.04727,0.0757584,-0.622988,-2.40708,-1.57738,-0.918626,0.160872,-0.600591,-2.41469,-1.00805,-0.854291,0.463576,-0.535906,-1.92377,1 +-2.27343,-2.39344,-2.07637,0.560563,2.40552,1.90998,2.44936,-0.933298,-1.06793,-2.03699,-0.925512,-0.442997,0.607517,-0.283315,-0.610995,-0.8379,-0.339964,0.731179,-0.235721,-0.336026,-0.296617,-0.460597,0.547929,-0.390805,-0.397152,1 +-2.03421,-1.86376,-1.27693,0.82008,1.44301,1.62547,2.59635,-0.689981,-0.664475,-1.53567,-1.5099,-0.407167,1.03168,-0.0952479,-1.20102,-1.15998,-0.501575,0.969038,-0.250183,-1.59215,-0.905193,-0.608097,0.743442,-0.448384,-1.16881,1 +-2.37822,-2.6723,-2.09662,1.73862,4.05536,2.58693,-2.30128,-3.84345,-2.8186,-2.57703,-0.851103,-0.386818,0.076558,-0.51037,0.166329,-1.99089,0.185258,-0.0213784,-0.29276,0.672521,-1.4964,0.405377,-0.114947,-0.180701,0.817331,1 +-2.16341,-2.26941,-1.48389,2.09857,2.82511,2.2511,-0.14641,-2.47237,-2.24458,-2.37971,-0.0246165,0.149448,0.0315027,-0.261757,0.846935,-0.420449,0.304933,-0.140073,-0.0228877,0.814873,-0.377113,0.207176,-0.49281,0.0451254,0.672521,1 +-2.22081,-2.32428,-1.36077,3.7547,3.10505,1.02534,-1.34675,-2.39044,-2.58745,-2.39101,1.07865,-0.0331919,-0.362161,-0.338754,0.690571,-0.187447,0.932768,0.0263954,0.325571,1.39033,0.221618,0.277877,-0.0359702,-0.124891,1.00323,1 +-2.15927,-2.0206,-1.54644,2.15251,3.11193,2.07146,-1.20015,-2.77824,-2.65003,-2.2903,0.673201,0.067193,-0.318425,-0.331568,0.756415,0.00296845,1.44389,-1.79355,1.06592,1.35997,0.239628,1.24154,-1.65054,0.827156,1.28981,1 +-2.23148,-2.3623,-1.34738,3.4736,2.97228,1.30609,-1.11553,-2.14879,-2.54859,-2.38861,1.42467,-0.38342,-0.463306,-0.354835,0.160542,-0.0448353,0.45604,0.18168,-0.0227777,1.13007,0.519125,-0.0998154,0.173905,-0.336035,0.611974,1 +-2.17096,-2.07775,-1.90806,1.57466,2.56629,2.26977,0.879697,-1.92786,-1.76295,-2.31081,-0.441828,-0.312878,0.447345,-0.329879,0.102314,-0.660068,-0.11043,0.588717,-0.124692,0.101304,-0.0149418,-0.209195,0.375484,-0.302084,0.147309,1 +-2.11158,-2.00257,-0.61943,2.55819,2.53573,1.97231,-0.00625652,-2.68356,-2.41953,-2.2716,0.823058,-0.0940985,-0.350858,-0.296647,0.571246,0.537935,0.0911898,-0.450653,-0.0172308,0.719505,0.83904,0.0696516,-0.611365,0.204658,0.527021,1 +-2.15027,-2.06021,-1.01199,2.31427,3.06374,1.82433,-0.60068,-2.7784,-2.50455,-2.39449,0.694099,-0.0679528,-0.171966,-0.374974,0.676079,0.219999,0.649743,-0.862167,0.350677,1.13284,0.520384,0.378622,-0.63823,0.113498,0.91125,1 +-2.12608,-2.25453,-0.995064,2.71461,2.4686,2.12949,0.424107,-2.29823,-2.32256,-2.41311,0.909041,-0.361592,-0.0698017,-0.513169,0.262056,0.593534,-0.381301,0.268383,-0.497557,0.149828,0.72807,-0.507772,0.350488,-0.497747,-0.0924694,1 +-2.23731,-2.36403,-1.87333,1.10927,2.13831,2.1938,1.69877,-1.13029,-1.10979,-2.04016,-1.14662,-0.695538,0.143061,-0.579582,-0.635441,-0.987538,-0.40046,0.0695517,-0.388837,-0.242517,-0.989847,-0.548589,0.2,-0.447534,-0.526651,1 +-2.29624,-2.3705,-1.70713,1.08748,2.10815,2.25609,1.91154,-1.30252,-1.11148,-2.03716,-1.06366,-0.753986,0.0871422,-0.606178,-0.597422,-1.25691,-0.483395,0.154015,-0.448424,-0.275679,-0.735896,-0.519525,0.204418,-0.442627,-0.343741,1 +-2.31675,-2.4384,-1.52002,1.70742,3.12273,2.30231,-0.00637646,-2.42827,-2.34817,-2.45248,-0.637121,-0.0687824,0.235421,-0.359773,0.617111,-0.946011,0.391385,0.179262,0.0374093,0.906293,-0.461617,0.212923,-0.0159612,-0.085273,0.829345,1 +-2.43123,-2.63708,-1.84511,2.44304,3.77053,2.16917,-1.66329,-3.14864,-2.69522,-2.6899,-0.197142,0.741443,-0.556395,0.098256,1.26972,-0.466564,1.69922,-1.62891,1.19453,1.51519,-0.448964,1.25434,-1.41566,0.712319,1.38935,1 +-2.51247,-2.41742,-1.86798,1.66077,2.79599,3.07342,0.670712,-2.61253,-2.29973,-2.50688,-1.56456,-0.411514,0.114297,-0.563281,0.0716806,-1.58815,-0.222858,0.399291,-0.45626,0.318345,-1.52817,-0.442717,0.478577,-0.503384,-0.00568702,1 +-2.20867,-2.25385,-0.840769,2.39487,2.45286,2.48467,0.876099,-2.75005,-2.54561,-2.35796,0.279227,-0.125071,-0.69208,-0.0552598,0.423807,0.0224178,-0.375744,-0.251872,-0.333717,0.117066,0.0725502,-0.321184,-0.342942,-0.0602468,-0.0554297,1 +-2.11792,-2.1925,-1.2159,2.45885,3.18921,2.27552,-1.06099,-3.22517,-2.80245,-2.51777,-0.432263,-0.518196,-0.0308331,-0.563981,-0.0236571,-0.643837,0.00852519,-0.0528711,-0.323353,0.700786,-0.326841,-0.150887,0.257269,-0.384769,0.49087,1 +-2.32713,-2.35581,-1.1716,2.14783,2.70991,2.5568,0.882166,-2.70797,-2.52177,-2.46038,-0.370627,-0.818441,-0.0596373,-0.63899,-0.654621,-0.45601,-0.532178,0.132217,-0.523613,-0.05464,-0.684464,-0.633842,0.338574,-0.523782,-0.432673,1 +-2.25292,-2.36756,-1.39222,3.10393,3.14368,1.92053,0.166049,-3.1898,-2.5858,-2.69667,1.1433,-0.477008,-0.134996,-0.572306,0.0677827,0.82001,0.0816651,-0.152057,-0.301485,0.754396,0.760333,-0.331938,0.162111,-0.448274,0.178692,1 +-2.30871,-2.2906,-1.76134,0.942553,2.15459,2.87556,2.01639,-2.01519,-1.76713,-2.03108,-1.38261,-0.305522,0.82032,-0.106772,-0.142232,-1.54636,-0.397762,0.906872,-0.189007,-0.322303,-0.845416,-0.518306,0.654891,-0.443906,-0.333247,1 +-2.19301,-2.14962,-1.73998,1.12497,2.05889,2.12246,1.70391,-0.993405,-1.30075,-1.99179,-1.05065,-0.673211,0.336325,-0.525192,-0.918686,-0.935456,-0.770277,0.226466,-0.580462,-1.11548,-0.296667,-0.735786,0.434771,-0.543492,-0.940884,0 +-1.98713,-2.00828,-1.21775,0.644097,1.7109,1.87342,2.56133,-1.0773,-0.872021,-1.70735,-1.34971,-0.766889,0.230464,-0.531509,-1.16495,-1.10117,-0.782501,0.310929,-0.548969,-1.57729,-0.56549,-0.72959,0.503484,-0.514298,-1.18219,1 +-2.23247,-2.00329,-1.59607,1.27861,2.44497,2.2587,1.04729,-1.99679,-1.82316,-2.09138,-0.167738,0.111509,0.427625,-0.193694,0.683185,-0.590186,0.167058,0.864815,-0.192724,0.495278,0.0542502,-0.168028,0.649084,-0.377922,0.336615,1 +-2.09112,-2.00271,-2.13475,0.494679,2.03208,2.10234,0.962692,-0.87416,-0.942863,-1.69746,-1.0506,0.0863925,0.964881,-0.243616,-0.514118,-1.00742,-0.477668,0.442937,-0.521714,-0.730909,-0.380151,-0.502914,0.575794,-0.504643,-0.509541,0 +-2.24249,-2.40582,-2.15044,1.09463,2.44944,2.62186,1.3782,-1.91111,-1.59755,-2.15762,-1.91334,-0.0392986,0.303084,-0.289541,0.540383,-2.32239,-0.466214,0.531168,-0.440019,-0.270052,-1.54516,-0.390636,0.573036,-0.445126,0.0424765,1 +-2.16338,-2.1053,-1.64921,1.29604,2.38618,2.29234,1.72794,-2.04653,-1.83041,-2.13171,-1.12209,-0.406507,0.166299,-0.489182,0.177772,-1.19846,-0.397512,0.227685,-0.433063,0.0265155,-0.806208,-0.406877,0.415232,-0.41931,0.000659496,1 +-2.35774,-2.16189,-2.01536,1.09676,2.63789,2.95788,1.35141,-2.38613,-2.21719,-2.30108,-1.9845,-0.381031,0.342122,-0.485894,-0.0265755,-2.23119,-0.622339,0.269472,-0.526681,-0.351247,-1.61764,-0.54685,0.501595,-0.496877,-0.223328,0 +-2.28844,-2.38915,-1.45824,2.29853,3.21313,2.41272,-0.384359,-3.13772,-2.79279,-2.53423,-0.0491931,0.202419,-0.379312,-0.216801,0.885244,-0.693549,0.948779,0.167328,0.227265,1.33103,-0.403479,0.43756,0.204768,-0.171386,1.08241,1 +-2.13367,-2.20916,-0.964151,2.53237,2.59229,2.125,-0.183139,-2.4661,-2.33953,-2.33404,0.34641,-0.136555,-0.499496,-0.252302,0.51021,-0.0153015,0.477008,-0.521764,0.142562,1.05141,-0.0827446,0.0855928,-0.314487,-0.107771,0.663706,1 +-2.04451,-2.12957,-2.23514,-0.21808,1.44388,1.46312,2.69873,0.551577,0.0246565,-1.26583,-2.74347,-1.08468,-0.0122933,-0.679427,-2.45952,-2.28357,-0.932339,0.12792,-0.614233,-2.33749,-2.16843,-0.900536,0.385918,-0.571986,-1.98055,1 +-2.06418,-2.12357,-1.2496,0.644486,1.98726,2.14689,2.70674,-1.44465,-1.41068,-1.86301,-2.65519,-0.576054,0.386358,-0.366819,-0.578073,-2.79677,-0.769538,0.187537,-0.580042,-0.977764,-2.08581,-0.595683,0.522463,-0.465075,-0.530579,0 +-2.30936,-2.46055,-1.41151,1.48196,2.14172,3.43224,2.11739,-2.58753,-2.11263,-2.36952,-1.82163,-0.351717,-0.157614,-0.374695,0.12814,-2.03212,-0.669233,0.126021,-0.54668,-0.574655,-1.2804,-0.508641,0.159433,-0.370187,-0.338914,1 +-2.13105,-2.23124,-1.07813,2.10119,2.55111,2.00128,0.717906,-2.34118,-2.03854,-2.26913,-0.470952,0.213223,0.398411,-0.170647,0.862047,-0.702065,0.2739,0.361372,-0.101155,0.864856,-0.516906,-0.0445358,0.208046,-0.27251,0.60059,1 +-2.17632,-2.10796,-1.05071,1.60578,2.55718,2.37014,0.623538,-2.05254,-2.2411,-2.29313,-0.657439,0.324562,0.157074,-0.220969,0.985099,-0.827726,0.112088,0.110959,-0.276039,0.771307,-0.916157,-0.136655,0.190765,-0.350128,0.505512,1 +-2.24662,-2.09835,-1.21645,2.67504,2.93825,2.21884,-0.617721,-2.9399,-2.52753,-2.53107,0.63729,0.908481,-1.57525,0.860868,1.20193,0.566959,0.475479,-0.398032,0.12696,0.993945,0.665055,0.278417,-0.664255,0.297327,0.805948,1 +-2.24665,-2.14724,-1.49823,1.33608,2.00836,1.86715,1.97208,-1.23611,-1.1568,-1.93728,-0.29173,-0.666185,-0.0759084,-0.525172,-0.465105,-0.38231,-0.475589,0.0201188,-0.432583,-0.380321,0.173815,-0.532398,0.202939,-0.446905,-0.511589,1 +-2.11157,-2.12645,-1.98192,0.897218,1.87198,1.81189,2.06328,-0.782331,-0.52872,-1.85087,-0.543202,-0.257059,0.56551,-0.448154,-0.642657,-0.476179,-0.650213,0.262106,-0.578853,-0.898527,0.157883,-0.672391,0.452432,-0.548039,-0.762752,0 +-2.04308,-1.98157,-2.13913,0.543272,1.23394,1.37359,2.49021,0.630244,0.155874,-1.41793,-0.641428,0.414952,0.604189,-0.34586,-0.67426,-0.480846,-0.356704,0.313038,-0.550998,-0.989487,-0.0916298,-0.47341,0.475109,-0.532628,-0.60073,0 +-2.20448,-2.22677,-2.40568,0.387028,1.54257,2.3424,3.22576,-0.231013,-0.803699,-1.6851,-2.30827,-0.818151,0.101954,-0.58348,-0.992495,-1.98394,-0.751338,0.220249,-0.554476,-0.979403,-1.54666,-0.738315,0.408726,-0.534577,-0.987738,1 +-2.2374,-2.31987,-1.29006,2.19989,2.80931,2.2601,-0.0972866,-2.33928,-2.29257,-2.43698,0.293949,-0.377303,-0.128619,-0.481126,0.194893,0.272341,-0.0620561,0.149438,-0.325382,0.496368,-0.0987758,-0.388367,0.102344,-0.350647,0.0399579,1 +-2.34197,-2.3076,-1.70882,2.24669,3.06413,2.49991,-1.03392,-2.74682,-2.32876,-2.50948,-0.379472,0.263805,0.315457,-0.25597,0.869383,-0.588067,0.952567,0.122822,0.443626,1.24352,-0.555775,0.390625,-0.12829,-0.0548397,0.980981,1 +-2.15032,-2.19744,-1.10364,2.82255,2.61906,1.79404,0.123063,-2.36713,-2.36183,-2.33313,0.621939,-0.627576,-0.0694219,-0.613743,-0.147789,0.143841,-0.181351,0.0516116,-0.396713,0.531259,-0.0775275,-0.513698,0.324292,-0.508671,-0.0734798,1 +-2.17128,-1.93075,-1.84986,0.567779,1.5397,1.94834,2.66401,-0.460827,-0.682116,-1.61723,-1.50416,-1.00055,0.0406277,-0.651143,-1.76815,-0.98339,-0.869163,0.16307,-0.600711,-1.59837,-0.759223,-0.858829,0.403389,-0.563461,-1.63399,1 +-2.21077,-2.26557,-0.800941,2.31717,2.46509,2.44773,0.651722,-2.55194,-2.47127,-2.35451,0.0403278,-0.791506,-0.0300136,-0.641748,-0.590726,-0.0369996,-0.527421,0.092729,-0.508971,-0.092849,-0.298886,-0.668274,0.331658,-0.527121,-0.576594,1 +-2.29578,-2.29018,-1.38225,2.10508,2.91177,2.61893,0.165089,-2.90177,-2.57744,-2.50494,-0.274509,-0.250753,-0.194273,-0.427316,0.384299,-0.402479,0.368857,-0.338734,-0.0216283,0.950319,-0.730339,-0.0958976,0.00962475,-0.325911,0.533217,1 +-2.12222,-2.63302,-2.14458,0.178722,2.96011,3.07582,1.04365,-2.51846,-1.99191,-2.20697,-1.44052,-0.847105,0.140343,-0.617411,-1.26063,-1.36311,-0.76503,0.20085,-0.581751,-0.935097,-1.13829,-0.778583,0.428745,-0.554256,-1.12773,1 +-2.37534,-2.49671,-1.56715,2.1855,3.18121,2.5013,-0.652302,-2.91658,-2.37862,-2.57198,0.189516,-0.340623,-0.294399,-0.415502,0.187397,0.119005,0.154035,-0.343931,-0.134756,0.67434,-0.305692,-0.280486,-0.0413973,-0.338024,0.191225,1 +-2.13415,-2.26977,-1.00048,2.05259,2.7306,2.44277,-0.123702,-2.55995,-2.54587,-2.35312,0.240008,-0.607777,-0.107071,-0.56468,-0.187517,0.0436561,-0.3279,0.168937,-0.457149,0.323663,-0.000459781,-0.524213,0.310899,-0.494369,-0.142582,1 +-2.45536,-2.54522,-1.47494,1.59468,3.15066,3.23364,0.240958,-3.1082,-2.81794,-2.64561,-1.36984,-0.532238,0.092959,-0.561582,-0.0167809,-1.77026,-0.151167,0.210704,-0.385179,0.578473,-1.31536,-0.299696,0.378073,-0.447744,0.341023,1 +-2.24088,-2.08474,-0.922364,2.07625,3.16858,2.33729,-0.644157,-3.02914,-2.81303,-2.52135,0.5472,0.09082,-0.23781,-0.288952,0.800611,0.303404,0.932908,-0.731799,0.404818,1.25274,0.413033,0.376743,-0.229944,-0.0836839,0.98403,1 +-2.24955,-2.43618,-1.32711,3.56474,3.11076,1.32359,-0.722913,-2.61639,-2.59913,-2.49638,1.42352,-0.176034,-0.312659,-0.389456,0.535176,-0.016311,0.877009,-0.0975366,0.289321,1.36283,0.555875,0.176853,-0.0550698,-0.169517,0.888902,1 +-2.27482,-2.57489,-1.80653,1.01329,2.33512,2.87794,1.81292,-1.90226,-1.65894,-2.20739,-1.98153,-0.230024,0.240208,-0.435671,0.270531,-2.30992,-0.585459,0.373455,-0.521604,-0.461877,-1.65314,-0.511679,0.504363,-0.501495,-0.179252,1 +-2.22877,-2.10948,-1.65527,0.608206,1.69868,2.27562,2.86046,-0.982831,-0.895129,-1.80182,-1.93663,0.189816,1.14514,-0.124752,-0.312459,-2.29823,-0.804509,0.168787,-0.605088,-1.27537,-1.44396,-0.630244,0.487582,-0.540793,-0.676919,0 +-2.32496,-2.36193,-1.224,2.09319,2.91905,2.55021,-0.470272,-2.53863,-2.28196,-2.54953,-0.0344212,1.36858,-1.1576,0.659578,1.47596,-0.20067,0.746031,-0.224377,-0.0433564,1.00785,-0.187097,0.233782,0.157374,-0.302064,0.8379,1 diff --git a/data/oocytes_trisopterus_states_5b.arff b/data/oocytes_trisopterus_states_5b.arff new file mode 100755 index 0000000..e27f543 --- /dev/null +++ b/data/oocytes_trisopterus_states_5b.arff @@ -0,0 +1,947 @@ +@relation oocytes_trisopterus_states_5b +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'clase' {0,1,2} +@data +-0.0603269,-0.36465,-0.662696,0.0260657,0.325392,1.15577,1.17321,1.19531,-0.700076,-0.719535,-0.793405,2.16953,-0.0564591,-1.22487,0.117615,0.165409,0.889682,-0.12772,-1.26713,0.0681124,-0.306852,-0.886554,-0.27392,-0.34592,-0.238559,-0.100345,-0.23744,-0.763201,-0.861188,-0.874121,-0.882776,-0.887593,1 +0.421689,-0.791496,-0.678138,-0.72833,0.215702,-0.581821,-0.487443,-0.340313,-0.349568,-0.745641,-0.644466,0.0499326,-0.724393,0.155864,-0.541583,-0.78408,-0.516946,-0.709541,0.155335,-0.568258,-0.790476,-1.52995,-0.753807,0.379172,-0.549728,-0.960983,-0.120484,-0.65694,-0.811525,-0.836541,-0.855251,-0.871742,0 +0.531289,-1.04285,-0.774275,-0.813104,0.314138,0.329869,0.338384,0.316706,-0.62,-0.574795,-0.468303,0.712939,-0.812214,0.098466,-0.596083,-0.924243,0.45618,-0.842368,0.120094,-0.590406,-1.33993,-0.672401,-0.834472,0.358263,-0.553146,-1.39264,-0.185129,-0.793804,-0.919985,-0.922804,-0.927451,-0.930379,0 +-0.636291,0.825897,0.760543,0.423318,-0.559353,0.135146,0.134106,0.1648,-0.0333817,0.128769,0.270312,0.691231,0.438749,-0.295698,0.448294,0.867894,0.0837041,0.518355,-1.43324,0.705193,0.74686,-0.945901,0.614093,-1.5323,0.880447,0.750328,0.522124,0.597562,0.573415,0.571536,0.579962,0.607756,2 +-0.860368,1.8683,3.22285,1.95987,-1.11464,-0.112039,-0.187297,-0.265005,1.46656,3.30185,4.12443,0.909801,3.09775,-3.2848,3.60618,1.80226,-0.525132,1.99495,-0.65643,1.9284,1.74768,-1.2859,2.14154,-1.4139,2.07216,1.94735,1.04421,1.7186,2.19127,2.39905,2.43909,2.38732,2 +-0.895689,1.96257,2.92283,1.73672,-1.37908,-0.43673,-0.497677,-0.579112,2.11164,1.77361,3.19695,0.56436,2.36751,-0.898587,1.94494,1.84252,-0.779962,1.7844,-0.113018,1.27817,1.75827,-1.45288,1.98428,-0.650883,1.40583,1.96429,1.26792,2.14381,2.5891,2.6851,2.66688,2.6057,2 +0.854801,-1.24885,-0.778583,-0.792005,0.444196,-0.299825,-0.288092,-0.358403,-0.763441,-0.758004,-0.768758,0.160012,-0.924383,-0.190306,-0.562222,-1.49595,-0.104932,-0.799401,-0.11029,-0.483545,-1.50427,-1.2805,-0.78387,0.179212,-0.471561,-1.45644,-0.317296,-0.94744,-1.03668,-1.03167,-1.03943,-1.05122,0 +-0.879797,1.81287,2.1928,1.57229,-1.26982,-0.570677,-0.612534,-0.69257,1.85802,1.50856,2.51852,0.465475,1.6764,-0.813694,1.12013,1.76625,-0.880617,1.74288,-0.129299,1.27851,1.76067,-1.7627,1.51619,-0.169417,0.829585,1.79539,1.17976,1.92955,2.27919,2.33714,2.30214,2.2529,2 +0.374265,-0.590976,-0.585918,-0.202439,0.511659,2.64675,2.66964,2.67827,-0.62031,-0.512189,-0.606237,3.39081,-0.590576,-0.977984,-0.0350409,-3.23953,1.96686,-0.133897,-1.02569,0.150167,-0.158053,0.395943,-0.412394,-0.45504,-0.101444,-0.667214,-0.503144,-0.896038,-0.924563,-0.913999,-0.909761,-0.905303,1 +-0.65565,0.740973,0.256749,0.067423,-0.72956,-0.0953977,-0.0777274,-3.99452e-05,1.13482,0.2006,0.203298,0.749899,-0.171156,-0.0247864,-0.265165,0.449463,-0.219949,0.212703,-0.760343,0.037879,0.738085,-1.08801,0.211064,-0.575864,0.0455752,0.678977,0.708731,0.835981,0.698097,0.598291,0.591566,0.584249,2 +0.331718,-0.793255,-0.687013,-0.609915,0.390856,0.307042,0.312149,0.298076,-0.379232,-0.622398,-0.60211,0.839509,-0.370017,0.104233,-0.352727,-0.312738,0.344341,-0.723483,-0.0375295,-0.486543,-0.976174,-0.545401,-0.707872,0.140483,-0.412174,-1.05674,-0.300645,-0.828186,-0.920405,-0.924273,-0.942903,-0.951468,0 +1.15959,-1.37251,-0.744261,-0.890901,0.380601,0.578682,0.551417,0.577473,-0.386508,-0.762072,-0.585988,1.08157,-0.991056,-0.0660638,-0.63756,-1.65386,0.60078,-0.860418,0.021598,-0.574385,-1.74368,-0.307571,-0.844947,0.295768,-0.543012,-1.6606,-0.289131,-0.859818,-0.974305,-0.963442,-0.982781,-1.00223,0 +-0.445396,0.130798,-0.331688,-0.283335,-0.216481,-0.140683,-0.168098,-0.193734,-0.403718,-0.389396,-0.477968,0.51004,0.0513717,-0.281815,-0.0364202,0.560652,-0.104972,-0.414743,-0.16457,-0.377583,0.0733098,-1.21936,-0.45668,0.092959,-0.371926,-0.114977,0.222678,-0.0100446,-0.179651,-0.206157,-0.197891,-0.188007,2 +-0.173645,-0.208895,-0.412114,-0.561612,-0.158853,0.113558,0.187727,0.234981,-0.602979,-0.448474,-0.281715,0.608166,-0.502215,0.117885,-0.395253,-0.241228,0.172915,-0.570917,0.0445554,-0.424387,-0.368688,-0.771777,-0.576984,0.223917,-0.403888,-0.450303,0.195493,-0.089361,-0.241098,-0.295728,-0.308131,-0.297017,0 +1.1197,-1.23225,-0.7289,-0.849514,0.448754,-0.776754,-0.736276,-0.662786,-0.427326,-0.780342,-0.645296,-0.301625,-0.859818,0.153186,-0.596953,-1.31187,-0.591155,-0.858889,0.165409,-0.60182,-1.59025,-1.732,-0.826317,0.384039,-0.558493,-1.39878,-0.362841,-0.854561,-0.942063,-0.935177,-0.961902,-1.00202,0 +-0.860908,1.65377,1.88765,1.16164,-1.16096,-0.572736,-0.609206,-0.666714,0.173345,1.60485,2.03847,0.573355,1.94229,-0.805258,1.34458,1.79802,-0.934057,1.10919,0.197462,0.552727,1.51009,-1.619,1.25806,-0.0938984,0.600891,1.6795,1.08249,1.72543,1.97914,2.01055,1.99607,1.98988,2 +0.386708,-0.561082,-0.323932,-0.0707312,0.0867924,-0.0871622,-0.0388188,0.206307,0.0452251,-0.545231,-0.298676,0.335836,-0.0164211,0.228595,0.262796,-0.621869,0.0136926,-0.162731,-0.129789,0.101884,-0.749579,-1.06773,-0.288102,-0.0677128,-0.0940782,-0.562691,-0.0528811,-0.434472,-0.536686,-0.527121,-0.557524,-0.595523,0 +-0.604238,0.570357,-0.0463544,0.103233,-0.552747,-0.27379,-0.204258,-0.173195,-0.340683,-0.0970468,-0.0709111,0.554806,-0.337455,0.166249,-0.460478,0.298586,-0.357394,0.257658,-0.807417,0.00919475,0.657529,-1.34535,0.257139,-0.543232,-0.019719,0.618111,0.54729,0.490101,0.302734,0.227025,0.212943,0.241028,2 +-0.0988058,-0.357844,-0.453591,-0.680217,0.0449654,-0.477898,-0.497947,-0.537625,-0.324612,-0.721224,-0.51109,-0.00275853,-0.680597,0.116496,-0.58441,-0.387977,-0.225756,-0.670382,0.160582,-0.560743,-0.495778,-1.59528,-0.684165,0.376224,-0.523772,-0.658919,0.0246764,-0.378932,-0.505793,-0.522783,-0.527341,-0.519975,0 +-0.371196,-0.0174904,-0.354855,-0.591765,-0.358373,-0.215971,-0.246235,-0.263176,-0.270382,-0.643067,-0.522973,0.47471,-0.599871,0.0784969,-0.553596,-0.195423,-0.140703,-0.554116,0.0692419,-0.501915,-0.122613,-1.29233,-0.574355,0.283195,-0.472311,-0.303653,0.367648,0.190375,-0.0312429,-0.105472,-0.132177,-0.121453,2 +-0.743672,0.922814,0.553207,-0.154985,-0.995734,0.0937985,0.0798661,0.0248464,0.795453,1.70051,-0.0881017,0.924053,-0.162951,-0.00177905,-0.405128,0.576394,-0.0339013,-0.00705626,0.0355304,-0.31084,0.743312,-0.852322,-0.0191697,0.226336,-0.296467,0.714028,0.938165,1.31018,1.25683,1.09449,1.04175,1.05231,2 +-0.787458,1.12269,0.886564,0.00772579,-1.08135,0.021788,0.0123232,-0.0753886,1.36287,1.19036,0.0794663,0.868204,-0.0291141,-0.0395583,-0.340333,0.72824,-0.108021,0.213942,-0.0526712,-0.184179,0.958314,-0.937506,0.165109,0.100445,-0.193953,0.909361,1.00902,1.52155,1.54132,1.38861,1.32292,1.30699,2 +-0.884315,1.9417,2.85628,2.99191,-1.07498,-0.0480536,-0.0886015,-0.174644,2.20112,1.58741,2.90019,0.967089,3.71945,-3.84519,4.16433,1.87217,-0.499446,2.72874,-1.53261,2.60761,1.93038,-1.43058,2.55712,-1.94321,2.33057,2.06818,0.985379,1.61933,1.99817,2.19107,2.28862,2.30093,2 +-0.67414,0.650253,0.174504,-0.335416,-0.852422,0.142842,0.137065,0.0848735,0.193284,0.921354,-0.14578,0.931899,-0.331678,0.0536306,-0.478438,0.354016,0.0425967,-0.240978,0.102963,-0.427036,0.488922,-0.771627,-0.27286,0.314418,-0.415772,0.385198,0.789827,1.03015,0.871482,0.71048,0.663576,0.679827,2 +-0.859768,1.67831,2.24305,0.907692,-1.21442,-0.47313,-0.518456,-0.54676,2.48694,2.59616,2.20171,0.628825,1.43758,-0.756215,0.821009,1.60851,-0.771826,1.10733,-0.0861928,0.632593,1.49819,-1.4285,1.20335,-0.242987,0.643127,1.63773,1.1344,1.84909,2.2265,2.26826,2.18728,2.11002,2 +-0.239549,-0.261487,-0.567219,-0.626466,-0.0119634,-0.843417,-0.846466,-0.87489,-0.688802,-0.667294,-0.671262,-0.439299,-0.617072,0.0374594,-0.592875,-0.124142,-0.613323,-0.650413,0.174354,-0.572006,-0.342062,-1.97325,-0.682086,0.385938,-0.543222,-0.561902,0.0703913,-0.302864,-0.468243,-0.4934,-0.467693,-0.420839,0 +-0.821829,1.3107,1.09378,0.380621,-1.09557,-0.0943482,-0.0830345,-0.0814952,2.82989,1.65198,0.303663,0.852082,0.484014,0.0482335,-0.058498,1.12829,-0.293689,0.548759,-0.0788668,0.0390484,1.2119,-1.20734,0.49237,-0.0597472,0.00540723,1.19584,1.02324,1.52398,1.58888,1.46036,1.38185,1.37599,2 +-0.847015,1.60889,1.42756,2.99356,-0.815453,0.329259,0.305542,0.248644,1.42956,0.438709,1.26593,1.20604,2.78626,-3.61002,3.02319,1.74432,-0.0402578,2.69366,-2.85713,2.7289,1.82165,-1.33969,1.87307,-1.87244,1.47027,1.76266,0.76537,1.09507,1.23904,1.3459,1.41587,1.47038,2 +-0.639209,0.743082,0.0736198,0.584499,-0.363511,-0.535856,-0.448434,-0.396223,-0.0121534,-0.495558,-0.205947,0.32757,0.0340812,0.429294,-0.166559,0.566149,-0.666084,0.735426,-0.732188,0.337025,0.988718,-1.66686,0.405907,-0.357954,-0.0333815,0.821639,0.356994,0.295508,0.2367,0.255839,0.280596,0.281526,0 +-0.65592,0.713918,0.1825,0.0639749,-0.561942,0.463416,0.451222,0.433042,-0.0767679,0.541043,0.300425,1.84044,0.151497,-0.953237,0.00494714,0.628385,0.0978564,0.0616261,-0.311569,-0.160862,0.757035,-1.00849,-0.143362,0.0182,-0.27285,0.488302,0.551357,0.62021,0.544501,0.487272,0.482955,0.488162,2 +-0.895409,1.98321,2.9515,2.3401,-1.26054,-0.283434,-0.349119,-0.438479,1.71441,2.78968,3.35254,0.570147,2.60613,-1.41517,2.03256,1.97037,-0.590526,2.45234,-0.717866,2.06934,1.88549,-1.75532,1.96041,-0.751737,1.30082,1.92337,1.14877,1.98012,2.48048,2.63915,2.6314,2.58131,2 +-0.890631,2.0326,3.41007,3.56031,-1.10178,0.431603,0.366439,0.284004,1.60273,3.39182,4.2226,1.27786,3.87161,-4.39924,4.4902,1.5382,-0.0775574,3.44222,-2.46748,3.76511,1.99717,-1.07855,2.95469,-2.5753,2.92733,2.12831,1.00726,1.6949,2.1642,2.40454,2.46383,2.45675,2 +-0.881986,1.9049,2.72454,2.61019,-1.09617,0.191415,0.134766,0.0480337,1.50689,2.59891,3.09686,1.17849,2.71448,-2.63248,2.44392,1.68512,-0.232922,2.63676,-1.67126,2.55813,1.90344,-1.34356,2.13687,-1.54569,1.77956,1.95622,1.00923,1.6378,2.00755,2.17537,2.22731,2.22031,2 +0.324232,-0.645946,-0.466514,-0.622049,0.253101,-0.289071,-0.305592,-0.365309,-0.175913,-0.617781,-0.493849,0.194153,-0.569648,0.432783,-0.4204,-0.595933,-0.0988757,-0.640279,0.320664,-0.488252,-0.863586,-1.24143,-0.670372,0.424217,-0.484984,-0.92903,-0.174664,-0.603939,-0.671701,-0.671832,-0.672221,-0.673081,0 +-0.876099,1.79726,2.65608,1.10676,-1.2843,-0.0495628,-0.107331,-0.176903,4.07147,3.48691,1.7269,0.898377,1.67064,-0.963392,1.08697,1.61274,-0.31001,1.28704,-0.758524,0.853452,1.54585,-1.14205,1.3775,-0.915538,0.949939,1.66811,1.19028,1.97478,2.38264,2.45689,2.37747,2.30167,2 +-0.890611,1.91272,2.43652,2.69397,-1.18549,0.158623,0.122972,0.0232373,1.32296,1.81444,2.91443,1.15722,2.25582,-1.41927,1.51449,1.60152,-0.285723,2.77395,-1.0837,2.45926,1.95224,-1.28011,2.1311,-1.06933,1.43476,1.94682,1.08882,1.76472,2.0976,2.2199,2.24947,2.22236,2 +1.6611,-1.53012,-0.859508,-0.839969,0.617371,-0.69234,-0.675939,-0.590356,-0.788797,-0.780682,-0.779642,-0.326871,-0.918586,0.135746,-0.624368,-1.79191,-0.453631,-0.861577,0.16324,-0.602739,-1.66513,-1.62972,-0.877459,0.377863,-0.570727,-1.69134,-0.481676,-1.13355,-1.21197,-1.20046,-1.22386,-1.24337,0 +0.714358,-0.977344,-0.557994,-0.782611,0.338304,-0.494299,-0.501735,-0.52806,-0.321334,-0.597232,-0.609256,0.153416,-0.741233,0.276328,-0.512409,-1.02399,-0.368278,-0.777294,0.188157,-0.563241,-1.29364,-1.41937,-0.72934,0.411344,-0.499476,-1.17626,-0.244696,-0.744941,-0.825667,-0.848265,-0.876849,-0.898927,0 +-0.877569,1.84744,2.37432,2.60702,-1.09292,0.443447,0.429794,0.38231,3.21677,2.03076,2.63318,1.46618,2.49217,-2.2496,2.10752,1.2025,-0.0480136,2.61189,-0.734097,2.46584,1.87481,-0.956815,2.06578,-0.950888,1.60273,1.95459,1.01677,1.61537,1.92751,2.02903,2.05036,2.0517,2 +0.0975365,-0.478737,-0.584079,-0.47334,0.312778,2.03254,2.04243,2.0305,-0.197502,-0.568258,-0.47413,3.15536,-0.617022,-0.475809,-0.500965,-1.58808,1.46148,-0.416112,-0.296677,-0.315977,-0.332657,-0.0450253,-0.546121,0.00852536,-0.386248,-0.595753,-0.25497,-0.704573,-0.795693,-0.805438,-0.822689,-0.841508,1 +-0.756825,1.0533,0.80141,0.0616462,-0.898667,-0.213523,-0.247244,-0.285543,2.04384,1.62719,0.139913,0.755735,0.328859,0.0448953,-0.102344,0.967919,-0.371036,0.142302,-0.113998,-0.18291,0.862407,-1.12336,0.168507,0.0124932,-0.141612,0.870432,0.844317,1.22831,1.27321,1.1801,1.10024,1.05052,2 +-0.370797,0.0142521,-0.362731,-0.551857,-0.244486,-0.877798,-0.83861,-0.805238,-0.246595,-0.578972,-0.372336,-0.16424,-0.558953,0.107081,-0.570987,-0.108561,-0.817591,-0.518066,0.025276,-0.529929,-0.0784869,-2.00777,-0.513708,0.281426,-0.497397,-0.137385,0.275449,0.00593667,-0.160962,-0.215032,-0.2367,-0.238019,0 +-0.555465,0.428235,-0.113378,-0.194973,-0.338055,-0.615062,-0.540224,-0.558643,-0.160562,-0.517116,-0.108361,-0.00802564,-0.206997,0.333677,-0.403749,0.403249,-0.555685,-0.129689,0.111809,-0.357854,0.568798,-1.68294,-0.279507,0.34603,-0.425706,0.353826,0.338954,0.195173,0.103823,0.0618058,0.0923194,0.107841,0 +2.50685,-2.01801,-0.897767,-0.960643,0.763591,-0.415242,-0.412534,-0.424997,-0.67362,-0.69213,-0.715228,0.122523,-1.11036,-0.0447155,-0.686613,-2.36413,-0.29157,-0.945881,0.115497,-0.615952,-2.42377,-1.10603,-0.925672,0.368078,-0.574974,-2.19253,-0.653102,-1.27016,-1.28308,-1.28373,-1.2971,-1.3228,0 +-0.824198,1.44645,0.986909,2.52968,-0.717277,-0.00926492,-0.0230075,-0.0784369,1.04847,0.0974565,0.930579,0.923193,2.13524,-2.42228,1.76564,1.7059,-0.317726,2.28651,-2.22973,1.91055,1.70897,-1.63551,1.49119,-1.30456,0.903704,1.60436,0.667104,0.917626,0.996104,1.06497,1.13007,1.18529,2 +-0.752027,0.942643,0.358114,0.345341,-0.842988,0.742632,0.753606,0.767709,0.542902,0.16456,0.110559,1.67183,0.435651,-0.958714,0.321194,0.942153,0.476019,0.313218,-0.47367,0.0264853,0.9486,-0.811415,0.205697,-0.446675,0.0756787,0.846245,0.797153,1.02606,0.882016,0.807547,0.82136,0.82003,2 +0.579492,-0.80266,-0.580151,-0.706302,0.365759,-1.17793,-1.20399,-1.22894,-0.720305,-0.676219,-0.703894,-0.726062,-0.776574,0.14553,-0.557314,-1.05748,-0.969868,-0.684255,0.171756,-0.52929,-0.926602,-2.35333,-0.707552,0.384399,-0.513178,-0.895449,-0.305323,-0.743072,-0.785559,-0.804339,-0.824438,-0.821599,0 +-0.232363,-0.190086,-0.440558,-0.609446,-0.0758284,-0.680047,-0.786578,-0.937236,-0.665715,-0.539314,-0.25438,-0.155015,-0.639679,0.122593,-0.588657,-0.30965,-0.503264,-0.591925,0.168837,-0.548789,-0.268872,-1.75861,-0.599032,0.372466,-0.51063,-0.390856,0.0761082,-0.235031,-0.40022,-0.421219,-0.389956,-0.365489,0 +0.835841,-1.06961,-0.799771,-0.644636,0.466764,-0.589976,-0.595753,-0.670182,-0.413883,-0.789727,-0.657959,-0.0193494,-0.635541,0.34615,-0.530579,-0.951098,-0.403249,-0.715068,0.308561,-0.553157,-1.1476,-1.84533,-0.796173,0.412544,-0.559243,-1.1718,-0.381001,-0.916797,-0.992216,-1.00092,-1.0076,-1.01883,0 +-0.886434,1.93245,2.89022,2.1405,-1.19067,0.0657739,0.00251854,-0.0817151,1.87146,3.48538,3.50054,1.13938,2.25565,-1.78572,1.66208,1.64011,-0.370786,2.29104,-1.03156,1.97522,1.84664,-1.29092,2.06902,-1.06192,1.57079,1.95967,1.09206,1.84224,2.28686,2.42531,2.42094,2.37717,2 +-0.85624,1.61474,1.3403,2.12328,-0.951688,-0.413943,-0.436031,-0.508151,0.288672,0.575964,1.52661,0.612994,1.8868,-1.48727,1.21772,1.75136,-0.741353,2.04319,-0.977794,1.46884,1.75994,-1.84606,1.44304,-0.641968,0.69242,1.68323,0.890371,1.33534,1.51246,1.55173,1.56933,1.57659,2 +1.74828,-1.64183,-0.824357,-0.934557,0.566159,-0.577873,-0.597952,-0.603559,-0.629215,-0.730609,-0.729929,0.0205787,-1.04443,-0.0148319,-0.67455,-1.88758,-0.447065,-0.91126,0.100265,-0.611565,-1.98472,-1.41478,-0.882306,0.348149,-0.568388,-1.79266,-0.476499,-1.05002,-1.12524,-1.13795,-1.16056,-1.19184,0 +-0.830195,1.40355,1.5061,0.298126,-1.22799,-0.303803,-0.341263,-0.398062,0.992465,3.39058,0.755126,0.729959,0.416122,-0.21855,-0.0323024,1.0944,-0.554626,0.533247,-0.202339,0.0919593,1.17324,-1.13525,0.604538,-0.177223,0.123842,1.24611,1.14682,1.8109,1.98556,1.91391,1.81495,1.76483,2 +0.792695,-1.14657,-0.755715,-0.87499,0.266664,-0.217061,-0.147559,-0.198261,-0.460138,-0.712579,-0.760663,0.378542,-0.979892,-0.0279647,-0.662936,-1.4731,-0.147609,-0.864726,0.130308,-0.606827,-1.44635,-1.02051,-0.842848,0.380911,-0.566019,-1.4045,-0.157564,-0.722623,-0.864496,-0.877639,-0.921564,-0.937845,0 +1.38304,-1.54097,-0.829455,-0.931009,0.429944,0.191415,0.159352,0.154026,-0.457979,-0.806188,-0.726052,0.763531,-1.07285,-0.0293139,-0.681136,-2.04017,0.252671,-0.908202,0.117475,-0.611884,-1.86468,-0.683215,-0.89255,0.375994,-0.572286,-1.79979,-0.312269,-0.924193,-1.04786,-1.05461,-1.06994,-1.1017,0 +0.289861,-0.314557,0.0210486,-0.458698,0.0968169,-0.72883,-0.706482,-0.678688,-0.0717207,0.233302,0.103763,-0.192404,-0.500416,0.0906902,-0.361142,-0.628565,-0.610525,-0.348129,-0.403499,-0.276249,-0.527491,-1.70129,-0.360093,-0.137025,-0.271411,-0.465045,-0.0689522,-0.302514,-0.257849,-0.239339,-0.240668,-0.251902,0 +-0.866774,1.70622,1.67287,2.12831,-1.01996,-0.257509,-0.296927,-0.373135,0.793195,0.872101,2.09595,0.842428,1.88071,-1.2108,1.13606,1.73144,-0.636001,2.1457,-0.608916,1.65121,1.81134,-1.705,1.51152,-0.502204,0.771547,1.74392,0.938595,1.48521,1.72233,1.791,1.81853,1.82723,2 +-0.82046,1.44155,1.26255,1.26037,-0.868613,-0.0260257,-0.0137225,0.0156814,0.982491,0.925692,1.35943,1.30216,1.51462,-1.55121,1.04671,1.41526,-0.465035,1.16251,-0.191295,0.730189,1.48234,-1.2874,0.938765,-0.192294,0.475299,1.48169,0.797402,1.19106,1.32596,1.35508,1.33085,1.32218,2 +-0.40054,0.279507,-0.377593,2.72495,-0.0182,0.812874,0.851972,0.915058,-0.664435,-0.615442,-0.67414,2.43588,0.193364,-0.900776,-0.116926,0.209555,0.103193,3.04876,0.385718,1.66307,0.736726,-1.23931,1.5996,0.117975,0.324472,0.921644,0.0225276,-0.29187,-0.420789,-0.431883,-0.409315,-0.40005,2 +-0.562471,0.434282,-0.149668,-0.129709,-0.435081,-0.301884,-0.294409,-0.241707,0.421828,-0.1824,-0.436271,0.586548,-0.0845437,0.21781,-0.344151,0.470872,-0.407017,-0.150997,-0.188527,-0.321474,0.484734,-1.24607,-0.133557,-0.0434461,-0.258498,0.395593,0.466194,0.340343,0.156304,0.0710307,0.0575884,0.0660238,2 +-0.18239,-0.0981662,-0.414143,-0.392774,-0.00248859,-0.0498526,0.0014991,0.123442,-0.078407,-0.468813,-0.470772,0.553606,-0.297227,0.404838,-0.38296,-0.00137933,-0.0319124,-0.457209,0.197651,-0.464116,-0.0751687,-0.989747,-0.520914,0.340473,-0.480356,-0.211364,0.0309629,-0.275979,-0.393544,-0.430024,-0.463166,-0.495348,0 +-0.858119,1.59934,1.46917,1.27558,-1.1339,-0.390396,-0.408026,-0.468093,2.78497,1.57999,1.41688,0.987128,1.42011,-0.54736,0.676049,1.52709,-0.827046,1.2528,0.413453,0.738874,1.5588,-1.5075,1.06555,0.188996,0.424557,1.58458,1.05209,1.6378,1.81528,1.7729,1.72947,1.69995,2 +0.607467,-0.841698,-0.695688,-0.536146,0.206667,1.76412,1.76874,1.76143,-0.204918,-0.680337,-0.581271,2.5143,-0.909881,-0.177423,-0.640189,-1.3591,1.4914,-0.473051,-0.376084,-0.439599,-0.753447,-0.593684,-0.669763,0.161891,-0.501745,-0.876769,-0.122273,-0.640079,-0.807557,-0.861228,-0.905213,-0.932948,1 +0.252092,-0.538705,-0.446485,-0.458309,0.192884,2.74411,2.68228,2.61421,0.268313,-0.34578,-0.114777,3.07454,-0.708182,-0.438889,-0.535037,-1.40509,2.29908,-0.407616,-0.511949,-0.339264,-0.463656,0.0708111,-0.575634,-0.0326121,-0.384749,-0.745751,-0.158353,-0.572216,-0.640559,-0.643377,-0.669803,-0.705883,1 +-0.315977,-0.103823,-0.395973,-0.572336,-0.234481,-0.45562,-0.531838,-0.641518,-0.307991,-0.667494,-0.445685,0.235471,-0.442088,0.234381,-0.532158,-0.00658647,-0.370617,-0.594474,0.183189,-0.561632,-0.281456,-1.32328,-0.592745,0.403199,-0.523083,-0.363151,0.294418,-0.0508022,-0.257769,-0.321334,-0.337585,-0.336066,0 +-0.730919,0.868014,0.242557,0.197462,-0.760613,0.606097,0.590056,0.557664,0.340713,0.771946,0.258718,1.82409,-0.103773,-0.376503,-0.34682,0.563461,0.280306,0.325581,0.0940483,-0.106252,0.98408,-0.974006,-0.0606169,0.148818,-0.296187,0.654681,0.751827,0.896088,0.790586,0.678398,0.646895,0.659868,2 +-0.794654,1.16045,0.716677,0.334487,-1.05419,-0.0388087,0.00196884,0.169977,0.389646,1.0457,0.324822,1.07669,0.30925,-0.0607467,-0.0945283,0.918396,-0.301704,0.463106,0.353216,0.0161509,1.14097,-1.0898,0.524782,0.30916,0.0358805,1.22943,1.00642,1.34292,1.26537,1.13054,1.04995,1.04403,2 +-0.727001,0.923443,0.266394,0.54649,-0.608086,-1.11444,-1.07282,-0.863236,0.0559693,-0.353176,-0.285084,1.04107,0.263945,-0.281406,-0.187257,0.914438,-1.78077,0.599201,1.57497,0.448024,1.02293,-2.30779,0.784329,1.2085,0.298047,1.31862,0.606227,0.58352,0.373595,0.277008,0.227495,0.213163,2 +0.573895,-1.07693,-0.807737,-0.723733,0.342902,0.604398,0.61903,0.603079,-0.533517,-0.597312,-0.724952,0.432673,-0.594914,0.215662,-0.592905,-0.894129,0.790686,-0.814113,0.148219,-0.605658,-1.23088,0.286083,-0.803429,0.378582,-0.56502,-1.11167,-0.254061,-0.836921,-0.973566,-1.00225,-1.03536,-1.05923,0 +0.812224,-1.16249,-0.790586,-0.774775,0.391605,0.847075,0.855441,0.860108,-0.407037,-0.826317,-0.808406,0.706432,-0.640479,0.240398,-0.567279,-0.904544,0.919905,-0.841099,0.148818,-0.605868,-1.41904,0.847975,-0.817442,0.377643,-0.562641,-1.23975,-0.316916,-0.878208,-0.987348,-0.996274,-1.01242,-1.03851,0 +0.0394883,-0.505053,-0.578552,-0.698887,-0.0170206,0.513868,0.541153,0.596093,-0.0640949,-0.481056,-0.680886,0.485654,-0.52823,0.221219,-0.539684,-0.203548,0.62049,-0.687903,0.104752,-0.560912,-0.631174,0.40125,-0.591326,0.282645,-0.498057,-0.414942,0.0594073,-0.332498,-0.52926,-0.574985,-0.587318,-0.597772,0 +-0.122283,-0.0878818,-0.362421,-0.302934,0.00229878,1.47587,1.53981,1.56131,-0.591605,-0.569807,-0.685684,1.36231,-0.262046,0.192954,-0.34733,-0.23642,1.30374,-0.239389,0.116376,-0.369158,-0.106611,1.41526,-0.316197,0.0899407,-0.423777,-0.262726,0.0133326,-0.243466,-0.326631,-0.354766,-0.391785,-0.427915,0 +-0.489332,0.34591,0.0472643,-0.201569,-0.211064,1.98925,1.91734,1.86017,0.647565,0.104493,0.0132227,1.79507,-0.186928,0.294758,-0.451892,-0.238539,1.70571,-0.133767,0.511559,-0.370487,-0.0257858,1.70109,-0.444676,0.293979,-0.497207,-0.681066,-0.0886015,0.628715,0.60211,0.573385,0.566829,0.548569,2 +0.908282,-1.31737,-0.784379,-0.917257,0.313948,1.41867,1.40816,1.38467,-0.262476,-0.688952,-0.76545,1.06789,-0.980782,0.0282045,-0.658619,-1.53122,1.40613,-0.890072,0.102494,-0.609106,-1.65594,1.56342,-0.863107,0.356025,-0.567698,-1.56773,-0.196822,-0.786728,-0.939664,-0.975215,-1.01397,-1.04801,0 +-0.83922,1.47216,1.73988,0.36551,-1.31466,0.839779,0.785009,0.726271,1.27975,3.1159,1.58473,1.26572,0.301045,-0.395823,-0.0678229,0.937405,0.538485,0.727411,-0.487742,0.310389,1.21567,0.670752,0.799381,-0.585299,0.262106,1.14143,1.19195,1.97581,2.22604,2.18997,2.10595,2.02124,2 +0.76568,-1.29025,-0.809895,-0.899037,0.394094,1.44174,1.43541,1.44102,-0.571077,-0.521094,-0.781661,0.989897,-0.969678,-0.00391787,-0.667044,-1.32154,1.42762,-0.899477,0.117365,-0.612664,-1.6604,1.67008,-0.877539,0.369947,-0.571456,-1.64302,-0.25594,-0.908042,-1.03232,-1.0532,-1.0803,-1.11791,0 +-0.644686,0.739264,0.465465,-0.12778,-0.74701,1.59299,1.56384,1.53286,1.31388,1.00398,0.0566588,1.73348,-0.20092,-0.21882,-0.326901,0.301395,1.24382,0.0574284,-0.496188,-0.0297239,0.520315,1.4693,0.0294536,-0.591785,-0.0213381,0.194113,0.646665,1.01834,1.00326,0.92894,0.876189,0.829905,2 +0.833903,-1.17884,-0.812584,-0.699426,0.387847,1.80468,1.80723,1.80269,-0.598182,-0.572906,-0.720914,1.45546,-0.518156,0.331578,-0.539154,-0.924873,1.63604,-0.806158,0.167288,-0.60196,-1.38405,1.75522,-0.813164,0.385648,-0.5651,-1.30617,-0.271171,-0.87486,-0.992775,-0.997153,-1.02083,-1.03706,0 +0.0126831,-0.414113,-0.516546,-0.523103,0.0550798,1.39432,1.40172,1.5367,-0.415862,-0.129199,-0.497737,1.12666,-0.326151,0.349728,-0.508151,-0.388267,1.3507,-0.612344,0.234881,-0.555575,-0.475879,1.18305,-0.623348,0.372765,-0.5277,-0.462216,-0.00561698,-0.383839,-0.505183,-0.561782,-0.605898,-0.633312,0 +-0.683775,0.849724,0.362571,0.51018,-0.552137,1.27053,1.27099,1.25039,0.790796,0.308061,1.11652,1.80855,0.120973,-0.390616,-0.223867,0.670702,0.859388,0.736506,0.0852931,0.271191,1.13493,0.660368,0.435541,0.0323623,-0.0164508,0.989587,0.54633,0.562451,0.590526,0.596173,0.586688,0.586148,2 +0.726751,-1.03866,-0.760403,-0.786468,0.309001,0.989757,1.02725,1.15232,-0.264365,-0.827026,-0.853222,0.958624,-0.69327,0.14563,-0.605918,-0.760143,0.953727,-0.80239,0.106691,-0.597562,-1.15447,0.994334,-0.746071,0.301734,-0.545011,-0.967169,-0.210645,-0.760803,-0.921245,-0.970758,-1.00201,-1.02271,0 +-0.799222,1.33183,1.46436,0.469013,-1.00944,1.19437,1.16971,1.16738,2.20404,2.00513,1.25082,1.53159,0.450093,-0.651882,0.114547,0.89234,0.843747,0.740653,-0.641818,0.449803,1.12348,0.900946,0.789996,-0.949359,0.439069,0.941373,0.845856,1.53105,1.71452,1.68873,1.6418,1.60673,2 +-0.797612,1.25538,0.808187,1.08197,-0.691401,1.25562,1.24988,1.24036,-0.212803,0.189096,1.05554,1.72788,0.821289,-1.00909,0.421998,0.980112,0.796913,1.10106,-0.449703,0.549378,1.36874,0.846615,1.07944,-0.87431,0.464575,1.11898,0.578263,0.91147,0.974256,0.974015,0.979663,0.972976,2 +-0.703794,0.80111,0.313658,0.144581,-0.683385,1.2849,1.30031,1.30155,0.76472,0.0919495,-0.0719406,1.53427,-0.0476939,0.193464,-0.348839,0.283354,1.02543,0.347569,0.567049,-0.0838342,0.817462,0.852802,0.212243,0.319485,-0.251342,0.662866,0.541223,0.880737,0.835801,0.813383,0.822559,0.845406,2 +-0.536985,0.331588,-0.158463,-0.36498,-0.503564,1.8851,1.90113,1.92402,0.631383,-0.0677529,-0.366659,2.00413,-0.312089,-0.0722704,-0.504833,0.242187,1.46364,-0.297357,0.00923481,-0.441338,0.334567,1.67414,-0.331808,0.0694819,-0.432163,-0.0874821,0.482185,0.500455,0.317366,0.204567,0.169117,0.156804,2 +0.165179,-0.704444,-0.719165,-0.63854,0.132957,1.35294,1.36887,1.42867,-0.285793,-0.770867,-0.761612,1.39549,-0.40157,0.16424,-0.54695,-0.076618,1.16554,-0.706962,0.174604,-0.586958,-0.672751,1.35467,-0.670232,0.349748,-0.542252,-0.571457,-0.056619,-0.556005,-0.745381,-0.769528,-0.788767,-0.80115,2 +-0.630594,0.726182,0.181601,0.886923,-0.287482,1.93851,1.95012,1.9451,-0.0038779,0.416931,0.298886,2.47289,0.212243,-1.26887,0.138784,0.0999051,1.30213,1.074,-0.471691,0.700535,0.968819,1.12491,0.549738,-0.405078,0.167918,0.523563,0.202469,0.263225,0.240208,0.216571,0.203358,0.189706,2 +0.449284,-0.940444,-0.742332,-0.803409,0.161441,0.0148918,0.00675622,-0.0173904,-0.631583,-0.569527,-0.72913,-0.052871,-0.813074,0.0945881,-0.617601,-0.886054,0.280986,-0.817941,0.154435,-0.595853,-1.17173,-0.223797,-0.788468,0.394044,-0.557144,-1.06885,-0.063845,-0.593474,-0.753916,-0.786359,-0.796263,-0.809586,2 +0.355575,-0.877669,-0.72845,-0.69333,0.294489,1.47399,1.46941,1.48689,-0.444276,-0.261137,-0.581791,1.11394,-0.481936,0.286833,-0.556995,-0.649014,1.46318,-0.790616,0.14537,-0.600591,-1.0436,1.36041,-0.778623,0.370267,-0.556205,-1.01088,-0.183459,-0.752587,-0.883165,-0.91163,-0.941793,-0.971477,0 +0.194853,-0.641298,-0.515547,-0.756305,0.209235,0.691031,0.74672,0.761062,-0.141522,-0.612304,-0.781341,0.457159,-0.733977,0.190965,-0.562981,-0.679527,0.809716,-0.701225,0.025386,-0.540394,-0.867584,0.757194,-0.610555,0.167138,-0.465844,-0.773825,-0.143371,-0.591605,-0.694589,-0.719036,-0.763831,-0.808306,0 +0.909511,-1.21273,-0.804228,-0.726062,0.414163,1.69291,1.70015,1.69176,-0.377373,-0.647625,-0.711849,1.33788,-0.573186,0.27417,-0.579862,-1.13632,1.59442,-0.817542,0.150757,-0.604908,-1.32921,1.54386,-0.814913,0.378952,-0.563241,-1.26037,-0.299886,-0.885814,-1.00876,-1.03978,-1.04996,-1.07899,0 +-0.330639,0.184089,-0.179431,-0.177483,-0.278627,0.380061,0.422278,0.454671,-0.282505,-0.376803,-0.472831,0.453331,-0.229884,0.228045,-0.271461,-0.0182101,0.443886,-0.147669,-0.087732,-0.224157,0.253151,0.155565,-0.225157,0.0541103,-0.271521,0.240078,0.326681,0.10936,-0.0517616,-0.117036,-0.168368,-0.169567,0 +-0.775584,1.178,0.945651,0.576104,-0.786998,1.44203,1.44312,1.4602,1.03658,0.712529,1.01729,1.69015,0.590126,-0.862767,0.213733,0.948739,1.06531,0.659628,-0.69197,0.257998,1.09099,1.07256,0.666554,-0.936686,0.278747,0.859048,0.650403,1.11914,1.24483,1.22707,1.21096,1.20055,2 +0.159483,-0.591396,-0.631044,-0.550938,0.259987,1.26995,1.25538,1.25531,-0.229414,-0.476608,-0.434012,0.950449,-0.518086,0.463226,-0.443217,-0.625247,1.27437,-0.581321,0.341542,-0.49181,-0.63849,1.2888,-0.665455,0.371356,-0.522413,-0.839619,-0.204658,-0.644626,-0.771527,-0.829175,-0.858239,-0.887843,0 +0.288062,-0.690421,-0.664605,-0.508301,0.14655,1.78431,1.83054,1.8815,-0.613223,-0.450683,-0.572326,1.32879,-0.314647,0.435311,-0.483565,-0.548869,1.68889,-0.631883,0.27334,-0.563611,-0.786339,1.66917,-0.713479,0.389296,-0.548309,-0.953527,-0.136905,-0.555395,-0.69207,-0.715438,-0.733947,-0.752227,0 +0.370177,-0.816722,-0.707641,-0.660078,0.23624,1.71335,1.77204,1.80952,-0.269032,-0.751618,-0.808147,1.54995,-0.456839,0.192894,-0.535646,-0.417181,1.48115,-0.721854,0.0893009,-0.573665,-0.862087,1.62934,-0.65605,0.209445,-0.47365,-0.726451,-0.155415,-0.682525,-0.8197,-0.840739,-0.851213,-0.863296,0 +-0.567998,0.366899,-0.140992,-0.362701,-0.550048,1.88889,1.90543,1.93615,-0.275559,0.27373,-0.34554,1.95229,-0.264355,-0.113968,-0.443407,0.285473,1.49055,-0.298656,-0.0153617,-0.424137,0.338294,1.69684,-0.326151,0.0477238,-0.413513,-0.124892,0.527511,0.551647,0.372785,0.278517,0.247055,0.235001,2 +-0.787808,1.22544,0.828645,0.736346,-0.904284,1.41744,1.38811,1.33792,0.697487,0.6374,0.830624,1.61188,0.63702,-1.05278,0.584439,0.845676,1.03212,0.778593,-0.757255,0.605038,1.1347,1.28354,0.670672,-1.3401,0.599691,0.525611,0.789927,1.28642,1.36324,1.34717,1.3197,1.31398,2 +1.01173,-1.13538,-0.698686,-0.863776,0.284714,0.919306,0.98441,1.12413,-0.590956,-0.694559,-0.823998,0.8025,-0.895509,0.083814,-0.633453,-1.34382,0.941134,-0.818071,0.0654839,-0.593105,-1.40868,1.01896,-0.754036,0.271621,-0.539374,-1.13942,-0.211674,-0.698627,-0.859878,-0.900087,-0.925063,-0.94821,0 +-0.515697,0.807627,0.782661,1.11641,0.130069,2.08625,2.08722,2.05594,1.24076,0.187587,0.417971,2.31399,0.629924,-1.45377,0.579182,0.0148817,1.49441,1.40738,-1.10559,1.22514,0.83809,1.39551,0.787768,-1.45287,0.716087,-0.00222892,-0.597122,0.366559,0.589207,0.693639,0.741903,0.756875,2 +0.119265,-0.591106,-0.632303,-0.530179,0.0879518,1.65231,1.68527,1.79712,-0.130468,-0.677018,-0.636181,1.23712,-0.373185,0.274969,-0.523063,-0.429314,1.57671,-0.631584,0.244546,-0.56558,-0.666524,1.53367,-0.694249,0.378073,-0.545551,-0.733737,-0.0213783,-0.470162,-0.628215,-0.660818,-0.673321,-0.698107,0 +-0.807207,1.32166,1.37861,0.644107,-0.85595,1.71497,1.62049,1.49365,2.08178,2.21207,1.09574,1.68313,0.640658,-0.295668,0.058118,0.687133,1.39604,0.838979,-0.251952,0.362551,0.953457,1.27093,0.549178,-0.643967,0.14554,0.452831,0.504723,1.5165,1.73936,1.74524,1.69304,1.64347,2 +-0.864496,1.80106,2.56201,3.09561,-0.835462,1.33713,1.28305,1.20118,1.36299,2.50043,3.07863,1.61097,2.38435,-3.18054,2.59667,1.27086,0.789037,3.22107,-3.06202,3.64124,1.68221,0.659458,2.61424,-3.03835,2.449,1.31946,0.584299,1.35652,1.76115,1.97676,2.0678,2.08483,2 +0.767389,-1.02769,-0.663496,-0.663226,0.249703,1.31535,1.44364,1.58699,-0.661487,-0.489381,-0.555715,0.834732,-0.623538,0.512159,-0.431024,-1.30128,1.32781,-0.705183,0.396372,-0.525092,-1.38446,1.59046,-0.800601,0.404028,-0.560922,-1.41174,-0.228225,-0.614183,-0.684794,-0.71193,-0.759164,-0.824388,0 +1.00034,-1.33838,-0.742502,-0.935707,0.173975,1.26523,1.21842,1.22391,-0.221409,-0.662486,-0.394094,0.955995,-1.03017,-0.0163211,-0.676679,-1.72898,1.30031,-0.903894,0.110629,-0.612034,-1.76399,1.40551,-0.867594,0.365539,-0.568888,-1.58053,-0.0833943,-0.639469,-0.822689,-0.873891,-0.907172,-0.942403,0 +-0.887573,1.85096,2.36158,1.77528,-1.2981,0.714758,0.646975,0.543342,1.33573,2.79263,2.58546,1.01538,1.49084,-0.848175,0.896378,1.5753,0.398371,2.02071,-0.997603,1.57863,1.7351,0.293329,1.74494,-1.00737,1.03153,1.63127,1.17873,1.98465,2.37792,2.44063,2.38903,2.32954,2 +-0.613543,0.769648,0.45597,0.914508,-0.0898906,1.88676,1.89321,1.86431,0.0109839,0.464215,0.285014,2.2194,0.360442,-0.71188,-0.0408277,0.179491,1.33417,1.25375,-0.121933,0.708291,0.961862,1.21062,0.623108,-0.433282,0.148739,0.311539,-0.250303,0.352407,0.408696,0.466274,0.497287,0.504403,2 +1.08813,-1.29317,-0.795593,-0.85671,0.333977,0.72884,0.790116,0.937635,-0.567299,-0.757854,-0.840709,0.592675,-0.870652,0.112838,-0.636561,-1.40703,0.818231,-0.863596,0.14497,-0.608246,-1.4936,0.778103,-0.843797,0.379472,-0.568498,-1.37134,-0.203768,-0.832853,-0.978103,-1.02018,-1.04227,-1.06699,0 +-0.122033,-0.212813,-0.369477,-0.332088,-0.214083,0.000119934,-0.0270552,-0.0385588,-0.417031,-0.213233,-0.51083,-0.116716,-0.423008,-0.290061,-0.276109,-0.132158,0.214023,-0.34708,-0.725532,-0.0712211,-0.445256,-0.104663,-0.327381,-0.282245,-0.140962,-0.27417,0.217241,-0.0231674,-0.190805,-0.234472,-0.224417,-0.229984,0 +0.389147,-0.886844,-0.670422,-0.800441,0.116826,0.450923,0.420729,0.433472,-0.384489,-0.811615,-0.76626,0.448314,-0.723453,0.279637,-0.523803,-0.825247,0.574165,-0.821959,0.189176,-0.594054,-1.26142,0.478657,-0.778883,0.41901,-0.553316,-1.07253,-0.045755,-0.519725,-0.718016,-0.735197,-0.744871,-0.757244,0 +0.121124,-0.569238,-0.645815,-0.666564,0.102434,0.886983,0.943892,1.00205,-0.562791,-0.648834,-0.733318,0.777254,-0.58377,0.162851,-0.544092,-0.367189,0.877478,-0.679187,0.0182798,-0.544911,-0.65639,1.07749,-0.60241,0.186628,-0.481406,-0.530849,-0.0472741,-0.4914,-0.679497,-0.709411,-0.71115,-0.716417,0 +-0.805118,1.35463,1.60945,0.684714,-0.823098,1.7778,1.75301,1.72562,2.26859,1.79703,1.09519,1.86278,0.753666,-1.02407,0.350647,0.883805,1.32917,0.899107,-1.22882,0.60149,1.07041,1.50793,0.730479,-1.51837,0.518206,0.240228,0.615952,1.41225,1.71702,1.77009,1.75436,1.71372,2 +-0.578353,0.468643,0.161172,-0.279147,-0.502694,1.7508,1.68384,1.58947,0.191905,0.589786,-0.132777,1.58285,-0.244936,0.264795,-0.440029,-0.0175804,1.50839,-0.173515,0.441887,-0.361782,0.139374,1.55569,-0.378293,0.275129,-0.468023,-0.329889,0.275929,0.831624,0.734997,0.63715,0.606287,0.605028,2 +0.0522713,-0.499036,-0.592355,-0.561162,0.0130529,1.04057,1.10636,1.24974,-0.141123,-0.668743,-0.596663,0.731589,-0.414173,0.332408,-0.506942,-0.414772,1.08095,-0.644137,0.25469,-0.554086,-0.602819,0.991636,-0.673211,0.40109,-0.536066,-0.622878,0.050922,-0.371576,-0.535706,-0.578003,-0.614073,-0.648164,0 +0.581741,-0.941304,-0.683865,-0.796463,0.0934288,1.55691,1.66635,1.76407,-0.579522,-0.666894,-0.711979,1.11887,-0.790516,0.169837,-0.590066,-1.05656,1.49441,-0.800911,0.213853,-0.58438,-1.27787,1.55854,-0.803989,0.393144,-0.562901,-1.26625,-0.0764281,-0.484874,-0.666524,-0.727211,-0.764201,-0.80263,0 +0.210664,-0.515557,-0.631094,0.0760983,0.121014,0.0862527,0.106302,0.134556,-0.580202,-0.72828,-0.708451,0.0269852,0.172225,-1.88776,1.0281,0.00331809,0.20131,-0.197062,-1.35113,0.23611,-0.628225,0.0503423,-0.0217982,-1.60294,0.740384,-0.452402,-0.0630355,-0.533437,-0.69231,-0.695929,-0.691111,-0.682995,0 +-0.102224,-0.436371,-0.633182,-0.501375,-0.0105941,1.74834,1.76177,1.75152,-0.156804,-0.58394,-0.6007,1.51442,-0.173335,0.297927,-0.443527,-0.00194902,1.52916,-0.636451,0.197202,-0.569498,-0.508721,1.71678,-0.685344,0.362351,-0.54678,-0.733737,0.0676728,-0.322023,-0.506832,-0.558574,-0.573375,-0.592675,2 +-0.781601,1.16001,0.74762,0.405258,-0.922014,1.05263,1.05114,1.01345,1.24264,0.344481,0.983,1.40262,0.421918,-0.375824,0.0331817,0.937855,0.738775,0.478997,-0.156534,0.0328218,1.10666,0.933008,0.470732,-0.368338,0.0141324,0.873371,0.876469,1.27169,1.32088,1.26599,1.25555,1.27611,2 +-0.432423,0.499126,0.194683,0.697577,-0.275659,0.168408,0.174694,0.265434,0.525691,-0.0276149,-0.0848535,0.0277447,0.517956,-0.954866,0.477588,0.671841,0.205078,0.574105,-2.06594,0.738135,0.463926,0.0413073,0.524292,-1.51722,0.549189,0.54576,0.289261,0.210734,0.211204,0.224567,0.203838,0.187387,0 +-0.668313,0.543932,-0.388607,0.443157,-0.221249,1.51386,1.55564,1.68364,-0.589786,-0.599251,-0.32716,2.12234,-0.396063,-0.0102744,-0.550778,-0.0492431,1.01407,0.712849,0.248214,0.00578662,1.10222,0.976464,0.392564,0.197532,-0.252651,0.739734,0.151457,0.0683524,-0.147299,-0.23762,-0.241677,-0.259048,2 +0.800601,-1.10106,-0.795683,-0.69286,0.411964,1.60205,1.62,1.66229,-0.498976,-0.672051,-0.754456,1.20781,-0.541183,0.300175,-0.556775,-0.951158,1.52738,-0.789397,0.16471,-0.599221,-1.20758,1.56646,-0.796493,0.375884,-0.560452,-1.17049,-0.316057,-0.885244,-0.977424,-0.994405,-1.01307,-1.029,0 +-0.281795,0.34604,-0.102204,2.49549,-0.141652,0.738155,0.722923,0.758164,-0.342412,-0.0944282,-0.104463,0.491061,1.85938,-3.86676,3.22874,0.797862,0.578153,1.85788,-5.76629,3.43478,0.518855,0.67442,2.43599,-7.54794,5.3369,0.65521,0.205517,-0.0636751,-0.161002,-0.177343,-0.186638,-0.212553,0 +-0.541363,0.873371,0.925013,3.33251,-0.3277,2.33861,2.33993,2.29343,-0.170936,0.344211,1.0404,2.13797,2.70754,-6.51233,5.22919,0.556355,1.71275,2.89825,-6.02003,4.25873,0.94728,1.22327,2.44077,-5.37449,3.66712,0.688892,0.235681,0.358623,0.479907,0.548919,0.579782,0.596793,2 +-0.420779,0.067333,-0.286153,-0.477828,-0.540653,1.24146,1.23464,1.17602,0.277228,-0.214332,-0.314407,1.33826,-0.47375,-0.561492,-0.337145,-0.120704,1.21652,-0.458858,-0.356874,-0.290981,-0.0962072,0.247164,-0.493749,0.0489132,-0.371666,-0.232193,0.492999,0.491,0.221069,0.101704,0.0786969,0.0604168,2 +-0.850024,1.62652,1.80241,1.85997,-0.917946,1.12406,1.09806,1.04282,2.16078,1.45696,2.03871,1.47109,1.50833,-1.58084,1.06986,1.33391,0.708091,1.9775,-1.56784,1.68865,1.62655,0.627096,1.64444,-1.59138,1.11644,1.39816,0.800161,1.34992,1.64575,1.732,1.73923,1.72656,2 +-0.124652,-0.049293,-0.228015,-0.194054,-0.152606,0.504293,0.49166,0.514048,0.0190695,-0.722783,-0.323912,1.28107,-0.0355906,-0.56598,-0.202919,0.467493,0.230554,-0.174804,-0.277588,-0.242417,0.0452352,0.221668,-0.125721,-0.157863,-0.215092,0.172445,0.125241,-0.0481736,-0.192494,-0.272461,-0.303044,-0.380481,2 +1.51429,0.918526,2.51427,4.19086,1.24221,2.04378,2.01909,1.953,2.85458,1.82768,2.72986,2.04123,2.94362,-5.14665,4.40435,-0.288692,1.32332,4.21002,-5.27481,5.6672,0.338884,1.11351,3.2635,-5.807,4.39081,-0.393324,-2.44934,0.569198,1.30912,1.60564,1.72365,1.7788,2 +-0.210984,-0.12733,-0.317086,-0.641098,-0.351617,0.890841,0.990816,1.20692,-0.340733,-0.151067,-0.576584,0.662347,-0.580801,0.230613,-0.538715,-0.350128,0.954276,-0.594254,0.0856429,-0.534527,-0.34684,0.888153,-0.521954,0.271871,-0.478507,-0.260417,0.359163,0.184719,0.0138224,-0.0863429,-0.150597,-0.196622,0 +-0.282645,0.0861927,-0.0897706,-0.264615,-0.0934487,0.466624,0.569158,0.606177,-0.151047,-0.258098,-0.360572,0.283714,-0.0314828,0.206487,-0.267383,0.245515,0.615742,-0.315677,-0.159982,-0.330909,0.0203789,0.331378,-0.286333,-0.0805058,-0.239688,0.0339812,0.122962,-0.135516,-0.166009,-0.187427,-0.187787,-0.203888,0 +-0.25605,0.114347,0.160782,-0.266434,-0.395263,1.04256,1.10591,1.21375,0.078287,0.396912,-0.171036,0.751768,-0.325292,-0.260577,-0.178272,-0.106442,1.05569,-0.165429,-1.01662,0.10852,-0.175134,1.01872,-0.0551799,-0.860008,0.168698,-0.0768879,0.449024,0.264805,0.167238,0.187457,0.186598,0.146739,0 +-0.842768,1.48451,1.39412,1.14477,-1.09285,1.2436,1.20349,1.11441,0.141942,1.12816,1.72882,1.52532,1.2009,-0.889572,0.636071,1.15607,0.852352,1.2182,-0.641198,0.665864,1.44199,0.789837,1.1155,-0.853292,0.559493,1.2098,1.03415,1.5683,1.75236,1.76487,1.76141,1.74524,2 +-0.296827,-0.0681526,-0.356304,-0.29206,-0.193214,1.47269,1.50163,1.68385,-0.371096,-0.249203,-0.50956,1.07377,-0.0308032,0.395363,-0.423938,0.0117335,1.43037,-0.421089,0.293329,-0.511979,-0.11011,1.31067,-0.497137,0.357174,-0.495148,-0.208426,0.195673,-0.0308631,-0.179981,-0.197342,-0.206946,-0.223407,0 +-0.659578,0.606257,0.166959,-0.283404,-0.742892,1.52134,1.52628,1.60773,0.224567,0.941803,-0.215352,1.55989,-0.0662638,0.0671831,-0.421269,0.531508,1.25267,-0.207156,0.087212,-0.417331,0.477558,1.37084,-0.188227,0.143002,-0.409515,0.271081,0.708781,0.865505,0.702854,0.598271,0.551917,0.534956,2 +-0.29179,0.0704413,0.00949498,-0.531338,-0.332118,0.768598,0.834092,1.00398,-0.243656,0.14497,0.0495527,0.664166,-0.403839,0.412784,-0.382121,-0.184089,0.764411,-0.436471,0.104453,-0.405108,-0.194303,0.899446,-0.314797,0.0356405,-0.317546,-0.102964,0.307801,0.204947,0.103283,0.0827643,0.0830545,0.0521614,0 +-0.512749,0.216141,-0.0952475,-0.58375,-0.662117,1.30827,1.26629,1.22468,-0.187007,0.151577,-0.534827,1.10012,-0.448514,0.167438,-0.503944,0.0559892,1.23025,-0.516277,0.321384,-0.514148,-0.111749,1.39706,-0.532898,0.41886,-0.524422,-0.323912,0.622818,0.677838,0.460427,0.342762,0.317236,0.275589,2 +-0.8205,1.36616,1.32845,0.58259,-1.02368,1.10271,1.08259,1.04739,1.63245,1.49242,0.69141,1.40032,0.757544,-0.693749,0.290201,1.15223,0.750718,0.69252,-0.573935,0.265324,1.18214,1.06252,0.734007,-0.919356,0.330619,0.886543,0.913179,1.49869,1.69659,1.6726,1.61281,1.54628,2 +-0.403918,0.377793,-0.233092,2.30284,-0.0962871,2.23586,2.26238,2.47613,-0.351217,-0.603669,-0.56469,2.47939,0.338824,-0.919416,-0.058578,-0.114227,1.52903,2.44149,-1.58206,1.39846,0.768528,1.2605,1.63665,-1.47409,0.684675,0.210274,-0.00614669,-0.0775575,-0.239359,-0.308531,-0.303334,-0.286983,2 +-0.489931,0.256519,-0.0409773,-0.378912,-0.5646,1.30718,1.27993,1.14137,-0.0821549,0.0886313,-0.185898,1.17773,-0.321124,0.45496,-0.411145,-0.158093,1.18601,-0.326211,0.50978,-0.40067,0.0185199,1.21506,-0.439959,0.415332,-0.471561,-0.245256,0.441568,0.597482,0.432952,0.348538,0.329529,0.313088,2 +-0.852622,1.70816,2.11055,2.86019,-0.902455,0.990267,0.957554,0.888912,2.63148,1.37253,2.45177,1.38962,1.93186,-2.4161,1.84534,1.53178,0.532678,3.03295,-2.24643,3.15108,1.76831,0.334716,2.35961,-2.05059,1.91133,1.70767,0.814833,1.3309,1.62668,1.78743,1.86322,1.86812,2 +-0.806597,1.38526,1.80204,0.397052,-0.908712,1.63339,1.55482,1.46947,3.60865,2.76586,0.941253,1.78569,0.391685,-0.393904,-0.0885815,0.60205,1.23818,0.784549,-0.2004,0.312888,0.939964,1.4822,0.474609,-0.704643,0.053301,0.0413771,0.543932,1.87354,2.21607,2.18106,2.05036,1.94636,2 +-0.0903404,-0.392375,-0.50995,-0.60133,-0.0716706,1.76434,1.74463,1.74912,-0.374914,-0.16458,-0.435041,1.3834,-0.325042,0.332927,-0.499606,-0.193534,1.62015,-0.679387,0.173745,-0.571856,-0.603009,1.73489,-0.69262,0.334437,-0.535826,-0.814643,0.12678,-0.240608,-0.445426,-0.486124,-0.485074,-0.500835,0 +-0.381791,0.226446,-0.166518,0.105682,-0.363221,0.716707,0.696018,0.736476,0.128689,-0.283614,-0.175644,0.561492,-0.0324423,-0.31058,0.168148,0.137235,0.757674,0.0492329,-1.06643,0.431293,0.143461,0.761822,0.0424465,-0.979612,0.425157,0.103553,0.357624,0.222398,0.0337015,0.0261953,0.00986462,-0.00233873,0 +-0.807467,1.31898,1.25253,0.591605,-0.937716,1.3186,1.31183,1.36832,1.55415,1.49788,1.05184,1.69441,0.624217,-0.883146,0.201979,0.993914,0.878588,0.776684,-0.570527,0.386348,1.20331,1.14992,0.721964,-0.855411,0.288192,0.780032,0.817591,1.38448,1.52485,1.50182,1.44509,1.39966,2 +-0.325991,0.0501425,-0.225696,-0.453911,-0.305522,1.61887,1.67923,1.77446,0.415922,-0.159662,-0.10977,1.20843,-0.272031,0.32813,-0.43838,-0.0379093,1.48272,-0.47491,0.150157,-0.491061,-0.110249,1.59003,-0.513888,0.216331,-0.472571,-0.40104,0.304113,0.140753,-0.00987458,-0.0321427,-0.0210384,-0.0548299,0 +-0.792035,1.40181,1.25682,2.86411,-0.693929,0.921464,0.908222,0.851153,1.61388,0.581191,1.63301,1.25089,1.90827,-2.67213,1.76615,1.50596,0.529459,2.85192,-2.31306,2.68214,1.55953,0.126591,2.09442,-1.55321,1.4342,1.6764,0.649953,0.932068,1.10842,1.23099,1.31273,1.36762,2 +-0.862787,1.67094,1.88426,1.49312,-1.14012,0.763471,0.731738,0.670962,0.445436,1.66291,2.08725,1.18883,1.56668,-1.01425,1.11611,1.42907,0.411474,1.58614,-0.341683,1.05746,1.60792,0.380681,1.63777,-0.869813,1.00494,1.53763,1.01887,1.6674,1.93387,1.97323,1.98852,1.98668,2 +-0.87421,1.86482,2.60209,2.31326,-1.04155,0.995963,0.96482,1.04746,1.2493,3.80264,2.44339,1.24931,2.22394,-2.59569,2.47327,1.49187,0.551158,2.39426,-1.90141,2.65964,1.62991,0.653461,2.32396,-3.00922,2.50513,1.27465,0.771537,1.75115,2.16519,2.27797,2.27417,2.23882,2 +-0.271381,1.14098,2.10443,3.22692,0.450453,1.85534,1.83156,1.76869,1.10582,2.20128,2.69051,2.05577,2.57538,-4.48901,3.53412,0.157054,1.16087,3.37953,-2.62872,3.91849,0.750898,1.05895,2.34896,-3.14605,2.47608,-0.0573187,-1.30854,0.531048,1.05054,1.27445,1.40519,1.47821,2 +-0.367738,-0.0442258,-0.428944,-0.489791,-0.267513,0.632643,0.615012,0.611544,-0.172455,-0.527031,-0.715977,0.511529,-0.225706,0.339474,-0.45515,0.20091,0.770767,-0.576224,0.190425,-0.549039,-0.207206,0.478757,-0.544052,0.362641,-0.505073,-0.178522,0.279107,0.0377492,-0.171856,-0.231893,-0.25442,-0.299845,0 +-0.514598,1.14519,2.09494,3.93198,0.0253561,2.25612,2.2296,2.17633,1.76389,1.31805,2.14967,2.17752,2.64783,-4.91752,3.61487,0.0602269,1.5498,3.95607,-5.99079,5.46443,0.702015,1.21516,2.72258,-4.48348,3.08194,-0.161362,-0.699556,0.592765,1.07718,1.31639,1.4129,1.4672,2 +-0.730609,0.888752,0.319035,0.134846,-0.763401,0.807637,0.804988,0.78391,-0.267673,0.466754,0.276448,1.21215,0.232422,-0.286413,-0.188946,0.901555,0.54581,0.135426,-0.195963,-0.231683,0.863446,0.719815,0.186228,-0.115896,-0.195253,0.834332,0.762412,0.952537,0.903244,0.81989,0.793505,0.770137,2 +-0.758924,1.0294,0.608716,0.101224,-1.08726,-0.0599671,-0.0737496,-0.100535,2.02203,1.20172,0.121733,0.321783,0.00805546,-0.478318,-0.169957,0.720115,-0.121163,0.216851,-0.508871,-0.00496748,0.897478,-0.12741,0.308111,-0.388447,0.0485036,0.966449,1.01882,1.45437,1.43649,1.30979,1.23001,1.17612,2 +0.541123,-1.02664,-0.648284,-0.883995,0.0317726,0.45641,0.634812,1.01295,-0.194163,-0.41901,-0.448704,0.0679627,-0.979173,0.0404378,-0.640579,-1.58086,0.636211,-0.848794,0.140273,-0.599141,-1.3373,0.558623,-0.790546,0.335446,-0.551827,-1.14609,0.0606167,-0.478777,-0.675659,-0.736076,-0.800471,-0.840559,0 +-0.0111439,-0.512349,-0.489461,-0.771487,-0.195133,-0.172605,-0.23755,-0.275749,-0.623388,-0.481996,-0.665905,-0.27308,-0.725762,0.203418,-0.559043,-0.679927,0.116796,-0.746131,0.189986,-0.572606,-0.822329,-0.305832,-0.706742,0.402079,-0.52798,-0.789517,0.267433,-0.111479,-0.34586,-0.412714,-0.462126,-0.509191,0 +-0.466954,0.180241,-0.282815,0.285643,0.0994255,2.91297,2.73056,2.10824,-0.318815,-0.551487,-0.18182,2.40705,0.329069,-0.352717,-0.358553,-0.47392,2.43774,0.0957273,-0.0699817,-0.378632,0.160552,1.92606,-0.375864,0.18161,-0.490071,-0.855521,-0.428975,-0.210644,-0.355445,-0.358963,-0.3471,-0.366239,2 +-0.211614,-0.298786,-0.458298,-0.744661,-0.422608,1.42484,1.54817,1.54319,-0.494409,-0.119434,0.284714,1.12159,-0.791536,0.0242667,-0.627126,-0.65617,1.35464,-0.713079,0.191235,-0.582361,-0.592005,1.48519,-0.696028,0.394564,-0.551507,-0.691501,0.483854,0.229494,-0.0479637,-0.114348,-0.149358,-0.160712,0 +-0.417591,0.14574,-0.166418,-0.543432,-0.484734,1.50454,1.61019,1.84255,-0.330319,-0.286703,-0.129469,1.41337,-0.520365,0.246585,-0.542043,-0.29253,1.34485,-0.432073,0.138434,-0.4931,0.0561792,1.50055,-0.461017,0.280036,-0.497437,-0.208116,0.380631,0.3634,0.243197,0.151597,0.103453,0.0684124,0 +0.083884,-0.696388,-0.639179,-0.834122,-0.14585,0.933997,0.9285,0.899107,-0.597932,-0.612364,-0.671961,0.668613,-0.87413,-0.00144923,-0.655341,-0.861777,0.98479,-0.818761,0.149438,-0.604459,-1.0555,1.1859,-0.774205,0.407287,-0.560133,-0.997133,0.170127,-0.198951,-0.445566,-0.471232,-0.462316,-0.468323,0 +0.457999,-0.962482,-0.715327,-0.865745,0.125901,0.156094,0.189136,0.202869,-0.552567,-0.662616,-0.745011,-0.115227,-0.967999,-0.00675632,-0.664875,-1.34141,0.388927,-0.834012,0.0990355,-0.603029,-1.18118,0.43805,-0.799741,0.356434,-0.558483,-1.14362,-0.0273651,-0.554266,-0.74691,-0.798532,-0.828745,-0.858479,0 +1.02057,-1.42653,-0.813423,-0.9295,0.219849,1.29484,1.29045,1.28903,-0.388587,-0.622179,-0.727491,0.918796,-1.04802,-0.0314428,-0.679967,-1.776,1.32603,-0.914348,0.123322,-0.614243,-1.8545,1.27953,-0.876229,0.378472,-0.571856,-1.62418,-0.0791566,-0.74731,-0.91223,-0.946011,-0.963651,-0.998222,0 +0.151627,-0.464845,-0.481476,-0.521144,0.119714,1.8491,1.89413,2.01274,-0.38181,-0.184119,-0.52891,1.58629,-0.353286,0.196902,-0.488842,-0.296248,1.62134,-0.524013,-0.150857,-0.439959,-0.567199,1.66405,-0.459138,-0.0814853,-0.361052,-0.542702,-0.0626857,-0.439629,-0.561782,-0.605078,-0.627856,-0.631434,0 +0.380591,-0.776214,-0.693579,-0.704753,0.244096,1.75726,1.81273,1.9478,-0.700256,-0.60169,-0.741123,1.56515,-0.519915,0.16412,-0.54765,-0.441798,1.53281,-0.706532,0.058108,-0.576004,-0.821599,1.64696,-0.63748,0.206047,-0.513748,-0.74707,-0.161831,-0.646046,-0.779262,-0.829125,-0.858549,-0.884794,0 +0.764091,-1.11381,-0.744651,-0.779153,0.333417,2.09206,2.10136,2.08357,-0.208646,-0.695598,-0.776394,1.64501,-0.664286,0.216701,-0.582091,-0.915308,1.89337,-0.826467,0.143421,-0.600641,-1.39536,1.94354,-0.828296,0.356175,-0.563211,-1.44243,-0.258938,-0.771227,-0.91107,-0.941054,-0.968649,-0.995814,0 +1.23701,-1.33066,-0.791296,-0.778263,0.43833,2.16634,2.15642,2.19067,-0.458488,-0.699536,-0.738365,1.64516,-0.697817,0.21833,-0.588577,-1.23509,1.96835,-0.833503,0.152046,-0.602759,-1.56071,2.03018,-0.85656,0.360022,-0.567279,-1.68048,-0.349278,-0.920595,-1.01049,-1.04162,-1.07127,-1.09581,0 +0.305682,-0.653292,-0.6016,-0.596143,0.199151,2.2407,2.28307,2.34808,-0.0514718,-0.693949,-0.758974,1.7975,-0.43775,0.251752,-0.559783,-0.61906,1.94605,-0.645846,0.0916896,-0.559043,-0.686064,2.00478,-0.698767,0.2365,-0.525212,-1.12531,-0.1462,-0.556755,-0.649584,-0.703514,-0.737565,-0.770767,0 +0.946891,-1.23732,-0.722124,-0.89326,0.242407,0.756795,0.748139,0.740794,-0.650643,-0.494149,-0.755375,0.604918,-0.909131,0.096507,-0.632733,-1.34892,0.85676,-0.871952,0.130648,-0.60202,-1.65208,0.816782,-0.824928,0.372616,-0.557454,-1.37653,-0.129219,-0.696218,-0.863136,-0.89403,-0.922194,-0.950319,0 +0.851763,-1.16863,-0.787258,-0.71033,0.432213,1.9687,1.97352,1.97465,-0.282635,-0.722034,-0.782601,1.57667,-0.513978,0.29188,-0.548459,-0.806408,1.78174,-0.806687,0.158713,-0.601,-1.38337,1.87638,-0.82015,0.371346,-0.5644,-1.3927,-0.333867,-0.901315,-1.00408,-1.02871,-1.05521,-1.08323,0 +0.279707,-0.629275,-0.549898,-0.547829,0.242787,1.68886,1.7249,1.84506,-0.530799,-0.394304,-0.688862,1.45876,-0.374305,0.292789,-0.532158,-0.459028,1.50754,-0.594094,-0.0538506,-0.506192,-0.733997,1.51837,-0.553566,0.0723703,-0.433772,-0.633942,-0.195763,-0.602679,-0.685314,-0.706523,-0.736516,-0.753377,0 +0.798482,-0.943802,-0.566849,-0.824278,0.156864,1.21409,1.278,1.39191,-0.189756,-0.659688,-0.825667,0.952837,-0.867014,0.170726,-0.597502,-1.46647,1.20856,-0.770058,0.10932,-0.576724,-1.23838,1.16847,-0.736616,0.30904,-0.541833,-1.07368,-0.115307,-0.487433,-0.591276,-0.662047,-0.706153,-0.750958,0 +-0.440968,0.143881,-0.244236,-0.561902,-0.527231,0.214382,0.208076,0.183569,0.624667,0.118885,-0.422128,0.463656,-0.559353,0.0561192,-0.553217,-0.0738096,0.238979,-0.495508,0.0516815,-0.508801,-0.000479682,0.0775274,-0.453092,0.263356,-0.465714,0.0126729,0.554386,0.477578,0.287132,0.204637,0.167378,0.139324,2 +0.580492,-1.02855,-0.652092,-0.89237,0.0458349,0.840359,0.832053,0.836681,-0.238429,-0.61909,-0.757364,0.742822,-0.894899,0.0800461,-0.636771,-1.19307,0.924053,-0.85666,0.125461,-0.600521,-1.44262,0.844257,-0.795154,0.374944,-0.553046,-1.16419,0.0244965,-0.433922,-0.621269,-0.670003,-0.71028,-0.744841,2 +0.585829,-0.979603,-0.689302,-0.743122,0.259158,1.84733,1.82792,1.82556,-0.593544,-0.380721,-0.732498,1.44623,-0.572286,0.260167,-0.555695,-0.763411,1.71979,-0.799401,0.133577,-0.593355,-1.26029,1.68611,-0.78355,0.339734,-0.548709,-1.16466,-0.183909,-0.707892,-0.822189,-0.861068,-0.891221,-0.931009,0 +-0.178672,-0.196502,-0.472471,-0.339194,-0.135286,1.76607,1.76534,1.72211,-0.0514118,-0.373675,-0.440208,1.67002,-0.217891,-0.144641,-0.248624,-0.0485035,1.50111,-0.416971,-0.470792,-0.154475,-0.234062,1.60987,-0.446475,-0.305762,-0.115656,-0.482365,0.186378,-0.115047,-0.304793,-0.360263,-0.379022,-0.394504,2 +0.935027,-1.25223,-0.818681,-0.803419,0.4373,1.38151,1.37437,1.37616,-0.592955,-0.740114,-0.817501,1.12144,-0.696448,0.213243,-0.590046,-0.902945,1.32137,-0.860518,0.14506,-0.608346,-1.56271,1.45583,-0.844857,0.38232,-0.568018,-1.4204,-0.333087,-0.94839,-1.06937,-1.0947,-1.12948,-1.15987,0 +0.793924,-1.09861,-0.69283,-0.726621,0.3103,1.48118,1.48618,1.41792,-0.551158,-0.654821,-0.60166,1.25409,-0.715338,0.302044,-0.535866,-1.16615,1.37431,-0.739374,0.331388,-0.542203,-1.39033,1.4792,-0.803489,0.407836,-0.557184,-1.44852,-0.232093,-0.720455,-0.859059,-0.878948,-0.91239,-0.943532,0 +1.22663,-1.36587,-0.730219,-0.896208,0.442587,0.593564,0.573735,0.60177,-0.149588,-0.522523,-0.646385,0.394134,-0.92954,0.1087,-0.621609,-1.50723,0.777803,-0.875999,0.121353,-0.598742,-1.78339,0.689731,-0.837501,0.362721,-0.554166,-1.55215,-0.32899,-0.89236,-0.979713,-1.00554,-1.05712,-1.10401,0 +0.207336,-0.515147,-0.421868,-0.349998,0.108481,1.12984,1.11,1.07693,-0.259847,-0.669483,-0.180691,0.821529,-0.314637,0.21802,-0.103903,-0.649064,1.17283,-0.411244,-0.280956,-0.0785771,-0.790616,1.07126,-0.403639,-0.298386,-0.030553,-0.712909,-0.0994155,-0.456809,-0.557854,-0.581601,-0.610295,-0.651293,0 +0.313828,-0.787378,-0.685764,-0.65698,0.189276,1.10207,1.09514,1.07799,-0.574375,-0.485404,-0.627835,0.851423,-0.450183,0.336096,-0.496618,-0.550928,1.16643,-0.745731,0.190315,-0.58321,-0.974995,0.925722,-0.748869,0.406437,-0.548979,-0.952008,-0.103024,-0.636851,-0.78409,-0.797093,-0.833993,-0.85587,0 +0.707592,-0.96527,-0.651123,-0.807597,0.18287,0.408776,0.470002,0.649813,-0.343302,-0.685674,-0.754456,0.244986,-0.808177,0.214862,-0.578133,-1.21459,0.584719,-0.798062,0.192894,-0.580812,-1.26461,0.228525,-0.752048,0.417301,-0.538564,-1.05485,-0.140613,-0.533377,-0.696878,-0.74792,-0.800981,-0.866305,0 +0.579112,-0.841548,-0.611734,-0.649294,0.229964,1.55983,1.53227,1.4697,-0.687503,-0.713598,-0.680537,1.35232,-0.54736,0.441108,-0.482745,-1.04992,1.42779,-0.686044,0.330379,-0.544401,-1.0679,1.48234,-0.743842,0.423338,-0.549378,-1.20354,-0.196572,-0.589936,-0.718426,-0.744462,-0.791796,-0.85579,0 +1.26397,-1.36266,-0.781711,-0.853322,0.378962,1.67998,1.66744,1.6841,-0.558843,-0.372596,-0.628595,1.20011,-0.851433,0.137834,-0.618301,-1.36609,1.63604,-0.872711,0.143321,-0.606288,-1.72791,1.61431,-0.852392,0.372456,-0.566079,-1.53483,-0.303574,-0.884774,-0.992695,-1.01317,-1.04464,-1.07484,0 +0.555125,-0.850164,-0.563221,-0.688212,0.256239,1.13976,1.10974,1.09326,-0.43704,-0.442007,-0.56515,0.855241,-0.587298,0.407197,-0.479977,-0.898417,1.17562,-0.713019,0.283145,-0.539594,-1.1247,1.13607,-0.715318,0.40019,-0.52901,-0.992196,-0.221299,-0.666025,-0.761812,-0.807147,-0.855051,-0.900846,0 +-0.0794064,-0.21808,-0.376883,-0.178442,-0.0404977,1.36522,1.48267,1.59036,-0.427625,0.016331,-0.204038,0.924393,-0.0941884,-0.217491,-0.180161,-0.0660838,1.32019,-0.298596,-0.519945,-0.114018,-0.245145,1.24119,-0.343392,-0.323203,-0.132307,-0.242797,0.123042,-0.23705,-0.388367,-0.402699,-0.384449,-0.393044,0 +-0.72819,1.49635,2.28488,2.16331,-0.295538,1.81324,1.76833,1.68956,1.11018,2.46004,2.83871,2.10517,1.50296,-2.35213,1.37971,0.41957,1.16914,2.48276,-2.33632,2.41437,1.15452,1.18314,1.81285,-2.59283,1.49012,0.392654,-0.266844,1.16636,1.67946,1.87431,1.9093,1.88277,2 +0.231453,-0.697587,-0.634332,-0.514848,0.148379,0.844227,0.923283,0.975815,-0.140973,-0.607367,-0.596603,0.525532,-0.349668,0.295818,-0.521854,-0.661317,0.978473,-0.6372,0.195812,-0.572386,-0.767299,0.758204,-0.661037,0.366669,-0.531568,-0.595693,-0.10863,-0.533377,-0.688412,-0.714109,-0.742553,-0.756005,0 +0.517586,-0.952497,-0.706432,-0.683945,0.292969,2.15042,2.1437,2.13704,-0.553196,-0.563881,-0.686223,1.70454,-0.482515,0.264305,-0.558384,-0.669733,1.90867,-0.772506,0.153805,-0.591795,-1.16128,1.9718,-0.795674,0.334477,-0.550288,-1.35702,-0.210265,-0.752667,-0.879208,-0.896458,-0.932608,-0.963311,0 +0.0672031,-0.520994,-0.615712,-0.445106,0.0517017,0.959783,1.04588,1.32898,-0.209535,-0.665815,-0.680157,0.628675,-0.239299,0.410215,-0.461667,-0.294538,1.07938,-0.587358,0.290171,-0.552687,-0.621589,0.72938,-0.6569,0.417211,-0.533237,-0.579482,0.0732997,-0.421949,-0.620679,-0.660738,-0.698097,-0.702874,0 +0.698727,-0.922544,-0.652122,-0.684305,0.139304,1.33886,1.35695,1.31858,-0.244576,-0.629974,-0.734887,0.942653,-0.659858,0.397962,-0.498667,-1.21179,1.36099,-0.718896,0.312498,-0.548469,-1.16246,1.26596,-0.745411,0.41891,-0.542892,-1.1388,-0.0686924,-0.521944,-0.665625,-0.724073,-0.755216,-0.782511,0 +0.396263,-0.762872,-0.604898,-0.62055,0.078527,0.968019,1.02856,1.03673,-0.526771,-0.323912,-0.390716,0.587937,-0.503054,0.344581,-0.473221,-0.780582,1.09676,-0.694779,0.207456,-0.556525,-0.983171,0.995304,-0.701615,0.361871,-0.521074,-0.826976,-0.0270352,-0.47375,-0.635591,-0.682146,-0.706682,-0.732248,0 +0.500895,-0.920365,-0.751557,-0.698227,0.34693,1.69612,1.75207,1.82194,-0.316806,-0.85575,-0.841488,1.39019,-0.588847,0.204818,-0.593315,-0.794384,1.53577,-0.760613,0.121903,-0.592815,-0.937236,1.6092,-0.758204,0.344171,-0.554166,-0.925042,-0.283575,-0.781421,-0.888343,-0.938366,-0.968239,-0.999621,0 +-0.689892,0.805108,0.100265,0.25591,-0.646845,0.591146,0.60118,0.610475,-0.363161,-0.245905,0.0933587,1.11227,0.317106,-0.725912,0.330079,0.925782,0.341842,0.177413,-0.31055,0.00460726,0.883665,0.369967,0.301564,-0.505003,0.222038,0.935177,0.602789,0.720614,0.608816,0.538914,0.539994,0.557234,2 +0.201769,-0.689852,-0.788347,-0.469273,0.302174,1.88921,1.95909,2.10643,-0.552587,-0.769098,-0.753307,1.42366,-0.436571,0.332328,-0.522214,-0.365819,1.73314,-0.589856,0.340613,-0.548099,-0.661027,1.7758,-0.743312,0.40091,-0.556764,-1.15627,-0.142862,-0.792435,-0.951318,-0.973226,-0.974575,-0.971677,0 +-0.561172,0.370257,-0.03619,-0.453541,-0.708491,-0.193364,-0.191235,-0.180881,-0.101244,0.430444,-0.194213,-0.268583,-0.153826,0.224897,-0.414103,0.531048,-0.0857329,-0.330469,0.169057,-0.414323,0.307991,0.307381,-0.106242,0.20015,-0.302354,0.54665,0.723263,0.724512,0.512449,0.390306,0.385009,0.388057,2 +-0.58243,0.544671,0.261747,-0.287932,-0.719215,0.569697,0.552527,0.750768,0.81916,-0.0757185,-0.0743393,0.300555,-0.372186,0.334846,-0.464026,0.0926391,0.603239,-0.0132828,-0.421819,-0.166239,0.438979,1.15442,0.0321622,-0.348419,-0.16433,0.319045,0.738895,0.797722,0.651403,0.579962,0.523663,0.442107,0 +-0.464015,0.117066,-0.202629,-0.591306,-0.471311,0.0808356,0.0204987,0.021878,-0.357034,-0.438299,-0.56499,-0.494809,-0.577953,0.0603169,-0.560733,-0.0818252,0.412444,-0.529959,0.147809,-0.507722,-0.0822148,0.514398,-0.468283,0.336405,-0.444156,-0.0744693,0.458338,0.423138,0.2364,0.1637,0.110569,-0.00021989,0 +0.0395883,-0.58425,-0.606447,-0.734647,-0.0185398,-0.21941,-0.226616,-0.279057,-0.464585,-0.614503,-0.575334,-0.796263,-0.807827,0.12842,-0.596443,-0.833663,0.241148,-0.724253,0.211634,-0.572716,-0.725272,-0.167398,-0.714298,0.432982,-0.540104,-0.776344,0.087292,-0.343182,-0.520834,-0.553177,-0.561872,-0.579122,0 +-0.402609,-0.114647,-0.515877,-0.593974,-0.293219,1.07379,1.05958,1.02167,-0.491091,-0.439749,-0.516866,0.310829,-0.507692,0.074619,-0.585059,0.00153907,1.28517,-0.630064,0.12784,-0.576804,-0.249423,1.35501,-0.618771,0.368368,-0.538334,-0.369347,0.34633,0.0772975,-0.162821,-0.220819,-0.217691,-0.25579,0 +-0.513978,0.361851,-0.0546498,-0.205627,-0.560722,0.428275,0.360582,0.317346,-0.00670635,-0.43724,-0.476469,-0.102174,-0.251392,0.272061,-0.314887,0.216821,0.659008,-0.185818,0.384649,-0.296577,0.292,0.901815,-0.265285,0.311189,-0.352017,0.128479,0.519905,0.504403,0.319895,0.25517,0.223238,0.180121,0 +-0.173345,-0.252941,-0.262266,-0.719345,-0.333837,0.566629,0.522363,0.4917,0.0872821,-0.486223,-0.506902,-0.0297837,-0.630384,0.281556,-0.494179,-0.507871,0.834762,-0.667924,0.147599,-0.539894,-0.535396,1.16905,-0.600811,0.294468,-0.468543,-0.531628,0.406247,0.135326,-0.134456,-0.234891,-0.267063,-0.290041,0 +-0.543062,0.408506,0.0500127,-0.302144,-0.576634,1.15422,1.16937,1.19923,0.252531,-0.467214,-0.381661,0.542992,-0.587578,0.0756485,-0.516777,-0.199091,1.20996,-0.0377494,-0.56475,-0.131958,0.434032,1.51194,-0.0199592,-0.521804,-0.104333,0.0831942,0.576164,0.575484,0.412394,0.354715,0.336166,0.299865,0 +-0.324662,-0.196312,-0.465514,-0.668483,-0.25432,1.42008,1.39785,1.34963,-0.480816,-0.472811,-0.566859,0.618061,-0.61904,0.0807857,-0.599351,-0.208815,1.52653,-0.654171,0.112118,-0.569198,-0.342252,1.81572,-0.668393,0.315237,-0.534477,-0.742083,0.318445,0.0332317,-0.196582,-0.246305,-0.243466,-0.266024,0 +-0.480976,0.241627,-0.125651,-0.211104,-0.320524,1.35562,1.41551,1.43547,-0.357034,-0.215622,-0.36422,0.759603,-0.376723,-0.0671632,-0.443837,0.139533,1.34654,-0.0782972,-0.954097,0.0232071,0.259148,1.70785,-0.0556197,-0.888702,0.14555,-0.184759,0.331978,0.172345,-0.0188097,-0.0659341,-0.0623358,-0.0828146,0 +0.193844,-0.789117,-0.738864,-0.753397,0.139354,0.935267,0.912699,0.901166,-0.410745,-0.173915,-0.342342,0.203338,-0.69182,0.116256,-0.618001,-0.694589,1.14481,-0.800201,0.136575,-0.600491,-0.986399,1.43893,-0.787738,0.372596,-0.561212,-1.04163,-0.0194894,-0.545761,-0.767409,-0.795764,-0.799891,-0.807317,0 +-0.143601,-0.166729,-0.18134,-0.516766,-0.12709,1.03233,1.08499,1.13312,0.560013,-0.2377,-0.402209,0.34698,-0.649844,0.0408975,-0.580722,-0.389926,1.17795,-0.377883,-0.595723,-0.262286,-0.335796,1.42749,-0.377143,-0.286623,-0.253561,-0.428955,0.176473,-0.124252,-0.231123,-0.232143,-0.225296,-0.242817,0 +-0.451642,0.0334416,-0.302564,-0.594584,-0.406907,1.43249,1.39015,1.37971,-0.269352,-0.296877,-0.299196,0.5657,-0.514368,0.0991656,-0.568798,-0.0152317,1.5651,-0.576724,0.103623,-0.54655,-0.132927,1.75508,-0.591326,0.287562,-0.511609,-0.54711,0.485644,0.300565,0.0669533,-0.00752617,-0.00622655,-0.0313128,0 +-0.0453651,-0.568158,-0.614293,-0.805938,-0.158013,1.39927,1.3801,1.34483,-0.326781,-0.594214,-0.416162,0.484744,-0.901985,-0.0302134,-0.659089,-0.944622,1.55705,-0.768828,0.148898,-0.595823,-0.767389,1.91225,-0.772746,0.353386,-0.551297,-1.13828,0.250183,-0.124862,-0.381381,-0.420749,-0.421309,-0.413973,0 +-0.129259,-0.257429,-0.396552,-0.508801,-0.0397382,0.375294,0.429144,0.460367,-0.479687,-0.414722,-0.531708,-0.143921,-0.727391,-0.0275049,-0.60176,-0.522813,0.647525,-0.396912,-0.562072,-0.295808,-0.335246,0.652452,-0.414113,-0.18299,-0.315387,-0.374595,0.141862,-0.217011,-0.358513,-0.390606,-0.412284,-0.436001,0 +-0.29236,0.069192,0.178842,0.101594,-0.160592,1.90124,1.85353,1.76217,0.477818,1.00832,0.586878,0.936676,0.173105,-0.269782,-0.27345,0.297557,1.93635,0.0140522,-0.426386,-0.216022,0.0260558,1.60939,-0.161871,-0.373315,-0.0619158,-0.0729001,0.279766,-0.118315,-0.238279,-0.279157,-0.321034,-0.379592,0 +-0.697118,0.926212,0.698047,0.278707,-0.736806,0.574025,0.605498,0.667004,0.358963,0.047214,0.131808,0.281665,-0.197782,0.195603,-0.301125,0.378752,0.639899,0.643986,-1.12089,0.443876,0.981442,0.704363,0.627086,-1.05093,0.398941,0.879617,0.684714,0.880157,0.830344,0.815802,0.814064,0.827656,0 +-0.43813,0.235801,-0.0317124,-0.298596,-0.330419,0.909301,0.956545,0.951608,0.221928,-0.413983,-0.395623,0.2742,-0.530039,0.184979,-0.512349,-0.122933,1.0562,-0.112868,-0.712459,-0.0731001,0.231613,1.25297,-0.135536,-0.506252,-0.0875018,0.0555394,0.384529,0.20066,0.0776474,0.0445952,0.0302834,0.00898506,0 +-0.587668,0.597442,0.135716,0.512389,-0.434721,-0.410365,-0.399181,-0.305722,0.0341812,-0.191615,-0.170716,-0.789087,0.397212,-0.426366,0.0842037,0.898807,-0.350528,0.447634,-0.916517,0.088911,0.708921,0.189316,0.695998,-0.959673,0.334397,0.92983,0.479607,0.321164,0.14569,0.114877,0.123043,0.0975265,0 +-0.380481,-0.0774276,-0.475739,-0.605508,-0.397632,-0.313698,-0.341363,-0.352976,-0.560532,-0.495138,-0.591835,-0.726921,-0.700186,0.00573683,-0.608686,-0.339534,-0.00898499,-0.571177,0.176033,-0.54752,-0.118835,0.0987758,-0.562552,0.38286,-0.516576,-0.195523,0.440228,0.21874,-0.0386888,-0.141922,-0.174124,-0.192245,0 +0.286263,-0.756845,-0.543811,-0.826636,-0.0079356,0.716857,0.707442,0.695818,-0.441788,-0.485803,-0.665435,-0.0226076,-0.853492,0.116476,-0.603769,-1.04946,0.994624,-0.787008,0.103373,-0.569528,-1.08177,1.41894,-0.753077,0.324862,-0.529519,-1.07284,0.0948279,-0.335616,-0.5475,-0.58337,-0.611974,-0.652622,0 +-0.196262,-0.269372,-0.370506,-0.716517,-0.329309,0.391265,0.38336,0.355865,0.0665634,-0.45585,-0.342372,-0.196282,-0.679997,0.21868,-0.537725,-0.508901,0.668423,-0.668503,0.190355,-0.545781,-0.518356,1.08748,-0.636351,0.374465,-0.517246,-0.540653,0.369927,0.10996,-0.111949,-0.178652,-0.205887,-0.242797,0 +-0.0557994,-0.460148,-0.576923,-0.727881,-0.0679127,-0.074669,-0.0495829,-0.0548699,-0.425736,-0.49274,-0.679387,-0.684175,-0.946791,-0.0433662,-0.667714,-1.13678,0.353196,-0.644047,-0.0502326,-0.541873,-0.471971,0.10964,-0.645486,0.243506,-0.51002,-0.580482,0.170207,-0.225256,-0.41866,-0.453871,-0.449893,-0.440628,0 +-0.242007,-0.157694,-0.195043,-0.688532,-0.349868,1.0151,0.960193,0.953167,0.208296,-0.234311,-0.398052,0.198121,-0.644397,0.25504,-0.500765,-0.501345,1.26246,-0.611205,0.194983,-0.51004,-0.428535,1.59997,-0.62043,0.277548,-0.49137,-0.65687,0.422068,0.14577,-0.0488432,-0.100925,-0.115716,-0.140603,0 +-0.185588,-0.219839,-0.358483,-0.651193,-0.239499,-0.012733,-0.0774076,-0.0840938,-0.47295,-0.154125,-0.498796,-0.637021,-0.754226,0.0745991,-0.600681,-0.645806,0.422578,-0.58298,0.0835241,-0.5111,-0.335746,0.184339,-0.563031,0.323832,-0.476608,-0.375014,0.278347,0.00612656,-0.18138,-0.265075,-0.268373,-0.308461,0 +-0.439889,0.092949,-0.160222,-0.612514,-0.520574,0.968778,0.950219,0.945521,-0.190326,0.154145,-0.0413973,0.0480236,-0.621619,0.0865425,-0.548499,-0.232812,1.23627,-0.544561,0.120694,-0.503384,-0.135735,1.42995,-0.532738,0.299806,-0.475269,-0.316297,0.519775,0.477998,0.244786,0.154565,0.14635,0.123422,0 +-0.453251,0.268053,0.0735198,-0.391845,-0.49222,1.03193,0.954636,0.923083,0.0224576,0.113738,-0.061996,0.124432,-0.391425,-0.00950481,-0.343662,0.0316026,1.27734,-0.31025,-0.0806159,-0.304863,0.0954377,1.41507,-0.342672,-0.0298136,-0.304103,-0.179512,0.532438,0.449813,0.259198,0.210854,0.208536,0.18177,0 +-0.0133926,-0.511549,-0.552926,-0.749819,-0.105232,0.511629,0.498976,0.475499,-0.523403,-0.514108,-0.56447,-0.271401,-0.861537,0.0485433,-0.619081,-1.0028,0.904394,-0.714008,0.179581,-0.561422,-0.660438,0.861977,-0.682766,0.36433,-0.471151,-0.69355,0.140723,-0.194633,-0.405737,-0.459378,-0.456699,-0.442747,0 +-0.177633,-0.407427,-0.636231,-0.625997,0.00359807,1.5555,1.54321,1.53684,-0.550758,-0.476529,-0.622688,0.666364,-0.612374,0.0495728,-0.625267,-0.409395,1.67261,-0.666414,0.10926,-0.573775,-0.422258,1.80786,-0.71112,0.326111,-0.54607,-0.80242,0.023667,-0.338694,-0.569927,-0.609056,-0.605718,-0.60079,0 +0.0393984,-0.634512,-0.6191,-0.816582,-0.0658238,0.705443,0.662247,0.60172,-0.500905,-0.609186,-0.738805,-0.00926496,-0.888613,0.0293239,-0.653841,-1.00543,1.00598,-0.780452,0.120404,-0.599411,-0.805698,1.07884,-0.760803,0.370457,-0.558044,-0.883066,0.180461,-0.271531,-0.485264,-0.551858,-0.558084,-0.561172,0 +0.343442,-0.681136,-0.493279,-0.761212,-0.0313827,0.21806,0.293069,0.409225,-0.49203,-0.407986,-0.643627,-0.622149,-0.83856,-0.0282045,-0.588237,-1.12401,0.534667,-0.720165,0.184299,-0.549329,-0.960953,1.01134,-0.686903,0.361382,-0.516946,-0.906253,0.0979362,-0.284474,-0.442127,-0.443217,-0.43726,-0.453771,0 +-0.231863,-0.0843837,-0.198471,-0.431263,-0.269652,1.1016,1.13009,1.20944,0.0150117,-0.567728,-0.556954,0.503584,-0.769428,-0.104523,-0.537205,-0.72865,1.22356,-0.214273,-0.908002,-0.0729102,-0.121333,1.44299,-0.155515,-0.791965,0.132657,-0.18188,0.315057,0.0816651,-0.100635,-0.129529,-0.130029,-0.137215,0 +0.0111539,-0.417271,-0.478827,-0.706802,-0.0770277,0.939704,0.974255,1.00805,-0.348159,-0.184629,-0.461327,0.18206,-0.746471,0.0843837,-0.613823,-0.695958,1.15334,-0.658699,0.000369677,-0.543492,-0.591735,1.42072,-0.644886,0.238389,-0.508511,-0.657869,0.128419,-0.219899,-0.381471,-0.412194,-0.407606,-0.408396,0 +-0.331498,-0.171136,-0.485563,-0.595913,-0.241727,1.02291,1.02748,0.975385,-0.422498,-0.451832,-0.535086,0.136535,-0.556815,0.0352107,-0.586119,-0.21867,1.30497,-0.621119,0.089051,-0.550778,-0.29168,1.27267,-0.605818,0.247554,-0.439259,-0.405128,0.271731,0.0056968,-0.215602,-0.271731,-0.279717,-0.298566,0 +0.0423568,-0.591106,-0.659448,-0.626216,0.0425467,0.344101,0.363241,0.36401,-0.543182,-0.645995,-0.776794,-0.314438,-0.526711,0.158033,-0.577383,-0.428455,0.65609,-0.704284,0.168278,-0.58407,-0.709641,0.861157,-0.665655,0.227805,-0.41847,-0.671931,0.00928484,-0.420579,-0.614073,-0.660968,-0.681536,-0.714138,0 +-0.147529,-0.390386,-0.629165,-0.590556,-0.0614063,0.605738,0.627646,0.616742,-0.417131,-0.615172,-0.754376,-0.0819051,-0.502614,-0.0213383,-0.563291,-0.188437,0.870192,-0.667894,0.10941,-0.575884,-0.496048,1.05986,-0.667464,0.332548,-0.533867,-0.554976,0.105132,-0.244746,-0.465065,-0.51038,-0.520015,-0.548429,0 +-0.113068,-0.503024,-0.678557,-0.635761,-0.040068,0.507901,0.524082,0.530809,-0.49147,-0.602729,-0.757944,-0.0850534,-0.543362,0.0547399,-0.605628,-0.339994,0.774965,-0.708941,0.146599,-0.593055,-0.598871,0.921464,-0.716397,0.370927,-0.550528,-0.699007,0.148528,-0.312109,-0.553107,-0.625737,-0.661997,-0.676909,0 +-0.32731,-0.118145,-0.482285,-0.50966,-0.227275,0.994055,1.01265,1.05528,-0.138164,-0.421089,-0.645766,0.170247,-0.402779,0.175524,-0.548489,-0.0339615,1.19363,-0.566749,0.184539,-0.551857,-0.178902,1.50094,-0.604958,0.363161,-0.530219,-0.450463,0.306192,-0.020249,-0.243167,-0.301815,-0.319355,-0.326391,0 +-0.356554,-0.0618561,-0.380541,-0.636031,-0.369957,0.770587,0.869063,0.921454,-0.1827,-0.316816,-0.303414,0.215382,-0.704593,0.0259857,-0.602999,-0.411504,0.846585,-0.548679,0.0734996,-0.534337,-0.0830744,1.20676,-0.533837,0.262666,-0.474529,-0.205647,0.391725,0.194243,-0.0649044,-0.16458,-0.152786,-0.171746,0 +-0.305043,-0.135856,-0.424357,-0.644037,-0.323133,0.908362,0.920145,0.948599,-0.386238,-0.222638,-0.366779,0.0885714,-0.626766,0.0786668,-0.590416,-0.27375,1.16045,-0.621609,0.134816,-0.559343,-0.288132,1.41782,-0.609556,0.359053,-0.526521,-0.415042,0.313568,0.167398,-0.0655041,-0.12813,-0.130728,-0.137125,0 +-0.222118,-0.251012,-0.481955,-0.670882,-0.264075,0.963361,0.973466,0.92971,-0.0256659,-0.408326,-0.478378,0.0757584,-0.690431,0.0420769,-0.58421,-0.429834,1.24089,-0.663706,0.138214,-0.555226,-0.441158,1.38402,-0.647685,0.320954,-0.500775,-0.553666,0.29091,0.0743491,-0.165969,-0.224637,-0.23744,-0.23661,0 +-0.34603,0.0372195,0.0178004,-0.501875,-0.466134,1.10546,1.0891,1.02569,0.946221,-0.0774375,-0.190336,0.312359,-0.60129,-0.418171,-0.300335,-0.45583,1.25568,-0.338824,-0.675639,-0.0934189,-0.0919395,1.65294,-0.312819,-0.594174,0.0856932,-0.379632,0.54648,0.302294,0.0890911,0.0776271,0.0853932,0.0698816,0 +-0.387168,0.0409375,-0.23648,-0.563841,-0.412564,1.41047,1.4169,1.38965,-0.197682,0.171756,-0.38303,0.478627,-0.598991,-0.0837041,-0.481406,-0.23688,1.55226,-0.500815,-0.120094,-0.390606,-0.0939884,1.80723,-0.457179,-0.336865,0.0755288,-0.578273,0.460058,0.276888,0.0723103,0.0160409,0.0339714,0.0669832,0 +-0.0597772,-0.512079,-0.579732,-0.772066,-0.139314,0.848734,0.869473,0.869933,-0.45572,-0.724872,-0.725462,-0.0172506,-0.927141,-0.105272,-0.647075,-1.13781,1.14176,-0.716397,0.0677527,-0.573755,-0.58315,1.39759,-0.687813,0.324982,-0.52911,-0.67414,0.193164,-0.142472,-0.398391,-0.444816,-0.425656,-0.424377,0 +-0.206087,-0.381061,-0.641658,-0.652442,-0.0276548,0.621699,0.63705,0.650853,-0.532878,-0.676369,-0.665135,-0.204218,-0.757554,-0.00219882,-0.643417,-0.523793,0.969278,-0.663526,0.131658,-0.579532,-0.376683,1.01239,-0.681096,0.358883,-0.543042,-0.561642,0.1098,-0.282905,-0.497507,-0.549169,-0.539424,-0.522763,0 +0.062016,-0.61904,-0.650793,-0.782561,0.010984,0.158193,0.170137,0.169387,-0.525352,-0.663686,-0.754316,-0.616362,-0.925033,-0.0293139,-0.660568,-1.11302,0.60205,-0.754466,0.122313,-0.593285,-0.719235,0.518356,-0.72864,0.358953,-0.544791,-0.788517,0.0331118,-0.334576,-0.517686,-0.544652,-0.541373,-0.552687,0 +0.0135426,-0.334187,-0.323282,-0.648724,-0.128899,0.967369,0.988527,1.03055,0.356384,-0.212643,-0.351757,0.233462,-0.796283,0.041917,-0.592875,-0.842648,1.16249,-0.526971,-0.239809,-0.430424,-0.513908,1.55574,-0.514568,0.00827549,-0.411564,-0.587668,0.175254,-0.136015,-0.249823,-0.289801,-0.30983,-0.32855,0 +-0.69224,0.793844,0.241368,0.146989,-0.728021,0.556834,0.616811,0.609795,1.20934,0.112628,-0.149448,0.313988,-0.126011,0.0857829,-0.299586,0.507401,0.574974,0.340973,0.207106,-0.0198393,0.971037,0.897617,0.311419,-0.103593,-0.100055,0.750908,0.681046,0.78258,0.61909,0.549748,0.526261,0.523853,2 +-0.177513,-0.453581,-0.67459,-0.67508,-0.0897807,1.28332,1.28125,1.31199,-0.487463,-0.547699,-0.756225,0.350138,-0.713698,0.029134,-0.63739,-0.469912,1.48233,-0.704773,0.147469,-0.592135,-0.504453,1.71814,-0.732248,0.367259,-0.557984,-0.818631,0.151917,-0.292709,-0.554826,-0.597722,-0.60157,-0.607117,0 +0.36483,-0.918086,-0.686503,-0.872961,0.0284145,0.644406,0.671052,0.71161,-0.210694,-0.722993,-0.798462,-0.233052,-1.01298,-0.0276149,-0.67437,-1.54651,0.988727,-0.833073,0.134416,-0.606168,-1.11976,1.30676,-0.807697,0.384839,-0.5643,-1.15438,0.0849933,-0.439689,-0.65663,-0.655121,-0.665475,-0.658429,0 +-0.147169,-0.355865,-0.603519,-0.554276,0.0296338,0.666045,0.718326,0.811884,-0.285893,-0.593464,-0.496028,-0.196662,-0.597202,0.0519915,-0.593445,-0.350698,0.972077,-0.598302,0.0978362,-0.549259,-0.320984,1.20802,-0.618651,0.282865,-0.505373,-0.469143,0.0493029,-0.396053,-0.549998,-0.567389,-0.558853,-0.543812,0 +0.533068,-1.03369,-0.766089,-0.861267,0.208696,0.0814453,0.0856129,0.0922294,-0.356115,-0.744681,-0.770627,-0.533447,-0.988518,-0.00839542,-0.668603,-1.47637,0.506652,-0.833163,0.119115,-0.604229,-1.1506,0.311779,-0.832353,0.369767,-0.566689,-1.29925,-0.0818851,-0.657919,-0.880297,-0.897928,-0.909131,-0.909581,0 +-0.5642,0.465605,-0.0830243,-0.129269,-0.343721,-0.540773,-0.531618,-0.471481,-0.274359,-0.464525,-0.293679,-0.723193,-0.313308,0.354056,-0.434902,0.216821,-0.336665,0.027095,-0.114098,-0.220059,0.628315,-0.269182,-0.00404798,-0.0588277,-0.244895,0.56386,0.310909,0.252751,0.157194,0.121533,0.111479,0.0914698,0 +-0.567039,0.537175,0.131058,0.156014,-0.413453,0.515667,0.611364,0.736176,0.919695,0.00717602,0.370487,0.331348,-0.506962,0.140973,-0.519485,-0.0649944,0.538055,0.487153,-0.938665,0.00481715,0.606957,0.787028,0.308221,-0.43713,-0.150817,0.552417,0.374425,0.439269,0.332068,0.165259,0.0744792,0.00402778,0 +-0.613014,0.667514,0.498347,-0.160482,-0.716407,-0.399171,-0.41852,-0.475349,-0.0189196,0.751517,0.250802,-0.315157,-0.141403,0.515147,-0.263486,0.300305,-0.340013,0.0686222,-0.247354,-0.154725,0.545441,-0.178302,0.413613,-0.366769,0.106252,0.802699,0.67506,0.778992,0.667464,0.588167,0.599661,0.605987,0 +-0.232382,-0.275819,-0.475149,-0.724512,-0.296018,0.281116,0.299426,0.322253,-0.525791,-0.21898,-0.436341,-0.369527,-0.699876,0.0633252,-0.614483,-0.412654,0.616422,-0.7112,0.14646,-0.588088,-0.541213,0.701225,-0.6569,0.397402,-0.538734,-0.494169,0.294748,0.117146,-0.140003,-0.211794,-0.224527,-0.221079,0 +-0.280406,-0.283794,-0.58333,-0.616991,-0.14534,0.824248,0.826576,0.83914,-0.472571,-0.329239,-0.579222,0.0810155,-0.522623,0.0586678,-0.600631,-0.125571,1.08539,-0.670312,0.104622,-0.582401,-0.406767,1.15591,-0.673471,0.34669,-0.542202,-0.536566,0.196652,-0.173065,-0.395053,-0.45536,-0.464855,-0.490151,0 +0.0895109,-0.69203,-0.696428,-0.723693,0.0890712,0.572616,0.591475,0.609615,-0.133237,-0.660258,-0.654911,0.000299792,-0.688862,0.00775572,-0.61955,-0.646545,0.840649,-0.76551,0.104812,-0.595124,-0.817511,0.857,-0.751258,0.344261,-0.551287,-0.857669,-0.043786,-0.485534,-0.691691,-0.705563,-0.739424,-0.748449,0 +-0.061966,-0.549768,-0.716547,-0.670332,0.0543902,1.09441,1.09483,1.09434,-0.311679,-0.772286,-0.768948,0.224517,-0.722134,0.0660937,-0.635601,-0.628685,1.34116,-0.707882,0.159332,-0.592275,-0.541943,1.48413,-0.732168,0.385608,-0.558583,-0.768418,0.0244465,-0.457619,-0.686753,-0.720565,-0.713369,-0.720545,0 +0.154215,-0.706363,-0.667334,-0.78432,0.0323523,0.547669,0.544891,0.523503,-0.678638,-0.555075,-0.81984,-0.170606,-0.921704,-0.00780574,-0.660678,-1.13506,0.876129,-0.744751,0.079966,-0.568558,-0.779203,1.01023,-0.742453,0.349648,-0.542382,-0.872681,0.0323222,-0.407486,-0.581891,-0.610305,-0.613933,-0.649004,0 +-0.0157813,-0.651483,-0.737915,-0.71114,0.124352,0.375264,0.370966,0.353286,-0.282225,-0.796813,-0.817621,-0.350158,-0.823668,-0.021948,-0.660248,-0.766669,0.770467,-0.731519,0.139223,-0.598482,-0.633812,0.630864,-0.755786,0.377073,-0.560482,-0.849224,-0.00793571,-0.561202,-0.732758,-0.749539,-0.770667,-0.785889,0 +0.288132,-0.896298,-0.790216,-0.736506,0.180221,0.238289,0.248374,0.253671,-0.189276,-0.78318,-0.844137,-0.339024,-0.743472,0.0726701,-0.643757,-0.798962,0.562301,-0.788158,0.158173,-0.604768,-0.980582,0.639949,-0.795134,0.38345,-0.56406,-1.06728,-0.0507822,-0.633722,-0.873751,-0.907802,-0.926952,-0.955905,0 +0.351167,-1.02772,-0.785049,-0.863046,0.138374,0.0596773,0.0917496,0.1638,-0.10942,-0.680417,-0.664635,-0.156734,-1.01052,-0.0285644,-0.678228,-1.54364,0.251312,-0.808147,0.0980161,-0.607497,-0.997163,0.585519,-0.822379,0.361492,-0.567998,-1.24845,-0.147609,-0.556415,-0.826367,-0.866995,-0.852143,-0.888952,0 +-0.596203,0.592715,-0.0432361,0.189706,-0.49284,0.0862926,0.111909,0.130708,-0.261906,-0.343811,-0.461847,-0.316836,-0.124722,-0.249543,-0.144681,0.472081,0.243307,0.217481,-0.381671,0.100275,0.792116,0.574325,0.30913,-0.65527,0.242307,0.805638,0.502594,0.43627,0.264825,0.215531,0.196092,0.18307,0 +-0.16355,-0.398272,-0.544511,-0.76481,-0.229864,0.56438,0.551747,0.545761,0.0356504,-0.56452,-0.56553,-0.150138,-0.862467,-0.0627856,-0.646575,-0.803369,0.868284,-0.72873,0.113068,-0.587788,-0.582101,1.1221,-0.683245,0.366659,-0.540433,-0.581741,0.246425,0.0056868,-0.231643,-0.285913,-0.284354,-0.30952,0 +-0.421019,0.0259557,-0.428655,-0.467364,-0.180001,0.607327,0.615542,0.618191,-0.416332,-0.551357,-0.47468,-0.0353706,-0.433942,0.117226,-0.544821,0.130658,0.876719,-0.465215,-0.00381803,-0.47462,0.045685,0.835711,-0.499036,0.222518,-0.458838,-0.139274,0.212893,-0.0699517,-0.259348,-0.302684,-0.297437,-0.301774,0 +0.223937,-0.800041,-0.786008,-0.626956,0.300135,-0.0898707,-0.0132128,0.0231273,-0.408366,-0.848534,-0.808326,-0.789417,-0.621889,0.137465,-0.62001,-0.670992,0.352856,-0.709831,0.202839,-0.592615,-0.769488,0.0574884,-0.756055,0.401919,-0.560882,-0.887843,-0.235521,-0.767299,-0.936926,-0.943273,-0.951838,-0.962052,0 +-0.242717,-0.275689,-0.506062,-0.695928,-0.138354,0.607866,0.604348,0.603079,-0.467633,-0.678088,-0.588867,-0.0309731,-0.804539,-0.0585779,-0.625807,-0.623818,0.906812,-0.650223,0.0529108,-0.561962,-0.319805,0.827696,-0.640009,0.294838,-0.508291,-0.452352,0.16308,-0.132537,-0.318735,-0.362891,-0.355095,-0.366609,0 +-0.294628,-0.267763,-0.501065,-0.740644,-0.371916,0.846895,0.842708,0.830095,-0.0176703,-0.615722,-0.529979,0.0672431,-0.809946,-0.0559893,-0.649784,-0.587748,1.1004,-0.707992,0.147969,-0.591965,-0.482415,1.36838,-0.668194,0.40132,-0.548939,-0.540294,0.428585,0.199151,-0.0632353,-0.137595,-0.147949,-0.169777,0 +0.0417371,-0.556305,-0.643347,-0.677668,0.0645047,0.431633,0.393634,0.318495,-0.30931,-0.808576,-0.757214,-0.147699,-0.732078,0.157174,-0.604149,-0.750578,0.787468,-0.683865,0.19989,-0.574025,-0.570287,0.593294,-0.725582,0.377503,-0.548089,-0.753627,0.0336415,-0.439279,-0.61887,-0.639479,-0.636631,-0.643537,0 +-0.651043,0.506272,-0.0458547,-0.387387,-0.888812,0.804638,0.802909,0.813534,0.886783,0.0429364,-0.0964771,0.562791,-0.544261,0.0442257,-0.576804,0.00732589,0.818151,-0.262236,0.121803,-0.441858,0.446025,1.14055,-0.181191,0.174045,-0.379971,0.373875,0.826936,0.999401,0.734067,0.558353,0.471761,0.413293,0 +-0.693889,0.823588,0.192115,0.460218,-0.780082,0.390066,0.433302,0.522143,-0.0930989,0.0731598,-0.243117,-0.0943783,0.293779,-0.792145,0.171236,0.881466,0.475339,0.416861,-0.954326,0.373505,0.909751,1.04147,0.663566,-1.49409,0.719605,0.770007,0.74648,0.905293,0.718746,0.627066,0.579222,0.537145,0 +-0.493209,0.281835,0.132268,-0.484504,-0.559403,1.23583,1.11603,1.03184,0.0858828,0.211574,0.12804,0.562022,-0.41978,0.308291,-0.431014,-0.0463247,1.34947,-0.377993,0.243096,-0.414993,0.0836242,1.63266,-0.480656,0.224667,-0.443896,-0.45639,0.548349,0.550988,0.345281,0.274799,0.253061,0.229624,0 +-0.469682,0.156444,-0.23668,-0.519995,-0.489252,0.836381,0.854991,0.91164,-0.372176,-0.353416,-0.545171,0.323313,-0.720085,0.0125631,-0.599301,-0.390036,0.955036,-0.335246,-0.283225,-0.391615,0.158003,1.31908,-0.234382,-0.131848,-0.305452,0.125431,0.494469,0.405078,0.172295,0.0910597,0.0904504,0.0561492,0 +-0.3821,-0.0754187,-0.377093,-0.624917,-0.331018,0.769718,0.759483,0.744432,-0.112558,-0.414363,-0.493679,0.162021,-0.545701,0.0522213,-0.574875,-0.0349909,0.978053,-0.625747,0.083594,-0.550288,-0.277048,1.29387,-0.577693,0.282185,-0.486763,-0.327271,0.36477,0.159642,-0.0777773,-0.1457,-0.14489,-0.159752,0 +-0.591166,0.334287,-0.0735395,-0.570587,-0.830275,0.527151,0.515817,0.489391,-0.214063,0.153656,-0.441878,0.000299792,-0.557604,-0.0589177,-0.570527,0.0105841,0.734957,-0.497577,0.202439,-0.536946,0.0596773,1.03702,-0.421779,0.412014,-0.495858,0.0837139,0.82001,0.972686,0.735267,0.583739,0.515048,0.406977,0 +-0.148858,-0.404908,-0.626756,-0.589936,0.104293,0.991886,1.00607,1.02212,-0.377943,-0.752637,-0.693909,0.265784,-0.567998,0.0850133,-0.599911,-0.262416,1.21047,-0.618221,-0.0164011,-0.513209,-0.396682,1.23694,-0.63826,0.21795,-0.479447,-0.582261,-0.0121134,-0.488602,-0.666444,-0.678448,-0.668173,-0.663136,0 +-0.161232,-0.431423,-0.544951,-0.791586,-0.258988,0.340233,0.338224,0.32832,-0.522543,-0.517936,-0.65679,-0.277098,-0.878028,-0.0448954,-0.661557,-0.834632,0.665365,-0.755496,0.141282,-0.599261,-0.684295,0.74647,-0.704334,0.404208,-0.552707,-0.645696,0.349638,0.0119434,-0.21953,-0.278068,-0.260827,-0.279557,0 +-0.0806557,-0.542762,-0.739394,-0.650793,0.133067,0.0375394,0.0268852,-0.0301234,-0.38267,-0.790876,-0.719795,-0.580552,-0.672821,0.104173,-0.617301,-0.461377,0.43766,-0.706762,0.177542,-0.588757,-0.534717,0.332298,-0.703734,0.403379,-0.553066,-0.639769,-0.045735,-0.526391,-0.736606,-0.756096,-0.742393,-0.750218,0 +-0.517816,0.481616,0.168418,0.358973,-0.459658,0.705623,0.754936,0.889022,-0.0141623,-0.449923,-0.531878,0.0319025,-0.0225877,-1.05872,0.154825,0.276488,0.820949,0.427655,-1.92483,0.625497,0.518446,1.25959,0.635441,-2.16879,1.06258,0.442757,0.430124,0.40017,0.27261,0.222288,0.219809,0.189246,0 +-0.413163,0.0470641,-0.215372,-0.556964,-0.371056,0.744841,0.681896,0.680776,-0.063775,-0.511649,-0.554416,0.00933483,-0.462506,0.189896,-0.496418,0.029084,1.04387,-0.537635,0.143871,-0.49299,-0.124242,1.10636,-0.519415,0.294548,-0.444866,-0.219859,0.391855,0.228525,-0.00169907,-0.0815456,-0.0826047,-0.0932688,0 +0.0366299,-0.63782,-0.649294,-0.804509,-0.0482935,1.0328,1.04119,0.990496,-0.511489,-0.556555,-0.567419,0.150018,-0.919975,-0.00453753,-0.654591,-1.05851,1.30463,-0.772676,0.149638,-0.594974,-0.780302,1.43564,-0.758504,0.386168,-0.559723,-0.889732,0.107531,-0.264015,-0.504943,-0.576334,-0.561692,-0.560043,0 +-0.286853,-0.14589,-0.654511,-0.154445,0.0781972,0.559653,0.54585,0.532368,-0.456919,-0.757374,-0.65646,-0.0130429,-0.466784,0.190815,-0.560932,-0.155345,0.862307,-0.16445,-0.157154,-0.267334,0.217301,0.741643,-0.30966,0.0629955,-0.345031,0.0785767,-0.0284245,-0.483005,-0.668653,-0.682276,-0.672571,-0.667094,0 +-0.371846,0.0258058,-0.437999,-0.375464,-0.0940584,0.826746,0.85632,0.917277,-0.348779,-0.533577,-0.553406,0.243546,-0.43696,0.0867624,-0.52923,0.0717405,0.989157,-0.344931,-0.257929,-0.3458,0.119934,1.21926,-0.351737,-0.0680926,-0.325101,-0.0374796,0.132637,-0.190995,-0.360002,-0.384499,-0.380921,-0.381761,0 +-0.0824847,-0.543792,-0.584799,-0.815323,-0.252012,0.412564,0.387108,0.333677,-0.0863027,-0.665565,-0.457089,-0.214742,-0.888363,-0.00869525,-0.658629,-0.904494,0.735546,-0.782331,0.146969,-0.603019,-0.81942,0.931129,-0.733638,0.399811,-0.557544,-0.762961,0.38357,0.00109932,-0.312758,-0.368378,-0.38353,-0.431893,0 +-0.0978163,-0.521074,-0.653771,-0.751118,-0.131348,1.0219,1.032,1.01789,-0.20103,-0.65677,-0.63733,0.0834542,-0.868414,-0.00472743,-0.659079,-0.839559,1.30586,-0.738345,0.16305,-0.593605,-0.626906,1.55081,-0.744532,0.386248,-0.559483,-0.842768,0.187127,-0.174085,-0.460517,-0.551458,-0.563901,-0.559873,0 +-0.177353,-0.221598,-0.490411,-0.523033,-0.0248563,1.06992,1.08485,1.07204,-0.215162,-0.616652,-0.608676,0.2907,-0.563891,0.190266,-0.56527,-0.288462,1.255,-0.508661,0.010794,-0.462906,-0.199121,1.43125,-0.562592,0.184519,-0.459108,-0.469353,0.0811854,-0.279886,-0.446555,-0.494919,-0.502394,-0.498966,0 +-0.222118,-0.349768,-0.591145,-0.685904,-0.150707,0.298166,0.296117,0.285064,-0.47393,-0.412644,-0.587927,-0.248834,-0.667044,-0.00231875,-0.613064,-0.303004,0.604218,-0.712039,0.115417,-0.5839,-0.531169,0.671721,-0.680527,0.357174,-0.537855,-0.576654,0.204718,-0.146859,-0.396313,-0.444766,-0.440159,-0.422298,0 +-0.0549698,-0.502464,-0.659338,-0.67466,0.0962572,0.234531,0.19949,0.195853,-0.647125,-0.587937,-0.701075,-0.405917,-0.662177,0.104303,-0.612884,-0.435901,0.634432,-0.71143,0.132847,-0.582181,-0.577883,0.406037,-0.717217,0.374584,-0.548589,-0.717007,0.000669567,-0.45547,-0.634752,-0.659289,-0.665885,-0.667544,0 +-0.799581,1.13931,0.540743,0.662437,-0.922914,-0.300655,-0.213203,-0.152636,0.0492829,0.761982,0.187617,-0.488982,0.951168,-0.776834,0.366599,1.39516,-0.188756,0.568298,-0.0793666,-0.0327223,1.15306,-0.192694,0.755235,-0.194313,0.134686,1.32948,0.925482,1.14565,1.00779,0.92938,0.920345,0.922164,2 +-0.45534,0.359653,0.0927493,-0.135755,-0.378173,0.675539,0.740004,0.768099,0.0587277,-0.466864,0.038219,0.184159,-0.524362,0.167328,-0.472131,-0.177962,0.83756,0.141072,-0.935987,0.100215,0.446525,0.905383,0.0995252,-0.682585,0.0282047,0.360442,0.389096,0.247014,0.175614,0.150977,0.113158,0.0976364,0 +-0.250862,-0.142092,-0.537785,-0.460977,-0.235431,0.0133427,0.0238368,0.0160212,-0.49241,-0.556065,-0.605868,-0.757045,-0.565,-0.0690921,-0.51004,-0.187637,0.405198,-0.49284,-0.0353907,-0.47377,-0.144141,0.65627,-0.47446,0.211144,-0.45505,-0.14588,0.292879,-0.0208886,-0.260567,-0.323703,-0.350168,-0.396133,0 +-0.2915,-0.0608966,-0.531668,0.0149718,-0.245175,0.917926,0.904933,0.901715,-0.430314,-0.281825,-0.597572,0.0153615,-0.190356,-0.96586,0.0915896,0.0751187,1.19055,-0.211114,-1.04354,0.12723,-0.0562291,1.22545,0.574555,-3.91027,3.04913,0.0101543,0.301974,-0.0150918,-0.303963,-0.369428,-0.371196,-0.395983,0 +-0.592945,0.354436,-0.177033,-0.430294,-0.745341,1.37162,1.37323,1.32185,-0.0637351,0.014422,-0.318265,0.807427,-0.636491,0.0189096,-0.610155,-0.170347,1.37727,-0.305682,0.249033,-0.458858,0.341063,1.66715,-0.429644,0.252751,-0.481116,-0.351407,0.709591,0.808256,0.520854,0.349288,0.280076,0.232303,2 +-0.00916496,-0.598152,-0.651692,-0.787828,-0.106252,0.938725,0.956285,0.957285,-0.664895,-0.58293,-0.708651,0.0429064,-0.956565,-0.0140223,-0.669213,-1.22169,1.21321,-0.751538,0.162321,-0.592615,-0.697018,1.47848,-0.746111,0.392225,-0.558563,-0.853262,0.155984,-0.224607,-0.470992,-0.499916,-0.508621,-0.526361,0 +-0.264735,-0.248534,-0.550448,-0.624987,-0.18285,0.880657,0.891681,0.898297,-0.102424,-0.565999,-0.664865,0.0984659,-0.615952,0.0981861,-0.604818,-0.319895,1.11854,-0.642448,0.12743,-0.571397,-0.323163,1.33178,-0.639239,0.344871,-0.532877,-0.444536,0.205777,-0.0814154,-0.324332,-0.387278,-0.395663,-0.421489,0 +-0.690231,0.666394,0.0059869,-0.152316,-0.825977,0.719455,0.72804,0.713399,1.36004,0.101464,-0.258888,0.611325,-0.469323,-0.14617,-0.524882,0.132427,0.695798,0.061756,-0.0326522,-0.266184,0.807927,0.942233,0.104562,0.00595676,-0.261246,0.70962,0.76552,0.916957,0.654631,0.514318,0.461837,0.425736,2 +-0.375934,0.050952,-0.255739,-0.501955,-0.371526,0.962532,0.94703,0.964871,0.395273,-0.38298,-0.661597,0.207926,-0.695249,-0.149398,-0.508161,-0.495328,1.17186,-0.390846,-0.340783,-0.301485,0.00742598,1.51832,-0.407237,-0.0824647,-0.301844,-0.235921,0.368838,0.214052,0.0129829,-0.0449157,-0.0389886,-0.060147,0 +0.143781,-0.687013,-0.590976,-0.835412,-0.202129,0.0235971,0.0792165,0.128629,-0.0593375,-0.672301,-0.7295,-0.660977,-0.917547,-0.0011294,-0.653911,-1.12653,0.390496,-0.80181,0.151407,-0.598392,-0.997343,0.497247,-0.751028,0.398072,-0.551397,-0.891461,0.30947,-0.138054,-0.394464,-0.442238,-0.461247,-0.501315,0 +-0.268773,-0.239329,-0.525941,-0.648544,-0.225556,0.91183,0.910081,0.904444,-0.0507422,-0.459668,0.0902704,0.143231,-0.702974,0.0280946,-0.606078,-0.38259,1.16041,-0.642228,0.128549,-0.554756,-0.331118,1.47239,-0.651593,0.313938,-0.525591,-0.545221,0.264535,-0.0494829,-0.300245,-0.369957,-0.378272,-0.38198,0 +-0.434552,0.252451,-0.346979,1.30587,-0.272151,0.0571087,0.0663735,0.240728,-0.167668,-0.431393,-0.531258,-0.407067,-0.536036,-0.29134,-0.47371,-0.130269,0.156464,1.56743,-4.08539,1.8728,0.486733,0.396862,2.11262,-4.9235,2.70197,0.611394,0.316746,0.0412473,-0.142422,-0.202419,-0.216821,-0.231613,0 +-0.307701,-0.152067,-0.573405,-0.440938,-0.141242,1.22128,1.24813,1.3086,-0.277298,-0.651712,-0.580182,0.286973,-0.438689,0.214402,-0.556655,-0.142232,1.39931,-0.504833,0.244186,-0.533328,-0.071041,1.68935,-0.608176,0.351057,-0.532108,-0.575544,0.197512,-0.159393,-0.399851,-0.426516,-0.432363,-0.414702,0 +-0.125751,-0.178412,-0.321274,-0.435241,-0.122373,0.239988,0.280366,0.299566,-0.41996,-0.571027,-0.723343,-0.580981,-0.539594,-0.183919,-0.349918,-0.354536,0.600311,-0.394414,-0.399631,-0.184409,-0.265324,0.730629,-0.372346,-0.25433,-0.132237,-0.303234,0.172785,-0.112958,-0.285613,-0.306102,-0.31054,-0.342322,0 +0.138814,-0.684145,-0.694589,-0.764421,0.0945682,0.124861,0.141232,0.12684,-0.542113,-0.693489,-0.730809,-0.580741,-0.849294,0.0569188,-0.648464,-0.950119,0.561542,-0.755256,0.14525,-0.594634,-0.740953,0.412024,-0.759424,0.378522,-0.558104,-0.885844,-0.0460348,-0.489681,-0.663716,-0.69395,-0.708881,-0.720755,0 +0.329599,-0.923353,-0.761232,-0.834902,0.262526,-0.0722104,-0.119684,-0.12689,-0.322513,-0.808666,-0.712589,-0.619,-1.00091,-0.032842,-0.678348,-1.44511,0.338574,-0.796923,0.0675228,-0.596263,-1.00612,0.159083,-0.812844,0.342042,-0.562851,-1.2165,-0.149078,-0.691141,-0.835422,-0.831274,-0.825837,-0.815782,0 +0.824118,-1.27368,-0.805408,-0.906513,0.322723,-0.267323,-0.246285,-0.196882,-0.740694,-0.750508,-0.820989,-0.949469,-1.06195,-0.0363801,-0.682816,-1.88404,0.204998,-0.872052,0.118435,-0.611095,-1.39437,0.139863,-0.85648,0.373495,-0.570167,-1.45382,-0.203668,-0.790536,-0.923773,-0.956745,-0.953337,-0.955965,0 +0.172136,-0.791076,-0.706722,-0.830254,0.00649648,-0.027285,0.0167407,-0.0304632,-0.644177,-0.558064,-0.613653,-0.755665,-0.986229,-0.0319925,-0.675979,-1.3535,0.403589,-0.792425,0.138254,-0.603149,-0.871212,0.384499,-0.788717,0.38261,-0.56395,-1.0157,0.0266153,-0.360522,-0.625007,-0.653522,-0.678808,-0.714108,0 +0.142872,-0.709961,-0.680756,-0.777324,-0.00211879,0.526901,0.544441,0.659928,-0.533387,-0.540703,-0.726891,-0.295558,-0.876599,0.0717506,-0.63913,-1.08439,0.843237,-0.769498,0.196452,-0.590506,-0.884715,1.29575,-0.759633,0.409765,-0.558483,-0.950169,0.0132527,-0.337595,-0.525172,-0.582441,-0.631753,-0.658189,0 +-0.678288,0.611295,-0.102663,0.0470742,-0.647815,0.721654,0.738085,0.752077,-0.253041,0.0674829,-0.138564,0.211414,0.362491,-0.516787,-0.215612,0.835831,0.821789,-0.0663337,0.132657,-0.366679,0.672021,1.1166,-0.0210986,0.156334,-0.326651,0.519525,0.643227,0.69172,0.462037,0.371536,0.326711,0.29128,2 +0.0752687,-0.574135,-0.616551,-0.764061,-0.0945781,0.67345,0.750558,0.853482,-0.245155,-0.707182,-0.688712,-0.103853,-0.899576,-0.00399783,-0.644247,-1.07059,0.963381,-0.732008,0.104762,-0.576114,-0.694109,1.13326,-0.691571,0.303034,-0.525482,-0.715328,0.174904,-0.257349,-0.482865,-0.556195,-0.559723,-0.54722,0 +-0.623528,0.723223,0.488352,0.695409,-0.704723,0.530869,0.615552,0.67365,0.689512,-0.405418,-0.336585,-0.0075459,0.516317,-2.15277,1.22911,0.634052,0.541663,0.71029,-2.77402,1.47234,0.736496,1.06783,1.04961,-3.55166,2.39593,0.671471,0.696208,0.774315,0.628485,0.574195,0.553177,0.521184,0 +0.260267,-0.780572,-0.609116,-0.822998,0.058368,0.76568,0.840119,0.83797,-0.458798,-0.497637,-0.65558,-0.0795564,-0.923903,-0.0229175,-0.630524,-1.24087,1.07408,-0.790227,0.0794963,-0.574765,-1.00193,1.27943,-0.757095,0.293219,-0.52766,-1.02074,0.0078956,-0.441648,-0.611934,-0.65644,-0.652062,-0.650893,0 +-0.242757,-0.295358,-0.484894,-0.741073,-0.266354,0.295818,0.284154,0.259048,-0.118035,-0.659748,-0.604998,-0.2738,-0.812954,-0.00921497,-0.639469,-0.623648,0.610235,-0.699136,0.135915,-0.58336,-0.469692,0.808956,-0.659598,0.372226,-0.535636,-0.489871,0.317536,0.0607866,-0.172845,-0.231503,-0.238349,-0.268813,0 +0.387537,-0.914908,-0.701145,-0.855641,0.0941784,-0.451502,-0.430594,-0.391795,-0.644446,-0.624427,-0.767239,-0.988538,-0.986259,-0.00748592,-0.667764,-1.44666,0.00114945,-0.827566,0.14615,-0.60253,-1.12456,-0.247114,-0.794414,0.389196,-0.560722,-1.08443,-0.0343412,-0.459948,-0.672461,-0.730769,-0.759204,-0.775994,0 +0.0289941,-0.594134,-0.6009,-0.80163,-0.0806157,-0.222948,-0.284874,-0.293849,-0.485324,-0.514038,-0.56414,-0.72974,-0.931089,-0.0428265,-0.663876,-1.08291,0.189146,-0.757165,0.0951677,-0.586049,-0.741763,-0.0160612,-0.731799,0.34621,-0.538444,-0.821149,0.149998,-0.236041,-0.45482,-0.511879,-0.521384,-0.534477,0 +-0.445805,0.0622158,-0.29172,-0.615083,-0.526491,0.389676,0.362061,0.349488,-0.156834,-0.45542,-0.518066,-0.257299,-0.653741,0.0758484,-0.582161,-0.247984,0.703724,-0.563231,0.247364,-0.5479,-0.134146,0.842028,-0.516107,0.470822,-0.512669,-0.137964,0.543802,0.468103,0.260147,0.18251,0.16465,0.104043,0 +-0.667824,0.635002,-0.0499024,-0.0767679,-0.704414,0.649683,0.670042,0.658429,0.476598,-0.12749,-0.331978,0.432003,-0.494689,-0.103853,-0.517046,0.076378,0.676129,0.0845335,-0.129079,-0.227335,0.823828,0.755545,0.10907,-0.0939084,-0.183739,0.76544,0.672911,0.745301,0.495568,0.3822,0.347859,0.325681,2 +-0.21951,-0.313668,-0.512229,-0.723133,-0.344771,0.731479,0.732988,0.703744,-0.041937,-0.588727,-0.49211,0.14528,-0.752907,0.0809256,-0.60254,-0.545491,0.943252,-0.706662,0.203258,-0.578993,-0.555345,1.17918,-0.663236,0.417531,-0.543482,-0.541023,0.386088,0.102853,-0.159972,-0.240488,-0.264875,-0.288572,0 +-0.417931,-0.0138424,-0.300165,-0.683635,-0.560273,1.05899,1.03975,1.01349,-0.0469443,-0.21907,-0.245365,0.307961,-0.741983,0.0166508,-0.623568,-0.436301,1.24581,-0.614233,0.215122,-0.56489,-0.248054,1.59148,-0.604668,0.395063,-0.542012,-0.503714,0.532738,0.550178,0.275439,0.205877,0.195723,0.137584,0 +-0.157064,-0.34675,-0.459388,-0.725732,-0.207496,0.227275,0.20105,0.176853,-0.167898,-0.63847,-0.553776,-0.280296,-0.826946,0.0652842,-0.623218,-0.796393,0.566279,-0.671552,0.14492,-0.556505,-0.471831,0.487163,-0.630834,0.359243,-0.512529,-0.452772,0.251372,-0.0495729,-0.290171,-0.344771,-0.355045,-0.386338,0 +-0.203758,-0.293279,-0.408276,-0.749159,-0.258478,0.848265,0.829385,0.769928,-0.250173,-0.205927,-0.380281,0.187747,-0.779612,0.0498926,-0.614743,-0.589007,1.0534,-0.694929,0.131178,-0.567489,-0.518815,1.36152,-0.658169,0.329999,-0.520005,-0.580372,0.323742,0.0365699,-0.193764,-0.245785,-0.250872,-0.295728,0 +-0.527081,0.270352,-0.151427,-0.505043,-0.536296,0.211784,0.228255,0.296078,-0.316856,-0.0390786,-0.358134,-0.193654,-0.498716,0.00811553,-0.511739,0.0787767,0.385958,-0.40126,0.0334415,-0.470082,0.199351,0.813494,-0.246345,0.125371,-0.361312,0.292809,0.54736,0.497577,0.294009,0.221698,0.231033,0.204658,0 +-0.277508,-0.287153,-0.56371,-0.695618,-0.208695,-0.476239,-0.501485,-0.555785,-0.603999,-0.525991,-0.603609,-0.971517,-0.789377,-0.0543102,-0.6383,-0.537705,-0.0728899,-0.683155,0.119724,-0.578903,-0.399221,-0.176863,-0.643117,0.339144,-0.516037,-0.434722,0.231993,-0.0191096,-0.247614,-0.299606,-0.301305,-0.334446,0 +-0.206817,-0.335656,-0.524112,-0.735846,-0.263395,0.458358,0.456849,0.429314,-0.501915,-0.422898,-0.575324,-0.197142,-0.78403,-0.0141822,-0.632523,-0.540503,0.762042,-0.720195,0.170566,-0.581891,-0.578972,0.96652,-0.684864,0.410865,-0.544161,-0.599941,0.341023,0.0546499,-0.196082,-0.264765,-0.274739,-0.301315,0 +0.377133,-0.898227,-0.741063,-0.826976,0.154185,-0.00760583,-0.0334317,0.00165912,-0.478417,-0.713029,-0.647395,-0.6015,-0.971447,-0.0187997,-0.670402,-1.31422,0.465804,-0.814493,0.138924,-0.60222,-1.05691,0.098336,-0.774615,0.352716,-0.553496,-1.01975,-0.0370897,-0.598392,-0.794374,-0.812874,-0.825117,-0.833593,0 +-0.360232,0.0678028,-0.0498924,-0.517056,-0.412824,0.680776,0.614423,0.582111,-0.143461,0.170436,-0.312399,-0.00873525,-0.40172,0.110679,-0.297627,-0.0121434,0.939015,-0.483015,0.160752,-0.396053,-0.19958,1.15393,-0.434182,0.0759184,-0.25551,-0.264885,0.439949,0.289801,0.104653,0.0507619,0.0434962,-0.00233873,0 +-0.438839,0.0503124,-0.224517,-0.659848,-0.524892,0.803959,0.777203,0.772436,0.211464,-0.392685,-0.476039,0.147009,-0.665175,0.025496,-0.590546,-0.250393,1.02878,-0.592955,0.179481,-0.553237,-0.175724,1.43922,-0.559653,0.362021,-0.512709,-0.354446,0.543822,0.460327,0.233772,0.160292,0.149708,0.115527,0 +-0.446345,0.0716207,-0.326181,-0.558374,-0.433472,0.186788,0.188427,0.184049,-0.503993,-0.369167,-0.432743,-0.326061,-0.568318,-0.139653,-0.503974,-0.0513119,0.427405,-0.54756,0.0190794,-0.470452,-0.114207,0.835032,-0.470092,0.216931,-0.378772,-0.0825049,0.47332,0.354775,0.160302,0.0922191,0.10961,0.0961073,0 +-0.574665,0.478138,0.0870924,-0.257599,-0.635871,0.607896,0.626986,0.678997,-0.153616,0.0284743,-0.143301,0.193154,-0.588007,4.99507e-05,-0.56593,-0.0837741,0.748099,-0.0408877,-0.594514,-0.212674,0.43753,0.912049,0.0677726,-0.353226,-0.156534,0.508611,0.614763,0.669303,0.507901,0.416821,0.372306,0.308031,0 +-0.353746,-0.0535007,-0.232252,-0.684494,-0.45533,1.07961,1.02876,1.01038,-0.000519748,-0.0869523,-0.231203,0.384899,-0.723583,0.0768578,-0.598682,-0.461837,1.28031,-0.587848,0.161941,-0.519575,-0.265684,1.57674,-0.589797,0.308441,-0.500285,-0.524182,0.469832,0.341053,0.0866025,0.0119132,-0.0146419,-0.0589277,0 +0.134396,-0.633463,-0.54558,-0.811915,-0.0839539,0.142122,0.0883914,0.0662437,-0.159473,-0.469652,-0.616472,-0.342992,-0.897178,0.0394084,-0.641398,-1.05908,0.490471,-0.763441,0.105492,-0.577523,-0.879348,0.534816,-0.739315,0.358383,-0.538285,-0.898437,0.178842,-0.243986,-0.444546,-0.489932,-0.490981,-0.533337,0 +0.347689,-0.956995,-0.733377,-0.873131,0.0555496,0.103763,0.107001,0.120164,-0.388837,-0.777613,-0.80108,-0.574475,-1.01032,-0.0447355,-0.678438,-1.4774,0.526571,-0.846326,0.12662,-0.609166,-1.18445,0.517196,-0.818851,0.375414,-0.566029,-1.19409,0.0400779,-0.456959,-0.678648,-0.738725,-0.756845,-0.759233,0 +0.0767379,-0.699186,-0.714768,-0.721214,0.210485,0.153786,0.215941,0.343042,-0.63822,-0.520374,-0.74734,-0.558364,-0.807387,0.00887511,-0.652552,-0.777603,0.525941,-0.744761,0.134476,-0.595294,-0.718326,0.563841,-0.745621,0.363421,-0.553726,-0.82052,-0.125131,-0.645006,-0.793765,-0.811335,-0.829105,-0.853392,0 +-0.239958,-0.288332,-0.497777,-0.718486,-0.329139,1.07021,1.07964,1.07985,0.0044875,-0.533287,-0.497387,0.171636,-0.791486,-0.0394784,-0.628705,-0.594274,1.3301,-0.691471,0.137205,-0.570907,-0.501635,1.5726,-0.672991,0.34587,-0.535176,-0.659078,0.368158,0.105332,-0.142732,-0.2377,-0.23729,-0.233432,0 +-0.262996,-0.194843,-0.432502,-0.679077,-0.359593,1.27635,1.27899,1.23173,-0.107121,-0.452722,-0.471032,0.372705,-0.780512,-0.0795564,-0.611685,-0.596223,1.49555,-0.632323,0.0751187,-0.537145,-0.366559,1.59635,-0.622808,0.256959,-0.482065,-0.588037,0.393214,0.172026,-0.0665735,-0.139054,-0.147909,-0.10907,0 +-0.368788,-0.0346011,-0.324182,-0.651083,-0.472861,1.24951,1.23772,1.21877,0.00604665,-0.268203,-0.469482,0.390975,-0.7106,-0.0484634,-0.605188,-0.371596,1.42995,-0.588747,0.110169,-0.537495,-0.225976,1.71224,-0.597562,0.276308,-0.508551,-0.6192,0.498886,0.374704,0.130408,0.0410572,0.0422469,0.0420569,0 +-0.36437,-0.125001,-0.506332,-0.586058,-0.312169,1.3438,1.34675,1.32398,-0.472261,-0.474799,-0.555295,0.444296,-0.648584,-0.0319825,-0.588457,-0.244606,1.5156,-0.589806,0.123202,-0.531529,-0.216841,1.68858,-0.634332,0.300025,-0.516287,-0.595543,0.334227,0.0967968,-0.168637,-0.21992,-0.212423,-0.206577,0 +-0.143391,-0.408216,-0.566299,-0.757344,-0.256869,0.972097,0.940804,0.957605,-0.532228,-0.482835,-0.573765,0.161401,-0.862577,-0.0223378,-0.65728,-0.791236,1.20618,-0.724483,0.14585,-0.587218,-0.591006,1.48562,-0.703524,0.377753,-0.550338,-0.702465,0.331728,0.0177602,-0.273,-0.367239,-0.378412,-0.388207,0 +-0.238649,-0.225206,-0.432413,-0.698517,-0.347339,0.592045,0.568048,0.587857,0.0888212,-0.40035,-0.52874,-0.105662,-0.69202,0.105242,-0.577124,-0.435441,0.868034,-0.67409,0.193374,-0.571197,-0.450613,1.27344,-0.633772,0.388187,-0.535256,-0.468513,0.428655,0.117116,-0.0839639,-0.161022,-0.151497,-0.155884,0 +-0.47417,0.174164,-0.0809254,-0.607487,-0.539424,1.16967,1.1605,1.05537,0.243107,-0.210974,0.931579,0.536965,-0.592585,0.16443,-0.555925,-0.224227,1.34595,-0.508771,0.166449,-0.520235,-0.0354205,1.48649,-0.51125,0.308131,-0.498676,-0.279047,0.498027,0.54711,0.350238,0.157313,0.0996354,0.0818451,0 +-0.128589,-0.374834,-0.536365,-0.727691,-0.178852,0.98394,0.995903,1.01392,-0.475829,-0.278007,-0.573975,0.130558,-0.868623,-0.0277048,-0.647235,-0.867614,1.24361,-0.678768,0.1087,-0.568358,-0.481466,1.39426,-0.672821,0.347,-0.535036,-0.616582,0.221259,-0.0796464,-0.282685,-0.350408,-0.358164,-0.3458,0 +-0.34641,-0.0906003,-0.357494,-0.694269,-0.442137,0.98401,1.02418,1.07878,-0.441668,-0.27389,-0.295328,0.27329,-0.809076,-0.0362601,-0.645816,-0.6205,1.16393,-0.604648,0.0831443,-0.559393,-0.222478,1.2592,-0.577223,0.311079,-0.517156,-0.303813,0.428255,0.325221,-0.00596673,-0.104203,-0.141442,-0.132807,0 +-0.0671032,-0.303703,-0.537625,-0.349368,0.00451757,-0.365549,-0.389506,-0.371296,-0.102904,-0.550458,-0.501415,-0.865455,-0.416252,0.40068,-0.450613,-0.361012,0.0591676,-0.414423,0.466454,-0.451323,-0.25601,-0.0363901,-0.518266,0.486273,-0.49136,-0.279257,0.0821649,-0.323932,-0.463756,-0.487813,-0.519075,-0.561802,0 +0.107271,-0.705453,-0.664235,-0.826996,-0.0597472,-0.0234571,-0.0670533,-0.0842937,-0.482675,-0.318006,-0.471361,-0.535027,-0.988887,-0.0352507,-0.676449,-1.35768,0.360102,-0.779223,0.105572,-0.597892,-0.821549,0.239539,-0.762442,0.359103,-0.557654,-0.899646,0.106042,-0.280806,-0.52913,-0.587628,-0.578113,-0.58356,0 +-0.415092,-0.0797563,-0.530619,-0.532118,-0.290021,1.42271,1.44569,1.4494,-0.0871022,-0.645576,-0.652012,0.495888,-0.574995,-0.0112738,-0.599521,-0.0886914,1.58858,-0.559533,0.169617,-0.552657,-0.104802,1.73596,-0.628575,0.32773,-0.532238,-0.603199,0.336255,0.0750188,-0.178502,-0.258089,-0.266154,-0.239838,0 +-0.0355305,-0.52871,-0.538214,-0.824178,-0.18194,-0.00843537,-0.0130429,-0.0158513,-0.527261,-0.379862,-0.567159,-0.526421,-0.855641,0.00591673,-0.652042,-0.810076,0.326121,-0.780542,0.126141,-0.598612,-0.826097,0.493149,-0.714358,0.384269,-0.547989,-0.705193,0.296038,-0.0369798,-0.27304,-0.377533,-0.390326,-0.427246,0 +-0.178342,-0.342882,-0.63695,-0.54608,-0.120984,0.251612,0.295178,0.266424,-0.54683,-0.486343,-0.580501,-0.332278,-0.522044,0.190555,-0.560393,-0.130608,0.560862,-0.606098,0.277468,-0.555385,-0.40145,0.731449,-0.624827,0.421059,-0.532228,-0.430364,0.203878,-0.194353,-0.469822,-0.519905,-0.521514,-0.515617,0 +-0.12795,-0.442717,-0.541683,-0.798022,-0.317446,0.923993,0.928121,0.91067,-0.391845,-0.331438,-0.503933,0.0800161,-0.913789,-0.0374995,-0.663846,-0.992725,1.21966,-0.748629,0.134246,-0.594264,-0.658669,1.27765,-0.709171,0.38228,-0.551038,-0.669573,0.304873,0.0762781,-0.197462,-0.299426,-0.317716,-0.34604,0 +-0.210804,-0.314827,-0.539024,-0.699726,-0.234901,0.909511,0.923773,0.923513,-0.562931,-0.345211,-0.575094,0.014592,-0.835122,-0.0317326,-0.642927,-0.72991,1.18605,-0.664525,0.148448,-0.567119,-0.40041,1.38335,-0.665185,0.358134,-0.533877,-0.58347,0.268673,-0.0252362,-0.285194,-0.356295,-0.336505,-0.306442,0 +-0.32863,-0.220259,-0.498806,-0.707952,-0.40159,1.3697,1.35794,1.26477,-0.0344911,-0.537155,-0.416002,0.558773,-0.845586,-0.0366299,-0.65645,-0.727281,1.49157,-0.644466,0.170566,-0.578533,-0.300905,1.78255,-0.67525,0.370147,-0.553466,-0.777603,0.509221,0.18174,-0.0758084,-0.177053,-0.16375,-0.166549,0 +-0.212104,-0.41992,-0.645006,-0.694149,-0.120004,0.375804,0.394364,0.407097,-0.0649044,-0.596453,-0.672101,-0.256579,-0.683195,-0.0581081,-0.618431,-0.329979,0.69169,-0.72956,0.113917,-0.591546,-0.578882,0.812574,-0.71175,0.351707,-0.5465,-0.671981,0.225246,-0.195423,-0.475829,-0.538495,-0.543332,-0.52877,0 +-0.319505,-0.131908,-0.422028,-0.658419,-0.408436,1.35078,1.36327,1.37289,0.114417,-0.391615,-0.38226,0.447205,-0.727291,-0.0680127,-0.599041,-0.445975,1.51564,-0.618541,0.140113,-0.548159,-0.304353,1.75252,-0.643407,0.313508,-0.524492,-0.722194,0.408196,0.270062,0.0213183,-0.0683228,-0.0685524,-0.052951,0 +-0.621389,0.631134,0.372546,0.0668933,-0.518146,1.3814,1.11032,0.94761,0.0882016,-0.327031,0.0391285,1.02974,-0.240688,-0.138844,-0.214832,0.221868,1.34824,0.471201,-1.36561,0.556235,0.664486,1.57732,0.497447,-1.90195,0.992126,-0.000599813,0.504593,0.47279,0.375934,0.300145,0.234671,0.178682,0 +-0.1997,-0.304093,-0.5096,-0.719555,-0.304743,0.884415,0.894969,0.889832,0.0787068,-0.576943,-0.623238,0.0843137,-0.807997,0.0129529,-0.63791,-0.680617,1.14744,-0.678048,0.155974,-0.574245,-0.454021,1.34829,-0.641288,0.36419,-0.535706,-0.485564,0.343931,0.0768078,-0.162611,-0.263316,-0.293199,-0.347249,0 +-0.233522,-0.316856,-0.557114,-0.684454,-0.228565,1.02161,1.02739,1.02961,-0.225496,-0.552337,-0.605568,0.150068,-0.732078,0.00789565,-0.625567,-0.470712,1.24339,-0.681246,0.14616,-0.571107,-0.453701,1.60103,-0.681226,0.354516,-0.540983,-0.673241,0.276988,-0.0283945,-0.275159,-0.336286,-0.330779,-0.319235,0 +0.478627,-0.943602,-0.702454,-0.760713,0.191555,0.183719,0.165909,0.246635,-0.367468,-0.67457,-0.650853,-0.563721,-0.831644,0.229074,-0.568718,-1.33581,0.593954,-0.754376,0.265484,-0.56516,-1.03719,0.823438,-0.770128,0.432073,-0.550658,-1.09798,-0.123013,-0.640948,-0.803819,-0.807217,-0.824588,-0.862767,0 +-0.252731,-0.161901,-0.438279,-0.238639,-0.166938,-0.128939,-0.0844837,-0.16326,-0.0319425,-0.662476,-0.61889,-0.625597,-0.244206,-0.992745,0.0396481,0.0185997,0.232283,-0.34732,-0.743542,-0.123792,-0.260327,0.313708,-0.204928,-0.862257,0.183649,-0.317876,0.190645,-0.0827547,-0.351757,-0.424527,-0.434791,-0.436151,0 +-0.395593,0.142582,-0.251102,-0.106072,-0.191225,-0.511699,-0.52881,-0.571966,-0.370277,-0.34578,-0.479737,-0.604838,0.571017,1.54521,0.383589,0.60205,-0.389726,-0.332408,0.592985,-0.318485,0.020109,-0.0335416,-0.302724,0.56565,-0.348189,0.0916396,0.203578,-0.0577284,-0.215382,-0.243857,-0.271221,-0.284814,0 +0.00374795,-0.335196,-0.471691,-0.553676,0.0225577,-1.43929,-1.4084,-1.41085,-0.351907,-0.665715,-0.410825,-1.56594,-0.632163,0.0498526,-0.462137,-0.507642,-1.2878,-0.484194,-0.152357,-0.445995,-0.411944,-1.20758,-0.394184,0.0234871,-0.385868,-0.259638,0.0409675,-0.336895,-0.466214,-0.484275,-0.5097,-0.516087,0 +0.258728,-0.560293,-0.0501723,-0.720115,-0.130378,-0.432862,-0.52838,-0.333707,0.282005,-0.156334,-0.554686,-0.465405,-0.527091,0.586158,-0.289621,-0.840819,-0.277038,-0.630394,0.157054,-0.415822,-0.938095,0.374984,-0.505093,0.123362,-0.243726,-0.74749,0.215752,-0.195093,-0.338954,-0.40095,-0.450943,-0.513918,0 +-0.672811,0.940074,0.702984,1.04186,-0.405987,-0.118835,-0.12853,-0.0815852,0.249223,0.349398,0.409035,-0.135696,1.88573,0.45535,2.25539,1.45122,-0.172405,0.719495,0.0578082,0.924702,0.895979,0.120114,1.09345,-1.56538,1.44762,1.06373,0.337815,0.433252,0.344001,0.36349,0.406717,0.462726,0 +-0.773945,1.02693,0.31007,0.428735,-0.826846,0.085643,0.0401679,-0.0210984,0.155974,1.12035,-0.0709511,0.691321,0.754306,0.464425,0.0994753,1.14599,-0.230753,0.294908,0.234251,-0.123862,1.01153,0.500056,0.30899,0.169077,-0.182849,0.977943,0.786488,1.00509,0.861937,0.715357,0.690611,0.715118,2 +-0.775944,1.03334,0.372356,0.426366,-0.829395,-0.376094,-0.403828,-0.470402,-0.129319,0.743192,-0.0417371,0.41852,0.690321,0.456949,0.0803658,1.17233,-0.731648,0.332977,0.349098,-0.104123,1.02452,0.0810055,0.448624,0.298396,-0.106381,1.12238,0.770927,1.0136,0.890941,0.774175,0.739265,0.751118,2 +-0.6014,0.537375,0.049623,0.132777,-0.357984,0.177003,0.14656,0.0882016,-0.209985,-0.00780576,-0.306222,0.295958,1.17611,1.16647,0.50949,1.13809,0.0696319,-0.165959,0.411534,-0.288912,0.411444,0.778053,-0.0698719,0.18278,-0.133946,0.368518,0.36371,0.231903,0.133627,0.10918,0.123772,0.14592,0 +-0.615562,0.671701,0.319695,0.204788,-0.436151,-0.238079,-0.313828,-0.397702,-0.197791,-0.169037,-0.224007,-0.123742,0.61987,0.964461,0.310889,0.981261,-0.284664,0.0700214,0.657599,-0.0709113,0.632493,0.271841,0.274509,-0.111329,0.260427,0.687583,0.460207,0.347879,0.21786,0.241557,0.268933,0.31059,0 +0.180181,-0.759813,-0.706532,-0.761192,0.120674,-1.25815,-1.29322,-1.29814,-0.397122,-0.758504,-0.670492,-1.4496,-0.772356,0.160102,-0.588137,-0.748519,-0.985929,-0.786419,0.206587,-0.589187,-1.01388,-1.00834,-0.737855,0.441558,-0.548219,-0.853312,-0.0314828,-0.54656,-0.734777,-0.749259,-0.756445,-0.752297,0 +-0.520524,0.569498,0.447125,0.96632,-0.336325,-0.115037,-0.151037,-0.249153,0.148758,-0.366239,-0.0312629,-0.251512,1.445,1.58354,2.17125,0.627476,-0.0813653,0.676599,1.68762,0.91007,0.326441,0.315107,0.459278,0.32833,0.322893,0.284834,0.148249,0.369217,0.295998,0.343881,0.392115,0.423498,0 +-0.805558,1.22524,0.848105,0.414263,-1.05861,-0.0108141,-0.0273251,-0.0520614,1.52581,1.05229,0.284514,0.560632,0.733897,0.723403,0.213283,1.08043,-0.298736,0.432832,0.441877,0.0436059,1.11035,0.543802,0.470722,0.159792,-0.0606365,1.01477,0.973076,1.42451,1.3905,1.25565,1.21276,1.23277,2 +-0.535426,0.483994,0.47349,-0.117026,-0.445905,-0.154515,-0.185588,-0.259627,0.286493,0.486193,-0.299776,-0.210814,0.340393,1.12263,0.23582,0.607776,-0.113028,-0.112029,0.739124,-0.0985261,0.259967,0.429264,-0.0793866,0.312289,-0.0536804,0.238339,0.420879,0.373975,0.303623,0.297956,0.279907,0.295858,0 +-0.408106,0.186458,0.174195,-0.443067,-0.319884,-0.360172,-0.396133,-0.415912,0.394893,-0.219859,-0.385189,-0.231863,-0.131678,0.621569,-0.171306,0.324012,-0.318315,-0.40051,0.429024,-0.350148,-0.104163,0.385369,-0.296328,0.406617,-0.242837,-0.0466645,0.318215,0.189596,0.071141,0.0483132,0.0485134,0.0864825,0 +-0.83858,1.51773,1.43743,1.27773,-1.07938,-0.112618,-0.25618,-0.385169,0.962142,1.61257,1.36825,0.359843,1.35992,0.69229,0.826446,1.397,-0.405657,1.36423,1.32931,1.24516,1.40241,0.118865,1.18592,0.211094,0.574215,1.28713,0.957944,1.57358,1.76772,1.73674,1.72772,1.73683,2 +-0.325122,0.159502,-0.0199389,-0.116106,-0.0756984,-0.457679,-0.413273,-0.393554,-0.156654,-0.330489,0.5276,-0.359673,-0.286643,0.385339,-0.232543,0.0455149,-0.416301,-0.0630755,-0.311419,-0.0741795,0.257009,0.0406377,0.0302132,-0.433612,0.0701117,0.301674,0.0820649,-0.190166,-0.306402,-0.321044,-0.335726,-0.336835,0 +-0.393884,0.131558,-0.303923,-0.0657439,-0.147759,-0.0107141,-0.0488233,-0.0377692,-0.530669,-0.342062,-0.277008,-0.0374795,0.877358,1.53406,0.338094,0.701735,-0.00249855,-0.384599,0.445256,-0.435111,-0.0102443,0.603729,-0.318216,0.51055,-0.399231,0.0607865,0.162471,-0.0915298,-0.220639,-0.262726,-0.270322,-0.257499,0 +-0.777673,1.11324,0.724113,0.417341,-0.952777,-0.100525,-0.134146,-0.183619,1.06112,0.641648,0.0732198,0.355735,0.792115,0.934797,0.275769,1.08267,-0.29187,0.373705,0.642767,0.0418268,1.03847,0.324092,0.426306,0.304123,0.00301854,1.01592,0.890371,1.21941,1.11628,1.00418,0.975645,1.0142,2 +-0.47394,0.486243,0.706562,-0.239429,-0.464085,-0.576304,-0.518486,-0.52842,0.671561,1.58827,0.286133,-0.516237,-0.100605,0.40132,-0.0379693,0.284384,-0.590356,-0.0141923,-0.100825,0.021548,0.27269,0.137834,0.430414,-0.941853,0.575425,0.485783,0.454601,0.411774,0.360872,0.351847,0.372756,0.416102,0 +-0.617031,0.650323,0.65638,-0.14569,-0.659868,-0.281486,-0.318885,-0.352846,0.735276,0.129689,-0.0670932,-0.157074,0.195353,0.716557,0.0057467,0.708321,-0.29204,-0.0702316,0.767339,-0.147479,0.387867,0.470302,0.00775555,0.444936,-0.0888411,0.340083,0.635022,0.732438,0.652362,0.631833,0.645866,0.69324,2 +-0.545731,0.431253,0.11035,0.0700216,-0.244316,-0.177802,-0.189726,-0.258628,0.0932588,-0.297457,-0.139464,0.0244965,0.854841,1.03854,0.221378,0.973816,-0.184309,-0.139464,0.628595,-0.214932,0.338614,0.178302,-0.113108,0.416951,-0.170216,0.374554,0.247604,0.0731798,-0.0356105,-0.0444359,-0.0277547,-0.00190896,0 +-0.647425,0.652802,0.178212,0.175464,-0.428635,-0.10904,-0.130728,-0.169687,1.16141,0.390656,-0.278127,0.0532807,1.14788,1.20149,0.493899,1.23473,-0.143621,-0.0875421,0.539844,-0.271521,0.541573,0.387397,-0.00760602,0.436501,-0.213103,0.592135,0.425626,0.365489,0.271481,0.23555,0.243167,0.278017,2 +-0.00824547,-0.448464,-0.678887,-0.371326,0.155855,-0.356704,-0.375414,-0.363451,-0.502184,-0.330419,-0.228545,-0.359823,0.266344,1.12866,-0.0696619,0.1452,-0.261526,-0.636051,0.298666,-0.559443,-0.600141,0.122143,-0.594114,0.514758,-0.522873,-0.464475,-0.102344,-0.532498,-0.676619,-0.688752,-0.705683,-0.709691,0 +-0.463136,0.227405,-0.242986,-0.0664835,-0.183599,-0.793055,-0.822619,-0.857969,0.16439,-0.220969,-0.466764,-0.824138,0.680666,1.3034,0.204208,0.788417,-0.67469,-0.319785,0.543752,-0.414743,0.12706,-0.412504,-0.254461,0.705503,-0.395893,0.243696,0.181091,-0.01842,-0.154965,-0.168838,-0.181131,-0.151267,0 +-0.543682,0.540044,0.431943,0.220939,-0.330609,-0.0499626,-0.1103,-0.12694,0.843277,1.30462,1.33975,-0.0267154,1.04172,1.23262,0.954056,0.936716,-0.0960772,0.0420868,0.688292,0.106251,0.333387,0.621019,0.0317424,0.156284,-0.0203986,0.303663,0.307531,0.280036,0.209715,0.191495,0.197812,0.226346,0 +-0.52796,0.32789,-0.23709,-0.0602169,-0.186278,-1.00461,-1.02857,-1.03843,-0.5466,-0.406797,-0.521004,-0.837241,0.864436,1.21695,0.347509,1.12847,-1.02115,-0.362761,0.367208,-0.471312,0.192175,-0.480836,-0.187158,0.573795,-0.375814,0.438199,0.201479,-0.00983468,-0.157973,-0.184039,-0.166739,-0.142102,0 +0.652292,-1.10565,-0.759213,-0.866375,0.29177,-1.06904,-1.07537,-1.07517,-0.588137,-0.551897,-0.650953,-1.38375,-0.884065,0.0959973,-0.626147,-1.16518,-0.822299,-0.859399,0.130548,-0.606138,-1.36583,-0.242627,-0.810535,0.385279,-0.559123,-1.20591,-0.238809,-0.709351,-0.869323,-0.918157,-0.949889,-0.981851,0 +-0.408866,0.25561,-0.387307,0.352477,-0.0429164,-0.974825,-0.957175,-0.985959,-0.569148,-0.452442,-0.192984,-1.26798,0.456949,-0.0731199,0.514697,0.839839,-0.839379,-0.0194095,-0.150258,-0.0181303,0.410445,-0.447325,1.11404,-2.94315,2.17473,0.860668,0.0864925,-0.287442,-0.47448,-0.500506,-0.487533,-0.468223,0 +-0.209455,-0.134826,-0.490101,-0.117935,0.111759,-0.871122,-0.881826,-0.906013,-0.526331,-0.338394,-0.349388,-0.989157,0.519455,1.38945,0.122952,0.32871,-0.726051,-0.415752,0.535536,-0.439779,-0.148149,-0.387447,-0.373655,0.689682,-0.425057,-0.0251563,-0.0500026,-0.423608,-0.511419,-0.520595,-0.541363,-0.536046,0 +0.25596,-0.666075,-0.499146,-0.678488,0.194174,-1.10271,-1.10276,-1.1399,-0.305352,-0.671691,-0.588857,-1.28548,-0.566459,0.517146,-0.357744,-0.551048,-0.909431,-0.700955,0.343162,-0.511999,-0.977854,-0.338045,-0.649694,0.569538,-0.472621,-0.865015,-0.111719,-0.573056,-0.67456,-0.690102,-0.699736,-0.705473,0 +-0.499936,0.38235,-0.107251,0.573216,-0.265754,0.106582,0.12754,0.187397,-0.374045,0.2735,0.479387,-0.0541703,1.52954,1.32103,0.615422,0.943302,0.129469,0.101574,0.712309,-0.234871,0.411534,0.448044,0.0121831,0.580102,-0.326041,0.487672,0.318895,0.111149,-0.0303034,-0.0551201,-0.0849034,-0.0921794,0 +0.0540304,-0.476828,-0.652202,-0.477168,0.206707,-0.990397,-0.995304,-0.991786,-0.627815,-0.23645,-0.372795,-1.0113,-0.0783571,0.987978,-0.104093,0.0292539,-0.913039,-0.642218,0.359992,-0.516017,-0.658389,-0.297287,-0.585769,0.561252,-0.49105,-0.463896,-0.170277,-0.549069,-0.697767,-0.704124,-0.71071,-0.707002,0 +0.472001,-0.945172,-0.67317,-0.834842,0.206977,-0.939434,-0.959224,-1.01952,-0.665085,-0.767679,-0.762771,-0.831074,-0.858129,0.0799661,-0.625527,-0.988428,-0.854851,-0.833453,0.152286,-0.596573,-1.30576,-0.299026,-0.776524,0.394993,-0.547779,-1.09178,-0.10921,-0.672641,-0.833433,-0.849634,-0.887943,-0.908392,0 +-0.141622,-0.148369,-0.211054,-0.463516,-0.0684424,-0.981611,-0.953317,-0.931119,-0.618021,-0.568858,-0.52813,-1.20171,-0.260537,-0.452792,-0.067623,-0.0116837,-0.829295,-0.499966,-0.170117,-0.405927,-0.337705,-0.212204,-0.32843,-0.07292,-0.25425,-0.141792,0.176573,-0.183469,-0.363341,-0.395563,-0.481196,-0.524952,0 +-0.773176,1.24726,1.19568,0.752987,-0.630114,1.08058,1.06571,1.06508,1.00008,2.27478,1.17675,1.6342,0.758524,-0.72854,0.335466,0.828215,0.630364,0.915208,0.824827,0.499716,1.02852,0.98366,0.730869,-0.43694,0.311519,0.644866,0.31056,1.23652,1.38475,1.34187,1.31895,1.31176,2 +-0.245285,-0.0580382,-0.225316,-0.457689,-0.129569,-1.02346,-0.978123,-0.772326,-0.0512219,-0.205737,0.768148,-1.02455,-0.536905,0.371676,-0.424817,-0.326941,-1.11583,-0.322813,-0.170327,-0.350728,-0.0127929,-0.454181,-0.174604,-0.115826,-0.257539,0.0895407,0.158763,-0.172385,-0.302174,-0.342193,-0.394214,-0.432523,0 +-0.41968,0.116596,-0.242127,-0.411524,-0.159482,-1.06339,-1.07335,-1.14565,-0.383759,-0.486703,-0.179362,-0.815483,-0.303254,0.174544,-0.425767,0.296067,-1.05929,-0.394024,0.210794,-0.471052,0.155465,-0.38353,-0.265914,0.447085,-0.382,0.298526,0.289441,-0.0102045,-0.249863,-0.308181,-0.338884,-0.269072,0 +-0.696858,0.751478,0.155255,0.0828546,-0.777753,-1.23103,-1.22122,-1.25348,-0.0622759,-0.12824,-0.210704,-0.431983,-0.0460349,0.495188,-0.251752,0.569467,-1.5242,0.140533,0.702355,-0.208676,0.797972,-0.887953,0.276548,0.842358,-0.152816,0.976264,0.808237,0.901565,0.707402,0.599581,0.594874,0.63766,2 +0.257789,-0.736496,-0.560602,-0.814313,-0.0852732,-0.918836,-0.917567,-0.862787,-0.589477,-0.420569,-0.351207,-1.08408,-0.859169,0.153256,-0.584869,-1.1369,-0.741013,-0.772326,0.173635,-0.571687,-0.996933,-0.0682126,-0.696158,0.429704,-0.515617,-0.813963,0.0890611,-0.270552,-0.478697,-0.558874,-0.625557,-0.680547,0 +0.760713,-1.06173,-0.693329,-0.781551,0.354725,-1.20277,-1.20369,-1.15011,-0.40074,-0.751548,-0.447175,-1.55839,-0.904324,0.0329719,-0.582291,-1.39609,-0.994664,-0.745151,0.0574783,-0.514238,-1.19182,-0.454281,-0.706702,0.305412,-0.47372,-1.09693,-0.29153,-0.821999,-0.921315,-0.949979,-0.971767,-1.00348,0 +0.232323,-0.721904,-0.609965,-0.47409,0.176253,-1.38856,-1.38775,-1.23421,-0.239868,-0.264455,0.410455,-1.7148,-0.43681,1.15043,0.211104,-0.769248,-1.27369,-0.570117,0.843937,-0.188087,-0.918516,-0.67384,-0.566539,0.842008,-0.350687,-0.854471,-0.0380492,-0.592965,-0.704563,-0.746231,-0.78458,-0.817391,0 +-0.340713,0.210674,-0.32713,0.433852,-0.0770777,-1.30065,-1.28075,-1.22537,-0.301884,-0.630964,-0.60048,-1.20932,0.530219,1.98553,0.69238,0.405717,-1.34981,0.315667,1.02172,0.304343,0.553936,-1.15263,0.395773,0.648824,0.0936788,0.809835,0.0717906,-0.174194,-0.326501,-0.356295,-0.369108,-0.359233,0 +-0.593444,0.54687,-0.0571884,0.588937,-0.293009,0.14522,0.14528,0.167848,0.288492,-0.142522,-0.220959,-0.00534711,1.27199,1.02801,0.394373,1.05707,0.126721,0.196302,0.885544,-0.121084,0.650893,0.712669,0.0636649,0.56574,-0.324112,0.50982,0.286863,0.141492,0.0288642,0.0132824,0.0106642,0.0423967,0 +-0.761192,1.09899,0.661647,0.429324,-0.997913,-0.0671931,-0.0830645,-0.0630354,0.376044,0.937316,0.772246,0.352437,0.588717,-0.442427,0.500735,1.15607,-0.181091,0.391335,0.357394,0.19987,0.991306,-0.150777,0.511029,-0.121124,0.313938,1.10223,0.924753,1.30886,1.20174,1.10663,1.12699,1.15922,2 +0.189686,-0.56524,-0.671072,-0.243017,0.303324,-1.54267,-1.57289,-1.50897,-0.668883,-0.51047,-0.479557,-1.77458,-0.260797,1.35454,0.560682,-0.51079,-1.43889,-0.369587,0.713558,-0.0348911,-0.502364,-0.788287,-0.36453,0.558464,-0.256699,-0.416302,-0.246385,-0.707322,-0.837071,-0.845117,-0.878488,-0.894739,0 +-0.533957,0.303753,-0.228974,-0.244066,-0.329499,-1.81403,-1.83527,-1.87662,-0.468753,-0.394813,-0.421879,-1.91062,-0.353506,0.289281,-0.463186,0.205607,-1.79162,-0.257719,0.494888,-0.40094,0.360652,-1.70906,-0.248954,0.645266,-0.375064,0.325861,0.331498,0.149968,-0.012723,-0.0560595,-0.0554795,-0.0183899,2 +-0.467593,0.351447,0.0988659,-0.185158,-0.358024,-1.44493,-1.34597,-1.22765,-0.392964,-0.404878,-0.579842,-1.48528,-0.082195,0.930729,-0.0510222,0.245565,-1.48229,-0.0690223,0.558953,-0.152457,0.40159,-0.832863,0.162491,0.689432,-0.0337213,0.645396,0.366739,0.237719,0.100405,0.0684821,0.0564191,0.0605867,0 +-0.352657,0.233722,-0.0726799,0.101434,-0.120544,-1.61309,-1.55995,-1.39022,-0.475679,-0.548639,-0.626286,-1.85452,0.70965,1.95606,0.945521,0.726181,-1.60417,-0.120454,0.912339,-0.0786371,0.250782,-0.919056,0.0109938,1.00627,-0.0809454,0.392025,0.149768,-0.0804259,-0.158633,-0.16429,-0.160522,-0.1463,0 +-0.445226,0.407696,0.0886016,0.744701,-0.174654,-0.885264,-0.738875,-0.620939,-0.0105143,-0.453731,-0.395103,-1.13883,1.79981,2.5992,1.44445,0.863946,-0.964361,0.225006,0.868493,0.0529507,0.480736,-0.1814,0.414342,0.348879,0.208986,0.72919,0.153386,0.012653,-0.0659238,-0.0822452,-0.0538704,-0.0381191,0 +-0.880197,1.81464,2.05138,2.51822,-1.1165,-0.616991,-0.63866,-0.702614,3.64016,2.01656,1.48678,0.115107,2.26394,1.15648,1.58351,1.72869,-1.14986,2.46452,2.68645,2.58534,1.72714,-0.405358,2.44474,1.03329,1.51093,1.71675,0.958904,1.7059,1.9356,1.9305,1.89227,1.89207,2 +-0.647645,0.704194,0.159643,0.496288,-0.451362,-0.477578,-0.49292,-0.539364,-0.186638,0.00375789,-0.131378,-0.374834,1.61225,1.80516,0.852422,1.25019,-0.532458,0.0986957,0.777933,-0.166609,0.679477,0.143581,0.205007,0.723073,-0.153126,0.752797,0.453891,0.368338,0.242337,0.224237,0.23645,0.267303,0 +-0.776994,1.08266,0.385639,0.808726,-0.790966,-0.721984,-0.749119,-0.808616,0.555175,0.609705,0.184898,-0.280056,0.982011,1.32204,0.481786,1.22351,-0.948549,0.631493,0.914978,0.213683,1.19449,-0.249963,0.608796,0.705833,0.0539306,1.21935,0.752237,0.916277,0.791296,0.701595,0.696418,0.751917,2 +-0.753237,1.00758,0.320824,0.847875,-0.680597,-1.32522,-1.27904,-1.21414,-0.330479,-0.0604868,-0.208116,-0.894379,0.900676,1.16635,0.387307,1.21177,-1.56645,0.69155,1.18615,0.447674,1.21689,-1.22574,0.913329,0.460327,0.508361,1.47671,0.620999,0.70971,0.543822,0.484984,0.489322,0.531218,2 +-0.684425,0.72988,0.131778,0.177902,-0.658339,-1.1659,-1.18065,-1.21998,-0.232003,0.125611,-0.424787,-0.999102,0.721284,1.24019,0.3104,1.04677,-1.23661,-0.0181602,0.643227,-0.269482,0.654851,-0.702864,0.10963,0.791796,-0.214782,0.793304,0.613923,0.659988,0.459778,0.389306,0.396313,0.433732,2 +-0.579242,0.538674,0.130299,0.170277,-0.332138,-1.2658,-1.28281,-1.30865,-0.315137,-0.74646,-0.636341,-1.52191,0.322993,1.14823,0.301285,0.810405,-1.14803,0.0655839,1.21478,0.030633,0.475699,-0.733627,0.0730097,1.06451,-0.111029,0.531798,0.307801,0.189186,0.0795564,0.0779969,0.12807,0.192075,0 +-0.589726,0.511419,-0.143411,0.298476,-0.395213,-0.844627,-0.852332,-0.905383,-0.52861,-0.387417,-0.511289,-0.789517,1.23996,1.65732,0.617421,1.13666,-0.870142,-0.0794965,0.626946,-0.322893,0.465884,-0.220129,0.0393282,0.752267,-0.280396,0.629604,0.359193,0.253891,0.0943682,0.0727998,0.0897408,0.12731,0 +-0.712539,0.900646,0.379922,0.569937,-0.633043,-0.521344,-0.536026,-0.608966,0.36468,-0.0610365,-0.159163,-0.442647,1.29968,1.60068,0.852322,1.37324,-0.589087,0.299276,1.02016,0.00973445,0.836681,0.212154,0.3459,0.784919,-0.0910798,0.821579,0.607207,0.653571,0.548349,0.507811,0.520904,0.567309,0 +-0.359913,0.130308,-0.129849,-0.215042,-0.212553,-1.48659,-1.49361,-1.54682,-0.552217,-0.630064,-0.695578,-1.66058,0.0535405,1.19555,0.250742,0.355385,-1.45033,-0.305922,0.804039,-0.264395,-0.0247364,-0.786788,-0.206337,0.92914,-0.269372,0.153865,0.262866,-0.0316427,-0.168328,-0.186578,-0.184349,-0.187407,0 +-0.825647,1.36339,0.355425,3.04879,-0.781131,-1.50289,-1.48833,-1.54424,-0.210914,0.315207,-0.173805,-1.2283,2.2921,2.36353,2.82215,1.80891,-1.98406,2.43758,4.23305,3.44696,1.67466,-1.48543,2.53484,1.73641,2.25589,2.05275,0.748649,0.871252,0.74792,0.635711,0.60251,0.63869,2 +-0.582201,0.541213,0.153486,0.153256,-0.378572,-0.832383,-0.840729,-0.896378,0.463416,-0.0665435,-0.129049,-0.824758,0.69225,1.5183,0.599151,0.949369,-0.81908,-0.0185699,1.05445,-0.0120336,0.431483,-0.0730899,0.0386086,0.763961,-0.169007,0.562131,0.342722,0.268882,0.168887,0.157143,0.191545,0.238909,0 +-0.517566,0.555365,0.0727802,0.828106,-0.274799,-1.20585,-1.1352,-1.05497,-0.439559,-0.087562,-0.271421,-1.45371,1.88699,2.70124,1.69689,1.04813,-1.19296,0.289831,0.784849,0.0489829,0.636671,-0.63777,0.466744,0.706992,0.114567,0.859258,0.286733,0.151907,0.0836141,0.0443454,0.0257259,0.0139623,0 +-0.668263,0.784779,0.249873,0.658059,-0.488672,-0.63786,-0.640419,-0.652222,-0.18223,0.0713708,0.733597,-0.607947,1.84235,1.93795,1.10016,1.38509,-0.680237,0.209905,0.847575,-0.129129,0.74818,-0.0643947,0.343891,0.830474,-0.110049,0.894149,0.442327,0.429784,0.316516,0.300245,0.308921,0.3456,0 +-0.690961,0.850064,0.299566,0.833463,-0.45503,-0.356205,-0.390996,-0.41921,-0.0810256,-0.221189,-0.278407,-0.254241,1.90065,1.76741,1.11434,1.46537,-0.461816,0.421039,1.00899,0.0913197,0.915338,0.210994,0.433562,0.598592,0.0102646,0.916077,0.43669,0.375314,0.279777,0.265464,0.283634,0.323283,0 +-0.544901,0.475569,-0.0647343,0.245835,-0.271491,-1.00845,-1.01342,-1.05148,-0.514588,-0.2373,-0.113038,-0.928191,1.13131,1.67109,0.599191,1.0585,-1.05955,-0.071341,0.569797,-0.246675,0.479417,-0.357364,0.129299,0.670212,-0.142742,0.704053,0.284084,0.121024,-0.00176903,-0.0324325,-0.0230573,-0.00381792,0 +-0.63729,0.78407,0.571876,0.480716,-0.47439,-0.842708,-0.900106,-0.958384,-0.27304,-0.0125532,-0.40082,-0.900886,0.607357,1.01646,0.613323,1.0076,-0.836201,0.41859,1.50175,0.446415,0.682746,-0.193714,0.405227,0.869663,0.172536,0.734647,0.404858,0.458878,0.415322,0.433922,0.47338,0.518575,0 +-0.404348,0.135086,-0.234431,-0.264185,-0.233112,-1.23327,-1.23658,-1.26886,-0.285084,-0.574365,-0.502524,-1.3718,-0.209805,0.524892,-0.330809,0.276828,-1.15567,-0.323832,0.652742,-0.389496,0.0106142,-0.488082,-0.260467,0.828805,-0.364,0.120554,0.268503,0.0153415,-0.140043,-0.184999,-0.172615,-0.131658,0 +0.0595573,-0.343861,-0.380011,-0.34593,0.0603669,-1.23589,-1.28273,-1.20555,-0.288342,-0.643477,-0.550008,-1.38041,-0.0613565,1.33947,0.175683,-0.178592,-1.20075,-0.451263,0.681806,-0.336066,-0.430534,-0.331528,-0.374085,0.877299,-0.318165,-0.349198,-0.0467944,-0.34715,-0.442147,-0.436371,-0.434372,-0.439059,0 +-0.512199,0.466824,0.130399,0.121343,-0.260317,-1.32556,-1.32991,-1.37852,-0.195003,-0.685034,-0.750748,-1.47691,0.29062,1.19051,0.172485,0.623178,-1.30255,0.0533206,0.934997,-0.160772,0.445666,-0.687413,0.0994252,0.997533,-0.157993,0.530589,0.225076,0.117166,0.0790466,0.0968566,0.133947,0.209445,0 +-0.486993,0.361292,0.069592,-0.089211,-0.235701,-1.65824,-1.68051,-1.72696,0.209785,-0.36359,-0.548809,-1.8674,0.048903,0.76524,-0.139664,0.519945,-1.61362,-0.12797,0.769188,-0.264115,0.282405,-1.20256,-0.0855233,0.809776,-0.209805,0.354295,0.241238,0.0993054,0.00921494,0.0102041,0.0266954,0.0904903,0 +-0.434132,0.249713,-0.259367,0.252032,-0.0401379,-1.48003,-1.48501,-1.49975,-0.391325,-0.717007,-0.705853,-1.60047,1.11126,1.90078,0.672681,0.925262,-1.50255,-0.135256,0.781381,-0.288412,0.249873,-0.960103,-0.0410477,0.906842,-0.259258,0.392025,0.0808556,-0.177293,-0.267203,-0.282435,-0.276129,-0.259108,0 +-0.383829,0.184919,-0.385828,0.696228,0.0216282,-0.919515,-0.921804,-0.905633,-0.196372,-0.574055,-0.493789,-1.08575,1.6548,2.42119,1.05485,0.844417,-0.87447,0.12767,1.16643,-0.102334,0.352107,-0.302554,0.105132,1.07723,-0.226695,0.445485,0.0350507,-0.315827,-0.404298,-0.416802,-0.399151,-0.376314,0 +-0.349628,0.119095,-0.0526509,-0.231293,-0.197991,-1.39053,-1.37845,-1.33118,-0.497897,-0.323712,-0.466234,-1.43559,-0.111219,0.998412,0.0184597,0.14652,-1.38731,-0.216132,0.839319,-0.209645,0.154645,-0.549698,-0.108591,0.962662,-0.203088,0.292649,0.175943,-0.011024,-0.140383,-0.138254,-0.0836341,-0.0223777,0 +-0.0773276,-0.281056,-0.365059,-0.385958,0.106492,-1.9691,-1.95625,-1.94221,-0.597732,-0.610405,-0.445366,-2.36834,-0.34632,0.788078,-0.0953678,-0.159812,-1.93881,-0.405238,0.790996,-0.187337,-0.306992,-1.43564,-0.370397,0.942043,-0.225486,-0.288392,-0.113408,-0.43733,-0.533158,-0.544492,-0.548959,-0.540553,0 +-0.753227,1.05896,0.337105,0.94767,-0.624347,-1.70261,-1.59689,-1.50323,-0.349818,-0.444636,-0.294059,-1.38466,0.644166,-0.931929,0.459978,1.02294,-1.95406,0.844826,-0.41877,0.270032,1.23916,-1.68448,1.73313,-1.18126,1.0866,1.63846,0.518585,0.683195,0.479327,0.428705,0.431873,0.425087,2 +-0.154325,-0.471751,-0.735326,-0.429504,0.519635,-2.96459,-2.97156,-2.94081,-0.662916,-0.822539,-0.827816,-3.39624,-0.306752,0.308411,-0.452932,0.21889,-3.53228,-0.616982,0.222008,-0.56593,-0.285493,-2.80526,-0.357164,0.561492,-0.456609,0.161211,-0.41887,-0.990796,-1.13945,-1.11345,-1.13963,-1.14392,0 +-0.743252,0.942203,0.0869225,1.19845,-0.417301,-0.335976,-0.411474,-0.359603,-0.508441,-0.513798,-0.392245,-0.156304,1.4289,0.709781,0.772216,1.59024,-0.490591,0.900766,0.853402,0.267573,1.26452,0.0125831,0.884954,0.497237,0.126381,1.33835,0.390716,0.299116,0.216251,0.185918,0.206177,0.27356,0 +0.507132,-0.780872,-0.60036,-0.336645,0.406247,-2.05892,-2.01506,-1.91549,-0.586368,-0.581041,0.0809955,-2.75787,-0.245385,1.57666,0.54741,-0.767529,-1.99369,-0.478368,1.08166,-0.0499828,-0.932009,-1.40252,-0.454881,1.08639,-0.209645,-0.780702,-0.38333,-0.776494,-0.835821,-0.831174,-0.833273,-0.831824,0 +-0.170127,-0.123412,-0.496447,0.0082555,0.0824248,-1.39532,-1.36975,-1.32186,-0.420249,-0.721784,-0.556085,-1.70614,0.294079,1.692,0.439019,0.162601,-1.29365,-0.234601,1.03651,-0.134396,-0.032642,-0.812384,-0.268283,0.957405,-0.311329,-0.0299237,-0.0426767,-0.382,-0.496008,-0.487453,-0.478997,-0.460937,0 +0.00263856,-0.556964,-0.56528,-0.303673,0.124632,-1.72987,-1.66474,-1.6452,-0.526181,-0.625657,-0.566849,-2.00932,-0.293839,1.54581,0.694029,-0.58294,-1.76263,-0.304613,1.5676,0.452042,-0.575474,-0.815333,-0.403069,0.873231,-0.203758,-0.472761,0.0461246,-0.526531,-0.694529,-0.757155,-0.816162,-0.840279,0 +-0.444866,0.448174,-0.0501223,0.82068,-0.21845,-0.992146,-0.866075,-0.742363,0.137664,-0.307771,-0.0778673,-1.22333,1.59878,2.82945,1.81295,0.879397,-1.05556,0.353836,1.45568,0.420919,0.480556,-0.228335,0.329049,0.900376,0.0445058,0.621099,0.204388,0.0995953,0.0151517,-0.0176506,-0.0118035,-0.00605669,0 +-0.690381,0.807357,0.335476,0.267863,-0.706293,-1.34507,-1.37215,-1.47156,0.338344,0.0420269,-0.129389,-1.00173,0.0975264,0.91066,0.0239467,0.557614,-1.50538,0.340503,1.1855,0.235001,0.916337,-1.02466,0.347109,0.951738,0.111599,0.958004,0.646745,0.756155,0.623878,0.553236,0.544711,0.572476,2 +-0.430484,0.227155,-0.0684323,-0.27366,-0.302994,-0.6378,-0.657679,-0.745071,-0.235071,-0.422578,-0.616502,-0.641428,-0.234531,0.522154,-0.331718,0.224727,-0.599171,-0.265474,0.58382,-0.311309,0.144651,0.137065,-0.212034,0.547989,-0.266034,0.174804,0.301594,0.12801,-0.0143022,-0.0433565,-0.0421468,-0.0313628,0 +-0.126501,-0.196852,-0.458008,-0.272421,0.215112,-1.91229,-1.84784,-1.72323,-0.484694,-0.750688,-0.469213,-2.12518,-0.490141,0.589986,-0.0988359,-0.43693,-1.96317,-0.256399,0.237919,-0.204768,0.0576784,-1.34549,-0.14552,0.256899,-0.221648,0.194693,-0.134396,-0.609206,-0.703724,-0.684185,-0.670272,-0.65563,0 +-0.699406,0.919486,0.256549,0.610805,-0.504123,-1.10621,-1.08809,-0.957814,-0.497637,-0.388057,-0.513638,-0.790087,0.27365,0.676069,0.0460946,0.858849,-1.27259,0.669253,0.429684,0.411604,1.14342,-0.526231,1.21659,-0.719805,1.04335,1.38315,0.461977,0.435781,0.29162,0.284304,0.294558,0.352966,0 +-0.826347,1.33531,0.828775,0.905703,-1.0483,-0.680806,-0.700266,-0.797752,2.32645,1.02652,0.0803359,0.0565789,0.882835,0.900386,0.369227,1.25346,-1.06213,0.890371,0.942972,0.450033,1.34398,-0.189076,0.91064,0.657709,0.199461,1.38184,0.957864,1.39632,1.33754,1.23139,1.16926,1.1816,2 +-0.727851,0.841029,0.162061,0.175604,-0.796403,-0.782081,-0.81979,-0.901445,-0.0244166,0.0488132,-0.335876,-0.369148,-0.0318327,0.389606,-0.322023,0.642877,-0.923123,0.191565,0.605698,-0.178212,0.898157,-0.353356,0.148528,0.713828,-0.239109,0.869593,0.751198,0.89307,0.697677,0.584639,0.561562,0.603029,2 +-0.835811,1.49817,1.7659,1.13128,-1.16015,-0.830654,-0.918626,-1.03698,2.05034,1.42046,1.20701,-0.416152,1.13475,1.62874,0.979742,1.21303,-1.04763,1.27782,2.22071,1.33241,1.33799,-0.405557,1.28112,0.997493,0.937796,1.35425,1.00114,1.69463,1.8208,1.71697,1.67179,1.68245,2 +-0.733777,1.09005,1.08698,1.19341,-0.630724,-0.51033,-0.657909,-0.777853,0.538275,0.245115,0.154805,-0.385309,1.25006,2.19716,1.26469,0.991396,-0.651173,1.14005,2.73941,1.32672,0.939285,-0.0597073,0.843757,1.0124,0.553057,0.860458,0.457359,0.896018,0.944592,0.988707,1.01431,1.06253,2 +-0.672111,0.714188,0.0541305,0.3829,-0.450543,-0.239559,-0.260337,-0.294209,-0.121723,-0.380261,-0.454291,-0.0168208,1.05582,1.09729,0.36345,1.24671,-0.324762,0.111799,0.653841,-0.196712,0.750179,0.252481,0.102604,0.553506,-0.21857,0.725352,0.42004,0.371516,0.228275,0.190075,0.206607,0.243996,0 +-0.793605,1.14865,0.518006,0.659488,-0.890761,-0.414992,-0.452502,-0.518555,0.446035,0.804628,-0.194463,0.170576,0.992185,1.03039,0.397412,1.24522,-0.730549,0.52835,0.740104,0.136495,1.1532,0.215342,0.543362,0.484924,-0.0121731,1.11457,0.807787,1.088,0.998592,0.889792,0.868604,0.923473,2 +-0.399971,0.122403,-0.398081,-0.112988,-0.0861427,-1.01304,-1.01232,-1.05707,-0.548629,-0.670612,-0.622039,-0.989927,0.411204,1.04817,-0.0184,0.634402,-0.935027,-0.338434,0.448784,-0.451832,0.122203,-0.688862,-0.318036,0.588927,-0.431743,0.151617,0.102074,-0.198871,-0.344541,-0.368898,-0.347539,-0.313898,0 +-0.708411,0.831694,0.170926,0.360272,-0.645256,-1.1483,-1.15689,-1.24367,0.54604,-0.286193,-0.392505,-0.690961,0.6016,0.847805,0.308511,1.04745,-1.33925,0.221808,0.645496,-0.0723705,0.91202,-0.613383,0.323292,0.623038,-0.0410973,1.00402,0.614863,0.650923,0.498916,0.442537,0.45625,0.49264,2 +-0.65624,0.785389,0.605258,0.339854,-0.541993,-0.226876,-0.295078,-0.311019,0.143781,0.540933,0.0325221,-0.106572,1.24154,1.50249,0.631084,1.17707,-0.304453,0.14633,0.863026,-0.064115,0.621679,0.457409,0.220219,0.560113,-0.0733396,0.605048,0.493299,0.540373,0.499586,0.485403,0.504463,0.550158,0 +-0.495868,0.318445,-0.153246,0.0051572,-0.248544,-0.293149,-0.316956,-0.29082,-0.135566,-0.487433,-0.213563,-0.149568,0.81983,1.32417,0.249943,0.850883,-0.3095,-0.261097,0.552547,-0.377773,0.216531,0.395553,-0.180351,0.623368,-0.360352,0.295957,0.284894,0.039948,-0.0848534,-0.11001,-0.111629,-0.0718806,0 +-0.568698,0.500915,-0.019759,0.251532,-0.338194,-0.293509,-0.321594,-0.384809,-0.530119,-0.252741,-0.31027,-0.223587,1.14082,1.51526,0.52818,1.07516,-0.339933,-0.0583681,0.81949,-0.267064,0.389277,0.363061,0.00119914,0.832963,-0.305432,0.416741,0.320744,0.238799,0.139334,0.135216,0.152976,0.214103,0 +-0.551178,0.495648,0.141912,0.0264755,-0.445825,-0.705273,-0.727901,-0.769208,-0.0246265,-0.488152,-0.197052,-0.749399,0.104972,0.639719,-0.203888,0.642817,-0.669393,0.00146906,0.860188,-0.177923,0.379782,0.128909,0.0668831,0.839379,-0.172065,0.428854,0.427525,0.362761,0.245465,0.261636,0.294279,0.357084,0 +-0.495898,0.392685,0.245545,-0.207116,-0.340663,-0.972826,-1.02762,-1.10378,-0.202339,-0.183249,-0.0252962,-0.973856,-0.00639661,0.702635,-0.155185,0.487822,-0.950928,-0.176004,0.703234,-0.259098,0.244786,-0.223987,-0.0814955,0.735556,-0.193674,0.337035,0.311549,0.246725,0.16368,0.156794,0.149458,0.159293,0 +-0.666824,0.842888,0.671602,0.577283,-0.512489,-0.923593,-0.98438,-0.998012,0.340813,1.18973,0.50919,-0.917767,1.65977,2.10329,1.223,1.33448,-0.943932,0.288961,1.00082,0.0482933,0.760713,-0.452052,0.511479,0.892061,0.172306,0.959683,0.495298,0.521794,0.494439,0.468273,0.463966,0.493869,0 +-0.274419,-0.0998553,-0.598162,-0.0668733,0.114377,-0.916437,-0.915188,-0.934717,-0.680806,-0.582181,-0.489082,-0.979073,0.591865,1.6796,0.357943,0.49183,-0.846076,-0.392225,0.569008,-0.431294,-0.0699016,-0.303903,-0.343382,0.726581,-0.424777,0.0336614,-0.0987359,-0.458668,-0.605588,-0.604179,-0.595853,-0.573815,0 +-0.615382,0.645896,0.497567,0.0297237,-0.429045,-0.667654,-0.737685,-0.773715,-0.317496,-0.363181,-0.60106,-0.620809,0.231293,0.664665,-0.000669775,0.785269,-0.696428,0.0354504,0.675469,-0.0728302,0.58288,0.119584,0.161711,0.297197,0.152217,0.621679,0.362371,0.350238,0.296927,0.267293,0.271921,0.319415,0 +-0.481246,0.339104,-0.0170305,0.0472241,-0.204468,-0.628645,-0.658169,-0.682186,0.0189995,-0.0240968,-0.121413,-0.532778,0.859028,1.7004,0.519385,0.838,-0.653881,-0.202619,0.684284,-0.266454,0.227155,0.124462,-0.100385,0.646845,-0.246315,0.341233,0.208625,0.0396082,-0.0406177,-0.0726504,-0.0734797,-0.0531309,0 +0.0634752,-0.496508,-0.568888,-0.596243,0.102564,-1.84487,-1.90581,-1.96765,-0.723183,-0.694589,-0.652302,-2.01902,-0.574655,0.356574,-0.500346,-0.518576,-1.79967,-0.612504,0.398221,-0.498846,-0.609006,-1.47457,-0.603569,0.551827,-0.479327,-0.623348,-0.0417372,-0.459648,-0.593394,-0.606807,-0.600221,-0.60157,0 +-0.391495,0.194563,-0.360712,0.148988,-0.00801556,-1.37526,-1.35629,-1.2966,-0.286983,-0.575424,-0.58389,-1.43999,0.632653,1.52652,0.277917,0.562371,-1.33765,-0.108111,0.543462,-0.296058,0.427665,-0.943053,-0.113168,0.654961,-0.32719,0.417631,0.0604668,-0.251122,-0.357194,-0.376304,-0.369567,-0.339754,0 +0.226266,-0.687993,-0.649044,-0.684335,0.250213,-1.87502,-1.88464,-1.89243,-0.485164,-0.74736,-0.621399,-2.23908,-0.726092,0.211264,-0.576604,-0.735466,-1.70927,-0.708112,0.288771,-0.558564,-0.844996,-1.55946,-0.686174,0.521854,-0.521514,-0.855261,-0.240598,-0.650663,-0.761702,-0.763042,-0.755635,-0.736156,0 +-0.420799,0.191335,-0.408656,0.178092,-0.032652,-1.2056,-1.19814,-1.17917,-0.485883,0.131598,-0.242927,-1.19669,1.14401,1.7702,0.596083,0.858959,-1.19363,-0.257469,0.501695,-0.376084,0.244336,-0.725462,-0.10923,0.67419,-0.307411,0.433682,0.0650942,-0.225676,-0.348919,-0.371686,-0.362581,-0.340613,0 +-0.325012,0.119464,-0.249953,-0.115037,-0.0310529,-1.22343,-1.20273,-1.18673,-0.0445256,-0.417651,-0.323622,-1.33206,-0.0604569,0.800121,-0.0262557,0.290111,-1.20525,-0.176443,0.323872,-0.122873,0.231973,-0.343362,-0.0231375,0.139573,-0.0118433,0.391185,0.0420569,-0.281126,-0.381661,-0.36449,-0.381561,-0.38298,0 +0.423618,-0.946841,-0.768208,-0.799072,0.477838,-1.58539,-1.58062,-1.52347,-0.515887,-0.771107,-0.499396,-1.92793,-0.925202,0.0121333,-0.650373,-1.13289,-1.40766,-0.78474,0.0911499,-0.586458,-0.939415,-0.850054,-0.741903,0.347709,-0.543432,-0.863236,-0.368598,-0.906183,-1.0335,-1.04748,-1.05052,-1.06106,0 +0.206637,-0.63728,-0.572905,-0.678468,0.198761,-1.6349,-1.66656,-1.65951,-0.462486,-0.727601,-0.590676,-1.88542,-0.775505,0.202819,-0.576164,-0.908322,-1.47139,-0.665535,0.352936,-0.533268,-0.772396,-1.05136,-0.652392,0.556375,-0.51053,-0.766799,-0.0996954,-0.587018,-0.69354,-0.704034,-0.705533,-0.724872,0 +-0.0284944,-0.289261,-0.416511,-0.432433,0.0899507,-1.61643,-1.62465,-1.61818,-0.21818,-0.465125,-0.593364,-1.90564,-0.396702,0.641538,-0.295388,-0.272031,-1.51284,-0.467054,0.543152,-0.377943,-0.310719,-0.988348,-0.440059,0.691001,-0.375634,-0.278737,-0.0403479,-0.374315,-0.483765,-0.490271,-0.464515,-0.426596,0 +-0.706293,1.02722,0.724193,1.28025,-0.384259,-1.18024,-1.10516,-1.02133,-0.211644,0.123322,0.0317925,-1.21658,2.38137,2.62274,2.1968,1.62895,-1.32615,0.822918,1.4693,0.875879,1.12652,-0.867964,1.19737,0.451053,1.05111,1.40939,0.350598,0.339394,0.344201,0.384319,0.458379,0.523863,0 +-0.851903,1.56663,1.40968,1.59955,-1.0642,-0.513908,-0.575374,-0.660877,2.61352,1.40567,0.595473,-0.0396783,1.63693,1.5024,1.09205,1.48438,-0.811365,1.54625,1.9338,1.35574,1.49883,-0.101774,1.39855,0.894429,0.603679,1.41579,0.913889,1.58398,1.70401,1.63384,1.59485,1.58268,2 +-0.827826,1.55284,0.931989,4.28898,-0.792395,-1.15766,-1.22478,-1.40499,0.432013,-0.204508,0.121653,-1.22419,4.53306,-1.18215,7.41656,2.15451,-1.50936,2.93689,0.300285,4.12902,1.63186,-1.00699,5.91291,-10.1453,12.6856,2.01687,0.688142,1.02634,1.03929,1.05645,1.06431,1.11011,2 +-0.647385,0.941104,0.541973,1.70562,-0.296497,-0.646475,-0.579792,-0.541173,-0.266134,0.261956,0.0410674,-0.923214,2.33543,3.55649,3.00221,1.32371,-0.65524,1.18651,2.56736,1.40666,0.906253,-0.0196293,1.01878,0.691371,0.851423,0.900126,0.225296,0.487542,0.512469,0.569307,0.602919,0.640469,0 +-0.557484,0.457279,-0.0951276,0.247524,-0.187527,-1.46047,-1.50354,-1.52395,-0.504353,-0.317226,-0.342732,-1.52014,1.02757,1.39759,0.425107,1.11484,-1.41177,-0.0660939,0.705803,-0.298416,0.458159,-1.35356,0.00276828,0.762312,-0.27304,0.586418,0.19974,0.0134825,-0.0607467,-0.0764484,-0.0672531,-0.0360702,0 +-0.744951,1.22181,1.37078,1.75233,-0.452782,-0.463706,-0.512359,-0.571017,0.944402,0.222058,0.243067,-0.508681,2.83206,2.36073,3.07283,1.68969,-0.572346,1.34748,2.16897,1.57242,1.05028,0.0372995,1.33283,0.120784,1.2789,1.07978,0.305003,0.715707,0.80164,0.860747,0.92916,0.995014,2 +-0.823238,1.35426,0.706083,1.56876,-0.910181,-0.8934,-0.931329,-0.998392,1.27892,0.36478,0.094698,-0.41907,1.70092,1.50998,1.01719,1.55045,-1.17634,1.28126,1.56913,0.961762,1.47802,-0.684085,1.22083,0.987128,0.487543,1.56286,0.817991,1.1557,1.11089,1.03896,1.02357,1.04173,2 +-0.572436,0.627046,0.38301,0.427066,-0.353176,-0.623448,-0.641248,-0.714538,-0.076628,-0.443926,-0.329829,-0.639799,1.18243,1.73267,0.859208,0.996953,-0.602859,0.189096,0.833792,0.0715305,0.604548,-0.0407277,0.297986,0.431333,0.139204,0.725412,0.32781,0.243876,0.207676,0.2189,0.232922,0.249413,0 +-0.137205,-0.278117,-0.482815,-0.604368,-0.0584379,-0.213993,-0.284404,-0.315537,-0.363371,-0.283305,0.107261,-0.281396,-0.634862,0.136255,-0.548319,-0.326201,-0.110609,-0.623678,0.187787,-0.533398,-0.376324,0.461667,-0.481416,0.277958,-0.450333,-0.217031,0.0893409,-0.322643,-0.513478,-0.588038,-0.617002,-0.640299,0 +-0.837521,1.49123,1.56649,1.02417,-1.19844,-0.985389,-1.05783,-1.12282,1.21646,2.00718,0.430534,-0.625687,1.03836,1.42532,0.866484,1.29325,-1.22937,1.13748,2.02256,1.14238,1.34116,-0.571666,1.18457,1.25839,0.640579,1.42529,1.07546,1.7403,1.82392,1.73354,1.68707,1.71121,2 +-0.511389,0.536146,0.47366,0.325621,-0.316077,-1.03675,-1.05235,-1.08243,-0.505393,-0.210415,-0.326001,-1.1933,0.445965,1.74734,0.758224,0.548969,-1.01648,0.330938,1.53218,0.484844,0.507592,-0.479287,0.422688,0.807977,0.317866,0.628025,0.265994,0.179102,0.0902105,0.0946778,0.111849,0.186318,0 +-0.823638,1.29811,1.11195,0.231163,-1.24752,-0.0265254,-0.0460848,-0.098346,3.70827,2.1336,0.335666,0.502724,0.0226175,-0.0148019,-0.275359,0.787048,-0.290221,0.504803,0.185528,0.0503322,1.15511,0.470742,0.548269,0.0105542,-0.0260455,1.09731,1.14483,1.76749,1.811,1.61339,1.51199,1.49977,2 +-0.378542,0.0508021,-0.299905,-0.462156,-0.341203,0.306292,0.31047,0.338224,0.0348009,-0.495928,-0.598861,0.374764,-0.603739,0.161941,-0.540364,-0.215002,0.29086,-0.335086,-0.340673,-0.325791,0.00656645,0.696198,-0.178043,-0.386088,-0.167288,0.0298335,0.376343,0.130228,-0.113288,-0.185519,-0.208815,-0.21873,0 +-0.439049,0.195932,-0.014272,-0.321793,-0.209055,1.62404,1.61279,1.53179,0.317066,-0.0797463,0.386698,1.4656,-0.345491,0.290451,-0.425727,-0.257199,1.44351,-0.260517,0.381571,-0.338295,0.00379797,1.46833,-0.460887,0.223677,-0.412863,-0.450203,0.0589276,0.223387,0.114017,0.0932985,0.0869423,0.0846036,2 +-0.646285,0.740314,0.189116,0.715418,-0.36383,-0.51058,-0.540164,-0.593524,0.247494,-0.357444,-0.230504,-0.50992,1.47338,1.54213,0.908112,1.28072,-0.499196,0.378172,0.974345,0.174924,0.835642,-0.167728,0.360882,0.570107,0.0398883,0.901285,0.34651,0.264645,0.171856,0.18224,0.207356,0.246455,0 +-0.611574,0.597902,0.317086,-0.119964,-0.581251,-1.18237,-1.20905,-1.2279,0.321713,-0.338634,-0.40035,-1.20487,0.180911,0.825547,-0.00613678,0.694349,-1.13274,-0.151417,0.613083,-0.295228,0.412314,-0.567269,0.0821947,0.682985,-0.0880915,0.63836,0.581971,0.589516,0.458039,0.426176,0.421969,0.448394,0 +-0.605488,0.680737,0.817312,0.00988461,-0.598702,-0.6373,-0.72938,-0.781831,-0.0388987,0.00559688,-0.307321,-0.704214,0.421589,1.14424,0.320604,0.781661,-0.615572,0.0741192,0.957335,-0.00432783,0.449793,0.162801,0.207936,0.543502,0.137055,0.475499,0.551327,0.628475,0.577513,0.561372,0.568338,0.602519,0 +0.209685,-0.877049,-0.730429,-0.83864,0.0861828,1.08199,1.07543,1.08224,-0.294059,-0.644896,-0.679717,0.847875,-0.942053,-0.00822551,-0.665755,-1.14995,1.13151,-0.82052,0.089091,-0.600251,-1.0545,1.10689,-0.816042,0.350068,-0.562621,-1.20181,-0.0063266,-0.560213,-0.764591,-0.797603,-0.83872,-0.877968,0 +-0.457709,0.402819,0.42007,0.228904,-0.20133,-1.76477,-1.79804,-1.80505,-0.143811,-0.420629,0.0632352,-2.08348,0.699306,2.38307,1.36575,0.719715,-1.73292,0.122613,1.7984,0.392834,0.232882,-1.24133,0.25405,1.66281,0.244016,0.441138,0.154895,0.0337314,-0.0349009,0.0172103,0.0378393,0.0708711,0 +-0.539024,0.488102,0.154375,0.0623158,-0.270382,-1.4894,-1.50125,-1.55496,-0.297127,-0.541223,-0.459888,-1.69137,0.194943,0.814733,-0.0675831,0.668463,-1.41282,-0.00447767,0.859128,-0.21944,0.453571,-1.13095,0.056139,0.959334,-0.169487,0.531488,0.276228,0.115167,0.0663836,0.0716804,0.0973866,0.137435,0 +-0.0204088,-0.411914,-0.225096,-0.733757,-0.177473,-0.330379,-0.373165,-0.331108,0.362271,-0.320174,-0.448884,-0.386788,-0.585019,0.453961,-0.371097,-0.65663,-0.193544,-0.675589,0.186088,-0.494349,-0.746401,0.464415,-0.578243,0.329089,-0.40031,-0.65708,0.226106,-0.0975565,-0.305882,-0.342422,-0.377043,-0.390126,0 +0.445586,-0.787678,-0.700485,-0.597472,0.296967,-0.462116,-0.499966,-0.447984,-0.289811,-0.651682,-0.388287,-0.596813,-0.410185,0.574965,-0.390626,-0.618611,-0.248264,-0.704843,0.181081,-0.566419,-0.906203,0.0697017,-0.699656,0.406447,-0.531888,-0.882126,-0.223627,-0.727611,-0.833913,-0.860258,-0.888533,-0.899297,0 +-0.464125,0.438639,0.183879,0.124882,-0.285074,-0.548249,-0.527651,-0.530339,-0.16331,0.438609,0.262276,-0.652282,0.557464,1.40637,0.469182,0.726411,-0.526021,-0.0037081,0.573935,0.0150116,0.330299,0.231563,0.094368,0.205387,0.0366901,0.375704,0.270771,0.183139,0.121343,0.100784,0.0925493,0.124722,0 +-0.479207,0.373905,-0.00556676,0.123282,-0.229394,-0.701635,-0.720275,-0.698637,-0.0531808,-0.45509,-0.237949,-0.664755,1.00101,1.39344,0.611664,0.964141,-0.662316,-0.174464,0.572856,-0.305093,0.276778,-0.0611065,-0.0322625,0.669343,-0.238669,0.442547,0.271101,0.0415071,-0.0828346,-0.0920198,-0.0605867,-0.0332318,0 +-0.207396,-0.385119,-0.687183,-0.542442,0.187447,0.858489,0.912109,0.962332,-0.150268,-0.71085,-0.708221,0.676309,-0.406557,0.107471,-0.54786,0.0363,0.885494,-0.643757,0.0570886,-0.571896,-0.325302,0.954546,-0.672471,0.306312,-0.538205,-0.568198,-0.0968569,-0.621019,-0.773636,-0.825268,-0.872501,-0.905413,0 +-0.761092,1.14622,0.872272,1.18428,-0.771227,-0.402429,-0.465265,-0.603069,0.0092249,0.552837,0.229344,-0.463965,1.72481,2.35408,1.55659,1.33962,-0.479787,0.934677,2.10205,0.72929,1.01039,0.00620656,0.795723,1.28692,0.222288,0.931719,0.684614,0.930559,0.912609,0.913599,0.906493,0.934237,0 +-0.599471,0.742643,0.388757,0.590136,-0.369457,-1.10494,-1.1069,-1.1174,-0.230843,-0.149668,-0.016501,-1.3127,1.30057,1.39913,1.13245,1.23943,-1.06027,0.300945,0.763291,0.154325,0.735087,-0.626236,0.442107,0.683645,0.154445,0.914088,0.336305,0.306062,0.272291,0.285213,0.330239,0.370377,0 +-0.813144,1.31114,0.91169,0.942153,-0.994484,-0.969998,-0.982901,-1.04355,0.147619,1.07822,0.366739,-0.486113,1.34034,1.28917,0.982501,1.4905,-1.24923,0.795403,1.3346,0.610295,1.25742,-0.616482,0.973336,0.761982,0.43758,1.44889,0.905193,1.31409,1.2783,1.21129,1.20167,1.24926,2 +-0.278827,-0.130738,-0.352806,-0.696848,-0.493929,-0.806407,-0.85605,-0.857449,0.36507,0.0584779,-0.243017,-0.85603,-0.687823,0.153076,-0.566769,-0.493159,-0.52772,-0.642498,0.142981,-0.556565,-0.399811,-1.01061,-0.602719,0.393594,-0.514757,-0.363261,0.533068,0.376863,0.152127,0.0428262,-0.00317822,-0.021848,2 +-0.824368,1.57513,2.24993,0.991586,-1.03791,-0.665925,-0.71047,-0.78414,1.76781,1.58324,2.43695,-0.235831,1.35563,-0.917417,0.905373,1.64762,-0.755335,1.22769,-0.434002,0.861567,1.4603,-1.15036,1.29694,-0.769798,0.931499,1.60074,0.943312,1.57623,1.97343,2.12013,2.16186,2.19119,2 +-0.87493,1.90079,3.21638,1.91271,-1.11081,0.0805458,0.0220978,-0.0549398,3.75514,2.84419,3.5989,0.490101,2.22579,-2.04007,2.09871,1.80982,-0.156894,2.13104,-1.29481,1.95004,1.77722,-0.392705,2.33079,-2.03192,2.27632,1.97395,1.03127,1.73285,2.22975,2.44772,2.5119,2.51132,2 +0.380341,-0.821879,-0.61901,-0.777104,0.110449,-0.204598,-0.215102,-0.214902,-0.52763,-0.417631,-0.63823,-0.315447,-0.660038,0.289251,-0.545711,-0.797532,0.0322924,-0.791616,0.134676,-0.588187,-1.10853,-0.0568089,-0.743382,0.348859,-0.52891,-1.00217,-0.0380492,-0.506652,-0.663736,-0.691811,-0.691381,-0.722923,0 +0.441728,-0.644287,-0.518265,-0.642078,0.170327,-1.29557,-1.26642,-1.16547,-0.569967,-0.578483,-0.677638,-1.43277,-0.785189,0.155854,-0.580961,-1.11474,-0.988467,-0.558574,-0.140093,-0.497597,-0.794424,-1.71587,-0.567709,0.172246,-0.483595,-0.650943,-0.114547,-0.477988,-0.549988,-0.579043,-0.631434,-0.663556,0 +-0.366619,-0.089451,-0.563151,-0.481686,-0.18216,-0.584859,-0.596443,-0.587318,-0.522553,-0.362921,-0.424177,-0.566449,-0.307551,0.150997,-0.483515,0.226276,-0.373325,-0.590556,0.0986458,-0.567449,-0.149868,-0.700546,-0.404228,0.188207,-0.471461,0.0731697,0.219919,-0.0884715,-0.315037,-0.379772,-0.387447,-0.385738,2 +-0.475749,0.187877,-0.232302,-0.537015,-0.587108,-0.920505,-0.925962,-0.978283,0.567399,0.0700415,-0.36516,-0.938275,-0.533937,0.111469,-0.541903,-0.0812555,-0.658968,-0.500995,0.113028,-0.522114,0.0104243,-1.16581,-0.478418,0.318365,-0.487762,-0.00442771,0.594124,0.569517,0.367408,0.262306,0.221159,0.208186,2 +-0.730659,0.975755,0.750928,-0.0420269,-0.903035,-0.332188,-0.374824,-0.480646,0.613673,2.205,0.202269,-0.250513,0.170656,0.0651143,-0.162521,0.850483,-0.208216,0.058098,-0.143701,-0.216132,0.754306,-0.4747,0.12802,-0.106532,-0.132737,0.80175,0.861287,1.23671,1.28542,1.19727,1.13669,1.09488,2 +0.186848,-0.467643,-0.584609,-0.559813,0.10877,-0.386858,-0.244856,-0.171676,-0.461457,-0.494828,-0.282205,-0.512459,-0.486513,0.284974,-0.460458,-0.383,-0.131458,-0.605208,0.198551,-0.542203,-0.534307,-0.358473,-0.644037,0.353966,-0.527291,-0.559173,-0.025626,-0.467543,-0.594074,-0.654971,-0.678448,-0.697177,0 +-0.841748,1.57194,2.00968,0.85733,-1.06204,-0.6734,-0.701125,-0.723883,1.13744,2.79859,1.97395,-0.294648,1.17659,-0.786049,0.681756,1.53018,-0.761522,1.04712,-0.477648,0.536166,1.429,-1.09014,1.20775,-0.657259,0.704604,1.59932,0.973126,1.6196,1.96408,2.04955,2.00116,1.95612,2 +0.323932,-0.767039,-0.686913,-0.752637,0.171106,-0.668813,-0.655091,-0.567169,-0.30946,-0.609565,-0.657949,-0.789227,-0.811885,0.0475639,-0.599631,-0.890801,-0.416132,-0.721004,0.106611,-0.576114,-0.756175,-0.527141,-0.723993,0.375114,-0.539614,-0.826816,-0.0695319,-0.564021,-0.760843,-0.815323,-0.877089,-0.920085,0 +0.293609,-0.579962,-0.464725,-0.708261,0.0427466,-0.678927,-0.635701,-0.629714,-0.321324,0.974995,-0.179102,-0.731799,-0.857879,0.110259,-0.6022,-1.12767,-0.47326,-0.572946,-0.186018,-0.503454,-0.737635,-0.595663,-0.518885,0.0475639,-0.440918,-0.628385,-0.00184905,-0.386588,-0.514448,-0.587478,-0.634862,-0.682925,0 +-0.537565,0.250273,-0.514058,-0.150907,-0.312069,-0.948869,-0.94815,-0.96569,-0.652242,-0.385119,-0.576214,-0.830734,-0.194823,-0.210634,-0.385489,0.519425,-0.80221,-0.322283,-0.0449654,-0.466344,0.352287,-1.16639,0.289381,-0.63845,0.0391787,0.815392,0.329099,0.092809,-0.170117,-0.261877,-0.281306,-0.295008,2 +-0.794994,1.21552,1.16459,0.203289,-1.00585,0.0172405,0.0194692,0.0308431,0.809196,2.76046,0.923243,0.380311,0.40134,-0.297457,-0.0472242,1.07453,-0.0651841,0.397302,-0.301285,-0.07319,1.03128,-0.159233,0.627775,-0.420409,0.126021,1.19244,0.946551,1.4158,1.55963,1.47776,1.3958,1.35422,2 +-0.640908,0.590506,0.0872123,-0.188277,-0.635142,-0.324642,-0.298486,-0.290361,-0.0828346,0.778413,-0.0387288,-0.156494,-0.0891712,0.250323,-0.404008,0.481586,-0.239239,-0.137495,-0.102614,-0.355905,0.553666,-0.421149,-0.0344313,-0.051002,-0.251572,0.596752,0.597612,0.700416,0.542073,0.431993,0.397962,0.380191,2 +-0.760363,0.985839,0.684145,-0.115077,-1.02061,-0.678358,-0.687933,-0.588767,0.385438,1.68083,0.494409,-0.153146,0.101724,0.00882514,-0.243177,0.882096,-0.772416,0.0661935,0.231743,-0.294619,0.834053,-0.726621,0.354495,0.192894,-0.141992,1.09547,0.980732,1.36422,1.32895,1.20231,1.14026,1.10538,2 +0.267083,-0.644187,-0.597102,-0.644476,0.0826747,-0.865155,-0.827376,-0.74743,-0.500795,0.114017,-0.242197,-1.13644,-0.541513,0.339114,-0.516417,-0.665725,-0.532168,-0.697377,0.213283,-0.572706,-0.834642,-0.812044,-0.677129,0.412764,-0.52781,-0.727131,-0.00457755,-0.407556,-0.555485,-0.592975,-0.623228,-0.635401,0 +-0.194064,0.261287,0.357564,0.202229,-0.240068,-0.642697,-0.646605,-0.575224,-0.206787,-0.158433,-0.101005,-0.600111,-0.0064166,0.50993,0.010634,0.0935486,-0.492749,0.343461,-0.87546,0.233092,0.179861,-0.959474,0.386348,-0.87459,0.265894,0.420039,0.269732,0.138614,0.142192,0.14619,0.136905,0.101314,0 +0.285074,-0.694529,-0.519305,-0.724253,0.0668934,-0.0810555,-0.0954277,-0.0634152,-0.089261,-0.363051,-0.595193,-0.157644,-0.547,0.30895,-0.518865,-0.641108,0.144811,-0.755216,0.117555,-0.574095,-0.998572,0.083804,-0.688932,0.32733,-0.502894,-0.811285,-0.00374801,-0.441078,-0.556585,-0.570557,-0.604508,-0.658679,0 +-0.871332,1.79993,2.75639,1.14621,-1.28582,0.0257259,-0.0451553,-0.0978263,1.18659,3.33685,2.74896,0.462276,1.53559,-0.807557,1.02608,1.68987,-0.185238,1.42977,-0.340553,1.00918,1.60697,-0.311679,1.75204,-0.991346,1.35173,1.80605,1.18985,1.98868,2.40564,2.51533,2.53238,2.51803,2 +0.112918,-0.576724,-0.604788,-0.537785,0.104353,-0.684354,-0.648694,-0.584919,-0.630744,-0.288652,-0.553156,-0.976774,-0.331578,0.36476,-0.511789,-0.434752,-0.368278,-0.651643,0.211804,-0.576974,-0.672611,-0.665205,-0.654691,0.399421,-0.532788,-0.585679,-0.00730606,-0.442777,-0.570237,-0.613963,-0.616472,-0.636271,0 +0.3468,-0.739484,-0.526921,-0.689342,0.212923,-0.966789,-0.979852,-0.970208,0.121683,-0.159393,-0.335896,-1.13195,-0.551038,0.271681,-0.550158,-0.744861,-0.602519,-0.732608,0.158943,-0.562502,-0.937056,-1.20101,-0.687723,0.395263,-0.505522,-0.778703,-0.122043,-0.602849,-0.687663,-0.713249,-0.728271,-0.753746,0 +0.185838,-0.511639,-0.469932,-0.628535,0.0791666,-0.439949,-0.41942,-0.398421,0.136865,-0.176233,-0.512559,-0.608856,-0.476828,0.256889,-0.514888,-0.470882,-0.160832,-0.659218,0.0188995,-0.534527,-0.760213,-0.380391,-0.629305,0.261686,-0.490751,-0.63851,-6.00329e-05,-0.424187,-0.518066,-0.554346,-0.589677,-0.621719,0 +0.737176,-1.07216,-0.74673,-0.782301,0.345211,-0.499816,-0.503464,-0.534457,-0.663706,-0.72947,-0.788028,-0.533447,-0.705763,0.228085,-0.562721,-0.995474,-0.270382,-0.828306,0.157733,-0.599451,-1.30958,-0.405358,-0.797862,0.398751,-0.554136,-1.2026,-0.23646,-0.82053,-0.933498,-0.942463,-0.953277,-0.973986,0 +0.0250263,-0.210215,-0.0464743,-0.426006,-0.0650843,-0.498666,-0.468193,-0.4739,-0.0751188,-0.639389,-0.511699,-0.590926,-0.483445,0.230474,-0.390866,-0.4012,-0.231773,-0.295838,-0.600381,-0.233032,-0.425307,-0.569977,-0.150238,-0.598881,-0.0182198,-0.27291,0.0966669,-0.183479,-0.2376,-0.259158,-0.286593,-0.326791,0 +-0.347819,-0.0661437,-0.766239,0.792375,0.411554,-1.81919,-1.82563,-1.84253,-0.672761,-0.768398,-0.718146,-1.91698,0.373595,-0.248044,-0.131508,0.884844,-1.87226,0.465095,-0.213083,-0.251362,0.524632,-1.94171,0.439109,-0.0538704,-0.223407,0.696338,-0.326671,-0.844766,-0.982061,-0.989937,-0.969898,-0.972187,0 +-0.887863,1.88722,2.83804,1.42087,-1.33096,-0.18206,-0.220779,-0.268013,2.06562,2.07072,2.34932,0.160302,1.8714,-0.523243,1.40988,1.85883,-0.322813,1.60649,-0.116576,1.02705,1.68585,-0.5833,1.97179,-0.866664,1.39267,1.92757,1.21991,2.05711,2.51892,2.67004,2.68596,2.66194,2 +0.740244,-0.999602,-0.657219,-0.786009,0.240928,-0.0446155,-0.0399382,-0.032792,-0.0991156,-0.47319,-0.576714,-0.2923,-0.746291,0.16463,-0.594284,-1.10351,0.274629,-0.808756,0.132407,-0.591236,-1.32498,-0.0486034,-0.772326,0.344481,-0.534667,-1.16582,-0.153806,-0.636491,-0.732448,-0.755846,-0.763661,-0.768678,0 +-0.847985,1.67446,2.16889,1.96014,-0.907082,0.228864,0.201529,0.147579,1.61494,1.31541,2.48196,0.617591,2.20914,-2.40747,2.23246,1.77622,-0.0166508,1.89403,-1.32969,1.55069,1.68711,-0.282855,2.33422,-2.41201,2.25784,1.9155,0.842118,1.31864,1.604,1.73395,1.80887,1.86179,2 +-0.794154,1.26966,1.04698,0.776364,-0.781531,-0.0688522,-0.0849535,-0.132317,0.0241667,0.661897,1.22611,0.385089,1.06085,-0.887133,0.550408,1.44933,-0.211344,0.754466,-0.256709,0.192874,1.27692,-0.404878,0.976814,-0.628405,0.420889,1.45152,0.740214,1.06211,1.17201,1.21282,1.23846,1.26444,2 +0.808057,-1.01375,-0.736106,-0.698577,0.390466,-0.80176,-0.780632,-0.762082,-0.60123,-0.623208,-0.557684,-0.926662,-0.643807,0.396243,-0.495318,-1.0024,-0.513598,-0.74786,0.249043,-0.573136,-1.1572,-0.734977,-0.753487,0.432443,-0.550788,-1.05075,-0.299786,-0.763321,-0.836821,-0.874241,-0.898567,-0.923543,0 +1.00639,-1.2001,-0.724982,-0.865215,0.247154,-0.323303,-0.251132,-0.151637,-0.339394,-0.703294,-0.65575,-0.527621,-0.939555,0.0910001,-0.627046,-1.5744,-0.0645045,-0.841318,0.124172,-0.597832,-1.46902,-0.096607,-0.803599,0.379322,-0.554935,-1.27333,-0.141722,-0.704094,-0.798462,-0.85686,-0.909711,-0.949029,0 +0.0890612,-0.34575,-0.219409,-0.323413,-0.119584,0.155485,0.0185997,-0.0868123,0.277748,1.06068,2.13888,0.00723599,0.120794,1.37146,0.0845934,-0.294129,0.351337,-0.425317,0.642257,-0.417711,-0.671891,0.0510619,-0.465655,0.701855,-0.428595,-0.560912,0.244396,-0.140683,-0.333897,-0.416412,-0.49301,-0.51049,0 +-0.71013,1.05393,0.726122,1.11902,-0.5284,-0.831074,-0.82078,-0.803639,-0.0949679,-0.262226,0.3467,-0.483385,0.644866,0.71127,0.275409,1.03794,-0.886973,1.27126,-0.854981,0.742462,1.20549,-1.26635,1.2109,-1.10208,0.618991,1.25193,0.450053,0.572456,0.60219,0.584569,0.594044,0.562012,0 +-0.678148,1.02227,0.7845,1.35438,-0.493699,-0.345111,-0.231853,-0.197152,0.174164,-0.517976,-0.221878,-0.190785,0.815392,0.81989,0.485973,1.07608,-0.383579,1.44121,-1.17252,0.974155,1.15415,-0.828276,1.41386,-1.38934,0.908842,1.2437,0.458538,0.5278,0.593824,0.592305,0.538585,0.468193,0 +-0.29246,0.246595,0.203888,-0.238179,-0.381171,-0.589517,-0.52953,-0.451962,-0.00393787,0.277178,0.388507,-0.620769,-0.257059,0.391235,-0.293119,0.0111638,-0.378492,-0.0972768,-0.374994,-0.23723,0.0344212,-0.781381,-0.0971569,-0.0739794,-0.237889,0.189706,0.429514,0.332457,0.354735,0.315527,0.227295,0.176343,0 +0.453791,-0.889902,-0.671381,-0.819091,0.179062,-0.719345,-0.697317,-0.717496,-0.38269,0.286033,0.0797562,-0.932638,-0.868124,0.0802859,-0.617431,-1.14605,-0.399601,-0.793405,0.129679,-0.585589,-1.06931,-0.590886,-0.780312,0.370877,-0.548769,-1.10611,-0.00242873,-0.590016,-0.732038,-0.787558,-0.840449,-0.862956,0 +-0.482985,0.480197,0.0500027,0.464545,-0.356285,-0.631833,-0.613094,-0.65509,-0.394983,-0.447185,-0.316476,-0.361971,-0.0634253,0.486003,-0.286363,0.374165,-0.542972,0.648724,-1.41487,0.355195,0.524452,-1.23786,0.558673,-0.897667,0.16508,0.556045,0.412923,0.317746,0.276758,0.271291,0.299596,0.318135,0 +-0.876419,1.8012,2.66222,1.09112,-1.32858,-0.0898707,-0.140453,-0.195473,2.35962,2.54827,2.72934,0.348079,1.34523,-0.78446,0.909991,1.64641,-0.232153,1.41127,-0.540094,0.960663,1.61741,-0.523083,1.6002,-0.980842,1.14732,1.77855,1.21993,2.06155,2.49942,2.60814,2.5941,2.54852,2 +0.630254,-0.814533,-0.439828,-0.715308,0.162721,-0.883145,-0.824228,-0.784929,-0.124502,-0.511669,-0.74768,-0.981651,-0.854051,-0.0284944,-0.618691,-1.18012,-0.534916,-0.629934,-0.282025,-0.461917,-1.16719,-1.33777,-0.586898,0.0289042,-0.430264,-0.906153,-0.0898108,-0.497837,-0.566479,-0.597153,-0.640159,-0.678728,0 +-0.360012,0.119095,-0.263965,-0.220629,-0.20056,-0.165129,-0.118115,0.122853,-0.417921,-0.207146,-0.0681826,0.0188496,-0.504733,0.264065,-0.51066,-0.168338,-0.0596272,-0.0283346,-0.574085,-0.288002,0.158413,-0.380931,0.0557692,-0.405847,-0.212193,0.231263,0.231793,-0.0373796,-0.203298,-0.231733,-0.23764,-0.239529,0 +0.189776,-0.540663,-0.477348,-0.721324,-0.0172405,0.0125131,0.038119,0.085643,-0.45609,-0.243376,-0.593494,0.00158908,-0.742852,0.148499,-0.597123,-0.781331,0.203338,-0.623868,-0.116086,-0.51024,-0.770078,-0.138854,-0.51006,0.0216382,-0.416102,-0.598372,0.0486432,-0.275589,-0.43787,-0.491661,-0.515277,-0.540304,0 +-0.421729,0.274829,-0.094488,-0.220389,-0.47469,0.281296,0.411814,0.540354,-0.125901,-0.304993,-0.203358,0.414073,-0.398282,0.38302,-0.440089,-0.0327021,0.290091,-0.0547101,-0.519835,-0.186628,0.191125,0.0617861,0.122633,-0.680097,0.00451772,0.27266,0.532968,0.368238,0.211924,0.146609,0.103723,0.129019,2 +-0.758254,1.17722,1.11507,0.504663,-0.794334,0.124172,0.1457,0.133217,0.0568388,0.727161,1.22144,0.717147,0.690591,-0.92885,0.445076,1.22546,-0.0814152,0.65544,-0.320594,0.23654,1.2367,-0.245285,0.89255,-0.791566,0.538795,1.39082,0.753776,1.05815,1.16574,1.20626,1.25869,1.2996,2 +-0.428505,0.121793,-0.235261,-0.502864,-0.442667,0.117705,0.0769877,0.0682726,-0.169627,0.404338,-0.215452,0.187847,-0.395023,0.227445,-0.485074,0.0261056,0.242547,-0.499736,0.137185,-0.506732,-0.012603,-0.0261957,-0.494759,0.307421,-0.464655,-0.0909003,0.459828,0.342262,0.160942,0.0683322,0.0389487,0.0245465,2 +0.462646,-0.683615,-0.508651,-0.700776,0.158083,-0.157793,-0.142562,-0.105672,-0.0850733,-0.686863,-0.733368,-0.30985,-0.754076,0.0158513,-0.58311,-0.877748,0.1452,-0.661507,-0.121763,-0.502844,-0.951588,-0.426416,-0.650833,0.148319,-0.471151,-0.888313,-0.0923894,-0.488492,-0.597842,-0.646795,-0.690021,-0.72843,0 +-0.0351107,-0.40101,-0.480436,-0.614593,-0.20044,0.216981,0.144041,0.0682526,-0.265624,-0.627536,-0.616592,0.165129,-0.484864,0.572106,-0.369807,-0.567818,0.406297,-0.624467,0.299775,-0.525032,-0.559383,0.133347,-0.63793,0.426646,-0.506302,-0.617571,0.249703,-0.0849734,-0.276908,-0.339074,-0.366639,-0.385488,2 +-0.610675,0.524782,0.0239371,-0.296277,-0.591166,-0.367718,-0.384759,-0.410415,-0.428385,-0.0774875,-0.104693,-0.00160916,-0.23706,-0.0462646,-0.392705,0.469962,-0.334127,-0.257239,-0.0106943,-0.43801,0.45666,-0.603589,-0.139724,0.0166809,-0.328949,0.5095,0.554106,0.641698,0.550558,0.488402,0.471292,0.475129,2 +0.499396,-0.907732,-0.694769,-0.774215,0.214922,-0.296108,-0.308331,-0.256389,-0.495618,-0.410795,-0.554246,-0.51002,-0.737276,0.116116,-0.622029,-0.924643,0.0393685,-0.808856,0.141712,-0.600671,-1.18072,-0.415982,-0.788757,0.363561,-0.553446,-1.11592,-0.0887314,-0.646545,-0.758864,-0.790447,-0.810785,-0.816922,0 +-0.763011,1.10976,0.847685,0.312539,-0.963162,0.447055,0.421259,0.349308,0.593184,2.16289,0.63744,0.573885,0.318255,0.00696616,-0.0483036,0.945131,0.416432,0.451402,-0.241648,0.0589275,0.985629,0.102154,0.392684,-0.416352,0.0462748,0.998452,0.864346,1.28229,1.37435,1.33541,1.31609,1.26701,2 +-0.652142,0.707012,0.58313,-0.408396,-0.936316,0.135875,0.119994,0.0391186,1.87202,1.4046,0.167808,0.336126,-0.321824,-0.0740094,-0.443367,0.335636,0.176853,-0.209275,-0.196752,-0.3829,0.375874,0.0773375,-0.0607169,-0.0586478,-0.270811,0.524982,0.889662,1.23771,1.24002,1.12674,1.03143,0.970967,2 +-0.817332,1.469,1.67464,1.57644,-0.853192,-0.186438,-0.209335,-0.231623,2.51748,1.52043,1.80953,0.186598,1.21364,-1.38866,0.745941,1.41115,-0.2914,1.73826,-1.24946,1.20288,1.46494,-0.895489,1.41129,-1.2425,0.918137,1.57613,0.808137,1.24449,1.52359,1.60768,1.60407,1.6084,2 +-0.757634,1.13445,1.11959,0.101974,-0.971647,0.115037,0.0898806,0.0739295,1.24271,1.17878,0.956305,0.740054,0.289121,-0.458548,-0.0500327,0.990197,-0.0564489,0.340323,-0.173975,-0.0341914,1.04288,-0.102344,0.594783,-0.38333,0.175084,1.21179,0.935537,1.35745,1.48736,1.47462,1.46489,1.44705,2 +-0.830115,1.53497,1.76263,1.54093,-0.831694,-0.242007,-0.282475,-0.349898,0.781691,1.89159,2.24313,0.172545,1.38883,-1.75628,1.1937,1.53224,-0.38333,1.65619,-1.47377,1.2625,1.60015,-0.901385,1.52862,-1.4765,1.16462,1.67346,0.771866,1.19332,1.45865,1.58582,1.65317,1.70719,2 +0.505403,-0.943412,-0.540673,-0.886753,0.022028,-0.148728,-0.162491,-0.179501,0.00992452,-0.392195,-0.534437,-0.170696,-0.89352,0.136485,-0.603059,-1.40474,0.0940385,-0.833113,0.0939883,-0.587778,-1.32054,-0.0840039,-0.762942,0.336515,-0.522313,-1.15218,0.0406676,-0.395443,-0.554656,-0.581921,-0.621789,-0.672511,0 +-0.280066,-0.155905,-0.404008,-0.666704,-0.294428,-1.04373,-1.08314,-1.09987,0.264025,-0.295318,-0.391285,-1.01957,-0.642558,0.12701,-0.584799,-0.385289,-0.76513,-0.643557,0.107101,-0.563741,-0.321394,-1.37234,-0.615443,0.344151,-0.519935,-0.366249,0.311749,0.0877318,-0.102564,-0.192755,-0.228545,-0.254141,2 +-0.391865,-0.058478,-0.444496,-0.61887,-0.321384,-0.233632,-0.223997,-0.231323,-0.589656,-0.085783,-0.424697,0.0461047,-0.716707,-0.027465,-0.622659,-0.361872,-0.131508,-0.571167,0.0384288,-0.564051,-0.130788,-0.471561,-0.541093,0.241967,-0.513798,-0.217291,0.312958,0.168947,-0.0142922,-0.0978466,-0.123712,-0.143491,2 +-0.761292,1.10567,0.723693,0.444536,-0.752087,-0.271371,-0.285983,-0.30991,-0.2922,0.122133,0.868623,0.411204,0.565749,-0.539134,0.143741,1.21086,-0.441048,0.465864,-0.0515918,-0.000719813,1.13039,-0.720735,0.720195,-0.4008,0.220969,1.31437,0.721894,0.957045,0.994424,0.979732,0.987039,1.02299,2 +1.2971,-1.63392,-0.875509,-0.933008,0.535137,-1.08439,-1.07042,-1.10166,-0.453411,-0.87536,-0.877688,-1.20209,-1.06762,-0.0478438,-0.684894,-1.88347,-0.787078,-0.927511,0.117455,-0.615552,-2.0243,-1.03586,-0.899247,0.371856,-0.574125,-1.83579,-0.461467,-1.05997,-1.19018,-1.17383,-1.18205,-1.19625,0 +-0.862427,1.70774,2.32847,1.11635,-1.18946,0.129339,0.0885313,0.0422868,0.845856,2.6082,2.51516,0.697247,1.30275,-0.864596,0.860128,1.57661,-0.135106,1.3874,-0.215972,0.900396,1.60865,-0.261367,1.63385,-0.803109,1.12252,1.78254,1.10247,1.7759,2.11423,2.20237,2.20391,2.20217,2 +-0.524003,0.187607,-0.543691,0.0495828,-0.0431863,0.159313,0.172445,0.198681,-0.537895,-0.641518,-0.703714,0.962262,-0.458329,-0.213003,-0.54643,0.104662,-0.0191494,0.307441,0.427225,-0.267084,0.834322,-0.479287,-0.0541905,0.367438,-0.407146,0.631913,0.0448853,-0.288102,-0.458498,-0.485904,-0.467264,-0.424877,2 +-0.517246,0.27339,-0.16332,-0.486093,-0.470472,-0.736546,-0.733757,-0.733967,-0.434152,-0.338574,-0.0975465,-0.192265,-0.414922,-0.0801461,-0.446165,0.211154,-0.724572,-0.434342,0.0931788,-0.512369,0.207026,-1.10236,-0.290161,0.199011,-0.41939,0.341133,0.466724,0.412544,0.27315,0.215362,0.229674,0.248863,2 +-0.836241,1.54353,1.75204,1.21453,-0.964301,-0.00940484,-0.0308032,-0.0904703,1.47677,0.708601,1.72987,0.576654,1.39342,-1.38333,1.08439,1.58778,-0.240628,1.27705,-0.625687,0.772036,1.52073,-0.463786,1.58476,-1.27681,1.13674,1.71229,0.900476,1.39365,1.61046,1.68748,1.7364,1.77253,2 +-0.229914,-0.380171,-0.65487,-0.667454,-0.0740593,-0.288812,-0.290231,-0.301515,-0.587398,-0.580971,-0.612304,-0.0409676,-0.716557,0.0423567,-0.625077,-0.482855,-0.186767,-0.668553,0.0814852,-0.582371,-0.356334,-0.355625,-0.646356,0.301275,-0.533527,-0.45639,0.157554,-0.258598,-0.501285,-0.549669,-0.551008,-0.551707,2 +0.320204,-0.792205,-0.690281,-0.665405,0.102324,0.19957,0.339404,0.837061,-0.461447,-0.651982,-0.593794,0.0257858,-0.824058,0.229414,-0.56578,-1.41865,0.322133,-0.622329,0.272081,-0.523923,-0.72932,0.0510619,-0.707852,0.394344,-0.544201,-0.788837,0.0322023,-0.504023,-0.691051,-0.735117,-0.791536,-0.823488,0 +-0.784969,1.22755,1.32644,0.265324,-0.995504,-0.387947,-0.415012,-0.422918,2.15454,1.94839,0.908901,0.0161711,0.393034,-0.676239,0.0282644,1.00422,-0.386718,0.462056,-0.705913,0.0687121,1.02625,-0.894089,0.603299,-0.652672,0.21952,1.13719,0.930839,1.44907,1.64064,1.65576,1.62431,1.57221,2 +-0.246465,-0.294449,-0.543971,-0.715747,-0.268683,-0.305282,-0.300345,-0.315387,-0.206497,-0.629535,-0.623188,0.081925,-0.852342,-0.029164,-0.651073,-0.753387,-0.21889,-0.662197,0.0970067,-0.581901,-0.353336,-0.566979,-0.626287,0.311179,-0.538095,-0.385039,0.278987,0.050872,-0.185009,-0.260587,-0.279657,-0.304743,2 +-0.777493,1.24028,1.39995,0.359853,-0.922374,0.526431,0.498636,0.465185,2.16665,1.51572,1.47593,1.06287,0.362251,-0.74777,0.0121732,0.945191,0.322983,0.609815,-0.806198,0.229064,1.12989,0.094668,0.767848,-0.914418,0.414983,1.21509,0.867914,1.34246,1.5534,1.56588,1.55168,1.51973,2 +0.579482,-0.934547,-0.667813,-0.800951,0.232343,-0.283504,-0.252871,-0.197422,-0.259198,-0.631234,-0.753257,-0.508921,-0.828825,0.0561492,-0.632273,-1.11348,0.0642448,-0.806588,0.137954,-0.593934,-1.15415,-0.52801,-0.774995,0.357674,-0.543162,-1.08554,-0.153576,-0.632963,-0.763311,-0.782601,-0.801201,-0.825557,0 +-0.248224,-0.0573985,-0.302584,-0.517636,-0.253201,0.535926,0.562541,0.641938,-0.304473,-0.0464945,-0.303114,0.669373,-0.626716,0.111989,-0.568938,-0.396732,0.571247,-0.409545,-0.269352,-0.415302,-0.134966,0.245765,-0.311699,-0.152456,-0.312169,-0.136495,0.264585,0.0638149,-0.0976264,-0.177553,-0.215052,-0.221289,2 +2.34325,-1.87381,-0.770147,-0.939624,0.579202,2.52123,2.49056,2.43539,-0.574435,-0.702065,-0.694719,2.09761,-1.1061,-0.0500126,-0.678838,-2.60902,2.36142,-0.895159,0.0278546,-0.58371,-2.29714,0.977624,-0.871772,0.30996,-0.552027,-1.87362,-0.505343,-1.0826,-1.13829,-1.15332,-1.18015,-1.22166,2 +0.515457,-1.06887,-0.791076,-0.812904,0.407407,-0.149098,-0.169947,-0.187607,-0.347189,-0.682795,-0.74638,-0.173375,-0.803639,0.0432263,-0.644127,-1.01717,0.136465,-0.846746,0.112398,-0.604998,-1.25815,-0.475229,-0.821759,0.348489,-0.558693,-1.26163,-0.322073,-0.87425,-0.962162,-0.961933,-0.974495,-0.976104,0 +0.101324,-0.414673,-0.381291,-0.567938,0.125821,0.0585879,0.133797,0.156904,0.00511716,-0.30931,-0.371186,0.0403678,-0.58326,0.0615362,-0.581291,-0.356544,0.272251,-0.527591,-0.292909,-0.430274,-0.624407,-0.313318,-0.482495,-0.0550698,-0.378892,-0.555295,-0.0323923,-0.420279,-0.463816,-0.493799,-0.521354,-0.559913,0 +-0.339574,-0.116486,-0.419739,-0.63871,-0.31022,0.174044,0.204128,0.275589,-0.0177103,-0.463246,-0.552217,0.490011,-0.779532,-0.102144,-0.624538,-0.535066,0.209655,-0.534957,-0.0744892,-0.543012,-0.207306,-0.106112,-0.446545,0.0863726,-0.466064,-0.175794,0.341762,0.156274,-0.0432962,-0.12822,-0.162001,-0.1632,2 +-0.720755,0.967079,0.917667,-0.111899,-0.951148,0.303473,0.282805,0.258398,1.35842,1.32058,0.848854,0.82024,0.0105841,-0.417641,-0.262226,0.717996,0.166679,0.0852731,-0.353196,-0.216122,0.770807,-0.00190899,0.338884,-0.446565,-0.00351787,0.930399,0.894909,1.3415,1.42443,1.35508,1.30102,1.25489,2 +-0.763661,1.05611,0.909631,-0.0997452,-1.0985,-0.441388,-0.47334,-0.541453,2.35088,1.81958,0.481616,-0.144111,-0.0546102,-0.242107,-0.294149,0.683415,-0.348489,0.125181,-0.352906,-0.195283,0.815193,-0.906932,0.168437,-0.224957,-0.146869,0.827456,1.04745,1.53637,1.6127,1.54763,1.47542,1.42094,2 +-0.320904,-0.0885215,-0.355445,-0.652602,-0.388477,0.162311,0.168967,0.158283,0.0954776,-0.34635,-0.485464,0.51071,-0.769118,-0.12781,-0.615602,-0.554076,0.175374,-0.570577,-0.0230775,-0.552627,-0.224567,-0.00944485,-0.505633,0.178062,-0.49223,-0.20071,0.404588,0.29148,0.110969,0.0146916,-0.0188596,-0.0423967,2 +1.2725,-1.1869,-0.475299,-0.76467,0.36556,0.0961073,0.0279746,-0.00661634,-0.366159,-0.165079,-0.439509,-0.0945682,-0.749389,0.338954,-0.489192,-1.59695,0.390406,-0.74776,0.215092,-0.525082,-1.5205,-0.170337,-0.728201,0.375664,-0.477098,-1.29006,-0.315177,-0.748329,-0.786638,-0.831644,-0.884735,-0.921984,0 +-0.457709,0.161561,-0.0965968,-0.638889,-0.650113,0.377503,0.368358,0.373145,0.793105,0.329299,-0.217041,0.776724,-0.606807,-0.0931189,-0.586998,-0.102834,0.326331,-0.49199,-0.0273451,-0.525762,0.00142927,0.227365,-0.403699,0.131258,-0.453361,0.0413272,0.644247,0.719055,0.555905,0.43711,0.366919,0.298516,2 +0.506652,-0.9473,-0.702254,-0.778573,0.167658,0.751488,0.737915,0.693949,-0.125321,-0.633033,-0.551987,0.668463,-0.767369,0.00252859,-0.58408,-1.05439,0.862477,-0.803529,0.107961,-0.591256,-1.12993,0.552837,-0.793365,0.331298,-0.542192,-1.18513,-0.0514418,-0.586788,-0.738325,-0.751038,-0.741093,-0.750728,2 +-0.561042,0.295698,-0.173235,-0.45582,-0.511419,-0.063865,-0.0558594,-0.00209882,-0.116326,0.0480236,-0.225766,0.524192,-0.503974,-0.149798,-0.556225,0.0842237,-0.134896,-0.36484,-0.0332419,-0.505643,0.258918,-0.32882,-0.257499,0.0846336,-0.4193,0.300835,0.544631,0.503903,0.331568,0.222428,0.18305,0.158613,2 +-0.803719,1.37586,1.64451,0.628555,-0.960063,-0.0902305,-0.10971,-0.118275,2.34396,1.77506,1.80341,0.329719,0.723793,-1.16373,0.480486,1.1934,-0.144091,0.847895,-1.13226,0.506022,1.26493,-0.731988,0.911909,-1.09501,0.613344,1.33562,0.894309,1.41648,1.66621,1.722,1.72214,1.71334,2 +0.866944,-1.12416,-0.657089,-0.8379,0.323672,0.398122,0.376803,0.368718,-0.265924,-0.603819,-0.654481,0.285533,-0.836021,0.080246,-0.623978,-1.29996,0.655111,-0.835142,0.103323,-0.595334,-1.4154,0.0101644,-0.800881,0.338514,-0.542252,-1.29883,-0.264655,-0.741273,-0.842398,-0.843647,-0.872132,-0.883945,0 +0.354466,-0.76547,-0.588137,-0.786379,0.0827347,0.276568,0.267573,0.243896,-0.658768,-0.416501,-0.608236,0.238719,-0.716927,0.180371,-0.568438,-0.800281,0.464915,-0.787998,0.137225,-0.5828,-1.08635,0.0798961,-0.748959,0.361372,-0.533177,-1.02053,0.0211583,-0.478447,-0.594244,-0.61968,-0.639049,-0.660398,2 +-0.578223,0.562301,0.259968,-0.308481,-0.580022,0.0722803,0.0588077,0.0589777,-0.100545,0.578772,0.392475,0.625237,-0.223567,-0.094888,-0.391685,0.47311,-0.028984,-0.185358,-0.114707,-0.377623,0.498547,-0.172655,0.0207184,-0.115277,-0.220579,0.652902,0.572756,0.701065,0.659338,0.608776,0.607947,0.612464,2 +0.803689,-0.934887,-0.484564,-0.780452,0.225736,0.270282,0.333627,0.352637,-0.409595,-0.372496,-0.743752,0.0758084,-0.877758,-0.00618663,-0.616762,-1.30025,0.526361,-0.705883,-0.138724,-0.51105,-1.30822,0.080036,-0.67394,0.131348,-0.471351,-1.11645,-0.171436,-0.558494,-0.627166,-0.664266,-0.716217,-0.76489,0 +-0.594654,0.464105,0.0975766,-0.387248,-0.679107,0.267173,0.2558,0.229394,0.917986,0.486953,-0.0170007,0.689172,-0.415522,-0.279017,-0.495278,0.170796,0.211394,-0.29118,-0.239879,-0.431314,0.234931,0.0554096,-0.187507,-0.1098,-0.339134,0.283154,0.681526,0.813404,0.715088,0.611604,0.552677,0.511579,2 +0.434931,-0.758834,-0.596353,-0.793625,0.000689666,0.197911,0.226316,0.243177,-0.0608067,-0.451772,-0.479387,0.101005,-0.880827,0.0552397,-0.628176,-1.17886,0.421599,-0.764551,0.116396,-0.576324,-1.1028,-0.00485737,-0.754966,0.353236,-0.541053,-1.06382,0.0312128,-0.258388,-0.389576,-0.374505,-0.337395,-0.32732,2 +-0.818141,1.39043,1.34743,1.22791,-0.899087,-0.426436,-0.446985,-0.513968,1.90027,1.03704,1.644,-0.0829046,0.944831,-1.09209,0.482655,1.34025,-0.449143,1.36325,-1.27409,0.779002,1.39369,-1.15384,1.06426,-1.03084,0.550638,1.40551,0.83891,1.27143,1.48168,1.52642,1.53095,1.55983,2 +-0.653352,0.6195,0.0773078,-0.227995,-0.635731,-0.478837,-0.471541,-0.487253,0.251542,-0.338984,-0.0187997,0.156524,-0.209325,-0.12786,-0.405997,0.537465,-0.538145,-0.176014,0.0393183,-0.405818,0.589966,-0.823008,-0.00507741,0.0630854,-0.298086,0.720794,0.630704,0.716936,0.585629,0.503284,0.513308,0.54683,2 +1.08458,-1.13891,-0.560862,-0.791266,0.29105,-0.111789,-0.0817652,-0.0524212,-0.459768,0.115766,-0.141263,-0.20102,-0.979583,-0.0782171,-0.659348,-1.61991,0.185758,-0.682066,-0.226026,-0.504663,-1.52454,-0.47383,-0.647395,0.0476039,-0.463546,-1.25916,-0.282455,-0.716707,-0.762342,-0.813154,-0.878678,-0.904394,0 +0.308331,-0.61977,-0.536645,-0.571107,0.0431464,0.480426,0.429094,0.344061,-0.50983,-0.61883,-0.416631,0.371366,-0.617271,0.334307,-0.508491,-0.799821,0.712789,-0.519445,-0.233272,-0.377463,-0.743992,0.00127927,-0.552717,0.0689522,-0.395083,-0.777713,0.0208785,-0.430714,-0.563661,-0.606637,-0.65673,-0.703634,2 +0.343602,-0.861817,-0.698876,-0.793565,0.2005,0.116696,0.0968168,0.0950079,-0.604978,-0.522383,-0.67513,0.100475,-0.80145,0.0252761,-0.641518,-0.953727,0.391595,-0.803479,0.105212,-0.595883,-1.02102,-0.426216,-0.793785,0.348829,-0.555705,-1.08974,-0.107271,-0.620829,-0.758114,-0.776904,-0.788507,-0.790426,2 +0.52854,-1.08276,-0.815472,-0.80268,0.41883,0.317876,0.334416,0.296018,-0.621589,-0.633762,-0.78432,0.211134,-0.757305,0.0743592,-0.636971,-0.781841,0.544461,-0.854731,0.136595,-0.609806,-1.3573,0.0274949,-0.848225,0.377373,-0.568498,-1.41541,-0.318655,-0.896028,-0.974745,-0.974796,-0.981502,-0.98401,0 +0.868933,-1.18793,-0.737655,-0.867874,0.293809,-0.153396,-0.183639,-0.201579,-0.567289,-0.723093,-0.668573,-0.0753487,-0.921265,0.124532,-0.621579,-1.62455,0.07306,-0.852083,0.135166,-0.60229,-1.41595,-0.412504,-0.831134,0.361861,-0.557924,-1.37045,-0.184219,-0.746231,-0.878098,-0.897908,-0.927891,-0.944742,2 +1.20044,-1.43874,-0.85665,-0.85652,0.608146,0.0056469,0.0109539,-0.00331815,-0.639619,-0.776764,-0.83891,-0.0459448,-0.904154,0.0399281,-0.653342,-1.50711,0.245675,-0.884825,0.114467,-0.605528,-1.67207,-0.173425,-0.859938,0.36435,-0.566299,-1.52244,-0.542073,-1.11361,-1.1521,-1.13979,-1.14466,-1.16563,0 +-0.80171,1.36819,1.61881,0.739165,-0.928261,0.80165,0.772856,0.726222,2.4599,1.7508,2.03385,1.22488,0.498097,-0.988258,0.197661,0.991906,0.571916,1.04647,-1.30217,0.711869,1.33576,0.207476,1.0355,-1.32257,0.770448,1.35733,0.870312,1.34237,1.54702,1.59335,1.61871,1.64543,2 +-0.735506,1.00756,0.800931,0.165319,-0.762262,0.682875,0.683445,0.713129,1.15682,0.617301,0.991176,1.17931,0.0347908,-0.552827,-0.190226,0.685474,0.483045,0.357214,-0.56506,-0.0196294,0.985939,0.178542,0.446295,-0.585289,0.117556,1.01524,0.72879,1.02251,1.08158,1.03929,1.03196,1.04199,2 +-0.156924,-0.0216482,-0.287732,-0.171196,-0.0896108,0.453231,0.446535,0.465664,-0.199551,-0.686793,-0.712569,0.709441,-0.558823,0.133027,-0.555156,-0.365759,0.453041,-0.0124833,-0.524962,-0.186888,0.0982562,0.0369597,-0.12757,-0.233272,-0.265534,0.0935285,0.148458,-0.184079,-0.317676,-0.352807,-0.376573,-0.368068,0 +-0.803409,1.31501,1.4858,0.275979,-1.14623,0.154035,0.1277,0.123402,0.875839,2.35318,1.74743,0.606827,0.366998,-0.551567,-0.0109441,1.05375,0.0663237,0.548579,-0.672591,0.152936,1.1363,-0.435441,0.756795,-0.70985,0.340913,1.27911,1.05239,1.66173,1.84605,1.84516,1.82888,1.81038,2 +-0.809476,1.3132,1.2972,0.375174,-1.07984,-0.247064,-0.284924,-0.339244,0.837101,1.86843,2.02242,0.261387,0.283544,-0.466444,-0.113738,1.00588,-0.298526,0.640259,-0.569048,0.190475,1.21444,-0.915578,0.630504,-0.406467,0.165819,1.2556,1.00503,1.55823,1.74893,1.73497,1.72371,1.73158,2 +1.7731,-1.70676,-0.847785,-0.934137,0.462306,0.462366,0.452931,0.417731,-0.742722,-0.705323,-0.722384,0.264305,-1.03346,0.0348309,-0.659408,-2.09995,0.709021,-0.922984,0.125361,-0.613094,-2.1113,0.250493,-0.901356,0.375144,-0.573055,-1.89303,-0.411544,-0.959743,-1.0705,-1.09446,-1.12642,-1.15421,0 +0.1274,-0.434782,-0.470102,-0.623058,-0.161082,-0.0432063,0.0159812,0.0461347,-0.337085,-0.160842,-0.230953,0.151647,-0.877029,0.0721004,-0.63766,-1.15802,0.0961173,-0.454261,-0.264665,-0.450173,-0.537445,-0.342582,-0.462237,0.0592475,-0.442947,-0.429165,0.229824,-0.119375,-0.292949,-0.359273,-0.399361,-0.407277,2 +-0.739075,1.14316,1.22874,0.344121,-0.82092,0.499996,0.471581,0.426486,0.557154,1.52954,1.68067,1.05885,0.405138,-0.756095,0.0805057,0.997752,0.268263,0.542522,-0.563021,0.180831,1.082,0.0684924,0.744171,-0.837261,0.405078,1.19405,0.777174,1.15367,1.30798,1.33112,1.33545,1.34364,2 +-0.65629,0.715098,0.557574,-0.279337,-0.850833,0.52809,0.502794,0.454241,1.423,1.49307,0.244066,0.749998,-0.30917,-0.416462,-0.409266,0.265384,0.518905,-0.093249,-0.563531,-0.247914,0.417631,0.165699,-0.0365401,-0.376723,-0.1814,0.405927,0.823598,1.10719,1.12251,1.09589,1.05011,1.00133,2 +-0.650573,0.723783,0.58258,-0.233832,-0.826836,0.722843,0.703404,0.701775,1.41168,1.19766,0.593754,1.10571,-0.263735,-0.463356,-0.369447,0.324412,0.615952,-0.0349909,-0.574815,-0.225546,0.542572,0.242577,0.0529008,-0.431483,-0.123232,0.54618,0.798992,1.10262,1.10811,1.06586,1.05026,1.01713,2 +-0.0485334,-0.535496,-0.644536,-0.766899,-0.105952,0.149018,0.162301,0.149728,0.107231,-0.51089,-0.648074,0.361712,-0.904724,-0.0410075,-0.659688,-0.971767,0.2739,-0.724982,0.0519614,-0.587608,-0.608726,-0.185888,-0.723053,0.303354,-0.547509,-0.772046,0.187637,-0.199211,-0.433742,-0.485544,-0.503004,-0.509041,2 +-0.826247,1.41733,1.66934,0.363411,-1.20192,0.151797,0.132867,0.131658,1.10593,2.57148,1.90682,0.679037,0.367238,-0.49139,-0.051352,1.06205,0.0235671,0.69299,-0.592255,0.241687,1.25115,-0.443607,0.814453,-0.574375,0.333657,1.35928,1.12494,1.7818,2.0332,2.00591,1.9432,1.91238,2 +1.43805,-1.52753,-0.832893,-0.912939,0.540134,0.605338,0.611584,0.625977,-0.539304,-0.752727,-0.836711,0.54734,-0.991356,-0.00482737,-0.672191,-1.65988,0.799291,-0.908422,0.111569,-0.612544,-1.85322,0.226306,-0.890342,0.36456,-0.571176,-1.80006,-0.435241,-1.04737,-1.12241,-1.13219,-1.16059,-1.17602,0 +0.518396,-0.804129,-0.581371,-0.764531,0.185478,0.649284,0.697737,0.707362,0.0243766,-0.503824,-0.49163,0.410775,-0.811895,0.000229852,-0.63774,-0.961742,0.842218,-0.737485,-0.00918508,-0.56516,-1.05946,0.294828,-0.720415,0.244696,-0.523752,-1.00595,-0.0980963,-0.570987,-0.666135,-0.715958,-0.739414,-0.752327,0 +0.906253,-1.21253,-0.777323,-0.828485,0.420999,0.717286,0.718426,0.726202,-0.265794,-0.675569,-0.762092,0.478867,-0.827506,0.0643047,-0.650034,-1.23102,0.914178,-0.859009,0.129349,-0.608966,-1.47343,0.497927,-0.844877,0.365939,-0.56477,-1.44422,-0.337585,-0.868893,-0.960073,-0.982501,-1.00167,-1.03468,0 +0.0422169,-0.399131,-0.36413,-0.559493,0.14624,0.609745,0.626606,0.762891,-0.0272651,-0.621369,-0.708571,0.49115,-0.559423,0.0230473,-0.577463,-0.251302,0.714188,-0.529829,-0.283565,-0.436251,-0.621449,0.409945,-0.483995,-0.10917,-0.3643,-0.630014,-0.0971668,-0.480446,-0.523383,-0.527071,-0.552617,-0.579722,0 +0.25471,-0.478318,-0.407166,-0.521544,0.0468943,-0.551537,-0.524412,-0.445515,-0.486143,-0.427026,-0.679037,-0.495628,-0.796813,0.063675,-0.617931,-0.866415,-0.303483,-0.385459,-0.391185,-0.396733,-0.638899,-0.916927,-0.452872,-0.0171705,-0.429494,-0.532418,0.0445555,-0.344851,-0.423768,-0.486913,-0.541783,-0.580591,0 +-0.595753,0.451063,-0.0357302,-0.355995,-0.557104,-0.196982,-0.197082,-0.211714,-0.321793,0.00490726,-0.00249868,0.319395,-0.379852,-0.159283,-0.509701,0.295378,-0.192404,-0.298816,-0.0314928,-0.465945,0.388507,-0.716047,-0.210075,0.063815,-0.386398,0.404358,0.541753,0.584919,0.464685,0.397172,0.384139,0.372566,2 +-0.613613,0.494159,0.148429,-0.47409,-0.847535,-0.738555,-0.771617,-0.770067,0.349498,1.15433,0.10883,-0.263945,-0.454241,-0.161092,-0.539664,0.183039,-0.649054,-0.329519,-0.135126,-0.449354,0.29122,-1.34651,-0.266434,0.121453,-0.402679,0.335356,0.824178,1.05332,0.936086,0.811764,0.74805,0.694499,2 +-0.794314,1.29263,1.28144,0.672341,-0.880557,0.397292,0.373325,0.319605,0.190226,1.03499,1.56408,0.87566,0.67482,-1.13815,0.490541,1.18297,0.21817,0.815442,-0.813024,0.40092,1.29536,-0.184969,0.971807,-1.12434,0.643437,1.37172,0.808346,1.20667,1.34412,1.38449,1.41228,1.44797,2 +0.847375,-0.867284,-0.348978,-0.703204,0.212513,0.466704,0.599851,0.631743,0.143581,-0.113788,-0.523913,0.27363,-0.853642,-0.0120034,-0.612054,-1.20612,0.634682,-0.581971,-0.363571,-0.426006,-1.28677,0.250163,-0.535866,-0.0977363,-0.38177,-1.00254,-0.103813,-0.506962,-0.569967,-0.600861,-0.660508,-0.69186,0 +0.807847,-1.17491,-0.767978,-0.822948,0.363151,0.43723,0.421199,0.452702,-0.606247,-0.43679,-0.780132,0.230404,-0.848485,0.0500225,-0.654981,-1.23692,0.702455,-0.848994,0.132537,-0.608206,-1.42263,0.167878,-0.837671,0.36443,-0.56405,-1.37989,-0.253661,-0.818721,-0.945681,-0.962013,-0.989637,-1.01201,0 +1.90417,-1.7578,-0.854491,-0.94856,0.589557,-0.570577,-0.618191,-0.587318,-0.719755,-0.679077,-0.830035,-0.782391,-1.10977,-0.0454051,-0.686204,-2.37066,-0.144341,-0.92968,0.113608,-0.614873,-2.13061,-0.908192,-0.902495,0.371766,-0.573805,-1.88459,-0.458259,-1.09799,-1.17384,-1.19925,-1.22447,-1.26416,0 +0.525971,-0.736696,-0.435761,-0.736946,0.195283,-0.131548,-0.0707912,-0.0516316,-0.361991,-0.274439,-0.618201,-0.270302,-0.800411,-0.0338315,-0.614453,-0.988138,0.176723,-0.672601,-0.157963,-0.512169,-1.06795,-0.420479,-0.647455,0.117975,-0.474829,-0.951798,-0.143221,-0.51058,-0.58417,-0.607547,-0.664026,-0.683605,0 +-0.822929,1.41127,1.53716,0.569498,-1.08905,-0.0153716,-0.0581981,-0.113368,0.922973,2.11237,2.2212,0.512389,0.408036,-0.584569,0.0151116,1.08409,-0.142222,0.868143,-0.774265,0.404348,1.32526,-0.572966,0.834212,-0.627096,0.366169,1.36836,1.01918,1.59832,1.81841,1.83042,1.82021,1.8153,2 +1.39652,-1.47662,-0.845596,-0.891171,0.526581,-0.065604,-0.0409976,-0.0413873,-0.776554,-0.743492,-0.860268,-0.190356,-0.990497,0.0243166,-0.659438,-1.70711,0.238259,-0.889752,0.124282,-0.609116,-1.72092,-0.294199,-0.884785,0.36453,-0.570937,-1.73054,-0.472931,-1.03972,-1.1143,-1.12331,-1.1451,-1.16665,0 +-0.361562,0.0798462,-0.18131,-0.538505,-0.603939,0.618521,0.586938,0.535696,0.00592671,0.377963,0.159153,0.595633,-0.513538,0.295418,-0.470362,-0.254221,0.704104,-0.482585,0.16354,-0.454591,-0.189036,0.45548,-0.471082,0.32838,-0.432503,-0.162721,0.578633,0.556115,0.396163,0.329919,0.307721,0.306922,2 +-0.899896,2.08354,3.29028,4.10085,-1.17551,-1.29946,-1.32659,-1.36783,1.75497,2.51744,2.78071,-0.963961,3.59815,0.701255,3.43717,2.35554,-1.8187,4.00523,3.69193,4.68226,2.0626,-2.01062,4.10005,1.854,3.90624,2.42103,1.09279,1.74147,2.11883,2.39146,2.5419,2.62352,2 +-0.8563,1.63847,2.13228,0.782461,-1.27777,-1.49788,-1.5215,-1.44693,1.65576,4.12549,1.54316,-1.16336,0.92983,0.585849,0.7106,1.41847,-1.7489,1.03152,0.529469,0.744171,1.40373,-1.48326,1.72204,-0.253191,1.29241,1.8261,1.17409,1.90193,2.17041,2.12539,2.04237,1.98651,2 +-0.907452,2.16622,3.72503,4.39716,-1.27738,-1.13608,-1.19114,-1.29895,2.3448,2.99719,3.69469,-0.806488,3.73171,1.23173,3.52517,2.31855,-1.67477,4.37773,4.20702,5.33651,2.07587,-1.73059,4.50667,2.38984,4.47745,2.42933,1.16772,1.93676,2.40334,2.70477,2.88003,2.96068,2 +-0.908861,2.24443,4.31518,5.4067,-1.17285,-0.561252,-0.58417,-0.67507,2.42041,3.48365,3.70574,-0.312529,4.88541,-1.91327,5.92023,2.48591,-1.10841,5.20394,1.48217,6.40925,2.17324,-1.1563,5.74102,-1.63293,6.85401,2.54906,1.0622,1.74365,2.1762,2.5346,2.75946,2.88148,2 +-0.886344,1.94462,2.70442,2.79102,-1.13931,-1.17636,-1.15606,-1.20772,2.50667,1.27416,2.84525,-0.598242,2.73809,-0.135406,2.86695,2.145,-1.64951,2.77671,2.26285,2.84905,1.94156,-1.4808,3.52031,0.855111,3.18733,2.33299,1.0114,1.62757,1.90156,2.08157,2.22202,2.264,2 +-0.336605,0.271451,0.135236,0.0267454,-0.0989957,-2.02202,-2.02673,-1.75407,0.0285743,-0.330928,-0.0785669,-2.2157,0.143531,-0.199641,0.488692,0.266234,-2.13405,-0.00627669,-0.107681,-0.0691623,0.329979,-1.79275,0.505912,-0.667404,0.553147,0.60174,0.114457,-0.0844337,-0.133837,-0.102084,-0.118495,-0.147419,0 +0.485344,-0.919246,-0.662896,-0.819261,0.176053,-1.38431,-1.38015,-1.41356,-0.23674,-0.611574,-0.522313,-1.65598,-0.930579,0.0555495,-0.627856,-1.38355,-1.12032,-0.788208,0.225056,-0.577134,-1.09485,-1.16871,-0.758674,0.472561,-0.535616,-1.06822,-0.112219,-0.60099,-0.726881,-0.752747,-0.762452,-0.779822,0 +-0.451013,0.497607,0.640129,0.0880717,-0.372586,-1.16563,-1.16528,-0.945491,1.30214,0.470272,0.0683324,-1.10254,0.0269351,0.481496,0.245535,0.247634,-1.13825,0.198011,-0.443507,0.250173,0.435661,-0.951558,0.677868,-1.08851,0.895349,0.65552,0.403019,0.340043,0.331128,0.360202,0.372146,0.383769,0 +0.0663736,-0.363431,-0.196412,-0.684075,-0.142132,-1.32709,-1.33731,-1.32512,0.193424,-0.416092,-0.228894,-1.38887,-0.615432,0.250423,-0.441328,-0.676149,-1.14947,-0.623538,0.29142,-0.481126,-0.643127,-0.999841,-0.486783,0.49133,-0.381131,-0.379682,0.203578,-0.0907203,-0.207666,-0.244286,-0.25525,-0.297377,0 +-0.378472,0.212953,-0.157993,-0.0849034,-0.258678,-1.38722,-1.37408,-1.33616,-0.0965371,0.136975,-0.356694,-1.66335,-0.0546901,0.831454,-0.141742,0.170276,-1.17905,-0.159463,0.773955,-0.259078,0.227745,-1.30141,-0.21955,0.700486,-0.326371,0.241487,0.286033,0.107131,-0.00410775,-0.0617964,-0.0853332,-0.0914298,0 +-0.305013,0.130069,0.321974,-0.239848,-0.115127,-1.13231,-1.18408,-1.19801,1.03484,1.27706,0.429114,-1.24776,0.181031,0.514328,-0.0802861,0.137355,-0.937026,-0.280406,0.356494,-0.289461,0.0488233,-1.1039,-0.0986261,0.341623,0.0256062,0.305132,0.16424,-0.0572287,-0.0762182,-0.0486536,-0.00138921,-0.00710611,0 +0.350408,-0.580861,-0.51007,-0.0632653,0.320034,1.60765,1.62493,1.62847,-0.0868124,-0.656959,-0.54683,2.27913,-0.0935188,-1.89051,0.670102,-0.953047,1.12884,-0.189026,-1.06412,0.120634,-0.370057,0.771776,-0.105492,-1.30724,0.610315,-0.372546,-0.239259,-0.729959,-0.806997,-0.807427,-0.813204,-0.823148,1 +-0.629325,0.734067,0.425267,0.543012,-0.640429,-0.810885,-0.650703,-0.561762,0.839269,0.0358303,-0.303304,0.606347,0.123932,-0.534787,0.154645,0.651522,-1.45669,0.807447,2.58542,0.87494,0.713509,-1.2366,0.530109,1.57263,0.294619,0.833333,0.67372,0.645805,0.592355,0.586278,0.562242,0.607157,1 +-0.41985,0.150218,-0.341692,-0.31045,-0.313358,-1.22878,-1.05852,-0.849964,-0.0406377,-0.268733,-0.478338,-1.15591,-0.505673,0.336585,-0.49273,-0.264535,-1.26864,-0.242157,0.281735,-0.403669,0.29154,-1.14732,-0.220209,0.47427,-0.39994,0.396222,0.342082,0.0895308,-0.0943582,-0.166699,-0.179102,-0.193644,0 +-0.354595,0.141602,-0.208455,0.140573,-0.12756,-0.591815,-0.58293,-0.592595,0.155405,0.00917492,0.206896,-0.620769,0.268293,0.376483,-0.0579783,0.332997,-0.471181,-0.000839671,-0.325711,0.0796661,0.25469,-0.496428,0.0434759,-0.538564,0.254231,0.29065,0.197462,-0.0958075,-0.214692,-0.230214,-0.235641,-0.224607,0 +-0.897228,2.03549,2.85204,4.60257,-1.09878,-0.810255,-0.844687,-0.928051,1.52422,1.75315,2.47387,-0.572996,3.66355,-0.871812,3.53002,2.35027,-1.22542,4.42444,1.44899,4.7187,2.11171,-1.57598,4.38056,-0.131438,4.09293,2.42602,0.987978,1.57187,1.87655,2.09087,2.24194,2.35369,2 +-0.849274,1.58938,1.82532,1.11694,-1.07474,-1.25146,-1.25584,-1.3356,2.60265,2.80716,1.53285,-0.859668,1.66075,-0.279687,1.00576,1.71512,-1.51178,1.03162,-0.446045,0.501425,1.39741,-1.19247,1.42137,-0.715597,0.832384,1.66066,0.995884,1.59494,1.87892,1.86177,1.78403,1.70367,2 +0.304443,-0.63821,-0.445655,-0.709591,0.168658,-1.84244,-1.87054,-1.8542,-0.478507,-0.242757,-0.47331,-1.898,-0.714518,0.179152,-0.487323,-0.688292,-1.81293,-0.699356,0.225366,-0.499486,-0.958224,-1.56839,-0.555495,0.447275,-0.377383,-0.639349,-0.0850634,-0.506732,-0.595593,-0.589557,-0.581491,-0.550098,0 +-0.846076,1.51141,1.22198,1.27701,-1.0489,-1.8878,-1.89144,-1.89564,0.340713,0.984,1.28173,-1.59965,1.0993,0.502524,0.512619,1.55561,-2.22572,1.27627,1.14113,0.804798,1.53577,-2.26134,1.51843,0.702644,0.794854,1.78721,0.969888,1.46056,1.58013,1.55406,1.53095,1.51709,2 +-0.914278,2.22903,3.86295,3.5652,-1.36324,-1.12321,-1.17305,-1.31605,3.01431,2.1772,3.50409,-0.815383,3.75347,0.734117,3.95661,2.38267,-1.5578,3.4344,1.31385,3.69113,2.11112,-1.42,4.23007,-0.337755,4.25469,2.46317,1.24378,2.12259,2.62633,2.88552,3.02258,3.0813,2 +-0.191215,-0.157274,-0.204668,-0.593694,-0.112009,-1.44322,-1.46421,-1.46306,-0.154885,0.0159012,-0.052901,-1.52443,-0.625507,0.246575,-0.493939,-0.595413,-1.28018,-0.531898,0.244656,-0.483665,-0.16432,-1.227,-0.448854,0.483205,-0.38256,-0.166499,0.16447,-0.160112,-0.307901,-0.338265,-0.359323,-0.394454,0 +-0.897688,2.08052,3.21191,3.61901,-1.27801,-1.45986,-1.49347,-1.51536,2.30551,1.65917,3.14506,-1.06868,3.4161,1.61305,3.86872,2.29049,-1.99416,3.49191,4.76302,4.54118,1.97127,-1.92945,4.27795,3.03094,4.97394,2.40902,1.17663,1.89854,2.2515,2.45314,2.5739,2.62352,2 +-0.0228075,-0.322413,-0.178872,-0.628535,-0.133037,-1.60124,-1.62085,-1.6777,0.398741,0.365779,0.301584,-1.43458,-0.541353,0.521994,-0.282535,-0.56536,-1.62023,-0.572536,0.498316,-0.404938,-0.538165,-1.30367,-0.476429,0.67411,-0.324942,-0.443647,0.188297,-0.096657,-0.21821,-0.23737,-0.234182,-0.230573,2 +-0.593674,0.612084,0.385079,0.261367,-0.47423,-0.679137,-0.708441,-0.802959,0.515967,0.00956471,0.340323,-0.499306,0.511039,1.06907,0.394883,0.752687,-0.63812,0.183539,1.14095,0.171516,0.605508,-0.469442,0.21898,0.561382,0.170267,0.758414,0.462176,0.405118,0.265244,0.233242,0.250982,0.278287,2 +-0.741493,1.07955,0.395783,1.28151,-0.513208,-1.46365,-1.46327,-1.47437,0.0307331,0.193254,0.347089,-0.312868,0.927081,-0.67541,0.646045,1.40502,-2.04213,1.33158,2.39947,1.22589,1.37306,-1.75894,1.97861,1.83555,1.39928,1.8815,0.493199,0.479007,0.38301,0.365719,0.392855,0.420559,2 +-0.434632,0.18146,-0.313028,-0.136935,-0.211064,-1.59327,-1.52905,-1.45591,-0.354196,-0.116776,0.445415,-1.71098,-0.0693321,0.404978,-0.409066,0.244076,-1.46517,-0.232752,0.477178,-0.417501,0.285593,-1.66994,-0.318356,0.566329,-0.439689,0.231893,0.278427,0.0166708,-0.0884015,-0.124272,-0.179701,-0.18249,0 +-0.383949,0.0203688,-0.307001,-0.407466,-0.158273,-1.45686,-1.45668,-1.48864,-0.0622958,-0.270162,-0.262316,-1.53936,-0.360043,0.240698,-0.507462,-0.0344212,-1.27123,-0.441168,0.32762,-0.486443,0.0498227,-1.44338,-0.421729,0.54643,-0.429404,0.0113136,0.224117,-0.112218,-0.265664,-0.312539,-0.317716,-0.316846,0 +-0.909941,2.18846,3.87763,3.07309,-1.34642,-1.4602,-1.50495,-1.61993,4.57607,2.72766,4.05678,-1.14868,3.42454,1.06622,3.45685,2.33435,-1.94796,3.03431,2.43196,3.33408,2.01584,-1.75527,3.95756,1.53421,3.9065,2.41583,1.22309,2.09567,2.63348,2.90034,3.00816,3.02077,2 +-0.819001,1.30707,0.337695,2.23885,-0.685154,-1.28753,-1.28444,-1.32108,0.1631,-0.221848,0.156204,-0.986189,1.52911,0.741163,0.852332,1.65941,-1.48428,2.04654,1.14364,1.47537,1.6763,-1.84499,1.75637,0.0564091,0.888333,1.81371,0.651742,0.804378,0.720905,0.685364,0.709011,0.746051,2 +-0.176723,0.100435,0.0032484,0.570377,0.105922,1.12807,1.15382,1.18661,-0.0153916,-0.115247,-0.247464,1.95162,0.590496,-2.6653,1.20109,0.113418,0.670662,0.392974,-1.68606,0.699636,0.379822,0.344081,0.493129,-1.8391,0.937626,0.503883,-0.0416872,-0.43758,-0.49202,-0.457879,-0.438799,-0.434302,1 +-0.0859029,-0.185268,-0.341982,0.0838041,0.240508,1.14013,1.16708,1.1755,-0.194353,-0.717226,-0.629904,1.8205,0.0160111,-1.76366,0.472221,-0.293099,0.80124,-0.0328221,-1.15906,0.248064,0.120434,0.321723,-0.0126133,-1.0076,0.349938,0.141592,-0.163071,-0.626876,-0.699106,-0.692081,-0.694549,-0.699616,1 +-0.469732,0.184939,-0.453851,0.855161,0.258019,-2.56156,-2.56924,-2.6095,-0.621309,-0.724752,-0.685494,-3.32284,1.04034,2.40972,1.31848,1.01343,-2.82429,0.433952,2.15153,0.579992,0.534537,-3.20692,0.631243,1.51652,0.319285,1.12485,-0.181361,-0.686923,-0.762961,-0.749199,-0.721604,-0.696438,0 +-0.865365,1.67794,1.71495,1.66051,-1.09454,-1.81919,-1.87222,-1.9745,0.770457,1.52271,1.71487,-1.6336,1.6008,0.859129,0.96591,1.74552,-2.16838,1.62849,1.11475,1.25293,1.66231,-2.14476,1.76743,0.644726,1.05138,1.88103,1.0148,1.60096,1.83964,1.87888,1.8639,1.8344,2 +-0.621419,0.672291,-0.0705411,0.632223,-0.615692,-1.72944,-1.78379,-1.91771,0.344781,-0.246265,-0.49159,-1.64882,0.853462,1.71418,0.930299,0.950338,-1.82052,0.315976,1.32794,0.225886,0.682835,-1.80501,0.486063,0.0129829,0.595753,0.949029,0.621659,0.597872,0.40094,0.3101,0.292,0.306212,2 +-0.900686,2.10376,3.50756,3.04572,-1.24133,-1.63982,-1.70575,-1.79867,2.20298,3.54583,3.50555,-1.34612,3.46218,1.21108,3.62862,2.35634,-2.16961,2.9187,3.04176,3.51571,1.97967,-2.05045,3.70426,1.89503,3.82265,2.41489,1.14619,1.88991,2.34469,2.5684,2.68749,2.70852,2 +-0.143022,-0.0414073,0.167278,-0.246375,-0.0888912,-1.82965,-1.85373,-1.92928,0.0168607,-0.282625,0.05448,-1.95117,0.008895,1.00244,0.250852,-0.0612165,-1.79188,-0.262326,0.8747,-0.186338,-0.192215,-1.64102,-0.0934989,0.889142,0.0785871,0.0133625,0.137345,-0.121383,-0.166848,-0.157534,-0.150208,-0.141922,0 +-0.755076,1.04115,0.772946,0.170027,-1.01951,-1.77012,-1.84145,-1.89318,2.1617,1.08509,0.259667,-1.59659,0.0675028,0.739514,-0.0267555,0.652152,-1.90706,0.308051,1.00424,0.140493,0.937096,-1.60959,0.394184,0.859908,0.0742595,1.0833,0.965011,1.36044,1.32226,1.20069,1.10719,1.05323,2 +0.0987658,-0.475259,-0.627356,-0.139224,0.230614,2.26194,2.27149,2.27583,-0.264455,-0.643067,-0.543732,2.32054,-0.54664,-0.902735,-0.114857,-1.04162,1.85688,-0.153536,-0.880587,0.00597651,-0.122473,1.16078,-0.280606,-0.664715,0.147859,-0.249303,-0.158373,-0.676059,-0.815373,-0.836182,-0.85735,-0.879507,1 +-0.690161,0.887383,0.393864,0.508701,-0.582211,-1.72514,-1.69306,-1.69149,-0.0197992,0.207846,0.0430463,-1.6579,0.458308,0.337165,0.114417,0.975595,-1.83942,0.458059,0.156284,0.221428,1.02834,-1.82587,0.623917,-0.296357,0.422428,1.12343,0.559263,0.621749,0.533078,0.493739,0.465405,0.465235,2 +-0.664695,0.798592,0.467044,0.0355405,-0.827366,-1.58125,-1.67297,-1.78218,0.0406776,0.851493,-0.0340514,-1.39633,0.324012,1.16742,0.246884,0.709351,-1.68702,-0.00119947,0.749069,-0.138774,0.58315,-1.36442,0.146479,0.628975,-0.112318,0.786008,0.804279,1.04224,0.976164,0.887483,0.855991,0.878618,2 +-0.0535706,-0.138134,0.0298838,-0.366889,-0.0597972,-1.54632,-1.41397,-1.13828,-0.047414,0.389066,-0.252172,-1.74225,-0.372276,0.614023,-0.0350209,-0.553616,-1.45431,-0.299366,0.6371,-0.104663,-0.224067,-1.17711,-0.20086,0.54635,-0.0629553,-0.124842,0.0586777,-0.189646,-0.243137,-0.287762,-0.335136,-0.369077,0 +-0.879258,1.83269,2.16227,2.53101,-1.09532,-1.55623,-1.59213,-1.59644,0.804329,1.51382,2.23342,-1.07083,2.14455,0.610895,1.44535,1.95949,-2.04336,2.51494,2.2624,2.48081,1.85473,-1.94272,2.7077,1.34368,1.99506,2.13193,1.01016,1.61344,1.92323,2.04396,2.09756,2.11876,2 +-0.759074,1.01101,-0.0799459,1.78665,-0.484344,-1.90293,-1.88106,-1.82299,-0.286193,-0.553876,-0.458259,-1.51497,1.0177,0.74818,0.626076,1.47538,-2.3935,1.43044,0.840359,0.843157,1.33935,-2.17292,2.38334,-0.123882,1.42181,1.84509,0.488982,0.36379,0.186808,0.142761,0.149718,0.212114,2 +-0.904414,2.12814,3.3914,4.06159,-1.20065,-1.18692,-1.21701,-1.33428,4.27163,2.05643,2.86897,-0.813764,3.63181,0.562172,3.37091,2.33515,-1.69597,3.94,2.88705,4.49306,2.09913,-1.73654,4.25186,1.35717,4.06093,2.44606,1.09832,1.81488,2.21293,2.48084,2.63037,2.68673,2 +-0.832653,1.45845,1.24156,0.897008,-1.1628,-1.58052,-1.61576,-1.70574,1.82914,1.59305,0.753506,-1.25139,1.05166,1.17975,0.804598,1.42683,-1.81175,0.884465,0.991256,0.597992,1.33894,-1.48307,1.05912,0.496767,0.471851,1.54969,1.07885,1.68984,1.82558,1.73589,1.63521,1.58564,2 +-0.138094,-0.0525712,-0.161161,-0.0647145,-0.0169906,-1.79336,-1.83606,-1.89582,-0.21901,-0.157084,0.338594,-1.9583,0.134346,1.37591,0.445505,0.105002,-1.76776,-0.195173,1.01285,-0.078817,-0.0540003,-1.612,-0.0694221,0.543452,-0.0878816,0.274129,0.0722903,-0.286903,-0.414842,-0.428675,-0.430134,-0.440348,0 +0.870672,-1.11268,-0.702584,-0.837321,0.304963,-2.13928,-2.16336,-2.14056,-0.726781,-0.675629,-0.722563,-2.51935,-0.971847,0.067353,-0.645316,-1.71834,-1.99356,-0.810296,0.214612,-0.584519,-1.31967,-2.22865,-0.78328,0.447984,-0.547869,-1.21288,-0.214732,-0.709761,-0.823168,-0.859049,-0.879378,-0.896868,0 +-0.541423,0.679347,0.815183,0.465075,-0.372566,-1.0392,-1.03474,-1.00475,2.79898,1.33697,0.683935,-1.08427,0.91056,1.0219,0.394234,0.690801,-1.01001,0.370626,0.920235,0.160892,0.719955,-0.777763,0.534616,0.808656,0.317916,0.909151,0.373685,0.356684,0.429654,0.534137,0.537335,0.525602,0 +-0.74725,1.03848,0.488412,0.945851,-0.567239,-1.51504,-1.53464,-1.50077,0.220309,-0.0117736,0.63766,-0.523643,0.770147,-1.06962,0.357044,1.14031,-1.9491,0.98376,0.972426,0.333407,1.22844,-2.2468,1.229,0.834622,0.335356,1.41867,0.519975,0.617101,0.612734,0.606947,0.657359,0.71123,2 +-0.430594,0.367119,0.590666,0.00180904,-0.32894,-1.30297,-1.38074,-1.41689,0.376184,0.279497,0.193544,-1.31571,0.659898,0.78365,0.576134,0.588417,-1.25246,-0.0857531,0.687593,-0.105452,0.254281,-1.11651,0.105762,0.409176,0.308491,0.428065,0.356105,0.219599,0.192085,0.191685,0.190296,0.209335,0 +-0.36521,0.301545,0.449733,0.148858,-0.124702,-1.45212,-1.52001,-1.54114,0.106452,1.01714,0.353826,-1.42416,0.925052,0.852382,0.624357,0.757044,-1.43757,-0.0299637,0.790786,-0.114427,0.25615,-1.30184,0.144041,0.738005,0.101395,0.522673,0.139463,-0.0436261,-0.0627955,-0.0213586,0.00770581,0.0542902,0 +-0.881696,1.86691,2.78907,1.37886,-1.29181,-1.54729,-1.66819,-1.75359,1.91654,4.41643,2.08806,-1.1821,1.98637,1.1891,1.80146,1.8846,-1.92812,1.46941,1.17394,1.37277,1.61455,-1.49693,2.00053,0.627955,1.60645,1.92463,1.18315,1.98328,2.39908,2.4577,2.39295,2.3116,2 +-0.335456,0.208426,0.415002,0.0403879,-0.0972766,-1.4238,-1.46387,-1.54075,-0.204458,0.141632,-0.0999152,-1.41665,0.74657,0.609785,0.711639,0.519255,-1.4071,-0.0952379,0.660288,-0.120134,0.209165,-1.18377,0.115996,0.486193,0.264345,0.41905,0.132537,-0.0980763,-0.120784,-0.0611667,-0.0551697,-0.0507821,0 +-0.829975,1.47284,1.08998,1.38994,-1.11497,-1.54532,-1.54733,-1.49678,1.78585,1.00531,0.302134,-1.18933,1.10815,1.58478,1.03102,1.36213,-1.85451,1.34578,1.49772,1.33961,1.50427,-1.54888,1.47764,0.129149,1.05596,1.71932,1.03188,1.52115,1.54314,1.45127,1.38486,1.37545,2 +-0.534957,0.78446,1.24989,0.590656,-0.34569,-1.30949,-1.16694,-1.03194,1.51403,0.786099,0.791196,-1.30051,1.53365,-0.134676,1.75994,1.16185,-1.40698,0.425666,-0.0250764,0.365479,0.72927,-1.04509,0.773655,-0.348669,0.804139,1.02443,0.378332,0.333987,0.496458,0.624867,0.696368,0.714918,0 +-0.853961,1.57946,1.73023,0.855591,-1.31004,-1.64371,-1.73644,-1.87134,2.07555,1.92346,0.833892,-1.20104,0.950408,0.964961,0.680307,1.40582,-1.96728,0.968768,1.09695,0.698576,1.38965,-1.37495,1.32152,0.776914,0.755116,1.67714,1.21346,1.93339,2.14915,2.03264,1.91583,1.84987,2 +1.23639,-1.01038,-0.533457,0.408686,0.351767,2.91612,2.92341,2.90985,-0.133457,-0.690491,-0.529539,2.37678,-0.4738,-1.26074,0.225646,-1.45742,2.50386,0.507981,-3.48546,1.65295,-1.02588,1.41874,-0.05502,-1.48743,0.63887,-0.726971,-0.293699,-0.776624,-0.848694,-0.854042,-0.867984,-0.885584,1 +-0.879298,1.82111,2.03312,2.47332,-1.1249,-1.83454,-1.85619,-1.84321,1.27073,0.715187,1.72257,-1.41178,2.16192,0.860198,1.59738,1.9919,-2.36731,2.41322,2.58512,2.47435,1.8292,-2.2595,2.65154,1.34363,2.04421,2.15791,1.03251,1.64909,1.91659,1.9973,2.03416,2.03974,2 +-0.0645046,-0.237989,-0.132557,-0.518246,-0.190166,-1.57039,-1.41916,-1.19675,-0.578612,-0.217551,-0.278797,-1.6075,-0.418101,0.610365,-0.193264,-0.432633,-1.5167,-0.502344,0.592565,-0.341213,-0.497317,-1.06976,-0.428085,0.661747,-0.32766,-0.294948,0.211714,-0.0449454,-0.190695,-0.234002,-0.286623,-0.342142,0 +-0.604139,0.643027,0.614233,-0.0915397,-0.791146,-1.5069,-1.51972,-1.6093,1.0647,0.389326,0.757534,-1.16838,0.168238,1.30611,0.502534,0.381211,-1.66478,-0.0174006,1.09084,0.118325,0.444846,-1.04253,0.105492,0.925882,0.067743,0.567948,0.755795,0.880737,0.769338,0.706822,0.705273,0.699546,2 +-0.902665,2.06441,2.90467,3.48981,-1.32686,-1.58423,-1.69326,-1.83386,1.26915,1.97651,3.19211,-1.28463,2.96665,1.94793,2.75709,2.16057,-2.12286,3.42072,3.51709,3.87359,1.99595,-2.04776,3.48009,1.80508,3.08938,2.32632,1.20341,2.01767,2.41796,2.59271,2.6883,2.72422,2 +-0.87555,1.78468,1.98268,2.58608,-1.14506,-2.05408,-2.08449,-2.14746,2.32137,0.749778,1.78218,-1.70743,2.22576,0.759953,1.65901,2.02001,-2.61986,2.53625,3.05041,2.4682,1.77681,-2.80608,2.53252,1.84502,1.77361,2.04772,1.05302,1.6296,1.84548,1.94786,2.01595,2.05366,2 +-0.399341,0.307052,0.308181,0.138364,-0.194963,-1.12415,-1.18299,-1.22195,0.830854,0.377033,0.239908,-0.908342,0.516836,1.03567,0.315847,0.559053,-1.14384,0.0445054,1.03413,0.0963269,0.311219,-0.868443,0.114827,0.580811,0.242857,0.442287,0.215852,0.0153815,-0.0498227,-0.0172009,0.00100948,0.0264355,0 +-0.215072,-0.0242967,0.0722905,-0.448074,-0.191935,-1.6013,-1.6416,-1.69263,-0.366199,0.092769,-0.119684,-1.46232,-0.350788,0.737685,-0.178182,-0.241058,-1.6134,-0.38257,0.657399,-0.29194,-0.167368,-1.33989,-0.264035,0.717137,-0.176133,-0.0497129,0.194633,0.0191994,-0.038229,-0.0574488,-0.067473,-0.0708911,0 +0.554596,-0.816812,-0.490161,-0.762622,0.222518,-1.63376,-1.6594,-1.67265,-0.412803,-0.636611,-0.641968,-1.60353,-0.731499,0.345351,-0.403479,-1.09493,-1.58154,-0.720965,0.21838,-0.530259,-0.961273,-1.19985,-0.640609,0.543182,-0.43699,-0.878868,-0.137635,-0.608156,-0.732928,-0.744582,-0.752607,-0.768348,0 +-0.884225,1.88703,2.32525,3.85447,-1.08538,-1.73286,-1.7842,-1.90422,2.25924,0.666954,1.98802,-1.53448,3.20717,0.623098,2.46845,2.19825,-2.22907,3.59687,2.44263,3.3712,1.89703,-2.63051,3.33555,1.03013,2.33385,2.16079,1.00091,1.58526,1.88851,2.06057,2.19958,2.26629,2 +-0.538065,0.456759,0.0670234,-0.0936886,-0.491081,-1.76828,-1.65964,-1.456,-0.297867,0.18167,0.151687,-1.64418,-0.0836642,0.800571,-0.180761,0.261546,-1.87472,-0.0367799,0.741933,-0.208866,0.555385,-1.54502,0.0248762,0.91155,-0.205447,0.624147,0.466144,0.45466,0.29103,0.239328,0.248394,0.295608,0 +-0.652712,0.916667,0.591626,2.22468,-0.250113,-2.21921,-2.17661,-1.85875,0.245515,-0.209755,0.0315626,-2.99108,3.14674,2.8063,2.58883,1.55635,-2.42982,1.40607,2.05521,0.824817,1.0447,-2.58641,1.49978,1.5834,0.612344,1.37377,0.247584,0.255949,0.355955,0.452641,0.529859,0.612284,2 +-0.863126,1.74861,2.38816,1.68451,-1.05467,-0.16329,-0.2185,-0.285733,1.43434,2.56597,3.07176,0.210934,1.5228,-1.90301,1.54195,1.64504,-0.319465,1.93324,-1.74381,1.64515,1.71551,-0.785679,1.78558,-1.30743,1.35494,1.81334,0.980652,1.58984,1.95582,2.10759,2.15235,2.1608,2 +-0.750948,1.13371,1.20488,0.0852433,-1.00915,0.251002,0.21834,0.176313,1.96348,1.64682,0.904434,0.470352,0.23682,-0.449963,0.0992854,0.869383,0.158123,0.296017,-0.410855,0.0164608,0.906343,0.367738,0.439029,-0.43767,0.143661,0.957005,0.963781,1.41372,1.57721,1.56014,1.53487,1.52158,2 +-0.810096,1.39013,1.27192,1.52925,-0.74689,0.295818,0.286743,0.231413,1.31491,0.123572,1.12171,0.712219,1.41076,-2.60709,1.82489,1.43525,0.0753987,1.50715,-1.78363,1.16884,1.49606,-0.14504,1.62918,-2.3127,1.50403,1.57435,0.698727,1.01288,1.16799,1.22166,1.27062,1.3283,2 +-0.828845,1.44207,1.8546,0.220239,-1.28287,-0.0967669,-0.16359,-0.220269,4.30205,2.8984,1.15861,0.162351,0.361701,-0.405248,0.0919394,1.05151,-0.138154,0.567538,-0.392215,0.175394,1.15837,-0.0975665,0.70982,-0.245325,0.257869,1.28132,1.18232,1.937,2.21239,2.19078,2.1296,2.10312,2 +-0.834632,1.67694,2.61082,2.73879,-1.01714,1.32575,1.14262,0.907182,1.26846,2.83286,1.6613,1.321,2.28603,-3.62775,3.59337,1.51054,0.971307,2.85513,-4.9978,4.20732,1.59347,0.646805,2.61586,-5.18639,4.01467,1.47671,0.936846,1.44981,1.73687,1.89553,1.95794,1.98077,2 +-0.858629,1.76389,2.6964,1.49519,-1.08208,0.490821,0.467054,0.424267,2.96353,2.24457,2.48395,0.847595,1.61095,-2.14095,1.92543,1.59934,0.205038,1.78117,-1.66076,1.68195,1.66758,0.251462,1.85869,-2.03011,1.70132,1.61312,0.98477,1.65634,2.07993,2.20949,2.23166,2.21486,2 +-0.165899,-0.0578883,-0.0171504,-0.101774,-0.0853032,0.917996,0.816322,0.504613,-0.536775,-0.592635,-0.464075,0.775674,0.120404,0.658289,-0.27362,0.0519814,0.951518,-0.157404,0.512249,-0.389626,-0.0725402,0.687553,-0.379612,0.508211,-0.428485,-0.213413,0.104902,-0.152596,-0.244886,-0.221339,-0.213043,-0.257039,2 +1.04449,-1.02517,-0.451452,-0.740943,0.222488,0.0858229,0.105982,0.259757,-0.502944,-0.263925,-0.690621,0.069202,-0.903095,0.0390985,-0.618671,-1.42157,0.225206,-0.62033,-0.336795,-0.441508,-1.38864,0.238759,-0.530099,-0.134776,-0.361212,-1.05338,-0.12715,-0.599381,-0.621509,-0.644657,-0.689472,-0.718166,0 +0.149608,-0.556775,-0.605697,-0.526241,0.148159,-0.0190895,-0.00588685,0.0129229,-0.140823,-0.61867,-0.58348,-0.192984,-0.433052,0.174584,-0.489731,-0.414373,0.235851,-0.613983,0.150707,-0.534697,-0.576834,0.0271651,-0.658489,0.305013,-0.493619,-0.650423,-0.0414873,-0.535036,-0.648694,-0.650733,-0.644027,-0.629924,0 +0.276578,-0.748619,-0.668033,-0.607627,0.18255,0.574355,0.58354,0.559853,-0.495318,-0.123832,-0.332378,0.497797,-0.490851,0.194503,-0.514258,-0.618321,0.635791,-0.690241,0.18232,-0.568778,-0.794334,0.700646,-0.717686,0.379742,-0.532218,-0.834692,-0.0823849,-0.567639,-0.683685,-0.686544,-0.687503,-0.695988,2 +-0.00780571,-0.480377,-0.548549,-0.563241,0.00752592,0.360922,0.352037,0.318635,-0.150717,0.147569,-0.165749,0.353006,-0.446435,0.174304,-0.499276,-0.487433,0.470552,-0.624288,0.159862,-0.535976,-0.472101,0.357314,-0.653052,0.365899,-0.504783,-0.575704,0.0643546,-0.354136,-0.518875,-0.536956,-0.541413,-0.543702,2 +0.00234872,-0.431813,-0.422238,-0.605968,-0.0158113,0.471391,0.438659,0.440648,0.176113,-0.348979,-0.478627,0.463466,-0.485314,0.192085,-0.523783,-0.443807,0.563321,-0.630634,0.0995553,-0.527391,-0.505223,0.539264,-0.617611,0.288912,-0.462166,-0.552247,0.0607666,-0.295028,-0.431263,-0.453611,-0.462786,-0.460118,2 +0.530369,-0.870393,-0.518775,-0.685194,0.225546,0.501265,0.472121,0.486793,-0.187867,0.311629,-0.333317,0.356644,-0.543532,0.204378,-0.556925,-0.905233,0.670492,-0.735896,0.125731,-0.567969,-1.04238,0.490541,-0.715997,0.338414,-0.505343,-0.906313,-0.158093,-0.635801,-0.741573,-0.759484,-0.785199,-0.815273,0 +-0.858579,1.75052,2.43768,2.35258,-0.967329,0.49194,0.459358,0.391715,1.00349,2.46973,2.26229,0.8024,1.96101,-3.22821,3.02395,1.69496,0.194353,2.55791,-2.78148,2.71497,1.81057,-0.123162,2.59821,-3.41874,2.92655,1.89414,0.900246,1.38367,1.66203,1.85272,1.95704,2.03029,2 +1.1593,-1.3632,-0.649633,-0.923433,0.25608,0.165919,0.153706,0.156624,0.158213,-0.0283845,-0.324672,-0.0481436,-1.02513,0.0037879,-0.65634,-1.90963,0.444866,-0.883965,0.10915,-0.597223,-1.79276,0.344221,-0.827006,0.377293,-0.544291,-1.48907,-0.192355,-0.723003,-0.858859,-0.89412,-0.933508,-0.979752,0 +0.626037,-0.785379,-0.390705,-0.715358,0.0447255,0.202459,0.256979,0.301035,-0.351397,-0.148868,-0.635581,0.00431759,-0.739594,0.0147819,-0.458808,-1.24911,0.385698,-0.663246,-0.00961484,-0.485044,-1.11812,0.391115,-0.608846,0.197102,-0.429214,-0.889672,0.0103742,-0.377513,-0.480526,-0.506502,-0.54747,-0.614143,0 +1.32371,-1.40267,-0.761032,-0.87433,0.342112,-0.657729,-0.603339,-0.508781,-0.610875,-0.696928,-0.808706,-0.776514,-0.937756,0.113838,-0.624857,-1.68232,-0.361372,-0.863186,0.191575,-0.597692,-1.81378,-0.665445,-0.845646,0.417761,-0.561582,-1.58625,-0.241638,-0.830564,-0.920705,-0.959194,-1.02948,-1.10083,0 +-0.898037,2.072,3.72076,2.33671,-1.3209,0.148948,0.0735995,-0.034601,2.17708,4.17112,4.58706,0.497417,2.44774,-2.85952,3.14937,1.96109,-0.138664,2.67297,-1.88454,2.77936,1.92733,-0.392375,2.70306,-2.12631,2.66978,2.07191,1.2116,2.06108,2.62428,2.88789,2.99998,3.01773,2 +-0.890681,1.96781,3.22471,1.9363,-1.2599,0.335576,0.288482,0.216211,3.08314,1.91541,3.09249,0.723213,2.25405,-2.64136,2.77875,1.86462,0.0317826,2.16115,-1.32704,1.87583,1.81997,0.0574884,2.3966,-2.0102,2.11111,1.86676,1.15367,1.94845,2.46246,2.67279,2.74069,2.73177,2 +0.405568,-0.643697,-0.421598,-0.751488,0.0127131,0.389346,0.402239,0.466524,-0.119305,-0.511719,-0.36421,0.267223,-0.865285,0.0385388,-0.615492,-1.1539,0.500725,-0.667934,0.00164897,-0.542463,-0.981172,0.579442,-0.621569,0.246715,-0.499846,-0.767689,0.060087,-0.30954,-0.424047,-0.491461,-0.550128,-0.594744,0 +0.654081,-0.981851,-0.711749,-0.78302,0.122463,-0.0870123,-0.0707812,-0.056449,-0.427855,-0.681366,-0.715827,-0.179641,-0.825107,0.234821,-0.570107,-1.36357,0.14668,-0.787218,0.213253,-0.579132,-1.19653,0.115337,-0.80265,0.408436,-0.559113,-1.21074,-0.0679128,-0.531388,-0.708991,-0.764561,-0.822089,-0.852742,0 +-0.832153,1.54525,1.71826,1.6852,-0.861577,-0.0532908,-0.0780972,-0.140483,0.0503923,0.904753,2.10378,0.375534,1.89451,-2.8454,2.50086,1.72296,-0.272211,1.62248,-1.64052,1.25115,1.57738,-0.524392,1.87957,-2.21857,1.71472,1.75416,0.810865,1.21321,1.44726,1.54632,1.6004,1.62274,2 +-0.00905502,-0.295378,-0.452521,-0.439649,-0.0506022,0.454641,0.469992,0.440488,-0.394374,0.0458748,0.333567,0.209505,-0.338434,0.326831,-0.423188,-0.167478,0.625867,-0.518536,0.286952,-0.501085,-0.386368,0.593544,-0.532538,0.379082,-0.468523,-0.342952,0.083784,-0.27315,-0.404208,-0.424048,-0.457079,-0.464735,0 +-0.822779,1.50204,1.55434,1.87578,-0.78417,0.0667534,0.0449553,-0.0262755,2.4509,1.05196,1.5676,0.374714,1.25615,-2.09648,1.51076,1.45013,-0.0859428,2.0317,-2.56971,1.93532,1.6509,-0.545301,1.75705,-2.02237,1.51577,1.68254,0.732128,1.07633,1.26632,1.375,1.45391,1.51941,2 +-0.848175,1.67018,2.46171,1.26034,-1.0877,0.571287,0.512459,0.424067,0.661837,2.79812,2.92438,0.736316,1.66092,-2.35815,2.15476,1.64384,0.376503,1.40836,-1.78661,1.33284,1.51655,0.253391,1.60997,-2.07218,1.60612,1.55426,1.01021,1.61672,1.98916,2.12401,2.17663,2.1772,2 +-0.863936,1.80184,2.83148,2.06927,-1.07122,0.781781,0.739074,0.664495,2.96779,1.85412,3.00345,1.06942,2.19239,-3.73725,3.32904,1.6704,0.445925,2.24133,-2.62595,2.44059,1.7415,0.387487,2.32889,-3.26211,2.64296,1.68097,0.978703,1.61795,2.00592,2.1985,2.27463,2.3011,2 +-0.136375,-0.222408,-0.501774,-0.318515,-0.0135125,0.245695,0.307251,0.448404,-0.0317526,-0.590786,-0.665795,0.0131128,-0.207706,-0.0901406,-0.21955,-0.0544002,0.444146,-0.432393,0.168927,-0.443057,-0.184079,0.0750688,-0.539964,0.290261,-0.463875,-0.315827,0.0688522,-0.265145,-0.393474,-0.449394,-0.450683,-0.45536,0 +0.138724,-0.498227,-0.497267,-0.658109,0.0335816,0.506602,0.538015,0.591955,-0.403668,-0.259548,-0.559363,0.384379,-0.614283,0.167538,-0.541363,-0.649873,0.63833,-0.666674,0.166139,-0.556595,-0.597732,0.626766,-0.664745,0.353056,-0.515217,-0.655301,0.0171905,-0.339264,-0.479057,-0.524093,-0.548649,-0.571117,0 +-0.0762981,-0.183579,-0.240298,-0.496488,-0.279047,0.0704014,0.112228,0.214562,0.135636,-0.238949,-0.456829,0.160392,-0.758894,0.105002,-0.585589,-0.739764,0.0997653,-0.312888,-0.435991,-0.390436,-0.402359,0.148998,-0.349349,0.000379824,-0.412304,-0.246835,0.326901,0.116596,-0.0239569,-0.0738898,-0.154925,-0.215412,0 +-0.853602,1.63803,1.91288,1.3889,-1.06229,0.172885,0.147669,0.0782271,2.33743,1.16748,2.05579,0.585259,1.50049,-2.00543,1.67297,1.62219,-0.0518715,1.46385,-1.19443,1.02997,1.58206,-0.0726002,1.68904,-1.70965,1.39159,1.70693,0.998462,1.57235,1.87108,1.94911,1.9827,1.99814,2 +-0.829295,1.54907,2.07403,0.982441,-1.02538,0.239988,0.191015,0.117586,0.624797,2.49535,2.27549,0.469352,1.45682,-2.02318,1.69215,1.57907,0.121763,1.07159,-1.32154,0.760922,1.36856,-0.122483,1.31669,-1.49033,1.08231,1.52392,0.94705,1.53936,1.88709,1.96896,1.9728,1.96977,2 +-0.83782,1.47566,1.68157,0.530879,-1.21028,-0.239878,-0.29176,-0.366709,1.09862,3.12355,1.52272,0.0424767,0.597072,-0.570077,0.25442,1.21928,-0.253261,0.803479,-0.597722,0.296757,1.28137,-0.650913,0.80107,-0.407266,0.258498,1.36321,1.1256,1.79875,2.05189,2.05595,1.97625,1.91338,2 +1.55349,-1.55233,-0.741113,-0.935637,0.421519,-0.751048,-0.787498,-0.773645,-0.713618,-0.603799,-0.714218,-0.78316,-1.04498,0.0130628,-0.666035,-2.08186,-0.421339,-0.899507,0.0991055,-0.603949,-1.97118,-1.04355,-0.85747,0.362201,-0.561762,-1.59297,-0.331948,-0.883235,-0.972906,-0.995284,-1.02597,-1.05475,0 +0.0629855,-0.587678,-0.723183,-0.471511,0.336975,2.28768,2.26986,2.25549,-0.362651,-0.706232,-0.744481,2.00264,-0.873391,-0.159762,-0.633103,-1.00492,2.0929,-0.430754,-0.242027,-0.487992,-0.366559,1.02056,-0.58356,0.149678,-0.470951,-0.423438,-0.278767,-0.784839,-0.900686,-0.933888,-0.961513,-0.987208,1 +0.067423,-0.51017,-0.499206,-0.5833,-0.00778569,0.745491,0.721414,0.668973,-0.297667,0.0106841,-0.187867,0.672151,-0.454371,0.177732,-0.49171,-0.428455,0.785519,-0.633073,0.205217,-0.542143,-0.569697,0.738165,-0.650253,0.374934,-0.504213,-0.618051,0.0848734,-0.331528,-0.475199,-0.507132,-0.513878,-0.522363,2 +-0.83927,1.54128,1.602,1.46078,-0.923873,0.103763,0.0810854,0.0123333,-0.0143322,0.748249,1.66233,0.620649,1.46554,-2.20133,1.70644,1.57913,-0.161251,1.48922,-1.15776,1.03767,1.58575,-0.276578,1.81022,-1.92512,1.55,1.76476,0.871772,1.2986,1.485,1.55219,1.6165,1.66178,2 +-0.858569,1.83232,3.04506,2.96839,-1.02889,1.02302,0.96602,0.867844,1.50599,3.23798,3.32039,1.35418,2.24208,-3.89234,3.34568,1.53985,0.544501,3.29133,-3.49775,3.93807,1.80129,0.348279,3.05454,-4.05793,3.5685,1.74387,0.938615,1.52769,1.89514,2.1089,2.21358,2.26724,2 +0.233362,-0.603539,-0.589886,-0.67494,0.118955,-0.30918,-0.265404,-0.214812,-0.0210485,-0.496578,-0.539464,-0.441398,-0.675929,0.186588,-0.585749,-0.805148,0.0105943,-0.694479,0.187447,-0.567389,-0.701925,-0.408306,-0.698817,0.379932,-0.534407,-0.720415,-0.0426966,-0.467454,-0.590296,-0.664246,-0.708701,-0.732298,0 +-0.635461,0.772976,0.467284,0.395783,-0.697247,0.443836,0.438619,0.494119,0.366949,0.876949,0.156754,0.584739,0.0553395,0.14535,-0.122833,0.520854,0.383799,0.543662,-0.591855,0.417671,0.790886,0.248034,0.420409,-0.933578,0.498897,0.81954,0.683045,0.817741,0.730969,0.638479,0.609836,0.595753,2 +1.34371,-1.4144,-0.671661,-0.908581,0.302174,-0.688842,-0.699696,-0.730979,-0.128579,-0.361442,-0.543991,-0.809026,-0.997803,0.0604468,-0.626556,-1.95217,-0.318185,-0.871672,0.107311,-0.585139,-1.854,-0.851503,-0.834962,0.367548,-0.550198,-1.51972,-0.187097,-0.780372,-0.89313,-0.936017,-0.981282,-1.04835,0 +-0.887763,1.95623,3.38617,1.65768,-1.33239,0.538095,0.481696,0.387078,3.4059,3.03491,3.90701,0.937256,1.81737,-2.31808,2.13282,1.69594,0.248983,2.06953,-1.41652,1.99952,1.78098,0.12736,2.11862,-1.77435,1.89617,1.7594,1.21452,2.08456,2.60763,2.76901,2.76561,2.73087,2 +1.07154,-1.23734,-0.69247,-0.841798,0.302224,0.249843,0.237739,0.225486,-0.0303034,-0.493899,-0.402039,0.202379,-0.879088,0.156114,-0.589747,-1.48719,0.410155,-0.832723,0.212333,-0.581531,-1.56812,0.413473,-0.810795,0.428065,-0.548099,-1.39396,-0.227895,-0.72977,-0.806757,-0.827766,-0.848185,-0.872631,0 +1.12627,-1.27782,-0.729779,-0.812154,0.332138,-0.544421,-0.620679,-0.625757,-0.227225,-0.347499,0.173934,-0.630374,-0.895319,0.18176,-0.599032,-1.73277,-0.151807,-0.806727,0.260557,-0.574645,-1.58106,-0.807697,-0.781831,0.478418,-0.540343,-1.28518,-0.271551,-0.787008,-0.887673,-0.921645,-0.968619,-1.01261,0 +-0.848624,1.69035,2.41866,1.73663,-1.01967,0.433692,0.392475,0.31067,3.48697,1.99201,3.30908,0.995354,1.4372,-2.35508,1.6803,1.48603,0.111289,2.05762,-1.77085,1.97984,1.68394,-0.0553197,1.88725,-1.93126,1.65722,1.74734,0.953167,1.51988,1.89691,2.07266,2.12215,2.14919,2 +-0.871232,1.77909,2.45153,1.61918,-1.1677,0.18192,0.165749,0.148329,0.522883,1.73111,2.71889,0.589227,1.93431,-2.49032,2.41221,1.78405,-0.0806457,1.74804,-1.08704,1.36228,1.69602,-0.172705,2.061,-1.68313,1.77033,1.88737,1.08024,1.73259,2.07859,2.1999,2.24337,2.27865,2 +0.352946,-0.594454,-0.421059,-0.708581,-0.032682,0.361831,0.388996,0.378602,0.232592,-0.293919,-0.296078,0.16369,-0.700666,0.212923,-0.542233,-0.963231,0.544921,-0.682755,0.177832,-0.544821,-0.843227,0.375754,-0.6386,0.398881,-0.49209,-0.718836,0.0588776,-0.21881,-0.38216,-0.466904,-0.517066,-0.563331,0 +0.481396,-0.794064,-0.568338,-0.789477,-0.00631649,0.207016,0.298836,0.335936,0.0393584,-0.497297,-0.61872,0.0714008,-0.800491,0.221818,-0.570967,-1.21717,0.376713,-0.768678,0.209425,-0.575734,-1.06813,0.338914,-0.744891,0.425227,-0.540993,-0.987008,0.0878817,-0.289361,-0.415122,-0.487083,-0.56427,-0.651722,0 +-0.811125,1.45316,1.54238,1.97857,-0.753727,0.196612,0.169437,0.110419,2.29004,0.944462,1.3707,0.547919,1.26935,-2.49662,1.64839,1.34014,0.014792,2.14368,-2.99995,2.13992,1.59656,-0.497157,1.79007,-2.39018,1.62573,1.62309,0.723133,1.02714,1.21275,1.34022,1.43638,1.50481,2 +-0.80119,1.33448,1.2301,0.935377,-0.815812,-0.106661,-0.124212,-0.159173,-0.0794364,0.533867,1.38135,0.329769,1.22636,-1.97167,1.389,1.46124,-0.242537,0.912789,-0.951148,0.445395,1.32553,-0.549988,1.1266,-1.19139,0.744372,1.46475,0.750598,1.1089,1.27802,1.31738,1.34841,1.3803,2 +-0.83757,1.67593,2.38205,2.63608,-0.942063,0.547919,0.498706,0.415352,1.32493,2.41512,2.44843,0.784999,1.98524,-3.49996,2.9069,1.5974,0.274459,2.83909,-3.78316,3.31172,1.69952,-0.212693,2.47392,-3.50171,2.80889,1.82594,0.879098,1.35695,1.6584,1.83136,1.9451,2.01658,2 +-0.751728,1.05256,0.878098,0.0479637,-0.990327,-0.779033,-0.754946,-0.706642,0.600191,1.94684,0.416471,-0.517626,-0.133647,-0.19969,-0.287682,0.570217,-0.751018,0.324172,-0.409935,-0.0813056,0.892391,-1.02312,0.405347,-0.178632,-0.0420867,1.01986,0.915478,1.35336,1.43795,1.38697,1.31485,1.25379,2 +-0.423758,0.466734,0.287822,0.67394,-0.239249,0.169497,0.232702,0.316217,0.156544,0.684184,-0.152476,0.14571,0.440828,-0.942093,0.319605,0.645506,0.187577,0.597632,-2.09878,0.71106,0.521044,0.12823,0.67435,-2.00485,0.896578,0.579392,0.259787,0.118185,0.10913,0.113527,0.119844,0.112798,0 +0.0904404,-0.299955,-0.102763,-0.575664,-0.231033,0.554456,0.617661,0.880087,0.757174,0.162451,-0.361392,0.519415,-0.681746,-0.0640149,-0.491451,-0.655021,0.60057,-0.432703,-0.45592,-0.362881,-0.666844,0.553126,-0.34702,-0.271921,-0.206906,-0.443537,0.297217,0.0487831,-0.0298136,-0.0796466,-0.154545,-0.221728,0 +0.722514,-1.03886,-0.74715,-0.624158,0.359353,2.78759,2.81546,2.82158,-0.379022,-0.719065,-0.751478,2.47112,-0.898377,-0.288292,-0.559373,-1.52469,2.36667,-0.610505,-0.40175,-0.361412,-1.04456,1.57173,-0.676379,0.0410375,-0.405617,-1.03674,-0.251162,-0.837011,-0.954276,-0.984,-1.01665,-1.05263,1 +-0.378053,0.0620159,-0.268333,-0.574375,-0.451942,0.114497,0.104173,0.0436461,1.05559,0.304693,-0.208206,0.131608,-0.574435,0.0300435,-0.524942,-0.180881,0.228725,-0.533068,0.0784768,-0.506252,-0.124971,0.180331,-0.535806,0.287132,-0.477888,-0.201609,0.47405,0.365369,0.179262,0.123782,0.10858,0.114097,2 +0.0554496,-0.0504224,0.0679329,0.0205188,-0.0648344,0.0332418,0.0197891,0.160222,0.477648,-0.32841,-0.342682,-0.0308331,-0.00652654,-0.0700716,0.0757183,-0.0548,0.118285,0.0149217,-0.760263,0.111529,-0.168677,0.0613063,0.0353704,-0.775584,0.196352,-0.058578,0.0903504,-0.112478,-0.136285,-0.161382,-0.166729,-0.194233,0 +-0.851693,1.66066,2.06304,1.54786,-1.0223,0.313688,0.293799,0.285653,0.623648,1.95573,2.55339,0.714088,1.68293,-2.49834,2.12013,1.65861,0.0333518,1.6338,-1.54083,1.35706,1.63545,0.00122929,1.81274,-2.08748,1.66492,1.71581,0.954636,1.50409,1.80531,1.90576,1.93874,1.96057,2 +-0.533587,0.539694,0.205407,-0.0505222,-0.685014,0.137135,0.190955,0.235191,0.0301534,0.782011,0.384529,0.32766,-0.322253,-0.380241,-0.275759,0.154245,0.126041,0.0979761,-0.915038,-0.00540724,0.397952,0.0884414,0.225416,-0.836631,0.140963,0.510969,0.636661,0.806277,0.681996,0.584239,0.527641,0.498696,2 +-0.792175,1.27076,1.50986,0.118695,-1.17976,0.289601,0.264745,0.32764,2.10091,2.02748,0.865255,0.508661,0.161531,-0.355825,-0.0627057,0.8561,0.225636,0.460997,-0.643817,0.0807955,0.981402,0.220989,0.644006,-0.591036,0.21915,1.13419,1.11239,1.72253,1.90012,1.8272,1.75592,1.66877,2 +-0.0833543,-0.122703,0.0108143,-0.30975,-0.107861,0.759503,0.766419,0.803539,0.319325,-0.0463346,-0.0459648,0.705233,-0.391195,-0.0470742,-0.403369,-0.260127,0.771067,-0.216951,-0.852252,-0.05511,-0.25546,0.667424,-0.142882,-0.69289,0.0412776,-0.212304,0.132897,-0.112109,-0.144531,-0.151777,-0.159482,-0.157484,0 +0.976194,-1.13431,-0.580171,-0.811875,0.165749,0.477458,0.384529,0.355305,0.141582,0.196722,0.484774,0.391645,-0.869173,0.242677,-0.552487,-1.65667,0.603199,-0.776864,0.32721,-0.542692,-1.51232,0.602469,-0.768049,0.499256,-0.535166,-1.34904,-0.071221,-0.521524,-0.667554,-0.686194,-0.706562,-0.743262,0 +0.168887,-0.640029,-0.579592,-0.713009,-0.0270151,0.713568,0.665135,0.648204,-0.354705,-0.160942,-0.445665,0.536725,-0.693689,0.104373,-0.552277,-0.807957,0.804838,-0.726252,0.157733,-0.559663,-0.818871,0.755595,-0.725472,0.354126,-0.521084,-0.898547,0.0356904,-0.36546,-0.540683,-0.580542,-0.616802,-0.635122,0 +0.752847,-1.02965,-0.559893,-0.686024,0.0606468,0.367928,0.36443,0.365549,-0.0371197,-0.386018,-0.621849,0.204008,-0.833023,-0.278067,-0.448664,-1.57589,0.577893,-0.672171,-0.422438,-0.268763,-1.34425,0.52849,-0.628635,-0.149448,-0.23688,-1.21414,0.0487432,-0.477768,-0.63858,-0.681147,-0.723793,-0.776294,0 +0.548799,-0.956905,-0.737405,-0.744991,0.347459,0.1999,0.193834,0.249413,-0.62038,-0.436151,-0.594694,0.0978962,-0.753327,0.0202589,-0.58301,-1.09017,0.375274,-0.782431,0.0776273,-0.577323,-1.05341,0.29096,-0.774815,0.288572,-0.526681,-1.15664,-0.265984,-0.767389,-0.91076,-0.915358,-0.943422,-0.94702,0 +0.0556095,-0.524912,-0.617081,-0.440988,0.243656,2.0922,2.08049,2.0801,-0.135885,-0.519845,-0.556804,2.02421,-0.742813,-0.535126,-0.306272,-0.940334,1.85748,-0.433362,-0.725082,-0.0544703,-0.340433,0.96498,-0.499536,-0.18241,-0.208615,-0.417621,-0.152307,-0.669852,-0.787988,-0.815043,-0.846356,-0.878568,1 +-0.260127,0.561982,1.04182,3.24659,-0.165749,1.39429,1.40807,1.38757,0.396153,1.02829,0.919265,1.29627,1.96019,-5.48146,4.13537,0.542672,1.07709,3.14062,-7.37687,5.02742,0.552847,0.265464,2.35981,-5.5877,3.75211,0.967129,0.16467,0.119744,0.256569,0.391785,0.482485,0.540963,2 +-0.85613,1.76724,2.74581,1.61321,-1.08786,0.284004,0.242397,0.165789,2.81223,2.36958,3.00693,0.65627,1.72406,-2.41785,1.9825,1.63857,0.029374,1.86334,-2.06612,1.78636,1.65203,-0.0165909,1.85389,-2.07653,1.68355,1.69041,1.00316,1.68041,2.11971,2.28977,2.32337,2.30195,2 +-0.481096,0.550208,0.430034,0.738035,-0.261227,0.846466,0.914868,0.415562,-0.0796563,-0.697757,0.00758578,0.805798,0.476998,0.0873221,0.0357702,0.726071,0.708041,0.862007,-1.97424,1.13589,0.635721,0.577363,0.499116,-1.24591,0.520515,0.432582,0.224947,0.196652,0.137545,0.162121,0.18267,0.169007,2 +0.0878318,-0.65628,-0.629964,-0.789477,0.034691,-0.0479037,-0.014752,0.00876522,0.139244,-0.385518,-0.614003,-0.0776974,-0.89309,0.0840938,-0.616442,-1.15608,0.0742893,-0.713968,0.0573284,-0.577893,-0.685744,0.195733,-0.681826,0.278857,-0.529529,-0.736676,0.0549598,-0.479977,-0.607867,-0.695149,-0.74658,-0.809606,0 +1.5314,-1.45617,-0.701665,-0.886094,0.413933,-0.242267,-0.271491,-0.171276,-0.568648,-0.225706,-0.359103,-0.271791,-0.952837,0.14639,-0.584729,-1.97703,-0.0155914,-0.861078,0.158173,-0.588987,-1.80943,-0.14668,-0.800041,0.393004,-0.526421,-1.5363,-0.265404,-0.896828,-0.963401,-0.995724,-1.03101,-1.07025,0 +-0.658978,0.813264,0.499126,0.10947,-0.745281,0.243706,0.14614,-0.0200789,0.917936,0.416781,0.0761881,0.304043,0.230204,0.458918,-0.104993,0.703684,0.341792,0.16389,0.270771,-0.158553,0.687153,0.0904703,-0.0419572,0.280906,-0.277128,0.607307,0.718766,0.9469,0.939445,0.889412,0.871932,0.853352,2 +0.313398,-0.813094,-0.69152,-0.660348,0.270462,0.581391,0.585868,0.56574,-0.535056,-0.483375,-0.62038,0.532178,-0.577373,0.124911,-0.554676,-0.738155,0.667144,-0.723093,0.172006,-0.580851,-0.872211,0.526851,-0.741863,0.394394,-0.542382,-0.919795,-0.191895,-0.697997,-0.814193,-0.829955,-0.835442,-0.845796,0 +-0.690261,0.830055,0.539914,-0.0951877,-0.701775,-0.392814,-0.429514,-0.484374,1.77898,0.876859,0.140683,-0.21971,0.0725301,-0.174204,-0.194973,0.743992,-0.27263,-0.0124533,-0.174854,-0.242037,0.686244,-0.594454,-0.0119536,0.0487533,-0.234351,0.677558,0.669533,0.914078,0.944022,0.888522,0.850074,0.8391,2 +0.375254,-0.750168,-0.513288,-0.707712,0.134656,0.533217,0.52805,0.52839,-0.0600871,0.647605,-0.433482,0.393844,-0.641798,0.113418,-0.530819,-0.91182,0.686813,-0.732868,0.12721,-0.557454,-0.922604,0.555245,-0.699726,0.324172,-0.489161,-0.884015,-0.0563891,-0.524952,-0.645326,-0.676689,-0.706882,-0.735786,0 +0.586958,-0.96674,-0.668583,-0.813374,0.209285,0.284334,0.270322,0.283484,-0.0898607,-0.544921,-0.608516,0.160112,-0.890741,-0.0189296,-0.624008,-1.27271,0.481986,-0.805848,0.0386387,-0.559083,-1.23493,0.392994,-0.779502,0.282295,-0.515737,-1.21382,-0.116106,-0.630634,-0.746411,-0.787318,-0.807527,-0.824388,0 +1.27679,-1.49001,-0.758234,-0.936256,0.253411,0.439939,0.408116,0.458289,-0.655021,-0.43649,-0.658169,0.259757,-1.0801,-0.0698517,-0.663416,-2.21624,0.613373,-0.903954,0.083554,-0.597602,-1.87081,0.636371,-0.869333,0.333117,-0.550668,-1.684,-0.159083,-0.745971,-0.902005,-0.944722,-0.991266,-1.03043,0 +0.240848,-0.545831,-0.277977,-0.633402,-0.0213782,0.410944,0.413983,0.326601,0.0398081,-0.302554,-0.0636551,0.319005,-0.586009,0.405448,-0.432553,-0.920805,0.587767,-0.608806,0.282765,-0.470742,-0.762672,0.43655,-0.604029,0.40047,-0.43682,-0.741353,0.123522,-0.294618,-0.425027,-0.466514,-0.517796,-0.560562,0 +-0.840329,1.63867,2.28436,1.96762,-1.05693,1.08563,1.02671,0.848874,3.69044,2.02844,3.12076,1.32004,1.58664,-2.25741,1.90913,1.4041,0.782171,2.18868,-2.7847,2.39378,1.57221,0.576684,2.01271,-3.074,2.19623,1.51664,1.00549,1.55222,1.80484,1.86927,1.87459,1.87296,2 +-0.836781,1.52997,1.50633,1.82612,-0.890042,0.293429,0.277927,0.288522,0.104153,0.985959,1.90936,0.889812,1.42633,-2.30814,1.93769,1.5181,-0.0629754,1.97221,-0.815703,1.51257,1.68212,-0.117226,2.03045,-1.61503,1.70894,1.85075,0.835721,1.22589,1.35447,1.41173,1.44646,1.51469,2 +1.42157,-1.52878,-0.824258,-0.919216,0.466924,-0.469193,-0.472711,-0.483745,-0.250543,-0.740953,-0.757095,-0.462916,-1.07534,-0.0262256,-0.679797,-2.12263,-0.229914,-0.895499,0.125971,-0.612104,-1.73832,-0.323852,-0.877918,0.373225,-0.570877,-1.66653,-0.333897,-0.98364,-1.08389,-1.10544,-1.12979,-1.16031,0 +-0.840689,1.59539,2.08612,0.935027,-1.08895,-0.120244,-0.144481,-0.10852,3.387,1.9213,2.53364,0.511329,0.880307,-1.15204,0.663836,1.36986,-0.360612,1.32746,-0.531858,0.91002,1.55998,-0.430664,1.29817,-0.513518,0.76555,1.6263,1.00197,1.6577,1.98884,2.07171,2.07379,2.02225,2 +-0.525302,0.731699,0.631334,0.813084,-0.498986,-0.30976,-0.314388,-0.285883,1.01147,-0.290381,0.421888,-0.0682226,0.305842,-0.193494,0.277398,0.662566,-0.342132,0.979093,-1.67361,0.843727,0.748449,-0.574755,0.868143,-1.40529,0.666654,0.82032,0.485014,0.489191,0.556884,0.644076,0.694279,0.750128,2 +-0.83769,1.55745,2.04296,0.735157,-1.18512,0.192175,0.0403278,-0.0661737,1.36282,3.76181,1.65538,0.384569,0.949569,-0.698317,0.71009,1.38337,0.110869,0.988388,-0.643267,0.664595,1.34193,-0.0215182,0.933448,-0.689322,0.569188,1.37958,1.09666,1.78888,2.12195,2.17863,2.16503,2.12726,2 +-0.89336,2.06333,3.98985,2.61568,-1.29514,0.832813,0.735526,0.576164,5.66245,3.65853,4.62526,1.00774,2.49017,-3.11204,2.97541,1.78342,0.500555,3.00633,-3.23814,3.45096,1.83047,0.38208,2.76838,-3.43587,2.9235,1.68542,1.16693,2.06982,2.71259,2.96449,3.01885,2.97249,2 +-0.212154,0.442907,0.950089,2.17895,-0.187097,2.02934,2.01442,2.00335,0.134976,0.849584,1.25307,1.85795,1.21993,-4.18386,2.89558,0.251812,1.59248,2.21791,-5.64935,3.5978,0.446075,1.03137,1.6621,-4.53096,2.87584,0.613543,0.184149,0.167638,0.311899,0.408895,0.441398,0.452832,2 +-0.514118,0.31046,-0.107471,-0.417611,-0.451103,0.0883515,0.0677428,0.0500026,0.40078,-0.0523413,-0.226376,0.32824,-0.32788,-0.0744292,-0.377633,0.242307,0.119255,-0.390866,0.0251261,-0.471891,0.19972,0.124222,-0.388827,0.216491,-0.436011,0.115726,0.453461,0.412953,0.301445,0.242237,0.223078,0.228714,2 +-0.567818,0.526941,0.103653,-0.0549698,-0.460777,-0.175054,-0.176623,-0.121143,-0.161791,0.241997,-0.222248,0.0135925,-0.101165,0.134846,-0.261457,0.493319,-0.138834,-0.00190908,-0.360552,-0.0442159,0.532038,-0.177053,0.00337795,-0.366729,0.00224896,0.485893,0.457679,0.410045,0.306562,0.275299,0.271341,0.274719,2 +-0.0515817,-0.464585,-0.60014,-0.597852,0.0518816,-0.539474,-0.521484,-0.572796,-0.40178,-0.327071,-0.394394,-0.519585,-0.496847,0.258378,-0.51031,-0.307591,-0.335096,-0.666814,0.252691,-0.537905,-0.607047,-0.522553,-0.643747,0.411874,-0.512159,-0.518046,0.00645639,-0.40066,-0.545341,-0.570048,-0.592115,-0.624987,0 +0.0897708,-0.462256,-0.516157,-0.658549,0.0323023,-0.279357,-0.206257,-0.216991,-0.410765,-0.0340813,-0.103973,-0.367089,-0.662966,0.12825,-0.586478,-0.621869,-0.00274841,-0.665405,0.160502,-0.560443,-0.571067,-0.294249,-0.649024,0.385878,-0.519015,-0.557864,0.0389985,-0.354725,-0.49295,-0.552257,-0.592485,-0.615572,0 +-0.559543,0.824837,0.428415,2.18342,-0.360472,-0.544171,-0.603219,-0.694789,0.367128,0.168767,0.350428,-0.679727,1.59101,-1.59858,1.84403,1.11639,-0.522503,1.77921,-3.00209,2.25668,1.02688,-0.642647,1.9154,-3.68849,2.49765,1.18929,0.394224,0.311459,0.301924,0.315587,0.286663,0.270132,2 +-0.0379092,-0.306762,-0.725262,0.211934,1.36359,-0.599931,-0.560203,-0.461577,-1.13765,-0.754746,-0.51024,-0.406297,0.269032,0.515187,-0.177643,0.776284,-0.63803,0.0680225,0.848344,-0.294039,0.312489,-0.238959,-0.266904,0.670812,-0.432313,0.148099,-1.2688,-1.06739,-0.756505,-0.641638,-0.595213,-0.576784,2 +2.74818,-1.62224,-0.890371,-0.258308,2.88845,-0.347899,-0.245915,-0.070951,-1.13967,-0.846825,-0.549419,-0.447375,-0.0504824,0.567629,-0.386138,-0.705923,-0.253351,-0.480097,0.426736,-0.502075,-1.03942,0.257159,-0.569997,0.488892,-0.520704,-0.571137,-2.90319,-2.12146,-1.52518,-1.33112,-1.24479,-1.19706,0 +1.79323,-1.51379,-0.921604,-0.749419,2.78252,-0.518456,-0.471162,-0.410595,-1.1292,-0.894049,-0.610655,-0.30971,-0.830534,0.0311429,-0.63817,-0.773316,-0.541613,-0.759164,0.138584,-0.573186,-0.986619,0.245615,-0.768718,0.374684,-0.551227,-0.998552,-2.92143,-2.02506,-1.48782,-1.30053,-1.21168,-1.15621,2 +2.39434,-1.58421,-0.908661,-0.539184,2.78295,-0.669403,-0.585529,-0.462796,-1.13774,-0.940394,-0.754616,-0.858379,-0.526221,0.385369,-0.530229,-0.968449,-0.458168,-0.649444,0.340493,-0.554056,-1.04642,-0.368948,-0.717357,0.487672,-0.540593,-1.03281,-2.90801,-2.01852,-1.44061,-1.25177,-1.1791,-1.12673,0 +0.584399,-1.07794,-0.916947,-0.605948,1.69502,-1.69251,-1.62686,-1.5489,-1.14868,-0.876489,-0.552937,-1.5262,-0.329939,0.281236,-0.489911,0.0910899,-1.76589,-0.759303,0.147549,-0.600051,-0.786209,-1.32941,-0.702964,0.404818,-0.553416,-0.661907,-1.64356,-1.57828,-1.25135,-1.10388,-1.03499,-0.985769,2 +2.17166,-1.636,-0.949859,-0.365589,2.93445,-0.347749,-0.311919,-0.223887,-1.13449,-0.876079,-0.500086,-0.461437,-0.211974,0.357034,-0.519825,-0.654681,-0.177612,-0.569608,0.25474,-0.576104,-0.98399,0.201679,-0.648764,0.422818,-0.544571,-0.745181,-2.99464,-2.20828,-1.63832,-1.44097,-1.35729,-1.29901,0 +2.68397,-1.73451,-0.944522,-0.626007,3.2141,-0.855191,-0.859888,-0.823178,-1.16106,-0.80233,-0.45641,-0.895529,-0.335986,0.392475,-0.498916,-0.514058,-0.670282,-0.785289,0.154545,-0.60104,-1.30985,-0.523523,-0.761432,0.38281,-0.556684,-1.00721,-3.31915,-2.26008,-1.63905,-1.43146,-1.33952,-1.27646,0 +1.40353,-1.3775,-0.878967,-0.698937,1.93783,-0.608056,-0.597012,-0.571486,-1.12885,-0.842078,-0.466174,-0.726591,-0.690831,0.242427,-0.560942,-0.787918,-0.388916,-0.755366,0.233532,-0.579492,-1.00789,-0.00538708,-0.727581,0.47435,-0.534207,-0.934957,-1.85798,-1.73296,-1.34434,-1.20779,-1.15249,-1.12799,0 +-0.571476,0.280516,-0.492979,-0.175134,-0.342742,0.306682,0.422108,0.451982,-1.06482,-0.257549,0.003538,0.605348,-0.439979,-0.104423,-0.534197,0.197591,0.213853,0.0664834,-0.199421,-0.282315,0.74727,0.260737,-0.151387,0.203089,-0.390925,0.504303,0.347569,0.398571,0.240268,0.156794,0.12802,0.147679,2 +1.18473,-0.962872,-0.798652,-0.575554,2.1068,-0.40131,-0.361492,-0.355305,-1.0761,-0.823548,-0.516287,-0.202259,-0.806757,0.0376093,-0.628595,-0.730999,-0.38328,-0.507252,-0.0521415,-0.461717,-0.464245,0.0318925,-0.582331,0.214093,-0.475459,-0.608396,-2.18808,-1.46485,-1.03479,-0.913029,-0.872212,-0.815413,2 +2.76822,-1.70205,-0.913049,-0.82078,3.18085,-0.478987,-0.450843,-0.422018,-1.13814,-0.862367,-0.671462,-0.248544,-0.855421,0.0592375,-0.649624,-1.07655,-0.476269,-0.781281,0.0849633,-0.590946,-1.13275,0.158753,-0.803999,0.374684,-0.557444,-1.26457,-3.39675,-2.15573,-1.5562,-1.37788,-1.29035,-1.2447,2 +3.60318,-2.17255,-0.973965,-0.870422,2.7692,-1.10474,-1.09144,-1.04031,-1.15988,-0.905523,-0.599051,-1.3038,-0.970827,0.0740294,-0.645286,-1.78544,-0.846925,-0.89396,0.153596,-0.605228,-1.85127,-0.615033,-0.87514,0.386728,-0.568188,-1.71506,-2.81823,-2.27006,-1.67914,-1.4813,-1.40749,-1.36988,0 +3.21503,-2.0438,-0.990846,-0.771577,3.33945,-0.509101,-0.508831,-0.50951,-1.15684,-0.959034,-0.65641,-0.606997,-0.858819,0.0987358,-0.644966,-1.41665,-0.283944,-0.827136,0.150108,-0.605658,-1.29336,-0.0897408,-0.845166,0.383819,-0.569188,-1.40523,-3.44,-2.47489,-1.79804,-1.5479,-1.44574,-1.38137,0 +3.84536,-2.07315,-0.938795,-0.883245,3.05392,-0.518056,-0.467054,-0.41996,-1.12279,-0.903964,-0.74702,-0.331318,-1.01353,0.00686621,-0.665745,-1.72074,-0.468893,-0.866615,0.129619,-0.600541,-1.64904,0.135426,-0.869723,0.372616,-0.567179,-1.67949,-3.12021,-2.26156,-1.64652,-1.42469,-1.33198,-1.28019,2 +-0.623348,0.398531,-0.542252,0.45642,0.169027,-0.231173,-0.172985,-0.0775074,-1.09503,-0.568888,-0.0846936,-0.245345,1.17814,-0.879627,0.531768,1.39088,-0.12731,0.140843,-0.0284645,-0.314228,0.74677,-0.448824,-0.108271,0.25512,-0.404718,0.551267,-0.227945,0.03629,0.117276,0.079726,0.0890412,0.100945,2 +2.08521,-1.4679,-0.890871,-0.731059,2.46886,-0.939405,-0.912619,-0.908122,-1.11772,-0.881946,-0.712169,-0.898827,-0.796553,-0.10996,-0.625637,-0.69275,-0.800471,-0.749089,0.0124231,-0.563031,-1.24461,-0.523043,-0.732888,0.248164,-0.526981,-1.0995,-2.49106,-1.84692,-1.35273,-1.17816,-1.10471,-1.04622,2 +2.47498,-1.84943,-0.977803,-0.6924,2.59293,-0.785379,-0.787898,-0.750688,-1.14849,-0.954146,-0.65602,-1.00106,-0.735447,0.231493,-0.591696,-1.19747,-0.532887,-0.78323,0.21881,-0.594804,-1.35466,-0.186418,-0.799392,0.420809,-0.563221,-1.27039,-2.4005,-2.17945,-1.66372,-1.46514,-1.3824,-1.33801,0 +2.71937,-1.86272,-0.969688,-0.634472,3.29433,-1.21084,-1.20088,-1.15938,-1.15799,-0.943652,-0.826816,-1.38749,-0.645206,0.151027,-0.621779,-0.996903,-0.926551,-0.738025,0.189606,-0.599761,-1.19467,-1.06281,-0.781641,0.410295,-0.563271,-1.11498,-3.46321,-2.38747,-1.72543,-1.49329,-1.40123,-1.34386,0 +1.82911,-1.68874,-0.968888,-0.741263,2.44171,-0.387687,-0.334427,-0.331648,-1.15183,-0.945691,-0.810165,-0.432693,-0.82056,0.135945,-0.615552,-1.00939,-0.281485,-0.796623,0.216081,-0.587458,-1.15832,0.247214,-0.810825,0.417251,-0.561002,-1.26897,-2.51373,-2.10079,-1.60689,-1.42633,-1.35444,-1.31713,0 +3.96303,-2.20849,-0.975505,-0.870552,3.19662,-0.952187,-0.836011,-0.726981,-1.16646,-0.98409,-0.869633,-0.775884,-0.996453,0.0150417,-0.662896,-1.67602,-0.903414,-0.877149,0.140673,-0.606078,-1.7061,-0.461377,-0.853142,0.403089,-0.56465,-1.59527,-3.25424,-2.39081,-1.73731,-1.4941,-1.39844,-1.34268,0 +-0.222668,-0.238549,-0.751777,-0.31036,0.780602,0.137385,0.135206,0.122473,-1.05787,-0.717436,-0.32823,0.412114,-0.703714,0.0447354,-0.61948,-0.371826,0.103453,-0.152596,-0.104133,-0.334297,0.449703,0.404198,-0.355335,0.18156,-0.425656,0.116246,-0.815733,-0.695139,-0.570847,-0.537326,-0.514987,-0.496158,2 +-0.588037,0.316946,-0.504473,0.16349,0.155685,0.387717,0.470372,0.713938,-0.942833,-0.47324,-0.0305333,0.280276,0.0748288,0.176573,-0.381671,0.654211,0.450583,0.0958673,0.485873,-0.333997,0.645986,0.560652,-0.184119,0.540064,-0.43768,0.412334,-0.138494,0.0910599,0.143421,0.0758381,0.0319425,0.0108041,2 +0.102694,-0.515977,-0.690841,-0.507302,0.944072,-0.731609,-0.715098,-0.671921,-1.09653,-0.676919,-0.10919,-0.446945,-0.356884,0.207206,-0.399081,0.0831343,-0.758514,-0.525122,-0.00470754,-0.482615,-0.316666,-0.277058,-0.480766,0.141842,-0.428425,-0.313098,-0.89395,-0.80252,-0.679237,-0.668294,-0.645666,-0.609496,2 +-0.462966,0.0279346,-0.620479,-0.331578,-0.174774,0.796483,0.790326,0.821459,-0.978193,-0.281805,-0.148748,0.899097,-0.502804,-0.107861,-0.555555,0.0652141,0.720884,-0.267963,0.037989,-0.452392,0.421039,0.788048,-0.484604,0.314687,-0.499426,-0.0341214,0.154135,0.120974,-0.00111939,-0.0850336,-0.0678627,-0.0354805,2 +-0.403679,-0.0892811,-0.724592,-0.227155,0.348599,0.294119,0.314237,0.353606,-1.02149,-0.671492,-0.414543,0.596303,-0.385738,-0.158093,-0.5295,0.264865,0.178842,-0.106911,0.0747489,-0.38288,0.651443,0.568958,-0.38346,0.34638,-0.472261,0.187237,-0.320044,-0.407506,-0.413683,-0.415602,-0.394983,-0.361901,2 +-0.541333,0.230583,-0.628815,0.139943,0.16336,-0.193544,-0.191455,-0.211984,-1.01962,-0.56503,0.0761282,0.0923493,-0.458019,-0.112818,-0.520525,0.10936,-0.188846,0.392235,-0.397932,-0.0520017,0.9481,-0.287682,-0.113358,0.102064,-0.362231,0.531218,-0.213193,-0.111879,-0.100795,-0.136475,-0.154535,-0.129459,2 +0.150048,-0.610715,-0.804738,-0.551457,1.22112,-0.636521,-0.611824,-0.652492,-1.13152,-0.65519,-0.339314,-0.395253,-0.719215,0.0797562,-0.62087,-0.487493,-0.568868,-0.512829,0.153246,-0.52809,-0.0707212,-0.314527,-0.659448,0.389906,-0.537235,-0.532468,-1.22007,-0.96568,-0.764581,-0.691411,-0.631114,-0.567689,2 +3.83774,-2.11427,-0.977553,-0.639509,3.53892,-1.19079,-1.18829,-1.11552,-1.16176,-0.952407,-0.7654,-1.44305,-0.661907,0.14502,-0.630164,-1.19523,-0.870912,-0.739384,0.197791,-0.600181,-1.46852,-1.08252,-0.80214,0.399171,-0.56548,-1.23901,-3.62886,-2.51081,-1.77267,-1.52834,-1.42595,-1.36185,0 +-0.514808,0.183719,-0.562531,-0.186038,-0.196692,0.119544,0.135675,0.110799,-1.00718,-0.506762,0.219969,0.213853,-0.450443,-0.101125,-0.536106,0.158133,0.207406,-0.0722705,-0.190955,-0.306232,0.633583,0.0128729,-0.287752,0.133487,-0.388277,0.275129,0.194233,0.176553,0.130998,0.0861724,0.0520515,0.0711909,2 +1.73316,-1.53159,-0.916097,-0.516397,2.6013,-0.927361,-0.881996,-0.883915,-1.15554,-0.789037,-0.413483,-1.16078,-0.430474,0.183519,-0.58328,-0.672081,-0.689611,-0.664815,0.192664,-0.591146,-1.02038,-0.520774,-0.676109,0.421789,-0.540163,-0.758244,-2.57562,-2.03456,-1.50181,-1.32406,-1.24764,-1.20131,0 +1.63773,-1.517,-0.960962,-0.479667,3.23225,-1.28497,-1.21129,-1.19135,-1.16461,-0.852422,-0.739874,-1.39867,-0.184219,0.399201,-0.470212,-0.247814,-1.14384,-0.689132,0.205677,-0.589996,-0.847495,-0.979563,-0.710111,0.415602,-0.556894,-0.772046,-3.20931,-2.35562,-1.71781,-1.50472,-1.41668,-1.3592,0 +-0.559793,0.264035,-0.581511,-0.0207586,-0.121753,0.570307,0.587238,0.588307,-1.05348,-0.395503,-0.16466,0.974265,-0.604758,-0.0207287,-0.599461,-0.0921895,0.355105,0.208296,-0.333557,-0.155755,0.890442,0.714938,-0.149658,0.0805059,-0.348798,0.476179,0.132967,0.16406,0.0577383,-0.0284247,-0.0140123,0.0193294,2 +-0.49298,0.0314827,-0.636341,-0.321274,-0.221029,0.612344,0.60083,0.652442,-0.941343,-0.552867,-0.170167,0.814503,-0.560772,-0.0989757,-0.592685,-0.0429465,0.584129,-0.235011,0.156544,-0.462337,0.477108,0.592095,-0.462386,0.285034,-0.493179,-0.00500739,0.278347,0.139184,0.0530909,-0.020629,-0.0132027,0.0130728,2 +-0.0578882,-0.545871,-0.767339,-0.606407,0.556635,1.20333,1.23334,1.24814,-1.0363,-0.543272,-0.312529,1.14435,-0.649274,-0.214582,-0.576654,-0.304783,1.12489,-0.586908,-0.00486745,-0.543242,-0.185358,0.979313,-0.667244,0.286133,-0.533657,-0.582211,-0.4747,-0.699286,-0.62054,-0.552847,-0.498646,-0.458458,2 +-0.265384,-0.336106,-0.768068,-0.338544,0.624487,0.43774,0.446095,0.412144,-1.04233,-0.671741,-0.478827,0.447544,-0.221698,-0.156634,-0.489831,0.453751,0.497547,-0.414992,0.0329318,-0.540883,0.0879018,0.515117,-0.588098,0.356764,-0.539924,-0.290591,-0.519795,-0.576454,-0.568608,-0.569468,-0.553816,-0.524922,2 +0.591675,-0.631484,-0.770767,-0.00761579,1.97289,-0.0816752,-0.0112139,0.0907103,-1.08762,-0.616762,-0.384989,-0.0286343,-0.0561293,0.246915,-0.27333,0.347889,-0.129169,-0.0990158,0.488342,-0.266044,-0.058268,0.373775,-0.376574,0.322033,-0.388707,-0.188067,-2.04533,-1.32229,-0.908851,-0.792625,-0.715018,-0.676549,2 +-0.198741,-0.372806,-0.704873,-0.599721,0.223727,0.40087,0.434262,0.448654,-1.02614,-0.566219,-0.481126,0.427026,-0.618451,-0.0812155,-0.60115,-0.175214,0.441518,-0.569698,0.179262,-0.558064,-0.121293,0.313948,-0.568758,0.386698,-0.516287,-0.244786,-0.231333,-0.325651,-0.411314,-0.418471,-0.439769,-0.440798,2 +-0.391605,-0.12809,-0.63713,-0.495058,-0.14549,0.322033,0.303483,0.340263,-1.03988,-0.387807,-0.105142,0.288552,-0.599041,-0.0593175,-0.603629,-0.129009,0.433842,-0.449763,0.169607,-0.523303,0.132877,0.215682,-0.468423,0.397082,-0.488742,-0.0461448,0.0497027,0.0853231,-0.0580082,-0.100235,-0.12687,-0.120684,2 +0.36431,-0.757734,-0.809805,-0.608236,1.41122,1.38989,1.42285,1.42231,-1.08938,-0.689702,-0.421829,2.32666,-0.622339,-0.398371,-0.524852,-0.540853,0.790816,-0.464026,0.332008,-0.523083,-0.00724597,1.28204,-0.696378,0.358473,-0.541203,-0.682955,-1.34585,-1.12996,-0.862917,-0.763222,-0.6933,-0.633812,2 +3.18962,-2.13298,-0.971677,-0.897508,2.78859,-0.38213,-0.356335,-0.36388,-1.16792,-0.957724,-0.813414,-0.450483,-1.02853,-0.000159934,-0.668843,-1.78916,-0.224906,-0.898907,0.123242,-0.611984,-1.70225,0.103123,-0.885484,0.368778,-0.572166,-1.7246,-2.90622,-2.28796,-1.71632,-1.49838,-1.42342,-1.37984,0 +1.37332,-1.09121,-0.816392,-0.572006,2.45668,-0.833153,-0.758934,-0.749439,-1.12049,-0.900746,-0.699696,-0.330559,-0.52796,0.304623,-0.488782,-0.280616,-0.944561,-0.484374,-0.051272,-0.442767,-0.599321,-0.422648,-0.350618,-0.1818,-0.316276,-0.421499,-2.48975,-1.72712,-1.19508,-1.05855,-1.03069,-1.00935,2 +1.01496,-1.25277,-0.918356,-0.427366,2.24733,-0.269132,-0.261167,-0.245235,-1.13672,-0.78311,-0.625967,0.0212883,0.162351,0.714268,-0.314028,-0.199261,-0.31014,-0.681236,0.141572,-0.589877,-0.69351,0.283235,-0.648115,0.373925,-0.540213,-0.572086,-2.2626,-1.82827,-1.39929,-1.24742,-1.17924,-1.1442,0 +2.99915,-1.51935,-0.76515,-0.699036,3.04444,-1.07998,-1.06688,-1.02129,-1.03983,-0.790276,-0.690521,-0.897398,-0.815143,-0.0205787,-0.611425,-0.981611,-0.98322,-0.63851,-0.169037,-0.495998,-1.22126,-0.786498,-0.703404,0.253071,-0.516447,-1.05217,-3.17483,-1.94549,-1.29255,-1.126,-1.06919,-1.03287,2 +1.34297,-1.40958,-0.956725,-0.469442,2.84323,-0.228904,-0.21951,-0.252232,-1.15445,-0.940294,-0.621269,-0.203938,-0.274569,0.138864,-0.554306,-0.198281,-0.100055,-0.662087,0.148518,-0.593135,-0.730819,0.102004,-0.726082,0.376783,-0.561302,-0.796913,-2.91003,-2.12125,-1.59258,-1.40552,-1.32845,-1.27913,0 +2.84583,-1.57511,-0.903254,-0.451442,3.20465,-0.750268,-0.751228,-0.816942,-1.15016,-0.91058,-0.65642,-0.582181,-0.521884,0.333077,-0.4004,-0.586998,-0.669642,-0.521344,0.390915,-0.399671,-0.999122,-0.386768,-0.436461,-0.0379391,-0.267713,-0.695229,-3.38535,-2.2408,-1.57576,-1.34827,-1.26677,-1.22674,0 +3.2676,-1.82974,-0.887923,-0.835801,3.01199,0.041977,0.0642647,0.0810755,-1.09515,-0.769388,-0.553916,0.266074,-0.867394,0.0703414,-0.606527,-1.1638,0.0466245,-0.806348,0.0816951,-0.581071,-1.51696,0.479477,-0.796333,0.332438,-0.540913,-1.38976,-3.09313,-2.14819,-1.55276,-1.35979,-1.28188,-1.24828,2 +2.28731,-1.77893,-0.960073,-0.627256,3.05683,0.189646,0.233962,0.228625,-1.15656,-0.935187,-0.827406,0.126491,-0.51115,0.0977364,-0.617321,-0.659778,0.283944,-0.753337,0.137315,-0.604838,-1.12111,0.515267,-0.80198,0.369147,-0.567369,-1.13439,-3.08295,-2.28854,-1.71435,-1.50539,-1.42151,-1.3759,0 +2.29086,-1.94563,-0.972866,-0.884904,2.068,-0.506142,-0.5644,-0.61956,-1.15836,-0.870912,-0.614813,-0.536935,-0.962682,-0.031003,-0.67425,-1.23732,-0.331408,-0.899606,0.112128,-0.613304,-1.68693,-0.000459781,-0.878148,0.370847,-0.572546,-1.63635,-1.93905,-2.01237,-1.58083,-1.38983,-1.32922,-1.31552,0 +0.572506,-0.863976,-0.861717,-0.561682,1.51646,-0.221608,-0.203868,-0.168827,-1.11371,-0.772026,-0.633632,0.162931,-0.581351,-0.0187497,-0.530889,-0.179102,-0.293479,-0.558354,0.228944,-0.519835,-0.281136,0.242097,-0.657769,0.378063,-0.520334,-0.596853,-1.50886,-1.29697,-1.05217,-0.963612,-0.910401,-0.876099,2 +2.72024,-1.9518,-0.98424,-0.522773,3.36343,-0.361761,-0.335776,-0.304183,-1.16724,-0.969468,-0.809376,-0.540004,-0.406997,0.214003,-0.586538,-0.794274,-0.130278,-0.69343,0.188956,-0.599671,-1.26106,-0.0961173,-0.770078,0.396133,-0.566159,-1.1006,-3.50123,-2.44167,-1.78229,-1.55486,-1.46201,-1.40916,0 +3.69319,-2.09037,-0.985549,-0.405617,3.634,-0.519105,-0.493479,-0.469023,-1.15501,-0.961502,-0.844087,-0.562431,-0.186318,0.284994,-0.544731,-0.901855,-0.365489,-0.633892,0.19978,-0.595414,-1.38033,-0.168308,-0.708002,0.410385,-0.561802,-0.999182,-3.79202,-2.51632,-1.80844,-1.56144,-1.45232,-1.38861,0 +4.01766,-2.37515,-1.00135,-0.895319,3.52915,-0.21955,-0.211184,-0.234241,-1.16655,-0.975675,-0.803569,-0.25563,-0.987888,-0.0272251,-0.676589,-1.37788,-0.0257258,-0.921035,0.124751,-0.614793,-1.99167,0.113937,-0.901665,0.373045,-0.573875,-1.88107,-3.48059,-2.59715,-1.88704,-1.63319,-1.52983,-1.47219,0 +-0.380131,-0.131568,-0.738135,-0.0821049,0.613653,1.04934,1.05468,1.06152,-1.12006,-0.683985,-0.387178,1.15574,-0.0679228,-0.41907,-0.371266,0.50935,0.945881,-0.173915,-0.152187,-0.410095,0.409495,0.571426,-0.424097,0.186428,-0.452761,0.038019,-0.653701,-0.497007,-0.453971,-0.421159,-0.367219,-0.317016,2 +4.54743,-2.13773,-0.941493,-0.860628,3.25713,-1.08132,-1.04621,-1.0535,-1.13551,-0.872171,-0.722114,-1.15576,-0.831474,0.119534,-0.569758,-1.21711,-0.923293,-0.895309,0.138064,-0.609096,-1.92979,-0.813644,-0.832084,0.389916,-0.559533,-1.48163,-3.35216,-2.3895,-1.73942,-1.52008,-1.45092,-1.42083,0 +3.7,-2.20357,-1.0046,-0.835042,3.48891,-1.10533,-1.09503,-1.12857,-1.17177,-0.975405,-0.782151,-1.16097,-0.917107,-0.0135326,-0.663856,-1.09103,-0.901335,-0.881736,0.114207,-0.612794,-1.56584,-0.630534,-0.879088,0.367678,-0.572546,-1.65073,-3.4475,-2.63666,-1.91312,-1.65252,-1.54529,-1.48737,0 +-0.523453,0.173485,-0.542942,-0.238299,-0.269042,1.18596,1.19836,1.15553,-1.00258,-0.417691,0.128479,1.2923,-0.269792,-0.271661,-0.441608,0.40079,1.02259,-0.208076,-0.131178,-0.390286,0.481376,0.87395,-0.393284,0.198031,-0.451772,0.129469,0.324402,0.278447,0.158953,0.102404,0.0977764,0.114737,2 +1.0653,-1.20015,-0.919875,-0.409855,2.40334,-0.471721,-0.433932,-0.374714,-1.16487,-0.897138,-0.687783,-0.54708,-0.199241,0.271141,-0.509411,-0.133527,-0.342722,-0.602759,0.185438,-0.579202,-0.56511,-0.12722,-0.649494,0.396942,-0.542602,-0.540234,-2.43432,-1.89364,-1.44023,-1.29871,-1.24442,-1.20424,0 +2.87018,-1.77484,-0.931818,-0.32848,3.30564,-0.377323,-0.335996,-0.252591,-1.15036,-0.885294,-0.688992,-0.572946,-0.139444,0.270961,-0.531489,-0.701175,-0.158163,-0.554066,0.224647,-0.58411,-1.18254,-0.121663,-0.6568,0.43756,-0.548249,-0.813754,-3.46155,-2.29257,-1.63976,-1.43288,-1.34577,-1.28781,0 +-0.504033,0.152306,-0.571536,-0.102764,-0.0132327,1.50396,1.4891,1.45812,-1.01902,-0.523243,-0.212114,1.51361,-0.361642,-0.14559,-0.523733,0.255879,1.28455,-0.0429266,-0.303084,-0.207636,0.543072,1.1237,-0.323163,0.0844337,-0.390136,0.182989,-0.0185299,0.120174,0.0842738,0.0430261,0.0379292,0.098366,2 +4.31784,-2.25069,-0.943282,-0.868523,3.18962,-0.651193,-0.621629,-0.627725,-1.14966,-0.903644,-0.751777,-0.881946,-0.971687,0.0094448,-0.63875,-1.66727,-0.451052,-0.877429,0.096317,-0.595593,-1.93088,0.0423267,-0.83919,0.353016,-0.548139,-1.68677,-3.20567,-2.46675,-1.82775,-1.61021,-1.52888,-1.48821,0 +-0.231263,-0.378293,-0.726991,-0.561812,0.119105,1.0448,1.06459,1.05034,-1.10703,-0.537705,-0.220649,0.96546,-0.704154,-0.131668,-0.616932,-0.357864,1.09612,-0.516617,-0.0606568,-0.497297,-0.0642247,0.504833,-0.624388,0.29169,-0.522373,-0.415462,-0.0663737,-0.272151,-0.352057,-0.386039,-0.36404,-0.311809,2 +0.939654,-0.771937,-0.776134,-0.4738,1.86072,-0.1462,-0.148109,-0.133107,-1.06981,-0.730519,-0.525352,0.0365499,-0.712049,0.0705313,-0.597902,-0.536046,-0.060007,-0.402089,0.089051,-0.432593,-0.234561,0.0323322,-0.58373,0.34614,-0.501355,-0.467624,-1.89873,-1.23184,-0.894349,-0.808447,-0.758314,-0.707212,2 +2.84459,-1.86047,-0.955136,-0.411544,3.53196,-0.3281,-0.29215,-0.245895,-1.16375,-0.89235,-0.761532,-0.495868,-0.228545,0.288372,-0.550318,-0.894129,-0.132947,-0.611425,0.214902,-0.588767,-1.0944,0.0475839,-0.677159,0.400091,-0.54622,-0.797542,-3.68436,-2.41942,-1.75643,-1.53233,-1.43934,-1.38184,0 +3.19399,-1.82634,-0.937265,-0.252971,3.32801,-0.279497,-0.265474,-0.21775,-1.13192,-0.891351,-0.646525,-0.377753,-0.0192396,0.361522,-0.493529,-0.715368,-0.14596,-0.505053,0.262156,-0.573396,-1.13029,0.121563,-0.604509,0.416531,-0.541253,-0.759183,-3.40364,-2.27881,-1.64477,-1.44349,-1.35446,-1.30096,0 +2.45165,-1.69009,-0.946231,-0.348079,3.28761,-0.40008,-0.391295,-0.341123,-1.16147,-0.83734,-0.719075,-0.417251,-0.133387,0.491031,-0.47384,-0.664985,-0.25572,-0.578643,0.295588,-0.570847,-0.996124,0.177383,-0.621209,0.477948,-0.537975,-0.743342,-3.43055,-2.33189,-1.69219,-1.46922,-1.36887,-1.30612,0 +-0.312149,-0.246085,-0.697477,-0.49165,0.0388088,-0.270971,-0.251402,-0.311239,-1.09328,-0.567768,-0.27384,-0.0918996,-0.65581,-0.142452,-0.605358,-0.274489,-0.0700515,-0.416761,-0.0598973,-0.485644,0.140463,-0.771966,-0.602969,0.306352,-0.524532,-0.355705,-0.0309531,-0.0988158,-0.266244,-0.269283,-0.232253,-0.180891,2 +-0.47309,0.00440755,-0.707432,-0.157873,0.098486,-0.78355,-0.777104,-0.824537,-1.05494,-0.644546,-0.316696,-0.591785,-0.503614,-0.112538,-0.558494,0.0857129,-0.617861,-0.020249,-0.172356,-0.356714,0.645486,-1.25485,-0.426596,0.302204,-0.499006,0.101614,-0.0808157,-0.159692,-0.234631,-0.245905,-0.226546,-0.193544,2 +0.81964,-1.03209,-0.872021,-0.642068,2.07502,-1.56616,-1.55495,-1.514,-1.10238,-0.815482,-0.566059,-1.28061,-0.770507,-0.0227475,-0.640299,-0.530889,-1.59121,-0.60131,0.204268,-0.525342,-0.481326,-1.42121,-0.69235,0.390826,-0.536785,-0.681166,-2.19939,-1.56544,-1.16079,-1.05229,-0.985489,-0.941114,2 +0.903974,-1.11891,-0.893999,-0.653781,1.7665,-1.74289,-1.72676,-1.6546,-1.14134,-0.832313,-0.651662,-1.58885,-0.794484,0.0538504,-0.6376,-0.679007,-1.73135,-0.653002,0.265004,-0.560703,-0.52826,-1.60176,-0.733378,0.434342,-0.548899,-0.882486,-1.79289,-1.47618,-1.16369,-1.02652,-0.946481,-0.878128,2 +1.19935,-1.51813,-0.938795,-0.803679,1.85913,-1.83719,-1.80307,-1.77295,-1.16499,-0.94756,-0.810385,-1.69749,-0.829225,0.0154115,-0.65687,-0.909701,-1.92558,-0.807597,0.104872,-0.605888,-0.985809,-1.32429,-0.779522,0.398341,-0.559453,-1.02862,-1.82664,-1.75042,-1.41181,-1.26178,-1.21158,-1.18315,0 +-0.501495,0.172016,-0.562381,-0.122303,-0.203298,0.640039,0.585898,0.245165,-0.913888,-0.518416,0.0321923,0.837451,-0.490291,-0.21916,-0.536556,0.0559392,0.597302,-0.0165211,-0.501795,-0.170976,0.60237,0.449393,-0.340653,0.00706616,-0.36464,0.101974,0.214762,0.176103,0.0867224,0.0630951,0.0941384,0.135895,2 +3.38694,-2.14348,-0.968858,-0.895039,2.60372,-0.848504,-0.843967,-0.841528,-1.12477,-0.886144,-0.653471,-0.706213,-0.988388,0.0358303,-0.659948,-1.69291,-0.771446,-0.884985,0.131348,-0.609186,-1.63454,-0.211244,-0.877749,0.38323,-0.570987,-1.67707,-2.52293,-2.20008,-1.67405,-1.48325,-1.40545,-1.37026,0 +-0.569078,0.267783,-0.526981,-0.0700515,-0.324022,0.991166,0.891531,0.717716,-1.06488,-0.454381,-0.183859,1.12785,-0.378662,-0.268183,-0.449763,0.233202,0.905413,0.0519913,-0.511829,-0.1822,0.67466,0.757284,-0.283215,0.0895309,-0.407037,0.258908,0.390366,0.356224,0.263286,0.161351,0.16421,0.184329,2 +-0.32735,-0.135556,-0.704523,-0.282435,0.214452,0.742533,0.677598,0.577653,-1.0745,-0.597882,-0.185388,0.954136,-0.608086,-0.0250563,-0.599471,-0.125681,0.63808,-0.202309,-0.240418,-0.2556,0.350698,0.80205,-0.34716,0.0607667,-0.368168,0.050772,-0.0999652,-0.252292,-0.351307,-0.345141,-0.337025,-0.285873,2 +-0.716347,0.779692,-0.265104,0.858319,-0.41933,0.94823,0.977424,0.978393,-0.858329,-0.0537106,0.567488,1.30259,-0.0289642,-0.40165,-0.337735,0.665775,0.609046,1.11304,-1.51707,0.691151,1.28718,0.83783,0.578023,-0.85562,0.192914,0.978833,0.457959,0.63826,0.640359,0.581061,0.538894,0.550658,2 +-0.413573,0.179501,-0.480696,0.323692,0.525552,1.62184,1.61899,1.53761,-1.03017,-0.370467,0.144161,1.65295,0.0980261,-0.579752,-0.246185,0.562881,1.33485,0.317995,-0.671851,0.0202087,0.571836,1.18227,-0.0708713,-0.222338,-0.215791,0.405877,-0.541543,-0.0877019,0.096697,0.112778,0.172166,0.226885,2 +1.86253,-1.4229,-0.919155,-0.722374,2.61852,-0.529789,-0.517496,-0.531378,-1.14992,-0.901695,-0.699436,0.0787667,-0.683435,-0.0505223,-0.581691,-0.433492,-0.615482,-0.671442,0.0889211,-0.566439,-0.743222,-0.232343,-0.739964,0.319895,-0.5469,-0.931389,-2.54727,-1.87575,-1.40618,-1.24836,-1.1778,-1.12987,2 +3.21236,-2.0017,-0.966499,-0.8568,2.72996,-0.532468,-0.519275,-0.527201,-1.15498,-0.862587,-0.615882,-0.590926,-0.879787,0.0662436,-0.645136,-1.15207,-0.357174,-0.889132,0.146549,-0.610585,-1.78557,-0.00016994,-0.877309,0.38311,-0.571636,-1.67219,-2.67431,-2.23928,-1.66163,-1.46886,-1.38426,-1.33657,0 +3.14616,-2.21232,-0.985859,-0.899846,2.61514,0.140673,0.14656,0.102024,-1.15571,-0.92986,-0.716987,0.0578282,-1.00676,-0.0261957,-0.675789,-1.53603,0.279966,-0.908292,0.12783,-0.614113,-1.82851,0.505413,-0.900966,0.372006,-0.573995,-1.88133,-2.54843,-2.25173,-1.73323,-1.52153,-1.44218,-1.40022,0 +-0.134136,-0.112888,-0.668493,-0.0198591,0.932668,-1.04521,-1.01771,-0.811874,-1.05154,-0.832833,-0.431913,-0.773446,-0.377943,0.0392484,-0.417071,0.172335,-1.09162,-0.0459849,0.0951777,-0.184709,0.392365,-0.649264,0.260017,-0.574145,0.142422,0.61911,-0.977764,-0.650913,-0.424197,-0.38309,-0.363571,-0.305732,2 +1.19633,-1.3824,-0.954466,-0.529599,2.59236,-1.71812,-1.71107,-1.7102,-1.16784,-0.972286,-0.718216,-1.53917,-0.0119935,0.618361,-0.340154,-0.0499927,-1.79797,-0.76598,0.150807,-0.599871,-0.880207,-1.26167,-0.661037,0.408536,-0.54697,-0.54632,-2.57896,-2.0977,-1.54625,-1.3334,-1.24177,-1.17929,0 +4.30763,-2.26128,-0.977563,-0.894309,3.22257,-1.18352,-1.20595,-1.2333,-1.16093,-0.935826,-0.521934,-1.05692,-1.00688,0.00290838,-0.668993,-1.63342,-1.12756,-0.902635,0.135066,-0.608956,-1.9067,-0.45602,-0.869173,0.380091,-0.567728,-1.64281,-3.34037,-2.42085,-1.78067,-1.5373,-1.43482,-1.37679,0 +1.58509,-1.3156,-0.89339,-0.0109839,3.29847,-1.25856,-1.23867,-1.0746,-1.15292,-0.870093,-0.558054,-1.44726,0.32786,1.27754,-0.0499827,-0.300315,-1.20813,-0.368858,0.556135,-0.484215,-0.549568,-0.45573,-0.349838,0.74644,-0.448654,-0.343851,-3.45485,-2.25859,-1.56934,-1.33992,-1.25929,-1.20976,0 +0.699456,-0.759963,-0.774015,-0.454221,1.94957,-0.599171,-0.548499,-0.426446,-1.12841,-0.767829,-0.470402,-0.359013,-0.697317,0.0599471,-0.587148,-0.395703,-0.632943,-0.420599,-0.0544502,-0.384229,-0.30894,0.12751,-0.375244,0.0326621,-0.337215,-0.231303,-2.05123,-1.40098,-0.973556,-0.848315,-0.793865,-0.739204,2 +0.830934,-0.921714,-0.794404,-0.477528,2.12794,-0.209225,-0.0593975,0.0690921,-1.10372,-0.840589,-0.479117,-0.179691,-0.375404,0.421939,-0.498617,-0.506842,-0.189356,-0.558334,0.183779,-0.533957,-0.34593,0.409655,-0.570637,0.408776,-0.505612,-0.34694,-2.18558,-1.566,-1.11656,-1.00949,-0.986099,-0.973586,0 +1.44058,-1.27485,-0.87408,-0.495948,2.55396,-1.25715,-1.22252,-1.13665,-1.15805,-0.839129,-0.651622,-1.26388,-0.2366,0.41833,-0.416292,-0.0889213,-1.12684,-0.655351,0.285813,-0.556535,-0.818371,-1.07459,-0.65726,0.442427,-0.529619,-0.611435,-2.66462,-1.92653,-1.38548,-1.22689,-1.15867,-1.11748,0 +5.80352,-2.54537,-0.991676,-0.905743,4.14311,-1.85426,-1.86555,-1.8497,-1.16727,-0.979153,-0.759623,-1.96872,-1.06725,-0.0361102,-0.683035,-1.95246,-1.73424,-0.908971,0.118455,-0.609186,-2.04474,-1.70867,-0.890132,0.368068,-0.571436,-1.80352,-4.2775,-2.76777,-1.9365,-1.6599,-1.54541,-1.47853,0 +2.35661,-1.5209,-0.897947,-0.0572486,3.40119,-1.17184,-1.18663,-1.15038,-1.16222,-0.932958,-0.479497,-1.30997,0.261506,0.753267,-0.315717,-0.519035,-1.03301,-0.376713,0.435181,-0.514258,-0.835182,-0.850194,-0.45515,0.593984,-0.485004,-0.487613,-3.64866,-2.18858,-1.50888,-1.28543,-1.19134,-1.12895,0 +2.63833,-1.67765,-0.941403,-0.296547,3.5779,-1.54544,-1.53218,-1.5118,-1.15553,-0.967899,-0.706482,-1.70233,-0.144611,0.461157,-0.482915,-0.740904,-1.44453,-0.51032,0.376024,-0.531499,-0.847815,-1.45235,-0.610895,0.489102,-0.534077,-0.662746,-3.74763,-2.35461,-1.64991,-1.41465,-1.32531,-1.27923,0 +-0.691221,0.645086,-0.307281,0.251992,-0.458498,0.923853,0.926432,0.909941,-0.773945,-0.0610665,0.577743,1.62369,-0.354466,-0.252621,-0.497887,0.2908,0.482885,0.517716,-0.20021,0.039798,1.14542,0.903024,-0.0434963,0.0703814,-0.320364,0.63684,0.398621,0.649973,0.634802,0.531098,0.494819,0.506432,2 +6.64496,-2.67375,-0.956705,-0.919705,3.32499,-1.69082,-1.64563,-1.59254,-1.15762,-0.935986,-0.623628,-1.89412,-1.04727,0.0757584,-0.622988,-2.40708,-1.57738,-0.918626,0.160872,-0.600591,-2.41469,-1.00805,-0.854291,0.463576,-0.535906,-1.92377,-3.375,-2.60035,-1.89861,-1.67129,-1.585,-1.53668,0 +1.24117,-1.09042,-0.836831,-0.281186,2.57048,-0.915198,-0.903444,-0.934657,-1.16047,-0.941713,-0.719325,-0.925512,-0.442997,0.607517,-0.283315,-0.610995,-0.8379,-0.339964,0.731179,-0.235721,-0.336026,-0.296617,-0.460597,0.547929,-0.390805,-0.397152,-2.72663,-1.94069,-1.36047,-1.18493,-1.11373,-1.07993,0 +3.04255,-1.87847,-0.941363,-0.366429,2.68869,-1.29913,-1.20022,-1.13916,-1.1606,-0.94784,-0.809606,-1.5099,-0.407167,1.03168,-0.0952479,-1.20102,-1.15998,-0.501575,0.969038,-0.250183,-1.59215,-0.905193,-0.608097,0.743442,-0.448384,-1.16881,-2.60161,-2.14318,-1.60091,-1.38932,-1.30755,-1.26052,0 +-0.47327,0.0708611,-0.708251,0.104233,0.420309,-1.66395,-1.64064,-1.47371,-1.1189,-0.663416,0.421589,-0.851103,-0.386818,0.076558,-0.51037,0.166329,-1.99089,0.185258,-0.0213784,-0.29276,0.672521,-1.4964,0.405377,-0.114947,-0.180701,0.817331,-0.316486,-0.360692,-0.318765,-0.290191,-0.269962,-0.224827,2 +-0.512589,0.32772,-0.523652,0.333067,0.386928,-0.361292,-0.363041,-0.38306,-1.08151,-0.430034,-0.0546201,-0.0246165,0.149448,0.0315027,-0.261757,0.846935,-0.420449,0.304933,-0.140073,-0.0228877,0.814873,-0.377113,0.207176,-0.49281,0.0451254,0.672521,-0.405458,-0.151567,-0.0390486,-0.0373898,-0.0428465,-0.0129229,2 +-0.771377,0.964881,-0.0292038,0.610845,-0.668483,0.209505,0.195972,0.16464,-0.941833,0.223897,1.05004,1.07865,-0.0331919,-0.362161,-0.338754,0.690571,-0.187447,0.932768,0.0263954,0.325571,1.39033,0.221618,0.277877,-0.0359702,-0.124891,1.00323,0.604728,1.03865,1.07427,0.942013,0.861188,0.832203,2 +-0.755056,0.942983,-0.115317,1.19273,-0.653931,0.25551,0.283684,0.207776,-0.683675,0.266544,1.59198,0.673201,0.067193,-0.318425,-0.331568,0.756415,0.00296845,1.44389,-1.79355,1.06592,1.35997,0.239628,1.24154,-1.65054,0.827156,1.28981,0.631284,0.869533,0.967279,0.881886,0.815893,0.814353,2 +-0.662197,0.590826,-0.34546,0.188637,-0.330838,0.415782,0.415072,0.390066,-0.832113,-0.241018,0.18234,1.42467,-0.38342,-0.463306,-0.354835,0.160542,-0.0448353,0.45604,0.18168,-0.0227777,1.13007,0.519125,-0.0998154,0.173905,-0.336035,0.611974,0.32736,0.530899,0.531998,0.427755,0.380681,0.389196,2 +0.117915,-0.369937,-0.732848,-0.0720904,1.25373,-0.624827,-0.569318,-0.424977,-1.08578,-0.807077,-0.549359,-0.441828,-0.312878,0.447345,-0.329879,0.102314,-0.660068,-0.11043,0.588717,-0.124692,0.101304,-0.0149418,-0.209195,0.375484,-0.302084,0.147309,-1.35873,-0.902145,-0.632143,-0.568928,-0.522913,-0.440958,2 +-0.542732,0.340703,-0.479976,0.0827746,-0.194103,0.678718,0.689761,0.704853,-0.885244,-0.179242,0.490081,0.823058,-0.0940985,-0.350858,-0.296647,0.571246,0.537935,0.0911898,-0.450653,-0.0172308,0.719505,0.83904,0.0696516,-0.611365,0.204658,0.527021,0.148129,0.228584,0.219819,0.172495,0.168048,0.227035,2 +-0.669593,0.655221,-0.341582,0.519015,-0.34706,0.387148,0.406997,0.306172,-0.890661,-0.385978,0.293109,0.694099,-0.0679528,-0.171966,-0.374974,0.676079,0.219999,0.649743,-0.862167,0.350677,1.13284,0.520384,0.378622,-0.63823,0.113498,0.91125,0.293859,0.522513,0.519915,0.470182,0.465235,0.500705,2 +-0.312598,-0.213203,-0.735076,-0.331108,0.262186,0.678788,0.712749,0.715347,-1.0846,-0.616072,-0.32871,0.909041,-0.361592,-0.0698017,-0.513169,0.262056,0.593534,-0.381301,0.268383,-0.497557,0.149828,0.72807,-0.507772,0.350488,-0.497747,-0.0924694,-0.212184,-0.315257,-0.375014,-0.385309,-0.355045,-0.32738,2 +1.09449,-0.93021,-0.836491,-0.417741,2.32468,-1.149,-1.15267,-1.17497,-1.11357,-0.852792,-0.558743,-1.14662,-0.695538,0.143061,-0.579582,-0.635441,-0.987538,-0.40046,0.0695517,-0.388837,-0.242517,-0.989847,-0.548589,0.2,-0.447534,-0.526651,-2.38856,-1.60718,-1.16636,-1.02449,-0.940714,-0.886753,2 +0.916287,-0.976175,-0.881046,-0.482985,2.40075,-1.25821,-1.24493,-1.24075,-1.10458,-0.883895,-0.707612,-1.06366,-0.753986,0.0871422,-0.606178,-0.597422,-1.25691,-0.483395,0.154015,-0.448424,-0.275679,-0.735896,-0.519525,0.204418,-0.442627,-0.343741,-2.48015,-1.72413,-1.24717,-1.08037,-0.996903,-0.934957,2 +-0.438429,0.278307,-0.573395,0.390396,0.651992,-0.866255,-0.860138,-0.863716,-1.09832,-0.631324,-0.0453352,-0.637121,-0.0687824,0.235421,-0.359773,0.617111,-0.946011,0.391385,0.179262,0.0374093,0.906293,-0.461617,0.212923,-0.0159612,-0.085273,0.829345,-0.696908,-0.339584,-0.141662,-0.131248,-0.133827,-0.105812,2 +-0.76464,0.92986,-0.342982,1.79035,-0.356734,-0.358223,-0.40141,-0.458189,-1.02831,-0.461507,0.613253,-0.197142,0.741443,-0.556395,0.098256,1.26972,-0.466564,1.69922,-1.62891,1.19453,1.51519,-0.448964,1.25434,-1.41566,0.712319,1.38935,0.297427,0.590186,0.641628,0.61867,0.606897,0.621789,2 +-0.105222,-0.470042,-0.859558,-0.150487,1.20683,-1.59653,-1.54337,-1.53377,-1.09335,-0.85603,-0.49134,-1.56456,-0.411514,0.114297,-0.563281,0.0716806,-1.58815,-0.222858,0.399291,-0.45626,0.318345,-1.52817,-0.442717,0.478577,-0.503384,-0.00568702,-1.23829,-1.06285,-0.882046,-0.798062,-0.732738,-0.67361,2 +-0.338624,-0.1098,-0.666534,-0.262516,0.0425467,-0.0306032,-0.122013,-0.323522,-1.02756,-0.442077,-0.144361,0.279227,-0.125071,-0.69208,-0.0552598,0.423807,0.0224178,-0.375744,-0.251872,-0.333717,0.117066,0.0725502,-0.321184,-0.342942,-0.0602468,-0.0554297,0.0688821,-0.133417,-0.194004,-0.225597,-0.171376,-0.118945,2 +-0.593614,0.310969,-0.519405,-0.0842637,-0.41891,-0.661247,-0.605738,-0.685534,-1.04739,-0.447055,-0.334437,-0.432263,-0.518196,-0.0308331,-0.563981,-0.0236571,-0.643837,0.00852519,-0.0528711,-0.323353,0.700786,-0.326841,-0.150887,0.257269,-0.384769,0.49087,0.356914,0.513708,0.402509,0.368977,0.368858,0.454491,2 +0.00118936,-0.62026,-0.839929,-0.559003,0.616712,-0.587628,-0.58342,-0.593584,-1.06086,-0.790736,-0.472631,-0.370627,-0.818441,-0.0596373,-0.63899,-0.654621,-0.45601,-0.532178,0.132217,-0.523613,-0.05464,-0.684464,-0.633842,0.338574,-0.523782,-0.432673,-0.63903,-0.769358,-0.74817,-0.698377,-0.649134,-0.591665,2 +-0.584909,0.23769,-0.593404,-0.0298236,-0.240618,0.995134,1.01678,0.990447,-1.08066,-0.579152,-0.18154,1.1433,-0.477008,-0.134996,-0.572306,0.0677827,0.82001,0.0816651,-0.152057,-0.301485,0.754396,0.760333,-0.331938,0.162111,-0.448274,0.178692,0.34668,0.294878,0.173395,0.0604765,0.0252862,0.027225,2 +0.530489,-0.854181,-0.858569,-0.269062,1.94035,-1.52868,-1.54715,-1.52582,-1.13352,-0.867454,-0.413983,-1.38261,-0.305522,0.82032,-0.106772,-0.142232,-1.54636,-0.397762,0.906872,-0.189007,-0.322303,-0.845416,-0.518306,0.654891,-0.443906,-0.333247,-1.99795,-1.51628,-1.12328,-0.971977,-0.900936,-0.845516,2 +1.82092,-1.48646,-0.903884,-0.706013,2.27879,-1.0373,-1.00168,-0.994914,-1.14668,-0.905933,-0.672041,-1.05065,-0.673211,0.336325,-0.525192,-0.918686,-0.935456,-0.770277,0.226466,-0.580462,-1.11548,-0.296667,-0.735786,0.434771,-0.543492,-0.940884,-2.36597,-1.84474,-1.38224,-1.2243,-1.16061,-1.10415,0 +2.82045,-1.82401,-0.92993,-0.749689,2.57227,-1.19137,-1.14416,-1.15083,-1.15551,-0.87549,-0.502404,-1.34971,-0.766889,0.230464,-0.531509,-1.16495,-1.10117,-0.782501,0.310929,-0.548969,-1.57729,-0.56549,-0.72959,0.503484,-0.514298,-1.18219,-2.58587,-2.11955,-1.56589,-1.38509,-1.33825,-1.32828,0 +-0.117795,-0.103163,-0.644986,0.238789,1.22462,-0.499856,-0.533437,-0.612494,-1.04483,-0.526261,-0.216781,-0.167738,0.111509,0.427625,-0.193694,0.683185,-0.590186,0.167058,0.864815,-0.192724,0.495278,0.0542502,-0.168028,0.649084,-0.377922,0.336615,-1.19979,-0.774975,-0.508611,-0.445336,-0.427545,-0.402529,2 +1.61642,-1.33436,-0.905453,-0.216111,2.54703,-1.03862,-1.00864,-0.914908,-1.12691,-0.923543,-0.675689,-1.0506,0.0863925,0.964881,-0.243616,-0.514118,-1.00742,-0.477668,0.442937,-0.521714,-0.730909,-0.380151,-0.502914,0.575794,-0.504643,-0.509541,-2.66376,-1.92064,-1.41612,-1.26184,-1.19745,-1.14655,0 +0.320324,-0.662067,-0.798512,-0.313828,1.90985,-2.0615,-2.04291,-2.05076,-1.10322,-0.61961,-0.16435,-1.91334,-0.0392986,0.303084,-0.289541,0.540383,-2.32239,-0.466214,0.531168,-0.440019,-0.270052,-1.54516,-0.390636,0.573036,-0.445126,0.0424765,-1.8983,-1.33546,-0.959084,-0.823728,-0.793915,-0.776344,2 +0.0869523,-0.486693,-0.757124,-0.398741,1.4006,-1.24097,-1.24539,-1.24389,-1.07935,-0.767249,-0.494868,-1.12209,-0.406507,0.166299,-0.489182,0.177772,-1.19846,-0.397512,0.227685,-0.433063,0.0265155,-0.806208,-0.406877,0.415232,-0.41931,0.000659496,-1.39473,-1.1404,-0.849344,-0.751278,-0.714918,-0.680187,2 +0.342842,-0.789857,-0.835801,-0.525592,1.52359,-2.04062,-1.99281,-1.99811,-1.09329,-0.824697,-0.58267,-1.9845,-0.381031,0.342122,-0.485894,-0.0265755,-2.23119,-0.622339,0.269472,-0.526681,-0.351247,-1.61764,-0.54685,0.501595,-0.496877,-0.223328,-1.48764,-1.33602,-1.04437,-0.907632,-0.846955,-0.803999,2 +-0.709571,0.669793,-0.456579,0.852123,-0.201779,-0.535646,-0.586328,-0.605778,-1.05981,-0.476219,0.238849,-0.0491931,0.202419,-0.379312,-0.216801,0.885244,-0.693549,0.948779,0.167328,0.227265,1.33103,-0.403479,0.43756,0.204768,-0.171386,1.08241,0.180161,0.339384,0.354136,0.2917,0.294908,0.339504,2 +-0.579432,0.397822,-0.543392,0.355115,0.102124,0.0398881,0.0226775,-0.00478734,-1.0099,-0.498686,0.25579,0.34641,-0.136555,-0.499496,-0.252302,0.51021,-0.0153015,0.477008,-0.521764,0.142562,1.05141,-0.0827446,0.0855928,-0.314487,-0.107771,0.663706,-0.0282246,0.0204987,0.0519715,0.0257356,0.0294239,0.05462,2 +7.79999,-2.78541,-0.996483,-0.925372,4.03091,-2.30016,-2.27077,-2.22285,-1.16796,-0.970787,-0.74653,-2.74347,-1.08468,-0.0122933,-0.679427,-2.45952,-2.28357,-0.932339,0.12792,-0.614233,-2.33749,-2.16843,-0.900536,0.385918,-0.571986,-1.98055,-4.20237,-2.74775,-1.94254,-1.68345,-1.58148,-1.52963,0 +1.437,-1.37116,-0.886473,-0.675509,2.39823,-2.50979,-2.45004,-2.39119,-1.13549,-0.908072,-0.617171,-2.65519,-0.576054,0.386358,-0.366819,-0.578073,-2.79677,-0.769538,0.187537,-0.580042,-0.977764,-2.08581,-0.595683,0.522463,-0.465075,-0.530579,-2.28296,-1.97539,-1.4395,-1.26975,-1.22922,-1.21342,0 +0.343921,-0.842938,-0.865135,-0.535466,1.45339,-1.89386,-1.8354,-1.7865,-1.12335,-0.792595,-0.464735,-1.82163,-0.351717,-0.157614,-0.374695,0.12814,-2.03212,-0.669233,0.126021,-0.54668,-0.574655,-1.2804,-0.508641,0.159433,-0.370187,-0.338914,-1.39206,-1.24964,-1.00939,-0.892631,-0.832653,-0.770887,2 +-0.500525,0.306052,-0.542172,0.34576,0.512659,-0.680147,-0.699356,-0.864625,-1.03229,-0.4185,-0.111329,-0.470952,0.213223,0.398411,-0.170647,0.862047,-0.702065,0.2739,0.361372,-0.101155,0.864856,-0.516906,-0.0445358,0.208046,-0.27251,0.60059,-0.43795,-0.310889,-0.177962,-0.181901,-0.175854,-0.151067,2 +-0.416082,0.000189863,-0.729809,0.170656,0.82025,-0.841788,-0.795953,-0.85625,-1.10098,-0.654811,-0.202399,-0.657439,0.324562,0.157074,-0.220969,0.985099,-0.827726,0.112088,0.110959,-0.276039,0.771307,-0.916157,-0.136655,0.190765,-0.350128,0.505512,-0.708671,-0.657679,-0.554096,-0.504124,-0.484544,-0.469392,2 +-0.666534,0.641998,-0.352197,0.686843,-0.277048,0.665865,0.712189,0.669782,-1.05032,-0.441918,0.317276,0.63729,0.908481,-1.57525,0.860868,1.20193,0.566959,0.475479,-0.398032,0.12696,0.993945,0.665055,0.278417,-0.664255,0.297327,0.805948,0.260917,0.495238,0.475729,0.470102,0.47433,0.521714,2 +0.988648,-0.87551,-0.798791,-0.493829,2.11769,-0.430704,-0.408536,-0.397632,-1.10873,-0.781371,-0.282855,-0.29173,-0.666185,-0.0759084,-0.525172,-0.465105,-0.38231,-0.475589,0.0201188,-0.432583,-0.380321,0.173815,-0.532398,0.202939,-0.446905,-0.511589,-2.20146,-1.46731,-1.01134,-0.880407,-0.813224,-0.74754,2 +1.91449,-1.54386,-0.943822,-0.463256,2.78662,-0.54677,-0.536835,-0.549279,-1.14927,-0.91155,-0.463076,-0.543202,-0.257059,0.56551,-0.448154,-0.642657,-0.476179,-0.650213,0.262106,-0.578853,-0.898527,0.157883,-0.672391,0.452432,-0.548039,-0.762752,-2.83238,-2.10825,-1.57425,-1.39521,-1.31015,-1.25472,0 +2.97651,-1.79306,-0.954106,0.0238569,3.55312,-0.570857,-0.54765,-0.496458,-1.13849,-0.926861,-0.69243,-0.641428,0.414952,0.604189,-0.34586,-0.67426,-0.480846,-0.356704,0.313038,-0.550998,-0.989487,-0.0916298,-0.47341,0.475109,-0.532628,-0.60073,-3.73753,-2.4273,-1.70793,-1.47203,-1.36334,-1.2949,0 +2.82614,-1.85885,-0.967329,-0.706862,3.59905,-2.02532,-2.00237,-1.92392,-1.15785,-0.959473,-0.433872,-2.30827,-0.818151,0.101954,-0.58348,-0.992495,-1.98394,-0.751338,0.220249,-0.554476,-0.979403,-1.54666,-0.738315,0.408726,-0.534577,-0.987738,-3.76186,-2.60929,-1.85413,-1.6021,-1.49902,-1.45301,0 +-0.398841,-0.0670732,-0.714828,-0.0497227,0.465924,0.189206,0.205457,0.239778,-1.04421,-0.67498,-0.272031,0.293949,-0.377303,-0.128619,-0.481126,0.194893,0.272341,-0.0620561,0.149438,-0.325382,0.496368,-0.0987758,-0.388367,0.102344,-0.350647,0.0399579,-0.454091,-0.416961,-0.376094,-0.366659,-0.352077,-0.302274,2 +-0.662327,0.591336,-0.497377,0.936506,0.160162,-0.54753,-0.548389,-0.567439,-1.06173,-0.504263,0.0521913,-0.379472,0.263805,0.315457,-0.25597,0.869383,-0.588067,0.952567,0.122822,0.443626,1.24352,-0.555775,0.390625,-0.12829,-0.0548397,0.980981,-0.153876,0.0822648,0.206857,0.194753,0.211124,0.276428,2 +-0.434911,-0.00440761,-0.643257,-0.308001,0.0234072,0.18285,0.180201,0.165749,-1.10196,-0.516297,-0.0919496,0.621939,-0.627576,-0.0694219,-0.613743,-0.147789,0.143841,-0.181351,0.0516116,-0.396713,0.531259,-0.0775275,-0.513698,0.324292,-0.508671,-0.0734798,-0.0353007,-0.0313729,-0.104793,-0.163161,-0.163051,-0.137215,2 +3.45685,-2.07475,-0.96483,-0.864905,2.97055,-1.24674,-1.23306,-1.22381,-1.14077,-0.841858,-0.667384,-1.50416,-1.00055,0.0406277,-0.651143,-1.76815,-0.98339,-0.869163,0.16307,-0.600711,-1.59837,-0.759223,-0.858829,0.403389,-0.563461,-1.63399,-2.97473,-2.34845,-1.72917,-1.51998,-1.43702,-1.39379,0 +0.00174905,-0.576854,-0.800221,-0.568678,0.589637,-0.155994,-0.140653,-0.105112,-1.06375,-0.776394,-0.494569,0.0403278,-0.791506,-0.0300136,-0.641748,-0.590726,-0.0369996,-0.527421,0.092729,-0.508971,-0.092849,-0.298886,-0.668274,0.331658,-0.527121,-0.576594,-0.564131,-0.678877,-0.63868,-0.589237,-0.530359,-0.453041,2 +-0.515797,0.209375,-0.668023,0.302394,0.235591,-0.49191,-0.527471,-0.634122,-1.08975,-0.673091,-0.21841,-0.274509,-0.250753,-0.194273,-0.427316,0.384299,-0.402479,0.368857,-0.338734,-0.0216283,0.950319,-0.730339,-0.0958976,0.00962475,-0.325911,0.533217,-0.195993,-0.216271,-0.217761,-0.207387,-0.159143,-0.0972167,2 +1.51026,-1.45782,-0.925322,-0.752597,2.12169,-1.49663,-1.45929,-1.42623,-1.16417,-0.925002,-0.463646,-1.44052,-0.847105,0.140343,-0.617411,-1.26063,-1.36311,-0.76503,0.20085,-0.581751,-0.935097,-1.13829,-0.778583,0.428745,-0.554256,-1.12773,-2.26874,-1.84281,-1.39538,-1.25872,-1.19835,-1.16787,2 +-0.436221,0.000929457,-0.721254,0.144401,0.449144,0.0325122,0.0280445,0.0142622,-1.12586,-0.753057,-0.303783,0.189516,-0.340623,-0.294399,-0.415502,0.187397,0.119005,0.154035,-0.343931,-0.134756,0.67434,-0.305692,-0.280486,-0.0413973,-0.338024,0.191225,-0.429125,-0.385968,-0.333647,-0.324392,-0.267423,-0.21936,2 +-0.337115,-0.171116,-0.724212,-0.368598,0.0650244,0.0171306,-0.000100022,-0.0403878,-1.08662,-0.670592,-0.424057,0.240008,-0.607777,-0.107071,-0.56468,-0.187517,0.0436561,-0.3279,0.168937,-0.457149,0.323663,-0.000459781,-0.524213,0.310899,-0.494369,-0.142582,0.0471541,-0.178572,-0.274949,-0.279407,-0.250133,-0.208875,2 +-0.318755,-0.191585,-0.785009,-0.213033,0.519885,-1.65647,-1.66756,-1.68561,-1.04759,-0.763641,-0.522333,-1.36984,-0.532238,0.092959,-0.561582,-0.0167809,-1.77026,-0.151167,0.210704,-0.385179,0.578473,-1.31536,-0.299696,0.378073,-0.447744,0.341023,-0.543442,-0.543282,-0.524792,-0.514928,-0.449553,-0.390586,2 +-0.715138,0.713209,-0.387407,0.814863,-0.43733,0.433042,0.452851,0.417751,-0.868593,-0.334197,0.224747,0.5472,0.09082,-0.23781,-0.288952,0.800611,0.303404,0.932908,-0.731799,0.404818,1.25274,0.413033,0.376743,-0.229944,-0.0836839,0.98403,0.449703,0.566059,0.559233,0.458728,0.430934,0.43667,2 +-0.743102,0.83904,-0.207256,0.574565,-0.542742,0.474829,0.468883,0.43664,-0.76555,-0.0918796,0.781341,1.42352,-0.176034,-0.312659,-0.389456,0.535176,-0.016311,0.877009,-0.0975366,0.289321,1.36283,0.555875,0.176853,-0.0550698,-0.169517,0.888902,0.489012,0.82068,0.846476,0.731808,0.678978,0.667884,2 +0.6011,-0.964491,-0.881446,-0.441108,2.09336,-2.10594,-2.11091,-2.12979,-1.15192,-0.891111,-0.644286,-1.98153,-0.230024,0.240208,-0.435671,0.270531,-2.30992,-0.585459,0.373455,-0.521604,-0.461877,-1.65314,-0.511679,0.504363,-0.501495,-0.179252,-1.99861,-1.60538,-1.19623,-1.05444,-0.989797,-0.936246,2 +1.93695,-1.63237,-0.958244,-0.532238,2.82829,-2.05894,-2.02828,-1.97616,-1.15503,-0.926092,-0.661027,-1.93663,0.189816,1.14514,-0.124752,-0.312459,-2.29823,-0.804509,0.168787,-0.605088,-1.27537,-1.44396,-0.630244,0.487582,-0.540793,-0.676919,-2.78903,-2.2008,-1.63436,-1.42383,-1.33485,-1.286,0 +-0.636921,0.45549,-0.580062,1.07412,0.374904,-0.173505,-0.229094,-0.279936,-1.07011,-0.574275,-0.332208,-0.0344212,1.36858,-1.1576,0.659578,1.47596,-0.20067,0.746031,-0.224377,-0.0433564,1.00785,-0.187097,0.233782,0.157374,-0.302064,0.8379,-0.390706,-0.206237,-0.0972267,-0.0809659,-0.0774075,-0.0573286,2 diff --git a/data/parkinsons.arff b/data/parkinsons.arff new file mode 100755 index 0000000..e509242 --- /dev/null +++ b/data/parkinsons.arff @@ -0,0 +1,220 @@ +@relation parkinsons +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'clase' {0,1} +@data +-0.827171,-0.435045,-0.949593,0.334054,0.747835,0.132621,0.758847,0.131417,0.74407,0.737637,0.606298,1.11627,0.33213,0.605972,-0.0677185,-0.192729,-0.805764,1.75629,0.799266,0.479243,-0.20999,0.866655,1 +-0.768992,-0.529611,-0.0575724,0.713581,1.03501,0.452726,1.27353,0.451521,1.67741,1.76392,1.54394,2.27066,1.15648,1.54428,-0.137489,-0.632879,-0.386529,1.83284,1.47605,1.30782,0.274371,1.79897,1 +-0.907141,-0.721312,-0.109593,0.882719,1.32219,0.718919,1.58162,0.71996,1.19961,1.025,1.17262,1.72174,0.697392,1.17231,-0.290884,-0.279042,-0.660375,1.93706,1.13851,1.01507,-0.103363,1.39906,1 +-0.907286,-0.647425,-0.113935,0.773398,1.32219,0.577399,1.28078,0.576194,1.33696,1.2046,1.33711,1.844,0.804787,1.33679,-0.279998,-0.280624,-0.611559,1.82768,1.43725,1.29052,0.0619853,1.80231,1 +-0.923281,-0.604689,-0.130272,1.36538,1.89654,1.09294,2.04193,1.09398,1.83173,1.5484,1.89457,2.52599,1.21372,1.89458,-0.177569,-0.505444,-0.78101,1.90446,1.77637,0.0959484,-0.129692,2.26126,1 +-0.813641,-0.720754,-0.0583076,0.713581,1.03501,0.445987,1.46926,0.444782,0.917481,0.89158,0.750096,1.44562,0.492632,0.750428,-0.312409,-0.114777,-0.798251,1.9331,1.32225,0.870451,-0.507488,1.67803,1 +-0.820526,-0.654278,-0.0345722,-0.596201,-0.400868,-0.591827,-0.516988,-0.590783,-0.722765,-0.729953,-0.775537,-0.707623,-0.623807,-0.775551,-0.464567,0.677855,0.938069,0.831522,0.0459314,0.373735,-1.37681,0.0577496,1 +-1.13304,-0.910083,-0.275948,-0.684895,-0.400868,-0.628892,-0.589479,-0.630095,-0.744508,-0.760742,-0.726291,-0.700138,-0.679865,-0.726305,-0.529636,1.13111,1.33618,0.816161,-0.443224,-0.513026,-0.828458,-0.474889,1 +-1.41335,-0.710852,-0.564564,-0.146543,0.460659,-0.126833,-0.0457992,-0.12579,-0.465565,-0.46825,-0.485972,-0.424849,-0.407836,-0.486311,-0.350015,-0.0167145,1.12578,1.00275,0.170352,1.21405,-0.154951,0.277625,1 +-1.42963,-0.841629,-0.576696,-0.185734,0.460659,-0.211071,-0.0457992,-0.212274,-0.0704849,-0.139838,-0.123523,-0.0522515,0.0211553,-0.123202,-0.361891,-0.005417,0.466622,1.4523,0.616871,1.19279,0.13314,0.719162,1 +-1.59206,-0.927571,-0.741075,-0.241425,0.460659,-0.258244,-0.0530483,-0.257201,-0.43905,-0.437461,-0.480063,-0.370789,-0.304571,-0.480073,-0.326264,-0.173524,1.08331,1.04917,0.398664,1.97219,0.0665804,0.479235,1 +-1.50579,-0.887884,-0.690066,-0.169232,0.460659,-0.167267,-0.0313011,-0.166224,-0.116091,-0.170627,-0.140267,-0.122113,-0.114564,-0.140274,-0.332449,-0.106642,0.816366,1.3449,0.664243,1.64324,0.680905,0.769861,1 +-0.418039,-0.40702,0.343541,-0.678707,-0.688043,-0.7165,-0.694591,-0.715456,-0.907843,-0.873633,-0.896682,-0.890595,-0.748314,-0.896697,-0.471,0.862456,-0.364969,-1.28765,-0.791364,-0.8836,-0.889629,-0.754995,1 +-0.36375,-0.196367,-0.913772,-0.47863,-0.400868,-0.558132,-0.495241,-0.557088,-0.704734,-0.658113,-0.825768,-0.711782,-0.360629,-0.825783,-0.35719,0.678533,-0.657768,-0.944524,0.022179,0.341447,0.359447,-0.0739313,1 +-0.0334293,-0.369432,-0.930315,-0.676644,-0.688043,-0.706391,-0.709089,-0.705347,-0.606097,-0.637587,-0.494836,-0.678514,-0.685766,-0.495176,-0.464072,0.685989,-0.228441,-1.15788,-0.385891,-0.27405,-0.669302,-0.404482,1 +-0.291414,0.222426,-0.762053,-0.521945,-0.400868,-0.585088,-0.513364,-0.585168,-0.778447,-0.801793,-0.782432,-0.748376,-0.619086,-0.782446,-0.407167,0.743154,0.648329,-1.08165,0.315795,-0.195734,-0.460503,0.311114,1 +-0.242586,1.66304,-0.771129,-0.160982,-0.113692,-0.403134,-0.190781,-0.404337,-0.489959,-0.463119,-0.588403,-0.488889,-0.197176,-0.588087,-0.154807,0.101005,0.662337,-1.32657,0.224138,0.158906,-0.306493,0.128855,1 +0.351518,0.383381,-0.935669,0.197919,-0.113692,-0.157158,0.15355,-0.156115,0.188836,0.337385,-0.123523,0.0874725,0.602978,-0.123858,0.107449,-0.341178,1.27536,-2.03633,2.52551,2.49162,1.63437,2.48822,1 +-0.0285731,-0.232545,-1.09605,0.247423,0.173483,0.112404,0.316654,0.112323,1.35021,1.33288,0.890939,1.48388,1.982,0.890944,0.167075,-1.04072,1.60458,0.0247209,1.59173,1.57495,1.89965,1.89612,1 +0.0525817,-0.0842364,0.608835,0.301052,0.173483,0.13936,0.197044,0.139279,0.543083,0.337385,0.152253,0.487516,1.12225,0.152578,0.217795,-1.06941,1.45291,-0.578631,1.03644,1.3628,1.24047,1.28229,1 +-0.00919643,-0.34284,-1.16133,0.449562,0.173483,0.328054,0.381896,0.329096,0.444975,0.234757,0.0990673,0.495001,0.971781,0.0987351,0.342985,-0.982875,1.55462,-0.253218,1.45748,0.432268,0.934913,1.76254,1 +-0.0084233,-0.264996,-0.877651,-0.292991,-0.400868,-0.332374,-0.281394,-0.332454,0.618386,0.450277,0.447727,0.667992,1.24912,0.447399,-0.157282,-0.540692,1.25533,-0.346033,0.456277,0.133224,0.459013,0.590477,1 +0.33103,-0.0424511,-0.856053,-0.371372,-0.400868,-0.372808,-0.353884,-0.371765,0.731873,0.486197,0.651605,0.625576,1.08449,0.651936,-0.298059,0.131509,1.15954,-0.691506,1.24145,0.43011,1.39747,0.878206,1 +0.475678,-0.0477631,-0.692639,-0.301242,-0.400868,-0.369439,-0.314015,-0.369518,0.647553,0.419488,0.611223,0.567358,0.804787,0.611554,-0.159508,-0.330785,0.372598,-0.563921,0.399576,-0.194607,0.432817,0.521579,1 +0.227769,0.0408353,-0.908648,0.247423,0.173483,0.166316,0.164424,0.166235,-0.695719,-0.606799,-0.815919,-0.698475,-0.537654,-0.815933,-0.174848,0.439478,-0.967836,0.259867,0.116445,-0.0673856,0.810738,0.10441,1 +-1.20388,0.0972449,-0.881328,0.0225939,0.460659,-0.0493334,0.110056,-0.0494139,0.422172,0.506723,0.163087,0.380228,0.809508,0.163412,0.0995319,0.0406767,0.232923,0.3587,0.103241,0.124004,1.21354,0.143836,1 +0.406193,0.122504,-0.938013,-0.344558,-0.400868,-0.271722,-0.401003,-0.271802,-0.532914,-0.493907,-0.667196,-0.514671,-0.316373,-0.667538,-0.34383,0.908775,-0.76883,0.0509065,-0.457888,-0.00278576,0.543042,-0.656337,1 +-0.178392,0.126745,-0.794727,-0.259989,-0.400868,-0.271722,-0.252398,-0.272925,-0.557839,-0.43233,-0.673106,-0.535464,-0.343517,-0.672791,-0.286183,0.730501,-1.34462,0.154564,-0.538698,-0.364583,-0.176639,-0.483278,1 +0.0272858,0.330939,-0.833374,-0.643642,-0.688043,-0.578349,-0.611226,-0.579552,-0.664431,-0.622193,-0.785386,-0.645247,-0.440881,-0.785401,-0.447248,0.922784,-0.269935,-0.756129,-1.31766,0.638789,-0.365947,-1.08786,1 +0.201482,0.013565,-0.889094,-0.247613,-0.400868,-0.170636,-0.332137,-0.169593,-0.625718,-0.586273,-0.761748,-0.607821,-0.359449,-0.761434,-0.325274,0.856807,-0.680675,0.10297,-0.872616,-0.199559,-1.10728,-0.79128,1 +1.03521,0.107016,1.74007,-0.686957,-0.975219,-0.554763,-0.640223,-0.554842,-0.993222,-0.950605,-0.988279,-0.921368,-0.947763,-0.988296,-0.530873,1.10467,-0.734128,0.420486,-1.52623,-0.587002,-1.66656,-1.34247,0 +1.0872,0.135609,1.7409,-0.785965,-0.975219,-0.662588,-0.748958,-0.662667,-1.03724,-0.991656,-1.04639,-0.953804,-0.971366,-1.04608,-0.573428,2.04575,-0.6359,0.432919,-1.83285,-0.637742,-0.728111,-1.53187,0 +1.06679,0.197812,1.76417,-0.845781,-0.975219,-0.733348,-0.759832,-0.733427,-0.905721,-0.878765,-0.91244,-0.800773,-0.85984,-0.912785,-0.585304,2.00847,-0.313537,0.372344,-1.26906,-0.615417,-2.27156,-1.22317,0 +1.1606,0.158475,1.85551,-0.911786,-1.00394,-0.800738,-0.861319,-0.80194,-1.06959,-1.01218,-1.08086,-0.982913,-0.99674,-1.08088,-0.596932,2.43981,-1.25071,0.434329,-1.84491,-0.575144,-2.18709,-1.66902,0 +1.18278,0.157622,1.83439,-0.915912,-1.00394,-0.797369,-0.864944,-0.796324,-1.06747,-1.01218,-1.08185,-0.979586,-0.992609,-1.08219,-0.598664,2.52183,-1.52458,0.4301,-2.09188,-0.75524,-2.50403,-1.79776,0 +1.14122,0.147118,1.82401,-0.874659,-0.975219,-0.760304,-0.832323,-0.761506,-0.942313,-0.89929,-0.965626,-0.854833,-0.8563,-0.965642,-0.581345,2.22471,-1.48433,0.445244,-1.92008,-0.675341,0.170423,-1.65272,0 +0.571329,-0.0457301,1.18765,-0.435314,-0.688043,-0.329004,-0.375632,-0.327961,-0.448065,-0.478513,-0.406194,-0.36663,-0.469795,-0.405876,-0.469763,0.300519,-1.3314,1.09757,-0.426759,-0.101592,0.248841,-0.451897,1 +0.530112,-0.125705,1.08543,-0.521945,-0.688043,-0.423351,-0.458996,-0.422307,-0.5939,-0.586273,-0.618936,-0.522157,-0.541195,-0.618948,-0.530626,0.692542,-1.51143,1.18417,-0.295372,-0.361358,0.404131,-0.369883,1 +0.62743,0.0452947,1.35867,-0.697271,-0.688043,-0.598566,-0.647472,-0.598646,-0.809736,-0.776136,-0.827738,-0.750871,-0.71881,-0.828081,-0.557594,1.09631,-0.910621,0.869418,-0.704142,-0.170448,-0.2937,-0.717079,1 +0.809478,0.0570444,1.30259,-0.631266,-0.688043,-0.548024,-0.589479,-0.548103,-0.693598,-0.673507,-0.726291,-0.652732,-0.614955,-0.725977,-0.549182,0.999607,-0.978842,0.726924,-0.295586,0.484159,0.00187543,-0.508888,1 +0.771546,0.00676655,1.40757,-0.668394,-0.688043,-0.558132,-0.614851,-0.557088,-0.78269,-0.75561,-0.780462,-0.704297,-0.693437,-0.780804,-0.557594,1.11529,-1.65531,0.858828,-0.883302,-0.304719,-0.0202537,-0.8433,1 +0.720616,-0.00620733,1.16385,-0.7509,-0.975219,-0.662588,-0.716338,-0.661543,-0.79966,-0.771005,-0.811979,-0.737564,-0.692847,-0.811994,-0.551161,1.03192,-1.84808,0.742809,-1.2472,-1.95548,-0.053015,-1.00779,1 +2.00525,0.548915,2.50227,-0.668394,-0.975219,-0.544654,-0.589479,-0.544733,-0.6464,-0.606799,-0.523399,-0.635266,-0.752445,-0.523739,-0.431661,0.192063,-1.86137,-1.15526,-1.4916,-1.53302,0.0914629,-1.23747,0 +2.10619,0.565397,2.66899,-0.703459,-0.975219,-0.585088,-0.6221,-0.586291,-0.642158,-0.658113,-0.551961,-0.623623,-0.682815,-0.552301,-0.447743,0.284476,-0.39285,-1.51497,-1.01738,-0.818221,-0.326874,-0.989273,0 +2.15536,0.58811,2.66789,-0.849907,-1.00394,-0.746826,-0.752583,-0.746905,-0.822993,-0.801793,-0.777507,-0.740059,-0.811453,-0.77785,-0.502421,0.786763,-0.579551,-1.49657,-1.25983,-1.61742,-0.133517,-1.27699,0 +2.14117,0.633163,2.56394,-0.818967,-1.00394,-0.719869,-0.745334,-0.721072,-0.78322,-0.760742,-0.708563,-0.755862,-0.822665,-0.708248,-0.496978,0.710843,-0.647002,-1.43074,-1.20291,-1.49183,-0.0418655,-1.15231,0 +2.20539,0.710285,2.6544,-0.798341,-0.975219,-0.686174,-0.712713,-0.687376,-0.722765,-0.724822,-0.650453,-0.674356,-0.743004,-0.650137,-0.496978,0.613685,-0.298692,-1.56221,-1.34991,-1.18539,0.0268964,-1.2119,0 +2.37319,0.703694,1.5271,-0.901473,-1.06137,-0.804108,-0.839572,-0.804186,-0.964586,-0.919816,-0.938048,-0.879783,-0.913538,-0.938393,-0.507864,1.11145,1.07591,-1.49804,-1.49982,-0.307381,-0.922714,-1.33327,0 +-0.774114,-0.748637,-0.0128587,-0.202235,-0.113692,-0.544654,-0.513364,-0.544733,-0.720113,-0.714559,-0.700684,-0.841526,-0.57542,-0.700369,-0.407167,0.288318,0.779874,0.281191,-0.69253,0.478164,-0.788675,-0.806538,0 +-0.755366,-0.732919,-0.0378809,-0.400249,-0.400868,-0.696283,-0.687341,-0.695239,-0.684052,-0.658113,-0.626815,-0.819902,-0.594893,-0.627156,-0.500442,0.697061,0.386298,0.650102,-0.731695,0.461079,-0.855298,-0.861964,0 +-0.719584,-0.678051,0.0268918,-0.394061,-0.400868,-0.639001,-0.643847,-0.640203,-0.417307,-0.437461,-0.320506,-0.635266,-0.426719,-0.320187,-0.496236,0.734116,0.52528,1.04514,-0.886138,0.33556,-1.41491,-1.14283,0 +-0.673704,-0.68721,-0.0816065,-0.358996,-0.113692,-0.672696,-0.636598,-0.672775,-0.497384,-0.499039,-0.417028,-0.689326,-0.468615,-0.417038,-0.497473,0.710392,0.0862836,0.763736,-0.921617,0.784642,0.13069,-1.11584,0 +-0.63367,-0.645447,0.132242,-0.383748,-0.400868,-0.652479,-0.647472,-0.652558,-0.357382,-0.370753,-0.239743,-0.595345,-0.431439,-0.239751,-0.495741,0.634021,-0.372993,0.869327,-1.27317,-0.0728529,-1.06983,-0.96809,0 +-0.601416,-0.625609,0.0523735,-0.272365,-0.113692,-0.558132,-0.585855,-0.558211,-0.25079,-0.278387,-0.167845,-0.473087,-0.272117,-0.167852,-0.494999,0.800545,-0.751888,1.2219,-1.05706,0.519816,-0.413029,-0.65536,0 +-1.0974,-0.682565,-0.309058,0.286613,0.747835,0.0618611,0.512379,0.0606571,-0.133592,-0.139838,-0.0821571,-0.148728,-0.201306,-0.0818348,-0.358427,-0.193859,0.360524,1.82401,0.949199,-0.25121,-1.03168,1.22225,1 +-1.07196,-0.773262,-0.273144,0.519692,1.03501,0.226968,0.704479,0.225764,0.12626,0.126996,0.219227,0.16981,0.0270561,0.219553,-0.3228,-0.252832,0.577732,1.69409,1.23908,-0.0573503,-0.959303,1.53444,1 +-1.05851,-0.721793,-0.297661,0.334054,0.747835,0.0719697,0.613866,0.0718889,0.394596,0.265545,0.458561,0.427634,0.232405,0.45889,-0.375004,-0.104835,0.416055,1.86615,1.14285,0.141329,-1.19876,1.42577,1 +-0.892838,-0.734373,-0.136085,0.268049,0.460659,-0.106615,0.450762,-0.105573,-0.359503,-0.314307,-0.371722,-0.273481,-0.271526,-0.371403,-0.446259,0.210365,0.307802,1.80095,0.987093,0.761502,-0.941055,1.19744,1 +-0.902382,-0.712721,-0.187761,0.342305,0.747835,0.0113182,0.53775,0.0123607,-0.172834,-0.0885238,-0.169814,-0.135421,-0.160001,-0.169493,-0.42028,0.162012,0.399392,1.72281,1.10772,0.433095,-1.44936,1.32763,1 +-0.951476,0.811103,-0.267561,0.505254,1.03501,0.14273,0.635613,0.143772,0.134745,0.347648,0.234986,0.154839,0.0654116,0.234655,-0.331954,-0.0510588,0.475646,1.79444,0.986267,-0.0575422,-1.43714,1.21887,1 +1.32678,0.441452,-0.159591,-0.701396,-0.975219,-0.618784,-0.698215,-0.61774,-0.588597,-0.57601,-0.582494,-0.440651,-0.605514,-0.582506,-0.39925,0.828789,-1.50803,-0.708854,-1.2439,-1.91253,0.206283,-1.16552,0 +1.67036,0.45777,-0.405792,-0.738524,-0.975219,-0.595197,-0.70184,-0.596399,-0.564733,-0.601667,-0.545067,-0.409047,-0.630298,-0.545079,-0.540275,0.960744,-0.486393,-0.575306,-1.47624,-1.6802,-0.157435,-1.19837,0 +1.64308,0.374243,2.04888,-0.734398,-0.975219,-0.601936,-0.727211,-0.600892,-0.704204,-0.704296,-0.688865,-0.565404,-0.712909,-0.68855,-0.530626,0.897026,-1.286,-0.428295,-1.17585,-1.56618,-0.269434,-1.14656,0 +1.80245,0.410028,2.46567,-0.672519,-0.975219,-0.524437,-0.687341,-0.523393,-0.703674,-0.704296,-0.674091,-0.59285,-0.725301,-0.673776,-0.527904,0.921429,-2.3279,-0.628942,-1.43204,-2.49169,0.304071,-1.25409,0 +1.81619,0.602417,2.40873,-0.86022,-1.00394,-0.729978,-0.839572,-0.730057,-0.802842,-0.786399,-0.785386,-0.69099,-0.821485,-0.785072,-0.540522,1.02333,-2.13279,-0.803513,-1.66195,-2.03423,-0.989538,-1.4755,0 +1.80576,0.463825,-0.0717723,-0.792153,-0.975219,-0.655848,-0.741709,-0.655928,-0.650113,-0.658113,-0.614996,-0.522157,-0.692847,-0.61468,-0.510833,0.601258,-1.85783,-0.655778,-1.49498,-2.64054,-0.687646,-1.27615,0 +-0.335531,-0.408026,-1.13286,0.402121,0.460659,0.334793,0.34565,0.333588,0.120426,0.157785,0.259608,0.0184422,0.0117139,0.259606,-0.074646,-0.525553,-0.369405,0.0507619,0.252221,0.00407228,-0.0570876,0.217538,1 +-0.417,-0.333341,-1.15623,0.620762,0.747835,0.594247,0.429015,0.593041,0.0742895,0.132128,0.0705048,-0.023974,0.114979,0.0705005,0.043122,-0.43088,-0.00387273,0.198207,0.33005,-0.249987,-0.235811,0.218548,1 +-0.258411,-0.381346,-1.16071,0.987914,1.03501,1.06598,0.443513,1.0659,1.27968,1.00447,1.56167,0.527437,0.580555,1.56135,0.593118,-0.349764,0.141439,0.241163,-0.170016,-0.895578,-0.687907,-0.23271,1 +-0.148312,-0.374689,-1.12546,0.288676,0.173483,0.459465,0.0339405,0.458261,1.30302,1.10197,1.76357,0.587318,0.723945,1.76326,-0.0132879,-0.0379538,-0.107065,0.16651,-0.529022,-1.26555,-0.639372,-0.716757,1 +-0.277836,-0.379236,-1.16836,0.430999,0.460659,0.466204,0.269535,0.466123,0.272625,0.42462,0.297035,0.0982845,0.319148,0.297362,0.0282773,-0.366485,-0.0884201,0.222061,-0.0334535,-0.811459,-0.271419,-0.28544,1 +-0.431762,-0.224173,-1.16206,0.719769,0.747835,0.685224,0.483382,0.684018,1.06438,1.03013,1.16475,0.564031,0.783544,1.16475,0.216805,-0.749243,0.430659,0.273475,0.436992,-0.0198829,0.680383,0.404235,1 +-0.825044,-0.627325,-0.117566,-0.44769,-0.400868,-0.507589,-0.451747,-0.507669,-0.670795,-0.668376,-0.583479,-0.717604,-0.627347,-0.583819,-0.50539,0.871268,-0.0248364,0.810685,-0.0985347,1.2296,-0.461867,-0.203859,1 +-1.01992,4.27813,-0.213702,-0.183671,0.173483,-0.211071,-0.0566728,-0.210028,-0.277305,-0.28865,-0.190498,-0.343343,-0.266806,-0.190177,-0.460608,0.517882,0.101898,1.2909,0.270836,0.960673,-1.1837,0.209826,1 +-1.04942,-0.754211,-0.206993,-0.264114,-0.113692,-0.238027,-0.223401,-0.238107,-0.280487,-0.339964,-0.132388,-0.384928,-0.340566,-0.132723,-0.496236,0.802579,-0.591721,1.76755,0.340336,-0.295535,-0.407553,0.421223,1 +-1.0515,-0.814216,-0.260047,-0.218736,0.173483,-0.180745,-0.201654,-0.180825,-0.400867,-0.391278,-0.278155,-0.473087,-0.409016,-0.278492,-0.497968,0.748125,-0.336934,1.61049,0.189693,1.06184,-1.35772,0.244924,1 +-0.999096,-0.527687,-0.21469,-0.251738,-0.113692,-0.204332,-0.201654,-0.204412,0.545204,0.347648,0.833814,0.368584,0.174577,0.83349,-0.390838,0.335315,-0.0865633,1.29894,-0.0839925,1.37471,-0.976761,-0.140188,1 +-1.05486,-0.783798,-0.218367,-0.330119,-0.113692,-0.352591,-0.234275,-0.353794,-0.409352,-0.437461,-0.278155,-0.489721,-0.455633,-0.278164,-0.510833,0.888892,-0.664329,1.77536,0.269093,0.288489,-1.57766,0.290641,1 +-1.42169,-1.03791,-0.5988,-0.0289723,0.460659,0.00120957,-0.0457992,0.00225211,0.122548,-0.0987867,0.233016,0.0816507,0.0276462,0.232685,-0.351995,-0.00247965,1.40866,1.11163,0.522088,0.275564,-0.951081,0.593251,1 +-1.29158,-0.889786,-0.70723,0.857967,1.60936,0.981742,0.838587,0.980536,0.0795926,0.404094,0.203468,-0.00401344,-0.15882,0.203794,-0.0654918,-0.606895,0.922165,1.30147,0.706757,0.469855,0.0433541,0.792243,1 +-1.40427,-0.966657,-0.731011,0.148416,0.747835,0.196642,0.255037,0.197684,0.558462,0.419488,0.689031,0.551556,0.276072,0.689363,-0.163714,-0.639658,0.445148,0.946348,1.14004,-0.856216,0.690004,1.3474,1 +-1.41637,-0.977029,-0.661183,0.164917,0.747835,0.328054,0.0955575,0.326849,0.0981534,0.0705506,0.222182,0.0442246,-0.128726,0.222508,-0.163219,-0.503184,0.746076,1.096,0.50666,-0.192461,-0.389891,0.600108,1 +-1.28699,-0.951847,-0.475551,-0.0330976,0.460659,0.0686001,0.0121933,0.0685193,-0.288442,-0.339964,-0.192468,-0.305085,-0.387773,-0.192147,-0.308698,-0.305026,0.53948,1.26133,0.607323,-0.953919,0.121421,0.64486,1 +-1.33908,-1.03616,-0.655324,-0.391999,-0.113692,-0.281831,-0.314015,-0.280788,-0.396625,-0.411804,-0.28505,-0.369957,-0.5052,-0.285058,-0.396529,0.0808958,0.751464,0.981587,-0.312757,-1.77815,-0.857434,-0.324865,1 +0.546734,0.0924138,-0.94162,0.257736,-0.113692,0.294359,0.27316,0.294277,0.96733,0.78382,1.0958,1.02645,0.650185,1.09581,0.738596,-1.80601,0.557605,0.207586,0.362761,1.39754,1.87429,0.39467,1 +0.646275,0.0330094,0.900025,-0.445627,-0.688043,-0.372808,-0.364758,-0.374011,0.467248,0.250151,0.53243,0.586487,0.276662,0.532431,0.0735536,-1.29017,0.818136,0.174353,0.0243052,1.07178,1.87156,-0.0680058,1 +0.579689,0.0584216,0.568051,-0.620953,-0.688043,-0.564871,-0.545985,-0.566074,0.41793,0.229625,0.498943,0.521615,0.221784,0.498944,0.164849,-1.34711,0.963795,-0.106623,-0.626045,1.30977,0.711718,-0.687285,1 +0.532794,0.330917,0.213352,-0.210485,-0.400868,-0.14705,-0.11829,-0.146007,1.87734,1.52788,2.07284,1.97208,1.34235,2.07253,0.578768,-1.79946,1.00382,0.410908,0.155315,0.875703,1.97159,0.15997,1 +0.475219,0.155698,-0.956946,-0.358996,-0.400868,-0.315526,-0.328513,-0.316729,1.99189,1.88708,2.18807,2.05109,1.41257,2.18776,0.427847,-1.61486,0.970115,0.46693,-0.090694,0.878628,1.63342,-0.138701,1 +0.615664,0.315057,0.656076,0.179355,-0.113692,0.203381,0.269535,0.202177,0.711721,0.81974,0.719564,0.815202,0.61773,0.719896,1.17231,-2.26401,0.889109,0.495645,1.19701,1.78669,3.36816,1.39298,1 +0.299018,0.0973104,-0.879857,0.247423,-0.113692,0.189903,0.392769,0.189822,1.94575,1.80498,2.05215,2.07438,1.59668,2.05184,1.54392,-2.29158,1.49001,0.272264,1.07815,1.95096,2.44452,1.0586,1 +-0.054932,-0.369104,0.710027,-0.418813,-0.400868,-0.35933,-0.426375,-0.35941,2.64523,2.51311,2.81152,2.63993,1.93657,2.81122,-0.204537,-0.502054,0.024066,-0.0675701,-0.666937,-0.23205,-0.0965261,-0.80373,1 +-0.143915,-0.351026,0.596818,-0.336307,-0.400868,-0.271722,-0.321264,-0.271802,0.646493,0.516985,0.804266,0.609774,0.379336,0.804599,-0.1412,-0.701794,-0.424195,0.296462,-0.245514,-1.6626,-0.0979367,-0.222623,1 +-0.0508248,-0.3895,-0.912852,-0.495131,-0.400868,-0.470524,-0.43,-0.469481,1.56658,1.82037,1.74781,1.66852,1.17418,1.74816,-0.31513,-0.20719,-0.491425,-0.367014,-0.429417,-0.635332,-0.788155,-0.507579,1 +0.0867928,-0.263739,-1.10115,-0.544635,-0.688043,-0.453677,-0.538736,-0.454879,0.395126,0.126996,0.488109,0.443436,0.209982,0.487781,-0.404446,0.075247,0.0369867,-0.107147,-0.52011,-0.461051,-0.621671,-0.507545,1 +0.0777568,-0.369847,0.76469,-0.521945,-0.688043,-0.436829,-0.535111,-0.438032,0.159669,0.003842,0.242865,0.10078,0.096096,0.242863,-0.362881,-0.0436025,-0.49307,-0.224828,-0.516121,-0.551309,-0.0979054,-0.462006,1 +0.11808,-0.308137,0.654537,-0.577637,-0.688043,-0.514328,-0.58223,-0.513285,0.217473,0.126996,0.23597,0.196424,0.236536,0.23564,-0.403951,0.175569,-1.27193,-0.445824,-0.672389,-0.382268,0.238801,-0.608556,1 +-0.705306,-0.581025,-0.00316237,1.35713,1.60936,1.38946,1.00894,1.38825,0.485279,0.306597,0.560007,0.321177,0.401169,0.560337,1.40191,-1.47951,1.26069,-0.0653111,1.52664,0.465251,0.757575,1.48771,1 +-0.687064,-0.618067,-0.46227,1.55927,1.89654,1.66913,1.12492,1.66904,0.911117,0.717111,0.960868,0.700428,0.885038,0.960546,1.93929,-1.45805,0.697261,-0.491671,0.481768,-0.292118,0.156181,0.597245,1 +-0.669645,-0.604962,-0.380379,2.71023,3.04524,2.79118,2.33914,2.78997,1.9956,1.93326,2.01374,1.80907,1.99145,2.01376,3.52792,-2.13544,1.347,-0.779713,1.76485,0.196037,0.660417,1.90782,1 +-0.690688,-0.612482,0.000491005,5.55668,6.20417,6.11016,4.26739,6.11119,3.29167,3.12375,3.73439,2.49771,2.23515,3.73443,7.17427,-2.94163,1.66212,-1.10693,1.8197,0.407294,1.59153,1.82435,1 +-0.622798,-0.509948,-0.935003,1.91611,2.18371,1.93532,2.04556,1.93636,1.6965,1.5484,1.63159,1.56705,1.63208,1.63161,2.31535,-1.54233,1.35915,-1.35124,1.35907,1.00296,0.669941,1.66811,1 +-0.362518,4.25681,-1.15271,4.92757,5.05547,5.133,4.65159,5.13403,3.41948,3.32388,3.92448,2.67569,2.13307,3.92485,5.80064,-2.57514,0.941167,-1.38574,2.21509,0.529108,0.80745,2.64341,1 +-0.0959322,-0.464479,-0.941505,-0.771526,-0.688043,-0.760304,-0.756208,-0.760383,-0.975722,-0.89929,-1.02866,-0.938833,-0.825615,-1.02835,-0.492277,1.10106,-1.94001,0.0769294,-1.0952,-1.64549,-0.986865,-1.02763,1 +-0.00545157,-0.402637,0.282536,-0.905598,-0.975219,-0.85802,-0.886691,-0.856976,-1.02928,-0.965999,-1.08086,-1.00287,-0.907047,-1.08121,-0.554625,1.47388,-2.25974,-0.480991,-1.30909,-0.979912,-0.82641,-1.25787,1 +-0.109679,-0.401533,0.397123,-0.752962,-0.688043,-0.723239,-0.763457,-0.722195,-0.861706,-0.801793,-0.892742,-0.806595,-0.796111,-0.893086,-0.471742,1.25064,-1.28002,0.0338832,-1.20436,-0.194607,-1.01212,-1.03944,1 +0.0205208,-0.364721,0.639303,-0.936538,-0.975219,-0.884976,-0.915687,-0.885055,-1.01125,-0.950605,-1.02866,-0.961289,-0.873412,-1.02835,-0.557099,1.77597,-1.58131,-0.725914,-1.1895,-0.503087,-0.658053,-1.10686,1 +-0.0566474,-0.429984,0.400409,-0.7509,-0.688043,-0.726609,-0.806951,-0.725564,-0.806554,-0.745347,-0.919335,-0.831545,-0.673374,-0.919679,-0.451702,1.11778,-1.00992,-0.322631,-0.839864,0.271704,0.306484,-1.12346,1 +-0.0541106,-0.43464,0.379867,-0.924162,-0.975219,-0.86139,-0.901189,-0.861468,-1.03247,-0.971131,-1.09465,-1.00786,-0.835057,-1.095,-0.555862,1.81709,-1.80069,-0.759599,-0.96748,-0.789206,-0.221926,-1.01445,1 +0.937456,0.12892,-0.827814,0.296926,-0.113692,0.402183,0.160799,0.403225,0.0387588,-0.0372095,0.201498,0.0226007,-0.191275,0.201167,-0.380447,0.0108514,-0.00944316,0.405523,-0.147405,0.62548,0.592799,-0.231733,1 +1.1231,0.293766,-0.612081,-0.00215785,-0.400868,0.135991,-0.0276766,0.134787,-0.363215,-0.386147,-0.368767,-0.290115,-0.328175,-0.368777,-0.440568,0.305716,-0.600832,0.176449,0.390822,0.359012,0.441837,0.288155,1 +1.31168,0.253686,1.90011,-0.0269096,-0.400868,0.125882,-0.0204275,0.126924,-0.641628,-0.652982,-0.605147,-0.606989,-0.64977,-0.605487,-0.409394,0.117726,-1.54354,-0.101797,-0.721909,-0.505149,0.314812,-0.778542,1 +1.21854,0.264452,1.68414,0.451625,-0.113692,0.577399,0.508754,0.577317,-0.314427,-0.370753,-0.28505,-0.253521,-0.378332,-0.285058,-0.289152,-0.131271,0.00328513,0.0720321,0.741199,-0.173326,-0.0132631,0.683453,1 +1.35086,0.389119,1.5839,-0.181608,-0.400868,-0.0324857,-0.234275,-0.0314431,-0.684583,-0.68377,-0.694774,-0.641088,-0.653311,-0.694787,-0.461351,0.403326,-0.552603,0.0750861,-0.255587,0.285024,0.280473,-0.318962,1 +1.25872,0.319703,-0.558452,-0.262052,-0.688043,-0.0965067,-0.357509,-0.0977103,-0.459201,-0.375884,-0.452485,-0.419027,-0.474515,-0.452824,-0.355458,-0.0049651,-1.60693,-0.0538177,-0.958823,-0.537245,1.45321,-1.01018,1 +-0.0569374,3.23294,-1.08543,0.482565,0.460659,0.247185,0.146301,0.245981,-0.598142,-0.242467,-0.758794,-0.794951,-0.671013,-0.758479,0.882343,0.408297,-0.873899,-1.00172,0.927489,0.420099,0.837329,0.75295,1 +0.0964086,2.68278,-1.01965,-0.301242,-0.400868,-0.393025,-0.498866,-0.393105,-0.802311,-0.688902,-0.945927,-0.865645,-0.64682,-0.945944,-0.230268,1.01,-0.459272,-1.16156,-0.336483,0.560748,0.676522,-0.404415,1 +0.399307,2.76684,-0.85688,-0.138293,-0.400868,-0.291939,-0.303141,-0.293143,-0.660719,-0.550353,-0.797205,-0.679346,-0.446191,-0.797548,-0.16891,0.859518,-0.113501,-0.760376,0.996657,1.74573,1.55189,0.84586,1 +0.581211,2.6857,-0.787236,-0.330119,-0.400868,-0.585088,-0.545985,-0.584044,-0.897237,-0.786399,-0.935093,-0.86814,-0.741823,-0.93511,-0.402961,0.708132,-0.270474,-1.13597,0.707443,1.99681,1.13625,0.504002,1 +1.51938,0.39759,-0.513463,-0.449753,-0.688043,-0.686174,-0.785204,-0.686253,-0.88663,-0.812056,-0.874029,-0.962121,-0.78667,-0.873716,-0.446259,0.60894,-0.346536,-2.44668,0.153387,1.95172,1.4212,0.156519,1 +-0.610983,3.08872,-0.645053,-0.0846638,0.173483,-0.302048,-0.111041,-0.302128,-0.510641,-0.314307,-0.706593,-0.557919,-0.397804,-0.706278,-0.0333283,0.645544,-0.103708,-0.613871,-0.460216,0.640515,0.795232,-0.600578,1 +0.545913,0.198795,-0.743625,-0.334244,-0.400868,-0.409873,-0.448122,-0.408829,-0.955571,-0.847976,-1.01684,-0.962952,-0.769557,-1.01653,-0.327501,1.19302,-0.947142,-1.11893,0.892848,0.660718,0.715566,0.313555,1 +-0.3875,0.0701385,-0.757894,0.169042,0.173483,0.253924,0.19342,0.253843,0.799752,0.814609,1.00519,0.648032,0.479061,1.0052,-0.12784,-0.80912,0.379833,0.422528,0.243632,-0.79423,-0.761204,0.258994,1 +0.671402,0.000744135,-0.853319,0.453688,0.173483,0.590877,0.378271,0.589672,-0.248138,-0.262993,-0.191483,-0.172847,-0.281558,-0.191818,-0.166188,-0.70089,0.879536,0.267529,0.21946,-1.00766,-0.542112,0.0999382,1 +0.0485711,-0.0218372,-0.838774,0.148416,-0.113692,0.243816,0.182546,0.243734,-0.332988,-0.298913,-0.273231,-0.305917,-0.406066,-0.273239,-0.114974,-0.607799,1.15572,0.186533,-0.238298,-0.99695,-1.18107,-0.272568,1 +-0.218764,0.0109746,-0.820002,0.228859,0.173483,0.28088,0.280409,0.280799,-0.322912,-0.25273,-0.326416,-0.24354,-0.273887,-0.326097,-0.151096,-0.684396,1.33712,0.315292,0.0826647,-1.1817,-1.60886,0.179366,1 +-0.388587,0.00145458,-0.809042,-0.160982,-0.113692,-0.123463,-0.0639219,-0.12242,-0.0954094,-0.186021,-0.0811721,0.0142837,-0.0880103,-0.0815065,-0.170889,-0.837816,1.19946,0.364067,0.132127,-1.67069,-1.46429,0.0834822,1 +0.305855,0.0203416,-0.845851,0.0329072,-0.113692,0.125882,0.0230669,0.125801,-0.060409,-0.129575,-0.0191225,0.059195,-0.0632268,-0.0191278,-0.170394,-0.803471,0.833481,0.340918,-0.129205,-1.32861,-1.00753,-0.111149,1 +-0.850389,-0.760419,-0.163336,-0.375497,-0.113692,-0.393025,-0.553234,-0.394228,-1.02769,-0.945473,-1.0129,-1.01285,-0.942452,-1.01292,-0.188208,1.11981,-0.394399,-0.330926,-1.10587,-0.882066,-0.139272,-1.03968,1 +-0.825093,-0.770267,-0.244882,-0.726148,-0.688043,-0.723239,-0.759832,-0.722195,-1.03353,-0.986525,-1.07397,-0.997883,-0.888164,-1.07398,-0.494256,1.01294,-0.0691786,0.0133721,-0.190481,-0.366094,-0.713045,-0.254991,1 +-0.819995,-0.753752,-0.370292,-0.26824,-0.113692,-0.207701,-0.386505,-0.206658,-0.826705,-0.806925,-0.850391,-0.804931,-0.71645,-0.850078,-0.216413,0.46614,-0.301857,0.107452,-0.41359,-0.274326,0.412483,-0.406446,1 +-0.820792,-0.78476,-0.265424,-0.443565,-0.400868,-0.35933,-0.506115,-0.360533,-0.771553,-0.740216,-0.832662,-0.80909,-0.648,-0.832349,-0.363623,0.933404,-0.287801,0.307883,-0.392834,-0.113869,0.381181,-0.398568,1 +-0.849785,-0.785777,-0.678508,-0.569386,-0.400868,-0.544654,-0.632973,-0.54361,-0.938601,-0.904422,-0.919335,-0.903902,-0.881083,-0.919679,-0.391333,0.339608,-0.265183,0.0579905,0.22772,0.340488,0.351343,0.284704,1 +-0.85725,-0.802062,-0.149091,-0.600326,-0.400868,-0.548024,-0.629349,-0.548103,-1.02239,-0.940342,-1.06018,-0.970438,-0.888164,-1.05987,-0.49005,0.843476,-0.156237,0.0903023,-0.700543,-0.57307,-0.906478,-0.722705,1 +-1.15276,-0.921702,-0.533522,-0.0681626,0.460659,-0.133572,-0.0929181,-0.133652,1.03998,0.814609,1.09974,1.1013,0.733387,1.10008,0.135159,-1.09043,1.33997,0.469225,0.351379,1.12552,-0.0174715,0.405333,1 +-1.05764,-0.759567,-0.247479,-0.264114,-0.113692,-0.291939,-0.107416,-0.293143,0.613614,0.49646,0.652589,0.668824,0.535709,0.652921,0.0109584,-0.944238,1.49018,-0.206232,0.321753,1.14541,0.652998,0.241539,1 +-0.986436,-0.696905,-0.195504,-0.352808,-0.113692,-0.376178,-0.223401,-0.375134,1.01188,0.763294,0.806236,0.985698,1.15766,0.805912,-0.0511419,-0.649148,1.437,-0.179902,1.19746,0.881913,0.166343,0.586992,1 +-0.992089,-0.730504,-0.359631,-0.247613,-0.113692,-0.248136,-0.11829,-0.247092,1.224,0.994209,1.30953,1.29675,1.0184,1.30987,0.298204,-1.16115,1.22017,-0.171355,0.944318,0.930351,0.758978,0.752728,1 +-1.01449,-0.770518,-0.281003,-0.309493,-0.113692,-0.312157,-0.19803,-0.311113,1.41703,1.2046,1.4809,1.44895,1.20545,1.48124,0.0356996,-1.02129,1.37009,-0.301704,0.0456984,0.953215,0.0977717,0.0292874,1 +-0.919995,-0.714535,-0.149573,-0.497194,-0.400868,-0.50422,-0.408252,-0.505422,0.0292132,-0.078261,-0.0516247,0.0201056,0.213523,-0.0513021,-0.162725,-0.697049,1.21487,-0.398477,-0.166904,0.0786475,0.166719,-0.239312,1 +0.389933,0.783581,-0.845139,-0.10529,-0.400868,-0.332374,-0.274145,-0.332454,0.1602,-0.00642087,0.144373,0.146523,0.245387,0.14437,7.23204e-05,-0.756022,1.71823,-0.597118,0.814112,2.05308,1.52031,0.784242,1 +1.30114,0.619588,-0.563461,0.278362,-0.113692,0.328054,0.302156,0.329096,1.99083,1.4817,2.41263,1.84234,1.21313,2.41233,0.433785,-1.40947,1.0372,-0.9425,0.251384,0.748229,0.740093,0.279311,1 +1.0686,0.242482,0.743688,-0.507507,-0.688043,-0.50085,-0.469869,-0.50093,0.294898,0.0756821,0.481214,0.239672,0.0719025,0.481215,-0.187218,-0.719418,1.03652,-1.01858,0.0909347,1.00995,0.218658,0.0367442,1 +1.17362,0.376025,-0.691444,-0.519883,-0.688043,-0.477263,-0.484368,-0.47622,-0.516475,-0.524696,-0.442636,-0.508018,-0.532344,-0.442975,-0.117448,-0.722807,0.361419,-1.54453,-0.196546,-0.157751,0.232289,-0.194405,1 +1.16732,0.483597,1.09931,-0.75915,-0.975219,-0.777151,-0.767081,-0.776107,-0.163819,-0.278387,-0.0900364,-0.191144,-0.237302,-0.0897142,-0.355211,-0.27249,-0.0101551,-1.58469,-0.411175,-0.0706588,0.508718,-0.51903,1 +1.67026,0.729762,-0.659138,-0.557011,-0.688043,-0.544654,-0.567732,-0.545857,-0.230638,-0.293781,-0.184588,-0.257679,-0.29454,-0.184595,-0.24536,-0.343438,0.657229,-2.59899,0.208754,1.42349,1.19836,0.291939,1 +0.375582,-0.0584307,0.807105,1.95117,1.32219,1.7938,2.17966,1.79371,2.7428,2.76455,2.20383,3.02583,3.77645,2.20352,1.24826,-2.15262,0.606825,1.36277,2.18924,2.25701,2.69547,2.78499,1 +0.707691,0.21542,1.03433,1.74078,1.03501,1.74663,1.71935,1.74542,1.63287,1.72287,1.279,1.92384,2.33133,1.27901,0.883827,-1.69891,-0.197337,0.919385,1.29131,1.54936,1.98678,1.43735,1 +0.830909,0.209824,1.14099,2.26263,1.32219,2.24195,2.47325,2.24074,2.19924,2.25654,1.87881,2.32222,2.60572,1.87883,1.38162,-2.1664,0.52274,0.830148,2.11618,1.30503,2.33292,2.35348,1 +1.16944,4.02917,1.40008,2.07287,1.03501,1.98249,2.24128,1.98128,2.22681,2.82613,1.91919,2.06024,2.39093,1.91954,1.33709,-1.55837,-0.682195,1.04108,0.726377,0.428875,1.38032,0.705968,1 +0.7844,0.162377,0.760944,2.57822,1.60936,2.50814,2.93357,2.50805,1.5162,2.57469,1.1155,1.60198,2.27233,1.11518,2.09491,-2.11421,0.0893815,0.806475,1.10079,1.36376,1.50729,1.05344,1 +0.932334,0.298651,1.20558,5.12559,3.33241,4.95105,5.84769,4.95208,4.73942,5.23277,4.01903,5.1167,6.70917,4.0194,4.75731,-3.03789,1.22502,0.907567,2.98142,2.68546,1.82183,3.5599,1 +1.06034,0.393414,1.3362,4.31497,2.75806,4.16932,4.90894,4.17035,3.0297,3.77545,2.67659,3.13395,3.48731,2.67629,3.40941,-2.81013,0.823812,0.656897,2.60926,1.55521,2.09562,2.75379,1 +-0.794482,-0.628046,-0.415304,0.127789,0.460659,0.193273,-0.0457992,0.193192,-0.231699,-0.211678,-0.223,-0.323383,-0.207797,-0.223336,0.419188,-0.0826918,0.657402,-0.860637,0.751419,0.238517,-0.962113,-0.421337,1 +-0.848722,-0.750484,-0.631681,0.14429,0.460659,0.21012,-0.161784,0.210039,-0.153213,-0.237335,-0.0811721,-0.318392,-0.230221,-0.0815065,0.52607,-0.0140031,1.47337,-1.06199,1.32577,-0.609303,0.181045,0.45388,1 +-0.878439,-0.76243,-0.474953,0.051471,0.173483,0.0854478,-0.161784,0.0842438,0.0615621,-0.032078,0.091188,0.0134521,-0.00362826,0.091184,0.0361944,0.123148,1.24843,-1.19406,1.92686,-0.222962,0.150917,-0.00328055,1 +-0.770539,-0.598262,-0.494714,0.216483,0.460659,0.28425,-0.0204275,0.285292,-0.359503,-0.304044,-0.355963,-0.414868,-0.375971,-0.355973,0.174745,0.241094,1.08853,-1.70537,0.228669,0.0482179,0.83025,0.155287,1 +-0.876192,-0.687451,-0.3577,2.45652,3.04524,2.64966,1.35327,2.64957,1.02938,0.799214,1.02784,0.310366,0.299675,1.02785,2.04444,-0.635139,1.27005,-1.28873,2.05458,0.919645,1.52232,0.607565,1 +-0.678536,-0.468031,-0.431549,0.72802,1.03501,0.884026,0.396394,0.88282,-0.0630605,-0.0833924,-0.0654135,-0.172015,-0.148199,-0.0657476,0.332346,-0.0795285,1.31304,-1.6402,0.563471,0.642409,1.33353,0.478825,1 +-0.635385,-0.637796,-0.0953928,-0.0351602,0.173483,-0.0324857,-0.0965427,-0.0336894,0.140048,0.291202,-0.203302,-0.114628,0.411201,-0.203637,0.0441116,-0.504992,1.50478,-0.763231,0.170555,0.0921477,-0.728351,0.111922,1 +-0.966189,-0.794739,-0.903064,-0.0846638,0.173483,-0.106615,-0.103792,-0.107819,0.550507,0.635008,0.0123948,0.171473,1.0066,0.0120616,-0.101861,-0.327395,1.48741,-0.425186,0.45717,0.392283,-0.602679,0.426061,1 +-0.94,-0.670739,-0.195826,-0.00628315,0.173483,0.0719697,-0.0566728,0.073012,0.1602,0.219362,0.0764142,-0.0547466,0.308526,0.0767384,0.0804811,-0.564416,0.762605,-0.609479,0.368175,0.000211631,0.159561,0.352082,1 +-0.958555,-0.768671,-0.579109,0.0597216,0.460659,0.119143,-0.016803,0.117939,0.364368,0.445145,0.293096,0.126562,0.40294,0.293094,0.0549977,-0.662479,1.79539,0.0266907,0.141775,0.194707,0.070175,0.154998,1 +-1.01664,-0.715213,-0.431917,-0.212548,0.173483,-0.133572,-0.219777,-0.133652,-0.644279,-0.652982,-0.590373,-0.627781,-0.616726,-0.590057,-0.25971,-0.150703,0.562906,-0.813452,0.0617064,-0.498939,-1.33217,0.0647404,1 +-1.25527,-0.593223,-0.699027,0.58776,1.32219,0.547073,0.421765,0.548114,-0.0832123,-0.0526038,0.0123948,-0.195302,-0.197766,0.0120616,0.345707,-0.777035,1.66288,-0.786779,2.52706,2.04105,0.466553,1.78298,1 +1.98046,0.519808,-0.325992,-0.711709,-0.975219,-0.595197,-0.694591,-0.595276,-0.277305,-0.334833,-0.154056,-0.300927,-0.464484,-0.153734,-0.461351,0.495287,-0.275227,-1.62403,-1.03805,-0.650319,-0.383045,-0.964273,0 +2.00759,0.509381,2.59485,-0.65808,-0.975219,-0.531176,-0.672843,-0.531255,-0.916858,-0.853108,-0.857285,-0.865645,-0.900556,-0.856972,-0.482875,0.631083,-1.09357,-1.65153,-1.22331,-0.601809,-1.38303,-1.2755,0 +2.55801,0.741206,2.77974,-0.583825,-0.975219,-0.423351,-0.574981,-0.422307,-0.498975,-0.437461,-0.374677,-0.463938,-0.614365,-0.375015,-0.389601,-0.181432,-0.553652,-1.62717,-1.68182,-0.792467,-1.30632,-1.45324,0 +1.04712,0.224306,-0.586622,0.373244,-0.113692,0.536965,0.374647,0.536883,-0.421019,-0.478513,-0.28308,-0.429007,-0.571879,-0.283416,-0.283956,-0.591305,-1.21523,0.128614,-0.0480498,-0.74313,1.3078,-0.0407531,0 +2.07954,0.524967,2.37718,-0.216673,-0.688043,-0.0493334,-0.223401,-0.0482907,-0.505338,-0.36049,-0.384526,-0.496374,-0.627937,-0.384207,-0.375994,-0.195667,-1.21894,-1.29992,-1.3624,-1.83695,-0.301448,-1.17256,0 +2.19283,0.820896,2.82264,-0.352808,-0.688043,-0.174006,-0.39013,-0.174086,-0.569506,-0.519564,-0.475138,-0.554592,-0.680455,-0.474821,-0.355211,-0.0808842,0.233558,-1.28815,-1.48605,-0.664491,-0.748667,-1.22428,0 +-1.00704,-0.696577,-0.24378,-0.550823,-0.400868,-0.554763,-0.560483,-0.553719,-0.855342,-0.786399,-0.888802,-0.833209,-0.748314,-0.888818,-0.507122,1.02808,-0.82008,0.697576,-0.58625,-0.0914247,-0.492201,-0.512383,0 +-1.05073,-0.912739,-0.3719,-0.54876,-0.400868,-0.541284,-0.524237,-0.541364,-0.788523,-0.765873,-0.80016,-0.696812,-0.662752,-0.800503,-0.508359,1.05384,-1.24537,1.04921,-0.367976,-0.409268,-1.28742,-0.359519,0 +-0.978825,-0.881632,-0.446025,-0.563198,-0.400868,-0.537915,-0.513364,-0.536871,-0.794887,-0.765873,-0.806069,-0.734238,-0.743594,-0.805756,-0.496483,1.05316,-1.13797,0.878291,-0.237665,-0.411966,-1.38267,-0.298212,0 +-0.899362,-0.575342,-0.376863,-0.554948,-0.400868,-0.521067,-0.458996,-0.521147,-0.69678,-0.704296,-0.675076,-0.603662,-0.643279,-0.675089,-0.468773,0.804161,-1.06842,0.693637,-0.301009,0.0334228,-1.32937,-0.481957,0 +-0.938598,-0.808773,-0.176709,-0.598264,-0.400868,-0.57498,-0.527862,-0.575059,-0.778447,-0.745347,-0.743035,-0.71095,-0.752445,-0.743049,-0.515534,0.930693,-0.89035,0.779892,-0.259017,-0.34257,-1.06314,-0.249499,0 +-0.914245,-0.743969,-0.168989,-0.569386,-0.400868,-0.544654,-0.477119,-0.544733,-0.660719,-0.652982,-0.68197,-0.637761,-0.635608,-0.681655,-0.51207,0.961874,-1.32097,0.8158,-0.304982,-1.40583,-0.985131,-0.356446,0 +-0.060199,-0.0754268,0.310982,-0.635391,-0.688043,-0.659218,-0.66197,-0.658174,-0.796478,-0.771005,-0.825768,-0.75004,-0.695207,-0.825783,-0.473721,0.511782,-0.980603,0.503434,-0.73603,-0.342798,0.177474,-0.819454,1 +-0.1314,-0.423492,0.520787,-0.645704,-0.688043,-0.601936,-0.574981,-0.602015,-0.740795,-0.71969,-0.716442,-0.691821,-0.64859,-0.716128,-0.494009,0.570755,-0.923061,0.802535,-0.575661,-0.528157,-0.340317,-0.51316,1 +-0.147031,-0.449472,0.43005,-0.474505,-0.400868,-0.426721,-0.411877,-0.4268,-0.806554,-0.776136,-0.828723,-0.758357,-0.675734,-0.828738,-0.481144,0.406037,-0.962429,1.08881,-0.02459,0.172226,1.21025,-0.15337,1 +-0.091535,-0.367946,0.652814,-0.466254,-0.400868,-0.419981,-0.404628,-0.418938,-0.222684,-0.232204,-0.241713,-0.177837,-0.15351,-0.241393,-0.463577,0.281765,-1.40598,0.744923,-0.529302,-0.519057,-0.307211,-0.692933,1 +-0.139324,-0.393773,0.589902,-0.464191,-0.400868,-0.43346,-0.397379,-0.434662,-0.604506,-0.61193,-0.607117,-0.569563,-0.501069,-0.607457,-0.45665,0.221436,-0.865269,0.917054,-0.0180298,-0.123569,0.776802,-0.0981104,1 +-0.106563,-0.368208,0.653962,-0.590013,-0.688043,-0.527806,-0.531487,-0.529009,-0.437989,-0.43233,-0.405209,-0.371621,-0.43793,-0.405547,-0.467536,0.253521,-1.62551,0.70625,-0.543725,-1.40414,-0.451425,-0.556858,1 +-0.893998,-0.799854,-0.222158,-0.422938,-0.113692,-0.487372,-0.27052,-0.487452,-0.563142,-0.570879,-0.691819,-0.46976,-0.270936,-0.691833,-0.378468,0.269564,1.00998,-0.877082,0.0599214,-0.418848,-0.92633,0.10178,0 +-0.903131,0.223486,-0.386514,-0.187796,0.173483,-0.238027,0.00494423,-0.238107,-0.623597,-0.61193,-0.745005,-0.535464,-0.384823,-0.745347,-0.323047,0.0449698,1.59038,-1.1129,0.445358,-0.236702,-0.682902,0.508796,0 +-0.916709,-0.216566,-0.444416,-0.635391,-0.400868,-0.662588,-0.553234,-0.661543,-0.746098,-0.750479,-0.885848,-0.663544,-0.423178,-0.885863,-0.432403,0.522627,0.96188,-1.15238,0.0842158,-1.11016,-0.844224,0.0864893,0 +-0.910186,4.31652,-0.691536,-0.259989,-0.113692,-0.258244,-0.295892,-0.258324,-0.695189,-0.658113,-0.735156,-0.678514,-0.541195,-0.735169,-0.269112,0.468174,0.65314,-0.911616,-0.684936,-0.877641,-0.574427,-0.953698,0 +-0.915356,4.19912,-0.507305,-0.732336,-0.688043,-0.726609,-0.712713,-0.726687,-0.8861,-0.847976,-0.921305,-0.830714,-0.745954,-0.921649,-0.446506,0.70881,0.288137,-0.979746,-0.618801,-1.31735,-0.600166,-0.751045,0 +-0.958337,-0.851859,-0.681909,-0.608577,-0.400868,-0.622153,-0.58223,-0.621109,-0.947086,-0.904422,-0.994188,-0.887269,-0.774868,-0.993877,-0.440815,0.652774,0.546147,-1.06562,-0.940942,-0.920996,-1.22215,-0.940693,0 +1.14871,0.717029,-0.875354,0.148416,-0.400868,0.274141,0.186171,0.272937,-0.210486,-0.139838,-0.11072,-0.171183,-0.383642,-0.110398,0.48401,-0.568935,0.0956638,-0.620539,-1.14664,-0.79875,-0.171056,-1.03988,0 +0.482226,0.370232,-0.50696,-0.336307,-0.400868,-0.227918,-0.31039,-0.226875,0.591871,0.629877,0.757975,0.590645,0.198771,0.757979,0.0691002,-0.535269,-0.481968,-1.0879,-0.783511,-1.25361,0.72009,-0.815604,0 +1.33576,0.611117,-0.61663,-0.119729,-0.400868,0.00120957,-0.190781,0.00225211,-0.116622,-0.0987867,0.0370176,-0.108806,-0.312242,0.037013,-0.166931,-0.61887,-0.64326,-0.629882,-0.468652,-1.16548,1.05143,-0.417853,0 +0.494306,0.468897,-0.965907,1.52214,1.03501,0.988481,0.795092,0.989522,-0.351549,-0.134707,-0.293914,-0.35166,-0.43734,-0.293922,2.03627,-0.904471,-0.875188,-1.12795,-1.01155,-0.815979,0.778335,-0.830273,0 +1.07599,2.18442,-0.95173,0.243297,-0.113692,0.132621,0.164424,0.131417,-0.357912,-0.211678,-0.296868,-0.388254,-0.483957,-0.297205,1.17231,-0.647566,-0.455203,-1.33987,-0.972457,-0.228478,-0.635368,-0.923727,0 +1.45108,0.690469,-0.881213,-0.113541,-0.400868,-0.120093,-0.100167,-0.120174,-0.5764,-0.473381,-0.532263,-0.521325,-0.610825,-0.532275,0.473371,-0.152962,-0.343775,-0.971198,-0.0363777,-0.429747,0.453635,-0.643399,0 diff --git a/data/pima.arff b/data/pima.arff new file mode 100755 index 0000000..b3fa82d --- /dev/null +++ b/data/pima.arff @@ -0,0 +1,779 @@ +@relation pima +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'clase' {0,1} +@data +0.63953,0.847771,0.149543,0.906679,-0.692439,0.20388,0.468187,1.42507,1 +-0.844335,-1.12266,-0.160441,0.530556,-0.692439,-0.683976,-0.364823,-0.190548,0 +1.23308,1.94246,-0.263769,-1.28737,-0.692439,-1.10254,0.604004,-0.105515,1 +-0.844335,-0.997558,-0.160441,0.154433,0.123221,-0.493721,-0.920163,-1.04087,0 +-1.14111,0.503727,-1.50371,0.906679,0.765337,1.40883,5.48134,-0.0204831,1 +0.342757,-0.153085,0.252871,-1.28737,-0.692439,-0.810813,-0.817546,-0.27558,0 +-0.250789,-1.3416,-0.987066,0.718617,0.0711579,-0.125895,-0.675693,-0.615709,1 +1.82662,-0.184362,-3.57027,-1.28737,-0.692439,0.419502,-1.01976,-0.360612,0 +-0.547562,2.38033,0.0462151,1.53355,4.0193,-0.189314,-0.947326,1.68016,1 +1.23308,0.128406,1.38948,-1.28737,-0.692439,-4.05783,-0.723983,1.7652,1 +0.0459844,-0.340746,1.18282,-1.28737,-0.692439,0.711226,-0.847727,-0.27558,0 +1.82662,1.47331,0.252871,-1.28737,-0.692439,0.761961,0.196553,0.0645493,1 +1.82662,0.56628,0.562856,-1.28737,-0.692439,-0.620558,2.92496,2.02029,0 +-0.844335,2.13012,-0.470426,0.154433,6.64851,-0.240048,-0.22297,2.19036,1 +0.342757,1.41075,0.149543,-0.0963163,0.826078,-0.785445,0.347461,1.5101,1 +0.936304,-0.653513,-3.57027,-1.28737,-0.692439,-0.252732,0.0365912,-0.105515,1 +-1.14111,-0.0905316,0.769512,1.65893,1.30333,1.75129,0.238807,-0.190548,1 +0.936304,-0.434576,0.252871,-1.28737,-0.692439,-0.303466,-0.657584,-0.190548,1 +-0.844335,-0.559683,-2.02035,1.09474,0.0277717,1.43419,-0.871873,-0.0204831,0 +-0.844335,-0.184362,0.0462151,0.593243,0.140576,0.330716,0.172408,-0.105515,1 +-0.250789,0.159683,0.976169,1.2828,1.34671,0.926848,0.700585,-0.530677,0 +1.23308,-0.68479,0.769512,-1.28737,-0.692439,0.432186,-0.253151,1.42507,0 +0.936304,2.34906,1.0795,-1.28737,-0.692439,0.990267,-0.0630078,0.659776,1 +1.52985,-0.0592548,0.562856,0.906679,-0.692439,-0.379568,-0.63042,-0.360612,1 +2.1234,0.691388,1.28615,0.781305,0.574438,0.58439,-0.657584,1.5101,1 +1.82662,0.128406,0.0462151,0.342494,0.305443,-0.113212,-0.805473,0.659776,1 +0.936304,0.816495,0.3562,-1.28737,-0.692439,0.939532,-0.648529,0.82984,1 +-0.844335,-0.747344,-0.160441,-0.347065,0.522374,-1.11522,0.0456456,-0.955839,0 +2.71694,0.753941,0.666184,-0.0963163,0.262057,-1.24206,-0.684747,2.02029,0 +0.342757,-0.121808,1.18282,-1.28737,-0.692439,0.267298,-0.407077,0.404679,0 +0.342757,-0.372022,0.304536,0.342494,-0.692439,0.508288,0.223717,2.27539,0 +-0.250789,1.16054,0.3562,0.969366,1.43348,-0.0497933,1.14425,-0.445645,1 +-0.250789,-1.02883,-0.573754,-0.597814,-0.223868,-0.912282,-0.618348,-0.955839,0 +0.63953,-0.903727,1.18282,-1.28737,-0.692439,-1.53378,-0.856782,-0.445645,0 +1.82662,0.0345755,0.459528,0.65593,-0.692439,-0.55714,0.121099,0.999905,0 +0.0459844,-0.559683,-0.470426,0.781305,0.973591,-1.01375,1.49134,-0.0204831,0 +2.1234,0.535004,0.3562,-1.28737,-0.692439,0.153145,-0.156571,0.149582,0 +1.52985,-0.59096,0.3562,1.03205,-0.692439,0.115094,0.582877,1.08494,1 +-0.547562,-0.966281,-0.057113,1.34549,-0.692439,0.787328,0.093936,-0.530677,1 +0.0459844,-0.309469,0.149543,1.65893,1.10375,0.647808,2.77104,1.93526,1 +-0.250789,1.84863,-0.263769,0.279807,-0.0850324,0.254615,-0.606275,-0.615709,0 +0.936304,0.37862,0.769512,-1.28737,-0.692439,1.041,0.676439,0.319646,0 +0.936304,-0.465853,1.18282,-0.159003,-0.692439,-1.17864,-0.714929,1.255,0 +1.52985,1.56714,2.11278,0.21712,1.3901,1.70055,0.751893,1.7652,1 +0.936304,1.19182,-0.263769,-1.28737,-0.692439,-0.582507,-0.536858,0.574743,0 +-1.14111,1.84863,-0.160441,1.15743,-0.692439,1.26931,4.28917,-0.700742,1 +-0.844335,0.785218,-0.677082,-1.28737,-0.692439,-0.290783,0.278043,-0.360612,0 +-0.547562,-1.56054,0.0462151,0.405181,-0.692439,-0.506405,0.344443,-0.955839,0 +0.936304,-0.559683,-0.160441,0.718617,-0.692439,0.901481,-0.38595,-0.190548,1 +0.936304,-0.497129,-3.57027,-1.28737,-0.692439,-4.05783,-0.503658,-0.785774,0 +-0.844335,-0.559683,0.562856,-0.597814,0.0190944,-1.5972,0.0577182,-0.955839,0 +-0.844335,-0.622237,-0.987066,-0.347065,-0.380059,-0.988384,0.163354,-0.615709,0 +0.342757,-1.02883,-0.160441,0.0290581,-0.492863,-0.963017,-0.391986,-0.27558,0 +1.23308,1.72352,1.0795,0.843992,1.91073,0.216564,-0.0147174,2.10533,1 +0.936304,0.910325,-0.160441,1.34549,2.27518,0.3434,0.742839,0.744808,0 +-0.844335,-1.49799,-0.987066,-0.660501,-0.692439,-1.14059,-0.675693,-1.04087,0 +0.936304,2.06757,-0.057113,1.15743,1.94544,0.72391,-0.657584,0.659776,1 +-1.14111,-0.653513,0.976169,2.47386,0.262057,1.87812,1.47927,-0.190548,0 +-1.14111,0.785218,0.666184,-1.28737,-0.692439,1.07905,3.95113,0.914873,0 +-1.14111,-0.497129,-0.263769,1.2828,0.539729,1.20589,-0.902054,-0.955839,0 +-0.547562,-1.15394,-3.57027,-1.28737,-0.692439,-4.05783,-0.506676,-1.04087,0 +1.23308,0.37862,0.149543,-1.28737,-0.692439,0.115094,-0.609293,0.489711,1 +0.342757,-2.40501,-0.367098,-1.28737,-0.692439,-0.886915,0.347461,0.234614,0 +-0.547562,0.628834,-0.573754,0.843992,0.418248,-0.83618,0.685494,-0.785774,0 +0.936304,-0.215639,-0.160441,-1.28737,-0.692439,0.102411,-0.645511,0.744808,1 +0.342757,-0.68479,0.252871,0.405181,-0.692439,-0.379568,-0.811509,-0.105515,0 +-1.14111,-0.372022,0.976169,0.593243,-0.692439,0.0643597,1.15633,0.404679,1 +-0.547562,-0.372022,1.18282,-1.28737,-0.692439,1.35809,1.12614,1.7652,0 +-0.844335,-0.809897,-0.160441,-0.47244,-0.362704,-1.57183,-0.416132,-0.700742,0 +0.0459844,0.785218,0.821176,0.405181,0.175285,-0.392252,-0.853764,-0.530677,0 +-0.547562,-0.653513,-0.160441,-0.0336291,0.0885124,0.115094,1.19254,-0.445645,1 +0.342757,0.56628,-0.263769,0.906679,0.522374,-0.430303,-0.183734,-0.615709,0 +2.71694,0.159683,1.0795,-1.28737,-0.692439,1.44688,0.335388,0.744808,1 +0.0459844,0.253513,0.87284,-0.0336291,1.65042,0.394135,-0.727001,-0.870806,0 +-0.844335,-1.31033,0.304536,0.593243,-0.692439,0.000941365,-0.229006,-0.955839,0 +-0.844335,-3.78119,-1.09039,-0.0336291,-0.692439,-0.924966,-1.00165,-0.955839,0 +0.936304,-1.84203,0.459528,-1.28737,-0.692439,0.0770433,-0.244097,0.659776,0 +0.342757,-0.809897,0.149543,0.781305,-0.692439,0.72391,-0.307478,-0.530677,0 +-1.14111,0.316066,-3.57027,-1.28737,-0.692439,1.42151,-0.609293,-0.615709,1 +-0.547562,-0.278192,-0.160441,0.0917453,-0.692439,-0.886915,-0.497622,-0.785774,0 +-0.250789,-0.246915,-1.29705,-0.47244,-0.692439,-1.21669,-1.00165,-0.955839,0 +-0.547562,-1.46671,-3.57027,-1.28737,-0.692439,-4.05783,-1.11634,-0.955839,0 +0.936304,-1.18522,0.459528,0.342494,-0.0763552,-0.341517,0.890728,0.234614,0 +-1.14111,-0.622237,-0.212105,0.467869,-0.692439,-0.937649,-0.708892,-0.955839,0 +0.342757,0.503727,2.00945,-1.28737,-0.692439,2.1318,-0.739074,0.319646,1 +-0.547562,-0.340746,0.252871,0.530556,0.392216,0.051676,0.682476,-0.530677,0 +2.71694,-0.465853,0.149543,2.09774,-0.692439,0.58439,-0.886963,0.999905,0 +-0.547562,-0.653513,-0.057113,0.279807,-0.0763552,0.825379,-0.446313,-0.615709,0 +3.31049,0.47245,0.0462151,0.718617,0.262057,0.647808,-0.962417,0.82984,1 +-0.844335,-0.434576,-0.057113,-0.0963163,-0.692439,-0.69666,-0.926199,-0.785774,0 +-0.844335,-1.27905,-0.728746,-1.28737,-0.692439,-1.63525,-0.645511,-1.04087,0 +0.0459844,0.0658522,0.562856,-0.347065,0.834755,0.000941365,-0.0871531,0.0645493,0 +0.936304,-1.24777,0.459528,1.22012,-0.275932,1.86544,-0.636457,0.744808,0 +0.0459844,0.409897,0.149543,-1.28737,-0.692439,-1.03912,-0.588166,2.27539,1 +-0.547562,0.660111,0.666184,-0.159003,-0.137096,-0.924966,0.872619,-1.04087,0 +0.63953,0.722664,0.149543,0.405181,1.28597,0.241931,-0.654566,0.574743,0 +-0.547562,-0.903727,-0.367098,0.467869,-0.692439,-0.0497933,-1.03183,-0.785774,0 +-0.844335,-1.56054,-1.09039,-0.159003,-0.032969,-1.47036,-0.449331,-0.955839,0 +0.63953,-0.872451,-0.987066,0.593243,-0.137096,-0.417619,-0.349732,-0.870806,0 +-0.844335,0.0345755,1.0795,1.90967,1.21655,2.24595,-0.443295,-0.190548,1 +-0.844335,1.31692,0.149543,-1.28737,-0.692439,0.888797,2.26399,-0.0204831,1 +-0.844335,0.941602,-0.470426,-1.28737,-0.692439,-0.747395,-0.883945,-0.955839,0 +-1.14111,0.128406,1.38948,-1.28737,-0.692439,-1.20401,-0.633439,-1.04087,0 +-0.844335,-1.24777,0.149543,-0.159003,-0.34535,-0.683976,-0.570057,-0.785774,0 +-0.547562,-1.12266,-0.212105,-1.28737,-0.692439,0.964899,1.38269,-0.530677,0 +-0.844335,0.159683,-0.677082,0.530556,0.626501,-0.417619,0.993345,-1.04087,0 +-0.844335,-0.77862,2.73275,-1.28737,-0.692439,-1.21669,-0.799437,-0.530677,0 +0.0459844,0.722664,-0.573754,0.467869,0.522374,-0.31615,-0.557985,0.319646,0 +-0.250789,-1.18522,-0.573754,0.65593,-0.536249,0.292666,-0.410095,-0.700742,0 +-1.14111,-0.809897,0.821176,0.279807,-0.380059,0.685859,-0.678711,-0.785774,1 +-0.250789,1.56714,0.149543,0.781305,0.478988,0.165829,-0.823582,-0.785774,1 +1.23308,1.06671,-0.367098,0.342494,3.6028,0.254615,0.214662,1.08494,1 +-0.844335,-0.997558,0.3562,0.843992,-0.371381,-0.100528,-0.844709,-0.870806,0 +0.0459844,-1.40416,-0.367098,-1.28737,-0.692439,0.254615,-0.244097,-0.700742,0 +0.936304,1.22309,-0.78041,0.718617,0.826078,-0.189314,0.350479,0.489711,1 +0.0459844,0.785218,1.18282,-1.28737,-0.692439,-0.100528,0.20259,2.36042,1 +0.342757,0.097129,0.252871,-1.28737,-0.692439,0.254615,-0.760201,0.404679,1 +0.342757,-1.3416,-1.09039,-1.28737,-0.692439,0.216564,0.549677,-0.700742,0 +0.0459844,-0.747344,-0.470426,0.154433,-0.692439,-0.481038,-0.0871531,-0.955839,0 +0.0459844,-0.68479,0.3562,-0.347065,-0.2499,-1.11522,-0.751146,-1.04087,0 +-1.14111,1.28565,0.3562,2.22311,0.175285,2.68988,0.866583,-0.700742,1 +0.63953,-0.309469,-0.263769,1.15743,-0.692439,0.279982,-0.639475,-0.785774,0 +-0.547562,-0.434576,0.252871,0.593243,0.175285,0.20388,-0.204861,-0.870806,0 +0.342757,0.347343,0.562856,-1.28737,-0.692439,-0.658609,-0.862818,3.04068,0 +-1.14111,-0.246915,0.3562,-1.28737,-0.692439,0.165829,-0.585148,-0.870806,1 +-0.844335,-1.02883,-2.02035,1.34549,0.166608,2.91818,0.072809,-0.615709,1 +-0.250789,-0.027978,0.0462151,0.593243,0.478988,1.38346,-0.0599897,-0.27558,0 +-0.844335,-0.0905316,-0.573754,0.969366,0.123221,0.165829,-0.636457,-0.870806,0 +-0.844335,-0.121808,0.976169,0.21712,0.565761,0.318033,-0.207879,0.574743,1 +-1.14111,-0.497129,0.769512,-1.28737,-0.692439,-0.519089,0.812256,2.44545,1 +0.0459844,1.62969,0.0462151,-0.409752,0.765337,-0.290783,-0.334642,-0.0204831,1 +1.52985,0.0345755,-0.677082,-1.28737,-0.692439,0.165829,1.93803,-0.0204831,1 +-0.250789,1.53586,-0.263769,1.03205,1.25994,0.318033,-0.349732,-0.27558,1 +1.23308,-1.15394,0.252871,0.65593,-0.692439,0.800012,-0.0448989,0.489711,0 +-0.547562,-0.77862,-0.057113,-0.47244,-0.267255,-1.38158,0.52855,-0.615709,0 +-0.547562,0.128406,-0.470426,-0.0336291,0.522374,0.229247,-1.1586,-0.190548,0 +-1.14111,-0.653513,0.0462151,0.342494,-0.258577,-0.151263,0.377642,-1.04087,0 +-1.14111,-0.872451,-0.470426,0.279807,0.105867,-0.417619,0.181462,-0.955839,0 +-1.14111,0.253513,0.562856,-1.28737,-0.692439,-0.100528,0.697566,-0.360612,0 +0.342757,-0.497129,0.149543,0.530556,2.12766,0.622441,-0.944308,-0.445645,0 +-0.250789,0.222236,0.459528,-1.28737,-0.692439,-1.38158,-0.61533,1.85023,0 +0.342757,-0.465853,0.666184,0.593243,-0.692439,0.952216,-0.561003,0.404679,0 +-0.547562,-0.403299,-0.883738,0.342494,-0.145773,0.0643597,-0.464422,-0.955839,0 +1.82662,-0.403299,-0.160441,-1.28737,-0.692439,0.051676,-0.603257,0.744808,1 +0.0459844,1.03543,-0.367098,0.65593,1.7719,0.102411,-0.708892,-0.870806,0 +-1.14111,-0.59096,0.304536,0.154433,-0.692439,-4.05783,0.302189,-1.04087,0 +1.52985,-1.99841,0.562856,1.03205,-0.692439,0.102411,-1.13445,0.659776,0 +-0.547562,-0.465853,-0.263769,0.906679,0.340152,-0.189314,2.80122,0.0645493,0 +0.342757,0.816495,0.459528,-1.28737,-0.692439,0.216564,-0.766237,2.70055,0 +-0.547562,-0.966281,0.0462151,-0.221691,-0.692439,-0.595191,-1.16765,-0.955839,0 +-0.844335,0.47245,0.252871,1.84699,1.07772,0.685859,-0.219952,-0.785774,0 +0.0459844,-0.215639,-0.212105,-1.28737,-0.692439,-1.28011,-0.120353,0.319646,0 +1.52985,1.09799,0.87284,0.467869,0.652533,0.292666,2.16439,0.744808,1 +-0.844335,1.00416,0.666184,1.34549,3.51602,1.09174,0.649276,-0.870806,0 +1.23308,2.09884,0.459528,-1.28737,-0.692439,2.01764,-1.01071,0.82984,1 +0.936304,0.972878,0.976169,1.47086,-0.692439,2.284,-0.407077,0.234614,1 +-0.547562,-0.68479,-0.883738,-0.347065,0.123221,-0.937649,0.498368,-1.04087,0 +-0.844335,-0.372022,-0.677082,0.0290581,0.478988,-0.861547,1.08993,-0.870806,0 +-0.547562,-1.02883,0.252871,-0.0963163,-0.232546,-0.379568,-0.733038,-0.955839,0 +3.90403,1.31692,0.149543,1.2828,0.296766,1.12979,1.04164,1.16997,1 +0.0459844,0.941602,1.0795,1.09474,-0.692439,-0.290783,-0.536858,0.234614,0 +0.936304,-0.59096,0.252871,1.22012,0.218671,0.660492,-0.808491,0.999905,0 +-1.14111,-0.215639,0.562856,0.843992,1.78057,1.54835,-0.920163,-0.530677,0 +-0.547562,-0.653513,-0.263769,0.154433,-0.692439,-0.290783,-0.313514,-1.04087,0 +-1.14111,0.316066,0.976169,-1.28737,-0.692439,-0.0497933,0.818292,-0.105515,1 +0.63953,-0.528406,0.252871,-0.159003,0.66121,-0.265415,0.754911,0.659776,1 +-0.250789,0.847771,-0.160441,0.279807,-0.692439,0.0643597,-0.651547,-0.955839,0 +0.0459844,-0.027978,-0.057113,-1.28737,-0.692439,-0.303466,0.715675,0.0645493,0 +0.0459844,-0.340746,-0.160441,-1.28737,-0.692439,-0.0117423,-0.00264481,-0.360612,0 +-0.250789,-0.309469,1.0795,-0.535127,-0.0156145,-0.45567,0.0697908,-0.360612,0 +0.63953,-0.59096,0.666184,-1.28737,-0.692439,-0.151263,-0.880927,0.234614,1 +0.63953,0.409897,0.0462151,0.154433,0.435602,0.432186,0.211644,-0.360612,1 +-0.547562,-1.06011,-3.57027,0.154433,-0.692439,-0.392252,0.908837,-0.700742,0 +-0.844335,-1.31033,-0.470426,1.34549,-0.275932,1.45956,0.622113,-0.870806,0 +-0.547562,-1.43543,-0.263769,0.21712,-0.215191,-0.290783,-0.307478,-0.0204831,0 +1.23308,1.81735,0.149543,1.34549,0.435602,0.089727,0.745857,0.234614,1 +0.63953,-1.12266,0.459528,-1.28737,-0.692439,-0.100528,-0.27126,0.744808,0 +-1.14111,0.253513,2.11278,1.59624,0.435602,4.45291,-0.461404,-0.615709,1 +0.342757,0.691388,0.459528,-1.28737,-0.692439,1.64982,-0.850745,1.16997,0 +0.342757,0.28479,0.666184,-1.28737,-0.692439,0.901481,1.46116,0.319646,1 +0.63953,-1.06011,0.562856,-1.28737,-0.692439,-1.11522,-1.17067,-0.105515,0 +-1.14111,-0.0592548,-0.263769,-0.159003,0.105867,0.368767,0.763966,-0.870806,0 +-0.844335,-3.78119,0.252871,-0.0336291,-0.492863,-0.544456,-0.521767,-1.04087,0 +0.342757,-1.49799,-0.470426,-1.28737,-0.692439,-0.658609,-0.61533,-0.530677,0 +0.0459844,0.628834,0.252871,-1.28737,-0.692439,-0.55714,-0.687765,0.574743,0 +0.936304,2.2865,-0.057113,0.467869,-0.692439,0.495604,0.824329,0.659776,1 +1.23308,1.8799,-0.057113,0.969366,3.6028,-0.240048,0.431969,2.27539,1 +-0.844335,0.222236,1.49281,1.2828,-0.189159,0.000941365,2.56278,-0.0204831,1 +1.23308,-0.372022,0.3562,1.15743,0.296766,-0.519089,0.507423,-0.190548,1 +0.342757,0.56628,0.562856,0.906679,0.695919,-0.0497933,-0.334642,-0.700742,1 +-0.250789,-0.309469,-0.367098,-1.28737,-0.692439,-1.19132,-0.995617,-1.04087,0 +1.52985,0.0658522,0.0462151,1.47086,0.123221,0.140462,-0.295406,0.574743,0 +0.936304,1.19182,-0.160441,-1.28737,-0.692439,-0.201997,-0.268242,0.234614,1 +2.1234,0.441173,-3.57027,-1.28737,-0.692439,2.57572,0.320297,0.574743,1 +1.23308,-1.12266,-0.728746,-0.0336291,-0.692439,-0.963017,-1.01373,0.744808,0 +0.342757,1.16054,0.769512,1.2828,1.12978,0.939532,-0.232024,-0.360612,1 +-0.844335,-0.497129,-0.573754,-1.28737,-0.692439,-0.9757,-0.8598,-1.04087,0 +-0.250789,-0.434576,-0.367098,-0.47244,-0.275932,-1.15327,0.622113,-0.870806,1 +0.0459844,-0.372022,-0.263769,1.47086,0.166608,0.356084,1.30723,-0.615709,1 +0.0459844,0.847771,-0.470426,0.405181,2.06692,-0.138579,-0.971472,-0.360612,1 +-1.14111,-0.246915,0.562856,-0.284378,-0.692439,-0.125895,1.21367,-1.04087,0 +-0.844335,0.535004,0.666184,-1.28737,-0.692439,1.02832,-0.71191,-0.445645,0 +-1.14111,-0.403299,-0.057113,-0.0336291,-0.692439,-0.595191,0.951091,-0.105515,0 +-0.547562,-0.68479,0.0462151,-0.284378,-0.310641,-1.47036,-0.714929,-0.530677,0 +0.63953,-0.559683,0.149543,0.718617,0.956236,0.72391,-0.446313,1.85023,0 +0.342757,-0.309469,0.149543,0.467869,-0.692439,-1.02644,-0.195807,-0.530677,0 +1.23308,2.34906,0.3562,0.530556,1.73719,0.698543,0.401788,2.02029,1 +0.342757,1.28565,1.80279,-1.28737,-0.692439,0.72391,-0.968453,1.59513,1 +-0.844335,-0.77862,-0.263769,0.405181,0.0624807,0.153145,-0.551948,-1.04087,0 +0.936304,1.97373,0.769512,0.781305,-0.692439,0.444869,-0.35275,0.659776,1 +-0.547562,-1.24777,-0.470426,0.0917453,-0.692439,-0.544456,-0.54893,-0.700742,0 +-1.14111,0.816495,0.821176,2.09774,-0.692439,1.37078,-0.292387,-0.785774,0 +0.936304,1.81735,1.33782,0.65593,-0.692439,0.279982,-0.929217,2.27539,0 +-1.14111,0.597557,-0.212105,0.342494,0.435602,1.34541,-0.123371,-0.785774,1 +1.52985,-0.278192,0.666184,0.718617,0.826078,0.279982,-0.639475,0.234614,1 +2.42017,0.941602,0.0462151,1.22012,1.65909,1.24394,0.815274,0.404679,1 +0.342757,-0.372022,-0.367098,1.2828,0.426925,0.48292,0.127136,-0.700742,1 +0.63953,0.128406,-0.057113,0.593243,0.34883,-0.252732,-0.0237719,-0.105515,0 +0.342757,-1.12266,0.252871,0.0917453,-0.692439,-0.379568,2.27002,-0.105515,1 +0.342757,-0.278192,-0.160441,-1.28737,-0.692439,0.736594,-0.636457,0.659776,1 +-1.14111,1.7548,-0.470426,0.530556,3.45528,0.330716,1.81126,-1.04087,1 +-0.547562,1.16054,1.0795,-1.28737,-0.692439,-0.0497933,1.00542,2.78558,1 +0.936304,-0.0592548,-3.57027,-1.28737,-0.692439,-0.861547,-0.793401,0.319646,0 +0.936304,0.660111,-0.470426,0.781305,0.956236,-0.404936,0.649276,2.36042,0 +-0.844335,-0.653513,-0.160441,-0.347065,-0.206514,-1.06449,0.585895,-0.615709,0 +-0.844335,-1.06011,0.459528,0.405181,-0.414768,0.330716,-1.11936,-0.955839,0 +-1.14111,-0.622237,0.3562,-1.28737,-0.692439,0.470237,-0.8266,-0.615709,0 +-0.250789,1.28565,-0.883738,1.09474,-0.692439,0.660492,0.543641,-0.785774,1 +0.0459844,2.38033,0.0462151,1.15743,5.76343,0.597073,5.60508,-0.190548,0 +-1.14111,-0.121808,0.562856,0.65593,-0.232546,1.67518,-1.15558,-0.785774,0 +0.0459844,0.660111,0.87284,-1.28737,-0.692439,1.52298,0.522514,-0.955839,1 +0.63953,0.409897,0.562856,1.03205,2.51814,1.80202,-0.705874,1.08494,1 +-0.844335,-1.31033,0.562856,0.279807,-0.371381,-0.83618,0.335388,-0.955839,0 +0.0459844,0.0345755,-0.057113,-1.28737,-0.692439,0.381451,-0.235043,-0.360612,0 +-0.250789,-1.46671,-0.057113,0.467869,-0.301963,-0.290783,-0.539876,-0.870806,0 +0.0459844,1.56714,0.149543,-1.28737,-0.692439,1.47225,0.0215004,-0.615709,1 +0.936304,1.8799,0.769512,0.0290581,0.973591,0.495604,0.344443,1.5101,1 +-1.14111,1.81735,1.0795,0.405181,-0.692439,1.53566,0.646258,-0.870806,1 +1.52985,1.3482,0.769512,0.0290581,-0.692439,-0.151263,1.08389,-0.105515,1 +-1.14111,-0.528406,0.3562,-1.28737,-0.692439,-1.72404,0.33237,-0.530677,0 +-0.844335,-0.935004,-0.263769,0.21712,-0.692439,-0.354201,-0.844709,-1.04087,0 +0.0459844,-0.935004,0.0462151,0.718617,0.0711579,0.140462,-0.0780986,-0.955839,0 +-0.250789,0.56628,-0.78041,-1.28737,-0.692439,-0.810813,-0.210897,-0.955839,1 +0.63953,-0.0592548,-0.987066,0.0917453,0.834755,-0.620558,2.55373,-0.0204831,1 +-0.547562,0.785218,0.3562,0.906679,0.990945,0.787328,-0.431222,-0.360612,0 +1.52985,1.97373,0.821176,-0.347065,-0.692439,-0.252732,2.23682,1.34003,1 +1.82662,0.0345755,-0.057113,-1.28737,-0.692439,-0.100528,-0.645511,0.659776,0 +-1.14111,1.37948,1.0795,0.781305,5.20808,2.57572,-0.135443,-0.870806,0 +1.52985,0.097129,0.0462151,0.781305,2.79581,0.432186,-0.573076,0.0645493,0 +-0.844335,-0.309469,0.87284,-0.0963163,-0.692439,-0.240048,-0.992599,-0.870806,0 +1.52985,-0.465853,-0.883738,-1.28737,-0.692439,-0.100528,-0.277297,0.744808,0 +-0.547562,0.253513,0.769512,-1.28737,-0.692439,-0.506405,-0.567039,-0.530677,0 +-0.547562,-0.966281,0.562856,-0.409752,-0.215191,-0.963017,-0.672675,-0.785774,0 +-1.14111,-1.09139,-0.057113,0.718617,-0.692439,0.48292,-0.705874,-0.700742,0 +2.42017,-0.903727,-0.367098,-0.848563,1.54629,-0.55714,1.37061,0.914873,1 +-0.844335,-0.246915,-0.263769,0.906679,-0.692439,0.20388,0.214662,-1.04087,1 +-0.250789,-0.309469,-0.677082,1.15743,-0.692439,-0.240048,0.256916,-0.27558,0 +-0.547562,-0.215639,-0.057113,0.0917453,-0.692439,-0.417619,-1.14652,-0.700742,0 +-0.844335,2.25523,-0.987066,-0.284378,2.56153,-0.772762,0.552695,-0.785774,0 +2.1234,1.06671,0.3562,0.467869,0.609147,0.165829,2.65937,1.5101,1 +-0.250789,2.19267,-0.057113,-0.347065,0.435602,-0.138579,-0.521767,0.0645493,0 +-0.250789,0.628834,-3.57027,-1.28737,-0.692439,-0.252732,0.872619,-0.530677,1 +0.0459844,-0.809897,0.0462151,0.718617,-0.692439,0.013625,0.422915,-0.785774,0 +-0.250789,0.660111,0.562856,-0.347065,-0.692439,0.051676,-0.820564,2.53049,0 +0.0459844,0.0658522,-0.367098,-1.28737,-0.692439,0.000941365,-0.742092,0.149582,1 +0.342757,-0.77862,0.252871,-0.159003,-0.111064,0.20388,1.5849,0.82984,0 +-1.14111,0.535004,-3.57027,-1.28737,-0.692439,0.546339,1.39174,-0.700742,1 +-0.547562,0.222236,-0.263769,1.34549,-0.692439,1.01563,1.89879,-0.785774,0 +-1.14111,-0.59096,-0.883738,-1.28737,-0.692439,-0.874231,-1.18878,-1.04087,0 +-0.547562,0.785218,-3.57027,-1.28737,-0.692439,-0.569823,-0.699838,-0.445645,1 +1.82662,-0.622237,0.87284,1.03205,-0.692439,1.72592,2.00443,0.404679,1 +-0.547562,-0.403299,-0.367098,0.718617,-0.206514,-0.861547,-1.03787,-1.04087,0 +-0.250789,0.0345755,0.459528,-1.28737,-0.692439,-1.14059,-0.657584,0.574743,0 +-0.844335,-1.56054,0.459528,1.84699,-0.301963,0.153145,-0.150534,-1.04087,0 +2.71694,-0.465853,0.0462151,-1.28737,-0.692439,0.279982,-0.666638,1.59513,0 +-0.547562,-0.653513,0.0462151,1.97236,-0.197837,1.07905,0.619094,-0.700742,0 +0.936304,-0.465853,-0.470426,0.21712,-0.692439,-0.69666,-0.530821,-0.360612,1 +-1.14111,-0.528406,-0.263769,0.154433,0.314121,-0.531772,-0.0539534,-0.870806,0 +0.342757,-0.215639,0.252871,-1.28737,-0.692439,-0.899598,0.821311,2.02029,0 +-0.547562,-0.403299,-0.367098,-0.660501,1.71983,-0.848864,1.2348,-0.955839,0 +-1.14111,0.785218,0.0462151,-1.28737,-0.692439,0.749277,-0.416132,-0.445645,1 +1.82662,0.253513,0.3562,0.467869,0.366184,0.495604,-0.579112,0.489711,0 +0.936304,0.37862,0.976169,-0.347065,0.652533,0.051676,-0.633439,0.319646,0 +0.936304,1.25437,0.87284,-1.28737,-0.692439,-0.201997,-0.926199,1.16997,1 +-0.547562,-0.403299,0.562856,-1.28737,-0.692439,-0.633242,-0.642493,1.59513,1 +0.936304,0.47245,0.252871,0.342494,0.478988,-0.760078,0.52855,1.5101,0 +0.342757,1.06671,0.769512,1.47086,4.03666,0.850747,0.444042,0.0645493,0 +-0.844335,-0.0592548,0.87284,1.15743,1.21655,1.72592,1.01447,-0.360612,1 +0.0459844,-0.77862,-0.677082,-0.221691,-0.267255,-1.41963,-0.398023,-0.615709,0 +0.342757,-0.403299,0.149543,1.40818,-0.0416462,0.520971,-0.63042,-0.0204831,0 +-1.14111,-1.3416,0.976169,0.530556,-0.34535,0.622441,-0.114316,-1.04087,0 +-1.14111,-0.434576,-0.367098,0.593243,-0.0503235,0.58439,0.860547,-0.700742,1 +-0.547562,0.222236,0.459528,1.03205,0.886819,1.43419,2.27002,-0.190548,1 +-0.844335,0.222236,-1.09039,1.53355,0.990945,1.07905,0.425933,-0.785774,1 +-1.14111,1.25437,-0.987066,-1.28737,-0.692439,-1.28011,-0.657584,2.70055,0 +0.63953,0.941602,-0.367098,0.65593,0.34883,0.444869,0.664367,-0.445645,0 +-0.547562,0.785218,0.0462151,1.09474,2.43137,-0.506405,-0.407077,-0.360612,1 +-1.14111,0.159683,0.769512,0.530556,1.17317,-0.163946,0.145245,-0.785774,0 +3.01371,-0.653513,0.459528,0.279807,0.904173,0.58439,-0.180716,1.08494,1 +1.23308,-0.278192,0.149543,-1.28737,-0.692439,-1.06449,1.11105,2.10533,0 +-1.14111,1.44203,-3.57027,-1.28737,-0.692439,0.0389923,1.10804,-0.27558,1 +-0.547562,0.722664,-0.573754,0.781305,0.478988,-0.0497933,-0.150534,-0.700742,1 +0.342757,-1.37288,0.666184,1.2828,-0.327995,0.48292,-0.953363,0.149582,0 +0.342757,-0.184362,1.49281,-1.28737,-0.692439,2.65183,-0.793401,-0.445645,1 +-0.250789,0.910325,0.3562,-1.28737,-0.692439,-1.39426,-0.799437,0.319646,0 +-0.547562,-0.027978,0.3562,1.03205,0.218671,0.977583,-0.775292,-0.360612,0 +1.82662,1.25437,-0.057113,0.154433,0.452957,-0.823496,-0.440277,1.16997,1 +-1.14111,0.503727,-0.057113,-0.409752,0.591792,-0.912282,-0.992599,-1.04087,0 +-1.14111,0.222236,-0.057113,-0.0963163,0.869464,-0.189314,2.77405,-0.700742,1 +-0.547562,0.097129,-0.057113,0.467869,1.0864,0.115094,1.21669,-0.27558,1 +0.63953,-1.27905,-0.160441,0.593243,-0.692439,-0.734711,-0.479513,0.659776,0 +-1.14111,-0.465853,0.0462151,1.03205,0.591792,0.939532,0.401788,-0.955839,0 +-0.547562,1.06671,0.252871,-0.221691,0.140576,-0.683976,-0.117335,-0.530677,1 +-0.250789,-0.246915,-0.987066,-0.660501,0.0451262,-0.31615,0.465169,-0.700742,0 +0.936304,-0.372022,0.562856,0.65593,-0.692439,0.495604,1.97726,0.82984,1 +-0.547562,-0.278192,-0.057113,0.0917453,0.123221,0.267298,-0.473476,-0.615709,0 +-0.250789,-0.68479,0.562856,-0.597814,-0.137096,-1.60988,-0.567039,-0.27558,0 +-0.250789,1.91118,0.252871,-1.28737,-0.692439,-0.189314,-0.382932,-0.360612,1 +-0.250789,-0.184362,-0.160441,1.15743,0.522374,0.774645,-0.971472,-0.445645,0 +0.63953,2.2865,0.459528,-1.28737,-0.692439,-1.07717,-1.03485,2.19036,1 +0.0459844,0.253513,-0.470426,-0.535127,1.312,-0.569823,0.166372,-0.190548,0 +-0.250789,-0.278192,0.252871,0.593243,-0.692439,-0.0497933,-0.829618,-0.700742,1 +-1.14111,0.097129,0.0462151,-0.0336291,-0.692439,-0.582507,-0.657584,0.234614,1 +2.71694,0.972878,1.0795,0.781305,-0.440799,-0.658609,0.782075,0.82984,1 +-0.547562,-0.278192,0.304536,0.718617,-0.692439,0.470237,-0.977508,-1.04087,0 +-0.844335,1.12926,0.149543,0.0290581,0.765337,-0.810813,-1.05296,-0.785774,0 +-0.844335,0.0345755,-0.263769,0.718617,0.66121,0.394135,0.664367,-0.27558,1 +1.82662,1.81735,0.0462151,-1.28737,-0.692439,0.394135,-0.820564,0.319646,0 +-0.547562,-0.59096,0.87284,0.969366,0.34883,1.71324,-1.04089,-0.870806,1 +0.63953,-0.497129,0.0462151,0.718617,-0.102387,-0.151263,-1.05598,0.319646,0 +1.23308,-0.0905316,0.149543,-0.0963163,-0.692439,-1.1279,3.0306,1.08494,0 +-0.547562,-1.06011,-0.573754,-0.284378,-0.241223,0.089727,-0.923181,-0.700742,0 +-0.844335,1.84863,-3.57027,-1.28737,-0.692439,1.43419,-0.573076,0.659776,1 +2.42017,-0.465853,0.562856,-1.28737,-0.692439,-1.06449,-1.01071,0.914873,0 +-0.844335,-0.809897,-0.470426,-0.159003,-0.189159,-1.02644,-0.639475,-0.955839,0 +-1.14111,1.37948,0.3562,1.40818,1.52026,2.01764,-0.642493,-0.615709,0 +-1.14111,-0.121808,-3.57027,-1.28737,-0.692439,0.229247,1.38872,0.914873,0 +0.342757,-0.184362,0.3562,-1.28737,-0.692439,-0.100528,-0.388968,0.914873,1 +1.52985,0.972878,0.459528,0.843992,0.791369,0.279982,1.27102,-0.0204831,1 +0.936304,1.78607,0.769512,-1.28737,-0.692439,1.00295,-0.425186,0.659776,1 +-0.844335,0.28479,0.0462151,-0.47244,0.218671,-0.772762,0.000373339,-0.955839,0 +-0.844335,-0.809897,0.252871,0.0290581,-0.0590007,-0.772762,0.607022,0.234614,0 +-0.844335,-3.78119,-0.057113,0.906679,-0.692439,0.000941365,-0.250133,-0.955839,0 +0.342757,0.0345755,0.87284,-1.28737,-0.692439,0.3434,-0.54893,-0.0204831,0 +1.23308,-0.809897,0.149543,-1.28737,-0.692439,0.609757,0.0396093,2.02029,0 +1.23308,0.159683,0.976169,0.969366,0.244703,0.825379,-0.370859,1.34003,0 +-0.844335,0.56628,-1.19372,-0.0963163,0.0277717,-0.417619,0.549677,-0.955839,0 +-0.250789,-0.153085,-3.57027,-1.28737,-0.692439,-1.07717,-0.8598,-0.870806,0 +-0.250789,-0.68479,-0.367098,-0.0963163,-0.0503235,-1.29279,-0.58213,-0.615709,0 +0.342757,-3.78119,0.562856,0.718617,-0.692439,1.14247,-0.379914,0.319646,1 +0.0459844,-0.903727,0.562856,-1.28737,-0.692439,1.29467,-0.708892,-0.360612,0 +0.0459844,0.503727,0.769512,-1.28737,-0.692439,-0.100528,-0.66362,-0.27558,0 +-0.250789,-1.87331,0.666184,0.467869,-0.692439,0.305349,-0.690783,1.08494,0 +-0.844335,-0.966281,-0.367098,-0.535127,-0.319318,-0.607874,0.326334,-0.785774,0 +-0.250789,-0.966281,0.459528,-1.28737,-0.692439,1.35809,0.262953,-1.04087,0 +1.52985,1.37948,0.976169,-1.28737,-0.692439,-0.201997,-0.512712,1.34003,1 +-0.844335,0.128406,-0.987066,1.22012,0.75666,0.165829,1.47927,-0.445645,1 +2.71694,0.253513,-3.57027,0.593243,-0.692439,1.00295,0.293134,0.914873,1 +2.42017,-1.02883,0.252871,1.22012,-0.223868,0.419502,-0.283333,1.255,0 +-0.844335,2.34906,0.3562,0.969366,1.46819,0.571706,1.21669,-0.360612,1 +0.342757,2.13012,-0.263769,0.781305,2.12766,-0.100528,0.335388,-0.360612,1 +0.342757,1.16054,0.0462151,-1.28737,-0.692439,-0.278099,-0.799437,2.53049,0 +0.342757,-0.559683,2.00945,1.03205,-0.692439,0.914165,-0.503658,2.70055,0 +0.0459844,0.785218,0.459528,-1.28737,-0.692439,0.825379,0.145245,2.87062,1 +0.0459844,0.816495,0.252871,0.279807,1.84999,0.368767,-0.262206,-0.27558,0 +0.342757,-0.68479,-0.78041,0.467869,0.0277717,0.254615,0.0818634,-0.27558,0 +0.63953,0.097129,0.149543,-1.28737,-0.692439,-0.55714,-0.313514,-0.360612,1 +-1.14111,-0.622237,-0.263769,-0.221691,-0.692439,-1.39426,-0.66362,-1.04087,0 +-0.250789,-1.24777,0.87284,-0.284378,-0.119741,-0.569823,-0.50064,-0.955839,0 +-0.844335,0.37862,1.69947,0.467869,0.522374,0.102411,-0.717947,0.999905,1 +-0.250789,1.62969,0.666184,1.72161,3.34248,0.812696,5.0256,-0.700742,1 +-1.14111,-0.0905316,-0.263769,0.154433,0.0798351,-4.05783,3.80023,-1.04087,0 +-1.14111,-1.15394,-0.263769,0.0917453,-0.119741,0.48292,0.220698,-1.04087,0 +-0.547562,-0.497129,-0.573754,1.22012,0.123221,0.368767,-0.74511,-0.700742,0 +-0.547562,0.0345755,-0.883738,1.40818,0.678565,0.533655,1.03862,-0.445645,0 +2.42017,0.597557,0.666184,1.40818,2.12766,0.914165,0.16939,2.10533,1 +-1.14111,-0.716067,0.666184,-0.347065,0.0364489,-0.861547,-0.521767,-0.955839,0 +-0.844335,-1.06011,-0.470426,1.03205,-0.0416462,0.660492,0.112045,-0.955839,0 +0.0459844,1.09799,0.304536,-1.28737,-0.692439,2.06838,-0.705874,-0.105515,1 +-1.14111,-0.872451,1.59614,1.15743,-0.067678,1.44688,1.65734,0.149582,0 +-0.844335,-0.434576,0.149543,0.593243,0.0190944,-0.151263,1.05371,-0.785774,0 +-1.14111,-0.497129,-0.057113,0.0917453,-0.692439,-1.5211,-0.71191,-0.955839,0 +-0.844335,-0.372022,-0.470426,-0.785876,0.886819,-0.83618,1.434,-1.04087,0 +-0.844335,-0.966281,-0.367098,-0.159003,-0.180482,-0.874231,2.40282,-0.700742,0 +-0.844335,0.128406,0.0462151,0.21712,0.262057,-0.9757,-0.757183,-0.700742,0 +-0.844335,-0.0592548,-0.78041,-0.47244,-0.258577,-1.22937,-0.805473,-0.785774,0 +0.342757,-0.153085,0.252871,0.530556,-0.692439,0.0389923,0.567786,0.149582,1 +1.23308,-0.497129,1.59614,0.969366,-0.692439,1.43419,-0.702856,0.999905,1 +0.342757,0.722664,0.666184,0.342494,1.78057,0.000941365,-0.0599897,2.10533,1 +-0.250789,-0.653513,-0.057113,0.154433,0.0104172,-0.0497933,1.44003,-0.445645,0 +-0.844335,-0.653513,-0.160441,0.530556,1.0083,0.000941365,-0.0841349,0.744808,0 +0.342757,1.41075,0.3562,-1.28737,-0.692439,1.7386,-0.398023,-0.530677,1 +-0.844335,0.316066,-0.263769,-0.409752,2.90862,-1.0518,-0.250133,-1.04087,0 +0.0459844,-0.153085,0.149543,-0.535127,0.0624807,-1.25474,-0.02679,0.319646,0 +0.0459844,1.16054,0.459528,-1.28737,-0.692439,0.115094,0.999382,-0.190548,1 +-0.547562,0.190959,-0.573754,0.21712,1.6938,-0.544456,3.40485,-0.700742,0 +-0.250789,-0.77862,-0.677082,0.843992,0.305443,-0.924966,1.42494,0.489711,0 +-1.14111,0.316066,-0.160441,1.22012,-0.692439,0.292666,-0.832637,-0.955839,1 +-0.250789,-1.2165,0.0462151,-1.28737,-0.692439,-1.38158,-0.250133,-0.700742,0 +-0.250789,2.25523,0.0462151,0.65593,-0.692439,0.368767,-0.69682,-0.700742,1 +0.0459844,-0.809897,-0.263769,-1.28737,-0.692439,0.000941365,-0.938272,-0.190548,1 +0.63953,0.503727,-0.418762,-1.28737,-0.692439,-0.988384,-0.968453,1.85023,0 +0.342757,0.47245,0.769512,1.2828,0.0711579,0.381451,-0.561003,0.149582,1 +1.52985,-1.52926,0.459528,0.279807,-0.692439,-0.0497933,-0.579112,0.404679,0 +0.342757,1.47331,-0.263769,-1.28737,-0.692439,0.115094,-1.01674,0.659776,1 +-0.547562,0.0658522,-1.09039,0.718617,0.739305,1.28199,0.145245,-0.615709,0 +0.0459844,-0.184362,0.149543,-1.28737,-0.692439,-0.392252,-0.289369,1.08494,1 +-1.14111,-0.622237,-0.367098,-1.28737,-0.692439,-1.28011,-0.410095,-0.700742,0 +1.23308,2.38033,0.252871,-1.28737,-0.692439,-0.772762,2.17042,0.489711,1 +-0.844335,1.59841,-0.057113,1.7843,4.33168,1.32004,0.694548,-0.445645,1 +0.63953,-0.59096,1.0795,1.15743,-0.692439,0.470237,0.61004,-0.445645,0 +-0.844335,-0.278192,0.149543,0.593243,0.834755,0.305349,0.16939,-0.700742,0 +-0.844335,0.691388,0.769512,0.154433,1.99751,1.32004,1.82334,-0.955839,0 +-0.844335,0.691388,0.252871,0.0917453,-0.163128,-0.734711,-0.651547,-1.04087,0 +-1.14111,0.535004,-0.470426,0.906679,0.75666,0.330716,0.187499,-1.04087,1 +-0.250789,1.62969,0.769512,0.781305,3.42057,0.470237,-0.645511,-0.955839,1 +-0.844335,-0.747344,-0.057113,0.0290581,-0.692439,-0.607874,1.88068,-0.955839,0 +0.0459844,0.722664,0.666184,0.718617,-0.692439,0.825379,0.247862,0.319646,1 +-0.844335,-1.18522,-0.057113,-1.28737,-0.692439,-1.7494,0.459132,-0.530677,0 +-0.250789,0.253513,-0.263769,0.530556,0.305443,-0.709344,-0.763219,-0.445645,1 +-0.844335,-0.0592548,0.976169,1.2828,0.782692,1.68787,0.106009,-0.615709,0 +-0.547562,-0.841174,-0.057113,-0.159003,-0.032969,-0.760078,0.268989,-1.04087,0 +-1.14111,-0.59096,-0.263769,1.59624,-0.0156145,1.09174,0.072809,-1.04087,0 +-0.547562,-0.184362,-0.263769,0.0917453,-0.692439,-0.151263,-0.153552,-1.04087,0 +1.23308,0.941602,0.459528,0.718617,1.12978,1.38346,0.133172,0.234614,1 +0.0459844,1.97373,0.459528,1.15743,1.71116,0.635124,-0.627402,-0.190548,1 +-1.14111,-0.841174,-3.57027,-1.28737,-0.692439,-4.05783,-0.651547,-0.700742,0 +-0.844335,1.8799,-0.263769,0.593243,0.869464,0.267298,-0.434241,0.404679,1 +-1.14111,0.441173,1.28615,1.59624,0.565761,1.09174,-0.567039,-0.615709,0 +-0.844335,-0.809897,0.666184,0.279807,0.869464,0.381451,-0.720965,0.82984,1 +-0.547562,-0.68479,-3.57027,-1.28737,-0.692439,-1.24206,-1.09823,-0.870806,0 +-0.250789,-0.997558,0.252871,-0.284378,0.0451262,-0.201997,0.238807,0.404679,0 +-0.844335,-1.27905,0.252871,-0.597814,-0.171805,-0.252732,0.166372,-0.955839,0 +-0.547562,0.56628,0.304536,-1.28737,-0.692439,-0.810813,-0.920163,-0.360612,0 +-0.844335,-0.966281,-0.057113,-0.785876,-0.692439,-0.950333,2.01046,0.234614,0 +-1.14111,0.628834,-3.57027,-1.28737,-0.692439,1.32004,-0.805473,-0.360612,1 +2.42017,0.597557,0.821176,0.781305,-0.692439,0.685859,-0.687765,0.659776,0 +0.342757,0.816495,0.304536,-1.28737,-0.692439,-0.265415,-0.114316,-0.445645,0 +-0.844335,-0.747344,0.0462151,-0.347065,-0.692439,-1.7494,-0.980526,-1.04087,0 +0.63953,-0.434576,0.976169,-1.28737,-0.692439,0.609757,0.770002,-0.190548,0 +-1.14111,2.13012,1.80279,0.279807,-0.692439,0.292666,-0.111298,0.659776,1 +-0.547562,-1.18522,-0.160441,0.154433,-0.258577,0.0263087,0.0758271,-0.955839,0 +0.0459844,-0.121808,-0.263769,0.405181,0.34883,0.153145,-0.730019,-0.785774,0 +1.23308,-0.403299,0.0462151,-1.28737,-0.692439,-0.189314,1.45814,-0.0204831,1 +0.0459844,-0.121808,-0.367098,-0.535127,-0.692439,-0.290783,-0.277297,-0.27558,1 +-1.14111,1.84863,0.459528,2.66192,-0.570958,3.47626,5.87973,-0.700742,1 +-0.844335,-0.653513,0.149543,-0.535127,-0.0850324,-0.848864,0.56175,-0.445645,0 +-1.14111,-0.809897,0.562856,1.53355,0.105867,0.571706,-0.428204,-0.615709,0 +-1.14111,-0.528406,-0.263769,1.03205,-0.137096,0.20388,0.115063,-0.955839,1 +-1.14111,-0.027978,0.252871,-0.159003,-0.145773,-0.189314,-0.564021,-0.615709,0 +-0.844335,-1.2165,-0.263769,-0.47244,0.131899,-1.36889,-0.171661,-0.870806,0 +-0.547562,0.409897,0.0462151,-1.28737,-0.692439,-0.392252,0.211644,-0.870806,1 +-1.14111,-0.935004,-0.057113,0.718617,1.12978,1.00295,-0.274278,-0.700742,0 +-0.547562,-0.0592548,-3.57027,-1.28737,-0.692439,-1.57183,1.08691,3.29578,0 +-0.547562,-0.653513,-0.78041,0.467869,0.218671,0.736594,0.0788453,-0.785774,0 +3.01371,1.69224,-0.367098,0.593243,-0.692439,0.20388,-0.784346,0.404679,1 +-0.844335,0.441173,-0.78041,-1.28737,-0.692439,-0.671293,0.649276,2.44545,0 +0.342757,-1.09139,-0.057113,0.467869,-0.0763552,-0.227364,-0.325587,-0.785774,0 +1.82662,0.847771,0.769512,1.72161,1.36407,0.711226,1.59698,1.5101,1 +1.52985,0.409897,0.252871,0.781305,-0.171805,-0.772762,-0.0358445,4.06107,0 +1.52985,-0.027978,0.149543,0.0917453,-0.206514,-1.41963,0.788111,1.255,0 +-0.844335,-1.56054,-0.367098,-1.28737,-0.692439,-1.29279,-0.168643,-0.615709,0 +1.23308,-1.46671,0.0462151,1.22012,-0.267255,0.419502,0.703603,0.489711,0 +0.342757,-1.02883,0.459528,0.593243,-0.692439,-0.55714,-0.645511,0.319646,0 +1.82662,-0.184362,1.49281,-1.28737,-0.692439,-1.01375,1.66036,0.0645493,0 +-1.14111,0.097129,-0.677082,-0.47244,0.218671,-1.29279,-0.0599897,-1.04087,0 +-1.14111,-1.46671,-0.883738,-0.660501,-0.380059,-0.531772,-0.612311,-0.955839,0 +-1.14111,-0.747344,-0.263769,0.969366,0.175285,0.609757,0.386697,-0.700742,0 +1.23308,-0.027978,-3.57027,-1.28737,-0.692439,-0.252732,-0.871873,0.404679,1 +0.63953,1.03543,0.459528,1.2828,0.522374,1.78934,0.29917,-0.530677,0 +-0.844335,0.722664,0.666184,1.22012,-0.692439,1.18052,0.407824,-0.445645,0 +-1.14111,0.503727,0.0462151,1.09474,-0.692439,0.153145,-0.911109,-0.955839,0 +-1.14111,-0.0592548,-0.160441,0.405181,-0.692439,0.86343,-0.642493,-0.955839,0 +0.936304,0.47245,1.0795,-1.28737,-0.692439,-0.265415,-0.790382,1.42507,0 +0.0459844,-0.215639,-0.263769,-1.28737,-0.692439,-0.392252,-1.04391,-0.785774,0 +-1.14111,0.503727,0.769512,0.405181,-0.692439,-0.595191,-0.727001,2.19036,0 +-0.547562,-0.497129,0.562856,1.53355,0.964914,0.216564,0.721712,-0.360612,1 +0.936304,-0.215639,0.3562,-0.221691,0.262057,-1.03912,-0.0177356,-0.190548,0 +1.23308,0.159683,0.252871,1.09474,-0.0416462,-0.772762,-0.935254,0.489711,0 +0.0459844,0.347343,0.87284,0.65593,-0.692439,-0.506405,-0.159589,2.53049,0 +-0.250789,1.16054,0.0462151,0.593243,2.1537,0.444869,-0.38595,0.149582,1 +-1.14111,0.0658522,0.976169,1.03205,-0.692439,0.406818,-0.829618,-0.360612,0 +0.0459844,-1.12266,-0.573754,0.0917453,-0.267255,-0.531772,-0.50064,-0.445645,0 +-1.14111,-1.15394,0.666184,0.65593,0.392216,0.787328,-0.720965,-0.870806,0 +-1.14111,0.753941,-3.57027,-1.28737,-0.692439,1.54835,0.477241,-0.190548,1 +-1.14111,0.441173,-0.057113,1.34549,1.47687,1.30736,-0.322569,-0.785774,1 +-0.844335,0.56628,-0.367098,1.2828,3.47264,1.10442,0.193535,-1.04087,0 +-1.14111,1.62969,0.459528,0.718617,1.60703,1.84007,2.07384,2.10533,0 +0.0459844,-0.68479,0.149543,-0.221691,-0.692439,-0.810813,-0.536858,-0.445645,0 +1.23308,2.2865,0.562856,-1.28737,-0.692439,-0.747395,0.238807,2.87062,0 +-0.547562,-1.18522,-0.212105,0.467869,-0.119741,0.609757,0.474223,-0.785774,0 +-0.547562,-0.997558,1.0795,0.593243,-0.692439,0.191196,-0.542894,0.744808,0 +0.0459844,-0.68479,-0.057113,1.09474,-0.692439,0.102411,-0.986562,-0.0204831,0 +0.0459844,0.128406,0.0462151,-0.159003,0.366184,-0.392252,2.02857,0.999905,1 +-0.250789,-1.27905,-3.57027,-1.28737,-0.692439,-4.05783,-0.899036,-0.955839,0 +0.63953,1.41075,0.252871,-1.28737,-0.692439,-0.683976,-0.506676,2.78558,0 +0.342757,-0.340746,-0.057113,-1.28737,-0.692439,-0.760078,-0.542894,-0.27558,0 +-0.547562,-1.24777,0.149543,-0.347065,-0.032969,-0.240048,0.226735,-0.700742,0 +0.936304,2.31778,0.0462151,0.781305,0.565761,-0.874231,-0.932236,1.85023,1 +0.63953,1.03543,0.252871,0.718617,0.982268,-0.341517,1.10804,0.489711,0 +-0.547562,-0.121808,1.0795,-0.0963163,-0.0763552,-0.861547,-0.479513,-1.04087,0 +-0.250789,-1.15394,0.149543,0.718617,-0.692439,0.660492,-0.618348,-0.445645,0 +0.63953,-3.78119,-0.057113,1.2828,-0.692439,0.888797,0.770002,0.659776,1 +0.936304,-0.841174,-0.263769,0.279807,-0.00693727,0.165829,0.803202,0.659776,0 +-0.250789,-0.77862,0.459528,1.15743,-0.692439,0.673175,-0.705874,0.574743,0 +1.82662,-1.43543,0.666184,-1.28737,-0.692439,0.165829,-0.63042,0.404679,0 +-1.14111,1.84863,1.0795,0.342494,0.0885124,0.571706,-0.476495,0.149582,1 +-0.844335,0.28479,-0.470426,0.154433,0.782692,-0.430303,0.664367,-1.04087,0 +-0.547562,-1.15394,-0.987066,0.154433,-0.032969,-0.201997,1.49738,-1.04087,0 +1.23308,-0.027978,0.459528,-1.28737,-0.692439,-0.886915,-0.18977,2.61552,0 +2.42017,-1.15394,0.149543,0.65593,-0.692439,-0.290783,-0.527803,1.08494,1 +-1.14111,0.56628,-0.367098,-0.221691,1.12978,-1.25474,-0.799437,-1.04087,0 +1.52985,-0.935004,-0.057113,-1.28737,-0.692439,-0.988384,-0.820564,2.10533,0 +-0.547562,-0.935004,-0.367098,-1.28737,-0.692439,-0.595191,0.160335,-0.955839,0 +-0.250789,-0.68479,-0.78041,-0.0963163,0.0538034,-0.810813,-0.959399,-0.785774,0 +-0.250789,1.31692,0.0462151,-0.159003,0.218671,-0.0497933,-0.61533,-0.445645,1 +1.52985,0.753941,0.976169,0.843992,0.739305,-0.214681,0.902801,1.68016,1 +0.936304,0.128406,0.87284,-1.28737,-0.692439,0.711226,-0.506676,1.5101,0 +2.71694,-1.40416,-0.470426,-1.28737,-0.692439,0.102411,-0.880927,0.659776,0 +0.63953,0.253513,1.0795,-0.848563,2.13634,-1.57183,0.33237,2.27539,0 +-0.547562,-1.65437,0.0462151,0.718617,-0.119741,-0.886915,-0.8598,-0.700742,0 +-0.250789,0.097129,0.562856,0.781305,0.435602,0.153145,-0.503658,-0.615709,0 +0.63953,-0.215639,-3.57027,-1.28737,-0.692439,-4.05783,-0.853764,-0.615709,0 +1.52985,0.28479,0.0462151,-1.28737,-0.692439,0.279982,0.543641,0.999905,1 +-0.250789,0.128406,-0.573754,-1.28737,-0.692439,-0.0497933,-0.968453,-0.785774,0 +-0.250789,-1.06011,-0.470426,-0.159003,-0.692439,-1.29279,-0.0841349,-1.04087,0 +-0.844335,-0.747344,-0.263769,-0.0963163,0.0190944,-1.7494,-0.521767,-1.04087,0 +-0.250789,-0.153085,0.252871,-0.347065,0.218671,-0.722027,-1.10125,-0.785774,0 +-1.14111,-0.121808,-0.160441,0.65593,0.938882,-0.151263,0.0637545,-0.955839,0 +-1.14111,-0.309469,-0.212105,-1.28737,-0.692439,-0.937649,0.567786,-0.190548,0 +-0.547562,0.0345755,-0.470426,-0.159003,0.227348,-0.278099,0.739821,-0.955839,0 +-1.14111,-0.434576,0.3562,-1.28737,-0.692439,1.68787,0.646258,-0.785774,0 +-0.844335,-1.09139,-0.160441,1.97236,-0.128419,1.18052,1.34345,-0.360612,0 +0.63953,-0.935004,-3.57027,-1.28737,-0.692439,-0.278099,0.0878997,-0.190548,0 +-0.844335,-1.37288,-0.677082,0.593243,-0.206514,0.165829,2.35151,-0.785774,0 +0.0459844,0.347343,-3.57027,-1.28737,-0.692439,0.115094,-0.512712,-0.870806,1 +-1.14111,-0.497129,1.0795,-1.28737,-0.692439,-0.303466,-0.829618,1.08494,0 +-1.14111,-1.99841,-0.470426,-1.28737,-0.692439,-1.30548,0.794147,2.87062,0 +-1.14111,0.190959,0.562856,1.03205,1.12978,0.546339,1.0024,-0.870806,0 +-0.250789,0.253513,1.18282,1.7843,0.652533,0.559022,1.49738,-0.105515,1 +1.23308,-0.653513,0.252871,1.22012,1.17317,0.939532,0.570804,0.82984,1 +-0.250789,0.222236,0.149543,0.279807,0.956236,0.051676,0.232771,-0.530677,1 +1.82662,-0.966281,0.821176,0.718617,-0.692439,0.368767,1.06578,1.93526,1 +0.0459844,-1.15394,1.0795,0.154433,-0.206514,0.952216,-0.944308,-0.700742,0 +-0.844335,-1.02883,0.459528,0.530556,-0.032969,0.000941365,-0.322569,-0.360612,0 +1.23308,2.03629,1.0795,0.906679,1.25994,0.318033,-0.147516,0.319646,1 +0.342757,2.06757,0.3562,0.405181,1.10375,1.47225,1.69657,1.68016,1 +0.0459844,0.316066,-0.057113,0.0290581,0.747983,0.140462,-0.94129,-0.445645,0 +-0.844335,1.3482,0.666184,1.40818,-0.111064,0.102411,-0.395005,1.42507,0 +0.0459844,2.13012,2.11278,0.65593,-0.692439,-0.442987,0.628149,0.319646,0 +-0.844335,-0.153085,0.0462151,0.467869,-0.692439,-0.582507,-0.808491,-1.04087,0 +-0.250789,-1.15394,-0.057113,0.593243,0.227348,-0.0117423,0.359533,-0.700742,0 +0.63953,-0.215639,0.976169,-1.28737,-0.692439,-0.531772,-0.678711,2.78558,0 +-0.844335,-1.02883,-0.367098,0.21712,-0.310641,-0.265415,-0.150534,-0.870806,0 +-0.844335,-1.15394,-0.263769,0.154433,0.305443,0.622441,-0.00264481,-0.445645,0 +0.936304,0.097129,0.0462151,0.781305,1.17317,-0.823496,-0.938272,0.319646,0 +-0.844335,-0.747344,0.0462151,1.22012,-0.692439,0.774645,-0.766237,-0.27558,0 +1.23308,-0.340746,0.3562,-1.28737,-0.692439,-0.531772,-0.708892,2.10533,0 +2.1234,-0.559683,-0.057113,1.22012,-0.692439,1.80202,-1.04391,0.744808,0 +2.1234,-1.12266,0.252871,-1.28737,-0.692439,-0.240048,-0.518749,0.149582,0 +0.63953,0.128406,0.3562,-1.28737,-0.692439,0.229247,-1.059,1.7652,1 +-1.14111,2.41161,-0.160441,0.718617,1.68512,1.18052,0.0909179,-0.445645,1 +-0.844335,-1.06011,-0.057113,0.843992,-0.0242918,0.711226,-0.213915,-0.785774,0 +0.63953,-0.68479,-0.470426,-0.0963163,-0.223868,-0.645925,0.0758271,-0.105515,0 +-1.14111,-0.935004,0.562856,-1.28737,-0.692439,0.051676,0.389715,-0.530677,0 +-0.547562,-0.809897,-0.78041,-0.409752,0.0711579,-0.747395,0.833383,-0.955839,0 +-0.844335,-0.68479,0.149543,0.593243,-0.536249,0.838063,-0.180716,-1.04087,0 +0.63953,-0.903727,-0.367098,0.718617,0.400893,0.000941365,-1.16765,1.08494,0 +0.0459844,1.03543,0.149543,0.530556,0.400893,-0.0878442,-0.404059,0.319646,0 +-1.14111,0.00329872,-0.160441,0.593243,0.739305,0.292666,-0.811509,-0.0204831,1 +-0.250789,-1.3416,0.0462151,-1.28737,-0.692439,0.0643597,-0.609293,0.489711,0 +-0.547562,0.28479,1.38948,-1.28737,-0.692439,-1.19132,-0.61533,-1.04087,0 +-0.250789,-0.309469,-0.573754,0.65593,-0.310641,-0.31615,-0.126389,-0.955839,0 +-0.547562,-0.716067,-0.470426,-0.221691,0.34883,0.3434,-0.8266,-0.955839,0 +-0.844335,0.691388,0.87284,0.593243,2.17105,-0.240048,1.268,-0.870806,0 +-0.844335,-0.0592548,-1.29705,1.65893,-0.145773,0.444869,-0.579112,-0.700742,0 +0.63953,-0.403299,-1.29705,-0.0336291,0.435602,-1.01375,1.02956,0.149582,0 +-0.547562,-0.0905316,0.562856,-1.28737,-0.692439,1.38346,0.667385,-1.04087,1 +1.82662,0.37862,-0.057113,-1.28737,-0.692439,-0.633242,-0.684747,0.234614,0 +-0.547562,2.38033,0.0462151,4.91866,-0.692439,0.3434,0.311243,2.44545,1 +-1.14111,0.941602,1.0795,1.59624,-0.692439,1.28199,-0.30446,-1.04087,1 +0.63953,-0.372022,-0.470426,0.405181,-0.692439,-0.886915,-0.802455,-0.530677,0 +2.42017,0.00329872,0.459528,-0.221691,-0.692439,-0.69666,-0.642493,2.44545,0 +1.23308,-0.653513,0.3562,-1.28737,-0.692439,0.850747,-0.850745,0.744808,0 +1.23308,0.097129,0.3562,0.21712,4.51391,-0.417619,0.649276,1.59513,1 +-0.844335,-0.872451,-0.677082,-0.597814,-0.692439,-1.20401,-0.165625,-0.955839,0 +1.23308,0.691388,-0.160441,-1.28737,-0.692439,0.368767,-1.03485,0.659776,1 +0.63953,-0.559683,-0.160441,-1.28737,-0.692439,-0.9757,-0.672675,-0.360612,0 +-0.250789,1.72352,0.87284,0.405181,0.66121,0.165829,2.05875,1.59513,1 +-1.14111,-1.49799,-3.57027,-1.28737,-0.692439,-1.38158,-0.391986,-0.700742,0 +2.1234,-0.309469,0.769512,1.22012,-0.692439,1.87812,1.3676,0.999905,1 +-0.547562,-0.278192,0.459528,1.84699,0.522374,0.939532,-0.896018,-0.785774,0 +-0.250789,0.347343,0.562856,-1.28737,-0.692439,0.305349,-0.210897,0.914873,1 +-0.547562,-1.2165,-0.883738,0.0917453,0.305443,-0.442987,3.70365,-0.700742,0 +0.63953,0.0658522,0.149543,1.53355,1.30333,0.20388,0.788111,0.0645493,0 +-1.14111,2.09884,0.666184,-0.409752,0.91285,0.000941365,0.634185,-0.955839,1 +-1.14111,-1.68565,0.3562,-1.28737,-0.692439,1.68787,-0.838673,1.08494,0 +-0.844335,-0.997558,-2.33033,-0.0963163,-0.475508,-0.531772,0.262953,-1.04087,0 +-0.844335,1.62969,0.252871,-1.28737,-0.692439,0.609757,-1.1586,0.404679,1 +-0.844335,-0.372022,-1.60704,-0.159003,0.34883,-1.1279,-0.195807,-0.615709,0 +-0.844335,-0.403299,0.976169,-0.0963163,-0.692439,-0.620558,-0.216934,-0.785774,0 +0.63953,-0.77862,-3.57027,-1.28737,-0.692439,-1.0518,-0.850745,-0.445645,0 +-0.844335,0.097129,0.252871,0.969366,-0.692439,-0.531772,-1.12238,-0.27558,0 +0.936304,0.910325,0.459528,0.530556,0.400893,0.406818,0.664367,1.7652,1 +0.0459844,1.94246,-3.57027,-1.28737,-0.692439,-0.45567,-0.784346,0.234614,1 +-0.844335,0.097129,-0.470426,0.718617,-0.692439,0.48292,0.127136,-1.04087,0 +-0.844335,1.8799,0.459528,1.34549,1.84999,1.01563,2.37264,-0.955839,1 +-0.844335,-0.903727,-0.367098,0.279807,-0.336672,-1.58452,0.0305549,-0.700742,0 +-1.14111,0.972878,0.666184,1.15743,1.66777,1.20589,-0.609293,-0.530677,0 +-0.844335,-0.309469,-0.367098,-0.47244,0.886819,-1.01375,-1.00769,-0.870806,0 +-0.250789,-0.465853,-0.78041,0.0290581,0.678565,-0.138579,-0.542894,-0.785774,0 +-0.250789,1.66097,-0.573754,0.0917453,0.990945,0.115094,0.36557,0.234614,1 +0.936304,1.47331,0.976169,1.34549,2.09296,0.787328,0.951091,0.574743,1 +0.63953,-0.497129,0.562856,0.467869,-0.692439,0.0643597,1.22574,-0.615709,0 +2.1234,0.535004,0.252871,0.342494,0.557083,0.520971,0.256916,1.42507,1 +-0.250789,-0.465853,0.149543,-1.28737,-0.692439,-0.785445,-0.799437,-0.530677,0 +0.63953,-0.121808,1.38948,-1.28737,-0.692439,-0.417619,-0.950344,-0.27558,0 +-0.547562,-1.65437,-0.367098,-0.47244,-0.562281,-1.50841,-0.648529,-0.870806,0 +1.52985,-0.278192,0.666184,0.21712,-0.692439,-0.481038,2.44508,1.42507,1 +-1.14111,-0.0592548,-3.57027,-1.28737,-0.692439,0.051676,-0.998635,-0.785774,1 +-0.547562,-0.278192,0.87284,1.34549,0.695919,0.812696,-0.681729,-0.445645,0 +-0.547562,-0.903727,0.3562,-0.0336291,-0.692439,-0.988384,3.70063,-0.445645,0 +0.63953,1.94246,1.28615,-1.28737,-0.692439,1.1171,2.98533,0.999905,0 +-1.14111,-0.841174,0.0462151,0.405181,0.305443,1.45956,-0.376896,-1.04087,0 +-0.547562,-0.403299,-0.263769,-1.28737,-0.692439,-0.151263,-0.947326,-1.04087,0 +0.0459844,-0.966281,0.976169,1.65893,-0.223868,0.72391,-0.331623,-0.360612,0 +-1.14111,0.128406,-0.057113,-1.28737,-0.692439,-0.924966,-0.802455,-1.04087,0 +-1.14111,0.347343,0.459528,-1.28737,-0.692439,0.051676,-0.238061,-1.04087,0 +0.342757,0.222236,0.562856,-1.28737,-0.692439,0.330716,-0.98958,0.999905,0 +0.0459844,-0.841174,-0.212105,0.0917453,-0.692439,-0.924966,-0.977508,-1.04087,0 +0.936304,-0.215639,-0.263769,-1.28737,-0.692439,-0.582507,0.785093,0.0645493,1 +-1.14111,-0.59096,0.459528,1.22012,0.0885124,0.318033,-0.705874,-0.785774,0 +-0.547562,-0.309469,-0.470426,-1.28737,-0.692439,-0.734711,-0.388968,-0.870806,0 +-0.844335,0.222236,0.666184,-0.221691,0.895496,-0.569823,-1.07711,-0.955839,0 +1.82662,-0.903727,-0.367098,-1.28737,-0.692439,-0.772762,-0.920163,-0.190548,0 +2.71694,-0.528406,0.149543,-1.28737,-0.692439,-0.100528,-0.0207537,0.404679,1 +0.342757,-0.528406,0.252871,-1.28737,-0.692439,-0.404936,-0.962417,1.255,0 +-0.547562,-0.841174,0.3562,-0.159003,-0.119741,-0.0497933,0.534586,-0.870806,0 +0.936304,-0.747344,0.3562,0.718617,0.0971896,1.12979,1.20462,-0.105515,1 +-0.844335,-0.653513,0.252871,-0.535127,-0.293286,-1.58452,-0.97449,-0.445645,0 +-1.14111,-0.59096,0.87284,-0.221691,0.218671,-0.341517,0.673421,-0.530677,0 +0.0459844,0.222236,0.0462151,-1.28737,-0.692439,0.292666,-0.509694,-0.785774,0 +0.63953,0.816495,0.562856,-1.28737,-0.692439,-0.31615,-0.886963,1.42507,1 +0.0459844,-0.966281,-3.57027,-1.28737,-0.692439,-0.506405,0.416878,-0.190548,0 +-0.250789,-0.559683,0.149543,0.593243,0.626501,-0.55714,0.779057,-0.530677,0 +-0.547562,1.12926,0.252871,0.906679,3.12555,0.939532,-1.01976,-0.27558,0 +-0.844335,1.44203,0.252871,-0.221691,0.557083,-1.08985,-0.0750805,-0.0204831,1 +-1.14111,1.81735,-0.987066,0.969366,0.687242,0.736594,-0.0509352,-0.955839,1 +2.1234,0.47245,0.769512,0.906679,0.435602,-0.468354,-0.639475,0.744808,1 +-1.14111,-0.434576,-0.470426,0.279807,-0.692439,-0.709344,-1.02278,-0.870806,0 +-0.844335,-0.935004,-0.78041,0.279807,0.175285,-0.861547,-0.717947,-0.870806,0 +-0.844335,-0.121808,-0.470426,0.154433,0.227348,0.229247,-0.0177356,-0.530677,0 +0.342757,0.0658522,0.252871,1.22012,-0.0242918,0.267298,-0.612311,-0.445645,0 +-0.547562,-0.027978,-0.78041,-1.28737,-0.692439,-0.658609,-0.0509352,-0.530677,0 +-0.844335,-0.465853,0.0462151,0.467869,0.478988,0.279982,-0.995617,-0.955839,0 +-0.547562,1.06671,-0.883738,0.405181,3.99327,0.850747,-0.699838,-0.700742,1 +-0.547562,-0.622237,-0.573754,0.906679,0.0885124,-1.29279,-0.956381,-0.955839,0 +-0.844335,-0.027978,0.562856,1.72161,1.04301,0.876114,2.0829,0.659776,0 +2.1234,0.190959,1.90612,-1.28737,-0.692439,0.888797,-0.850745,1.5101,0 +-0.250789,-1.27905,0.666184,0.65593,-0.0850324,0.279982,2.47526,-0.530677,1 +1.82662,1.28565,0.769512,-1.28737,-0.692439,-0.544456,-0.874891,1.7652,0 +-0.844335,2.44289,0.3562,1.40818,-0.692439,1.38346,2.78311,-0.955839,1 +1.23308,1.44203,1.90612,1.59624,1.312,0.711226,-0.926199,0.82984,1 +1.52985,0.753941,0.562856,1.59624,0.435602,0.749277,0.498368,0.574743,1 +0.63953,-0.184362,-0.470426,1.15743,-0.692439,0.216564,-0.684747,0.574743,1 +-0.844335,-0.278192,0.562856,1.53355,0.452957,0.356084,-0.769255,-0.785774,0 +0.0459844,0.753941,0.666184,-0.159003,-0.692439,0.0643597,-0.714929,3.12571,1 +1.82662,-0.309469,0.0462151,0.405181,-0.692439,-0.569823,-0.998635,0.574743,1 +0.63953,-0.716067,-0.573754,0.781305,0.956236,0.254615,-0.126389,0.82984,0 +1.52985,1.03543,0.459528,0.593243,0.175285,-0.138579,-0.929217,0.999905,0 +0.63953,1.37948,-0.057113,0.342494,0.765337,0.20388,0.480259,1.34003,0 +-0.844335,-0.68479,-0.573754,-0.660501,-0.692439,-0.83618,0.238807,-1.04087,0 +1.82662,-1.65437,1.90612,0.154433,-0.267255,0.444869,-0.564021,1.16997,0 +-0.250789,0.0658522,1.59614,0.906679,1.3901,3.20991,1.23178,-0.955839,0 +1.23308,-0.935004,0.666184,-1.28737,-0.692439,0.457553,0.347461,2.95565,0 +0.63953,2.31778,0.0462151,-1.28737,-0.692439,-0.138579,-0.434241,-0.190548,1 +1.52985,1.09799,0.87284,-1.28737,-0.692439,-0.912282,-0.730019,1.68016,1 +-1.14111,-0.872451,-0.470426,-1.28737,-0.692439,0.419502,-0.63042,-0.700742,0 +-0.250789,0.00329872,-0.883738,-1.28737,-0.692439,0.508288,-1.04089,-0.700742,1 +-0.547562,-0.622237,-0.573754,-0.221691,1.60703,-0.988384,0.428951,-0.870806,0 +-0.547562,-2.02969,-0.677082,0.467869,-0.301963,-0.988384,-0.422168,-0.955839,0 +-1.14111,1.28565,0.3562,0.969366,-0.692439,2.23327,-0.325587,-0.615709,1 +-1.14111,-0.809897,-0.263769,1.15743,0.218671,1.59908,-0.319551,-0.955839,0 +0.0459844,0.128406,0.562856,-1.28737,-0.692439,0.0389923,0.193535,-0.530677,1 +0.342757,0.47245,0.666184,-1.28737,-0.692439,-4.05783,0.507423,3.04068,0 +-0.547562,0.253513,0.252871,0.342494,1.0864,0.153145,0.359533,-0.700742,0 +-0.250789,0.28479,-0.263769,-1.28737,-0.692439,-1.1279,-0.476495,-0.955839,0 +-0.844335,-0.434576,-0.987066,-0.0963163,-0.692439,-0.468354,-0.877909,-0.360612,0 +-0.844335,0.597557,0.252871,0.342494,0.869464,-1.00107,1.07484,-0.870806,0 +-0.844335,0.722664,0.666184,1.59624,0.869464,1.78934,-0.413113,1.08494,1 +1.23308,-0.434576,0.562856,-1.28737,-0.692439,-0.937649,1.15934,0.0645493,0 +2.71694,1.16054,2.31943,-1.28737,-0.692439,1.30736,-0.648529,0.914873,1 +-0.547562,0.00329872,0.0462151,0.718617,0.131899,0.901481,1.24989,-0.870806,0 +0.936304,0.253513,-0.057113,1.7843,0.392216,0.825379,-0.0992257,0.82984,1 +-0.547562,-0.966281,-0.470426,-1.28737,-0.692439,-1.07717,-0.847727,-0.700742,0 +0.936304,0.660111,1.0795,0.21712,3.47264,-0.201997,-1.03787,0.82984,1 +-0.250789,1.50458,0.252871,-0.0963163,0.392216,-0.265415,-0.61533,-0.190548,1 +-1.14111,-0.68479,-3.57027,-1.28737,-0.692439,-0.886915,-0.660602,-0.955839,0 +0.0459844,0.190959,0.976169,-0.597814,0.652533,0.318033,0.38066,-0.445645,0 +0.0459844,-0.0905316,0.0462151,-1.28737,-0.692439,1.5864,1.30421,-0.615709,0 +-0.547562,0.0345755,0.3562,0.405181,1.04301,0.495604,0.033573,-0.615709,0 +0.63953,0.128406,0.459528,0.65593,-0.692439,-0.55714,0.281061,1.34003,1 +-0.844335,1.47331,0.976169,0.530556,-0.692439,0.381451,1.30723,1.59513,1 +-0.547562,0.253513,-3.57027,-1.28737,-0.692439,0.825379,-0.506676,0.659776,0 +0.0459844,-0.340746,0.3562,-0.0336291,0.175285,-0.45567,-1.06805,-0.530677,0 +0.63953,-1.27905,0.562856,0.969366,-0.692439,0.990267,-0.889981,-0.445645,0 +1.82662,-0.184362,-3.57027,-1.28737,-0.692439,-4.05783,-0.636457,-0.27558,1 +-0.547562,0.190959,-1.19372,0.0290581,2.21444,0.305349,-0.893,-0.955839,0 +1.52985,1.3482,0.459528,-1.28737,-0.692439,0.102411,-0.977508,0.999905,1 +-0.547562,-0.872451,-0.263769,0.718617,0.695919,0.761961,0.61004,-0.870806,1 +-0.250789,1.16054,-0.263769,-0.47244,2.66565,-0.100528,-0.53384,-0.785774,0 +0.342757,0.159683,0.459528,0.405181,-0.50154,-0.303466,-0.0992257,0.574743,0 +1.82662,0.253513,-0.367098,0.969366,-0.692439,1.16784,-0.0931894,0.404679,1 +-1.14111,0.409897,-0.573754,-0.0336291,1.83264,-0.709344,-0.361805,-1.04087,0 +-0.250789,-0.59096,0.252871,-1.28737,-0.692439,-0.31615,-1.059,-0.105515,0 +0.936304,2.06757,-0.987066,0.781305,2.70904,0.241931,1.0688,0.0645493,1 +-0.250789,1.62969,0.459528,1.15743,0.91285,0.229247,1.50341,-0.190548,1 +1.82662,-0.841174,0.149543,-0.159003,-0.692439,-1.1279,0.371606,1.93526,0 +-0.844335,-0.403299,-0.470426,1.59624,0.85211,0.444869,-0.171661,-0.785774,0 +0.342757,-0.747344,0.3562,0.405181,-0.692439,0.457553,-0.283333,1.59513,1 +0.0459844,-1.18522,0.87284,-0.0963163,-0.692439,-0.341517,-0.46744,0.0645493,0 +-0.844335,-0.215639,-0.160441,0.969366,1.04301,0.774645,-0.551948,-1.04087,0 +-0.844335,0.879048,-0.057113,0.530556,0.40957,-0.341517,-0.370859,0.744808,1 +0.342757,-0.121808,0.87284,0.593243,0.218671,0.901481,-0.666638,0.744808,0 +-0.844335,-0.309469,1.28615,-1.28737,-0.692439,0.102411,-0.624384,0.999905,0 +0.0459844,-0.278192,0.459528,1.22012,-0.692439,0.939532,-0.71191,0.404679,0 +-0.844335,-0.153085,0.459528,0.530556,0.869464,0.520971,0.072809,-0.700742,0 +-1.14111,0.628834,0.769512,0.342494,-0.692439,0.051676,-0.117335,-0.955839,0 +-0.547562,1.69224,0.976169,-1.28737,-0.692439,-1.15327,-0.440277,-0.955839,0 +-0.547562,-0.903727,-0.883738,-1.28737,-0.692439,-0.240048,-0.998635,-0.955839,0 +-0.250789,0.28479,0.459528,0.154433,-0.00693727,-0.45567,-0.449331,0.0645493,1 +1.23308,-0.027978,0.87284,-1.28737,-0.692439,-0.45567,-0.642493,-0.955839,1 +-0.547562,1.66097,0.976169,1.03205,0.34883,1.5864,0.525532,-0.785774,1 +-0.547562,-0.465853,-0.677082,0.405181,0.739305,-0.379568,-0.138462,-0.955839,0 +-0.547562,-0.497129,0.304536,-1.28737,-0.692439,-1.10254,0.265971,1.68016,0 +0.0459844,-0.809897,-0.470426,0.718617,-0.692439,0.432186,-0.567039,-0.445645,0 +-1.14111,0.159683,0.87284,0.405181,0.34883,-0.582507,0.130154,-1.04087,0 +1.23308,-1.7482,0.149543,0.154433,-0.692439,0.000941365,0.386697,0.744808,0 +-0.547562,-0.68479,-0.470426,-0.221691,0.695919,0.58439,-0.0569715,-1.04087,0 +-0.844335,-0.59096,0.252871,-1.28737,-0.692439,0.952216,-0.539876,0.744808,1 +2.1234,-0.027978,0.562856,1.03205,0.609147,1.30736,0.945055,1.255,1 +-0.250789,-0.59096,-1.29705,-0.0336291,0.123221,-0.151263,-0.216934,-0.615709,0 +-0.844335,-0.372022,-0.573754,-0.159003,0.314121,-0.442987,-0.763219,-0.955839,0 +1.52985,0.597557,1.28615,-1.28737,-0.692439,0.089727,0.791129,0.999905,1 +2.71694,1.00416,0.976169,1.03205,0.522374,1.09174,2.11912,0.489711,0 +2.42017,-0.653513,0.769512,0.781305,0.218671,-0.252732,0.0486638,1.08494,0 +-0.844335,0.816495,1.28615,1.2828,-0.692439,2.19521,-0.343696,-0.530677,1 +-0.844335,-1.24777,0.252871,1.2828,-0.197837,1.8147,1.8837,-0.105515,0 +-0.250789,2.06757,0.0462151,0.0917453,1.04301,0.559022,-0.192788,0.234614,1 +0.63953,1.28565,-0.367098,-1.28737,-0.692439,-0.9757,-0.886963,1.42507,1 +0.0459844,0.47245,0.0462151,-1.28737,-0.692439,-0.100528,2.14326,-0.955839,1 +-0.844335,0.00329872,0.459528,1.15743,-0.0503235,0.888797,-0.636457,-0.445645,0 +-0.250789,-0.403299,-0.367098,0.21712,-0.692439,-0.760078,-0.751146,-0.700742,0 +-1.14111,1.8799,0.976169,1.47086,3.73295,1.43419,-0.754165,-0.615709,1 +1.23308,1.03543,0.459528,0.718617,-0.692439,0.051676,-0.0871531,0.999905,1 +-0.844335,0.222236,0.976169,1.15743,0.262057,0.571706,1.76599,0.319646,1 +0.936304,0.503727,1.0795,1.2828,-0.692439,0.000941365,-0.244097,0.489711,0 +-1.14111,0.0658522,0.149543,-1.28737,-0.692439,0.546339,-0.645511,1.59513,1 +-0.844335,-0.465853,0.3562,-1.28737,-0.692439,0.698543,-0.829618,-0.615709,0 +0.63953,2.1614,1.18282,-1.28737,-0.692439,0.444869,-0.585148,2.78558,1 +-0.547562,-1.02883,-0.573754,0.342494,-0.553603,-0.45567,0.88771,-0.955839,0 +1.52985,1.53586,0.252871,0.65593,-0.692439,1.52298,-0.207879,0.82984,1 +1.52985,-0.997558,-0.367098,-1.28737,-0.692439,-1.20401,-0.995617,-0.0204831,0 +1.82662,-0.622237,0.3562,1.72161,0.869464,0.115094,-0.90809,2.53049,0 +-0.547562,0.0345755,0.0462151,0.405181,-0.692439,0.609757,-0.398023,-0.530677,0 +0.342757,0.00329872,0.149543,0.154433,0.279412,-0.734711,-0.684747,-0.27558,0 +-0.844335,0.159683,-0.470426,-1.28737,-0.692439,-0.240048,-0.370859,1.16997,1 +-0.844335,-0.872451,0.0462151,0.65593,-0.692439,-0.201997,-0.473476,-0.870806,0 diff --git a/data/pittsburg-bridges-MATERIAL.arff b/data/pittsburg-bridges-MATERIAL.arff new file mode 100755 index 0000000..3d1b712 --- /dev/null +++ b/data/pittsburg-bridges-MATERIAL.arff @@ -0,0 +1,116 @@ +@relation pittsburg-bridges-MATERIAL +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'clase' {0,1,2} +@data +0.503814,-1.62776,-1.7728,0.660918,-1.52732,-0.201322,-1.45463,0 +-0.831293,-0.0399671,-1.7728,0.660918,0.366199,-0.201322,-1.45463,0 +-0.831293,0.970444,-1.7728,-2.59756,-1.52732,-0.912659,-1.45463,0 +-0.831293,0.248722,-1.7728,0.660918,0.366199,-0.201322,-1.45463,0 +0.503814,-0.184311,-1.7728,0.660918,-1.52732,-0.201322,-1.45463,0 +-0.831293,0.104377,-1.7728,0.660918,-0.580559,-0.201322,-1.45463,0 +-0.831293,0.17655,-1.7728,-2.59756,0.366199,-0.912659,-1.45463,1 +0.503814,-1.62776,-1.7728,0.660918,0.366199,-0.201322,-1.45463,1 +-0.831293,0.970444,-1.7728,-2.59756,-1.52732,-0.912659,-1.45463,0 +-0.831293,0.248722,-1.7728,0.660918,0.366199,-0.201322,-1.45463,0 +-0.831293,0.970444,-1.7728,-0.968322,-1.52732,-0.201322,-1.45463,0 +0.503814,-1.41124,-1.7728,0.660918,0.366199,-0.201322,-1.45463,0 +-0.831293,0.537411,-1.7728,0.660918,-1.52732,-0.201322,-1.45463,0 +-0.831293,0.17655,-1.7728,-0.968322,-1.52732,-0.201322,-1.45463,0 +-0.831293,-0.0399671,-1.7728,0.660918,0.366199,-0.201322,-1.45463,1 +0.503814,-1.55558,-1.7728,-0.968322,0.366199,-0.201322,-1.45463,1 +-0.831293,0.17655,-1.7728,-0.968322,0.366199,-0.201322,-1.45463,1 +-0.831293,0.248722,-1.7728,0.660918,0.366199,-0.201322,-1.45463,0 +-0.831293,0.465238,-0.728816,0.660918,0.366199,-0.201322,-1.45463,0 +0.503814,-0.689517,-0.728816,-0.968322,-1.52732,-0.201322,-3.48345,1 +0.503814,-1.7721,-0.728816,0.660918,0.366199,-1.624,-3.48345,2 +-0.831293,-0.112139,-0.728816,0.660918,0.366199,1.22135,0.574195,0 +1.83892,1.40348,-0.728816,-0.968322,-1.52732,-0.201322,0.574195,2 +0.503814,-1.12255,-0.728816,-0.968322,-1.52732,-0.201322,0.574195,2 +-0.831293,0.970444,-0.728816,-0.968322,-1.52732,-0.201322,0.574195,2 +0.503814,-0.978206,-0.728816,-0.968322,0.366199,-0.201322,0.574195,2 +-0.831293,0.393066,-0.728816,-0.968322,-1.52732,-0.201322,0.574195,2 +-0.831293,0.0322051,-0.728816,0.660918,0.366199,-0.201322,0.574195,2 +0.503814,-1.62776,-0.728816,0.660918,0.366199,-0.201322,0.574195,2 +-0.831293,0.320894,-0.728816,0.660918,-1.52732,-0.201322,0.574195,1 +0.503814,-1.26689,-0.728816,-0.968322,0.366199,-0.201322,0.574195,2 +1.83892,1.11479,-0.728816,-0.968322,1.31296,-0.201322,0.574195,2 +0.503814,-0.473,-0.728816,0.660918,0.366199,-1.624,0.574195,1 +1.83892,1.40348,0.315164,0.660918,-1.52732,-0.201322,0.574195,1 +-0.831293,0.104377,0.315164,0.660918,0.366199,-0.201322,0.574195,2 +0.503814,-0.617345,0.315164,0.660918,-1.52732,-0.201322,0.574195,1 +0.503814,-0.545173,0.315164,-0.968322,0.366199,-0.201322,0.574195,2 +-0.831293,-0.0399671,0.315164,0.660918,-1.52732,-0.201322,0.574195,2 +-0.831293,0.104377,0.315164,-2.59756,0.366199,-0.912659,-1.45463,0 +0.503814,-0.256484,0.315164,0.660918,-1.52732,-0.201322,0.574195,2 +0.503814,-1.05038,0.315164,0.660918,-1.52732,-0.201322,0.574195,1 +0.503814,-1.19472,0.315164,0.660918,1.31296,-0.201322,0.574195,2 +1.83892,1.61999,0.315164,0.660918,-1.52732,-0.201322,0.574195,2 +0.503814,-1.33907,0.315164,0.660918,0.366199,-0.201322,0.574195,2 +-0.831293,0.8261,0.315164,-0.968322,1.31296,-0.201322,0.574195,2 +0.503814,-0.833861,0.315164,-0.968322,1.31296,-1.624,0.574195,2 +0.503814,-0.761689,0.315164,-0.968322,1.31296,-0.201322,0.574195,2 +-0.831293,0.537411,0.315164,0.660918,0.366199,-0.201322,0.574195,2 +-0.831293,0.898272,0.315164,0.660918,1.31296,-0.201322,0.574195,2 +0.503814,-0.906034,0.315164,-0.968322,-1.52732,-0.201322,0.574195,2 +-0.831293,0.609583,0.315164,0.660918,0.366199,-0.201322,0.574195,2 +0.503814,-0.689517,0.315164,-0.968322,0.366199,-0.201322,0.574195,2 +-0.831293,0.681755,0.315164,-0.968322,1.31296,-0.201322,0.574195,2 +0.503814,-1.41124,0.315164,-0.968322,0.366199,-0.201322,0.574195,2 +0.503814,-0.328656,0.315164,-0.968322,0.366199,-1.624,0.574195,2 +0.503814,-1.55558,0.315164,-0.968322,0.366199,-0.201322,0.574195,2 +-0.831293,0.17655,0.315164,-0.968322,-0.580559,1.22135,0.574195,2 +0.503814,-1.69993,0.315164,-0.968322,0.366199,-1.624,0.574195,2 +-2.1664,-1.84427,0.315164,0.660918,0.366199,-1.624,0.574195,2 +0.503814,-0.184311,0.315164,0.660918,-1.52732,-1.624,0.574195,2 +-0.831293,0.753927,0.315164,0.660918,0.366199,-0.201322,0.574195,2 +1.83892,1.69217,0.315164,-0.968322,0.366199,-0.201322,0.574195,2 +1.83892,1.25913,0.315164,0.660918,0.366199,-0.201322,0.574195,2 +-0.831293,0.970444,0.315164,-0.968322,-1.52732,-1.624,0.574195,2 +0.503814,-1.12255,0.315164,-0.968322,1.31296,-1.624,0.574195,2 +1.83892,1.11479,0.315164,-0.968322,1.31296,-0.201322,0.574195,2 +-0.831293,-0.112139,0.315164,0.660918,0.366199,1.22135,0.574195,2 +-0.831293,0.8261,0.315164,-0.968322,1.31296,-0.201322,-1.45463,2 +-0.831293,0.393066,0.315164,-0.968322,1.31296,-0.201322,0.574195,2 +-0.831293,0.320894,0.315164,-4.2268,-1.52732,-1.624,0.574195,2 +-0.831293,0.248722,0.315164,0.660918,-0.580559,1.22135,0.574195,2 +-0.831293,0.465238,0.315164,0.660918,1.31296,1.22135,0.574195,2 +-0.831293,0.104377,0.315164,0.660918,-0.580559,1.22135,0.574195,2 +-0.831293,0.0322051,0.315164,0.660918,-0.580559,1.22135,0.574195,2 +1.83892,1.47565,0.315164,0.660918,0.366199,-0.201322,0.574195,2 +-0.831293,0.898272,0.315164,0.660918,0.366199,-1.624,0.574195,2 +0.503814,-1.48341,0.315164,0.660918,1.31296,1.22135,-1.45463,2 +0.503814,-1.7721,0.315164,0.660918,0.366199,1.22135,0.574195,2 +-0.831293,0.320894,0.315164,0.660918,1.31296,1.22135,0.574195,2 +0.503814,-0.400828,0.315164,0.660918,1.31296,-0.201322,0.574195,2 +-0.831293,-0.0399671,0.315164,0.660918,-0.580559,1.22135,0.574195,2 +0.503814,-0.617345,0.315164,0.660918,1.31296,-0.201322,0.574195,2 +1.83892,1.04262,0.315164,0.660918,0.366199,1.22135,0.574195,2 +1.83892,1.18696,0.315164,0.660918,0.366199,1.22135,-1.45463,2 +0.503814,-1.41124,0.315164,0.660918,0.366199,1.22135,0.574195,2 +0.503814,-1.05038,0.315164,0.660918,0.366199,1.22135,-1.45463,2 +-0.831293,0.609583,0.315164,0.660918,0.366199,1.22135,0.574195,2 +-0.831293,1.00653,1.35914,0.660918,0.366199,1.22135,0.574195,2 +-0.831293,1.02096,1.35914,-0.968322,-0.580559,-0.201322,0.574195,2 +-0.831293,0.934358,1.35914,0.660918,0.366199,-0.201322,-1.45463,2 +1.83892,1.61999,1.35914,0.660918,1.31296,-0.201322,0.574195,2 +-2.1664,1.90868,1.35914,0.660918,-1.52732,-1.624,0.574195,2 +-2.1664,1.83651,1.35914,-0.968322,-1.52732,-1.624,0.574195,2 +0.503814,-0.184311,1.35914,0.660918,0.366199,-0.201322,0.574195,2 +0.503814,-0.256484,1.35914,0.660918,-0.580559,1.22135,0.574195,2 +0.503814,-0.833861,1.35914,0.660918,1.31296,1.22135,0.574195,2 +0.503814,-0.473,1.35914,0.660918,0.366199,1.22135,0.574195,2 +-0.831293,0.8261,1.35914,0.660918,1.31296,1.22135,-1.45463,2 +1.83892,1.18696,1.35914,0.660918,-0.580559,-1.624,0.574195,2 +1.83892,1.54782,1.35914,0.660918,0.366199,-0.201322,0.574195,2 +0.503814,-1.7721,1.35914,0.660918,0.366199,2.64403,0.574195,2 +-0.831293,0.537411,1.35914,0.660918,-0.580559,1.22135,0.574195,2 +0.503814,-1.19472,1.35914,0.660918,1.31296,1.22135,0.574195,2 +-0.831293,-0.112139,1.35914,0.660918,-0.580559,2.64403,0.574195,2 +1.83892,1.33131,1.35914,0.660918,1.31296,2.64403,0.574195,2 +0.503814,-1.33907,1.35914,0.660918,-0.580559,2.64403,0.574195,2 diff --git a/data/pittsburg-bridges-REL-L.arff b/data/pittsburg-bridges-REL-L.arff new file mode 100755 index 0000000..f813454 --- /dev/null +++ b/data/pittsburg-bridges-REL-L.arff @@ -0,0 +1,113 @@ +@relation pittsburg-bridges-REL-L +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'clase' {0,1,2} +@data +0.52195,-1.63356,-1.75664,0.674728,-1.52136,-0.137463,-1.42413,0 +-0.822072,-0.0412482,-1.75664,0.674728,0.366593,-0.137463,-1.42413,0 +-0.822072,0.972039,-1.75664,-2.55769,-1.52136,-0.924055,-1.42413,0 +-0.822072,0.248262,-1.75664,0.674728,0.366593,-0.137463,-1.42413,0 +0.52195,-0.186004,-1.75664,0.674728,-1.52136,-0.137463,-1.42413,0 +-0.822072,0.103507,-1.75664,0.674728,-0.577384,-0.137463,-1.42413,0 +-0.822072,0.175885,-1.75664,-2.55769,0.366593,-0.924055,-1.42413,0 +0.52195,-1.63356,-1.75664,0.674728,0.366593,-0.137463,-1.42413,0 +-0.822072,0.972039,-1.75664,-2.55769,-1.52136,-0.924055,-1.42413,0 +-0.822072,0.248262,-1.75664,0.674728,0.366593,-0.137463,-1.42413,0 +-0.822072,0.972039,-1.75664,-0.941481,-1.52136,-0.137463,-1.42413,0 +0.52195,-1.41642,-1.75664,0.674728,0.366593,-0.137463,-1.42413,0 +-0.822072,0.537773,-1.75664,0.674728,-1.52136,-0.137463,-1.42413,0 +-0.822072,0.175885,-1.75664,-0.941481,-1.52136,-0.137463,-1.42413,0 +-0.822072,-0.0412482,-1.75664,0.674728,0.366593,-0.137463,-1.42413,1 +0.52195,-1.56118,-1.75664,-0.941481,0.366593,-0.137463,-1.42413,0 +-0.822072,0.175885,-1.75664,-0.941481,0.366593,-0.137463,-1.42413,0 +-0.822072,0.248262,-1.75664,0.674728,0.366593,-0.137463,-1.42413,0 +-0.822072,0.465395,-0.698548,0.674728,0.366593,-0.137463,-1.42413,0 +0.52195,-0.692647,-0.698548,-0.941481,-1.52136,-0.137463,-3.43353,0 +0.52195,-1.77831,-0.698548,0.674728,0.366593,-1.71065,-3.43353,2 +-0.822072,-0.113626,-0.698548,0.674728,0.366593,1.43572,0.58526,0 +1.86597,1.4063,-0.698548,-0.941481,-1.52136,-0.137463,0.58526,0 +0.52195,-1.12691,-0.698548,-0.941481,-1.52136,-0.137463,0.58526,0 +-0.822072,0.972039,-0.698548,-0.941481,-1.52136,-0.137463,0.58526,2 +0.52195,-0.982158,-0.698548,-0.941481,0.366593,-0.137463,0.58526,0 +-0.822072,0.393018,-0.698548,-0.941481,-1.52136,-0.137463,0.58526,2 +-0.822072,0.0311294,-0.698548,0.674728,0.366593,-0.137463,0.58526,0 +0.52195,-1.63356,-0.698548,0.674728,0.366593,-0.137463,0.58526,0 +-0.822072,0.32064,-0.698548,0.674728,-1.52136,-0.137463,0.58526,2 +0.52195,-1.27167,-0.698548,-0.941481,0.366593,-0.137463,0.58526,0 +1.86597,1.11679,-0.698548,-0.941481,1.31057,-0.137463,0.58526,2 +0.52195,-0.475514,-0.698548,0.674728,0.366593,-1.71065,0.58526,2 +1.86597,1.4063,0.359547,0.674728,-1.52136,-0.137463,0.58526,2 +-0.822072,0.103507,0.359547,0.674728,0.366593,-0.137463,0.58526,2 +0.52195,-0.620269,0.359547,0.674728,-1.52136,-0.137463,0.58526,2 +0.52195,-0.547892,0.359547,-0.941481,0.366593,-0.137463,0.58526,0 +-0.822072,-0.0412482,0.359547,0.674728,-1.52136,-0.137463,0.58526,2 +-0.822072,0.103507,0.359547,-2.55769,0.366593,-0.924055,-1.42413,0 +0.52195,-0.258381,0.359547,0.674728,-1.52136,-0.137463,0.58526,2 +0.52195,-1.05454,0.359547,0.674728,-1.52136,-0.137463,0.58526,2 +0.52195,-1.19929,0.359547,0.674728,1.31057,-0.137463,0.58526,2 +1.86597,1.62344,0.359547,0.674728,-1.52136,-0.137463,0.58526,2 +0.52195,-1.34405,0.359547,0.674728,0.366593,-0.137463,0.58526,2 +-0.822072,0.827283,0.359547,-0.941481,1.31057,-0.137463,0.58526,2 +0.52195,-0.837402,0.359547,-0.941481,1.31057,-1.71065,0.58526,2 +0.52195,-0.765025,0.359547,-0.941481,1.31057,-0.137463,0.58526,0 +-0.822072,0.537773,0.359547,0.674728,0.366593,-0.137463,0.58526,2 +-0.822072,0.899661,0.359547,0.674728,1.31057,-0.137463,0.58526,2 +0.52195,-0.90978,0.359547,-0.941481,-1.52136,-0.137463,0.58526,2 +-0.822072,0.610151,0.359547,0.674728,0.366593,-0.137463,0.58526,2 +0.52195,-0.692647,0.359547,-0.941481,0.366593,-0.137463,0.58526,0 +-0.822072,0.682528,0.359547,-0.941481,1.31057,-0.137463,0.58526,0 +0.52195,-1.41642,0.359547,-0.941481,0.366593,-0.137463,0.58526,2 +0.52195,-0.330759,0.359547,-0.941481,0.366593,-1.71065,0.58526,2 +0.52195,-1.56118,0.359547,-0.941481,0.366593,-0.137463,0.58526,1 +-0.822072,0.175885,0.359547,-0.941481,-0.577384,1.43572,0.58526,1 +0.52195,-1.70593,0.359547,-0.941481,0.366593,-1.71065,0.58526,2 +-2.16609,-1.85069,0.359547,0.674728,0.366593,-1.71065,0.58526,2 +0.52195,-0.186004,0.359547,0.674728,-1.52136,-1.71065,0.58526,2 +-0.822072,0.754906,0.359547,0.674728,0.366593,-0.137463,0.58526,2 +1.86597,1.69582,0.359547,-0.941481,0.366593,-0.137463,0.58526,2 +1.86597,1.26155,0.359547,0.674728,0.366593,-0.137463,0.58526,2 +-0.822072,0.972039,0.359547,-0.941481,-1.52136,-1.71065,0.58526,2 +0.52195,-1.12691,0.359547,-0.941481,1.31057,-1.71065,0.58526,2 +1.86597,1.11679,0.359547,-0.941481,1.31057,-0.137463,0.58526,2 +-0.822072,-0.113626,0.359547,0.674728,0.366593,1.43572,0.58526,2 +-0.822072,0.827283,0.359547,-0.941481,1.31057,-0.137463,-1.42413,2 +-0.822072,0.393018,0.359547,-0.941481,1.31057,-0.137463,0.58526,2 +-0.822072,0.32064,0.359547,-4.1739,-1.52136,-1.71065,0.58526,2 +-0.822072,0.248262,0.359547,0.674728,-0.577384,1.43572,0.58526,2 +-0.822072,0.465395,0.359547,0.674728,1.31057,1.43572,0.58526,0 +-0.822072,0.103507,0.359547,0.674728,-0.577384,1.43572,0.58526,1 +-0.822072,0.0311294,0.359547,0.674728,-0.577384,1.43572,0.58526,1 +1.86597,1.47868,0.359547,0.674728,0.366593,-0.137463,0.58526,1 +-0.822072,0.899661,0.359547,0.674728,0.366593,-1.71065,0.58526,0 +0.52195,-1.4888,0.359547,0.674728,1.31057,1.43572,-1.42413,1 +0.52195,-1.77831,0.359547,0.674728,0.366593,1.43572,0.58526,2 +-0.822072,0.32064,0.359547,0.674728,1.31057,1.43572,0.58526,2 +0.52195,-0.403136,0.359547,0.674728,1.31057,-0.137463,0.58526,1 +-0.822072,-0.0412482,0.359547,0.674728,-0.577384,1.43572,0.58526,1 +0.52195,-0.620269,0.359547,0.674728,1.31057,-0.137463,0.58526,0 +1.86597,1.04442,0.359547,0.674728,0.366593,1.43572,0.58526,2 +1.86597,1.18917,0.359547,0.674728,0.366593,1.43572,-1.42413,2 +0.52195,-1.41642,0.359547,0.674728,0.366593,1.43572,0.58526,2 +0.52195,-1.05454,0.359547,0.674728,0.366593,1.43572,-1.42413,1 +-0.822072,0.610151,0.359547,0.674728,0.366593,1.43572,0.58526,2 +-0.822072,1.00823,1.41764,0.674728,0.366593,1.43572,0.58526,1 +-0.822072,1.0227,1.41764,-0.941481,-0.577384,-0.137463,0.58526,1 +-0.822072,0.93585,1.41764,0.674728,0.366593,-0.137463,-1.42413,1 +1.86597,1.62344,1.41764,0.674728,1.31057,-0.137463,0.58526,2 +-2.16609,1.91295,1.41764,0.674728,-1.52136,-1.71065,0.58526,0 +-2.16609,1.84057,1.41764,-0.941481,-1.52136,-1.71065,0.58526,2 +0.52195,-0.186004,1.41764,0.674728,0.366593,-0.137463,0.58526,1 +0.52195,-0.258381,1.41764,0.674728,-0.577384,1.43572,0.58526,2 +0.52195,-0.837402,1.41764,0.674728,1.31057,1.43572,0.58526,2 +0.52195,-0.475514,1.41764,0.674728,0.366593,1.43572,0.58526,2 +-0.822072,0.827283,1.41764,0.674728,1.31057,1.43572,-1.42413,2 +1.86597,1.18917,1.41764,0.674728,-0.577384,-1.71065,0.58526,2 +1.86597,1.55106,1.41764,0.674728,0.366593,-0.137463,0.58526,2 +0.52195,-1.77831,1.41764,0.674728,0.366593,3.00891,0.58526,2 +-0.822072,0.537773,1.41764,0.674728,-0.577384,1.43572,0.58526,1 +0.52195,-1.19929,1.41764,0.674728,1.31057,1.43572,0.58526,2 diff --git a/data/pittsburg-bridges-SPAN.arff b/data/pittsburg-bridges-SPAN.arff new file mode 100755 index 0000000..ab46949 --- /dev/null +++ b/data/pittsburg-bridges-SPAN.arff @@ -0,0 +1,102 @@ +@relation pittsburg-bridges-SPAN +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'clase' {0,1,2} +@data +0.566922,-1.64616,-1.72261,0.717636,-1.48229,-0.0568857,-1.33737,0 +-0.805626,-0.0285323,-1.72261,0.717636,0.385803,-0.0568857,-1.33737,0 +-0.805626,1.00087,-1.72261,-2.42629,-1.48229,-0.929132,-1.33737,0 +-0.805626,0.265582,-1.72261,0.717636,0.385803,-0.0568857,-1.33737,0 +0.566922,-0.175589,-1.72261,0.717636,-1.48229,-0.0568857,-1.33737,0 +-0.805626,0.118525,-1.72261,0.717636,-0.548246,-0.0568857,-1.33737,1 +-0.805626,0.192053,-1.72261,-2.42629,0.385803,-0.929132,-1.33737,0 +0.566922,-1.64616,-1.72261,0.717636,0.385803,-0.0568857,-1.33737,0 +-0.805626,1.00087,-1.72261,-2.42629,-1.48229,-0.929132,-1.33737,0 +-0.805626,0.265582,-1.72261,0.717636,0.385803,-0.0568857,-1.33737,1 +-0.805626,1.00087,-1.72261,-0.854329,-1.48229,-0.0568857,-1.33737,0 +0.566922,-1.42558,-1.72261,0.717636,0.385803,-0.0568857,-1.33737,1 +-0.805626,0.559696,-1.72261,0.717636,-1.48229,-0.0568857,-1.33737,0 +-0.805626,0.192053,-1.72261,-0.854329,-1.48229,-0.0568857,-1.33737,0 +-0.805626,-0.0285323,-1.72261,0.717636,0.385803,-0.0568857,-1.33737,1 +0.566922,-1.57263,-1.72261,-0.854329,0.385803,-0.0568857,-1.33737,1 +-0.805626,0.192053,-1.72261,-0.854329,0.385803,-0.0568857,-1.33737,0 +-0.805626,0.265582,-1.72261,0.717636,0.385803,-0.0568857,-1.33737,1 +-0.805626,0.486168,-0.574204,0.717636,0.385803,-0.0568857,-1.33737,1 +0.566922,-0.69029,-0.574204,-0.854329,-1.48229,-0.0568857,-3.29034,0 +0.566922,-1.79322,-0.574204,0.717636,0.385803,-1.80138,-3.29034,2 +-0.805626,-0.102061,-0.574204,0.717636,0.385803,1.68761,0.615613,0 +1.93947,1.44204,-0.574204,-0.854329,-1.48229,-0.0568857,0.615613,0 +0.566922,-1.13146,-0.574204,-0.854329,-1.48229,-0.0568857,0.615613,0 +-0.805626,1.00087,-0.574204,-0.854329,-1.48229,-0.0568857,0.615613,0 +0.566922,-0.984404,-0.574204,-0.854329,0.385803,-0.0568857,0.615613,1 +-0.805626,0.412639,-0.574204,-0.854329,-1.48229,-0.0568857,0.615613,1 +-0.805626,0.0449963,-0.574204,0.717636,0.385803,-0.0568857,0.615613,1 +0.566922,-1.64616,-0.574204,0.717636,0.385803,-0.0568857,0.615613,1 +-0.805626,0.339111,-0.574204,0.717636,-1.48229,-0.0568857,0.615613,1 +0.566922,-1.27852,-0.574204,-0.854329,0.385803,-0.0568857,0.615613,1 +1.93947,1.14793,-0.574204,-0.854329,1.31985,-0.0568857,0.615613,2 +0.566922,-0.469704,-0.574204,0.717636,0.385803,-1.80138,0.615613,1 +1.93947,1.44204,0.574204,0.717636,-1.48229,-0.0568857,0.615613,0 +-0.805626,0.118525,0.574204,0.717636,0.385803,-0.0568857,0.615613,1 +0.566922,-0.616761,0.574204,0.717636,-1.48229,-0.0568857,0.615613,1 +0.566922,-0.543232,0.574204,-0.854329,0.385803,-0.0568857,0.615613,1 +-0.805626,-0.0285323,0.574204,0.717636,-1.48229,-0.0568857,0.615613,1 +-0.805626,0.118525,0.574204,-2.42629,0.385803,-0.929132,-1.33737,0 +0.566922,-0.249118,0.574204,0.717636,-1.48229,-0.0568857,0.615613,1 +0.566922,-1.05793,0.574204,0.717636,-1.48229,-0.0568857,0.615613,1 +0.566922,-1.20499,0.574204,0.717636,1.31985,-0.0568857,0.615613,2 +1.93947,1.66263,0.574204,0.717636,-1.48229,-0.0568857,0.615613,2 +0.566922,-1.35205,0.574204,0.717636,0.385803,-0.0568857,0.615613,2 +-0.805626,0.853811,0.574204,-0.854329,1.31985,-0.0568857,0.615613,2 +0.566922,-0.837347,0.574204,-0.854329,1.31985,-1.80138,0.615613,0 +0.566922,-0.763818,0.574204,-0.854329,1.31985,-0.0568857,0.615613,1 +-0.805626,0.559696,0.574204,0.717636,0.385803,-0.0568857,0.615613,1 +-0.805626,0.927339,0.574204,0.717636,1.31985,-0.0568857,0.615613,1 +0.566922,-0.910875,0.574204,-0.854329,-1.48229,-0.0568857,0.615613,2 +-0.805626,0.633225,0.574204,0.717636,0.385803,-0.0568857,0.615613,1 +0.566922,-0.69029,0.574204,-0.854329,0.385803,-0.0568857,0.615613,1 +-0.805626,0.706754,0.574204,-0.854329,1.31985,-0.0568857,0.615613,1 +0.566922,-1.42558,0.574204,-0.854329,0.385803,-0.0568857,0.615613,1 +0.566922,-0.322647,0.574204,-0.854329,0.385803,-1.80138,0.615613,2 +0.566922,-1.57263,0.574204,-0.854329,0.385803,-0.0568857,0.615613,1 +-0.805626,0.192053,0.574204,-0.854329,-0.548246,1.68761,0.615613,1 +0.566922,-1.71969,0.574204,-0.854329,0.385803,-1.80138,0.615613,2 +-2.17817,-1.86675,0.574204,0.717636,0.385803,-1.80138,0.615613,1 +0.566922,-0.175589,0.574204,0.717636,-1.48229,-1.80138,0.615613,1 +-0.805626,0.780282,0.574204,0.717636,0.385803,-0.0568857,0.615613,2 +1.93947,1.73615,0.574204,-0.854329,0.385803,-0.0568857,0.615613,2 +1.93947,1.29498,0.574204,0.717636,0.385803,-0.0568857,0.615613,2 +-0.805626,1.00087,0.574204,-0.854329,-1.48229,-1.80138,0.615613,0 +0.566922,-1.13146,0.574204,-0.854329,1.31985,-1.80138,0.615613,1 +1.93947,1.14793,0.574204,-0.854329,1.31985,-0.0568857,0.615613,2 +-0.805626,-0.102061,0.574204,0.717636,0.385803,1.68761,0.615613,2 +-0.805626,0.853811,0.574204,-0.854329,1.31985,-0.0568857,-1.33737,2 +-0.805626,0.412639,0.574204,-0.854329,1.31985,-0.0568857,0.615613,1 +-0.805626,0.339111,0.574204,-3.99826,-1.48229,-1.80138,0.615613,0 +-0.805626,0.265582,0.574204,0.717636,-0.548246,1.68761,0.615613,1 +-0.805626,0.486168,0.574204,0.717636,1.31985,1.68761,0.615613,1 +-0.805626,0.118525,0.574204,0.717636,-0.548246,1.68761,0.615613,1 +-0.805626,0.0449963,0.574204,0.717636,-0.548246,1.68761,0.615613,1 +1.93947,1.51557,0.574204,0.717636,0.385803,-0.0568857,0.615613,2 +-0.805626,0.927339,0.574204,0.717636,0.385803,-1.80138,0.615613,1 +0.566922,-1.4991,0.574204,0.717636,1.31985,1.68761,-1.33737,1 +0.566922,-1.79322,0.574204,0.717636,0.385803,1.68761,0.615613,2 +-0.805626,0.339111,0.574204,0.717636,1.31985,1.68761,0.615613,1 +0.566922,-0.396175,0.574204,0.717636,1.31985,-0.0568857,0.615613,1 +-0.805626,-0.0285323,0.574204,0.717636,-0.548246,1.68761,0.615613,1 +0.566922,-0.616761,0.574204,0.717636,1.31985,-0.0568857,0.615613,1 +1.93947,1.0744,0.574204,0.717636,0.385803,1.68761,0.615613,2 +1.93947,1.22145,0.574204,0.717636,0.385803,1.68761,-1.33737,2 +0.566922,-1.42558,0.574204,0.717636,0.385803,1.68761,0.615613,2 +0.566922,-1.05793,0.574204,0.717636,0.385803,1.68761,-1.33737,2 +-0.805626,0.633225,0.574204,0.717636,0.385803,1.68761,0.615613,1 +-0.805626,1.03763,1.72261,0.717636,0.385803,1.68761,0.615613,1 +-0.805626,1.05234,1.72261,-0.854329,-0.548246,-0.0568857,0.615613,1 +-0.805626,0.964104,1.72261,0.717636,0.385803,-0.0568857,-1.33737,1 +1.93947,1.66263,1.72261,0.717636,1.31985,-0.0568857,0.615613,2 +-2.17817,1.95674,1.72261,0.717636,-1.48229,-1.80138,0.615613,1 diff --git a/data/pittsburg-bridges-T-OR-D.arff b/data/pittsburg-bridges-T-OR-D.arff new file mode 100755 index 0000000..5b1b84f --- /dev/null +++ b/data/pittsburg-bridges-T-OR-D.arff @@ -0,0 +1,112 @@ +@relation pittsburg-bridges-T-OR-D +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'clase' {0,1} +@data +0.525186,-1.64901,-1.75169,0.679528,-1.51403,-0.124053,-1.41382,0 +-0.814039,-0.0531251,-1.75169,0.679528,0.380829,-0.124053,-1.41382,0 +-0.814039,0.962439,-1.75169,-2.54428,-1.51403,-0.914891,-1.41382,0 +-0.814039,0.237036,-1.75169,0.679528,0.380829,-0.124053,-1.41382,0 +0.525186,-0.198206,-1.75169,0.679528,-1.51403,-0.124053,-1.41382,0 +-0.814039,0.0919555,-1.75169,0.679528,-0.5666,-0.124053,-1.41382,0 +-0.814039,0.164496,-1.75169,-2.54428,0.380829,-0.914891,-1.41382,0 +0.525186,-1.64901,-1.75169,0.679528,0.380829,-0.124053,-1.41382,0 +-0.814039,0.962439,-1.75169,-2.54428,-1.51403,-0.914891,-1.41382,1 +-0.814039,0.237036,-1.75169,0.679528,0.380829,-0.124053,-1.41382,0 +-0.814039,0.962439,-1.75169,-0.932376,-1.51403,-0.124053,-1.41382,1 +0.525186,-1.43139,-1.75169,0.679528,0.380829,-0.124053,-1.41382,0 +-0.814039,0.527197,-1.75169,0.679528,-1.51403,-0.124053,-1.41382,0 +-0.814039,0.164496,-1.75169,-0.932376,-1.51403,-0.124053,-1.41382,0 +-0.814039,-0.0531251,-1.75169,0.679528,0.380829,-0.124053,-1.41382,0 +0.525186,-1.57647,-1.75169,-0.932376,0.380829,-0.124053,-1.41382,0 +-0.814039,0.164496,-1.75169,-0.932376,0.380829,-0.124053,-1.41382,0 +-0.814039,0.237036,-1.75169,0.679528,0.380829,-0.124053,-1.41382,0 +-0.814039,0.454657,-0.688166,0.679528,0.380829,-0.124053,-1.41382,0 +0.525186,-0.705988,-0.688166,-0.932376,-1.51403,-0.124053,-3.41674,0 +0.525186,-1.79409,-0.688166,0.679528,0.380829,-1.70573,-3.41674,0 +-0.814039,-0.125665,-0.688166,0.679528,0.380829,1.45762,0.589094,0 +1.86441,1.39768,-0.688166,-0.932376,-1.51403,-0.124053,0.589094,0 +0.525186,-1.14123,-0.688166,-0.932376,-1.51403,-0.124053,0.589094,0 +-0.814039,0.962439,-0.688166,-0.932376,-1.51403,-0.124053,0.589094,0 +0.525186,-0.996149,-0.688166,-0.932376,0.380829,-0.124053,0.589094,0 +-0.814039,0.382117,-0.688166,-0.932376,-1.51403,-0.124053,0.589094,0 +-0.814039,0.0194152,-0.688166,0.679528,0.380829,-0.124053,0.589094,0 +0.525186,-1.64901,-0.688166,0.679528,0.380829,-0.124053,0.589094,0 +-0.814039,0.309576,-0.688166,0.679528,-1.51403,-0.124053,0.589094,0 +0.525186,-1.28631,-0.688166,-0.932376,0.380829,-0.124053,0.589094,0 +1.86441,1.10752,-0.688166,-0.932376,1.32826,-0.124053,0.589094,0 +0.525186,-0.488367,-0.688166,0.679528,0.380829,-1.70573,0.589094,0 +1.86441,1.39768,0.375363,0.679528,-1.51403,-0.124053,0.589094,0 +-0.814039,0.0919555,0.375363,0.679528,0.380829,-0.124053,0.589094,0 +0.525186,-0.633447,0.375363,0.679528,-1.51403,-0.124053,0.589094,0 +0.525186,-0.560907,0.375363,-0.932376,0.380829,-0.124053,0.589094,0 +-0.814039,-0.0531251,0.375363,0.679528,-1.51403,-0.124053,0.589094,0 +-0.814039,0.0919555,0.375363,-2.54428,0.380829,-0.914891,-1.41382,0 +0.525186,-0.270746,0.375363,0.679528,-1.51403,-0.124053,0.589094,0 +0.525186,-1.06869,0.375363,0.679528,-1.51403,-0.124053,0.589094,0 +0.525186,-1.21377,0.375363,0.679528,1.32826,-0.124053,0.589094,0 +1.86441,1.6153,0.375363,0.679528,-1.51403,-0.124053,0.589094,0 +0.525186,-1.35885,0.375363,0.679528,0.380829,-0.124053,0.589094,0 +-0.814039,0.817358,0.375363,-0.932376,1.32826,-0.124053,0.589094,1 +0.525186,-0.851068,0.375363,-0.932376,1.32826,-1.70573,0.589094,0 +0.525186,-0.778528,0.375363,-0.932376,1.32826,-0.124053,0.589094,0 +-0.814039,0.527197,0.375363,0.679528,0.380829,-0.124053,0.589094,0 +-0.814039,0.889899,0.375363,0.679528,1.32826,-0.124053,0.589094,0 +0.525186,-0.923609,0.375363,-0.932376,-1.51403,-0.124053,0.589094,0 +-0.814039,0.599737,0.375363,0.679528,0.380829,-0.124053,0.589094,0 +0.525186,-0.705988,0.375363,-0.932376,0.380829,-0.124053,0.589094,0 +-0.814039,0.672278,0.375363,-0.932376,1.32826,-0.124053,0.589094,0 +0.525186,-1.43139,0.375363,-0.932376,0.380829,-0.124053,0.589094,0 +0.525186,-0.343286,0.375363,-0.932376,0.380829,-1.70573,0.589094,0 +0.525186,-1.57647,0.375363,-0.932376,0.380829,-0.124053,0.589094,0 +-0.814039,0.164496,0.375363,-0.932376,-0.5666,1.45762,0.589094,0 +0.525186,-1.72155,0.375363,-0.932376,0.380829,-1.70573,0.589094,0 +-2.15326,-1.86663,0.375363,0.679528,0.380829,-1.70573,0.589094,0 +0.525186,-0.198206,0.375363,0.679528,-1.51403,-1.70573,0.589094,0 +-0.814039,0.744818,0.375363,0.679528,0.380829,-0.124053,0.589094,0 +1.86441,1.68784,0.375363,-0.932376,0.380829,-0.124053,0.589094,0 +1.86441,1.2526,0.375363,0.679528,0.380829,-0.124053,0.589094,0 +-0.814039,0.962439,0.375363,-0.932376,-1.51403,-1.70573,0.589094,0 +0.525186,-1.14123,0.375363,-0.932376,1.32826,-1.70573,0.589094,0 +1.86441,1.10752,0.375363,-0.932376,1.32826,-0.124053,0.589094,0 +-0.814039,-0.125665,0.375363,0.679528,0.380829,1.45762,0.589094,0 +-0.814039,0.817358,0.375363,-0.932376,1.32826,-0.124053,-1.41382,1 +-0.814039,0.382117,0.375363,-0.932376,1.32826,-0.124053,0.589094,0 +-0.814039,0.309576,0.375363,-4.15618,-1.51403,-1.70573,0.589094,0 +-0.814039,0.237036,0.375363,0.679528,-0.5666,1.45762,0.589094,0 +-0.814039,0.454657,0.375363,0.679528,1.32826,1.45762,0.589094,0 +-0.814039,0.0919555,0.375363,0.679528,-0.5666,1.45762,0.589094,0 +-0.814039,0.0194152,0.375363,0.679528,-0.5666,1.45762,0.589094,0 +1.86441,1.47022,0.375363,0.679528,0.380829,-0.124053,0.589094,0 +-0.814039,0.889899,0.375363,0.679528,0.380829,-1.70573,0.589094,0 +0.525186,-1.50393,0.375363,0.679528,1.32826,1.45762,-1.41382,1 +0.525186,-1.79409,0.375363,0.679528,0.380829,1.45762,0.589094,0 +-0.814039,0.309576,0.375363,0.679528,1.32826,1.45762,0.589094,1 +0.525186,-0.415827,0.375363,0.679528,1.32826,-0.124053,0.589094,1 +-0.814039,-0.0531251,0.375363,0.679528,-0.5666,1.45762,0.589094,0 +0.525186,-0.633447,0.375363,0.679528,1.32826,-0.124053,0.589094,0 +1.86441,1.03498,0.375363,0.679528,0.380829,1.45762,0.589094,0 +1.86441,1.18006,0.375363,0.679528,0.380829,1.45762,-1.41382,0 +0.525186,-1.43139,0.375363,0.679528,0.380829,1.45762,0.589094,0 +0.525186,-1.06869,0.375363,0.679528,0.380829,1.45762,-1.41382,1 +-0.814039,0.599737,0.375363,0.679528,0.380829,1.45762,0.589094,1 +-0.814039,0.998709,1.43889,0.679528,0.380829,1.45762,0.589094,1 +-0.814039,1.01322,1.43889,-0.932376,-0.5666,-0.124053,0.589094,0 +-0.814039,0.926169,1.43889,0.679528,0.380829,-0.124053,-1.41382,1 +1.86441,1.6153,1.43889,0.679528,1.32826,-0.124053,0.589094,0 +-2.15326,1.90546,1.43889,0.679528,-1.51403,-1.70573,0.589094,0 +-2.15326,1.83292,1.43889,-0.932376,-1.51403,-1.70573,0.589094,0 +0.525186,-0.198206,1.43889,0.679528,0.380829,-0.124053,0.589094,0 +0.525186,-0.270746,1.43889,0.679528,-0.5666,1.45762,0.589094,0 +0.525186,-0.851068,1.43889,0.679528,1.32826,1.45762,0.589094,1 +0.525186,-0.488367,1.43889,0.679528,0.380829,1.45762,0.589094,0 +-0.814039,0.817358,1.43889,0.679528,1.32826,1.45762,-1.41382,1 +1.86441,1.18006,1.43889,0.679528,-0.5666,-1.70573,0.589094,0 +1.86441,1.54276,1.43889,0.679528,0.380829,-0.124053,0.589094,0 +0.525186,-1.79409,1.43889,0.679528,0.380829,3.0393,0.589094,0 +-0.814039,0.527197,1.43889,0.679528,-0.5666,1.45762,0.589094,1 diff --git a/data/planning.arff b/data/planning.arff new file mode 100755 index 0000000..d42d4aa --- /dev/null +++ b/data/planning.arff @@ -0,0 +1,197 @@ +@relation planning +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'clase' {0,1} +@data +-0.351883,-0.530606,-0.588392,-0.205933,-0.245967,-0.416094,-0.595394,0.572009,0.866364,-0.0624702,-0.00226509,-0.987931,0 +-0.284001,-0.421044,0.750898,-0.149614,1.04223,-0.374312,-0.613177,1.28937,-0.0803969,0.132803,-0.0630142,0.212911,0 +-0.252349,1.35837,1.28402,0.992193,0.0945408,1.40564,-0.0116999,-0.166989,-1.78916,-0.0797855,0.243928,1.90172,1 +1.36487,1.0995,0.455053,0.836363,-0.456832,0.999226,1.30595,0.194581,-2.24562,-0.843012,1.04822,1.72369,0 +-0.821941,0.308253,0.23645,0.19895,-0.0607753,0.388551,-0.400461,-1.5044,-0.19603,0.37324,-0.381211,0.564927,0 +0.595607,0.81642,0.62489,0.163111,0.345727,0.441761,1.34233,-1.87963,-0.245407,0.806206,-0.877178,1.09072,0 +-0.0349069,0.692113,1.72988,1.35176,1.09782,0.540762,0.564995,-1.68499,0.561357,-0.083355,0.141185,-1.2131,1 +0.603789,0.230077,1.2825,0.841517,1.0436,0.03913,0.905636,-0.876154,-0.501445,-1.71704,1.87061,-1.54721,0 +2.01666,-0.000144306,-2.50897,-1.8099,-1.64211,-0.523604,1.86634,1.28325,0.205108,0.356759,-0.385747,0.184453,0 +1.71569,0.874457,-1.70865,-1.82209,-1.36553,0.339595,1.60745,1.16506,0.526584,-0.26813,0.289585,-0.979072,0 +0.270283,-0.0239274,0.715404,0.0657292,0.513194,0.161213,-0.065746,-0.358912,-0.123316,0.0515818,-0.0203761,0.194216,1 +0.974769,1.22068,2.73632,2.18294,1.44658,1.13989,1.07772,-0.381754,-0.963554,-1.04278,1.15056,0.0567448,0 +-0.453012,-0.101197,1.6628,0.733985,1.37163,-0.024169,-0.157483,-0.836285,-0.434244,-1.11128,1.18859,-0.828312,0 +-1.34667,0.531468,1.20195,0.749374,0.50084,0.736883,-0.892113,-1.46667,-0.0430986,-0.13997,0.0880204,-0.0672726,0 +-0.349004,-0.8551,-0.622837,-1.0163,0.163145,-0.764104,-0.762747,0.751227,-0.339427,-0.988408,1.10512,-0.567048,1 +0.00670542,-2.34941,-1.60742,-2.42661,0.690457,-2.58703,-0.124529,0.628415,0.767122,-0.145008,0.129299,-1.05195,0 +1.13757,1.81467,0.413264,1.78143,-1.43441,2.06238,0.8414,-0.681769,0.470498,-0.247843,0.212181,-0.722387,0 +0.627446,2.58716,1.21702,2.03347,-0.874975,2.48619,0.923681,0.123527,1.41093,0.948847,-1.05079,-0.774377,0 +-0.245638,0.0728789,0.229398,0.528889,-0.215825,0.4358,-0.647826,-0.0917699,0.490179,0.45,-0.487511,-0.000507014,1 +0.76205,0.914052,0.14892,0.200956,-0.38453,0.777428,0.945063,-0.739002,2.05201,2.00875,-2.20886,-0.38477,0 +1.2086,-0.0590755,0.0400189,-0.364716,0.695847,-0.701864,1.73278,0.121279,1.77109,0.930357,-1.06259,-1.16799,0 +1.26347,-0.217405,1.18651,-0.061558,1.5401,-0.543394,1.27469,0.27295,1.10902,-0.216971,0.0990981,-1.22645,0 +-1.66513,-2.32604,-0.0267862,-1.04321,1.3847,-1.87624,-2.08658,-0.254578,0.122963,0.437627,-0.37906,0.0615756,1 +-0.820781,-0.834443,0.385637,-0.328613,0.815239,-0.692291,-0.63624,-0.578827,0.402746,1.65598,-1.71984,0.967045,0 +0.756167,0.322138,0.126338,0.568669,-0.230822,0.25774,0.622467,0.93383,1.18122,0.816805,-0.880725,-0.524875,0 +0.801988,-0.706959,-0.395066,-0.792934,0.344238,-0.841633,0.547627,0.413772,1.55017,0.725337,-0.814957,-0.978114,0 +-1.27224,-1.42654,0.0329672,-0.409432,0.943713,-1.22155,-1.12562,-1.67251,-0.0753512,0.0177136,-0.0163338,0.0148604,1 +-1.50785,-1.18027,-1.51518,-1.12966,-0.415405,-1.14808,-1.06881,-1.41515,-0.58329,-0.848218,0.823379,-0.210903,0 +0.461479,-0.00413659,-0.902567,-0.499906,-0.707865,0.00411295,0.0771065,0.344188,-0.415154,-0.632319,0.698326,-0.113213,0 +-0.122721,1.23625,-0.812811,0.00199852,-1.69104,1.37415,-0.408644,1.12127,0.907909,0.321857,-0.334895,-0.763183,0 +0.0487163,0.544311,0.600032,0.029973,0.0317721,0.717365,-0.109343,-0.370772,-0.46812,0.66102,-0.692841,1.37811,1 +-1.56187,0.180089,-0.00900695,0.679589,-0.56261,0.602953,-1.63881,-0.287959,-0.698175,-0.757311,0.782702,0.311984,0 +0.0616878,-0.189337,-1.81418,-1.17276,-0.920974,-0.555689,0.265919,0.0944067,-0.438731,-1.46225,1.50892,-0.784912,0 +-0.0951784,0.473092,-0.970759,-0.536516,-1.02944,0.395106,-0.0234015,0.240029,-0.10309,0.345553,-0.390806,0.587525,0 +0.943303,1.01002,0.456277,1.5745,-0.5727,1.03163,0.430588,2.57925,1.61566,1.53227,-1.69591,-0.184511,1 +1.55725,1.26639,-0.460169,0.669717,-1.02625,0.823267,1.56314,2.15316,1.31085,1.49737,-1.69329,0.137285,0 +1.03577,-0.90949,-0.584516,-0.27233,0.191313,-1.01987,0.824883,-0.825484,1.29766,0.328441,-0.292546,-1.56038,0 +0.701418,-0.37478,-1.10455,-0.559915,-0.589207,-0.509306,0.485682,0.530254,0.502783,-0.0506527,0.0750965,-0.773179,0 +0.825975,0.592736,-2.63521,-2.65019,-1.68389,-0.0915348,1.13685,0.526765,1.22668,1.12933,-1.16694,-0.346309,1 +-0.575353,1.08394,-1.90658,-1.92108,-1.85085,0.80788,-0.123918,-0.0921911,0.708956,0.83436,-0.840747,-0.10163,0 +1.16634,-0.157557,-0.747009,0.302281,-0.702684,-0.146707,0.430501,2.57333,0.4665,-0.240139,0.188612,-0.216267,0 +2.02639,0.233258,-0.327574,0.661998,-0.407309,-0.0119394,1.75091,0.639268,0.546959,1.08897,-1.17599,0.616408,0 +1.17649,0.320054,1.06094,1.53053,0.338868,0.427216,0.620525,1.41247,-0.513111,-0.852,1.00295,-0.198898,1 +0.532282,0.156228,1.78872,1.12838,1.3834,0.0615968,0.499341,1.31593,-0.390048,-0.348928,0.394111,0.210564,0 +0.554178,-0.989331,-0.0385478,-0.391018,0.449051,-0.744809,-0.232475,0.697121,-0.510133,-1.04953,1.12541,-0.381149,0 +-0.179622,-1.85091,0.856333,-0.429419,1.9938,-1.77333,-0.3388,-0.0374748,-0.352664,-0.30009,0.377509,0.019275,0 +1.34886,-0.11914,-0.375163,-0.489283,-0.0670365,-0.325158,1.01927,1.21713,-0.955213,-1.0033,1.0103,0.354545,1 +0.453194,-0.916315,0.927467,0.466363,1.39332,-0.930095,-0.025195,1.84002,-0.741637,-2.1738,2.24955,-1.0055,0 +-0.578564,-0.11637,1.9156,0.520637,1.74134,-0.0656443,-0.283598,-0.486815,1.15911,1.42582,-1.55879,0.0469665,0 +0.969466,0.0260395,1.49599,0.689728,1.06642,0.159568,0.478831,0.742468,-1.20177,-0.786633,0.899236,0.584173,0 +0.245964,0.718084,-1.05897,0.773886,-1.84804,0.968576,-0.142013,0.347935,0.241911,0.251541,-0.239347,0.0355608,1 +2.03907,2.07668,-0.563097,0.868908,-1.89173,1.79581,2.19912,-0.832073,-0.886502,0.524636,-0.448114,1.41618,0 +-1.38712,1.57273,1.94789,2.01649,0.264741,1.88541,-1.2225,-0.063696,0.893204,0.574642,-0.618117,-0.356276,0 +-1.92313,0.294473,1.83057,0.844179,1.41314,0.406807,-1.63453,0.549658,1.14794,-0.232411,0.134114,-1.29412,0 +-0.50946,-0.120747,0.241022,0.092397,0.410876,-0.22354,0.0742176,-1.73362,-0.734804,-0.0139232,-0.0364059,0.996616,1 +-1.27485,1.34514,0.574679,1.07485,-0.587718,1.44832,-0.487847,-1.89371,0.0750026,1.29324,-1.42923,1.39086,0 +-0.010708,-1.37283,-0.0927454,-2.01848,1.43011,-1.61731,0.0653503,-0.0413428,-0.130579,0.250817,-0.204061,0.22098,0 +-0.289201,0.578669,0.0832175,-0.224928,-0.142791,0.476938,0.0857556,-0.611978,0.186963,0.76904,-0.853831,0.59821,0 +-0.708673,-0.704197,-0.992265,-1.89819,-0.330204,-0.461166,-1.12639,0.36566,0.87699,0.466832,-0.481667,-0.574141,1 +-0.23932,-2.30465,0.139668,-1.72068,1.67638,-2.1202,-0.710316,1.05496,-0.4826,0.306379,-0.20644,0.735651,0 +0.0398533,-1.12565,-0.0879399,-0.718866,0.70946,-1.01544,-0.201427,-0.714093,-1.35538,-0.744961,0.909907,0.772227,0 +-1.52837,-1.76361,-0.407685,0.0313367,0.44494,-1.37923,-1.52771,-0.955195,-1.43025,-0.222536,0.286997,1.55201,0 +-0.525452,-0.0792505,0.604928,0.682469,0.504783,-0.0805265,-0.363347,0.511391,-1.11786,-0.811332,0.895893,0.497733,1 +0.401697,-1.34545,0.453071,-0.787103,1.44379,-1.51945,0.788096,-1.06586,-1.98098,-0.0280122,0.125766,2.17579,0 +0.641304,-0.303223,-0.142292,-0.0462459,0.219707,-0.569072,0.764073,0.957809,-0.168161,-1.06503,1.09878,-0.766804,0 +2.09113,0.203286,-0.770206,0.138268,-0.704697,-0.0432071,1.76643,-0.0287542,-0.930963,-2.56701,2.66879,-1.33537,0 +-0.294793,1.56249,0.454995,1.37814,-1.03558,1.75877,0.0195003,-1.66969,0.763472,0.407442,-0.56238,-0.314613,1 +-1.4625,0.610397,0.72336,0.584058,-0.0783904,0.981984,-1.32909,-1.23676,0.708548,0.229708,-0.336872,-0.409792,0 +0.642339,0.431935,-1.85701,-1.03561,-1.85327,0.419671,0.421293,-0.149432,1.36892,1.86938,-1.90854,0.0737065,0 +-0.469398,-0.505885,-1.04184,-0.971074,-0.377209,-0.548317,-0.447242,0.074087,0.42877,0.633006,-0.599712,0.0158318,0 +-0.201287,2.39903,0.7203,1.47234,-0.918961,2.14983,0.672018,-1.0086,0.446819,0.433192,-0.380456,-0.482194,1 +-2.74099,1.24995,0.77462,0.796365,-0.320408,1.58343,-2.094,-1.84976,1.27914,1.50227,-1.54065,-0.343436,0 +-0.398429,0.365874,-0.313819,-0.758647,0.000655157,-0.0286589,0.208244,-0.0343121,0.113708,-0.798632,0.794245,-0.963598,0 +-0.0625983,0.405781,-0.825896,-0.220331,-0.816811,0.160948,0.470998,-0.590273,0.793513,0.618625,-0.683711,-0.457532,0 +-0.462976,-0.322552,1.23576,0.510329,1.29757,-0.326345,-0.349863,0.272485,1.15883,0.272014,-0.304714,-1.21331,1 +0.290397,0.0789041,0.714792,-0.220669,1.04081,-0.250945,0.622401,-0.624742,1.61235,0.533484,-0.59349,-1.49888,0 +-0.928477,-1.03414,-0.398592,-1.01712,0.18649,-0.672476,-1.43223,0.718567,-0.114263,-0.168755,0.190304,0.0762985,0 +-0.0857863,-0.216347,0.210173,-0.312909,0.183988,0.0579282,-0.623235,0.238205,0.64308,-0.338026,0.316131,-0.900504,0 +-0.68568,-0.889068,0.318961,-0.647727,0.922612,-0.749979,-0.998984,0.839183,-0.918441,-1.47292,1.55486,-0.163877,1 +-0.54772,-2.60646,-1.57463,-2.59817,0.450897,-2.31798,-1.45614,1.67026,-1.50794,-0.951989,1.01499,1.19604,0 +-0.708321,0.259419,0.75288,0.546891,0.171061,0.680332,-1.33991,0.844686,1.14096,0.060934,-0.0498372,-1.14306,0 +0.103857,0.403124,0.758242,1.1617,-0.0735011,0.694878,-0.599387,2.47796,-1.18111,-2.46662,2.69231,-0.942826,0 +-0.269087,0.958648,0.384268,1.89475,-0.901362,1.30553,-0.659826,1.14659,-1.19098,-1.94735,2.08033,-0.198557,1 +0.565902,1.77735,-0.0739257,1.73181,-2.19309,2.42088,-0.476174,1.25253,0.677711,0.933322,-0.831704,-0.0250944,0 +1.05417,-0.200863,0.938629,0.298918,1.12534,-0.462354,1.34403,-1.04336,-0.113398,-0.190494,0.186874,-0.0784068,0 +1.47078,-0.630088,0.431273,-0.0121109,0.997452,-0.9532,1.54708,0.0338637,-0.88434,-1.11097,1.10832,0.20057,0 +0.186196,-1.63441,-0.43365,-0.400213,0.671747,-1.53966,-0.326887,0.917707,0.351473,-0.466286,0.414667,-0.625801,1 +0.0458266,0.226027,1.76033,2.44913,0.797955,0.372842,0.490897,-1.44117,1.10378,0.94245,-1.12595,-0.408445,0 +-1.04709,0.234769,-1.11032,-1.52609,-0.804771,0.238919,-1.06961,0.683297,-0.627608,-0.734222,0.736763,0.221764,0 +0.340506,0.525529,-0.411706,0.0790014,-0.353256,0.113999,0.890035,-0.069303,1.37777,1.26247,-1.39533,-0.303658,0 +1.31362,0.126113,-0.726552,0.071614,-0.564121,-0.182033,1.28241,0.846056,0.172874,-0.0446342,0.0196353,-0.160366,1 +0.941025,-0.473011,-1.51579,-0.31966,-1.24364,-0.348288,0.364454,0.76102,0.148694,0.471712,-0.506759,0.509466,0 +-0.530941,1.52152,0.764974,0.946557,-0.338027,1.38424,0.484111,-2.28556,-1.4697,0.537149,-0.538015,2.15975,0 +-0.99553,1.51136,0.551686,0.513644,-0.41421,1.36552,0.0565572,-2.06425,-2.87338,-0.0473563,0.213434,3.00556,0 +-0.221836,-0.20344,-1.06946,0.0387053,-1.11877,0.0635362,-0.618632,0.397287,0.362935,0.284294,-0.314774,-0.0836536,1 +0.471029,0.194846,0.119577,-0.243318,0.157333,0.109734,0.0876212,1.43172,-0.275428,-0.664256,0.821867,-0.508294,0 +-1.54238,-2.17511,-1.9148,-2.29759,0.17284,-2.25445,-1.36212,0.550873,-0.409525,-0.330649,0.307525,0.317042,0 +-0.370609,-1.41659,-0.183571,-0.684869,0.513278,-1.0494,-1.04371,1.1585,-0.284973,0.109196,-0.138956,0.559809,0 +0.0629079,-0.68664,-0.745698,-1.03812,0.109595,-0.92344,0.32878,0.0444085,0.421326,0.115787,-0.176437,-0.368638,1 +-0.328766,-0.41078,0.116011,0.126769,0.28408,-0.283821,-0.622144,0.78567,-0.999021,-1.01626,1.15731,0.16272,0 +1.18641,0.134647,0.287448,0.543625,0.277326,-0.154351,1.28128,0.442841,1.17671,0.298792,-0.407525,-0.964675,0 +1.20097,-0.824466,0.787296,-0.370329,1.59447,-1.18895,1.19708,0.929541,0.658254,0.0152825,-0.0800523,-0.577523,0 +0.580527,1.19041,-0.841865,-0.489936,-1.25813,0.946857,0.812774,-0.258337,1.1574,0.93666,-1.07992,-0.322305,1 +-0.978275,0.903606,-1.79675,-1.79591,-1.69152,0.705515,-0.500546,-0.267236,1.80941,1.82143,-1.9659,-0.405542,0 +-0.904676,-0.427321,-0.949719,0.121221,-0.869731,-0.0818722,-1.34923,0.858226,-1.70618,-0.346734,0.554607,1.57224,0 +-0.248475,-0.752935,-0.160275,-0.522724,0.3645,-0.691202,-0.358983,0.210614,-1.66045,-0.842499,0.989312,0.955072,0 +-1.04812,1.65452,0.790094,0.793752,-0.438206,1.71345,-0.493346,-1.40929,0.835425,0.0339427,-0.135874,-0.908226,1 +0.533857,0.838952,-0.44178,0.361952,-1.36162,1.15824,0.332751,-1.91596,-0.757851,0.0121121,-0.00707415,0.849238,0 +-1.38621,-0.0872059,-0.519326,0.365146,-0.801436,0.335983,-1.44924,-1.14395,-0.836616,-0.516059,0.599266,0.449365,0 +-4.19496,-0.966121,-0.0895252,0.533535,0.187504,-0.497728,-3.23168,-2.49532,-0.964146,-1.46227,1.52087,-0.405213,0 +-0.86509,-1.18671,-0.662819,0.316122,-0.428683,-0.660033,-1.53225,1.32066,-1.21488,-0.245905,0.421965,1.07129,1 +-3.43348,-2.60906,-0.239494,-1.2907,1.33555,-2.07822,-3.58515,1.12835,-0.297842,0.202557,-0.105845,0.436854,0 +0.610252,0.881594,-0.162385,-0.703695,-0.175424,0.553131,0.648693,0.0602968,0.818905,0.55118,-0.498414,-0.695988,0 +1.05077,-0.478195,0.530384,-0.604051,1.18422,-0.796066,1.29426,-1.21317,-0.300493,0.408445,-0.385486,0.6628,0 +-0.577736,0.411408,2.17817,0.589285,1.91978,0.217986,-0.18775,0.671799,0.344865,0.909323,-0.805595,0.193872,1 +-0.804955,0.426829,2.9369,1.57068,2.02994,0.690772,-0.905598,0.336178,0.713035,0.144586,-0.157483,-0.559834,0 +0.955504,0.908738,-0.547477,0.50399,-1.18833,0.765381,1.0129,0.628364,1.91065,2.34885,-2.57878,0.0700759,0 +1.47983,-1.37356,-0.222055,-0.862574,1.03319,-1.65721,1.40106,-0.441209,0.269954,0.531593,-0.634225,0.290009,0 +0.139646,-0.614641,0.326247,-0.0164591,0.919549,-0.854422,0.606386,-0.805046,0.964872,1.58445,-1.8437,0.786683,1 +-2.14296,0.302236,0.231618,0.878297,-0.204905,0.445596,-1.29095,-1.73977,0.0827669,0.517049,-0.636522,0.640352,0 +0.251453,2.61352,-0.700121,0.280601,-2.25643,2.43424,0.613782,-0.0379683,-3.7885,-1.69536,2.03384,2.57435,0 +0.851558,1.36491,-0.977199,0.341771,-1.97465,1.49114,0.427599,-0.210773,-1.51652,-2.81517,2.89543,-0.746392,0 +1.2139,-1.78805,0.0267038,-0.722786,1.45159,-2.09697,1.45862,-1.08263,-0.507074,-0.532611,0.607814,-0.1956,1 +-1.69432,-0.599662,-0.426627,-0.640734,-0.189438,-0.151791,-1.80688,-1.32565,0.629885,0.462397,-0.508387,-0.237434,0 +0.138883,0.181756,1.48879,0.808246,1.17964,0.0633729,0.500388,-0.397981,-1.34192,-0.111071,0.168757,1.34668,0 +-0.202841,-0.622195,0.0775932,0.428252,0.318543,-0.563135,-0.254971,0.715931,-0.541582,0.0998883,-0.0294313,0.647326,0 +-0.159324,-0.2896,-0.447142,-1.32089,0.269859,-0.468538,-0.0343722,-0.338138,-0.413951,0.205394,-0.109418,0.545323,1 +-0.648062,0.483225,0.241013,-0.280703,0.196785,0.317776,-0.327171,0.41248,0.461279,0.183839,-0.160856,-0.382017,0 +-0.0957294,-0.653245,0.0331327,-0.465207,0.252806,-0.409613,-0.33352,-0.283437,1.03109,0.941656,-1.10056,-0.0943657,0 +-0.033896,-0.0957578,-0.677652,-1.09262,-0.208547,-0.22614,0.0300398,-0.269691,-0.037955,-0.398491,0.407689,-0.262872,0 +0.871154,1.15279,1.03788,1.33214,-0.0766663,1.04187,1.25991,-0.568698,-0.572236,-0.253516,0.222851,0.530328,1 +0.970999,-1.53113,0.759349,-0.612665,2.10161,-1.86916,1.22409,-1.03834,-1.72841,-0.530043,0.648171,1.39643,0 +0.254912,-0.124641,2.08043,1.82315,1.47523,0.0926352,0.0266011,0.141041,0.547836,1.16367,-1.20352,0.451131,0 +-0.789978,0.935412,-0.506999,-0.0380116,-1.00769,0.973079,-0.756027,0.447363,1.36951,0.56388,-0.603812,-1.02364,0 +1.2256,-0.10865,-0.536403,-0.00155121,-0.787634,0.117299,0.658817,0.0393183,0.602045,1.17383,-1.2851,0.506862,1 +0.384089,0.035053,-0.358348,0.093815,-0.404016,-0.000164703,0.297928,0.628906,0.122957,-0.0199884,0.124373,-0.414402,0 +0.254912,-0.124641,2.08043,1.82315,1.47523,0.0926352,0.0266011,0.141041,0.547836,1.16367,-1.20352,0.451131,0 +-0.789978,0.935412,-0.506999,-0.0380116,-1.00769,0.973079,-0.756027,0.447363,1.36951,0.56388,-0.603812,-1.02364,0 +1.2256,-0.10865,-0.536403,-0.00155121,-0.787634,0.117299,0.658817,0.0393183,0.602045,1.17383,-1.2851,0.506862,1 +0.384089,0.035053,-0.358348,0.093815,-0.404016,-0.000164703,0.297928,0.628906,0.122957,-0.0199884,0.124373,-0.414402,0 +0.830864,-0.321093,0.507712,0.716514,0.276256,-0.133045,0.205401,1.28059,-0.349054,-0.942207,0.948635,-0.220945,0 +1.51246,0.799826,-0.348644,0.199148,-0.795374,0.546303,1.73038,-0.335864,0.514143,0.639169,-0.795535,0.190508,0 +-0.947389,-0.152983,-1.02808,-0.606252,-0.83808,0.0213255,-0.87564,-1.03031,-0.550944,0.187417,-0.150461,0.745828,1 +-0.217735,1.15597,-0.376678,0.460023,-1.3129,1.25868,-0.0654187,-0.368318,0.472068,0.0182667,-0.077546,-0.512095,0 +0.702744,-0.283791,0.242759,1.34158,0.0500437,-0.201821,0.412719,0.728825,-0.732173,0.307616,-0.273956,1.28434,0 +0.0205287,-0.929105,0.227154,0.940823,0.412743,-0.793369,-0.0589537,0.428242,-0.0203011,-0.0415246,0.0571774,-0.0785624,0 +-0.928477,-0.616646,-0.95951,-0.726924,-0.671158,-0.253493,-1.32226,0.169665,-1.6133,-2.04874,2.14314,0.076062,1 +-0.414524,0.263777,-0.847548,0.0262502,-0.999653,0.260854,-0.228788,0.119189,-0.822319,-1.74949,1.77286,-0.58318,0 +1.53448,1.24428,0.512199,0.0136442,-0.0633574,0.978521,1.46159,-0.255684,-0.0519929,0.543476,-0.549063,0.595277,0 +-0.335954,0.923091,0.347899,0.902422,-0.430214,0.912669,-0.198629,0.911221,0.496828,0.223941,-0.204268,-0.45394,0 +0.619678,-0.032198,-2.15315,-0.531846,-2.07487,0.0615522,0.53423,-1.20764,0.482776,0.944271,-1.05564,0.420512,1 +1.54488,-0.876017,-0.592093,0.147874,-0.114862,-0.947881,1.31363,-0.156432,-0.281118,-0.490075,0.517739,-0.246757,0 +-0.90132,-2.04351,0.0505305,-1.24566,1.39596,-1.83146,-1.04057,-0.199029,-0.922091,-0.836779,0.812941,0.528801,0 +-0.604685,-0.340109,-0.842215,-1.23468,-0.117885,-0.637101,0.107047,-0.540999,0.427913,0.51329,-0.602707,-0.0436633,0 +-0.0403776,0.383145,1.49701,1.55841,0.887898,0.414451,0.00991534,-0.292145,0.452428,-0.882513,0.852251,-1.3908,1 +0.279335,-0.267171,0.888826,0.488407,0.812072,-0.174238,0.247067,-0.971603,-0.764805,-1.02168,1.07974,-0.189165,0 +0.26152,1.91455,1.08338,1.0996,-0.411252,1.87697,1.02167,-0.368085,1.70213,2.04692,-1.5221,0.129775,0 +0.025962,-0.26949,-0.932875,-0.734256,-0.33809,-0.453324,0.141388,0.310391,-1.78733,-0.220155,0.339682,1.93365,1 +-1.04489,0.0184584,0.362557,0.125293,0.206396,0.193083,-1.29304,0.50028,2.05201,0.594906,-0.498996,-2.54139,0 +-0.12248,0.0169338,1.01921,0.746616,0.788558,0.0578243,-0.5566,1.19457,-1.96525,-3.73124,2.89543,-3.24096,1 +0.0451575,-1.41279,-1.43047,0.400813,-0.728106,-1.08092,-0.992831,0.44328,-0.68606,-0.0280426,0.0297506,1.30284,0 +-1.32935,-0.590623,0.64561,2.44913,-0.0991371,0.00347644,-1.77125,-0.290233,-1.48503,-0.119837,0.138033,2.55094,1 +-0.629502,-0.000930469,0.272623,0.202988,0.101792,0.112749,-0.729909,0.439973,-0.228193,-0.901959,0.681607,-1.20924,0 +0.649424,-0.693595,-0.26406,-0.610051,0.985076,-1.50631,2.19912,-2.6495,0.102238,0.822758,-0.63469,0.598569,1 +0.568347,-0.598959,-0.616251,-1.05223,0.172032,-0.764748,0.281541,0.819674,0.708589,-0.0407775,0.0134301,-1.4004,0 +-0.384385,0.995299,-0.253056,0.321857,-0.924141,1.0116,0.276981,-0.643656,1.38974,2.34885,-1.80224,1.69196,1 +0.247414,0.121661,-1.16531,-1.13036,-0.625557,-0.116394,0.695823,-1.38849,-0.604644,-0.900395,0.721935,-1.08308,0 +-0.12248,0.0169338,1.01921,0.746616,0.788558,0.0578243,-0.5566,1.19457,-1.96525,-3.73124,2.89543,-3.24096,1 +0.247414,0.121661,-1.16531,-1.13036,-0.625557,-0.116394,0.695823,-1.38849,-0.604644,-0.900395,0.721935,-1.08308,0 +-1.30248,0.991444,-2.00648,-1.19766,-2.04007,0.906658,-0.521296,-0.380229,-0.630647,-0.330532,0.277147,0.0965854,1 +1.1455,1.03862,0.16329,-0.36082,-0.598835,1.22085,0.429912,1.55319,1.02812,-0.44761,0.315142,-2.41095,0 +-0.283773,-0.263759,0.811163,1.05348,0.452428,-0.119152,-0.154245,-0.723498,0.505761,0.460319,-0.381793,-0.292464,1 +1.14662,0.555486,0.968033,-0.298318,0.796865,0.211094,1.70481,-0.57738,0.489955,0.889386,-0.655712,0.404799,0 +-0.997726,0.386922,-0.740861,0.401926,-1.21706,0.734013,-1.10219,-0.330412,0.215053,0.224478,-0.168918,-0.0817739,1 +-0.587347,-0.626102,0.301943,-0.0800737,0.712984,-0.61078,-0.678111,-0.467591,0.384757,0.271361,-0.268094,0.0219915,0 +0.966669,-0.212578,0.807783,-0.538887,1.17866,-0.562517,1.34455,-0.569887,1.04374,0.668141,-0.563775,-0.579678,1 +0.478362,-2.32727,-0.0657311,-1.78079,1.95688,-2.6417,0.25514,-0.867162,0.703164,2.32569,-1.77555,3.00556,0 +-1.11976,0.728321,-0.773528,0.303298,-1.62566,1.30536,-1.83878,1.13238,0.428382,-0.0194585,-0.00549013,-0.288244,1 +-1.60436,0.671821,-2.02006,-0.6945,-1.7963,0.533143,-1.13932,1.33524,-0.605847,0.0610367,-0.0729114,1.99971,0 +0.638549,-0.459284,0.118493,-2.14595,1.13738,-0.882697,0.405365,1.83832,-0.187664,-0.945499,0.705566,-1.15228,1 +-0.763609,-1.35342,0.650476,-0.560012,1.34197,-1.2052,-1.08888,-0.671562,-0.658466,-0.0770167,0.00997067,1.43728,0 +0.805012,-0.112679,-0.336754,-0.125352,-0.226292,-0.100945,0.287324,1.27759,-1.29597,-0.551334,0.492909,1.48098,1 diff --git a/data/post-operative.arff b/data/post-operative.arff new file mode 100755 index 0000000..0348ae1 --- /dev/null +++ b/data/post-operative.arff @@ -0,0 +1,101 @@ +@relation post-operative +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'clase' {0,1,2} +@data +0.111882,-1.33767,-1.03965,0.718291,-0.994429,-0.202146,-0.031621,1.47136,0 +0.111882,1.59868,-1.03965,-1.07744,-0.994429,-0.202146,-0.031621,-0.192238,2 +1.79011,-1.33767,-1.03965,-1.07744,-0.994429,-0.202146,-1.45457,-0.192238,0 +0.111882,-1.33767,0.951172,-1.07744,-0.994429,3.43649,-1.45457,1.47136,0 +0.111882,0.130505,-1.03965,-1.07744,-0.994429,-0.202146,-0.031621,-0.192238,0 +1.79011,-1.33767,0.951172,0.718291,-0.994429,-0.202146,1.39132,1.47136,2 +0.111882,-1.33767,-1.03965,-1.07744,-0.994429,-0.202146,-1.45457,-1.85584,2 +1.79011,0.130505,-1.03965,0.718291,0.994429,3.43649,-0.031621,-0.192238,2 +0.111882,1.59868,0.951172,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,2 +0.111882,-1.33767,-1.03965,0.718291,0.994429,-0.202146,-1.45457,-0.192238,2 +0.111882,0.130505,0.951172,0.718291,-0.994429,-0.202146,-0.031621,1.47136,0 +0.111882,-1.33767,0.951172,-1.07744,-0.994429,-0.202146,-1.45457,-0.192238,0 +1.79011,1.59868,-1.03965,-1.07744,0.994429,-0.202146,1.39132,1.47136,0 +0.111882,1.59868,0.951172,0.718291,0.994429,-0.202146,-1.45457,-0.192238,0 +0.111882,-1.33767,0.951172,-1.07744,0.994429,3.43649,-0.031621,1.47136,2 +1.79011,1.59868,-1.03965,-1.07744,0.994429,-0.202146,1.39132,-0.192238,0 +-1.56635,1.59868,0.951172,-1.07744,0.994429,-0.202146,-1.45457,1.47136,0 +0.111882,-1.33767,0.951172,-1.07744,0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,1.59868,0.951172,0.718291,0.994429,-0.202146,1.39132,1.47136,0 +0.111882,0.130505,0.951172,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,0 +-1.56635,1.59868,0.951172,0.718291,0.994429,-0.202146,-0.031621,1.47136,0 +-1.56635,0.130505,-1.03965,-1.07744,0.994429,-0.202146,1.39132,-0.192238,2 +0.111882,0.130505,0.951172,0.718291,0.994429,-0.202146,1.39132,1.47136,0 +0.111882,0.130505,0.951172,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +1.79011,1.59868,0.951172,0.718291,-0.994429,-0.202146,-1.45457,-0.192238,0 +-1.56635,0.130505,0.951172,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +1.79011,0.130505,0.951172,-2.87316,-0.994429,-0.202146,-1.45457,-0.192238,0 +-1.56635,0.130505,-1.03965,-1.07744,-0.994429,-0.202146,-1.45457,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,-0.994429,-0.202146,1.39132,1.47136,0 +0.111882,0.130505,0.951172,0.718291,0.994429,-0.202146,1.39132,-0.192238,2 +0.111882,0.130505,0.951172,-1.07744,0.994429,-0.202146,-0.031621,-0.192238,0 +-1.56635,-1.33767,0.951172,0.718291,0.994429,-0.202146,1.39132,-0.192238,0 +0.111882,0.130505,-1.03965,-1.07744,0.994429,-0.202146,-1.45457,-0.192238,0 +0.111882,-1.33767,0.951172,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,0 +-1.56635,0.130505,-1.03965,-1.07744,-0.994429,-0.202146,-1.45457,-0.192238,0 +0.111882,0.130505,0.951172,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,0 +-1.56635,0.130505,-1.03965,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,2 +-1.56635,-1.33767,0.951172,0.718291,0.994429,-0.202146,1.39132,-0.192238,2 +-1.56635,-1.33767,0.951172,0.718291,-0.994429,-0.202146,-0.031621,-1.1904,2 +0.111882,0.130505,0.951172,-1.07744,0.994429,-0.202146,-1.45457,-0.192238,0 +-1.56635,-1.33767,0.951172,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +-1.56635,0.130505,0.951172,0.718291,-0.994429,-0.202146,-0.031621,1.47136,2 +1.79011,1.59868,0.951172,-1.07744,0.994429,-0.202146,-0.031621,1.47136,2 +0.111882,0.130505,0.951172,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,2 +-1.56635,-1.33767,-1.03965,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,0 +-1.56635,0.130505,0.951172,0.718291,0.994429,-0.202146,-0.031621,-0.192238,2 +-1.56635,0.130505,0.951172,-1.07744,0.994429,-0.202146,-0.031621,-3.51944,1 +0.111882,0.130505,-1.03965,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +1.79011,1.59868,-1.03965,-1.07744,-0.994429,-0.202146,1.39132,-3.51944,0 +0.111882,1.59868,0.951172,-2.87316,0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,1.59868,0.951172,0.718291,0.994429,-3.84078,-1.45457,-0.192238,0 +-1.56635,1.59868,-1.03965,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,-1.33767,-1.03965,-1.07744,0.994429,-0.202146,1.39132,-0.192238,0 +0.111882,0.130505,0.951172,0.718291,0.994429,-0.202146,-1.45457,-0.192238,2 +1.79011,1.59868,-1.03965,0.718291,0.994429,-0.202146,-1.45457,-0.192238,0 +0.111882,0.130505,0.951172,0.718291,0.994429,-0.202146,-0.031621,1.47136,0 +1.79011,0.130505,0.951172,-1.07744,-0.994429,-0.202146,1.39132,1.47136,0 +0.111882,-1.33767,0.951172,-1.07744,0.994429,-0.202146,-1.45457,-0.192238,0 +-1.56635,-1.33767,0.951172,-1.07744,-0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,1.59868,0.951172,0.718291,-0.994429,-0.202146,-1.45457,-0.192238,0 +0.111882,1.59868,0.951172,0.718291,0.994429,-0.202146,1.39132,-0.192238,0 +0.111882,-1.33767,-1.03965,-1.07744,-0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,0.130505,0.951172,0.718291,-0.994429,-0.202146,1.39132,-0.192238,0 +0.111882,-1.33767,-1.03965,0.718291,-0.994429,-0.202146,1.39132,-0.192238,2 +1.79011,0.130505,-1.03965,0.718291,0.994429,3.43649,1.39132,-0.192238,0 +0.111882,0.130505,0.951172,-1.07744,-0.994429,-0.202146,-0.031621,-0.192238,2 +0.111882,-1.33767,-1.03965,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,0.130505,-1.03965,-1.07744,-0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,0.130505,-1.03965,-2.87316,-0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,-1.33767,-1.03965,0.718291,0.994429,3.43649,1.39132,-3.51944,0 +-1.56635,-1.33767,-1.03965,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,-0.994429,-0.202146,-1.45457,-0.192238,2 +0.111882,0.130505,-1.03965,-1.07744,-0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,-1.33767,-1.03965,-1.07744,-0.994429,-0.202146,-1.45457,-0.192238,0 +-1.56635,0.130505,0.951172,0.718291,-0.994429,-0.202146,1.39132,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,-0.994429,-0.202146,-1.45457,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,-0.994429,-0.202146,1.39132,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,0.994429,3.43649,-0.031621,-0.192238,2 +0.111882,0.130505,0.951172,-1.07744,-0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,-0.994429,-0.202146,-0.031621,1.47136,0 +0.111882,0.130505,-1.03965,0.718291,-0.994429,-0.202146,-0.031621,-0.192238,2 +0.111882,-1.33767,0.951172,0.718291,-0.994429,-0.202146,1.39132,-0.192238,1 +1.79011,0.130505,-1.03965,0.718291,0.994429,-0.202146,1.39132,-1.85584,0 +0.111882,0.130505,-1.03965,0.718291,-0.994429,-0.202146,1.39132,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,0.130505,-1.03965,0.718291,0.994429,-0.202146,-0.031621,1.47136,2 +0.111882,0.130505,0.951172,0.718291,0.994429,-0.202146,-0.031621,1.47136,0 +0.111882,0.130505,-1.03965,0.718291,0.994429,-0.202146,-0.031621,-0.192238,0 +0.111882,0.130505,0.951172,0.718291,0.994429,-0.202146,-0.031621,1.47136,2 diff --git a/data/seeds.arff b/data/seeds.arff new file mode 100755 index 0000000..7ec8a5a --- /dev/null +++ b/data/seeds.arff @@ -0,0 +1,220 @@ +@relation seeds +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'clase' {0,1,2} +@data +0.141759,0.214949,6.04573e-05,0.303493,0.141364,-0.983801,-0.382663,0 +0.0111614,0.00820415,0.427494,-0.168223,0.196962,-1.7839,-0.919816,0 +-0.191609,-0.359342,1.43894,-0.761817,0.207552,-0.665888,-1.18636,0 +-0.346264,-0.4742,1.0369,-0.687336,0.318747,-0.958528,-1.22705,0 +0.444196,0.329807,1.37123,0.0665066,0.80324,-1.55977,-0.474223,0 +-0.160678,-0.267455,1.01998,-0.547401,0.141364,-0.823514,-0.919816,0 +-0.0541375,-0.0530535,0.37671,-0.14791,0.00104639,-0.0759538,-0.384698,0 +-0.253471,-0.351685,0.850695,-0.470662,0.114889,-0.665223,-0.83029,0 +0.612598,0.689696,0.156645,0.958027,0.546432,-1.10418,0.954114,0 +0.547299,0.528894,0.719503,0.576592,0.652332,-1.1514,0.254188,0 +0.141759,0.222606,-0.0591877,0.192899,-0.0439612,0.560537,-0.191404,0 +-0.280965,-0.305741,0.364014,-0.430036,-0.152509,-1.31901,-0.828256,0 +-0.32908,-0.412942,0.719503,-0.427779,-0.157804,0.190082,-1.36337,0 +-0.366885,-0.382314,0.207429,-0.337499,-0.271646,-0.375244,-1.09073,0 +-0.380632,-0.389971,0.143949,-0.330728,-0.382841,-0.510922,-1.18636,0 +-0.0885053,-0.213855,1.19772,-0.626396,0.196962,0.322435,-1.27588,0 +-0.294712,-0.558429,2.0018,-1.15002,0.329337,1.02011,-1.27588,0 +0.289541,0.146034,1.4728,-0.229162,0.67616,-1.39749,-0.736695,0 +-0.0507007,-0.267455,1.87484,-0.95592,0.549079,-1.28575,-1.54446,0 +-0.731183,-0.757517,-0.101508,-0.908523,-0.554929,0.267232,-1.00527,0 +-0.236287,-0.121968,-0.533173,0.0665066,-0.343129,-0.41781,-0.472188,0 +-0.253471,-0.229169,0.0508446,-0.244961,-0.239876,-0.673204,-0.384698,0 +0.354839,0.260892,1.17656,-0.0237739,0.657627,-1.9521,-0.645135,0 +-0.951137,-1.01786,-0.194612,-1.19516,-0.854097,-1.51986,-0.909642,0 +0.0558395,0.153691,-0.224236,0.362175,-0.0360186,-1.26979,-0.828256,0 +0.46138,0.45998,0.58831,0.461484,0.429942,-1.86039,-0.205647,0 +-0.62808,-0.61203,-0.291948,-0.527088,-0.615822,-0.217618,-1.18636,0 +-0.72431,-0.680945,-0.617813,-0.527088,-0.801147,-0.795581,-1.09683,0 +-0.253471,-0.290427,0.465582,-0.197564,-0.0995587,-0.629308,-0.752973,0 +-0.480298,-0.412942,-0.448533,-0.253989,-0.512569,-0.112534,-0.632927,0 +-0.579965,-0.566087,-0.203076,-0.393924,-0.750844,-1.89225,-0.716349,0 +0.220805,0.291521,0.0593086,0.289951,0.297567,-0.191679,-0.366386,0 +-0.260344,-0.114311,-0.765934,0.19967,-0.192221,0.146186,-0.221924,0 +-0.311896,-0.298084,0.0762367,-0.0982553,-0.287531,-1.04831,-0.805874,0 +0.0695866,0.0924335,0.292069,0.188385,0.183724,-1.04499,-0.0978094,0 +0.437322,0.337464,1.22734,0.181614,0.599382,-0.951212,0.0710681,0 +0.464816,0.544209,0.101629,0.445685,0.543784,-0.583417,0.24198,0 +0.767253,0.628438,1.56167,0.459227,1.12359,-0.49496,0.154489,0 +-0.0163329,-0.0300819,0.478278,0.0619926,0.077824,-0.391206,-0.201578,0 +-0.195046,-0.298084,0.990352,-0.522574,0.104299,1.98516,-0.828256,0 +-0.449367,-0.543115,0.681415,-0.633167,-0.271646,-0.740378,-0.468119,0 +-0.463114,-0.543115,0.601006,-0.626396,-0.266351,-0.965178,-0.472188,0 +-0.579965,-0.772831,1.26543,-1.10714,-0.152509,-0.824179,-1.27181,0 +0.224242,0.230263,0.465582,0.560792,0.363754,0.672272,0.244015,0 +0.0902073,-0.0147675,1.1681,-0.111797,0.538489,-0.380565,-0.46405,0 +-0.360011,-0.397628,0.35555,-0.569971,-0.274294,-1.42343,-0.909642,0 +0.176127,0.153691,0.639094,0.163558,0.355812,-1.55179,-0.561714,0 +0.0489659,0.000546944,0.732199,-0.13211,0.313452,-0.49363,-0.474223,0 +-0.0197697,-0.0300819,0.46135,-0.188536,0.0857665,-0.662563,-0.604442,0 +0.00428779,0.0847763,-0.143828,0.111647,-0.00160111,-1.04499,-0.116121,0 +-0.143494,-0.121968,0.173573,-0.0982553,0.0354639,0.182766,-0.537298,0 +0.320472,0.268549,0.901479,0.102619,0.464359,1.25888,-0.553575,0 +-0.122873,0.038833,-0.727846,0.195156,-0.385489,0.276544,-0.0245614,0 +-0.177862,-0.213855,0.512134,-0.281073,-0.157804,-0.247547,-0.374524,0 +-0.112563,0.0311758,-0.647438,0.253839,-0.385489,-1.47597,0.160593,0 +0.0627131,0.161348,-0.220004,0.165815,-0.123386,-1.17535,0.0629294,0 +-0.133183,-0.160254,0.457118,-0.542887,0.313452,-0.597384,-0.740765,0 +0.0249085,-0.0989968,1.25274,-0.551915,0.406114,-1.70143,-0.651239,0 +0.183,0.161348,0.622166,0.0755347,0.424647,-1.13145,-0.378594,0 +-0.940827,-0.834089,-1.34572,-1.05974,-0.599937,-1.462,-1.80897,0 +-1.17796,-1.30118,-0.114204,-1.40055,-1.08178,-0.665223,-1.62991,0 +-1.24326,-1.47729,0.550222,-1.6398,-1.005,-0.951877,-1.43459,0 +-0.854907,-1.04849,0.901479,-1.24707,-0.573462,-0.319377,-1.63398,0 +-0.559344,-0.550772,-0.1269,-0.527088,-0.499332,0.303812,-0.651239,0 +-0.710563,-0.757517,0.0254525,-0.82727,-0.615822,-1.67882,-1.27385,0 +-0.676195,-0.811117,0.715271,-1.10488,-0.369604,-0.896674,-1.62991,0 +-0.174425,-0.14494,0.0677727,0.00331029,-0.181631,-1.5877,-0.52509,0 +-0.287839,-0.206198,-0.359661,-0.044087,-0.266351,-0.986461,-0.561714,0 +-0.164114,-0.129626,0.0677727,-0.134368,-0.279589,-1.48727,-0.21989,0 +-0.727747,-0.619687,-1.06641,-0.488719,-0.997062,-0.111204,-0.693967,0 +0.956276,1.08787,-0.156524,1.26949,0.800592,0.24994,1.32646,1 +0.68477,0.850497,-0.368125,0.833891,0.596734,0.648329,0.954114,1 +0.829115,0.89644,0.224357,0.788751,0.88796,0.557876,0.779133,1 +1.46492,1.30227,1.57014,1.18599,1.77752,-0.508262,1.36512,1 +0.677897,0.727982,0.321693,0.876774,0.602029,0.202054,0.880866,1 +0.660713,0.812211,-0.304644,0.673643,0.474949,0.811275,0.787271,1 +0.849736,1.03427,-0.469693,0.982854,0.382287,0.0823374,1.04567,1 +2.0148,2.04502,0.224357,2.14522,1.47041,0.499349,2.12201,1 +1.40649,1.47839,0.169341,1.84278,1.0071,0.907048,1.94093,1 +0.781,0.758611,0.770287,0.499853,0.81383,-0.560139,0.687573,1 +0.57823,0.597809,0.478278,0.556278,0.551727,1.21831,0.960218,1 +1.33089,1.24867,1.13001,0.851947,1.58425,1.07997,0.958184,1 +1.83953,1.78468,0.778751,1.48165,1.60279,0.979543,1.58486,1 +1.62301,1.66982,0.292069,1.7051,1.35922,-1.48195,1.75984,1 +1.60239,1.64685,0.296301,1.66447,1.43599,-0.49097,1.58079,1 +1.17623,1.1721,0.677183,1.22887,1.03887,-0.836151,1.60521,1 +1.38587,1.30227,1.09615,1.02799,1.33804,-1.36423,1.42616,1 +1.42024,1.60856,-0.507781,2.07751,1.08917,-0.00611946,2.21764,1 +2.17633,2.02971,1.18079,2.13167,2.05021,1.38325,1.67439,1 +2.07323,1.90719,1.35854,1.85406,2.04757,0.875124,1.85751,1 +1.80516,1.86125,0.152413,2.14973,1.39363,-1.16071,2.11794,1 +1.34463,1.25633,1.15963,1.22661,1.42276,-0.385886,1.31222,1 +1.36182,1.32524,0.829535,1.45231,1.15006,-0.30807,1.31222,1 +1.28621,1.14147,1.50666,0.921915,1.5922,1.53024,0.954114,1 +1.20716,1.50136,-1.0918,2.34158,0.599382,0.819922,2.11591,1 +0.695081,0.835183,-0.262324,1.15213,0.541137,-0.00279401,1.13723,1 +1.53366,1.55496,0.444422,1.60805,1.45982,-0.148449,1.68863,1 +1.42024,1.53965,-0.0972758,1.8518,0.776765,-1.03501,2.12608,1 +1.14186,1.30227,-0.308876,1.45006,0.670865,-0.563464,1.75984,1 +1.33089,1.36353,0.423262,1.33269,1.12624,-1.00575,1.40174,1 +0.536989,0.528894,0.660254,0.201927,0.705282,0.343718,0.427135,1 +1.08,0.995984,1.19349,0.590134,1.15271,-1.08556,0.872728,1 +1.58521,1.48605,1.16386,1.09345,1.67692,0.404241,1.22269,1 +1.48898,1.58559,0.0296845,1.67124,1.11829,-0.228259,1.67032,1 +1.40993,1.42479,0.50367,1.39814,1.31421,-0.220943,1.50551,1 +1.36869,1.32524,0.876087,0.921915,1.39628,-0.762991,0.958184,1 +1.37556,1.23336,1.46434,1.18147,1.44923,-0.570115,1.61131,1 +0.956276,0.995984,0.380942,0.912886,0.832362,0.0311256,1.05992,1 +1.75017,1.80765,0.177805,2.36189,1.33539,-0.298094,2.32345,1 +1.27246,1.27164,0.656022,1.18373,1.09976,-1.30504,0.988704,1 +1.23809,1.19507,0.893015,1.07991,1.35127,-0.97449,0.785237,1 +1.55771,1.6545,0.0254525,1.52228,1.40952,-0.0147656,1.13317,1 +1.47179,1.34056,1.37546,1.25144,1.70339,-1.05829,1.04974,1 +1.47523,1.57027,0.0508446,1.42297,1.26655,1.98316,1.31222,1 +2.10416,2.06034,0.63063,2.1091,1.93902,0.649659,1.84733,1 +1.44774,1.44776,0.60947,1.77732,1.2189,-0.965844,1.53603,1 +1.41337,1.25633,1.55321,0.953513,1.69015,0.421533,0.695711,1 +1.47867,1.44776,0.761823,1.39137,1.47306,-0.409829,1.58079,1 +1.38931,1.2793,1.2612,1.35075,1.35127,-0.0407041,1.1352,1 +1.7811,1.79233,0.427494,1.95111,1.58425,-0.423796,1.85547,1 +1.85328,1.79999,0.791447,1.54936,1.86224,1.46373,1.5869,1 +1.13155,1.19507,0.262445,0.971569,0.805887,-0.0540059,1.22676,1 +0.454506,0.628438,-0.516245,0.301236,0.339927,0.389609,0.600082,1 +1.23122,1.08021,1.55321,0.793265,1.35657,-0.476338,1.01109,1 +0.392644,0.253235,1.49819,-0.599312,0.85619,-0.242226,-0.537298,1 +1.3412,1.24101,1.22311,1.08893,1.61602,0.32443,1.1881,1 +1.30683,1.41713,-0.0507237,1.48165,0.88796,0.459443,1.41191,1 +1.07656,0.988327,1.19772,0.791008,1.13418,-0.959858,1.03957,1 +1.82578,1.89188,0.105861,1.99625,1.36186,-1.19064,1.58079,1 +0.928782,0.84284,1.18926,0.366689,1.14212,1.10791,0.514626,1 +1.18654,1.01896,1.6844,0.791008,1.31421,-0.574106,1.12706,1 +1.40649,1.34822,0.981887,1.16341,1.49953,-0.526885,1.10061,1 +0.183,0.260892,-0.0168676,0.576592,0.0248739,0.506665,0.787271,1 +0.451069,0.590152,-0.279252,0.488568,0.361107,0.376307,0.787271,1 +0.244862,0.253235,0.478278,0.332834,0.395524,0.84586,0.893074,1 +0.183,0.077119,1.18502,-0.342013,0.546432,-0.0666426,0.0629294,1 +0.863483,0.919412,0.317461,1.16567,0.83501,-0.115859,1.14537,1 +0.248299,0.452322,-0.774398,0.657844,-0.0730837,-0.705128,0.958184,1 +0.25861,0.421693,-0.550101,0.459227,0.072529,-0.648596,0.699781,1 +0.475127,0.475294,0.592542,0.549507,0.564964,0.0457575,1.04567,1 +-0.610896,-0.489514,-0.973303,-0.353298,-0.700542,1.06667,-0.026596,2 +-0.524976,-0.4742,-0.410445,-0.197564,-0.491389,2.21794,0.0649641,2 +-0.518103,-0.466543,-0.380821,-0.54063,-0.488742,1.52625,-0.205647,2 +-0.903022,-0.948947,-0.245396,-0.913037,-0.772024,1.17641,-0.380628,2 +-1.04049,-0.887689,-1.8451,-0.709906,-1.27505,0.51265,-0.468119,2 +-1.25014,-1.09443,-2.29792,-0.788901,-1.51333,1.64197,-0.270756,2 +-1.17453,-1.09443,-1.58694,-1.02137,-1.42861,-0.983801,-0.561714,2 +-0.810229,-0.841746,-0.220004,-0.815985,-0.772024,0.479396,-0.826221,2 +-0.738057,-0.650316,-0.92675,-0.547401,-0.920285,-0.292773,-0.187335,2 +-1.39448,-1.24758,-2.55184,-0.703135,-1.61658,1.17175,-0.435564,2 +-1.03706,-1.01786,-0.90559,-0.825013,-1.10826,0.994175,-0.205647,2 +-0.975195,-0.795803,-1.9509,-0.504518,-1.2777,2.18934,-0.28093,2 +-0.889275,-0.734545,-1.59541,-0.497747,-1.12679,0.702201,-0.0978094,2 +-1.26045,-1.16335,-1.87895,-0.922065,-1.49744,-0.244887,-0.828256,2 +-1.19859,-1.15569,-1.38804,-1.02363,-1.33329,0.231317,-0.295172,2 +-1.25701,-1.15569,-1.93397,-0.854355,-1.5451,1.4052,-0.384698,2 +-1.20546,-1.29352,-0.482389,-1.29899,-1.08443,-0.23491,-0.824186,2 +-0.933953,-0.635001,-2.66188,-0.529345,-1.35977,0.748092,-0.382663,2 +-1.06455,-0.795803,-2.65764,-0.416494,-1.53715,0.450797,-0.199543,2 +-1.15391,-1.02552,-1.89165,-0.732476,-1.49215,1.12254,-0.199543,2 +-0.793045,-0.680945,-1.20606,-0.400695,-1.005,-0.411159,0.168732,2 +-0.971758,-0.94129,-0.875966,-0.628653,-1.18768,0.379632,-0.203612,2 +-0.961448,-0.880032,-1.24415,-0.815985,-1.08972,0.856502,-0.736695,2 +-0.789609,-0.757517,-0.643206,-0.667023,-0.769377,0.478066,-0.472188,2 +-1.27419,-1.35478,-0.643206,-1.39378,-1.23004,1.78763,-0.730591,2 +-0.944264,-1.07912,0.351318,-1.18162,-0.840859,-0.997103,-0.716349,2 +-0.827413,-0.742202,-1.04948,-0.698621,-0.95735,0.813936,-0.28093,2 +-0.92708,-0.849403,-1.12989,-0.477433,-1.1162,-0.0413692,-0.142572,2 +-1.20202,-1.10209,-1.77315,-1.02137,-1.56363,0.423528,-0.561714,2 +-1.23983,-1.19398,-1.48538,-1.21548,-1.4392,-0.119185,-0.651239,2 +-1.31544,-1.19398,-2.20482,-0.685079,-1.47626,2.01841,-0.498639,2 +-1.13329,-1.11741,-1.0791,-1.04169,-1.09502,2.00511,-0.919816,2 +-1.22952,-1.21695,-1.23146,-1.21999,-1.31211,0.404906,-0.83029,2 +-1.18484,-1.13272,-1.41766,-1.11165,-1.31211,1.25556,-0.649205,2 +-1.38073,-1.22461,-2.5857,-0.791158,-1.63511,0.985529,-0.453876,2 +-1.39105,-1.52324,-0.507781,-1.46149,-1.15856,0.713507,-0.702106,2 +-1.23295,-1.18632,-1.5023,-0.998803,-1.45243,1.08729,-0.643101,2 +-1.41167,-1.40072,-1.61234,-1.09134,-1.63246,0.666286,-0.905573,2 +-1.15734,-1.15569,-1.00293,-1.01235,-1.32535,1.4471,-0.826221,2 +-0.906459,-0.834089,-1.08757,-0.612854,-0.96794,-1.35625,-0.468119,2 +-1.1814,-1.23226,-0.634742,-1.21548,-1.28034,0.835884,-1.18636,2 +-0.82054,-0.880032,-0.0168676,-0.885953,-0.639649,0.855836,-0.531194,2 +-0.913333,-0.918318,-0.554333,-0.876925,-0.92558,0.769375,-0.508813,2 +-1.09892,-1.14038,-0.571261,-1.17485,-1.08178,1.00349,-0.55561,2 +-0.672758,-0.604373,-0.71515,-0.301386,-0.615822,1.65261,-0.187335,2 +-1.12985,-0.956604,-2.16673,-0.599312,-1.52392,0.240629,-0.45998,2 +-1.04393,-0.849403,-2.16673,-0.486462,-1.43655,0.796644,-0.114087,2 +-1.35324,-1.34712,-1.43036,-1.21999,-1.5451,0.318444,-0.919816,2 +-1.24326,-1.33181,-0.490853,-1.21773,-1.15856,2.54317,-0.917781,2 +-1.46322,-1.64575,-0.262324,-1.64657,-1.24857,0.847855,-1.24943,2 +-1.34637,-1.34712,-1.35418,-1.31479,-1.4339,1.12919,-0.73873,2 +-1.22952,-1.30118,-0.622045,-1.21322,-1.20357,0.189417,-0.828256,2 +-1.02331,-1.17866,0.359782,-1.12068,-0.809089,-0.0686379,-0.561714,2 +-1.38417,-1.32415,-1.92127,-1.01235,-1.66423,0.766714,-0.649205,2 +-0.940827,-0.987233,-0.300412,-0.885953,-0.750844,0.287185,-0.805874,2 +-0.703689,-0.834089,0.634862,-1.05749,-0.351071,0.780016,-1.00527,2 +-0.707126,-0.788146,0.321693,-0.913037,-0.541692,1.18572,-0.915746,2 +-0.507793,-0.596715,0.58831,-0.696364,-0.345776,0.645003,-0.645135,2 +-0.765551,-0.680945,-0.969071,-0.493233,-0.920285,-0.262179,-0.360282,2 +-0.717436,-0.903004,1.07499,-1.25385,-0.274294,-0.580092,-1.17618,2 +-0.848034,-0.857061,-0.427373,-0.924322,-0.713779,1.1784,-0.73873,2 +-0.748367,-0.948947,1.13001,-1.45472,-0.327244,-0.931259,-1.34913,2 +-1.26045,-1.40838,-0.1269,-1.39829,-1.18768,0.233313,-1.18025,2 +-0.738057,-0.880032,0.694111,-1.00557,-0.443734,3.16303,-0.83029,2 +-0.851471,-0.834089,-0.605117,-0.958177,-0.790557,0.145521,-0.828256,2 +-0.913333,-1.04083,0.308997,-1.1094,-0.734959,-0.0460248,-1.0948,2 +-1.24326,-1.28586,-0.84211,-1.10263,-1.22739,0.415547,-0.824186,2 +-0.566218,-0.688602,0.732199,-0.885953,-0.0704362,3.06925,-0.716349,2 +-1.03362,-1.03318,-0.79979,-1.02363,-1.11885,-0.0679728,-0.740765,2 +-0.875528,-0.933633,-0.109972,-0.870154,-0.753492,1.28814,-0.702106,2 diff --git a/data/statlog-australian-credit.arff b/data/statlog-australian-credit.arff new file mode 100755 index 0000000..c59999d --- /dev/null +++ b/data/statlog-australian-credit.arff @@ -0,0 +1,707 @@ +@relation statlog-australian-credit +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'clase' {0,1} +@data +-0.800471,1.34613,0.542556,-0.915618,-0.347713,-0.190767,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.488004,0.0373533,-0.894654,1 +-0.750696,0.450221,0.542556,0.170375,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.195272,-0.894654,0 +-0.167735,-0.604384,-1.78269,-0.915618,-0.347713,-0.290872,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.557539,-0.195272,-0.894654,0 +-0.835061,1.35417,-1.78269,-0.64412,-0.849641,-0.664395,0.953958,1.15631,1.76848,1.08712,0.237655,-1.06886,-0.195272,1.11613,0 +-0.961608,0.685248,0.542556,-0.372622,-0.347713,-0.0787105,0.953958,1.15631,2.38539,-0.918529,0.237655,-0.720347,-0.164946,1.11613,1 +-1.32775,-0.838407,0.542556,0.170375,1.66,-0.216167,0.953958,1.15631,-0.0822548,-0.918529,0.237655,-0.488004,-0.195272,1.11613,0 +-1.19361,0.349783,0.542556,-1.18712,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.720347,-0.176078,-0.894654,1 +2.28644,-0.060007,0.542556,0.98487,1.66,0.244013,0.953958,1.15631,0.740293,-0.918529,0.237655,-0.819093,-0.0877882,1.11613,0 +-0.315373,-0.755042,-1.78269,-1.45861,1.66,0.232061,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.0465528,-0.0922027,-0.894654,1 +2.04009,0.466292,0.542556,-0.915618,1.66,1.35263,0.953958,1.15631,0.123382,1.08712,0.237655,-0.488004,-0.185675,-0.894654,0 +0.162976,-0.604384,0.542556,1.79936,1.66,0.680288,0.953958,1.15631,0.329019,1.08712,0.237655,0.400707,-0.0307836,1.11613,1 +0.831146,0.0484667,0.542556,0.98487,1.66,0.829698,0.953958,1.15631,0.740293,1.08712,0.237655,1.66117,-0.195272,1.11613,1 +-0.919426,-0.704823,-1.78269,0.170375,1.66,-0.253519,0.953958,1.15631,0.123382,1.08712,0.237655,-0.255661,-0.154965,-0.894654,1 +0.282774,0.0484667,0.542556,1.79936,1.66,1.57674,0.953958,1.15631,0.740293,1.08712,0.237655,-1.06886,-0.00333688,1.11613,1 +2.27885,-0.411542,0.542556,0.170375,-0.347713,0.0572519,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.789882,-0.195272,-0.894654,1 +1.39302,0.257379,0.542556,-0.915618,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,0.321033,1.11613,1 +-0.167735,-0.0519719,0.542556,0.441873,-0.347713,1.57674,0.953958,1.15631,-0.0822548,1.08712,0.237655,0.847968,-0.195272,1.11613,1 +-1.06706,0.851976,0.542556,-0.372622,-0.347713,-0.440281,0.953958,1.15631,-0.0822548,-0.918529,0.237655,-0.557707,-0.0818382,1.11613,0 +-0.97595,-0.704823,-1.78269,-0.915618,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.255661,-0.194504,-0.894654,1 +-0.771787,0.18205,0.542556,0.98487,-0.347713,0.108051,0.953958,1.15631,0.94593,-0.918529,0.237655,-0.319556,0.42986,1.11613,0 +-0.286689,-0.838407,0.542556,-0.372622,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.441367,-0.00256914,-0.894654,0 +-1.04597,-0.838407,-1.78269,-0.372622,-0.347713,-0.489586,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.13949,-0.195272,-0.894654,0 +0.810055,-0.687749,0.542556,-1.45861,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.0930214,-0.195272,-0.894654,1 +0.844644,-0.604384,0.542556,-0.915618,-0.347713,-0.601643,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.195272,-0.894654,1 +-1.01813,0.969489,0.542556,-0.372622,-0.347713,-0.428328,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.604176,-0.128095,-0.894654,1 +0.0997022,-0.654604,0.542556,1.52787,1.66,0.979107,0.953958,1.15631,0.123382,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +-0.765038,-0.93081,-1.78269,-0.915618,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.181836,-0.894654,1 +0.135135,-0.345253,-1.78269,0.170375,1.66,-0.054805,0.953958,1.15631,-0.287892,1.08712,0.237655,-0.0233185,3.26474,1.11613,1 +-0.0757768,1.45461,0.542556,0.170375,-0.347713,-0.0667578,0.953958,1.15631,-0.287892,-0.918529,0.237655,0.209025,-0.191625,1.11613,0 +-0.716106,-0.453727,0.542556,0.170375,-0.347713,-0.340177,0.953958,1.15631,1.76848,1.08712,0.237655,-0.720347,0.223914,1.11613,1 +-0.385396,-0.805262,0.542556,0.170375,1.66,0.605584,0.953958,1.15631,0.123382,1.08712,0.237655,0.743413,-0.166481,1.11613,1 +-0.940517,1.15329,-1.78269,1.79936,1.66,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.174341,-0.18913,-0.894654,0 +1.75157,-0.679713,-1.78269,0.170375,1.66,2.16243,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.092853,-0.176078,-0.894654,1 +-0.716106,1.35417,0.542556,0.441873,1.66,-0.0294055,0.953958,1.15631,1.76848,1.08712,0.237655,0.615625,-0.140762,1.11613,1 +0.9501,-0.704823,0.542556,-0.101123,-0.347713,3.48171,-1.04674,1.15631,-0.287892,1.08712,0.237655,0.975756,-0.173775,-0.894654,1 +3.64978,2.86075,-1.78269,-1.73011,-1.8535,-0.652442,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,-1.06886,-0.127903,-0.894654,1 +-0.554126,1.55505,0.542556,-0.372622,-0.347713,0.232061,0.953958,-0.86357,-0.493529,1.08712,-3.10892,-0.95269,-0.195272,1.11613,1 +0.675914,1.83929,0.542556,0.441873,-0.347713,1.91291,0.953958,1.15631,0.740293,1.08712,0.237655,-0.662262,-0.195272,1.11613,1 +1.36518,0.651099,0.542556,0.170375,-0.347713,1.6888,0.953958,1.15631,0.740293,1.08712,0.237655,-1.06886,0.0465662,1.11613,0 +1.33734,-0.353288,0.542556,1.79936,-0.347713,3.48171,0.953958,1.15631,-0.0822548,1.08712,0.237655,1.94579,0.131785,1.11613,0 +-0.708513,-0.95592,0.542556,1.52787,-0.347713,-0.638995,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-0.758289,-0.654604,-1.78269,-0.372622,-0.347713,-0.503033,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.371833,-0.182412,-0.894654,1 +-0.406487,-0.729933,0.542556,1.79936,1.66,-0.290872,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,0.821599,1.11613,1 +2.67958,-0.847446,0.542556,0.170375,-0.347713,-0.489586,0.953958,1.15631,0.123382,1.08712,0.237655,-0.0233185,-0.195272,-0.894654,1 +-0.659582,-0.872556,-1.78269,0.170375,-0.347713,-0.652442,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,-0.325364,-0.19412,-0.894654,1 +-0.912676,1.10307,0.542556,0.98487,-0.347713,-0.452234,0.953958,1.15631,-0.0822548,1.08712,0.237655,-0.784242,-0.195272,1.11613,0 +-0.596308,-0.604384,-1.78269,0.170375,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.30213,-0.195272,-0.894654,0 +-1.29907,-0.947885,0.542556,0.170375,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-0.174484,-0.554165,-1.78269,0.713372,1.66,-0.0667578,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.418133,-0.192009,-0.894654,0 +1.79375,2.05724,0.542556,0.170375,-0.347713,0.979107,0.953958,1.15631,2.38539,-0.918529,0.237655,-1.06886,0.226985,1.11613,0 +0.0642689,-0.252849,0.542556,-0.915618,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.278727,-0.195272,-0.894654,1 +-0.884836,-0.127301,-1.78269,-1.18712,1.66,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.255661,-0.176078,-0.894654,1 +-0.286689,-0.93081,-1.78269,-0.915618,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.18579,0.207791,-0.894654,1 +-1.06031,-0.604384,-1.78269,0.170375,-0.347713,0.0333464,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.418302,-0.19412,-0.894654,1 +-0.336464,-0.303069,-1.78269,0.98487,1.66,0.855097,-1.04674,1.15631,-0.0822548,1.08712,0.237655,1.0745,-0.19508,-0.894654,1 +-0.315373,-0.654604,0.542556,0.441873,-0.347713,-0.0667578,0.953958,1.15631,1.76848,1.08712,0.237655,1.45206,-0.188554,1.11613,1 +0.711348,0.349783,0.542556,-0.372622,0.154216,0.38147,0.953958,1.15631,-0.287892,-0.918529,0.237655,-1.06886,-0.0993043,1.11613,1 +0.486093,-0.453727,0.542556,-1.18712,1.66,-0.601643,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.441367,-0.148056,-0.894654,0 +0.92226,0.0313922,-1.78269,0.441873,-0.347713,0.281366,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.766816,0.0814983,1.11613,1 +2.12446,1.50483,0.542556,-0.101123,-0.347713,-0.290872,0.953958,1.15631,0.329019,1.08712,0.237655,0.092853,-0.195272,1.11613,1 +0.978784,0.0484667,0.542556,-1.18712,0.154216,0.00794684,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.249853,-0.195272,-0.894654,1 +-0.659582,-0.813297,0.542556,0.441873,-0.347713,-0.58969,-1.04674,1.15631,-0.287892,1.08712,0.237655,0.325196,-0.194504,-0.894654,0 +-1.1025,-0.554165,0.542556,-1.18712,-0.347713,-0.216167,0.953958,1.15631,-0.0822548,-0.918529,0.237655,-0.371833,-0.137691,1.11613,1 +0.78137,-0.252849,0.542556,-1.18712,0.154216,-0.514985,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,5.66908,-0.195272,-0.894654,0 +-0.596308,-0.855481,0.542556,0.98487,1.66,-0.216167,0.953958,-0.86357,-0.493529,-0.918529,0.237655,0.557539,-0.0371174,1.11613,0 +0.880077,1.01067,0.542556,1.79936,1.66,1.7142,0.953958,1.15631,1.15157,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-1.01813,-0.922775,0.542556,0.98487,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.1384,-0.195272,-0.894654,0 +-0.849403,1.35417,0.542556,-1.18712,-0.347713,-0.514985,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.488004,-0.18222,-0.894654,1 +-0.0268452,-0.386433,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,0.534656,-0.918529,0.237655,-0.0465528,-0.167249,-0.894654,1 +-0.364305,-0.637529,0.542556,1.52787,1.66,-0.116063,0.953958,1.15631,1.97411,1.08712,0.237655,2.31754,-0.0584222,1.11613,1 +1.44954,4.33418,-1.78269,-1.73011,-1.8535,-0.664395,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,-0.894654,1 +-0.096868,-0.679713,0.542556,0.441873,1.66,-0.652442,-1.04674,1.15631,0.123382,-0.918529,0.237655,-1.06886,-0.188938,-0.894654,0 +-0.181233,-0.704823,0.542556,0.441873,-0.347713,-0.141462,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.195272,-0.894654,1 +-0.27994,0.0565018,-1.78269,0.170375,0.154216,-0.216167,0.953958,1.15631,1.15157,1.08712,0.237655,-0.232427,-0.193928,1.11613,1 +0.732439,3.36294,0.542556,0.713372,2.16193,5.31197,0.953958,1.15631,1.76848,-0.918529,0.237655,-1.06886,0.0350501,1.11613,1 +0.41607,-0.102191,0.542556,0.98487,-0.347713,0.38147,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,1.56823,-0.185675,-0.894654,1 +-0.505194,-0.888626,0.542556,-0.915618,1.66,0.38147,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.906053,-0.195272,-0.894654,1 +-0.146643,-0.252849,0.542556,0.170375,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.18579,-0.195272,-0.894654,1 +-0.716106,-0.95592,0.542556,-0.915618,-0.347713,-0.365576,-1.04674,1.15631,1.76848,-0.918529,-3.10892,-1.06886,-0.195272,-0.894654,1 +0.0507705,-0.662639,0.542556,0.441873,-0.347713,-0.340177,0.953958,1.15631,2.79666,-0.918529,0.237655,-0.371833,0.203761,1.11613,0 +-0.539784,-0.252849,0.542556,1.52787,-0.347713,-0.477633,0.953958,1.15631,0.94593,-0.918529,0.237655,-1.06886,1.1596,1.11613,1 +0.303865,-0.20263,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,0.740293,-0.918529,0.237655,-1.06886,-0.156885,-0.894654,0 +-1.09575,1.05285,0.542556,-1.45861,-0.347713,-0.540385,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.604176,-0.18721,-0.894654,0 +0.704598,0.0484667,0.542556,-1.18712,0.154216,-0.601643,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,2.12585,-0.195272,-0.894654,1 +-0.687422,-0.755042,0.542556,0.170375,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.557539,-0.195272,-0.894654,1 +0.507185,-0.95592,0.542556,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,3.58423,-8.41822e-05,-0.195272,1.11613,1 +-0.575217,1.78907,0.542556,0.98487,1.66,-0.216167,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.557539,-0.19508,-0.894654,0 +1.3019,1.65549,0.542556,-1.18712,0.154216,0.879003,0.953958,1.15631,1.3572,1.08712,0.237655,-1.06886,-0.195272,1.11613,0 +0.2195,0.0986861,0.542556,0.441873,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.615625,-0.19412,1.11613,1 +-0.792878,-0.838407,-1.78269,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,-0.894654,1 +-0.322122,-0.696788,0.542556,-0.915618,1.66,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,-0.255661,-0.195272,-0.894654,1 +0.943351,-0.135336,0.542556,-0.372622,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.441536,-0.176078,-0.894654,1 +-0.244507,1.9568,0.542556,-1.45861,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.140378,-0.894654,1 +0.394979,0.0484667,0.542556,0.170375,0.154216,0.0826515,0.953958,1.15631,0.740293,-0.918529,0.237655,-1.06886,-0.124832,1.11613,1 +-1.13034,1.05285,-1.78269,0.98487,1.66,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.906053,-0.195272,-0.894654,0 +-0.870494,-0.654604,0.542556,0.441873,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.197576,-0.193736,1.11613,1 +0.620234,-0.621459,0.542556,-0.372622,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.120417,-0.894654,0 +0.0220865,-0.947885,-1.78269,-0.101123,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,1 +-1.2012,0.952415,0.542556,-0.372622,-0.347713,-0.141462,-1.04674,1.15631,1.56284,1.08712,0.237655,-1.06886,-0.193352,-0.894654,0 +-0.940517,-0.788187,0.542556,0.98487,-0.347713,-0.190767,0.953958,1.15631,-0.287892,-0.918529,0.237655,-1.06886,-0.195272,1.11613,0 +0.633732,-0.152411,0.542556,0.170375,-0.347713,0.232061,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,1.71925,-0.195272,-0.894654,0 +0.599142,-0.913736,0.542556,-0.915618,-0.347713,-0.638995,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.557539,-0.195272,1.11613,1 +-0.328871,1.80614,0.542556,0.441873,-0.347713,1.05381,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.75991,-0.0993043,1.11613,1 +-0.322122,-0.838407,-1.78269,1.52787,-0.347713,-0.58969,0.953958,1.15631,-0.0822548,-0.918529,0.237655,0.441367,-0.0993043,1.11613,1 +-1.06031,-0.95592,-1.78269,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,0.329019,-0.918529,0.237655,-0.807476,-0.19508,-0.894654,1 +-0.554126,-0.780152,0.542556,1.79936,1.66,-0.353624,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.13949,0.929466,1.11613,0 +-0.328871,-0.554165,0.542556,1.79936,1.66,-0.365576,0.953958,1.15631,0.329019,-0.918529,0.237655,-0.255661,1.25268,1.11613,1 +-0.786129,0.851976,0.542556,-0.372622,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,1 +1.54065,1.773,0.542556,-0.915618,1.66,1.87556,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,1.11613,0 +0.0642689,-0.453727,0.542556,0.170375,-0.347713,-0.290872,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.557539,-0.195272,-0.894654,1 +0.563709,1.07796,-1.78269,-0.915618,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.195272,-0.894654,1 +1.32974,0.349783,0.542556,0.170375,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.151511,-0.894654,1 +-0.315373,-0.152411,-1.78269,-1.18712,1.66,1.05381,0.953958,1.15631,-0.0822548,1.08712,0.237655,-0.633219,-0.195272,-0.894654,1 +0.352797,-0.772117,0.542556,-0.372622,-0.347713,-0.440281,0.953958,1.15631,0.329019,-0.918529,0.237655,-1.06886,0.108561,1.11613,0 +0.169725,-0.9057,0.542556,-1.18712,0.154216,0.530879,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,1.37074,-0.195272,-0.894654,1 +0.211907,-0.93985,-1.78269,-0.101123,0.154216,-0.652442,0.953958,1.15631,-0.287892,1.08712,0.237655,0.557539,0.188598,1.11613,1 +-0.912676,1.12015,0.542556,1.52787,1.66,-0.564291,0.953958,1.15631,-0.287892,1.08712,0.237655,-0.604176,-0.185675,1.11613,0 +0.135135,-0.755042,0.542556,1.79936,-0.347713,-0.440281,0.953958,1.15631,0.94593,1.08712,0.237655,0.906053,0.586095,1.11613,1 +-0.743947,1.25373,0.542556,0.98487,-0.347713,0.0826515,0.953958,1.15631,0.94593,1.08712,0.237655,-0.488004,-0.0399964,1.11613,1 +1.44954,0.751537,0.542556,0.170375,1.66,3.07084,0.953958,1.15631,1.3572,-0.918529,0.237655,-0.0175099,0.12238,1.11613,1 +0.760279,0.0484667,0.542556,0.170375,-0.347713,0.829698,0.953958,1.15631,0.94593,-0.918529,0.237655,-1.06886,0.393008,1.11613,1 +-0.919426,-0.788187,-1.78269,0.170375,-0.347713,-0.0667578,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.325196,-0.195272,-0.894654,1 +0.605891,-0.654604,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.62741,-0.195272,-0.894654,0 +2.1523,2.96119,0.542556,0.170375,-0.347713,0.979107,0.953958,1.15631,0.94593,-0.918529,0.237655,-1.06886,0.380533,1.11613,0 +-0.0268452,-0.20263,0.542556,1.52787,1.66,-0.477633,0.953958,1.15631,1.3572,1.08712,0.237655,-0.0175099,-0.195272,1.11613,0 +-0.80722,-0.797227,0.542556,0.441873,-0.347713,-0.577737,-1.04674,1.15631,-0.287892,-0.918529,0.237655,1.37074,-0.140954,-0.894654,1 +2.25776,1.05285,0.542556,0.98487,-0.347713,0.530879,0.953958,1.15631,2.38539,-0.918529,0.237655,-1.06886,0.112208,1.11613,0 +-0.223415,-0.880591,0.542556,0.170375,-0.347713,-0.577737,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.209025,-0.168401,-0.894654,1 +1.21754,-0.152411,0.542556,-0.64412,-0.849641,-0.664395,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.0110143,1.11613,0 +-0.891585,-0.353288,-1.78269,-1.45861,-0.347713,-0.340177,0.953958,1.15631,1.15157,1.08712,0.237655,-0.13949,-0.19508,1.11613,1 +-0.575217,1.55505,0.542556,-0.372622,-0.347713,-0.216167,0.953958,1.15631,1.97411,1.08712,0.237655,-0.371833,-0.0864447,1.11613,0 +-0.905927,-0.855481,-1.78269,0.713372,-1.35157,-0.365576,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.441367,-0.195272,-0.894654,0 +-0.589559,1.75592,-1.78269,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-8.41822e-05,-0.195272,-0.894654,1 +-0.427578,-0.411542,-1.78269,0.170375,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,-0.604176,-0.195272,-0.894654,0 +0.788963,-0.788187,0.542556,-1.73011,-1.8535,-0.664395,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.313747,-0.19508,-0.894654,1 +0.570458,-0.0690465,0.542556,0.170375,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.195272,-0.894654,0 +-1.01138,-0.838407,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,0.123382,-0.918529,0.237655,0.964139,-0.0476738,-0.894654,1 +0.648074,0.952415,0.542556,-0.101123,-0.347713,1.27793,0.953958,1.15631,2.38539,-0.918529,0.237655,0.325196,0.688972,1.11613,1 +-0.490852,-0.855481,0.542556,0.170375,-0.347713,-0.22812,0.953958,1.15631,0.534656,1.08712,0.237655,0.743413,-0.195272,1.11613,1 +1.22429,-0.353288,0.542556,0.170375,-0.347713,0.0452991,0.953958,1.15631,1.15157,1.08712,0.237655,1.23133,0.602985,1.11613,0 +-1.00379,1.05285,-1.78269,-0.915618,1.66,-0.414881,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.255661,-0.195272,-0.894654,1 +-0.786129,-0.704823,-1.78269,-1.73011,-1.8535,0.306765,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.557539,-0.195272,-0.894654,0 +-1.07466,-0.244814,-1.78269,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.0233185,-0.19508,-0.894654,1 +2.74285,3.06163,0.542556,1.79936,1.66,4.56493,0.953958,1.15631,1.3572,1.08712,0.237655,-1.06886,-0.00333688,1.11613,1 +-1.27123,-0.704823,0.542556,0.98487,-0.347713,-0.58969,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.441536,-0.176462,-0.894654,0 +3.13009,2.05724,0.542556,0.713372,2.16193,-0.664395,0.953958,1.15631,2.38539,-0.918529,0.237655,-1.06886,0.4527,1.11613,0 +3.81176,3.52164,0.542556,0.713372,2.16193,3.14554,0.953958,1.15631,-0.287892,1.08712,0.237655,-1.06886,-0.174351,1.11613,1 +-1.32016,-0.378398,0.542556,0.98487,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.195272,-0.894654,0 +0.275181,-0.152411,0.542556,-1.45861,0.154216,3.07084,0.953958,-0.86357,-0.493529,1.08712,0.237655,-8.41822e-05,-0.195272,-0.894654,1 +1.33734,0.651099,0.542556,0.713372,0.154216,1.27793,0.953958,1.15631,0.740293,-0.918529,0.237655,1.10935,9.6126,1.11613,0 +-0.708513,-0.95592,0.542556,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,3.58423,-8.41822e-05,-0.195272,1.11613,1 +1.14751,-0.654604,0.542556,0.170375,-0.347713,0.0826515,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.255661,-0.195272,-0.894654,1 +-1.38343,0.450221,0.542556,0.713372,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,2.41628,-0.195272,-0.894654,1 +-1.07466,-0.872556,-1.78269,0.170375,-0.347713,-0.61509,-1.04674,1.15631,-0.287892,-0.918529,0.237655,0.092853,-0.19508,-0.894654,1 +1.76591,0.349783,0.542556,-0.915618,-0.347713,1.21517,0.953958,1.15631,2.59103,-0.918529,0.237655,-1.06886,1.95478,1.11613,1 +-1.04597,-0.95592,-1.78269,-0.101123,0.154216,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,1.83543,-0.19508,1.11613,1 +-1.14468,-0.922775,0.542556,0.98487,1.15807,-0.601643,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.187594,1.11613,1 +0.500435,-0.788187,0.542556,0.713372,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.194312,-0.894654,1 +-0.750696,-0.637529,-1.78269,0.441873,-0.347713,0.25746,0.953958,1.15631,0.740293,-0.918529,0.237655,-0.604176,-0.195272,1.11613,1 +1.37192,-0.119266,0.542556,1.79936,0.154216,-0.638995,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.9516,-0.195272,-0.894654,1 +0.211907,-0.453727,0.542556,0.170375,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,1.60308,-0.192201,-0.894654,1 +0.127543,-0.629494,0.542556,-1.45861,-0.347713,-0.503033,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,-0.894654,0 +0.971191,-0.880591,-1.78269,0.170375,-0.347713,-0.552338,0.953958,1.15631,1.15157,1.08712,0.237655,0.67371,-0.164178,1.11613,1 +0.247341,-0.144375,-1.78269,-1.18712,0.154216,1.87556,0.953958,1.15631,0.94593,1.08712,0.237655,0.0638101,-0.195272,1.11613,1 +0.943351,-0.353288,0.542556,-1.18712,0.154216,-0.365576,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.156885,-0.894654,1 +-1.12359,-0.922775,0.542556,-1.45861,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.557539,-0.195272,-0.894654,1 +-0.716106,-0.453727,0.542556,-1.73011,-1.8535,-0.638995,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.488004,0.61239,-0.894654,1 +-0.765038,0.743502,-1.78269,1.79936,-0.347713,0.0706987,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.116256,-0.195272,1.11613,0 +-1.15143,-0.91474,0.542556,-0.372622,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.557539,-0.0513206,-0.894654,1 +-1.10925,1.13622,-1.78269,-0.372622,-0.347713,-0.627042,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.123296,-0.894654,1 +-0.328871,-0.654604,0.542556,-0.101123,-0.347713,-0.0667578,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,1.06869,-0.195272,-0.894654,0 +-1.06706,0.902195,-1.78269,0.170375,-0.347713,-0.365576,0.953958,1.15631,0.329019,1.08712,0.237655,-0.604176,-0.0993043,1.11613,0 +-0.750696,-0.805262,0.542556,-1.18712,-0.347713,-0.190767,-1.04674,1.15631,-0.287892,1.08712,0.237655,1.25457,-0.193544,-0.894654,1 +2.60956,1.60527,-1.78269,0.170375,1.66,0.829698,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.418302,-0.195272,-0.894654,1 +-0.680673,0.851976,0.542556,0.98487,-0.347713,1.87556,0.953958,1.15631,0.534656,1.08712,0.237655,-0.371833,-0.195272,1.11613,0 +0.310614,-0.320143,0.542556,1.79936,1.66,0.456175,0.953958,-0.86357,-0.493529,1.08712,0.237655,2.88097,-0.195272,-0.894654,1 +2.13121,-0.102191,-1.78269,-1.73011,-1.8535,0.829698,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.194504,-0.894654,0 +1.83593,-0.922775,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,-0.70873,-0.190089,-0.894654,0 +0.810055,-0.144375,0.542556,1.52787,1.66,1.42733,0.953958,1.15631,1.15157,-0.918529,0.237655,0.789882,-0.195272,1.11613,1 +0.894419,0.0565018,0.542556,0.98487,1.66,3.14554,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.534473,-0.195272,1.11613,1 +0.810055,-0.704823,-1.78269,0.441873,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.157844,-0.894654,1 +0.184067,-0.805262,0.542556,-0.915618,0.154216,-0.365576,0.953958,1.15631,0.123382,1.08712,0.237655,0.162556,-0.195272,-0.894654,0 +-0.497601,1.55505,0.542556,1.52787,-0.347713,-0.302824,0.953958,1.15631,13.2841,1.08712,0.237655,-0.255661,-0.145753,1.11613,1 +-0.61065,0.374892,-1.78269,-1.45861,-0.347713,0.979107,0.953958,-0.86357,-0.493529,1.08712,-3.10892,-0.488004,-0.195272,1.11613,1 +-0.695015,1.37928,-1.78269,0.441873,-0.347713,-0.414881,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.13949,-0.137691,1.11613,1 +-0.0757768,-0.453727,0.542556,1.52787,1.66,0.00794684,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.906053,-0.195272,-0.894654,1 +0.472595,-0.152411,0.542556,0.170375,0.154216,0.829698,0.953958,-0.86357,-0.493529,1.08712,-3.10892,0.557539,-0.195272,-0.894654,1 +-0.44867,-0.646569,0.542556,0.441873,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,-0.894654,1 +-0.153392,-0.822336,0.542556,0.441873,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.67371,-0.195272,-0.894654,0 +-0.722855,-0.58731,0.542556,-0.64412,-0.849641,-0.664395,-1.04674,1.15631,-0.287892,-0.918529,0.237655,0.092853,-0.185099,-0.894654,0 +-1.20795,-0.353288,0.542556,-0.915618,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.13949,-0.187594,-0.894654,1 +-0.195575,2.01506,0.542556,-0.372622,-0.347713,0.84165,0.953958,1.15631,0.534656,1.08712,0.237655,-0.0930214,-0.195272,1.11613,1 +-0.252099,-0.244814,0.542556,-1.18712,0.154216,-0.514985,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.0755957,-0.195272,-0.894654,0 +0.25409,-0.95592,0.542556,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,3.58423,-8.41822e-05,-0.195272,-0.894654,1 +-0.687422,-0.838407,0.542556,0.170375,1.66,-0.638995,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.0233185,-0.195272,-0.894654,1 +-0.554126,1.30395,0.542556,0.170375,-0.347713,0.0826515,0.953958,1.15631,3.0023,-0.918529,0.237655,0.092853,0.0365856,1.11613,1 +-1.08141,0.55066,0.542556,0.98487,-0.347713,0.145403,0.953958,1.15631,0.534656,-0.918529,0.237655,-8.41822e-05,4.93438,1.11613,0 +-1.2223,-0.9057,0.542556,0.98487,-0.347713,-0.564291,-1.04674,1.15631,0.329019,-0.918529,0.237655,-0.13949,-0.193736,-0.894654,1 +-1.30666,-0.888626,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.13949,-0.171088,-0.894654,0 +0.114044,-0.453727,0.542556,-0.372622,-0.347713,-0.141462,-1.04674,1.15631,-0.0822548,1.08712,0.237655,3.11331,-0.195272,-0.894654,1 +-0.94811,1.05285,0.542556,0.170375,1.66,-0.365576,0.953958,1.15631,0.329019,-0.918529,0.237655,-0.778433,0.0859128,1.11613,0 +-0.828312,-0.604384,-1.78269,-0.64412,-0.849641,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.195272,-0.894654,0 +0.135135,-0.747007,0.542556,1.25637,1.66,1.27793,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.116256,5.80941,1.11613,1 +-0.526285,-0.537091,0.542556,0.170375,1.66,0.157356,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.02222,-0.19508,-0.894654,0 +-0.575217,-0.353288,0.542556,0.98487,1.66,-0.116063,0.953958,1.15631,3.41357,-0.918529,0.237655,-1.06886,-0.0993043,1.11613,0 +-0.0622784,-0.95592,0.542556,0.441873,-0.347713,-0.290872,0.953958,1.15631,-0.287892,-0.918529,0.237655,0.10447,-0.195272,1.11613,1 +-0.912676,0.0655413,-1.78269,-0.64412,-0.347713,-0.577737,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.255661,-0.159956,-0.894654,1 +0.739188,0.676208,-1.78269,-0.915618,-0.347713,-0.61509,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,-8.41822e-05,-0.191817,-0.894654,0 +-0.181233,-0.704823,0.542556,0.170375,1.66,-0.58969,-1.04674,1.15631,-0.0822548,1.08712,0.237655,1.25457,-0.174543,-0.894654,1 +0.788963,-0.855481,-1.78269,-0.101123,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.313747,-0.195272,-0.894654,1 +-0.174484,-0.863516,0.542556,-0.915618,-0.347713,-0.503033,0.953958,1.15631,0.329019,-0.918529,0.237655,1.1384,-0.0993043,1.11613,0 +1.92789,-0.855481,-1.78269,-0.915618,1.66,0.518926,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.0233185,-0.135004,1.11613,1 +0.205158,0.148905,-1.78269,0.170375,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.720347,-0.195272,-0.894654,1 +-0.554126,1.45461,0.542556,-0.915618,-0.347713,0.00794684,0.953958,1.15631,-0.0822548,1.08712,0.237655,-0.371833,-0.194312,-0.894654,1 +-0.420829,-0.445691,-1.78269,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.0233185,-0.183756,-0.894654,0 +0.127543,-0.0268622,0.542556,0.98487,1.66,-0.178815,0.953958,1.15631,-0.0822548,-0.918529,0.237655,-1.06886,-0.195272,1.11613,0 +0.177318,-0.52102,0.542556,0.170375,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,-0.918529,3.58423,-0.371833,-0.195272,-0.894654,1 +0.38823,0.148905,0.542556,-1.18712,0.154216,0.829698,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.150939,-0.0634125,-0.894654,1 +-1.01813,-0.897665,0.542556,-0.915618,-0.347713,-0.577737,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.557539,-0.125407,-0.894654,1 +-0.624149,-0.780152,0.542556,0.98487,-0.347713,0.717641,0.953958,1.15631,-0.0822548,1.08712,0.237655,1.9516,0.188598,1.11613,1 +-0.0901188,0.349783,0.542556,0.170375,0.154216,0.530879,0.953958,1.15631,0.94593,1.08712,0.237655,-1.06886,0.393008,1.11613,0 +-0.97595,0.450221,0.542556,0.170375,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,1 +-0.526285,-0.839411,0.542556,0.170375,-0.347713,-0.577737,0.953958,1.15631,0.94593,1.08712,0.237655,-0.511239,0.788202,1.11613,1 +-0.167735,-0.00175258,0.542556,-0.101123,-0.347713,-0.0667578,-1.04674,1.15631,-0.287892,1.08712,0.237655,1.60308,-0.18222,-0.894654,1 +0.978784,-0.503946,0.542556,-1.18712,0.154216,-0.440281,0.953958,-0.86357,-0.493529,-0.918529,0.237655,2.18394,-0.195272,-0.894654,1 +-0.237757,-0.721898,0.542556,-0.915618,-0.347713,-0.514985,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,0.557539,-0.195272,-0.894654,1 +0.000151612,-0.353288,-1.78269,-1.18712,0.154216,1.42733,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.19508,-0.894654,1 +-0.954859,1.04482,0.542556,0.713372,-1.35157,-0.664395,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +1.13317,0.751537,0.542556,1.52787,1.66,3.51906,0.953958,1.15631,-0.287892,1.08712,0.237655,-0.557707,0.188598,1.11613,1 +-0.737197,-0.495911,0.542556,0.98487,1.66,0.0198996,0.953958,1.15631,0.94593,1.08712,0.237655,-0.255661,0.262301,1.11613,0 +-0.919426,-0.353288,0.542556,0.98487,-0.347713,-0.61509,0.953958,1.15631,0.123382,-0.918529,0.237655,-0.488004,-0.19412,1.11613,0 +-0.315373,-0.654604,0.542556,0.441873,-0.347713,0.00794684,-1.04674,1.15631,-0.287892,1.08712,0.237655,-0.488004,-0.194696,-0.894654,1 +0.788963,-0.503946,-1.78269,1.79936,1.66,2.32379,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.0465528,-0.195272,-0.894654,1 +2.09662,4.66864,-1.78269,0.170375,-0.347713,7.85193,0.953958,1.15631,7.73195,-0.918529,0.237655,-1.06886,-0.192393,1.11613,1 +2.74285,-0.922775,0.542556,-1.73011,-1.8535,-0.664395,0.953958,1.15631,-0.287892,-0.918529,0.237655,0.278727,-0.176078,1.11613,0 +-0.771787,1.30395,-1.78269,1.79936,1.66,-0.440281,0.953958,1.15631,0.329019,-0.918529,0.237655,-1.06886,-0.133661,1.11613,0 +-0.61065,-0.453727,-1.78269,-1.18712,0.154216,0.680288,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.107749,-0.894654,0 +3.20011,0.249344,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,-1.06886,-0.195272,-0.894654,0 +0.338455,-0.805262,0.542556,-0.915618,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.272919,-0.195272,-0.894654,1 +1.41411,1.45461,0.542556,-0.101123,-0.347713,4.1167,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,-0.429919,-0.195272,1.11613,1 +-0.294282,2.05724,-1.78269,0.713372,2.16193,-0.664395,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,2.34057,1.11613,0 +0.303865,-0.453727,0.542556,-0.915618,-0.347713,0.680288,0.953958,1.15631,0.94593,-0.918529,0.237655,-0.197576,0.0484855,1.11613,1 +1.51281,0.567735,0.542556,-1.18712,0.154216,1.60214,0.953958,1.15631,2.59103,1.08712,0.237655,-1.06886,0.764402,1.11613,1 +4.10703,0.148905,0.542556,0.170375,-0.347713,-0.503033,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.130014,-0.894654,1 +-0.195575,1.65549,0.542556,-1.45861,1.66,-0.514985,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.255493,-0.195272,-0.894654,1 +-1.23579,-0.855481,0.542556,-1.18712,-0.347713,-0.61509,-1.04674,1.15631,0.740293,1.08712,0.237655,0.325196,-0.188554,-0.894654,0 +-1.31341,-0.922775,0.542556,-0.372622,-0.347713,-0.365576,-1.04674,1.15631,-0.0822548,1.08712,0.237655,0.789882,-0.19508,-0.894654,0 +2.40539,1.9568,0.542556,-1.73011,-1.8535,4.71434,0.953958,1.15631,2.59103,1.08712,0.237655,-1.06886,-0.00333688,1.11613,1 +-0.301031,-0.554165,0.542556,-0.915618,1.66,0.580184,0.953958,1.15631,-0.0822548,1.08712,0.237655,-0.0175099,-0.195272,1.11613,1 +0.837895,-0.646569,0.542556,-1.18712,0.154216,0.38147,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.18579,-0.195272,1.11613,1 +-0.631741,0.851976,0.542556,-0.372622,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,-0.894654,1 +-0.596308,1.72278,-1.78269,-0.372622,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.371833,-0.104103,-0.894654,1 +0.268432,2.05724,0.542556,1.25637,1.15807,0.941755,0.953958,1.15631,1.3572,1.08712,0.237655,-1.06886,-0.169552,1.11613,1 +0.177318,-0.704823,0.542556,0.441873,-0.347713,-0.316271,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.195272,-0.894654,1 +0.78137,1.05285,0.542556,0.98487,1.66,-0.141462,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.900413,-0.0346223,1.11613,0 +-0.940517,-0.58731,0.542556,0.170375,-0.347713,0.00794684,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.488004,-0.166481,1.11613,1 +0.500435,-0.729933,-1.78269,-1.45861,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.43463,-0.195272,1.11613,1 +1.42845,-0.102191,0.542556,-0.101123,-0.347713,-0.627042,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.238067,-0.195272,1.11613,1 +-0.722855,-0.805262,0.542556,-0.101123,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.789882,-0.195272,-0.894654,1 +0.289523,-0.277959,0.542556,0.170375,1.66,1.81281,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,-0.894654,1 +-1.28557,-0.403507,0.542556,-0.372622,-0.347713,-0.46568,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.604176,-0.191241,-0.894654,1 +-0.750696,1.15329,0.542556,0.98487,1.66,-0.265472,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,1.11613,1 +-0.828312,1.40439,0.542556,0.170375,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.0233185,-0.195272,-0.894654,0 +-0.547376,-0.445691,-1.78269,-0.372622,-0.347713,-0.58969,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.08031,-0.195272,1.11613,0 +0.401728,-0.529055,-1.78269,0.441873,-0.347713,-0.638995,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.778433,0.0325549,1.11613,1 +-0.252099,-0.20263,0.542556,0.170375,-0.347713,-0.58969,-1.04674,1.15631,-0.287892,1.08712,0.237655,-0.836519,-0.165714,-0.894654,0 +-0.792878,1.47972,0.542556,0.170375,-0.347713,0.332165,-1.04674,1.15631,-0.0822548,1.08712,0.237655,-0.0233185,-0.162067,-0.894654,1 +0.2195,-0.646569,0.542556,1.52787,-0.347713,-0.204214,0.953958,1.15631,-0.287892,1.08712,0.237655,1.9516,9.40147,1.11613,1 +0.289523,-0.453727,0.542556,-1.18712,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.150939,-0.195272,-0.894654,1 +-0.252099,-0.22774,0.542556,-0.372622,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.488004,-0.195272,-0.894654,1 +-1.04597,0.131831,0.542556,-1.18712,1.66,-0.577737,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.604176,-0.102375,-0.894654,0 +-0.701764,-0.755042,0.542556,0.170375,-0.347713,-0.414881,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,0.67371,-0.195272,1.11613,1 +-1.27123,-0.93081,0.542556,0.170375,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.30213,-0.195272,-0.894654,1 +-0.969201,-0.93081,0.542556,0.98487,-0.347713,-0.365576,-1.04674,1.15631,-0.287892,-0.918529,0.237655,0.325196,-0.0478658,1.11613,0 +-0.77938,1.25373,0.542556,0.441873,-0.347713,-0.0667578,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.604176,-0.141914,1.11613,1 +0.205158,0.0655413,-1.78269,-1.18712,0.154216,-0.340177,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.71925,-0.195272,-0.894654,1 +2.1523,-0.888626,0.542556,-1.18712,0.154216,-0.365576,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.394899,0.226409,-0.894654,0 +-1.29232,-0.788187,0.542556,-0.101123,-0.347713,-0.638995,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,0.092853,-0.195272,-0.894654,1 +0.106451,-0.453727,0.542556,1.52787,1.66,0.157356,0.953958,1.15631,0.740293,-0.918529,0.237655,-0.13949,0.202417,1.11613,1 +1.40736,4.08309,0.542556,0.441873,-0.347713,-0.141462,0.953958,1.15631,0.123382,-0.918529,0.237655,-0.371833,-0.192585,1.11613,1 +0.2195,-0.403507,0.542556,-1.18712,0.154216,0.0826515,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.278727,-0.156885,-0.894654,1 +-1.11684,-0.712858,-1.78269,0.713372,-1.35157,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,-0.894654,1 +1.0699,-0.855481,0.542556,-0.101123,-0.347713,2.5479,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,1.25457,-0.195272,-0.894654,1 +0.620234,-0.604384,0.542556,-0.915618,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.67371,-0.194888,-0.894654,1 +0.000995261,-0.805262,-1.78269,-0.372622,-0.347713,0.38147,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.789882,-0.195272,-0.894654,1 +-0.547376,-0.61242,0.542556,1.79936,-0.347713,-0.166862,0.953958,1.15631,-0.287892,1.08712,0.237655,1.22553,-0.191433,1.11613,1 +2.8559,1.25373,0.542556,0.713372,2.16193,5.31197,0.953958,1.15631,0.94593,1.08712,0.237655,-0.941073,-0.195272,1.11613,1 +0.823553,-0.95592,0.542556,0.170375,0.154216,3.81788,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-0.0268452,-0.729933,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.511239,-0.191625,-0.894654,1 +0.437162,-0.00978767,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.195272,-0.894654,0 +0.0642689,0.55066,0.542556,0.713372,0.154216,-0.190767,0.953958,-0.86357,-0.493529,1.08712,-3.10892,1.37074,-0.195272,-0.894654,1 +0.0296793,-0.328178,0.542556,-1.73011,-1.8535,0.244013,-1.04674,1.15631,-0.0822548,1.08712,0.237655,0.092853,-0.194504,-0.894654,0 +-0.568468,-0.403507,0.542556,0.170375,-0.347713,0.00794684,0.953958,1.15631,0.740293,-0.918529,0.237655,-8.41822e-05,-0.0801108,1.11613,1 +-0.81397,-0.847446,-1.78269,1.79936,-0.347713,-0.652442,0.953958,1.15631,-0.287892,1.08712,0.237655,3.81034,-0.183948,1.11613,1 +0.22625,-0.353288,0.542556,1.52787,1.66,1.55134,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +1.70938,-0.353288,-1.78269,-1.73011,-1.8535,-0.216167,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.0233185,-0.194504,-0.894654,1 +0.000151612,-0.654604,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,-0.0822548,1.08712,0.237655,0.092853,-0.175119,-0.894654,0 +0.578051,-0.814301,0.542556,0.170375,-0.347713,-0.552338,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,0.238067,-0.0993043,-0.894654,1 +0.641325,-0.61242,0.542556,1.79936,-0.347713,-0.627042,0.953958,1.15631,0.534656,1.08712,0.237655,1.71925,-0.195272,1.11613,1 +-1.13034,-0.461762,0.542556,0.170375,1.15807,-0.377529,-1.04674,1.15631,-0.0822548,1.08712,0.237655,-0.13949,-0.082606,-0.894654,1 +0.626983,0.0484667,0.542556,1.52787,-0.347713,0.38147,0.953958,1.15631,1.56284,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +-0.97595,1.26277,0.542556,0.170375,-0.347713,-0.0667578,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.278896,-0.195272,-0.894654,1 +0.0997022,-0.486871,0.542556,-1.45861,1.66,1.05381,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.627242,-0.195272,-0.894654,1 +-1.09575,0.19109,0.542556,-1.45861,-0.347713,-0.503033,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.195272,-0.894654,1 +-1.32775,0.57577,0.542556,0.98487,-0.347713,-0.627042,-1.04674,1.15631,-0.287892,1.08712,0.237655,-1.06886,-0.164562,-0.894654,0 +0.654823,0.224234,0.542556,1.52787,1.66,2.32379,0.953958,1.15631,2.38539,1.08712,0.237655,1.24876,-0.195272,1.11613,1 +-1.01138,-0.822336,0.542556,0.441873,-0.347713,-0.166862,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.209025,-0.194312,-0.894654,0 +-0.863745,1.15329,0.542556,0.170375,-0.347713,0.232061,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +-0.750696,-0.805262,0.542556,0.170375,-0.347713,-0.0667578,-1.04674,1.15631,-0.0822548,1.08712,0.237655,0.092853,-0.119649,-0.894654,0 +-0.497601,-0.303069,0.542556,0.170375,1.66,0.0198996,-1.04674,1.15631,-0.287892,1.08712,0.237655,1.34751,-0.191241,-0.894654,1 +-0.884836,1.06993,-1.78269,0.713372,1.66,-0.290872,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.441367,-0.195272,-0.894654,1 +1.47063,-0.654604,0.542556,-0.64412,-0.849641,-0.664395,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.488004,-0.190089,-0.894654,0 +-0.919426,0.106721,0.542556,0.98487,-0.347713,-0.552338,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.13949,-0.195272,-0.894654,1 +-1.00379,-0.913736,0.542556,0.98487,1.66,-0.577737,0.953958,1.15631,1.76848,-0.918529,0.237655,-0.604176,-0.17627,1.11613,0 +-0.821562,-0.9057,0.542556,-1.45861,1.66,-0.46568,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +-0.399738,-0.847446,0.542556,-0.915618,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,-0.894654,1 +0.591549,0.0484667,0.542556,1.52787,-0.347713,3.36965,0.953958,-0.86357,-0.493529,1.08712,0.237655,4.62354,-0.195272,-0.894654,0 +1.56175,1.56308,0.542556,-0.372622,-0.347713,0.0198996,0.953958,1.15631,0.123382,1.08712,0.237655,-0.162724,-0.195272,1.11613,0 +-1.3345,-0.880591,0.542556,0.170375,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.191817,-0.894654,0 +-0.596308,1.60527,0.542556,0.170375,0.154216,0.754993,0.953958,1.15631,-0.0822548,-0.918529,0.237655,-0.644836,-0.110053,1.11613,0 +-0.891585,0.00628251,-1.78269,0.441873,-0.347713,0.00794684,0.953958,1.15631,-0.287892,1.08712,0.237655,-0.604176,-0.137691,1.11613,1 +-0.800471,1.25373,0.542556,1.52787,-0.347713,-0.46568,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,1.11613,1 +1.94139,0.93534,0.542556,-1.73011,-1.8535,3.64307,0.953958,1.15631,1.76848,1.08712,0.237655,-0.894605,-0.137691,1.11613,1 +-1.13793,0.148905,0.542556,-0.915618,-0.347713,-0.514985,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.604176,-0.195272,1.11613,1 +0.430413,-0.0690465,-1.78269,-0.915618,-0.347713,-0.58969,0.953958,1.15631,1.56284,1.08712,0.237655,0.789882,-0.195272,1.11613,1 +0.55696,1.07796,0.542556,1.79936,-0.347713,0.0826515,0.953958,1.15631,0.740293,-0.918529,0.237655,1.9516,-0.157652,1.11613,1 +-0.821562,-0.646569,0.542556,-0.915618,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.998991,-0.195272,-0.894654,1 +1.71698,0.349783,0.542556,-1.18712,0.154216,0.25746,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.644836,-0.195272,-0.894654,0 +-0.792878,-0.503946,0.542556,-1.18712,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.193352,-0.894654,1 +1.75916,-0.654604,0.542556,-1.45861,-0.347713,0.456175,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.128095,-0.894654,1 +2.47626,0.0484667,0.542556,-0.372622,-0.347713,0.530879,0.953958,1.15631,0.329019,-0.918529,0.237655,-1.06886,-0.17627,1.11613,0 +-0.961608,0.174015,0.542556,0.441873,-0.347713,-0.153415,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,-0.371833,-0.195272,1.11613,1 +-0.701764,-0.152411,0.542556,0.170375,0.154216,-0.58969,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.13949,-0.195272,1.11613,1 +0.38823,-0.871551,-1.78269,0.441873,-0.347713,-0.577737,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.725988,-0.194888,-0.894654,1 +0.901169,-0.604384,-1.78269,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.197576,-0.19508,-0.894654,0 +-0.673924,-0.788187,0.542556,-1.18712,1.66,-0.638995,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.209025,-0.194312,-0.894654,1 +0.373888,-0.755042,0.542556,0.170375,-0.347713,-0.0667578,0.953958,1.15631,1.76848,-0.918529,0.237655,-1.06886,-0.107749,1.11613,0 +0.675914,0.0484667,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,-0.970116,-0.19508,-0.894654,1 +-1.07466,-0.0690465,-1.78269,0.170375,1.66,0.232061,0.953958,-0.86357,-0.493529,-0.918529,0.237655,0.325196,-0.195272,1.11613,0 +-0.364305,-0.830371,0.542556,-0.372622,-0.347713,-0.528432,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.092853,-0.195272,-0.894654,1 +0.0718618,-0.353288,0.542556,-1.45861,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.371833,-0.195272,-0.894654,1 +-1.02488,-0.654604,-1.78269,1.52787,-0.347713,-0.0667578,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.488004,-0.191433,-0.894654,1 +-0.758289,1.20351,0.542556,0.98487,-0.347713,-0.540385,0.953958,1.15631,0.534656,1.08712,0.237655,-1.06886,-0.0877882,1.11613,0 +0.704598,0.291528,0.542556,0.98487,-0.347713,-0.652442,0.953958,1.15631,-0.287892,-0.918529,0.237655,0.092853,-0.137691,1.11613,1 +-0.750696,-0.922775,0.542556,0.170375,-0.849641,0.00794684,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,-1.06886,-0.195272,1.11613,1 +-0.687422,-0.797227,-1.78269,0.98487,-0.347713,-0.216167,0.953958,1.15631,-0.0822548,1.08712,0.237655,-0.604176,-0.118498,1.11613,0 +-0.132301,0.106721,0.542556,0.713372,-1.35157,0.00794684,0.953958,1.15631,0.534656,1.08712,0.237655,-0.493813,-0.0993043,1.11613,0 +0.739188,0.558695,-1.78269,0.98487,1.66,1.72615,0.953958,1.15631,2.38539,-0.918529,0.237655,-1.06886,0.246178,1.11613,0 +0.437162,0.0735764,0.542556,0.713372,-0.347713,0.829698,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,0.572468,1.11613,0 +-0.0479364,-0.537091,0.542556,0.170375,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.67371,-0.195272,-0.894654,1 +-0.539784,-0.378398,0.542556,1.79936,1.66,-0.402929,0.953958,-0.86357,-0.493529,-0.918529,0.237655,1.02222,-0.195272,1.11613,0 +-0.349963,1.55505,0.542556,-0.372622,0.154216,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,3.11331,-0.195272,-0.894654,1 +0.000151612,-0.152411,0.542556,1.79936,-0.347713,0.829698,0.953958,1.15631,0.123382,1.08712,0.237655,0.615625,0.242148,1.11613,1 +0.211907,0.349783,0.542556,-0.372622,-0.347713,-0.627042,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.50434,-0.195272,-0.894654,1 +-0.800471,-0.486871,0.542556,-0.915618,-0.347713,-0.440281,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.0233185,-0.195272,-0.894654,1 +-0.0411872,-0.336213,0.542556,0.170375,-0.347713,0.0826515,-1.04674,1.15631,-0.0822548,1.08712,0.237655,-0.13949,-0.187402,-0.894654,1 +0.000151612,-0.855481,0.542556,0.170375,0.154216,-0.414881,0.953958,-0.86357,-0.493529,1.08712,-3.10892,0.789882,-0.195272,-0.894654,1 +-1.31341,-0.328178,0.542556,0.441873,-0.347713,-0.638995,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-1.06886,-0.19412,-0.894654,1 +-0.364305,-0.621459,0.542556,1.52787,1.66,0.855097,0.953958,1.15631,1.3572,-0.918529,0.237655,1.24876,-0.0365416,1.11613,1 +-0.539784,-0.353288,0.542556,0.170375,-0.347713,-0.290872,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-1.06886,-0.191049,-0.894654,1 +3.05247,0.148905,0.542556,0.713372,2.16193,3.22025,0.953958,1.15631,-0.287892,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +-1.07466,0.952415,0.542556,0.441873,-0.347713,-0.178815,0.953958,1.15631,0.740293,1.08712,0.237655,-0.836519,-0.0801108,1.11613,0 +-0.364305,-0.897665,0.542556,-0.101123,1.66,-0.627042,-1.04674,1.15631,-0.287892,1.08712,0.237655,0.51107,-0.174543,-0.894654,0 +-1.01138,-0.822336,-1.78269,0.170375,-0.347713,-0.365576,-1.04674,1.15631,-0.287892,-0.918529,0.237655,10.5483,-0.194888,-0.894654,0 +-0.0690276,-0.637529,0.542556,-1.45861,-0.347713,-0.489586,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,-1.06886,-0.195272,-0.894654,1 +1.57609,-0.788187,0.542556,-0.372622,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.325196,-0.172815,-0.894654,0 +-0.0411872,-0.654604,-1.78269,0.441873,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,-0.13949,-0.195272,-0.894654,1 +1.68829,2.05724,0.542556,0.170375,-0.347713,1.87556,0.953958,1.15631,1.3572,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +0.42282,-0.897665,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,1.56284,-0.918529,0.237655,0.092853,-0.191817,-0.894654,0 +0.169725,-0.403507,0.542556,-0.101123,-0.347713,0.605584,0.953958,1.15631,0.740293,-0.918529,0.237655,0.116087,-0.195272,1.11613,1 +-0.905927,-0.353288,0.542556,-0.372622,-0.347713,-0.652442,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,1.11613,0 +0.38823,2.68498,0.542556,0.441873,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.789882,0.486481,-0.894654,1 +1.61827,-0.838407,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.226619,-0.195272,-0.894654,1 +-0.673924,-0.789192,0.542556,0.98487,-0.347713,-0.540385,-1.04674,1.15631,-0.287892,1.08712,0.237655,0.092853,-0.19316,-0.894654,0 +0.303865,-0.0519719,0.542556,1.79936,1.66,1.05381,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,3.06103,-0.195272,1.11613,1 +2.26535,3.2625,0.542556,-1.18712,0.154216,2.32379,0.953958,1.15631,2.17975,-0.918529,0.237655,-1.06886,1.09069,1.11613,0 +-0.27994,-0.780152,0.542556,-0.101123,-0.347713,-0.377529,0.953958,1.15631,0.123382,1.08712,0.237655,1.23133,-0.195272,1.11613,1 +0.000151612,-0.830371,0.542556,-0.915618,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,1.1384,0.190517,-0.894654,1 +0.0153373,-0.353288,-1.78269,-0.64412,-0.849641,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.191433,-0.894654,0 +-1.02488,0.349783,0.542556,0.441873,1.66,-0.22812,0.953958,1.15631,0.94593,-0.918529,0.237655,-0.604176,0.371704,1.11613,1 +0.633732,0.249344,0.542556,-0.101123,-0.347713,-0.278919,0.953958,1.15631,0.534656,1.08712,0.237655,-0.441536,0.0152808,1.11613,1 +-1.2223,-0.295033,0.542556,-1.18712,-0.347713,-0.564291,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.255661,-0.194888,-0.894654,1 +1.11883,0.450221,-1.78269,0.170375,-0.347713,-0.178815,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.194888,-0.894654,1 +-1.29232,-0.95592,-1.78269,-0.372622,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.720347,-0.195272,-0.894654,1 +0.810055,0.349783,0.542556,0.98487,-0.347713,-0.514985,0.953958,1.15631,0.123382,1.08712,0.237655,-0.226619,-0.195272,1.11613,0 +-0.223415,2.05724,0.542556,0.170375,1.66,0.929802,0.953958,1.15631,1.76848,-0.918529,0.237655,-1.06886,0.242915,1.11613,1 +-0.455419,-0.554165,0.542556,-0.64412,-0.849641,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.534305,-0.19508,-0.894654,0 +0.591549,-0.285994,0.542556,0.441873,-0.347713,0.530879,0.953958,1.15631,2.38539,-0.918529,0.237655,1.15582,0.0626887,1.11613,1 +-0.539784,0.249344,0.542556,0.170375,-0.347713,-0.365576,0.953958,1.15631,0.123382,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-0.286689,-0.880591,0.542556,0.98487,-0.347713,-0.489586,0.953958,1.15631,0.329019,-0.918529,0.237655,-0.604176,-0.195272,1.11613,0 +3.53082,2.60965,0.542556,-1.73011,-1.8535,-0.664395,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +-0.765038,1.35417,-1.78269,-0.101123,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,0.572468,-0.894654,1 +-0.371054,-0.704823,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.534473,-0.137691,-0.894654,0 +-1.04597,0.768612,0.542556,1.52787,1.66,-0.440281,0.953958,1.15631,0.94593,-0.918529,0.237655,-0.511239,-0.195272,1.11613,0 +-0.505194,-0.95592,0.542556,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,3.58423,-8.41822e-05,-0.195272,1.11613,0 +0.000151612,-0.947885,-1.78269,-1.45861,-0.347713,0.605584,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.60308,-0.195272,-0.894654,1 +-0.765038,0.751537,0.542556,0.98487,-0.347713,-0.141462,0.953958,1.15631,1.56284,-0.918529,0.237655,-0.604176,-0.00525623,-0.894654,0 +-0.729605,-0.704823,0.542556,0.98487,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.371833,-0.0399964,-0.894654,0 +-0.701764,1.58016,0.542556,0.170375,-0.347713,-0.627042,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,-1.06886,0.87035,-0.894654,1 +-0.174484,-0.737968,-1.78269,1.79936,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.557539,-0.192777,-0.894654,0 +0.0364285,0.249344,0.542556,-1.45861,-0.347713,-0.290872,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.51107,-0.195272,-0.894654,0 +-0.385396,-0.654604,-1.78269,0.441873,-0.347713,-0.552338,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.441367,0.00913888,1.11613,1 +-1.03247,1.23666,0.542556,0.170375,0.154216,-0.489586,-1.04674,1.15631,-0.0822548,1.08712,0.237655,0.092853,-0.193928,-0.894654,1 +0.352797,-0.470801,0.542556,0.441873,-0.347713,-0.627042,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,0.209025,-0.19508,-0.894654,1 +-1.07466,-0.95592,0.542556,0.98487,-0.347713,-0.46568,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.19508,-0.894654,1 +-0.237757,-0.20263,0.542556,0.170375,-0.347713,-0.340177,0.953958,1.15631,-0.287892,1.08712,0.237655,1.08612,-0.195272,1.11613,0 +0.240592,-0.102191,0.542556,-1.18712,0.154216,0.306765,0.953958,1.15631,-0.0822548,-0.918529,0.237655,0.522688,-0.0781915,1.11613,1 +0.141885,-0.353288,-1.78269,-0.372622,-0.347713,-0.0667578,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.0233185,-0.195272,-0.894654,0 +1.88571,0.977524,0.542556,0.713372,-0.347713,1.92487,0.953958,1.15631,0.534656,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-0.533034,-0.755042,0.542556,-0.372622,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.195272,-0.894654,1 +0.0718618,-0.52102,-1.78269,-0.915618,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.195272,-0.894654,1 +-0.884836,0.0484667,-1.78269,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,0 +2.10337,2.25812,0.542556,-0.64412,-1.8535,-0.664395,0.953958,1.15631,2.59103,-0.918529,0.237655,-1.06886,-0.147864,1.11613,0 +0.0575197,-0.922775,-1.78269,0.170375,1.66,0.306765,0.953958,1.15631,-0.287892,1.08712,0.237655,1.44044,1.34021,1.11613,1 +-0.933768,1.42146,0.542556,0.170375,1.66,1.12852,0.953958,-0.86357,-0.493529,-0.918529,0.237655,0.906053,-0.195272,1.11613,0 +-0.11121,0.148905,0.542556,-0.915618,-0.347713,0.979107,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,-0.488004,-0.195272,-0.894654,0 +-0.589559,-0.821332,0.542556,-0.372622,1.66,-0.141462,0.953958,-0.86357,-0.493529,-0.918529,0.237655,1.25457,-0.195272,-0.894654,0 +-0.708513,1.27884,0.542556,1.79936,1.66,-0.526938,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.488004,-0.195272,1.11613,1 +0.000151612,1.30395,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-8.41822e-05,0.802789,-0.894654,0 +0.0642689,-0.847446,0.542556,1.52787,-0.347713,-0.652442,0.953958,-0.86357,-0.493529,-0.918529,0.237655,1.48691,1.94998,1.11613,0 +-0.64524,-0.654604,0.542556,-1.45861,1.66,-0.10411,0.953958,1.15631,0.740293,-0.918529,0.237655,0.092853,-0.132509,1.11613,1 +0.437162,-0.93081,-1.78269,0.170375,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.278727,-0.173583,1.11613,1 +-0.146643,-0.704823,-1.78269,-0.915618,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.232259,-0.195272,-0.894654,1 +-0.631741,-0.855481,0.542556,0.98487,1.66,-0.290872,0.953958,1.15631,-0.287892,-0.918529,0.237655,-1.06886,-0.0651399,1.11613,0 +-0.877243,-0.9057,-1.78269,0.170375,1.66,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.557539,-0.156117,-0.894654,1 +-0.0125031,2.15768,0.542556,0.170375,-0.347713,-0.514985,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.195272,-0.894654,1 +-0.737197,-0.353288,0.542556,-0.101123,-0.347713,-0.278919,0.953958,1.15631,-0.287892,-0.918529,0.237655,0.441367,-0.0417238,1.11613,1 +0.500435,-0.604384,-1.78269,0.170375,0.154216,-0.58969,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.116256,-0.118498,-0.894654,1 +-0.568468,-0.0519719,0.542556,0.441873,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.02222,-0.19412,-0.894654,0 +0.401728,-0.194595,0.542556,0.441873,-0.347713,-0.316271,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.092853,-0.195272,-0.894654,1 +1.32299,-0.805262,0.542556,0.98487,1.66,0.157356,0.953958,1.15631,-0.287892,-0.918529,0.237655,0.865393,-0.0240658,1.11613,0 +0.0431777,-0.152411,-1.78269,1.52787,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.371833,-0.195272,-0.894654,1 +-0.0833696,1.18644,0.542556,0.98487,1.66,-0.638995,-1.04674,1.15631,1.97411,1.08712,0.237655,-0.319556,-0.194696,-0.894654,0 +-0.315373,-0.646569,0.542556,0.441873,-0.347713,0.456175,0.953958,1.15631,0.534656,1.08712,0.237655,-0.488004,-0.194696,1.11613,1 +1.96248,2.15768,0.542556,0.713372,2.16193,-0.664395,0.953958,1.15631,3.61921,-0.918529,0.237655,-0.185959,-0.17032,-0.894654,1 +-1.30666,-0.805262,0.542556,0.170375,-0.347713,-0.141462,0.953958,1.15631,0.534656,1.08712,0.237655,0.975756,-0.0628367,1.11613,1 +-0.589559,1.55505,0.542556,0.441873,-0.347713,-0.402929,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.441367,-0.195272,-0.894654,1 +0.092953,0.148905,0.542556,0.98487,1.66,0.979107,0.953958,1.15631,1.97411,1.08712,0.237655,1.30104,-0.00333688,1.11613,1 +-0.117959,-0.855481,0.542556,0.170375,-0.347713,-0.141462,0.953958,1.15631,1.76848,-0.918529,0.237655,-0.882988,-0.0916269,1.11613,1 +-0.786129,-0.863516,0.542556,-0.915618,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.557539,-0.184715,-0.894654,1 +0.858986,-0.763078,0.542556,1.79936,-0.347713,0.0826515,0.953958,-0.86357,-0.493529,-0.918529,0.237655,1.89351,-0.0801108,1.11613,1 +0.430413,-0.554165,0.542556,-1.18712,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.214833,-0.195272,-0.894654,1 +-0.484103,1.62234,0.542556,1.52787,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.194888,-0.894654,1 +-0.13905,-0.58731,0.542556,0.170375,1.66,0.630983,0.953958,-0.86357,-0.493529,-0.918529,0.237655,0.441367,-0.156885,1.11613,1 +-0.969201,-0.9057,0.542556,0.98487,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.195272,-0.894654,1 +-1.00379,-0.880591,0.542556,0.98487,-0.347713,-0.0667578,0.953958,1.15631,-0.0822548,1.08712,0.237655,-0.604176,-0.195272,1.11613,1 +1.67479,-0.947885,0.542556,1.79936,1.66,-0.652442,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,0.380533,1.11613,1 +2.63065,0.450221,0.542556,0.713372,2.16193,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.192968,-0.894654,1 +0.760279,-0.295033,0.542556,-0.101123,-0.347713,0.38147,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,1.25457,-0.195272,-0.894654,1 +-1.28557,-0.913736,0.542556,-0.372622,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.19508,-0.894654,0 +-0.174484,-0.839411,0.542556,0.441873,-0.347713,-0.577737,-1.04674,1.15631,-0.287892,-0.918529,0.237655,0.906053,0.342722,-0.894654,1 +0.205158,-0.0519719,0.542556,-0.372622,-0.347713,-0.365576,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.325196,-0.195272,-0.894654,1 +3.37559,-0.95592,0.542556,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,3.58423,-8.41822e-05,-0.195272,1.11613,0 +0.880077,-0.91474,0.542556,-1.18712,1.66,0.86705,0.953958,-0.86357,-0.493529,-0.918529,0.237655,1.25457,-0.195272,1.11613,1 +-0.765038,1.25373,-1.78269,0.98487,-0.347713,0.232061,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.487836,-0.195272,-0.894654,0 +-0.603057,-0.554165,0.542556,0.713372,-1.35157,-0.61509,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,0.789882,0.0542436,-0.894654,1 +1.07665,-0.855481,0.542556,-1.18712,1.66,0.829698,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.789882,-0.195272,1.11613,1 +-0.722855,1.40439,0.542556,1.79936,1.66,-0.514985,0.953958,1.15631,-0.0822548,1.08712,0.237655,0.67371,-0.0895156,1.11613,0 +0.240592,-0.687749,0.542556,-1.18712,0.154216,-0.627042,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.48691,0.668435,-0.894654,1 +-0.716106,1.35417,0.542556,-1.18712,-0.347713,0.38147,0.953958,1.15631,1.3572,-0.918529,0.237655,-0.743582,-0.0528561,1.11613,1 +-0.47651,-0.780152,0.542556,-0.915618,-0.347713,-0.552338,-1.04674,1.15631,-0.0822548,1.08712,0.237655,-0.0581699,-0.194696,-0.894654,1 +-1.18011,0.851976,0.542556,-0.372622,-0.347713,-0.253519,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,1.11613,0 +-0.940517,-0.737968,0.542556,0.98487,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.441536,-0.193928,-0.894654,1 +0.0085881,2.29126,0.542556,-1.45861,-0.347713,0.232061,0.953958,1.15631,1.3572,-0.918529,0.237655,0.383282,-0.0551593,1.11613,1 +2.19448,-0.554165,0.542556,-1.73011,-1.8535,1.27793,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-1.06886,-0.193352,-0.894654,0 +2.3708,-0.646569,0.542556,0.98487,-0.347713,-0.627042,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.441367,-0.195272,1.11613,1 +2.83481,1.85636,0.542556,-1.73011,-1.8535,-0.664395,0.953958,1.15631,1.76848,1.08712,0.237655,-1.06886,0.073437,1.11613,0 +-0.125552,-0.747007,-1.78269,-1.18712,0.154216,-0.514985,0.953958,1.15631,1.56284,1.08712,0.237655,-0.30213,-0.189898,-0.894654,1 +1.4352,0.349783,0.542556,0.98487,1.66,1.12852,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.964139,-0.195272,1.11613,1 +-0.673924,1.35417,-1.78269,-0.915618,1.66,0.232061,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.95269,-0.192201,-0.894654,0 +-0.961608,0.902195,0.542556,0.170375,-0.347713,-0.166862,0.953958,1.15631,0.123382,1.08712,0.237655,-0.836519,-0.189898,1.11613,1 +1.40061,0.57577,0.542556,0.441873,1.66,3.96729,0.953958,1.15631,1.97411,-0.918529,0.237655,-1.06886,-0.0436432,1.11613,1 +-0.701764,-0.654604,0.542556,0.98487,-0.347713,0.0452991,0.953958,1.15631,0.123382,1.08712,0.237655,-1.06886,-0.0835656,1.11613,1 +0.0575197,1.85636,-1.78269,-1.73011,-1.8535,-0.664395,-1.04674,1.15631,-0.0822548,-0.918529,0.237655,-0.13949,-0.19508,-0.894654,1 +0.169725,-0.888626,-1.78269,1.52787,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.0233185,-0.195272,-0.894654,1 +-0.673924,-0.863516,-1.78269,0.441873,-0.347713,0.120004,0.953958,1.15631,0.740293,1.08712,0.237655,0.139322,-0.12867,-0.894654,1 +-1.23579,-0.888626,-1.78269,-0.915618,-0.347713,-0.577737,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,0.092853,-0.195272,-0.894654,1 +-0.905927,0.751537,0.542556,0.170375,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.127903,-0.894654,0 +2.44758,2.35856,0.542556,0.98487,-0.347713,2.62261,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.946882,1.83175,1.11613,0 +0.000151612,0.0484667,-1.78269,-0.372622,-0.347713,1.87556,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,1 +-0.554126,1.5209,0.542556,1.52787,1.66,0.38147,0.953958,1.15631,0.740293,-0.918529,0.237655,1.25457,-0.107366,1.11613,0 +-0.849403,1.00263,0.542556,0.170375,-0.347713,-0.58969,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.255661,-0.195272,-0.894654,1 +-0.940517,-0.95592,0.542556,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,3.58423,-8.41822e-05,-0.195272,-0.894654,1 +-0.533034,1.75592,-1.78269,-1.73011,-1.8535,-0.0667578,-1.04674,1.15631,-0.287892,1.08712,0.237655,0.092853,-0.19508,-0.894654,0 +0.9501,-0.0268622,0.542556,0.98487,-0.347713,0.704194,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,-1.06886,-0.195272,1.11613,1 +-0.413236,-0.604384,-1.78269,0.170375,-0.347713,-0.365576,0.953958,1.15631,0.534656,1.08712,0.237655,-0.13949,0.913536,1.11613,1 +2.21557,0.458256,0.542556,-0.101123,-0.347713,3.51906,0.953958,1.15631,0.740293,1.08712,0.237655,1.02222,0.0603855,1.11613,1 +2.05444,1.35417,0.542556,-1.73011,-1.8535,0.829698,0.953958,1.15631,0.534656,-0.918529,0.237655,-1.06886,1.50354,1.11613,1 +1.6672,1.05285,0.542556,-1.18712,0.154216,-0.664395,0.953958,1.15631,1.76848,-0.918529,0.237655,-1.06886,0.0444549,1.11613,1 +0.697006,-0.855481,0.542556,-0.101123,-0.347713,-0.58969,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,0.604008,-0.195272,-0.894654,1 +-0.336464,-0.54613,-1.78269,-0.372622,-0.347713,-0.0667578,0.953958,1.15631,0.123382,1.08712,0.237655,1.08031,-0.0877882,1.11613,1 +-0.117959,0.349783,0.542556,1.52787,-0.347713,0.269413,0.953958,1.15631,1.15157,-0.918529,0.237655,0.847968,0.0350501,1.11613,1 +1.70938,-0.54613,-1.78269,-1.73011,-1.8535,-0.216167,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.19508,-0.894654,1 +-0.554126,1.25373,-1.78269,-0.372622,-0.347713,0.680288,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.195272,-0.894654,0 +-0.160142,-0.805262,-1.78269,0.170375,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.325196,-0.195272,-0.894654,1 +0.177318,-0.880591,0.542556,1.52787,-0.347713,-0.552338,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.67371,-0.186827,1.11613,0 +-0.490852,-0.805262,0.542556,0.170375,0.154216,-0.58969,0.953958,-0.86357,-0.493529,-0.918529,0.237655,0.958331,-0.190857,1.11613,1 +-0.244507,-0.747007,0.542556,0.170375,-0.347713,0.0826515,0.953958,1.15631,0.534656,1.08712,0.237655,0.67371,0.0791951,1.11613,0 +-1.13793,-0.880591,2.8678,1.52787,-1.8535,2.32379,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.67371,-0.195272,1.11613,0 +-0.940517,0.450221,0.542556,0.170375,-0.347713,-0.178815,0.953958,1.15631,0.123382,-0.918529,0.237655,0.092853,0.0717096,1.11613,1 +-1.18686,3.46338,2.8678,-1.73011,1.15807,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,3.58423,1.545,18.9982,1.11613,1 +-1.13793,0.400002,-1.78269,-0.101123,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.255661,-0.195272,-0.894654,1 +1.35843,-0.453727,0.542556,-0.101123,0.154216,0.0826515,0.953958,1.15631,1.97411,1.08712,0.237655,1.31265,0.286485,1.11613,1 +2.18098,0.751537,0.542556,0.713372,1.66,1.42733,0.953958,1.15631,0.123382,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-1.50323,-0.152411,-1.78269,0.441873,-0.347713,-0.141462,0.953958,1.15631,-0.0822548,1.08712,0.237655,-0.371833,-0.00333688,1.11613,1 +-1.03247,0.952415,0.542556,0.98487,-0.347713,-0.365576,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.720347,-0.118498,1.11613,1 +-0.81397,1.38731,0.542556,-0.915618,1.66,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.789882,-0.194312,-0.894654,0 +-1.18011,1.05285,0.542556,0.441873,1.66,-0.61509,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.371833,-0.19508,-0.894654,1 +0.275181,-0.453727,-1.78269,0.441873,-0.347713,0.232061,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,0.092853,-0.195272,-0.894654,1 +-0.202324,-0.252849,0.542556,0.441873,-0.347713,0.38147,0.953958,1.15631,0.123382,1.08712,0.237655,0.842159,-0.195272,-0.894654,1 +-0.856152,-0.805262,-1.78269,1.25637,1.15807,-0.440281,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.30213,-0.194888,-0.894654,1 +-1.13034,1.10307,0.542556,0.170375,1.66,-0.340177,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.789882,-0.192777,-0.894654,1 +-0.301031,-0.353288,0.542556,0.441873,-0.347713,-0.440281,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.67371,-0.182412,-0.894654,1 +1.20319,1.15329,0.542556,0.98487,-0.347713,0.829698,0.953958,1.15631,0.94593,1.08712,0.237655,-1.06886,-0.195272,1.11613,0 +-0.743947,1.35417,0.542556,-1.18712,-0.347713,-0.540385,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,1 +0.000151612,-0.252849,0.542556,-1.45861,-0.347713,0.232061,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.67371,-0.195272,-0.894654,0 +-0.940517,0.55066,0.542556,-0.915618,-0.347713,-0.216167,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.13949,-0.150359,1.11613,0 +-0.870494,-0.486871,0.542556,-1.18712,0.154216,-0.514985,0.953958,1.15631,0.329019,-0.918529,-3.10892,-0.604176,-0.195272,1.11613,0 +-0.413236,-0.102191,0.542556,1.52787,-0.347713,0.617537,0.953958,1.15631,-0.287892,1.08712,0.237655,-0.371833,-0.195272,1.11613,1 +-0.357556,-0.621459,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.906053,-0.19508,-0.894654,0 +0.886827,-0.747007,0.542556,0.441873,-0.347713,0.829698,0.953958,1.15631,0.740293,1.08712,0.237655,1.83543,1.72408,1.11613,1 +-1.12359,1.05285,0.542556,0.441873,-0.347713,-0.365576,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.371833,-0.19508,-0.894654,0 +-0.258849,-0.755042,0.542556,0.98487,-0.347713,-0.365576,0.953958,1.15631,-0.0822548,1.08712,0.237655,-0.09883,-0.0993043,-0.894654,0 +-0.849403,0.249344,0.542556,-0.372622,-0.347713,0.0826515,0.953958,1.15631,0.123382,-0.918529,0.237655,-0.604176,-0.0190755,1.11613,0 +-0.821562,1.25373,0.542556,1.79936,-0.347713,-0.577737,0.953958,1.15631,0.740293,-0.918529,0.237655,-0.366024,-0.195272,1.11613,1 +-0.81397,-0.855481,0.542556,0.170375,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,1.02222,-0.195272,-0.894654,1 +0.092953,0.851976,-1.78269,0.441873,1.66,0.904402,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.174341,-0.195272,1.11613,1 +1.16101,-0.755042,0.542556,0.98487,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.458793,-0.195272,-0.894654,0 +-0.673924,-0.838407,-1.78269,-1.73011,-1.8535,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.178573,-0.894654,0 +-1.15143,-0.847446,0.542556,0.170375,-0.347713,-0.141462,-1.04674,1.15631,-0.287892,1.08712,0.237655,-0.604176,-0.194312,-0.894654,0 +0.120793,-0.453727,-1.78269,0.441873,-0.347713,1.42733,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.557539,-0.195272,-0.894654,1 +-0.750696,-0.888626,0.542556,0.98487,-0.347713,-0.440281,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,-0.13949,-0.195272,-0.894654,0 +0.261683,-0.738972,0.542556,-0.101123,-0.347713,-0.316271,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,-0.906222,-0.195272,-0.894654,1 +-0.160142,-0.671678,0.542556,0.441873,1.66,-0.440281,0.953958,1.15631,-0.287892,-0.918529,0.237655,0.325196,-0.176078,1.11613,1 +0.0220865,-0.453727,0.542556,-0.372622,-0.347713,1.57674,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.96902,-0.195272,-0.894654,1 +-0.919426,-0.58731,0.542556,0.98487,-0.347713,-0.0413582,0.953958,1.15631,0.534656,-0.918529,0.237655,0.209025,0.285141,1.11613,0 +0.184067,-0.403507,0.542556,-1.18712,0.154216,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.0233185,-0.195272,-0.894654,1 +-0.800471,-0.789192,0.542556,0.170375,1.66,-0.0174527,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.325364,-0.195272,1.11613,1 +0.324956,1.45461,0.542556,0.98487,1.66,3.51906,0.953958,1.15631,1.15157,-0.918529,0.237655,-1.06886,1.06958,1.11613,0 +0.0296793,-0.060007,0.542556,1.52787,1.66,1.14047,0.953958,1.15631,0.123382,-0.918529,0.237655,0.737605,-0.137691,1.11613,1 +-0.750696,-0.797227,0.542556,-1.18712,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.232427,-0.195272,-0.894654,0 +-0.413236,1.97388,0.542556,-1.18712,0.154216,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.0349356,-0.195272,-0.894654,1 +1.04881,-0.554165,0.542556,-0.101123,-0.347713,-0.141462,0.953958,1.15631,-0.0822548,1.08712,0.237655,-1.06886,-0.192393,1.11613,1 +-0.117959,-0.737968,-1.78269,0.170375,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.0814042,-0.160915,-0.894654,1 +0.521527,0.450221,0.542556,0.98487,1.66,2.77202,0.953958,1.15631,0.94593,1.08712,0.237655,0.67371,-0.194312,-0.894654,1 +-1.2223,-0.938845,-1.78269,0.170375,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.255661,-0.0566948,-0.894654,1 +1.48497,-0.495911,0.542556,-1.73011,-1.8535,-0.577737,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.194696,-0.894654,1 +-0.729605,-0.921771,0.542556,-0.101123,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,-1.06886,-0.195272,-0.894654,1 +0.275181,-0.704823,-1.78269,-1.18712,1.66,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.13949,-0.195272,-0.894654,0 +1.0699,1.25373,-1.78269,-1.45861,-0.347713,-0.216167,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,-1.06886,-0.195272,-0.894654,1 +2.35646,-0.403507,0.542556,0.441873,-0.347713,-0.141462,0.953958,1.15631,0.534656,1.08712,0.237655,-0.720347,-0.184139,1.11613,1 +-0.511943,-0.880591,0.542556,-0.101123,-0.347713,-0.58969,0.953958,1.15631,0.123382,-0.918529,0.237655,0.441367,2.70448,1.11613,1 +0.844644,-0.747007,0.542556,-0.372622,-0.347713,-0.46568,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.325196,-0.149783,-0.894654,0 +1.51956,2.86075,0.542556,-1.73011,-1.8535,-0.664395,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.522856,-0.195272,-0.894654,1 +0.198409,-0.637529,-1.78269,-1.73011,-1.8535,-0.664395,0.953958,-0.86357,-0.493529,-0.918529,0.237655,0.789882,-0.195272,-0.894654,0 +-1.04597,-0.152411,-1.78269,-1.18712,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.02222,-0.00333688,-0.894654,1 +-0.596308,-0.470801,-1.78269,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,-0.195272,-0.894654,0 +-0.695015,-0.654604,0.542556,0.170375,1.66,-0.241567,0.953958,-0.86357,-0.493529,-0.918529,0.237655,1.38236,-0.156885,1.11613,1 +3.17227,0.851976,0.542556,-1.73011,-1.8535,0.530879,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.662262,-0.19412,-0.894654,1 +1.35843,-0.897665,0.542556,0.170375,0.154216,3.81788,0.953958,1.15631,3.61921,-0.918529,0.237655,-1.06886,2.68375,1.11613,1 +0.141885,-0.453727,-1.78269,0.170375,-0.347713,0.0826515,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.194888,-0.894654,0 +0.985533,-0.353288,0.542556,0.98487,1.66,1.12852,0.953958,1.15631,1.76848,-0.918529,0.237655,-0.604176,-0.195272,1.11613,1 +-0.722855,-0.830371,-1.78269,-0.372622,-0.347713,-0.627042,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.0233185,-0.19508,-0.894654,1 +0.268432,-0.453727,0.542556,1.52787,0.154216,-0.514985,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.952522,-0.195272,-0.894654,1 +2.11012,2.76031,0.542556,-1.45861,0.154216,3.81788,0.953958,1.15631,3.0023,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +1.06315,0.382927,0.542556,0.98487,-0.347713,1.53939,0.953958,1.15631,0.123382,1.08712,0.237655,-1.06886,-0.195272,1.11613,0 +1.07665,-0.95592,0.542556,0.170375,-0.347713,0.0826515,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,1.11613,0 +0.22625,-0.604384,0.542556,0.441873,0.154216,-0.58969,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.122064,-0.195272,-0.894654,1 +1.13317,-0.0348973,0.542556,-0.915618,1.66,-0.365576,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.325196,-0.195272,-0.894654,0 +-0.0833696,-0.411542,-1.78269,-0.101123,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,-0.604176,-0.195272,-0.894654,1 +-0.328871,-0.805262,0.542556,0.98487,1.66,-0.61509,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.209025,-0.147096,-0.894654,1 +-1.02488,0.500441,0.542556,-0.101123,-0.347713,-0.652442,-1.04674,1.15631,-0.287892,-0.918529,0.237655,-0.488004,-0.19508,-0.894654,1 +0.823553,-0.755042,0.542556,-1.18712,0.154216,0.00794684,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.137691,1.11613,0 +-0.680673,-0.654604,0.542556,0.441873,-0.347713,-0.402929,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.13949,-0.195272,-0.894654,0 +0.0085881,-0.789192,0.542556,1.79936,-0.347713,-0.265472,0.953958,1.15631,1.15157,1.08712,0.237655,0.691136,0.436194,1.11613,1 +-1.15902,1.25373,0.542556,1.79936,1.66,-0.365576,0.953958,1.15631,1.76848,-0.918529,0.237655,-1.06886,0.380533,1.11613,0 +0.135135,-0.503946,-1.78269,1.52787,-0.347713,0.38147,-1.04674,-0.86357,-0.493529,1.08712,0.237655,0.092853,-0.168209,-0.894654,0 +1.76591,0.450221,0.542556,-0.372622,1.66,0.232061,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,0 +-0.518692,-0.729933,0.542556,0.98487,-0.347713,-0.278919,0.953958,1.15631,-0.0822548,-0.918529,0.237655,0.092853,-0.195272,-0.894654,0 +0.760279,-0.654604,0.542556,-1.18712,0.154216,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,0.67371,-0.195272,-0.894654,1 +-0.64524,-0.838407,-1.78269,1.52787,1.66,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.325196,-0.19508,-0.894654,1 +2.06119,1.55505,0.542556,-0.915618,1.66,1.72615,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.929456,0.193972,1.11613,1 +-0.258849,-0.345253,-1.78269,1.79936,1.66,0.0946042,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.662262,-0.195272,1.11613,0 +0.0431777,-0.152411,0.542556,-0.101123,-0.347713,0.0826515,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.02222,-0.195272,1.11613,1 +-0.877243,-0.780152,-1.78269,0.170375,1.66,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.557539,-0.156117,-0.894654,1 +0.2195,0.886125,0.542556,0.170375,-0.347713,0.680288,0.953958,1.15631,1.97411,1.08712,0.237655,-1.06886,-0.152854,1.11613,1 +0.985533,4.1082,0.542556,0.98487,1.66,-0.601643,0.953958,1.15631,-0.287892,-0.918529,0.237655,3.34565,-0.177998,-0.894654,1 +0.563709,0.249344,0.542556,-0.915618,-0.347713,-0.365576,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,1.11613,0 +0.493686,-0.54613,0.542556,0.441873,-0.347713,-0.652442,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.25457,0.91795,1.11613,1 +-0.146643,-0.54613,-1.78269,1.79936,1.66,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.325364,-0.19508,-0.894654,1 +0.486093,-0.420582,0.542556,1.52787,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.0991123,-0.894654,1 +-0.020096,2.96119,0.542556,0.170375,-0.347713,1.42733,0.953958,1.15631,2.79666,-0.918529,0.237655,-1.06886,0.764402,1.11613,1 +0.380637,-0.445691,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.00333688,-0.894654,1 +-0.933768,-0.470801,0.542556,0.170375,-0.347713,-0.0667578,0.953958,1.15631,1.76848,1.08712,0.237655,0.092853,0.380533,1.11613,1 +1.31624,0.216199,0.542556,0.441873,-0.347713,0.979107,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,1.63213,-0.166481,-0.894654,1 +-0.80722,0.617954,-1.78269,-1.18712,0.154216,-0.61509,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-8.41822e-05,-0.195272,-0.894654,1 +-0.933768,1.05285,-1.78269,0.170375,-0.347713,0.0826515,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,-0.836519,-0.195272,1.11613,1 +0.282774,-0.453727,0.542556,0.441873,-0.347713,-0.664395,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.319387,-0.156885,1.11613,1 +-0.631741,-0.780152,0.542556,-0.101123,-0.347713,-0.638995,-1.04674,1.15631,0.329019,-0.918529,0.237655,0.406516,0.179001,-0.894654,1 +0.486093,0.349783,0.542556,-0.101123,1.66,0.605584,0.953958,1.15631,1.97411,1.08712,0.237655,-0.528664,-0.195272,1.11613,1 +-0.912676,0.96045,0.542556,-1.18712,-0.347713,-0.652442,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,-0.00333688,-0.894654,0 +0.430413,-0.303069,0.542556,0.98487,1.66,2.02497,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.476387,-0.0726253,1.11613,1 +-0.758289,1.06089,0.542556,1.79936,-0.347713,-0.652442,0.953958,1.15631,1.3572,-0.918529,0.237655,-0.720347,-0.119266,1.11613,1 +-0.392145,1.75592,0.542556,0.98487,1.66,0.829698,0.953958,1.15631,-0.0822548,-0.918529,0.237655,-1.06886,0.764402,1.11613,0 +1.27406,-0.863516,0.542556,1.52787,1.66,-0.540385,0.953958,1.15631,1.76848,1.08712,0.237655,1.48691,-0.19412,1.11613,0 +1.73807,-0.95592,-1.78269,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,0 +0.641325,-0.453727,-1.78269,-1.18712,1.66,2.32379,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.092853,-0.195272,-0.894654,1 +0.641325,-0.629494,0.542556,0.170375,-0.347713,-0.216167,0.953958,1.15631,1.56284,-0.918529,0.237655,0.011533,0.706822,1.11613,1 +-0.328871,-0.54613,0.542556,0.441873,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.0233185,-0.185675,-0.894654,0 +-1.04597,0.952415,0.542556,0.441873,-0.347713,-0.216167,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.371833,0.228136,1.11613,1 +0.669165,-0.102191,0.542556,0.170375,0.154216,1.27793,0.953958,1.15631,2.79666,-0.918529,0.237655,-0.389259,0.0369694,1.11613,1 +0.409321,-0.805262,-1.78269,-1.45861,-0.347713,-0.489586,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.325196,-0.194696,-0.894654,1 +-0.455419,-0.9057,0.542556,-1.18712,0.154216,-0.664395,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.195272,1.11613,1 +0.662416,-0.61242,-1.78269,-0.101123,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,1.25457,-0.195272,-0.894654,1 +0.873328,-0.871551,0.542556,0.170375,1.66,-0.601643,0.953958,1.15631,0.740293,-0.918529,0.237655,0.209025,-0.0133175,1.11613,1 +-0.863745,0.55066,0.542556,-0.372622,-0.347713,-0.241567,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.604176,1.68569,1.11613,1 +-0.969201,-0.704823,0.542556,0.170375,-0.347713,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,-0.894654,0 +-0.336464,-0.353288,0.542556,-0.101123,-0.347713,0.169309,-1.04674,1.15631,-0.287892,1.08712,0.237655,0.557539,-0.193352,-0.894654,0 +-0.842654,-0.797227,-1.78269,1.52787,-0.347713,-0.46568,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.195272,-0.894654,1 +-0.27994,0.0735764,0.542556,1.79936,-0.347713,0.754993,0.953958,1.15631,-0.0822548,-0.918529,0.237655,1.37074,-0.193928,1.11613,1 +-0.392145,-0.503946,0.542556,-1.18712,0.154216,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,0.237655,2.64863,0.572468,-0.894654,1 +-1.10925,0.902195,0.542556,0.98487,-0.347713,-0.302824,0.953958,1.15631,0.329019,-0.918529,0.237655,-0.720347,-0.0916269,1.11613,0 +-0.701764,0.224234,0.542556,0.98487,-0.347713,0.28286,0.953958,1.15631,1.56284,-0.918529,0.237655,-0.371833,-0.148248,1.11613,0 +-0.673924,-0.596349,0.542556,0.170375,-0.347713,-0.503033,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.278896,-0.19508,-0.894654,1 +-0.273191,0.0484667,0.542556,0.441873,-0.347713,2.62261,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.662262,-0.195272,1.11613,1 +-0.497601,-0.511981,-1.78269,-0.372622,-0.347713,0.530879,0.953958,-0.86357,-0.493529,-0.918529,0.237655,0.0231501,-0.195272,-0.894654,1 +-0.252099,-0.621459,0.542556,0.98487,-0.347713,0.0572519,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.48691,-0.195272,-0.894654,0 +-0.729605,-0.320143,-1.78269,0.170375,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,0.00779533,-0.894654,1 +-0.596308,-0.747007,-1.78269,-1.73011,-1.8535,-0.514985,0.953958,1.15631,0.123382,-0.918529,0.237655,-0.0233185,-0.167057,-0.894654,0 +-0.575217,-0.847446,0.542556,-0.101123,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.371833,-0.19508,-0.894654,1 +0.0364285,-0.604384,-1.78269,0.713372,1.66,-0.652442,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.21391,-0.195272,1.11613,1 +1.39302,-0.20263,0.542556,-1.18712,0.154216,-0.365576,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.194888,-0.894654,1 +-0.265598,-0.252849,0.542556,0.441873,-0.347713,-0.414881,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,0.557539,-0.195272,1.11613,0 +-0.518692,-0.847446,0.542556,0.441873,-0.347713,-0.61509,-1.04674,1.15631,-0.287892,-0.918529,0.237655,0.51107,-0.110053,-0.894654,1 +-1.09575,1.11111,0.542556,-1.73011,-1.8535,-0.540385,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.604176,-0.195272,-0.894654,1 +-0.835061,-0.721898,-1.78269,-0.915618,-0.347713,0.0826515,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.0233185,-0.191433,-0.894654,1 +-0.589559,-0.704823,0.542556,0.170375,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.429919,-0.195272,-0.894654,1 +-1.28557,-0.135336,0.542556,-1.18712,1.66,-0.540385,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.371833,-0.195272,-0.894654,1 +-0.406487,-0.554165,0.542556,-1.45861,-0.347713,-0.440281,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.604176,-0.195272,-0.894654,1 +1.40061,-0.252849,0.542556,-0.372622,-0.347713,0.38147,0.953958,-0.86357,-0.493529,-0.918529,-3.10892,0.26711,-0.195272,1.11613,1 +-0.680673,-0.403507,0.542556,-1.73011,-1.8535,0.680288,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.190473,-0.894654,1 +0.795712,-0.54613,-1.78269,0.98487,1.66,-0.627042,0.953958,1.15631,4.23612,1.08712,0.237655,1.57404,0.0419597,1.11613,0 +0.303865,4.09112,0.542556,1.79936,1.66,-0.178815,0.953958,1.15631,-0.287892,1.08712,0.237655,1.92255,-0.0993043,1.11613,1 +-0.659582,1.45461,0.542556,0.170375,-0.347713,-0.0413582,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,-0.604176,-0.195272,-0.894654,1 +-1.08816,0.0484667,0.542556,0.98487,-0.347713,-0.552338,0.953958,1.15631,-0.0822548,-0.918529,0.237655,-1.06886,-0.187978,-0.894654,1 +-0.104461,-0.855481,0.542556,-1.45861,1.66,-0.638995,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,0.394899,-0.195272,-0.894654,1 +-0.997041,-0.805262,0.542556,0.170375,-0.347713,-0.426834,0.953958,1.15631,0.534656,1.08712,0.237655,-0.255661,-0.194312,-0.894654,0 +-0.455419,-0.788187,0.542556,1.52787,-0.347713,-0.316271,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,-0.894654,1 +-0.237757,-0.654604,-1.78269,0.170375,-0.347713,-0.216167,0.953958,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.152086,-0.894654,1 +-0.244507,0.91927,0.542556,0.98487,1.66,1.02841,0.953958,1.15631,0.740293,-0.918529,0.237655,1.14421,-0.163027,1.11613,1 +-0.469761,-0.755042,0.542556,0.98487,-0.347713,-0.141462,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.557539,-0.195272,1.11613,1 +-0.680673,-0.320143,-1.78269,-0.915618,-0.347713,-0.540385,-1.04674,1.15631,-0.287892,1.08712,0.237655,0.557539,-0.179917,-0.894654,1 +-0.44192,1.65549,0.542556,0.713372,-1.35157,-0.664395,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.255661,0.0177759,-0.894654,1 +1.9203,0.400002,0.542556,0.170375,1.66,0.120004,0.953958,1.15631,1.76848,1.08712,0.237655,-1.06886,-0.140762,1.11613,1 +0.000151612,-0.880591,0.542556,-1.45861,-0.347713,-0.402929,0.953958,-0.86357,-0.493529,1.08712,-3.10892,4.3215,-0.195272,-0.894654,1 +-0.533034,1.55505,0.542556,-1.45861,-0.347713,-0.365576,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.0233185,0.00856307,-0.894654,0 +0.135135,-0.320143,-1.78269,1.79936,-0.347713,0.281366,0.953958,1.15631,0.123382,1.08712,0.237655,1.1384,-0.195272,1.11613,1 +0.669165,-0.629494,0.542556,0.170375,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.13462,-0.894654,1 +-1.17252,-0.95592,-1.78269,-0.64412,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.569325,-0.195272,-0.894654,0 +-0.64524,-0.822336,0.542556,0.170375,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,1.11613,1 +-0.413236,-0.411542,-1.78269,1.52787,-0.347713,0.904402,0.953958,1.15631,-0.287892,-0.918529,0.237655,0.156747,-0.195272,1.11613,1 +-0.765038,-0.872556,0.542556,-1.18712,-0.347713,-0.564291,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,-0.232427,-0.195272,-0.894654,0 +0.704598,-0.847446,-1.78269,-0.372622,-0.347713,-0.514985,0.953958,1.15631,0.123382,-0.918529,0.237655,0.092853,-0.00333688,1.11613,1 +-0.463012,0.784682,0.542556,-0.372622,-0.347713,-0.241567,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.13949,-0.166481,1.11613,0 +-0.97595,-0.95592,0.542556,-1.45861,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-0.232427,-0.195272,-0.894654,1 +0.000151612,-0.152411,-1.78269,-1.18712,-0.347713,-0.638995,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.31846,-0.195272,-0.894654,1 +-0.406487,-0.0519719,-1.78269,0.170375,0.154216,0.0826515,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.092853,0.0369694,-0.894654,1 +-0.560875,-0.704823,0.542556,-1.73011,-1.8535,-0.664395,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.604176,-0.195272,-0.894654,0 +0.0575197,-0.654604,0.542556,0.170375,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,1.08712,0.237655,1.09193,-0.171856,-0.894654,0 +-1.17252,-0.060007,0.542556,0.170375,-0.347713,-0.58969,-1.04674,-0.86357,-0.493529,-0.918529,-3.10892,-0.604176,-0.195272,-0.894654,1 +0.521527,0.148905,0.542556,0.98487,-0.347713,-0.627042,0.953958,-0.86357,-0.493529,1.08712,0.237655,0.255493,-0.195272,1.11613,0 +-0.750696,-0.445691,-1.78269,0.170375,1.66,0.108051,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-1.15143,1.09504,0.542556,-1.73011,-1.8535,-0.664395,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.185675,-0.894654,0 +-0.603057,1.5219,0.542556,0.98487,1.66,-0.190767,0.953958,-0.86357,-0.493529,1.08712,0.237655,-0.371833,-0.195272,1.11613,1 +-0.490852,-0.855481,0.542556,0.170375,1.66,-0.402929,0.953958,-0.86357,-0.493529,1.08712,0.237655,1.78315,-0.195272,1.11613,0 +-0.455419,1.55505,-1.78269,-0.915618,1.66,-0.290872,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-1.06886,-0.192009,-0.894654,1 +-0.743947,0.282489,0.542556,-0.372622,-0.347713,-0.61509,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,0.209025,-0.00333688,-0.894654,0 +-0.722855,-0.805262,0.542556,-0.101123,-0.347713,-0.514985,0.953958,-0.86357,-0.493529,1.08712,-3.10892,0.789882,-0.195272,-0.894654,1 +-0.497601,-0.897665,-1.78269,0.170375,-0.347713,-0.216167,-1.04674,-0.86357,-0.493529,1.08712,0.237655,-0.13949,-0.195272,-0.894654,1 +1.4352,-0.91474,-1.78269,-0.915618,-0.347713,-0.58969,0.953958,1.15631,1.76848,-0.918529,0.237655,1.1384,0.329094,1.11613,1 +-0.877243,-0.95592,0.542556,0.170375,-0.347713,-0.514985,-1.04674,-0.86357,-0.493529,1.08712,-3.10892,-1.06886,-0.195272,-0.894654,1 +0.310614,2.35856,-1.78269,0.170375,-0.347713,0.530879,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.604176,-0.195272,-0.894654,1 +-0.729605,1.37124,0.542556,1.52787,-0.347713,-0.652442,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.604176,0.0636484,1.11613,0 +1.40061,-0.687749,0.542556,-1.18712,1.15807,-0.564291,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.17224,-0.894654,0 +0.964442,-0.897665,-1.78269,1.52787,1.66,-0.141462,0.953958,1.15631,1.15157,-0.918529,0.237655,-0.488004,-0.123296,1.11613,1 +0.000151612,1.15329,0.542556,1.79936,-0.347713,1.27793,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.195272,1.11613,1 +-0.919426,-0.872556,0.542556,0.170375,-0.347713,-0.627042,-1.04674,-0.86357,-0.493529,-0.918529,0.237655,-1.06886,-0.186827,-0.894654,1 +-1.07466,0.96045,0.542556,-0.372622,-0.347713,-0.638995,0.953958,-0.86357,-0.493529,-0.918529,0.237655,-0.488004,-0.195272,1.11613,0 +-0.349963,1.9568,0.542556,1.79936,1.66,0.25746,0.953958,1.15631,-0.287892,-0.918529,0.237655,-0.371833,-0.19316,1.11613,0 +0.795712,-0.947885,0.542556,0.713372,-0.347713,-0.652442,-1.04674,1.15631,-0.287892,-0.918529,-3.10892,2.18394,-0.195272,1.11613,1 diff --git a/data/statlog-german-credit.arff b/data/statlog-german-credit.arff new file mode 100755 index 0000000..73f8fb3 --- /dev/null +++ b/data/statlog-german-credit.arff @@ -0,0 +1,1027 @@ +@relation statlog-german-credit +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'clase' {0,1} +@data +-1.25394,-1.23586,1.34334,-0.733065,1.83225,1.33741,0.449102,1.04646,-1.29308,2.76507,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,-0.503176,0.965893,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,1.34334,-0.41451,-0.699357,0.509805,0.449102,0.140434,-1.29308,1.18272,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,1.74951,-0.503176,1.6384,-0.699357,0.509805,0.449102,1.04646,-0.340885,0.831087,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,0.420083,0.576549,-0.699357,-0.3178,0.449102,1.04646,1.5635,1.53435,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,-0.503176,2.06314,1.83225,-0.3178,0.449102,1.04646,1.5635,-0.047998,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,-0.503176,-0.166746,0.566448,1.33741,0.449102,1.04646,-0.340885,1.53435,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,-0.503176,1.28445,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.0605608,1.19935,0.509805,-2.37544,1.04646,-1.29308,2.23762,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.754386,1.34334,0.682734,-0.699357,-1.97301,1.86137,-0.765594,0.611307,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-0.458797,-0.738298,-0.503176,-0.69767,-0.699357,-1.1454,-0.963168,-1.67162,0.611307,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,2.24707,-0.503176,0.364179,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.738298,-0.503176,-0.591485,-0.699357,-0.3178,-0.963168,-1.67162,0.611307,-1.19081,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,1.34334,-0.733065,-0.699357,1.33741,0.449102,1.04646,0.611307,2.14971,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,-0.489517,-0.503176,-0.662275,-0.699357,-0.3178,-0.963168,1.04646,0.611307,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,-0.69767,-0.0664547,-0.3178,-0.963168,-0.765594,0.611307,-0.311723,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,0.256825,1.34334,-0.308326,1.83225,1.33741,0.449102,1.04646,-0.340885,1.53435,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.754386,-2.34969,1.70919,1.83225,-1.1454,0.449102,0.140434,0.611307,-0.927083,-2.37386,2.7577,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,-0.503176,3.30196,-0.699357,1.33741,-0.963168,-0.765594,1.5635,0.743178,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,0.256825,-0.503176,0.0456241,0.566448,1.33741,0.449102,-0.765594,0.611307,-0.399632,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,1.34334,-0.41451,-0.699357,-0.3178,0.449102,1.04646,0.611307,1.09481,0.4606,2.7577,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,-0.503176,-0.237536,0.566448,-0.3178,0.449102,0.140434,-1.29308,0.743178,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.904152,1.34334,-0.379115,-0.699357,-1.1454,0.449102,0.140434,-1.29308,1.09481,0.4606,1.02657,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-0.458797,-0.738298,1.34334,-0.520695,-0.0664547,-1.1454,0.449102,1.04646,-0.340885,0.743178,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.904152,1.34334,-0.41451,1.83225,-0.3178,1.86137,-1.67162,0.611307,-0.839174,0.4606,1.02657,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,-0.503176,-0.662275,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.0399104,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-1.23586,-2.34969,-1.01622,-0.699357,1.33741,1.86137,1.04646,0.611307,0.303636,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +0.336345,-0.738298,-1.42644,-1.01622,1.19935,-0.3178,-0.963168,0.140434,-1.29308,0.567361,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.15293,-0.503176,-0.308326,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.135906,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,3.24219,0.420083,1.24905,-0.699357,1.33741,0.449102,1.04646,1.5635,2.41344,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.240737,-0.503176,-0.4853,1.19935,-1.1454,1.86137,0.140434,-1.29308,0.0399104,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,0.257994,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.751266,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,0.930498,-0.0664547,-0.3178,0.449102,-0.765594,0.611307,-0.48754,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.69767,1.83225,1.33741,0.449102,1.04646,1.5635,1.88599,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +0.336345,-0.738298,-0.503176,-0.62688,-0.699357,-1.1454,-0.963168,-1.67162,-0.340885,-0.223815,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,1.99829,1.34334,0.505759,-0.699357,-1.1454,0.449102,-0.765594,-0.340885,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,2.24707,1.34334,1.00129,-0.699357,-0.3178,0.449102,0.140434,1.5635,-0.399632,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +0.336345,-0.240737,-0.503176,-0.41451,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.127819,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +0.336345,-0.904152,-0.503176,-0.733065,-0.699357,-0.3178,0.449102,-0.765594,0.611307,0.127819,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-0.503176,-0.98083,-0.699357,-0.3178,0.449102,0.140434,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.754386,-0.503176,-0.343721,0.566448,1.33741,0.449102,-0.765594,0.611307,-0.48754,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.733065,0.566448,-0.3178,-2.37544,-1.67162,0.611307,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,0.420083,1.03668,-0.699357,-0.3178,0.449102,1.04646,-1.29308,0.743178,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.754386,1.34334,1.03668,-0.0664547,0.509805,1.86137,1.04646,0.611307,-1.01499,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,2.24707,1.34334,1.00129,-0.699357,1.33741,-0.963168,1.04646,1.5635,1.9739,-0.956631,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,1.999,-1.30422,1 +1.13149,-0.821225,1.34334,-0.662275,-0.699357,-1.1454,-0.963168,1.04646,0.611307,-0.047998,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,1.25195,-0.503176,-0.343721,0.566448,1.33741,0.449102,1.04646,0.611307,0.303636,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,-0.503176,-0.662275,0.566448,-1.97301,-0.963168,-0.765594,-0.340885,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,6.66409,-0.49975,-1.30422,0 +1.13149,-0.821225,1.34334,1.39063,-0.699357,-0.3178,0.449102,1.04646,-0.340885,0.303636,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.41451,-0.0664547,-0.3178,-0.963168,-0.765594,-1.29308,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,0.420083,-0.343721,1.83225,-1.1454,0.449102,-0.765594,-0.340885,-0.575449,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.505605,0.420083,0.965893,-0.699357,1.33741,0.449102,-0.765594,0.611307,-0.48754,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.69767,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,0.0456241,1.83225,-0.3178,0.449102,-1.67162,-0.340885,-0.399632,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,0.420083,-0.379115,-0.699357,1.33741,0.449102,1.04646,1.5635,1.88599,-2.37386,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-1.23586,-1.42644,-0.874645,1.83225,-0.3178,0.449102,-0.765594,-1.29308,-0.839174,-0.956631,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.738298,-0.503176,1.14287,1.83225,-1.97301,0.449102,-1.67162,1.5635,1.44645,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,1.25195,1.34334,2.24011,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,-0.399632,-0.956631,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.240737,-0.503176,-0.449905,-0.699357,1.33741,-0.963168,-0.765594,0.611307,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,1.25195,1.34334,1.03668,-0.699357,-1.1454,-0.963168,1.04646,1.5635,-1.1029,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +-0.458797,-0.987079,-0.503176,-0.662275,-0.699357,-0.3178,1.86137,-1.67162,-1.29308,-0.751266,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.489517,1.34334,-0.62688,1.83225,1.33741,0.449102,1.04646,-1.29308,1.27063,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,-2.34969,-0.449905,-0.699357,1.33741,0.449102,1.04646,1.5635,2.23762,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +-0.458797,2.24707,-2.34969,3.93907,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.927083,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-0.503176,-0.0251658,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.505605,-0.503176,0.682734,1.83225,1.33741,0.449102,1.04646,-0.340885,1.09481,0.4606,4.48884,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.379115,-0.699357,-1.1454,-0.963168,-0.765594,0.611307,-0.575449,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.803855,1.19935,-0.3178,1.86137,-1.67162,-1.29308,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,-0.503176,-0.520695,-0.699357,-0.3178,0.449102,1.04646,1.5635,0.127819,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,-0.503176,-0.308326,1.83225,-0.3178,-0.963168,1.04646,0.611307,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,-0.503176,1.70919,-0.699357,-0.3178,-0.963168,-0.765594,-0.340885,-0.48754,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.15293,1.34334,-0.91004,1.83225,1.33741,0.449102,-0.765594,-0.340885,0.918995,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,-1.07001,1.34334,-0.733065,-0.699357,1.33741,0.449102,1.04646,1.5635,1.35854,-2.37386,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,1.74951,1.34334,0.965893,-0.699357,0.509805,-0.963168,-1.67162,-1.29308,0.479453,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,1.25195,-0.503176,-0.449905,1.83225,1.33741,0.449102,1.04646,1.5635,0.391544,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-1.25394,-0.738298,1.34334,-0.62688,-0.699357,1.33741,0.449102,1.04646,1.5635,2.67716,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,1.74951,-0.503176,0.257994,-0.699357,-1.1454,0.449102,0.140434,0.611307,-0.135906,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.821225,0.420083,0.541154,-0.699357,0.509805,0.449102,1.04646,-0.340885,1.35854,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,2.74463,-2.34969,2.16932,1.83225,-0.3178,0.449102,-0.765594,-0.340885,0.303636,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.754386,-0.503176,0.187204,-0.699357,-1.1454,1.86137,-1.67162,-0.340885,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,0.930498,1.83225,-1.1454,-0.963168,-1.67162,0.611307,0.743178,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.489517,-0.503176,-0.733065,0.566448,1.33741,0.449102,0.140434,-0.340885,1.0069,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,-0.591485,-0.0664547,-0.3178,-0.963168,1.04646,-0.340885,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,-0.503176,-0.520695,-0.699357,1.33741,-0.963168,1.04646,-1.29308,1.9739,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.904152,-0.503176,-0.343721,-0.699357,1.33741,0.449102,1.04646,-1.29308,1.44645,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.738298,1.34334,-0.662275,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-0.575449,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.240737,1.34334,-0.69767,-0.699357,-1.1454,-0.963168,-1.67162,-0.340885,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,-0.503176,3.30196,-0.0664547,-0.3178,0.449102,1.04646,1.5635,1.0069,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.240737,-0.503176,-0.379115,-0.0664547,0.509805,0.449102,0.140434,0.611307,-0.48754,0.4606,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.738298,-2.34969,-0.76846,-0.699357,0.509805,0.449102,0.140434,-1.29308,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,1.34334,-0.945435,-0.699357,1.33741,0.449102,1.04646,-1.29308,1.79808,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,1.34334,-0.662275,-0.699357,1.33741,0.449102,0.140434,-1.29308,1.62226,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.874645,1.83225,1.33741,-0.963168,0.140434,-0.340885,-0.223815,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +0.336345,0.256825,1.34334,0.116414,1.83225,1.33741,0.449102,1.04646,1.5635,-1.36663,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.69767,1.19935,1.33741,0.449102,1.04646,-1.29308,1.62226,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,2.74463,-2.34969,4.46999,-0.699357,-1.1454,0.449102,1.04646,1.5635,1.9739,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,1.34334,-0.449905,1.83225,0.509805,-0.963168,-0.765594,0.611307,2.23762,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,-0.237536,-0.0664547,-0.3178,0.449102,1.04646,0.611307,-0.135906,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,1.34334,-0.343721,-0.699357,1.33741,0.449102,1.04646,-1.29308,0.0399104,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.074883,0.420083,1.35524,1.83225,0.509805,0.449102,1.04646,-0.340885,0.0399104,-2.37386,1.02657,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,0.256825,-0.503176,-0.62688,-0.0664547,1.33741,1.86137,1.04646,-1.29308,0.479453,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-0.458797,1.25195,-0.503176,-0.343721,-0.699357,0.509805,0.449102,1.04646,0.611307,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,0.420083,-0.83925,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,1.34334,-0.4853,-0.699357,0.509805,0.449102,0.140434,0.611307,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.308326,1.83225,-1.1454,1.86137,1.04646,0.611307,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,1.34334,3.0542,-0.699357,-0.3178,0.449102,0.140434,0.611307,0.303636,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.240737,-1.42644,1.14287,-0.699357,1.33741,0.449102,1.04646,1.5635,0.303636,-2.37386,1.02657,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-0.458797,-0.738298,-0.503176,1.00129,-0.699357,0.509805,0.449102,-0.765594,0.611307,-0.311723,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,1.56761,1.83225,-1.1454,-0.963168,-0.765594,-0.340885,-0.48754,0.4606,-0.704573,-0.428075,1.21399,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.572444,-0.503176,-0.662275,0.566448,1.33741,1.86137,-0.765594,-1.29308,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.23586,0.420083,-0.662275,-0.0664547,1.33741,-2.37544,-0.765594,0.611307,-0.399632,-2.37386,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.489517,-0.503176,-1.01622,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,1.07208,-0.699357,0.509805,0.449102,0.140434,-1.29308,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,1.25195,1.34334,1.6384,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-0.927083,-0.956631,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-0.503176,-0.55609,0.566448,1.33741,1.86137,-1.67162,-1.29308,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,2.24707,1.34334,0.116414,1.83225,1.33741,0.449102,-1.67162,-1.29308,1.0069,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.74951,-0.503176,1.39063,1.83225,0.509805,-0.963168,0.140434,0.611307,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-1.25394,-0.904152,1.34334,-0.41451,1.83225,-1.1454,-0.963168,0.140434,-1.29308,-0.751266,0.4606,1.02657,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,1.00317,1.34334,0.364179,0.566448,-0.3178,-0.963168,1.04646,0.611307,-1.1029,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.738298,1.34334,-0.308326,0.566448,0.509805,-2.37544,0.140434,0.611307,0.0399104,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,0.00804391,-0.503176,-0.520695,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-0.927083,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,0.222599,-0.699357,1.33741,-0.963168,-0.765594,0.611307,0.479453,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.520695,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +0.336345,-0.904152,1.34334,-0.874645,-0.699357,1.33741,0.449102,1.04646,1.5635,2.41344,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,-0.4853,1.83225,-1.1454,-0.963168,0.140434,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,1.34334,-0.41451,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.91004,-0.699357,-0.3178,1.86137,-0.765594,-1.29308,0.391544,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.945435,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.48754,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.738298,1.34334,-0.4853,-0.699357,-1.97301,0.449102,-0.765594,0.611307,-0.135906,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.738298,1.34334,0.0810191,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-0.575449,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,2.24707,-0.503176,1.85077,1.83225,0.509805,-0.963168,-0.765594,0.611307,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.25195,0.420083,1.28445,-0.699357,-0.3178,0.449102,0.140434,-0.340885,-0.575449,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.489517,-0.503176,-0.202141,-0.699357,-1.1454,0.449102,0.140434,-0.340885,-0.751266,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.240737,-0.503176,-0.449905,-0.699357,-0.3178,0.449102,1.04646,1.5635,1.0069,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,3.24219,-0.503176,2.41709,-0.0664547,0.509805,-0.963168,1.04646,-1.29308,-1.27872,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.733065,1.83225,1.33741,-0.963168,-0.765594,-1.29308,0.215727,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.505605,0.420083,1.88616,1.19935,-0.3178,0.449102,-0.765594,0.611307,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.874645,0.566448,-0.3178,0.449102,0.140434,-1.29308,2.67716,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,-0.489517,1.34334,-0.202141,1.83225,0.509805,0.449102,-0.765594,-1.29308,-0.047998,-2.37386,2.7577,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.738298,-0.503176,-0.4853,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,0.743178,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +0.336345,-1.23586,-0.503176,-0.91004,1.19935,-1.1454,1.86137,-0.765594,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +-0.458797,1.25195,-0.503176,0.541154,-0.699357,-1.1454,-0.963168,-1.67162,1.5635,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,0.505605,-0.503176,0.0456241,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.240737,-0.503176,-0.272931,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.00804391,1.34334,-0.343721,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,-1.42644,0.116414,-0.0664547,0.509805,0.449102,-0.765594,0.611307,-0.48754,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,1.34334,-0.83925,-0.699357,1.33741,-0.963168,1.04646,1.5635,0.303636,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.91004,-0.0664547,0.509805,-0.963168,0.140434,0.611307,1.35854,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.25195,1.34334,0.753523,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,-0.591485,1.19935,1.33741,0.449102,1.04646,0.611307,0.918995,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-0.503176,-0.69767,-0.0664547,1.33741,0.449102,1.04646,1.5635,0.567361,-2.37386,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.904152,-0.503176,-0.4853,-0.699357,-0.3178,0.449102,1.04646,-0.340885,0.215727,0.4606,-0.704573,-0.428075,1.21399,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,1.25195,-0.503176,0.895103,-0.699357,-0.3178,0.449102,-1.67162,0.611307,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,1.34334,1.603,1.19935,1.33741,-0.963168,1.04646,1.5635,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,0.420083,1.31984,-0.0664547,0.509805,0.449102,1.04646,0.611307,0.0399104,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.738298,-0.503176,-0.69767,-0.699357,-0.3178,-0.963168,1.04646,0.611307,-1.36663,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.987079,1.34334,-0.69767,-0.0664547,1.33741,0.449102,1.04646,-1.29308,1.09481,0.4606,1.02657,2.3337,-0.822906,5.09912,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-1.42644,-1.05162,-0.699357,1.33741,1.86137,-1.67162,0.611307,0.831087,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,-0.503176,0.0810191,-0.0664547,0.509805,0.449102,0.140434,0.611307,0.215727,-2.37386,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,1.34334,-0.4853,1.83225,-0.3178,0.449102,-0.765594,-1.29308,-0.135906,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,1.34334,-0.131351,-0.0664547,1.33741,0.449102,1.04646,-1.29308,0.0399104,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,-0.76846,-0.699357,-1.1454,-0.963168,-1.67162,-0.340885,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,-0.69767,0.566448,0.509805,0.449102,0.140434,-0.340885,0.0399104,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.904152,-0.503176,1.42603,-0.699357,-1.97301,0.449102,1.04646,1.5635,3.0288,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,1.25195,-0.503176,-0.83925,0.566448,1.33741,0.449102,1.04646,-0.340885,0.0399104,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-0.503176,-0.0959558,0.566448,-0.3178,0.449102,-0.765594,0.611307,-0.311723,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,-0.76846,-0.699357,-1.97301,-0.963168,-0.765594,0.611307,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.821225,-0.503176,-0.591485,1.19935,-1.1454,-0.963168,-1.67162,-1.29308,-1.36663,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,0.257994,-0.699357,0.509805,-0.963168,1.04646,-0.340885,-0.927083,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,1.34334,-0.4853,-0.699357,1.33741,-2.37544,1.04646,-1.29308,-0.399632,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.489517,-2.34969,-0.803855,-0.699357,1.33741,0.449102,0.140434,0.611307,-0.223815,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,-0.503176,-0.874645,-0.699357,-0.3178,-0.963168,-1.67162,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,0.420083,-0.41451,-0.699357,-1.97301,-0.963168,-0.765594,-0.340885,-0.135906,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-0.458797,-1.07001,-0.503176,-0.662275,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.00804391,0.420083,0.0456241,-0.699357,-1.1454,0.449102,-1.67162,-0.340885,-0.839174,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.754386,-1.42644,1.49682,1.83225,-1.97301,-0.963168,-1.67162,-1.29308,1.53435,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-1.25394,-0.738298,-0.503176,-0.237536,-0.699357,-0.3178,-2.37544,-1.67162,0.611307,0.567361,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,1.34334,-1.05162,0.566448,1.33741,0.449102,1.04646,0.611307,1.44645,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.449905,-0.699357,0.509805,0.449102,-0.765594,0.611307,-0.399632,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,0.00804391,1.34334,-0.945435,-0.699357,1.33741,0.449102,1.04646,-1.29308,2.58926,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,0.420083,2.24011,-0.699357,-1.1454,-2.37544,-1.67162,0.611307,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,1.25195,0.420083,0.434969,-0.699357,-0.3178,-2.37544,-0.765594,-1.29308,-0.48754,-0.956631,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-1.25394,0.00804391,-1.42644,-0.591485,1.83225,-0.3178,0.449102,-0.765594,-0.340885,0.391544,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,0.256825,1.34334,0.187204,1.19935,-0.3178,0.449102,1.04646,-1.29308,1.27063,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,1.34334,-0.83925,-0.699357,1.33741,0.449102,1.04646,0.611307,0.0399104,-2.37386,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.489517,1.34334,-0.662275,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,-0.399632,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-1.42644,0.647339,-0.699357,1.33741,-0.963168,1.04646,1.5635,3.38043,-2.37386,-0.704573,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +-0.458797,-0.406591,1.34334,-0.733065,-0.699357,-1.97301,0.449102,0.140434,0.611307,2.85298,0.4606,2.7577,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,6.66409,-0.49975,-1.30422,0 +-1.25394,-0.738298,-0.503176,-0.91004,-0.0664547,0.509805,1.86137,-1.67162,-0.340885,-1.36663,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.240737,-2.34969,-0.0251658,-0.699357,-0.3178,-0.963168,1.04646,0.611307,-0.223815,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,0.470364,1.19935,-0.3178,0.449102,0.140434,-0.340885,1.62226,0.4606,2.7577,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-0.458797,2.24707,-2.34969,0.187204,-0.0664547,0.509805,0.449102,1.04646,1.5635,-0.135906,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,1.999,-1.30422,1 +-0.458797,0.505605,-0.503176,0.222599,-0.699357,-0.3178,0.449102,-0.765594,0.611307,0.0399104,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-1.23586,-0.503176,-0.41451,-0.699357,0.509805,1.86137,-0.765594,-1.29308,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,1.99829,-0.503176,-0.0959558,-0.0664547,-0.3178,0.449102,1.04646,-0.340885,-1.27872,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.987079,1.34334,-0.62688,-0.699357,1.33741,-0.963168,0.140434,0.611307,-0.135906,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,-1.23586,1.34334,-0.662275,-0.699357,-0.3178,-0.963168,-1.67162,0.611307,-0.663357,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.803855,-0.0664547,-1.1454,-0.963168,1.04646,0.611307,-0.751266,-2.37386,4.48884,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,-0.503176,-0.166746,1.83225,1.33741,0.449102,1.04646,1.5635,0.0399104,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,0.420083,0.364179,-0.699357,1.33741,-2.37544,0.140434,1.5635,0.391544,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.987079,1.34334,-0.83925,0.566448,1.33741,0.449102,-0.765594,0.611307,1.44645,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.733065,-0.699357,-0.3178,1.86137,0.140434,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.505605,0.420083,0.647339,-0.699357,0.509805,0.449102,1.04646,0.611307,-0.839174,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.83925,-0.699357,0.509805,1.86137,1.04646,-0.340885,-1.27872,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,1.34334,-0.62688,-0.699357,1.33741,0.449102,-1.67162,-1.29308,0.215727,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.754386,1.34334,2.59406,-0.699357,1.33741,0.449102,1.04646,1.5635,0.215727,0.4606,2.7577,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,1.34334,-0.4853,-0.699357,1.33741,0.449102,1.04646,-1.29308,0.65527,0.4606,2.7577,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,1.34334,-0.662275,-0.699357,0.509805,0.449102,0.140434,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,1.17826,-0.699357,-0.3178,1.86137,-0.765594,0.611307,-1.27872,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.662275,1.19935,0.509805,0.449102,-0.765594,-0.340885,1.71017,0.4606,-0.704573,-0.428075,-0.822906,5.09912,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,1.34334,-0.0605608,1.83225,-0.3178,0.449102,-0.765594,-1.29308,-0.223815,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,-0.503176,0.187204,1.83225,1.33741,-0.963168,1.04646,-1.29308,0.831087,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.505605,-2.34969,0.718128,-0.699357,-1.97301,0.449102,1.04646,-0.340885,1.27063,-0.956631,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +0.336345,0.754386,0.420083,-0.4853,-0.699357,1.33741,0.449102,1.04646,-1.29308,2.67716,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,1.25195,1.34334,0.0102291,1.83225,1.33741,0.449102,-0.765594,0.611307,1.35854,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.23586,1.34334,-0.83925,1.83225,0.509805,-0.963168,0.140434,-0.340885,0.303636,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.240737,-2.34969,-0.0605608,-0.699357,0.509805,0.449102,-1.67162,-0.340885,-0.399632,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,1.25195,-0.503176,0.222599,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,-0.0959558,-0.699357,-0.3178,-2.37544,-0.765594,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,-0.904152,-0.503176,-0.662275,-0.699357,-0.3178,-0.963168,1.04646,0.611307,2.50135,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.945435,-0.699357,-1.1454,1.86137,-1.67162,-1.29308,-0.839174,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.738298,-0.503176,-0.733065,1.83225,-0.3178,-0.963168,1.04646,-0.340885,-1.1029,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.91004,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.48754,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,0.420083,-0.0959558,1.83225,-0.3178,0.449102,1.04646,-1.29308,-0.311723,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,0.505759,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,-2.34969,-0.237536,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,-0.503176,2.73564,1.19935,0.509805,0.449102,-0.765594,1.5635,-0.751266,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-0.503176,1.6384,-0.699357,1.33741,0.449102,1.04646,1.5635,1.53435,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.987079,-0.503176,-0.62688,-0.699357,0.509805,0.449102,-0.765594,0.611307,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,-0.0605608,-0.699357,-1.1454,0.449102,-1.67162,1.5635,-1.19081,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +0.336345,1.25195,-0.503176,0.328784,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.987079,-0.503176,-0.272931,0.566448,1.33741,0.449102,1.04646,1.5635,1.35854,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.41451,-0.0664547,0.509805,0.449102,-1.67162,1.5635,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,-0.83925,-0.699357,-0.3178,1.86137,-0.765594,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-1.40171,1.34334,-0.62688,-0.699357,0.509805,0.449102,-1.67162,-1.29308,0.567361,0.4606,2.7577,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,-0.503176,-0.520695,-0.699357,-1.97301,0.449102,-0.765594,0.611307,-0.48754,-0.956631,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-0.458797,-1.23586,-0.503176,4.00986,1.83225,-1.97301,0.449102,-0.765594,-0.340885,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,1 +-0.458797,0.00804391,-0.503176,-0.166746,-0.0664547,1.33741,-2.37544,-0.765594,0.611307,2.23762,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +1.13149,-0.738298,1.34334,-0.69767,-0.699357,-0.3178,-0.963168,-0.765594,-0.340885,-0.047998,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.754386,-0.503176,-0.272931,-0.699357,1.33741,0.449102,0.140434,-0.340885,0.303636,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,-0.83925,1.83225,1.33741,-0.963168,-0.765594,0.611307,-0.575449,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-1.23586,-0.503176,-0.591485,-0.699357,0.509805,0.449102,-0.765594,-0.340885,1.35854,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,2.24707,-2.34969,0.470364,-0.699357,1.33741,0.449102,1.04646,1.5635,-1.01499,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,1.34334,-0.733065,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-1.42644,0.0456241,0.566448,-0.3178,-0.963168,0.140434,-1.29308,-0.047998,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,-0.503176,-0.69767,-0.699357,0.509805,0.449102,-1.67162,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.91004,-0.699357,1.33741,0.449102,1.04646,-1.29308,1.44645,0.4606,2.7577,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-2.34969,-0.733065,-0.0664547,-0.3178,0.449102,-1.67162,1.5635,-0.047998,-2.37386,-0.704573,-0.428075,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +0.336345,0.256825,-0.503176,-0.4853,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,-1.01622,-0.699357,-1.97301,-0.963168,1.04646,-1.29308,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-1.23586,1.34334,-0.91004,1.19935,0.509805,-0.963168,1.04646,-1.29308,0.303636,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +0.336345,-0.738298,-0.503176,-0.343721,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,0.918995,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.754386,-0.503176,-0.379115,-0.699357,-0.3178,-0.963168,-0.765594,1.5635,-1.01499,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,0.420083,0.328784,-0.0664547,-0.3178,0.449102,0.140434,-0.340885,-0.047998,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-0.503176,-0.449905,1.83225,0.509805,0.449102,-1.67162,0.611307,-1.01499,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,3.24219,0.420083,1.46142,1.83225,-0.3178,0.449102,-1.67162,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,1.34334,-0.202141,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.047998,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.738298,-1.42644,-0.41451,-0.699357,-0.3178,-2.37544,-1.67162,1.5635,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.489517,-0.503176,0.187204,-0.0664547,-1.1454,-0.963168,1.04646,0.611307,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.821225,1.34334,-0.733065,-0.0664547,-1.97301,-0.963168,1.04646,-1.29308,1.88599,0.4606,2.7577,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.738298,-0.503176,-0.55609,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,-0.591485,-0.699357,1.33741,-0.963168,1.04646,0.611307,1.71017,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,1.34334,0.718128,-0.699357,1.33741,0.449102,1.04646,1.5635,0.0399104,0.4606,2.7577,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,1.34334,-0.202141,-0.699357,1.33741,-0.963168,1.04646,1.5635,1.88599,-2.37386,2.7577,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,-0.904152,1.34334,-0.733065,-0.699357,1.33741,0.449102,1.04646,-1.29308,-0.311723,0.4606,1.02657,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.489517,-0.503176,-0.874645,-0.699357,1.33741,0.449102,0.140434,0.611307,0.127819,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,1.34334,1.07208,1.83225,1.33741,0.449102,1.04646,-1.29308,0.0399104,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.62688,-0.699357,-1.1454,-0.963168,0.140434,0.611307,0.215727,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.572444,-0.503176,2.02774,-0.699357,1.33741,-2.37544,1.04646,-0.340885,0.831087,0.4606,-0.704573,-0.428075,1.21399,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,0.256825,-0.503176,-0.803855,1.83225,1.33741,0.449102,-0.765594,0.611307,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,-0.202141,1.83225,0.509805,0.449102,0.140434,-0.340885,-0.311723,0.4606,-0.704573,-0.428075,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.662275,0.566448,0.509805,-0.963168,1.04646,0.611307,0.127819,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,-1.42644,3.16038,1.83225,-1.97301,0.449102,1.04646,1.5635,0.0399104,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,-3.12137,4.83393,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,2.24707,-0.503176,-0.0605608,-0.699357,0.509805,0.449102,1.04646,-1.29308,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.754386,-0.503176,3.08959,-0.699357,-1.1454,-2.37544,-1.67162,1.5635,-0.135906,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,-0.987079,-0.503176,-0.202141,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.311723,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,-0.308326,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,-0.839174,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.69767,1.83225,1.33741,-2.37544,1.04646,-0.340885,1.18272,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-1.23586,-0.503176,0.470364,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-0.311723,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-0.503176,-0.4853,-0.0664547,-0.3178,0.449102,1.04646,0.611307,-0.575449,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.489517,1.34334,0.0456241,1.19935,1.33741,0.449102,1.04646,1.5635,-1.1029,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.591485,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,1.27063,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.240737,-1.42644,-0.662275,1.83225,0.509805,0.449102,1.04646,0.611307,1.18272,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.489517,1.34334,-0.62688,1.83225,1.33741,0.449102,1.04646,-0.340885,2.41344,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,1.34334,0.222599,-0.0664547,-1.1454,-2.37544,-0.765594,0.611307,0.127819,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,2.16414,-0.503176,2.62946,-0.699357,-1.1454,-0.963168,-1.67162,-1.29308,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,2.24707,-0.503176,0.541154,-0.699357,0.509805,0.449102,0.140434,-0.340885,-0.839174,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,0.420083,1.53221,-0.0664547,-1.97301,0.449102,1.04646,1.5635,-0.399632,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.76846,-0.699357,-0.3178,-0.963168,1.04646,-1.29308,1.18272,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,0.420083,-0.803855,-0.699357,-1.1454,1.86137,1.04646,-1.29308,1.09481,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,-0.503176,-0.76846,-0.699357,-0.3178,1.86137,-0.765594,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,1.21399,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,-0.503176,2.16932,-0.699357,-1.1454,1.86137,1.04646,0.611307,-0.663357,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,1 +-1.25394,0.256825,1.34334,1.10747,-0.699357,1.33741,-0.963168,1.04646,1.5635,0.743178,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +0.336345,1.74951,1.34334,0.541154,-0.699357,1.33741,0.449102,1.04646,1.5635,1.79808,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,2.24707,1.34334,1.53221,1.83225,1.33741,-2.37544,-0.765594,0.611307,0.918995,-2.37386,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,2.24707,-0.503176,2.38169,-0.699357,-1.1454,-0.963168,-0.765594,0.611307,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,-0.503176,0.505759,1.83225,-1.1454,-0.963168,1.04646,0.611307,-1.36663,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.904152,-0.503176,-0.69767,1.83225,1.33741,0.449102,-0.765594,-0.340885,0.831087,0.4606,-0.704573,-0.428075,-0.822906,5.09912,1.80838,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.240737,-0.503176,-0.272931,-0.699357,-0.3178,0.449102,1.04646,-1.29308,0.65527,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.00804391,1.34334,-0.202141,1.19935,0.509805,0.449102,-0.765594,0.611307,-0.311723,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-0.503176,-0.91004,-0.699357,-1.97301,-0.963168,1.04646,-1.29308,1.62226,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +-0.458797,1.25195,-2.34969,0.187204,-0.699357,-0.3178,-0.963168,-1.67162,0.611307,0.567361,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +0.336345,0.256825,1.34334,-0.69767,1.83225,0.509805,0.449102,-0.765594,-1.29308,0.127819,-2.37386,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,-0.904152,1.34334,-0.803855,-0.699357,0.509805,0.449102,0.140434,-0.340885,1.18272,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,2.24707,1.34334,2.41709,0.566448,-0.3178,0.449102,-0.765594,1.5635,0.743178,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-1.23586,-0.503176,-0.62688,1.19935,-0.3178,-2.37544,-0.765594,-1.29308,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.754386,-0.503176,0.541154,1.83225,0.509805,-0.963168,1.04646,-0.340885,-1.01499,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,-0.738298,-0.503176,-0.91004,-0.0664547,-1.1454,1.86137,0.140434,1.5635,-0.223815,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,-1.07001,-0.503176,-0.733065,-0.699357,-0.3178,-0.963168,1.04646,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.987079,-0.503176,-1.05162,-0.699357,-0.3178,1.86137,1.04646,-1.29308,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-0.458797,2.24707,-0.503176,0.753523,1.83225,-1.97301,0.449102,1.04646,1.5635,0.391544,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,6.66409,-0.49975,-1.30422,0 +1.13149,0.256825,-0.503176,0.788918,-0.0664547,-0.3178,0.449102,-1.67162,0.611307,-0.927083,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,0.256825,-0.503176,0.151809,-0.699357,-1.1454,-0.963168,1.04646,0.611307,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.91004,-0.699357,0.509805,1.86137,0.140434,0.611307,-0.927083,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +0.336345,-1.40171,-0.503176,-0.62688,1.83225,-1.1454,0.449102,-0.765594,-1.29308,-0.575449,0.4606,-0.704573,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,1.25195,-1.42644,-0.202141,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.399632,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-0.503176,-0.91004,-0.699357,-0.3178,0.449102,0.140434,-0.340885,0.215727,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,-0.503176,0.399574,1.83225,-0.3178,-0.963168,1.04646,-0.340885,1.09481,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.738298,1.34334,-0.91004,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.311723,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.489517,0.420083,0.116414,-0.699357,1.33741,-0.963168,1.04646,-0.340885,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.754386,1.34334,0.328784,-0.699357,-1.97301,1.86137,-0.765594,0.611307,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-1.25394,0.256825,-0.503176,-0.4853,-0.699357,-1.1454,-2.37544,0.140434,-0.340885,-0.311723,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,-0.131351,-0.699357,0.509805,0.449102,-1.67162,1.5635,-0.135906,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.240737,-0.503176,-0.202141,1.19935,-0.3178,0.449102,-0.765594,0.611307,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,-0.803855,-0.699357,-0.3178,-0.963168,0.140434,-1.29308,0.0399104,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.07001,1.34334,0.0456241,-0.699357,0.509805,0.449102,1.04646,-1.29308,0.303636,0.4606,1.02657,-0.428075,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.738298,1.34334,0.895103,1.83225,1.33741,0.449102,1.04646,-0.340885,1.18272,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.62688,1.19935,0.509805,-0.963168,0.140434,0.611307,-0.135906,0.4606,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,1.25195,-0.503176,0.434969,-0.699357,1.33741,0.449102,-0.765594,0.611307,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.23586,-0.503176,-0.76846,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.663357,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,1.34334,1.17826,-0.699357,-1.97301,0.449102,1.04646,1.5635,3.46834,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.240737,1.34334,-0.4853,-0.0664547,-0.3178,-0.963168,-0.765594,-1.29308,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,3.24219,-0.503176,1.46142,-0.0664547,-1.1454,-0.963168,-0.765594,-0.340885,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,2.24707,1.34334,2.94801,-0.0664547,-0.3178,-0.963168,1.04646,0.611307,-1.01499,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +-1.25394,0.256825,-2.34969,0.293389,-0.699357,1.33741,0.449102,1.04646,1.5635,-1.1029,-2.37386,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-1.23586,1.34334,0.0456241,-0.699357,-0.3178,-2.37544,1.04646,-1.29308,0.743178,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,1 +-0.458797,-0.655371,-0.503176,-0.41451,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.489517,-0.503176,-0.69767,1.83225,-0.3178,-0.963168,-0.765594,0.611307,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,0.328784,-0.699357,-0.3178,0.449102,1.04646,-0.340885,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.904152,-0.503176,-0.62688,-0.699357,-0.3178,-2.37544,-0.765594,0.611307,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,1.34334,0.859708,-0.699357,-1.1454,-0.963168,1.04646,1.5635,-1.01499,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,0.00804391,-0.503176,0.116414,-0.699357,0.509805,-0.963168,1.04646,0.611307,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-0.458797,-0.240737,-0.503176,-0.0251658,0.566448,-1.1454,1.86137,0.140434,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,0.399574,-0.699357,1.33741,0.449102,-1.67162,-1.29308,-0.223815,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +0.336345,-0.904152,-0.503176,0.222599,-0.699357,-1.1454,0.449102,-1.67162,-0.340885,0.127819,0.4606,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.489517,1.34334,-0.62688,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,0.65527,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.655371,1.34334,-0.83925,-0.699357,-1.1454,0.449102,1.04646,-1.29308,-1.1029,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,-0.503176,0.187204,0.566448,-1.97301,-0.963168,1.04646,1.5635,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,6.66409,-0.49975,-1.30422,0 +1.13149,-1.23586,0.420083,-0.55609,-0.0664547,-0.3178,0.449102,-0.765594,-1.29308,-0.135906,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.987079,1.34334,-0.76846,1.19935,1.33741,0.449102,0.140434,1.5635,-0.311723,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.987079,-0.503176,-0.733065,-0.699357,-1.1454,-0.963168,1.04646,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-0.503176,-0.803855,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.240737,1.34334,-0.0251658,1.83225,-1.97301,0.449102,1.04646,1.5635,0.215727,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.738298,-2.34969,1.03668,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,-0.663357,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.904152,-0.503176,-0.91004,0.566448,1.33741,0.449102,1.04646,1.5635,0.918995,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,-0.503176,-0.733065,-0.699357,-1.1454,0.449102,-0.765594,-1.29308,-1.1029,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,-0.738298,1.34334,-0.343721,1.83225,1.33741,0.449102,1.04646,-1.29308,1.18272,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,0.420083,0.434969,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.839174,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.738298,-0.503176,-0.874645,-0.699357,-0.3178,1.86137,-0.765594,-1.29308,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.754386,-0.503176,-0.308326,-0.699357,0.509805,-0.963168,1.04646,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.240737,-0.503176,-0.733065,1.83225,-0.3178,0.449102,1.04646,1.5635,2.23762,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +0.336345,-0.738298,-0.503176,0.0456241,1.83225,1.33741,0.449102,0.140434,0.611307,0.127819,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +0.336345,-0.738298,0.420083,-0.379115,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,0.0399104,-0.956631,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-0.503176,-0.520695,-0.699357,-0.3178,1.86137,-0.765594,-0.340885,-1.27872,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,-0.272931,-0.699357,-1.97301,0.449102,-1.67162,0.611307,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,1 +1.13149,-0.738298,-0.503176,-0.62688,-0.699357,0.509805,0.449102,1.04646,0.611307,0.0399104,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,0.187204,-0.699357,0.509805,0.449102,-1.67162,0.611307,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,0.116414,-0.699357,-1.1454,-0.963168,1.04646,0.611307,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,1.25195,-0.503176,0.0456241,-0.699357,1.33741,0.449102,-0.765594,0.611307,0.567361,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.240737,-0.503176,-0.0959558,-0.699357,0.509805,-0.963168,1.04646,-1.29308,0.391544,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,-0.503176,-0.0605608,1.83225,-0.3178,0.449102,1.04646,-1.29308,0.0399104,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,1.00129,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.223815,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.904152,1.34334,-0.41451,-0.699357,-1.1454,-0.963168,0.140434,-1.29308,-1.1029,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,3.24219,1.34334,3.7267,1.83225,1.33741,0.449102,1.04646,1.5635,2.41344,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,3.24219,-1.42644,4.08065,-0.0664547,1.33741,-0.963168,1.04646,1.5635,2.14971,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +-1.25394,2.24707,-1.42644,1.56761,-0.699357,0.509805,-0.963168,1.04646,0.611307,0.127819,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.240737,0.420083,-0.343721,-0.699357,-1.97301,1.86137,0.140434,-1.29308,-0.135906,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.15293,0.420083,-0.874645,1.83225,1.33741,0.449102,1.04646,1.5635,0.0399104,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,-0.503176,3.90368,-0.699357,1.33741,0.449102,-0.765594,1.5635,1.88599,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,-1.23586,1.34334,-1.01622,-0.0664547,-0.3178,-0.963168,1.04646,0.611307,1.44645,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.074883,-0.503176,-0.379115,1.83225,0.509805,0.449102,1.04646,0.611307,0.303636,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,3.44354,-0.699357,-1.97301,-0.963168,1.04646,1.5635,0.215727,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,0.0909708,-0.503176,-0.69767,1.83225,0.509805,-0.963168,1.04646,-0.340885,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +0.336345,-0.738298,-0.503176,-0.69767,-0.699357,-1.1454,0.449102,-1.67162,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.754386,0.420083,0.364179,-0.0664547,-0.3178,0.449102,-0.765594,-0.340885,-0.839174,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.240737,1.34334,-0.379115,-0.699357,-0.3178,-0.963168,-1.67162,0.611307,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,-0.76846,1.83225,-1.1454,-0.963168,-0.765594,-1.29308,-1.27872,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,1.34334,1.46142,-0.699357,-1.97301,0.449102,1.04646,-0.340885,0.391544,-0.956631,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.489517,1.34334,-0.343721,0.566448,-0.3178,0.449102,1.04646,0.611307,-0.751266,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,-0.503176,-0.662275,-0.699357,0.509805,-0.963168,-0.765594,0.611307,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,-0.520695,-0.699357,-0.3178,1.86137,-0.765594,-0.340885,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.803855,1.19935,-1.1454,-0.963168,1.04646,-1.29308,-1.45453,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,1.25195,-0.503176,-0.0251658,-0.699357,0.509805,0.449102,1.04646,1.5635,0.303636,-2.37386,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,-1.23586,1.34334,-0.449905,-0.699357,0.509805,-0.963168,1.04646,0.611307,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,1.34334,-0.308326,-0.699357,-1.97301,0.449102,0.140434,0.611307,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,1.50073,0.420083,3.0188,-0.0664547,0.509805,0.449102,0.140434,1.5635,-0.311723,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.237536,-0.699357,-1.97301,-0.963168,1.04646,1.5635,1.71017,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,1.25195,1.34334,-0.343721,-0.699357,-0.3178,1.86137,-0.765594,-0.340885,0.918995,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.733065,-0.699357,1.33741,-2.37544,-1.67162,-1.29308,0.918995,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,-0.62688,1.19935,-0.3178,-0.963168,-1.67162,-1.29308,0.65527,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.240737,-0.503176,-0.62688,-0.699357,-1.1454,1.86137,1.04646,-1.29308,0.303636,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,1.34334,-0.4853,1.83225,-0.3178,1.86137,1.04646,-1.29308,-0.663357,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,0.420083,1.88616,-0.699357,-1.1454,0.449102,-0.765594,0.611307,-0.751266,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.572444,0.420083,-0.874645,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.240737,0.420083,-0.131351,1.83225,1.33741,0.449102,1.04646,0.611307,0.65527,0.4606,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,-0.503176,-0.449905,-0.699357,-1.1454,1.86137,-1.67162,-0.340885,-1.19081,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,-0.379115,1.83225,0.509805,0.449102,1.04646,0.611307,0.65527,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.489517,-0.503176,-0.76846,-0.699357,-1.1454,1.86137,-0.765594,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.0251658,0.566448,1.33741,-2.37544,-0.765594,0.611307,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +0.336345,-0.738298,1.34334,-0.83925,0.566448,0.509805,1.86137,-0.765594,-1.29308,-0.663357,0.4606,2.7577,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,-0.503176,-0.449905,-0.699357,1.33741,-0.963168,1.04646,0.611307,-1.36663,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.00317,1.34334,1.42603,-0.699357,0.509805,0.449102,-0.765594,0.611307,-0.047998,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,1.34334,-0.343721,-0.699357,-1.97301,0.449102,-0.765594,0.611307,0.567361,-0.956631,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.904152,-0.503176,-0.591485,0.566448,-0.3178,0.449102,-0.765594,1.5635,0.391544,0.4606,-0.704573,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,-0.503176,-0.662275,1.83225,-0.3178,-0.963168,-0.765594,-0.340885,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,1.34334,0.895103,-0.699357,1.33741,0.449102,-0.765594,-0.340885,-0.047998,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.237536,-0.699357,-1.1454,0.449102,-1.67162,-1.29308,-0.223815,0.4606,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,-0.240737,0.420083,1.85077,1.83225,-0.3178,-0.963168,-0.765594,0.611307,-1.1029,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.00804391,-0.503176,-0.166746,0.566448,0.509805,-0.963168,-0.765594,0.611307,-0.399632,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.240737,-0.503176,-0.803855,1.83225,-0.3178,-0.963168,-0.765594,-0.340885,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.489517,-0.503176,-0.0251658,1.19935,0.509805,-0.963168,0.140434,0.611307,-1.36663,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.449905,1.83225,-0.3178,0.449102,-0.765594,0.611307,-0.48754,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,1.34334,-0.803855,-0.699357,0.509805,0.449102,0.140434,-1.29308,1.0069,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.00804391,0.420083,-0.591485,-0.0664547,0.509805,0.449102,0.140434,-1.29308,-0.135906,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.166746,1.83225,1.33741,-0.963168,-0.765594,-0.340885,-0.927083,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.240737,-0.503176,-0.166746,-0.699357,-0.3178,1.86137,0.140434,0.611307,-1.27872,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.588532,1.34334,-0.202141,-0.699357,1.33741,0.449102,-0.765594,0.611307,-0.575449,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,-0.76846,1.19935,-0.3178,0.449102,0.140434,-1.29308,0.918995,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,-0.503176,-0.69767,-0.699357,1.33741,0.449102,1.04646,0.611307,-1.36663,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,1.34334,-0.733065,-0.699357,-1.97301,-0.963168,1.04646,1.5635,1.71017,0.4606,2.7577,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,6.66409,-0.49975,-1.30422,1 +1.13149,-1.31879,-0.503176,0.0456241,-0.699357,0.509805,0.449102,1.04646,-1.29308,3.38043,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,-0.503176,2.84183,-0.699357,-0.3178,0.449102,0.140434,0.611307,-0.575449,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-1.25394,-1.23586,1.34334,-0.4853,-0.699357,-1.97301,0.449102,1.04646,1.5635,0.0399104,0.4606,2.7577,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,0.256825,1.34334,-0.41451,-0.699357,-0.3178,-2.37544,-0.765594,-1.29308,-0.223815,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.987079,-0.503176,-0.41451,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.62688,1.83225,-0.3178,1.86137,-1.67162,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-1.23586,-0.503176,-0.91004,0.566448,0.509805,1.86137,1.04646,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,1.34334,-0.69767,1.19935,1.33741,-0.963168,1.04646,-1.29308,0.127819,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.74951,1.34334,0.0456241,-0.699357,-1.97301,0.449102,1.04646,0.611307,2.58926,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +0.336345,-0.738298,-1.42644,-0.945435,-0.699357,-1.1454,-0.963168,-1.67162,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,1 +1.13149,-0.738298,-0.503176,-0.4853,-0.699357,1.33741,0.449102,1.04646,0.611307,0.303636,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.738298,-0.503176,-0.591485,-0.699357,-0.3178,-0.963168,0.140434,-0.340885,-0.48754,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.074883,0.420083,-0.237536,-0.699357,-0.3178,0.449102,0.140434,0.611307,-0.575449,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.91004,-0.699357,1.33741,0.449102,1.04646,0.611307,0.479453,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,2.24707,1.34334,0.647339,-0.699357,-0.3178,-0.963168,0.140434,0.611307,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.987079,1.34334,-0.733065,1.83225,1.33741,-0.963168,1.04646,-0.340885,0.479453,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,1.25195,-0.503176,-0.520695,-0.699357,-1.1454,-0.963168,1.04646,0.611307,-0.135906,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-1.15293,-0.503176,-0.237536,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.738298,-0.503176,-0.662275,1.83225,1.33741,-0.963168,1.04646,-1.29308,1.71017,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.489517,0.420083,-0.62688,1.19935,-0.3178,1.86137,0.140434,-0.340885,2.23762,-0.956631,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,1.34334,2.77104,1.83225,-0.3178,0.449102,-0.765594,0.611307,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-1.23586,-0.503176,-0.98083,-0.699357,-0.3178,-0.963168,-1.67162,-1.29308,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-2.34969,-0.166746,-0.699357,1.33741,0.449102,1.04646,-0.340885,-0.135906,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.202141,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,0.256825,-0.503176,0.541154,-0.699357,0.509805,0.449102,0.140434,-0.340885,-0.399632,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-0.503176,-0.202141,-0.699357,-1.1454,-0.963168,-1.67162,1.5635,-0.575449,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.821225,1.34334,0.222599,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.0399104,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,0.0456241,-0.699357,1.33741,0.449102,1.04646,1.5635,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-1.23586,-0.503176,-1.05162,-0.699357,-1.1454,-0.963168,-1.67162,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,0.470364,-0.699357,-1.1454,0.449102,-0.765594,0.611307,-0.311723,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.25195,-0.503176,0.116414,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,0.127819,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.489517,-0.503176,-0.55609,-0.699357,-1.1454,0.449102,0.140434,-1.29308,0.0399104,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.0959558,-0.699357,-1.1454,-0.963168,-1.67162,-1.29308,-0.135906,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.874645,1.83225,1.33741,0.449102,1.04646,-0.340885,0.215727,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,-0.449905,-0.699357,0.509805,0.449102,-1.67162,0.611307,-0.135906,-0.956631,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,-0.131351,-0.699357,-0.3178,0.449102,1.04646,1.5635,2.41344,-2.37386,-0.704573,2.3337,1.21399,-0.195916,-0.552429,2.94958,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,0.420083,-0.55609,-0.699357,-1.1454,-0.963168,-0.765594,0.611307,-0.575449,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +1.13149,2.24707,0.420083,1.39063,1.83225,1.33741,0.449102,0.140434,0.611307,-0.311723,-2.37386,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.00317,0.420083,-0.166746,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,-0.839174,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,0.420083,0.505759,-0.699357,0.509805,0.449102,0.140434,0.611307,-0.047998,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,-0.503176,-0.0605608,-0.0664547,-1.1454,1.86137,-0.765594,0.611307,-1.19081,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-1.23586,-0.503176,-1.01622,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.987079,-0.503176,-0.91004,-0.699357,-0.3178,0.449102,0.140434,0.611307,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,-1.23586,-0.503176,-0.733065,1.83225,-1.97301,0.449102,1.04646,-0.340885,0.0399104,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.240737,1.34334,-0.733065,-0.699357,-0.3178,1.86137,-0.765594,0.611307,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.240737,-2.34969,-0.0605608,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,1.50073,-0.503176,-0.237536,0.566448,-0.3178,0.449102,1.04646,0.611307,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,0.256825,-0.503176,0.682734,-0.699357,0.509805,0.449102,-0.765594,0.611307,-0.927083,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.803855,-0.0664547,0.509805,0.449102,1.04646,-1.29308,0.303636,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.489517,1.34334,-0.62688,-0.699357,1.33741,0.449102,1.04646,0.611307,0.743178,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,1.34334,0.116414,-0.699357,-0.3178,-0.963168,-1.67162,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,-0.503176,-0.733065,-0.699357,-1.1454,0.449102,-1.67162,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.754386,-0.503176,0.116414,1.19935,1.33741,-0.963168,1.04646,-0.340885,1.88599,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,0.420083,-0.803855,1.19935,0.509805,-0.963168,-0.765594,-0.340885,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.733065,0.566448,-0.3178,0.449102,1.04646,-1.29308,0.743178,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.23586,0.420083,-0.733065,-0.699357,-1.97301,0.449102,1.04646,-0.340885,1.0069,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.738298,-0.503176,-0.0605608,-0.699357,-0.3178,0.449102,1.04646,0.611307,1.44645,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,0.187204,-0.699357,1.33741,-0.963168,1.04646,1.5635,2.32553,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,-3.12137,4.83393,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.904152,-0.503176,-0.662275,-0.0664547,-0.3178,0.449102,-0.765594,-1.29308,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,-1.23586,-0.503176,0.0810191,-0.699357,-0.3178,0.449102,0.140434,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.4853,-0.699357,1.33741,0.449102,-0.765594,1.5635,-0.839174,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.505605,-2.34969,1.77998,-0.699357,1.33741,-0.963168,1.04646,1.5635,0.567361,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,-1.23586,1.34334,-0.733065,-0.0664547,-0.3178,-0.963168,-1.67162,-0.340885,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.23586,-0.503176,-1.01622,1.83225,1.33741,0.449102,1.04646,-0.340885,0.215727,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,1.34334,-0.41451,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.303636,0.4606,1.02657,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,-0.503176,-0.0959558,1.83225,-0.3178,1.86137,1.04646,0.611307,-1.36663,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,1.25195,-0.503176,2.02774,-0.0664547,-1.1454,0.449102,-1.67162,1.5635,-0.575449,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,0.256825,1.34334,-0.591485,-0.699357,0.509805,0.449102,0.140434,-0.340885,0.391544,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,-0.69767,-0.699357,1.33741,1.86137,-0.765594,-1.29308,-0.311723,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +0.336345,-1.23586,1.34334,-0.69767,-0.0664547,1.33741,-2.37544,1.04646,0.611307,-0.663357,0.4606,1.02657,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,-0.0605608,-0.699357,-1.1454,-0.963168,-1.67162,-0.340885,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,1.25195,-0.503176,0.788918,-0.699357,1.33741,0.449102,1.04646,1.5635,0.567361,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +0.336345,-0.987079,-0.503176,-0.76846,-0.0664547,1.33741,-2.37544,1.04646,-1.29308,1.18272,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,1.34334,-0.733065,-0.0664547,-1.1454,0.449102,1.04646,1.5635,0.215727,-2.37386,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,-0.733065,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.904152,-0.503176,-0.69767,1.83225,-0.3178,0.449102,1.04646,-0.340885,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +0.336345,-0.489517,1.34334,-0.308326,0.566448,-0.3178,0.449102,-0.765594,0.611307,0.0399104,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.489517,-1.42644,1.24905,-0.0664547,-1.97301,0.449102,-0.765594,-0.340885,-0.135906,0.4606,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,0.256825,-0.503176,-0.662275,-0.699357,-0.3178,1.86137,-0.765594,-0.340885,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.50073,-0.503176,1.88616,-0.0664547,1.33741,0.449102,-0.765594,0.611307,0.831087,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.738298,-0.503176,-0.874645,-0.699357,0.509805,0.449102,-0.765594,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,-0.503176,0.505759,-0.699357,-0.3178,0.449102,-0.765594,1.5635,-0.311723,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +0.336345,-0.489517,-0.503176,-0.202141,-0.699357,0.509805,0.449102,1.04646,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,0.420083,-0.945435,-0.699357,-0.3178,1.86137,1.04646,-1.29308,-1.36663,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.343721,1.83225,-1.1454,0.449102,-1.67162,-0.340885,1.62226,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,1.34334,-0.945435,-0.699357,0.509805,-0.963168,0.140434,-0.340885,0.127819,0.4606,1.02657,-0.428075,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,1.34334,-0.662275,-0.699357,-1.1454,0.449102,1.04646,-1.29308,0.391544,0.4606,-0.704573,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,1.25195,1.34334,1.35524,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.1029,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-1.23586,-0.503176,-0.733065,-0.0664547,1.33741,0.449102,-0.765594,-0.340885,0.65527,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,1.34334,-0.91004,1.83225,1.33741,0.449102,1.04646,1.5635,0.0399104,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,1.34334,0.788918,-0.699357,1.33741,0.449102,1.04646,1.5635,0.743178,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,-0.0251658,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,2.24707,-2.34969,1.35524,-0.699357,-0.3178,0.449102,1.04646,1.5635,1.53435,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-0.503176,0.0810191,-0.0664547,0.509805,-0.963168,1.04646,0.611307,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,-0.503176,-0.76846,-0.699357,-0.3178,-0.963168,1.04646,-1.29308,-0.839174,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.422678,-0.503176,1.67379,-0.699357,-1.1454,0.449102,0.140434,0.611307,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,1.34334,-0.62688,-0.0664547,-0.3178,-0.963168,0.140434,0.611307,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.40171,1.34334,-0.62688,-0.699357,0.509805,0.449102,-1.67162,-1.29308,0.567361,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,1.25195,-0.503176,-0.343721,-0.699357,-0.3178,-2.37544,1.04646,0.611307,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-1.23586,-0.503176,-0.91004,-0.699357,-1.1454,0.449102,1.04646,-1.29308,0.479453,0.4606,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,1.25195,-0.503176,-0.343721,-0.699357,0.509805,0.449102,-1.67162,0.611307,-0.311723,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.489517,-0.503176,-0.237536,-0.0664547,-0.3178,-0.963168,1.04646,0.611307,-0.663357,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,0.420083,-0.62688,-0.699357,-0.3178,1.86137,1.04646,-1.29308,0.479453,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.69767,-0.0664547,0.509805,1.86137,0.140434,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.0605608,1.83225,-1.1454,0.449102,-0.765594,0.611307,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,0.00804391,1.34334,-0.343721,-0.699357,-1.1454,-2.37544,-1.67162,0.611307,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-1.23586,-0.503176,-0.662275,1.83225,-1.97301,-0.963168,0.140434,-0.340885,3.46834,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.240737,1.34334,0.116414,-0.699357,1.33741,-0.963168,1.04646,-0.340885,0.127819,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,2.24707,-0.503176,1.603,-0.699357,1.33741,0.449102,1.04646,1.5635,0.567361,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +0.336345,-0.240737,-0.503176,-0.0959558,-0.699357,-1.1454,-0.963168,-1.67162,-0.340885,0.831087,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.62688,-0.699357,-1.1454,1.86137,-1.67162,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,0.420083,-0.449905,-0.699357,1.33741,0.449102,1.04646,1.5635,2.14971,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,0.754386,-0.503176,1.10747,1.83225,1.33741,0.449102,1.04646,-0.340885,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +0.336345,-0.240737,-0.503176,-0.131351,-0.699357,-0.3178,0.449102,-1.67162,-1.29308,-0.135906,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,-0.738298,1.34334,-0.69767,-0.699357,1.33741,0.449102,1.04646,-1.29308,2.23762,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,0.420083,-0.69767,-0.699357,-1.97301,0.449102,-0.765594,-1.29308,0.65527,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,-0.449905,-0.699357,-0.3178,-0.963168,1.04646,0.611307,0.127819,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.591485,-0.699357,0.509805,0.449102,-1.67162,0.611307,-0.311723,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-1.42644,-0.945435,-0.699357,-0.3178,-0.963168,1.04646,-1.29308,-1.01499,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,2.24707,1.34334,1.99235,1.83225,0.509805,0.449102,-1.67162,1.5635,-0.047998,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.803855,1.83225,0.509805,-0.963168,1.04646,-1.29308,-1.1029,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-1.42644,-0.520695,0.566448,1.33741,0.449102,1.04646,-0.340885,0.831087,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,2.24707,-0.503176,1.31984,-0.699357,0.509805,1.86137,-1.67162,-1.29308,-0.135906,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.738298,1.34334,-0.449905,-0.0664547,-1.1454,0.449102,-1.67162,0.611307,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-0.503176,-0.733065,-0.699357,0.509805,-0.963168,1.04646,-0.340885,2.76507,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.69767,-0.699357,-1.1454,0.449102,-1.67162,0.611307,-1.19081,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.240737,-2.34969,-0.343721,-0.0664547,-1.1454,-0.963168,0.140434,0.611307,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.00804391,-2.34969,0.611944,1.83225,-0.3178,-0.963168,1.04646,-0.340885,-0.575449,-2.37386,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-1.42644,0.116414,-0.699357,0.509805,0.449102,1.04646,0.611307,-0.751266,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.240737,1.34334,-0.4853,-0.699357,-1.1454,0.449102,-0.765594,-1.29308,-0.399632,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,0.256825,-0.503176,-0.0959558,1.83225,1.33741,0.449102,1.04646,1.5635,1.18272,-2.37386,-0.704573,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-1.42644,-0.62688,-0.699357,0.509805,0.449102,1.04646,0.611307,-1.01499,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +0.336345,-1.23586,0.420083,-0.91004,-0.699357,-1.1454,-0.963168,-1.67162,-0.340885,-0.575449,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,-0.503176,3.23117,1.83225,-0.3178,0.449102,1.04646,1.5635,0.127819,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,0.420083,0.505759,1.83225,-0.3178,0.449102,-0.765594,-0.340885,0.127819,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,0.256825,0.420083,-0.591485,-0.0664547,0.509805,-0.963168,-0.765594,-0.340885,-1.1029,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.662275,-0.699357,0.509805,-2.37544,0.140434,0.611307,0.0399104,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,-0.237536,1.19935,1.33741,0.449102,-0.765594,0.611307,-0.135906,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,-0.503176,0.257994,1.83225,0.509805,0.449102,-1.67162,0.611307,0.479453,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,2.24707,-0.503176,1.24905,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,-0.399632,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,-0.0251658,-0.699357,-1.1454,-0.963168,1.04646,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +1.13149,0.754386,1.34334,0.965893,-0.699357,0.509805,0.449102,-0.765594,0.611307,0.215727,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,0.753523,1.83225,-1.97301,-0.963168,1.04646,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.489517,-0.503176,-0.874645,-0.699357,-0.3178,-0.963168,1.04646,-0.340885,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.987079,-0.503176,-0.76846,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.489517,1.34334,-0.166746,-0.699357,0.509805,-0.963168,0.140434,0.611307,-1.01499,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.131351,-0.699357,0.509805,-0.963168,-1.67162,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,1.34334,-0.4853,1.83225,-0.3178,-0.963168,-0.765594,0.611307,-0.223815,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,1.34334,-0.166746,-0.699357,-1.1454,-2.37544,1.04646,0.611307,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-0.503176,-0.83925,-0.699357,-1.1454,1.86137,0.140434,0.611307,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.240737,1.34334,-0.76846,-0.699357,1.33741,0.449102,0.140434,-1.29308,-0.48754,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.738298,1.34334,-0.0605608,-0.699357,-1.1454,0.449102,0.140434,-1.29308,1.18272,-2.37386,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.987079,-0.503176,-0.662275,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,-0.503176,-0.308326,-0.699357,-1.1454,0.449102,-1.67162,1.5635,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +1.13149,-0.738298,-0.503176,-0.41451,1.83225,1.33741,-0.963168,1.04646,1.5635,1.44645,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.240737,-0.503176,-0.449905,-0.699357,-0.3178,-0.963168,1.04646,-1.29308,-1.36663,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.987079,1.34334,-0.166746,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.0399104,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.69767,-0.699357,-0.3178,0.449102,-1.67162,-0.340885,-1.27872,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.240737,-0.503176,-0.733065,-0.699357,-0.3178,1.86137,0.140434,-1.29308,1.0069,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,-0.738298,1.34334,-0.379115,-0.699357,1.33741,0.449102,0.140434,-0.340885,2.14971,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,1.34334,-1.01622,-0.699357,0.509805,-0.963168,0.140434,-1.29308,1.9739,0.4606,4.48884,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,0.420083,-0.449905,1.83225,-0.3178,-0.963168,1.04646,0.611307,0.567361,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.00804391,-0.503176,-0.591485,1.19935,1.33741,-0.963168,1.04646,-1.29308,0.0399104,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,-0.503176,-0.202141,-0.699357,-0.3178,-0.963168,1.04646,-0.340885,-1.36663,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +-1.25394,0.256825,-1.42644,-0.662275,1.83225,1.33741,0.449102,0.140434,0.611307,0.391544,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-0.458797,-1.23586,-1.42644,-0.83925,-0.0664547,-1.1454,-0.963168,-1.67162,-0.340885,-0.311723,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,0.256825,-0.503176,-0.662275,-0.699357,0.509805,-0.963168,1.04646,0.611307,-1.1029,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,-2.34969,0.328784,-0.699357,-0.3178,0.449102,1.04646,-1.29308,0.0399104,0.4606,2.7577,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,-0.240737,1.34334,-0.166746,-0.699357,0.509805,0.449102,-0.765594,-0.340885,-0.399632,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,0.420083,0.222599,-0.699357,-0.3178,0.449102,-0.765594,1.5635,-0.311723,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.15293,-0.503176,-0.343721,-0.699357,-1.1454,-0.963168,-1.67162,-1.29308,0.831087,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-0.503176,-0.83925,-0.699357,-0.3178,-0.963168,-1.67162,-0.340885,-0.48754,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,-1.42644,-0.520695,-0.699357,0.509805,-0.963168,1.04646,1.5635,-0.135906,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,1.999,-1.30422,1 +1.13149,1.25195,-0.503176,0.0102291,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,-0.663357,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +0.336345,-0.904152,-0.503176,-0.69767,-0.699357,-1.1454,-0.963168,-0.765594,-0.340885,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-1.42644,-0.166746,0.566448,-0.3178,0.449102,1.04646,-1.29308,-1.19081,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,1.34334,0.434969,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,3.38043,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,1.25195,-0.503176,-0.202141,-0.0664547,-0.3178,-0.963168,1.04646,1.5635,1.27063,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.240737,-0.503176,-0.41451,-0.699357,-1.1454,0.449102,-1.67162,-1.29308,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,-0.69767,1.83225,1.33741,0.449102,1.04646,1.5635,0.831087,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.91004,-0.0664547,-1.97301,-0.963168,0.140434,-0.340885,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +0.336345,-0.904152,-0.503176,-0.733065,-0.0664547,1.33741,-0.963168,1.04646,1.5635,1.09481,0.4606,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,1.999,-1.30422,1 +-1.25394,0.00804391,-0.503176,0.0456241,1.19935,-1.1454,-0.963168,-0.765594,0.611307,-0.575449,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-1.42644,0.116414,-0.699357,-0.3178,-0.963168,1.04646,0.611307,-1.19081,-2.37386,-0.704573,-0.428075,-0.822906,5.09912,-0.552429,2.94958,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,0.420083,-0.520695,-0.699357,0.509805,-0.963168,-1.67162,-1.29308,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,2.24707,-2.34969,3.16038,1.83225,-0.3178,0.449102,-0.765594,0.611307,1.09481,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,3.24219,0.420083,2.09853,1.83225,-0.3178,0.449102,-0.765594,1.5635,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,-1.23586,1.34334,0.151809,-0.699357,-0.3178,0.449102,0.140434,-1.29308,0.127819,0.4606,2.7577,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,0.754386,-0.503176,0.0456241,-0.0664547,-0.3178,-0.963168,1.04646,0.611307,-1.27872,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,-0.503176,-0.945435,-0.699357,-0.3178,-2.37544,-0.765594,-1.29308,1.18272,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.00804391,1.34334,0.151809,-0.699357,0.509805,0.449102,0.140434,-0.340885,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,-0.62688,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,-0.311723,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,2.24707,-0.503176,0.222599,1.83225,-0.3178,-2.37544,-0.765594,-1.29308,0.215727,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-0.503176,-0.4853,-0.699357,-1.1454,-0.963168,-1.67162,0.611307,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,-0.237536,-0.699357,-0.3178,0.449102,1.04646,1.5635,2.58926,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.489517,-0.503176,-0.449905,1.83225,1.33741,0.449102,-0.765594,0.611307,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-1.23586,-0.503176,-0.41451,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.479453,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-1.42644,-0.662275,-0.0664547,0.509805,0.449102,0.140434,1.5635,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,1.74951,1.34334,0.257994,0.566448,-0.3178,0.449102,1.04646,-1.29308,0.0399104,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,-0.503176,0.187204,1.83225,1.33741,0.449102,1.04646,-1.29308,2.50135,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,-0.503176,0.151809,-0.699357,-0.3178,-0.963168,1.04646,0.611307,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-1.42644,-0.591485,-0.699357,-0.3178,0.449102,0.140434,0.611307,0.743178,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.489517,-0.503176,-0.662275,1.83225,-1.1454,0.449102,-1.67162,-0.340885,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,-0.503176,-0.449905,-0.699357,-1.1454,-0.963168,-0.765594,0.611307,-1.45453,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,-0.503176,-0.662275,-0.699357,-1.1454,-0.963168,1.04646,0.611307,-0.927083,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,-0.738298,-0.503176,-0.662275,-0.699357,1.33741,0.449102,1.04646,-0.340885,1.0069,-2.37386,2.7577,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.662275,0.566448,0.509805,-0.963168,-1.67162,0.611307,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,3.24219,0.420083,4.3992,-0.699357,0.509805,0.449102,1.04646,0.611307,-1.27872,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.62688,-0.699357,-1.1454,-0.963168,0.140434,0.611307,-0.135906,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.74951,0.420083,0.399574,-0.699357,0.509805,0.449102,-0.765594,-0.340885,-0.839174,-2.37386,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.240737,-0.503176,-0.874645,-0.699357,-1.97301,-0.963168,-1.67162,-1.29308,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,1 +-0.458797,-0.489517,-0.503176,-0.69767,-0.699357,1.33741,0.449102,1.04646,0.611307,0.215727,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.489517,-0.503176,0.470364,-0.0664547,-0.3178,0.449102,-0.765594,-0.340885,0.391544,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,0.256825,1.34334,-0.4853,-0.699357,0.509805,1.86137,-0.765594,0.611307,-0.223815,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,1.34334,-0.4853,-0.699357,0.509805,1.86137,-1.67162,-0.340885,-0.311723,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,1.25195,0.420083,1.67379,1.83225,-1.1454,0.449102,1.04646,0.611307,-0.751266,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,0.754386,-2.34969,0.470364,-0.699357,-0.3178,-2.37544,-0.765594,-1.29308,-0.311723,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.662275,0.566448,-0.3178,-0.963168,-0.765594,-0.340885,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +0.336345,0.256825,-0.503176,-0.83925,-0.699357,0.509805,0.449102,0.140434,1.5635,0.215727,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-0.503176,-0.91004,-0.699357,-0.3178,0.449102,1.04646,0.611307,0.391544,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +-1.25394,2.24707,-0.503176,1.49682,-0.699357,0.509805,0.449102,-1.67162,1.5635,1.27063,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.4853,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,0.127819,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,0.256825,-0.503176,-0.343721,-0.699357,1.33741,0.449102,-1.67162,-1.29308,0.831087,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,1.25195,0.420083,1.70919,-0.0664547,1.33741,0.449102,1.04646,0.611307,0.567361,0.4606,4.48884,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,0.256825,1.34334,-0.343721,-0.699357,0.509805,0.449102,0.140434,0.611307,-0.047998,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.572444,-0.503176,0.257994,-0.699357,-1.97301,0.449102,1.04646,1.5635,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.83925,-0.699357,1.33741,0.449102,1.04646,0.611307,0.479453,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,2.24707,-0.503176,2.45248,1.83225,0.509805,0.449102,0.140434,0.611307,0.127819,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.754386,-2.34969,0.328784,-0.699357,-0.3178,-0.963168,-1.67162,0.611307,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,1.34334,1.10747,-0.699357,1.33741,0.449102,-1.67162,1.5635,0.479453,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.738298,-0.503176,-0.69767,-0.699357,-0.3178,1.86137,1.04646,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.83925,1.83225,-0.3178,1.86137,-0.765594,0.611307,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.00804391,-0.503176,-0.379115,-0.699357,1.33741,0.449102,-0.765594,-1.29308,1.27063,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.23586,0.420083,-0.803855,-0.699357,-1.97301,0.449102,-1.67162,-0.340885,-0.047998,-0.956631,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +0.336345,-1.23586,1.34334,-0.803855,-0.699357,-0.3178,-0.963168,1.04646,-0.340885,1.27063,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,1.34334,1.07208,-0.699357,-1.97301,0.449102,-0.765594,1.5635,-0.751266,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,0.754386,-1.42644,0.0810191,1.19935,-0.3178,0.449102,-0.765594,0.611307,-0.135906,-0.956631,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,2.24707,-1.42644,0.116414,-0.699357,-0.3178,-0.963168,-1.67162,-1.29308,-0.751266,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,1.34334,0.541154,-0.699357,1.33741,0.449102,1.04646,-0.340885,0.65527,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +0.336345,0.754386,1.34334,-0.0959558,-0.699357,1.33741,0.449102,1.04646,-0.340885,1.0069,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,1.34334,0.293389,-0.0664547,-0.3178,0.449102,0.140434,-0.340885,-0.751266,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,1.25195,-0.503176,0.859708,-0.0664547,0.509805,0.449102,-0.765594,0.611307,-0.399632,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,3.24219,-0.503176,2.52327,-0.699357,1.33741,0.449102,1.04646,-0.340885,0.567361,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-1.23586,1.34334,-0.41451,0.566448,-0.3178,1.86137,-0.765594,0.611307,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.00804391,0.420083,-0.237536,0.566448,-1.1454,0.449102,-0.765594,-1.29308,0.479453,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,0.754386,1.34334,0.434969,-0.699357,0.509805,-0.963168,1.04646,0.611307,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,0.256825,1.34334,0.682734,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.223815,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,4.23732,-0.503176,0.824313,-0.0664547,-0.3178,1.86137,-0.765594,0.611307,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,-0.308326,-0.699357,1.33741,0.449102,1.04646,-1.29308,2.50135,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,-0.240737,-0.503176,-0.62688,-0.699357,-1.1454,-0.963168,-1.67162,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-0.503176,-0.62688,-0.699357,-1.1454,-0.963168,-0.765594,1.5635,1.79808,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.343721,1.83225,-0.3178,0.449102,1.04646,1.5635,0.127819,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,0.420083,-0.62688,-0.699357,-0.3178,1.86137,0.140434,-1.29308,-0.223815,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,1.34334,0.647339,-0.699357,-1.1454,1.86137,0.140434,1.5635,1.0069,0.4606,2.7577,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,0.420083,2.3463,-0.0664547,0.509805,0.449102,0.140434,-0.340885,-0.399632,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,3.24219,-0.503176,1.14287,1.83225,-0.3178,0.449102,1.04646,1.5635,-0.135906,0.4606,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +0.336345,-0.904152,1.34334,-0.69767,1.83225,0.509805,0.449102,-0.765594,-0.340885,-0.751266,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,0.420083,-0.131351,-0.0664547,1.33741,0.449102,0.140434,1.5635,-0.48754,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,-0.503176,-0.166746,-0.0664547,1.33741,0.449102,1.04646,0.611307,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,0.151809,1.19935,-0.3178,0.449102,0.140434,-0.340885,-0.399632,0.4606,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.489517,1.34334,-0.803855,-0.699357,-0.3178,-2.37544,0.140434,-0.340885,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.489517,-0.503176,-0.237536,-0.0664547,-0.3178,-0.963168,-0.765594,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.256825,-0.503176,-0.131351,-0.0664547,-1.1454,0.449102,-1.67162,0.611307,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,1.34334,0.505759,1.83225,-1.1454,0.449102,0.140434,-1.29308,0.743178,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,-0.503176,-0.343721,-0.699357,0.509805,0.449102,-0.765594,0.611307,-0.663357,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-0.503176,-0.733065,0.566448,-0.3178,0.449102,1.04646,-0.340885,1.27063,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.76846,-0.699357,0.509805,0.449102,0.140434,-1.29308,-0.575449,0.4606,1.02657,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.83925,-0.699357,-1.97301,-0.963168,-0.765594,-0.340885,0.215727,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +1.13149,-0.240737,1.34334,-0.520695,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-1.01499,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.489517,-0.503176,-0.4853,-0.699357,1.33741,0.449102,1.04646,0.611307,0.391544,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.76846,0.566448,-0.3178,-0.963168,1.04646,0.611307,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +-1.25394,2.24707,1.34334,1.07208,-0.699357,1.33741,0.449102,1.04646,1.5635,0.918995,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +0.336345,0.256825,-0.503176,-0.662275,-0.0664547,1.33741,-0.963168,-0.765594,1.5635,1.0069,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,0.754386,0.420083,-0.272931,-0.0664547,1.33741,0.449102,-0.765594,-0.340885,0.479453,-0.956631,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.505605,-0.503176,-0.272931,-0.699357,-1.1454,-0.963168,-1.67162,-0.340885,-0.311723,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,0.718128,0.566448,1.33741,-0.963168,1.04646,1.5635,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,-0.503176,1.17826,-0.0664547,0.509805,0.449102,-0.765594,-0.340885,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.738298,-2.34969,-0.0959558,-0.699357,-1.1454,-0.963168,0.140434,-0.340885,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.987079,-0.503176,-0.733065,-0.699357,1.33741,-0.963168,1.04646,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-0.503176,-0.41451,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.127819,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.240737,1.34334,-0.945435,0.566448,1.33741,0.449102,0.140434,-0.340885,-0.311723,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-1.23586,-1.42644,-0.733065,-0.699357,1.33741,-0.963168,1.04646,1.5635,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.00804391,-0.503176,-0.272931,1.83225,1.33741,0.449102,1.04646,-1.29308,0.918995,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.987079,1.34334,-0.76846,-0.699357,-0.3178,0.449102,1.04646,-1.29308,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,3.24219,-0.503176,3.79749,-0.699357,0.509805,0.449102,-0.765594,1.5635,-0.751266,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,0.754386,1.34334,1.53221,1.83225,1.33741,0.449102,1.04646,0.611307,2.41344,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.754386,1.34334,-0.0605608,1.83225,1.33741,0.449102,-0.765594,0.611307,0.391544,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,-0.62688,-0.699357,-0.3178,0.449102,-0.765594,1.5635,-0.311723,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +0.336345,0.256825,1.34334,-0.0605608,1.83225,-0.3178,0.449102,-0.765594,0.611307,-0.399632,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.074883,-2.34969,1.00129,-0.0664547,1.33741,1.86137,1.04646,0.611307,-0.399632,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.987079,-2.34969,-0.69767,-0.699357,-1.1454,0.449102,-0.765594,0.611307,-0.135906,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-0.458797,-1.23586,-1.42644,-1.01622,1.19935,-1.1454,-0.963168,-0.765594,-0.340885,-1.01499,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-0.503176,-0.733065,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,-0.987079,-0.503176,-0.874645,0.566448,-0.3178,-0.963168,0.140434,-1.29308,2.67716,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.505605,-0.503176,-0.237536,-0.699357,-0.3178,-0.963168,0.140434,-1.29308,-1.27872,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-1.23586,1.34334,-1.08701,1.19935,-0.3178,-0.963168,-0.765594,-1.29308,0.479453,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.489517,1.34334,-0.69767,0.566448,-0.3178,1.86137,-0.765594,-0.340885,1.0069,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.240737,-0.503176,-0.4853,-0.699357,-0.3178,-0.963168,1.04646,0.611307,-0.927083,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,2.24707,-1.42644,1.10747,-0.699357,1.33741,-0.963168,0.140434,1.5635,2.06181,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +0.336345,0.256825,1.34334,-0.69767,1.19935,-0.3178,-2.37544,1.04646,-1.29308,0.0399104,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,0.420083,1.10747,-0.699357,-1.1454,0.449102,-0.765594,0.611307,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,-0.449905,-0.699357,-0.3178,0.449102,1.04646,-1.29308,-1.27872,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +-0.458797,-1.07001,-0.503176,-0.874645,-0.699357,0.509805,-0.963168,-0.765594,-1.29308,0.743178,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,-0.503176,-0.237536,1.19935,-0.3178,-0.963168,1.04646,0.611307,-0.663357,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-1.40171,1.34334,0.0456241,-0.699357,0.509805,-0.963168,-1.67162,-1.29308,0.127819,0.4606,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.25195,-1.42644,0.257994,1.83225,-1.1454,-0.963168,-0.765594,1.5635,-0.575449,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +-0.458797,0.256825,-0.503176,2.94801,-0.699357,-0.3178,-0.963168,1.04646,0.611307,-1.1029,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,1 +-1.25394,-0.240737,-0.503176,0.399574,-0.0664547,-0.3178,0.449102,1.04646,0.611307,-0.047998,0.4606,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-1.23586,1.34334,1.24905,-0.699357,0.509805,0.449102,0.140434,1.5635,0.831087,0.4606,1.02657,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,0.754386,-2.34969,0.364179,-0.0664547,-0.3178,-0.963168,1.04646,0.611307,-0.839174,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +-1.25394,0.256825,-1.42644,-0.343721,-0.0664547,0.509805,0.449102,0.140434,0.611307,-0.311723,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.904152,-1.42644,-0.803855,-0.699357,-0.3178,0.449102,1.04646,-1.29308,-1.1029,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.00804391,-0.503176,-0.0251658,1.83225,1.33741,0.449102,0.140434,-0.340885,0.479453,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-1.42644,-0.272931,0.566448,-0.3178,0.449102,1.04646,-1.29308,-1.19081,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.50073,1.34334,3.86828,1.83225,0.509805,0.449102,1.04646,-0.340885,-0.48754,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.655371,1.34334,-0.520695,-0.699357,-1.1454,0.449102,-1.67162,-0.340885,-0.663357,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.489517,-0.503176,-0.272931,-0.699357,-1.97301,-0.963168,1.04646,0.611307,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.69767,-0.699357,-1.1454,-0.963168,-1.67162,-1.29308,0.127819,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,0.00804391,-0.503176,0.682734,1.83225,-0.3178,0.449102,0.140434,0.611307,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,-0.0959558,-0.699357,0.509805,0.449102,-0.765594,0.611307,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,-0.503176,-1.01622,-0.699357,1.33741,-0.963168,-1.67162,-0.340885,1.18272,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,-0.803855,-0.699357,-1.1454,-0.963168,-0.765594,0.611307,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,-0.738298,-0.503176,-0.874645,-0.0664547,0.509805,-0.963168,1.04646,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,0.754386,1.34334,0.895103,-0.699357,0.509805,-0.963168,-0.765594,0.611307,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,0.420083,-0.591485,1.19935,1.33741,0.449102,1.04646,1.5635,1.71017,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,-0.69767,1.83225,0.509805,-0.963168,1.04646,1.5635,-0.311723,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +0.336345,-1.23586,1.34334,-0.69767,-0.699357,-0.3178,0.449102,-1.67162,-1.29308,3.38043,0.4606,2.7577,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +0.336345,-0.489517,1.34334,-0.69767,1.83225,-0.3178,0.449102,1.04646,1.5635,0.303636,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-0.503176,-0.662275,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.399632,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,1.34334,-0.91004,-0.699357,1.33741,0.449102,0.140434,-0.340885,-0.047998,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.489517,1.34334,0.611944,1.83225,1.33741,-0.963168,1.04646,0.611307,2.06181,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,1.34334,-0.41451,-0.699357,-0.3178,-0.963168,1.04646,-1.29308,-1.01499,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-0.503176,-0.379115,-0.699357,-0.3178,0.449102,0.140434,-0.340885,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.00804391,1.34334,3.33736,1.83225,1.33741,0.449102,1.04646,1.5635,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,0.256825,1.34334,-0.272931,-0.0664547,0.509805,1.86137,0.140434,-0.340885,-0.751266,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,-0.733065,-0.699357,1.33741,1.86137,0.140434,-1.29308,0.391544,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.754386,-0.503176,-0.0605608,-0.699357,-1.1454,-2.37544,1.04646,-0.340885,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,-0.904152,-0.503176,-0.131351,1.83225,-1.1454,-0.963168,1.04646,-1.29308,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,1.34334,0.116414,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.663357,0.4606,2.7577,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.55609,-0.699357,1.33741,0.449102,1.04646,-1.29308,2.41344,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,-0.503176,-0.166746,1.83225,1.33741,-0.963168,1.04646,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,1.25195,1.34334,1.70919,-0.699357,-0.3178,-0.963168,-0.765594,1.5635,-0.927083,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,0.00804391,1.34334,0.0102291,-0.699357,1.33741,0.449102,1.04646,0.611307,0.0399104,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,0.256825,1.34334,-0.379115,-0.0664547,1.33741,0.449102,1.04646,-0.340885,1.44645,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.738298,1.34334,-0.62688,0.566448,-1.97301,0.449102,1.04646,1.5635,2.67716,-2.37386,2.7577,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,6.66409,-0.49975,-1.30422,0 +-1.25394,0.256825,-0.503176,-0.662275,1.83225,-0.3178,-0.963168,1.04646,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,1.34334,0.0810191,-0.699357,0.509805,0.449102,1.04646,0.611307,0.127819,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,0.0810191,-0.699357,0.509805,-0.963168,-1.67162,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,1.34334,0.859708,1.19935,1.33741,0.449102,-0.765594,0.611307,0.215727,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.240737,-0.503176,0.222599,-0.699357,-1.97301,-0.963168,1.04646,0.611307,2.76507,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.50073,1.34334,0.576549,-0.699357,0.509805,0.449102,-0.765594,-1.29308,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,-0.4853,1.19935,1.33741,0.449102,1.04646,-1.29308,2.14971,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-2.34969,-0.662275,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.399632,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.738298,-0.503176,-0.874645,-0.0664547,-1.1454,-0.963168,-0.765594,-0.340885,-1.1029,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,-0.074883,-0.503176,1.14287,1.83225,-1.97301,-2.37544,1.04646,-1.29308,2.14971,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.240737,-0.503176,-0.4853,1.19935,-0.3178,0.449102,-0.765594,-0.340885,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.0909708,-0.503176,-0.202141,0.566448,1.33741,0.449102,1.04646,0.611307,0.391544,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,2.24707,1.34334,-0.166746,1.83225,1.33741,0.449102,0.140434,0.611307,0.215727,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,0.420083,1.03668,-0.699357,1.33741,0.449102,1.04646,1.5635,1.27063,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,1.58365,1.34334,0.965893,-0.699357,-0.3178,0.449102,0.140434,1.5635,-0.751266,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,0.00804391,-0.503176,-0.733065,-0.699357,1.33741,-0.963168,1.04646,-0.340885,0.303636,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-0.503176,1.07208,1.83225,1.33741,0.449102,1.04646,0.611307,0.479453,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-1.23586,1.34334,-0.733065,1.83225,-0.3178,1.86137,-0.765594,-0.340885,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,0.256825,-0.503176,-0.131351,-0.699357,1.33741,-2.37544,1.04646,1.5635,1.35854,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.0605608,0.566448,1.33741,0.449102,0.140434,1.5635,-0.311723,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.987079,-0.503176,-0.343721,-0.0664547,-1.1454,-0.963168,1.04646,-0.340885,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,1.49682,1.83225,1.33741,0.449102,1.04646,-0.340885,1.35854,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,1.34334,-0.69767,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.19081,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,0.420083,-0.91004,1.83225,1.33741,1.86137,1.04646,0.611307,1.62226,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.987079,-0.503176,-0.62688,1.83225,-1.1454,0.449102,-0.765594,-1.29308,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +1.13149,0.256825,1.34334,-0.591485,-0.699357,1.33741,0.449102,1.04646,1.5635,1.62226,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,1.34334,-0.520695,-0.699357,1.33741,-0.963168,1.04646,-1.29308,1.09481,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,-0.074883,1.34334,0.364179,-0.699357,1.33741,-0.963168,1.04646,-0.340885,-1.01499,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.803855,1.83225,1.33741,0.449102,1.04646,0.611307,-0.047998,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.738298,-0.503176,1.49682,1.83225,-1.97301,-0.963168,-0.765594,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,6.66409,-0.49975,-1.30422,0 +-1.25394,1.25195,-0.503176,2.13393,-0.699357,0.509805,0.449102,-1.67162,0.611307,-1.01499,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-1.23586,-0.503176,-0.945435,-0.699357,-1.1454,1.86137,0.140434,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.738298,1.34334,-0.83925,1.83225,1.33741,0.449102,1.04646,-1.29308,2.58926,0.4606,4.48884,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,1.74951,-1.42644,2.13393,-0.699357,-1.97301,0.449102,-0.765594,1.5635,1.71017,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,-0.489517,-2.34969,-0.520695,-0.699357,-1.1454,-0.963168,-1.67162,-1.29308,-0.839174,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,6.66409,-0.49975,-1.30422,1 +-0.458797,-1.07001,-0.503176,-0.83925,-0.699357,-1.1454,1.86137,-0.765594,-1.29308,-0.839174,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-1.23586,-0.503176,-0.98083,-0.699357,0.509805,1.86137,0.140434,-1.29308,-0.663357,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,1.25195,1.34334,2.24011,-0.699357,0.509805,0.449102,1.04646,0.611307,-1.01499,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,2.24707,-0.503176,-0.0605608,-0.699357,-0.3178,0.449102,1.04646,0.611307,1.62226,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,2.24707,-0.503176,0.222599,-0.699357,0.509805,0.449102,1.04646,1.5635,0.918995,0.4606,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,1.25195,0.420083,1.46142,-0.699357,-0.3178,-0.963168,-0.765594,-0.340885,1.62226,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,-0.503176,-0.69767,0.566448,-0.3178,-2.37544,1.04646,-1.29308,2.32553,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,1.34334,-0.591485,-0.699357,0.509805,-0.963168,-0.765594,0.611307,-1.01499,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,1.25195,-0.503176,4.46999,-0.699357,-1.97301,-2.37544,0.140434,0.611307,0.65527,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.240737,-0.503176,-0.69767,-0.699357,-0.3178,1.86137,0.140434,-1.29308,-0.839174,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,-0.503176,-0.76846,-0.699357,-0.3178,1.86137,-0.765594,-1.29308,-0.751266,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.738298,-0.503176,-0.0959558,-0.699357,-0.3178,1.86137,-1.67162,0.611307,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.25195,-0.503176,-0.202141,-0.699357,1.33741,0.449102,-0.765594,-0.340885,0.479453,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-1.07001,1.34334,-0.91004,-0.699357,1.33741,0.449102,1.04646,-1.29308,1.0069,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.240737,1.34334,0.187204,-0.699357,-1.1454,-2.37544,-0.765594,0.611307,-0.047998,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,0.00804391,1.34334,-0.591485,-0.699357,1.33741,1.86137,0.140434,0.611307,-0.48754,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,1.34334,0.257994,-0.699357,1.33741,-0.963168,1.04646,-1.29308,-0.223815,-2.37386,2.7577,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.240737,-2.34969,0.328784,-0.699357,-0.3178,0.449102,-0.765594,0.611307,0.0399104,-0.956631,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,1.25195,-0.503176,1.77998,1.83225,1.33741,0.449102,1.04646,1.5635,1.0069,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,2.24707,0.420083,1.21366,1.83225,-0.3178,0.449102,1.04646,1.5635,0.215727,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,0.420083,-0.308326,0.566448,-0.3178,0.449102,-0.765594,0.611307,0.743178,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,-0.733065,-0.699357,-1.1454,-0.963168,0.140434,0.611307,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-1.25394,1.99829,-2.34969,3.0188,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.575449,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,-0.503176,0.647339,1.83225,1.33741,-0.963168,1.04646,0.611307,0.567361,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-0.489517,-0.503176,-0.343721,-0.699357,-1.1454,-0.963168,0.140434,-1.29308,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,-0.738298,-2.34969,-0.76846,-0.699357,-0.3178,0.449102,1.04646,0.611307,1.09481,-2.37386,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,-0.503176,-0.83925,1.83225,-0.3178,-0.963168,-0.765594,0.611307,-1.27872,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.40171,-0.503176,-0.945435,-0.699357,-1.1454,-0.963168,0.140434,-1.29308,-1.1029,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,1.34334,-0.0959558,-0.699357,1.33741,0.449102,1.04646,-0.340885,2.41344,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,1.34334,-0.237536,-0.699357,1.33741,1.86137,0.140434,-1.29308,0.918995,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.25195,-0.503176,0.682734,-0.699357,0.509805,0.449102,-0.765594,-0.340885,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.00804391,0.420083,-0.0959558,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.663357,-0.956631,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.240737,-0.503176,-0.4853,-0.699357,-1.1454,-0.963168,1.04646,-1.29308,-1.1029,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-1.42644,-0.591485,-0.699357,0.509805,0.449102,1.04646,0.611307,1.27063,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,0.0456241,-0.699357,1.33741,0.449102,1.04646,-0.340885,1.0069,-2.37386,2.7577,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.00804391,-0.503176,0.257994,1.83225,0.509805,0.449102,0.140434,0.611307,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,-0.503176,1.24905,1.83225,-0.3178,0.449102,1.04646,0.611307,2.85298,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,-0.503176,-0.733065,-0.699357,-1.1454,1.86137,-0.765594,-1.29308,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.987079,-0.503176,-0.662275,-0.699357,0.509805,0.449102,1.04646,-1.29308,2.06181,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.91004,-0.699357,1.33741,0.449102,1.04646,-1.29308,1.88599,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-1.25394,-0.074883,1.34334,-0.379115,-0.699357,-0.3178,1.86137,-0.765594,-0.340885,-0.223815,-2.37386,1.02657,-0.428075,-0.822906,5.09912,1.80838,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,0.257994,1.83225,0.509805,0.449102,1.04646,-0.340885,0.65527,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,1.34334,-0.62688,-0.699357,-0.3178,0.449102,1.04646,1.5635,-0.047998,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-1.42644,-0.662275,-0.699357,0.509805,0.449102,1.04646,1.5635,-0.311723,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,1.999,-1.30422,1 +1.13149,1.25195,0.420083,2.70025,-0.699357,1.33741,0.449102,-0.765594,0.611307,0.831087,0.4606,1.02657,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.62688,-0.0664547,-1.1454,1.86137,0.140434,-1.29308,-0.223815,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.904152,-0.503176,-0.83925,1.83225,0.509805,-0.963168,0.140434,-0.340885,0.391544,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,1.34334,0.0102291,-0.699357,-0.3178,0.449102,-0.765594,1.5635,-0.663357,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.489517,-0.503176,0.257994,-0.699357,-0.3178,-0.963168,-0.765594,-0.340885,-0.575449,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.987079,-0.503176,0.116414,-0.0664547,-0.3178,0.449102,-0.765594,-1.29308,-0.839174,0.4606,-0.704573,2.3337,-0.822906,5.09912,1.80838,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,1.34334,0.895103,1.19935,-0.3178,0.449102,-0.765594,-1.29308,-0.751266,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,0.420083,-0.379115,-0.699357,-0.3178,1.86137,-0.765594,0.611307,-0.663357,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,-0.308326,-0.699357,-1.1454,-0.963168,1.04646,-1.29308,-0.047998,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.505605,1.34334,0.434969,1.19935,-1.1454,0.449102,-0.765594,-1.29308,-0.311723,-0.956631,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.904152,-0.503176,-0.379115,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.927083,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,1 +1.13149,-0.489517,-0.503176,-0.379115,0.566448,-0.3178,-0.963168,1.04646,0.611307,-1.36663,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-0.503176,-0.308326,-0.699357,-1.1454,-0.963168,-1.67162,0.611307,-0.751266,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,0.0102291,-0.699357,1.33741,0.449102,1.04646,-0.340885,0.567361,-0.956631,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,-0.503176,1.46142,1.83225,1.33741,0.449102,-0.765594,-0.340885,0.127819,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.91004,-0.699357,1.33741,-0.963168,1.04646,-0.340885,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,0.420083,1.56761,0.566448,0.509805,-0.963168,1.04646,0.611307,0.391544,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,-1.23586,1.34334,-0.69767,-0.699357,1.33741,0.449102,1.04646,-1.29308,0.918995,0.4606,1.02657,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,1.34334,-0.662275,-0.0664547,0.509805,0.449102,-1.67162,-1.29308,-0.839174,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,-0.83925,1.83225,-1.1454,-0.963168,-1.67162,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,0.116414,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,-0.575449,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.821225,1.34334,-0.69767,1.19935,-0.3178,-0.963168,1.04646,0.611307,0.391544,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.240737,-1.42644,-0.4853,-0.699357,-1.1454,0.449102,1.04646,1.5635,0.0399104,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,1.25195,-0.503176,0.116414,-0.699357,1.33741,0.449102,-0.765594,0.611307,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.987079,-0.503176,-0.662275,-0.699357,-1.1454,0.449102,-0.765594,1.5635,-0.751266,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,0.754386,1.34334,1.21366,1.83225,0.509805,0.449102,0.140434,-0.340885,0.0399104,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,1.603,-0.699357,0.509805,0.449102,0.140434,0.611307,0.215727,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,0.256825,-0.503176,2.13393,1.83225,-0.3178,-2.37544,1.04646,1.5635,1.09481,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,0.754386,1.34334,-0.379115,1.83225,1.33741,0.449102,1.04646,-1.29308,0.0399104,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,-0.76846,-0.699357,-1.97301,-0.963168,1.04646,0.611307,2.58926,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +-0.458797,0.256825,-0.503176,0.293389,-0.699357,0.509805,-2.37544,0.140434,0.611307,0.65527,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-0.503176,-0.874645,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,1.53435,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,1.34334,-0.166746,1.83225,0.509805,0.449102,0.140434,1.5635,-0.135906,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,-0.503176,4.3992,-0.699357,-0.3178,0.449102,-0.765594,0.611307,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,1.34334,1.17826,-0.699357,1.33741,0.449102,1.04646,0.611307,-0.135906,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,0.588532,-1.42644,1.603,1.83225,-1.1454,0.449102,1.04646,-1.29308,0.391544,-2.37386,1.02657,2.3337,1.21399,-0.195916,-0.552429,2.94958,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,0.505605,1.34334,-0.308326,-0.699357,1.33741,0.449102,1.04646,0.611307,0.65527,-0.956631,4.48884,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.489517,1.34334,-0.520695,-0.699357,1.33741,0.449102,1.04646,0.611307,0.918995,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,1.34334,-0.379115,-0.699357,-0.3178,0.449102,1.04646,-0.340885,0.215727,-2.37386,1.02657,-0.428075,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,1.25195,1.34334,0.895103,-0.699357,-0.3178,0.449102,1.04646,0.611307,-0.135906,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.240737,1.34334,-0.733065,1.83225,-0.3178,0.449102,0.140434,-0.340885,-0.575449,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,0.420083,1.99235,1.83225,0.509805,0.449102,-0.765594,0.611307,-0.399632,-0.956631,-0.704573,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,0.00804391,-0.503176,-0.237536,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-0.663357,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,1.34334,-0.591485,1.19935,0.509805,-0.963168,-0.765594,-0.340885,-0.047998,0.4606,-0.704573,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,-0.379115,1.83225,0.509805,-0.963168,1.04646,-1.29308,-0.223815,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,-0.240737,-0.503176,0.328784,-0.699357,-0.3178,0.449102,0.140434,0.611307,0.567361,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.406591,1.34334,-0.237536,-0.699357,1.33741,0.449102,1.04646,-0.340885,0.65527,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.074883,1.34334,0.0810191,1.83225,-1.1454,-2.37544,1.04646,-1.29308,0.743178,0.4606,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,1.25195,1.34334,2.55867,1.83225,1.33741,0.449102,1.04646,1.5635,0.567361,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,-0.662275,1.83225,-0.3178,1.86137,-0.765594,-1.29308,0.391544,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.69767,-0.699357,1.33741,0.449102,-1.67162,-1.29308,0.0399104,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.738298,-0.503176,-0.76846,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-1.36663,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +-1.25394,0.00804391,-0.503176,0.187204,1.83225,0.509805,0.449102,-0.765594,-1.29308,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,5.09912,1.80838,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,1.25195,-0.503176,0.151809,1.83225,-0.3178,1.86137,-0.765594,0.611307,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,0.420083,0.116414,-0.699357,-1.1454,-0.963168,-0.765594,-0.340885,0.918995,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.987079,-0.503176,-0.0251658,1.83225,-0.3178,-0.963168,-0.765594,-1.29308,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,1.25195,0.420083,0.434969,-0.699357,-0.3178,-0.963168,1.04646,-1.29308,-0.135906,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.256825,1.34334,0.505759,-0.699357,-1.1454,-0.963168,1.04646,0.611307,-0.927083,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,0.754386,-0.503176,-0.0959558,1.83225,1.33741,-0.963168,1.04646,0.611307,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.821225,-0.503176,-0.41451,1.19935,1.33741,-2.37544,-0.765594,-1.29308,-0.663357,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-1.42644,-0.0251658,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,-0.399632,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,2.24707,-2.34969,5.35487,-0.699357,-0.3178,-0.963168,-0.765594,-0.340885,-0.311723,-2.37386,-0.704573,-0.428075,1.21399,5.09912,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.904152,-0.503176,-0.166746,-0.0664547,-0.3178,0.449102,-0.765594,-1.29308,-0.311723,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,2.94958,-3.12137,4.83393,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-1.23586,-0.503176,4.11605,-0.699357,1.33741,0.449102,1.04646,1.5635,2.85298,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-1.25394,0.256825,-0.503176,-0.308326,-0.0664547,-1.97301,-2.37544,-1.67162,-0.340885,-0.223815,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,0.256825,-0.503176,0.0102291,-0.699357,1.33741,0.449102,-0.765594,-0.340885,0.303636,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,1 +1.13149,-0.240737,1.34334,-0.520695,-0.699357,-0.3178,-0.963168,-0.765594,1.5635,-0.663357,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,2.24707,0.420083,3.33736,0.566448,0.509805,0.449102,-1.67162,0.611307,0.127819,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,-0.987079,-0.503176,-0.662275,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.738298,-0.503176,-0.449905,-0.699357,0.509805,0.449102,1.04646,-0.340885,-0.48754,0.4606,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-1.42644,1.28445,-0.699357,-1.1454,-2.37544,-1.67162,-0.340885,1.71017,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.738298,-1.42644,-0.91004,-0.699357,-1.1454,0.449102,-0.765594,0.611307,0.918995,-2.37386,1.02657,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-1.25394,-0.240737,1.34334,-0.803855,-0.699357,-1.1454,-0.963168,1.04646,-0.340885,-1.27872,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,2.24707,-0.503176,2.48788,-0.699357,0.509805,0.449102,1.04646,1.5635,0.303636,-0.956631,2.7577,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.754386,-0.503176,-0.4853,1.83225,1.33741,0.449102,1.04646,0.611307,1.9739,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,0.420083,-0.69767,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.65527,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,-0.503176,-0.55609,-0.699357,-1.1454,0.449102,-1.67162,-0.340885,-1.01499,0.4606,-0.704573,-0.428075,-0.822906,5.09912,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.987079,-0.503176,-0.55609,-0.699357,-1.1454,-0.963168,-0.765594,0.611307,-1.19081,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,-0.987079,1.34334,-0.733065,-0.699357,-0.3178,0.449102,-1.67162,-1.29308,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,1.34334,-0.98083,0.566448,1.33741,0.449102,1.04646,-0.340885,0.567361,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.738298,-0.503176,-0.62688,-0.699357,-0.3178,-0.963168,-1.67162,0.611307,-1.1029,-2.37386,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.754386,0.420083,-0.4853,-0.0664547,-1.1454,0.449102,0.140434,1.5635,-0.48754,-0.956631,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +0.336345,-0.987079,-0.503176,-0.91004,-0.699357,-0.3178,-0.963168,-0.765594,-1.29308,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,-1.23586,-0.503176,-0.41451,-0.699357,-1.1454,1.86137,0.140434,0.611307,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,3.24219,-0.503176,1.07208,-0.699357,-0.3178,0.449102,1.04646,1.5635,0.567361,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,1.24905,1.83225,-0.3178,0.449102,1.04646,-0.340885,0.918995,0.4606,1.02657,2.3337,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,-0.503176,0.0810191,1.83225,-1.1454,0.449102,0.140434,-0.340885,0.831087,0.4606,-0.704573,2.3337,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.904152,-0.503176,-0.62688,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,-0.399632,0.4606,-0.704573,2.3337,-0.822906,5.09912,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,0.256825,-0.503176,-0.83925,1.83225,0.509805,0.449102,-0.765594,0.611307,-0.399632,-0.956631,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-1.40171,1.34334,-0.62688,-0.699357,0.509805,0.449102,-1.67162,-1.29308,0.567361,0.4606,2.7577,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.489517,-0.503176,-0.520695,-0.699357,-1.1454,-0.963168,-1.67162,-0.340885,0.918995,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,2.24707,-2.34969,1.81537,0.566448,-1.1454,-0.963168,-1.67162,0.611307,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-1.42644,0.0102291,0.566448,-1.1454,0.449102,1.04646,1.5635,-0.48754,0.4606,-0.704573,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,-0.738298,-0.503176,-0.131351,1.83225,-1.97301,0.449102,1.04646,1.5635,0.215727,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.240737,-0.503176,-0.62688,-0.699357,-1.1454,1.86137,-1.67162,-0.340885,0.65527,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,0.256825,-0.503176,0.116414,-0.0664547,1.33741,0.449102,1.04646,0.611307,-0.399632,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-0.240737,1.34334,0.116414,-0.699357,-1.97301,1.86137,0.140434,0.611307,0.391544,0.4606,2.7577,2.3337,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,6.66409,-0.49975,-1.30422,0 +-1.25394,1.25195,0.420083,-0.41451,-0.699357,0.509805,0.449102,-1.67162,0.611307,-1.01499,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,0.256825,-0.503176,0.293389,0.566448,-1.1454,-0.963168,1.04646,0.611307,-0.663357,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,1.25195,-0.503176,2.73564,-0.699357,-1.97301,-0.963168,-0.765594,0.611307,-0.839174,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,1 +-1.25394,-0.738298,-0.503176,-0.4853,-0.699357,-0.3178,-0.963168,1.04646,-0.340885,-0.575449,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,1.34334,-0.733065,1.19935,1.33741,-0.963168,1.04646,-0.340885,1.88599,0.4606,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +0.336345,0.754386,1.34334,0.151809,1.83225,1.33741,0.449102,1.04646,-0.340885,1.18272,-0.956631,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.987079,1.34334,-0.733065,-0.699357,1.33741,0.449102,1.04646,-1.29308,0.127819,0.4606,2.7577,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.588532,-0.503176,0.257994,-0.699357,-0.3178,0.449102,-0.765594,0.611307,0.831087,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,0.256825,-0.503176,-0.0605608,-0.0664547,1.33741,0.449102,1.04646,1.5635,-0.48754,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,0 +1.13149,-1.23586,1.34334,-0.55609,-0.699357,1.33741,1.86137,-0.765594,-1.29308,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-0.458797,0.00804391,0.420083,-0.308326,-0.699357,-0.3178,-2.37544,1.04646,-0.340885,1.0069,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.489517,-0.503176,0.116414,1.83225,-0.3178,0.449102,-0.765594,1.5635,-0.575449,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,-0.308326,0.566448,1.33741,0.449102,-0.765594,0.611307,-0.047998,-2.37386,1.02657,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +-0.458797,-1.23586,-0.503176,-0.98083,-0.699357,-1.1454,1.86137,-1.67162,-0.340885,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,0.754386,-0.503176,-0.55609,1.83225,-0.3178,-0.963168,-1.67162,0.611307,-0.839174,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,0.505605,1.34334,-0.272931,0.566448,-0.3178,0.449102,-0.765594,-0.340885,-1.1029,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +1.13149,-0.489517,-0.503176,0.116414,-0.699357,1.33741,-0.963168,-0.765594,0.611307,1.62226,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,0 +1.13149,1.74951,-0.503176,1.39063,1.83225,0.509805,1.86137,1.04646,-0.340885,-0.575449,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +-1.25394,-0.821225,1.34334,0.222599,-0.699357,-0.3178,0.449102,-0.765594,-1.29308,0.391544,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-0.489517,-0.503176,-0.62688,-0.0664547,-0.3178,0.449102,-0.765594,-1.29308,-1.19081,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,-0.503176,1.46142,-0.699357,-0.3178,0.449102,1.04646,-0.340885,0.65527,0.4606,-0.704573,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.256825,-1.42644,-0.733065,-0.699357,-1.97301,-0.963168,1.04646,1.5635,-0.575449,0.4606,1.02657,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,-3.12137,4.83393,2.14056,-1.57538,6.66409,-0.49975,-1.30422,1 +-1.25394,3.24219,-0.503176,1.42603,-0.699357,1.33741,0.449102,1.04646,1.5635,0.0399104,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,4.83393,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +1.13149,0.754386,1.34334,-0.166746,-0.699357,-0.3178,-0.963168,-0.765594,0.611307,-0.223815,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +0.336345,0.256825,-0.503176,-0.69767,0.566448,-0.3178,-0.963168,0.140434,0.611307,1.88599,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-0.458797,-1.23586,-0.503176,-0.874645,-0.699357,-0.3178,-0.963168,0.140434,-1.29308,2.50135,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,-3.12137,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-0.458797,-0.240737,0.420083,-0.308326,1.83225,1.33741,0.449102,-0.765594,-0.340885,0.567361,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,0.256825,0.420083,-0.272931,-0.699357,1.33741,0.449102,1.04646,0.611307,1.0069,0.4606,1.02657,2.3337,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,1 +-0.458797,-0.489517,-1.42644,-0.69767,-0.0664547,-0.3178,1.86137,-0.765594,-0.340885,-0.927083,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,1.80838,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,0.754386,1.34334,1.81537,-0.699357,0.509805,0.449102,-0.765594,-0.340885,1.18272,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,2.24707,-0.503176,0.541154,-0.699357,-1.97301,0.449102,-0.765594,0.611307,-0.223815,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,-1.30422,1 +0.336345,0.00804391,-0.503176,-0.131351,-0.0664547,-0.3178,-0.963168,-1.67162,0.611307,-0.663357,-2.37386,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +-1.25394,1.25195,-0.503176,1.74458,-0.699357,-0.3178,0.449102,-0.765594,-0.340885,-0.839174,0.4606,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,1 +1.13149,0.256825,1.34334,-0.449905,-0.699357,0.509805,0.449102,-0.765594,-0.340885,-0.48754,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.489517,1.34334,-0.662275,-0.699357,-0.3178,-0.963168,0.140434,-0.340885,-0.927083,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,-0.49975,0.765973,0 +0.336345,1.74951,-2.34969,1.07208,-0.699357,-1.1454,-2.37544,-1.67162,-0.340885,-0.223815,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.655371,-0.503176,-0.662275,-0.0664547,-1.97301,-0.963168,1.04646,-1.29308,2.50135,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,0.256825,-0.503176,1.17826,-0.699357,-1.97301,0.449102,-0.765594,1.5635,-0.575449,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,-1.30422,0 +-0.458797,0.256825,1.34334,-0.55609,-0.699357,1.33741,0.449102,-0.765594,-0.340885,1.09481,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.738298,1.34334,0.116414,1.83225,-1.1454,0.449102,-1.67162,-0.340885,0.127819,0.4606,1.02657,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +1.13149,-0.489517,-1.42644,-0.591485,-0.0664547,1.33741,0.449102,1.04646,0.611307,-0.135906,-2.37386,-0.704573,2.3337,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,-0.240737,-0.503176,-0.4853,1.83225,0.509805,1.86137,1.04646,0.611307,-1.1029,0.4606,1.02657,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,2.14056,-1.57538,-0.149908,1.999,-1.30422,0 +-1.25394,1.25195,-0.503176,0.257994,-0.699357,-1.97301,0.449102,0.140434,-0.340885,-0.48754,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.308326,1.83225,1.33741,0.449102,0.140434,0.611307,1.27063,0.4606,-0.704573,-0.428075,1.21399,-0.195916,1.80838,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +1.13149,-0.738298,-0.503176,-0.55609,-0.699357,0.509805,-0.963168,1.04646,-1.29308,-0.399632,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,1.999,-1.30422,0 +-1.25394,0.754386,-0.503176,0.222599,-0.699357,-0.3178,-2.37544,1.04646,-0.340885,0.391544,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,-1.30422,0 +1.13149,-0.738298,-0.503176,-0.874645,-0.699357,1.33741,0.449102,1.04646,0.611307,0.215727,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 +-1.25394,1.99829,-0.503176,-0.520695,-0.699357,-0.3178,0.449102,1.04646,1.5635,-1.1029,0.4606,-0.704573,-0.428075,1.21399,-0.195916,-0.552429,-0.338692,0.320052,-0.206664,-0.4667,-1.57538,-0.149908,-0.49975,0.765973,1 +-0.458797,1.99829,1.34334,0.470364,-0.0664547,-1.97301,0.449102,1.04646,0.611307,-0.751266,0.4606,-0.704573,-0.428075,-0.822906,-0.195916,-0.552429,2.94958,0.320052,-0.206664,-0.4667,0.634131,-0.149908,-0.49975,0.765973,0 diff --git a/data/statlog-heart.arff b/data/statlog-heart.arff new file mode 100755 index 0000000..7efb9cc --- /dev/null +++ b/data/statlog-heart.arff @@ -0,0 +1,286 @@ +@relation statlog-heart +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'clase' {0,1} +@data +1.70892,0.688222,0.869313,-0.0752701,1.39961,-0.416256,0.979844,-1.75595,-0.699923,1.17882,0.675165,2.4681,-0.874083,1 +1.37958,-1.44764,-0.183219,-0.91506,6.08171,-0.416256,0.979844,0.445582,-0.699923,0.480261,0.675165,-0.710216,1.18707,0 +0.281771,0.688222,-1.23575,-0.411186,0.219415,-0.416256,-1.02438,-0.374596,-0.699923,-0.654902,-0.952466,-0.710216,1.18707,1 +1.05024,0.688222,0.869313,-0.187242,0.25811,-0.416256,-1.02438,-1.92862,1.42344,-0.742222,0.675165,0.349222,1.18707,0 +2.14804,-1.44764,-1.23575,-0.63513,0.374195,-0.416256,0.979844,-1.23794,1.42344,-0.742222,-0.952466,0.349222,-0.874083,0 +1.16002,0.688222,0.869313,-0.63513,-1.40578,-0.416256,-1.02438,-0.417763,-0.699923,-0.567582,-0.952466,-0.710216,1.18707,0 +0.17199,0.688222,-0.183219,-0.0752701,0.122678,2.39347,0.979844,-0.331428,1.42344,-0.392941,0.675165,0.349222,0.671784,1 +0.501332,0.688222,0.869313,-1.19499,-0.20623,-0.416256,0.979844,-0.331428,1.42344,0.13098,0.675165,0.349222,1.18707,1 +0.611113,0.688222,0.869313,0.48459,0.838535,-0.416256,0.979844,0.877254,-0.699923,0.13098,0.675165,1.40866,1.18707,1 +0.940455,-1.44764,0.869313,1.04445,3.04415,-0.416256,0.979844,0.186578,-0.699923,2.57595,0.675165,2.4681,1.18707,1 +0.501332,0.688222,0.869313,0.20466,-0.302968,-0.416256,-1.02438,0.488749,-0.699923,-0.480261,0.675165,-0.710216,1.18707,0 +-0.157352,0.688222,0.869313,0.596562,-0.457748,-0.416256,0.979844,-1.66961,1.42344,-0.916863,-0.952466,-0.710216,1.18707,0 +-1.14538,0.688222,-0.183219,0.48459,-0.28362,-0.416256,0.979844,1.30893,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.720893,0.688222,-2.28828,0.148674,-0.302968,-0.416256,-1.02438,-0.201927,-0.699923,1.35346,0.675165,1.40866,-0.874083,1 +0.281771,-1.44764,0.869313,-0.187242,1.03201,-0.416256,0.979844,0.402415,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,0 +1.8187,-1.44764,0.869313,-1.08302,-1.94751,-0.416256,-1.02438,-1.06527,-0.699923,0.480261,0.675165,-0.710216,-0.874083,0 +-0.925818,0.688222,0.869313,0.48459,1.18679,-0.416256,-1.02438,-1.28111,1.42344,0.654902,0.675165,1.40866,1.18707,1 +-0.157352,0.688222,0.869313,0.48459,-0.90274,2.39347,0.979844,0.229746,1.42344,1.79006,2.3028,-0.710216,1.18707,1 +1.05024,0.688222,-2.28828,-1.19499,-0.74796,-0.416256,0.979844,-0.245094,1.42344,0.654902,0.675165,-0.710216,-0.874083,0 +-1.5845,0.688222,-2.28828,0.48459,-0.980131,-0.416256,-1.02438,1.22259,1.42344,0.305621,-0.952466,-0.710216,1.18707,0 +1.37958,0.688222,0.869313,-0.63513,-0.399705,-0.416256,0.979844,-0.892603,1.42344,1.35346,0.675165,1.40866,1.18707,1 +-0.706256,0.688222,-1.23575,-0.0752701,-0.0901451,-0.416256,0.979844,1.30893,-0.699923,-0.742222,0.675165,-0.710216,-0.874083,0 +-1.25516,0.688222,0.869313,-0.91506,1.03201,-0.416256,-1.02438,1.35209,-0.699923,0.13098,0.675165,-0.710216,-0.874083,0 +-0.816037,0.688222,0.869313,-1.08302,-0.883393,-0.416256,-1.02438,-0.288261,-0.699923,-0.829542,-0.952466,-0.710216,-0.874083,0 +-0.0475717,-1.44764,-1.23575,0.0367019,0.741798,2.39347,0.979844,0.402415,1.42344,-0.916863,-0.952466,0.349222,-0.874083,0 +-0.706256,-1.44764,-0.183219,-0.0752701,0.49028,-0.416256,-1.02438,-0.46093,-0.699923,-0.742222,-0.952466,-0.710216,-0.874083,0 +-0.925818,-1.44764,0.869313,0.372618,-0.12884,-0.416256,0.979844,0.100244,1.42344,-0.916863,0.675165,-0.710216,-0.874083,0 +-0.376914,-1.44764,-0.183219,-0.63513,0.87723,-0.416256,0.979844,0.31608,-0.699923,-0.392941,-0.952466,-0.710216,-0.874083,0 +0.391551,0.688222,-0.183219,-1.08302,-0.380358,-0.416256,0.979844,0.661418,-0.699923,1.26614,0.675165,0.349222,1.18707,1 +1.8187,-1.44764,-0.183219,-1.19499,0.296805,2.39347,0.979844,-0.849435,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,0 +0.281771,0.688222,-0.183219,-0.187242,-0.399705,-0.416256,0.979844,0.0139094,-0.699923,-0.567582,0.675165,0.349222,1.18707,1 +1.2698,0.688222,0.869313,1.60431,-0.419053,-0.416256,0.979844,-0.504097,-0.699923,1.0915,-0.952466,-0.710216,0.671784,0 +-1.91384,-1.44764,-0.183219,-0.63513,-0.67057,-0.416256,-1.02438,0.877254,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.501332,0.688222,0.869313,2.16417,1.477,-0.416256,0.979844,-0.417763,1.42344,2.05203,2.3028,-0.710216,1.18707,1 +-0.486695,0.688222,0.869313,0.708534,-0.960783,-0.416256,0.979844,-1.0221,1.42344,-0.13098,0.675165,-0.710216,1.18707,1 +-0.706256,0.688222,0.869313,-0.0752701,0.122678,2.39347,0.979844,0.0139094,1.42344,-0.916863,-0.952466,1.40866,1.18707,1 +0.720893,0.688222,0.869313,0.48459,-0.82535,-0.416256,0.979844,-0.504097,1.42344,0.742222,-0.952466,0.349222,1.18707,1 +0.501332,0.688222,-2.28828,1.60431,0.451585,-0.416256,0.979844,-1.06527,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,1 +-1.36494,0.688222,-0.183219,-0.0752701,-1.34773,-0.416256,-1.02438,0.0139094,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.706256,0.688222,0.869313,-0.523158,-0.535138,-0.416256,0.979844,1.56793,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.5845,0.688222,0.869313,1.15642,-0.51579,-0.416256,-1.02438,1.35209,-0.699923,-0.916863,-0.952466,-0.710216,1.18707,1 +0.830674,-1.44764,0.869313,-0.411186,-0.786655,-0.416256,-1.02438,0.575084,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.14538,0.688222,-0.183219,-0.0752701,-0.322315,-0.416256,-1.02438,1.26576,1.42344,-0.567582,-0.952466,-0.710216,-0.874083,0 +-0.925818,0.688222,-1.23575,-1.69886,-1.01883,2.39347,-1.02438,0.272913,-0.699923,-0.916863,-0.952466,-0.710216,1.18707,0 +0.501332,0.688222,-0.183219,-0.299214,-0.612528,2.39347,-1.02438,-0.676766,-0.699923,1.00418,0.675165,0.349222,0.671784,1 +0.391551,0.688222,-0.183219,0.48459,-0.74796,2.39347,0.979844,0.661418,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.596475,0.688222,-0.183219,-0.747102,-1.94751,-0.416256,0.979844,-1.0221,-0.699923,-0.218301,-0.952466,2.4681,-0.874083,1 +-1.14538,0.688222,0.869313,-1.19499,-1.01883,-0.416256,0.979844,1.17942,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,1 +1.2698,0.688222,-1.23575,1.60431,-0.0707976,-0.416256,-1.02438,-1.28111,1.42344,-0.916863,0.675165,2.4681,0.671784,1 +1.16002,-1.44764,0.869313,1.04445,-0.477095,-0.416256,0.979844,-1.54011,-0.699923,-0.0436601,0.675165,2.4681,1.18707,1 +-1.36494,0.688222,0.869313,0.260646,1.26418,-0.416256,-1.02438,-1.06527,1.42344,0.654902,0.675165,-0.710216,0.671784,1 +-0.267133,0.688222,-1.23575,-0.187242,-0.864045,2.39347,-1.02438,1.4816,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +1.16002,-1.44764,-0.183219,0.48459,3.23763,2.39347,0.979844,0.31608,-0.699923,-0.218301,-0.952466,0.349222,-0.874083,0 +0.940455,-1.44764,-1.23575,0.48459,-1.05752,-0.416256,-1.02438,1.26576,-0.699923,-0.916863,-0.952466,1.40866,-0.874083,0 +-1.0356,-1.44764,-1.23575,-0.0752701,-0.302968,-0.416256,0.979844,1.09309,-0.699923,-0.392941,0.675165,-0.710216,-0.874083,0 +-1.47472,-1.44764,-1.23575,-1.47492,-0.999478,-0.416256,-1.02438,0.79092,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,0 +0.720893,0.688222,0.869313,0.372618,-1.6186,-0.416256,0.979844,-1.06527,1.42344,2.22667,0.675165,0.349222,-0.874083,1 +0.611113,-1.44764,-0.183219,-0.63513,-1.38643,2.39347,-1.02438,-2.31712,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.501332,-1.44764,0.869313,2.38811,-0.012755,-0.416256,-1.02438,-0.288261,1.42344,-0.916863,0.675165,-0.710216,-0.874083,1 +0.830674,0.688222,-1.23575,-0.63513,0.606365,-0.416256,0.979844,-2.01495,-0.699923,0.305621,0.675165,0.349222,1.18707,1 +0.281771,0.688222,-0.183219,1.04445,-2.3925,2.39347,-1.02438,1.00676,-0.699923,-0.742222,-0.952466,0.349222,1.18707,0 +-0.376914,-1.44764,0.869313,-0.0752701,1.07071,-0.416256,-1.02438,-0.331428,1.42344,0.13098,0.675165,-0.710216,1.18707,1 +-1.14538,0.688222,-0.183219,-0.63513,-0.457748,-0.416256,-1.02438,0.834087,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.611113,-1.44764,-2.28828,1.04445,-0.186883,-0.416256,-1.02438,0.920421,-0.699923,-0.13098,-0.952466,-0.710216,-0.874083,0 +0.940455,0.688222,-2.28828,0.76452,-0.322315,2.39347,0.979844,0.0139094,-0.699923,1.0915,2.3028,-0.710216,0.671784,0 +0.281771,0.688222,0.869313,1.04445,0.509628,-0.416256,0.979844,-1.62645,1.42344,-0.392941,0.675165,0.349222,0.671784,1 +-0.376914,0.688222,0.869313,0.48459,0.219415,-0.416256,0.979844,1.56793,1.42344,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.391551,-1.44764,-1.23575,0.260646,1.34157,2.39347,0.979844,0.100244,-0.699923,-0.916863,-0.952466,1.40866,-0.874083,1 +-1.14538,-1.44764,-0.183219,-0.747102,-0.148188,-0.416256,-1.02438,-0.0292578,-0.699923,-0.654902,0.675165,0.349222,-0.874083,0 +-0.816037,0.688222,-0.183219,-1.30696,-0.12884,-0.416256,-1.02438,0.100244,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,1 +0.720893,0.688222,0.869313,-0.63513,0.200068,-0.416256,-1.02438,-0.417763,1.42344,2.22667,0.675165,0.349222,1.18707,1 +0.281771,-1.44764,0.869313,-0.63513,2.01873,-0.416256,-1.02438,0.575084,1.42344,-0.392941,-0.952466,-0.710216,-0.874083,0 +1.70892,0.688222,-1.23575,1.38037,-0.0901451,-0.416256,0.979844,-0.288261,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +2.3676,-1.44764,-0.183219,0.48459,-1.01883,-0.416256,-0.0222692,-1.45378,-0.699923,0.0436601,0.675165,-0.710216,-0.874083,0 +1.37958,-1.44764,0.869313,-1.41893,-0.51579,-0.416256,-1.02438,-0.331428,-0.699923,-0.654902,-0.952466,1.40866,-0.874083,0 +-1.0356,0.688222,0.869313,0.596562,1.1481,-0.416256,0.979844,-0.115592,1.42344,-0.916863,0.675165,2.4681,1.18707,1 +-1.0356,0.688222,0.869313,-1.53091,-0.806003,-0.416256,0.979844,-0.072425,1.42344,1.70274,0.675165,-0.710216,-0.874083,0 +-1.69428,-1.44764,-0.183219,-2.09077,-0.980131,-0.416256,-1.02438,1.26576,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.36494,-1.44764,-0.183219,-0.63513,-0.786655,-0.416256,-1.02438,1.00676,-0.699923,-0.916863,0.675165,-0.710216,-0.874083,0 +0.17199,0.688222,-1.23575,-0.63513,-0.264273,-0.416256,-1.02438,1.22259,-0.699923,-0.218301,-0.952466,-0.710216,-0.874083,0 +0.391551,0.688222,0.869313,0.820506,-0.612528,-0.416256,-1.02438,-1.92862,-0.699923,0.829542,0.675165,0.349222,1.18707,1 +-2.13341,0.688222,0.869313,-0.63513,-0.999478,-0.416256,-1.02438,-0.849435,1.42344,0.480261,0.675165,-0.710216,1.18707,1 +0.391551,0.688222,0.869313,1.04445,0.393543,-0.416256,0.979844,-1.66961,1.42344,-0.218301,-0.952466,-0.710216,1.18707,1 +-1.47472,0.688222,-0.183219,-0.0752701,-0.689918,-0.416256,0.979844,0.79092,-0.699923,0.829542,0.675165,-0.710216,-0.874083,0 +0.281771,0.688222,0.869313,-1.19499,-0.941436,-0.416256,-1.02438,-1.0221,1.42344,0.392941,0.675165,-0.710216,0.671784,0 +-1.36494,0.688222,-2.28828,0.932478,-0.109493,-0.416256,0.979844,1.22259,-0.699923,-0.218301,-0.952466,1.40866,-0.874083,0 +0.830674,0.688222,-1.23575,-0.187242,-0.806003,2.39347,0.979844,-0.417763,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.501332,0.688222,-2.28828,2.61206,0.393543,-0.416256,0.979844,-0.201927,-0.699923,2.75059,2.3028,-0.710216,1.18707,0 +-1.47472,-1.44764,-1.23575,-0.299214,1.09005,-0.416256,-1.02438,0.575084,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.486695,0.688222,0.869313,1.04445,-0.12884,-0.416256,0.979844,-0.93577,-0.699923,1.35346,0.675165,-0.710216,1.18707,1 +0.501332,0.688222,-1.23575,0.48459,-0.554485,-0.416256,-1.02438,0.618251,1.42344,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.720893,-1.44764,0.869313,-0.0752701,1.55439,-0.416256,0.979844,0.834087,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,1 +-0.0475717,0.688222,0.869313,-0.411186,0.316153,-0.416256,0.979844,-1.75595,1.42344,1.00418,0.675165,0.349222,1.18707,1 +-0.0475717,0.688222,0.869313,-1.19499,-0.844698,-0.416256,0.979844,-1.79911,1.42344,-0.916863,0.675165,0.349222,-0.874083,1 +-0.267133,0.688222,0.869313,-0.3552,-0.728613,-0.416256,-1.02438,0.79092,-0.699923,-0.0436601,-0.952466,1.40866,1.18707,1 +-0.816037,0.688222,0.869313,-1.19499,0.49028,-0.416256,0.979844,-1.36744,1.42344,-0.0436601,0.675165,0.349222,-0.874083,1 +1.2698,0.688222,0.869313,-0.63513,1.01266,-0.416256,0.979844,0.0570767,-0.699923,-0.567582,0.675165,-0.710216,-0.874083,0 +0.391551,0.688222,0.869313,-1.75485,-0.302968,-0.416256,-1.02438,0.272913,-0.699923,-0.829542,-0.952466,0.349222,1.18707,1 +1.05024,-1.44764,-0.183219,0.48459,1.22549,-0.416256,-1.02438,-0.719934,-0.699923,-0.742222,-0.952466,-0.710216,1.18707,0 +-0.486695,-1.44764,-1.23575,-0.63513,-0.109493,-0.416256,-1.02438,0.531916,-0.699923,0.0436601,-0.952466,-0.710216,-0.874083,0 +-1.14538,-1.44764,-0.183219,-1.30696,-2.10229,-0.416256,-1.02438,1.09309,-0.699923,-0.392941,0.675165,-0.710216,-0.874083,0 +1.37958,0.688222,0.869313,-0.63513,-0.244925,-0.416256,-1.02438,-3.3963,-0.699923,-0.0436601,0.675165,-0.710216,-0.874083,1 +-0.596475,-1.44764,0.869313,-0.0752701,0.374195,-0.416256,-1.02438,0.575084,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.281771,0.688222,0.869313,1.88424,0.761145,2.39347,0.979844,-1.10844,-0.699923,-0.0436601,0.675165,2.4681,1.18707,1 +0.940455,0.688222,0.869313,-0.0752701,0.0839825,-0.416256,0.979844,-0.115592,-0.699923,0.305621,0.675165,0.349222,1.18707,1 +-0.706256,0.688222,0.869313,-0.411186,0.470933,-0.416256,0.979844,0.704585,-0.699923,-0.480261,0.675165,-0.710216,1.18707,1 +-0.376914,0.688222,-0.183219,-1.75485,-0.535138,-0.416256,-1.02438,-0.288261,1.42344,0.13098,0.675165,-0.710216,-0.874083,0 +0.611113,-1.44764,0.869313,1.04445,0.161373,-0.416256,0.979844,0.31608,-0.699923,1.35346,0.675165,1.40866,1.18707,1 +0.501332,0.688222,0.869313,0.48459,-1.40578,-0.416256,-1.02438,0.531916,1.42344,-0.916863,-0.952466,0.349222,1.18707,1 +-1.0356,-1.44764,-1.23575,-1.08302,-1.73468,-0.416256,-1.02438,-0.504097,-0.699923,-0.916863,0.675165,-0.710216,-0.874083,0 +0.0622091,-1.44764,0.869313,2.72403,1.49635,-0.416256,-0.0222692,-1.41061,1.42344,2.05203,0.675165,-0.710216,-0.874083,1 +-1.47472,0.688222,-1.23575,-1.19499,-0.28362,-0.416256,-1.02438,0.143411,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.611113,-1.44764,0.869313,1.49234,1.07071,-0.416256,0.979844,0.488749,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,1 +-0.0475717,-1.44764,-0.183219,0.20466,1.05136,2.39347,-1.02438,0.877254,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.36494,0.688222,-1.23575,-0.63513,0.87723,-0.416256,-1.02438,0.531916,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.596475,-1.44764,-1.23575,0.148674,0.41289,-0.416256,-1.02438,0.531916,-0.699923,-0.916863,0.675165,-0.710216,-0.874083,0 +-0.925818,0.688222,0.869313,-0.63513,-0.012755,-0.416256,0.979844,-0.245094,-0.699923,-0.218301,-0.952466,-0.710216,1.18707,1 +0.17199,-1.44764,0.869313,3.84375,0.741798,2.39347,0.979844,-0.719934,1.42344,2.57595,2.3028,1.40866,1.18707,1 +1.2698,-1.44764,-2.28828,1.04445,-0.457748,-0.416256,-1.02438,-1.54011,-0.699923,1.35346,2.3028,-0.710216,-0.874083,0 +0.17199,0.688222,0.869313,-0.0752701,0.64506,2.39347,0.979844,-2.01495,1.42344,0.480261,2.3028,-0.710216,1.18707,1 +-0.596475,0.688222,-0.183219,-0.63513,-1.19295,-0.416256,-1.02438,-0.46093,-0.699923,0.829542,0.675165,2.4681,1.18707,1 +-0.0475717,0.688222,0.869313,-0.523158,0.703103,-0.416256,0.979844,-1.45378,1.42344,1.87739,0.675165,1.40866,-0.874083,1 +0.281771,0.688222,0.869313,1.15642,0.470933,-0.416256,-1.02438,-2.66246,1.42344,0.13098,0.675165,0.349222,1.18707,1 +1.16002,-1.44764,-0.183219,1.60431,2.13482,-0.416256,0.979844,0.0570767,-0.699923,-0.218301,-0.952466,-0.710216,-0.874083,0 +-0.0475717,0.688222,-0.183219,-0.3552,0.451585,-0.416256,0.979844,0.100244,-0.699923,-0.480261,2.3028,0.349222,-0.874083,0 +-0.0475717,-1.44764,-0.183219,1.60431,-0.941436,-0.416256,-1.02438,0.575084,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,0 +0.830674,0.688222,0.869313,-0.63513,0.3355,-0.416256,-1.02438,-2.18762,1.42344,0.654902,0.675165,1.40866,1.18707,1 +-0.267133,-1.44764,-0.183219,0.260646,-1.03817,-0.416256,0.979844,0.834087,-0.699923,-0.829542,0.675165,-0.710216,-0.874083,0 +-0.267133,0.688222,-1.23575,0.148674,-0.941436,-0.416256,-1.02438,0.359247,-0.699923,-0.218301,-0.952466,0.349222,-0.874083,0 +0.611113,0.688222,0.869313,-0.803088,-0.380358,2.39347,-1.02438,0.445582,1.42344,0.305621,-0.952466,1.40866,1.18707,1 +0.940455,-1.44764,0.869313,-1.30696,0.374195,-0.416256,-1.02438,0.834087,1.42344,0.654902,0.675165,1.40866,-0.874083,1 +1.2698,0.688222,0.869313,-1.08302,-0.728613,-0.416256,0.979844,-0.763101,1.42344,-0.829542,-0.952466,0.349222,-0.874083,1 +-1.36494,0.688222,0.869313,0.48459,-0.457748,-0.416256,-1.02438,1.22259,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +1.05024,0.688222,0.869313,-0.63513,-0.0707976,-0.416256,0.979844,-2.31712,1.42344,1.00418,2.3028,0.349222,-0.874083,1 +-0.0475717,0.688222,-0.183219,1.04445,-0.341663,-0.416256,0.979844,0.661418,-0.699923,0.480261,-0.952466,-0.710216,1.18707,0 +-0.925818,-1.44764,-0.183219,0.596562,-1.40578,-0.416256,0.979844,0.445582,1.42344,0.305621,2.3028,-0.710216,-0.874083,0 +1.37958,-1.44764,-0.183219,1.15642,0.528975,-0.416256,-1.02438,0.963589,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,0 +0.17199,0.688222,0.869313,-0.3552,-0.012755,2.39347,0.979844,-0.245094,1.42344,0.13098,0.675165,0.349222,-0.874083,1 +-2.24319,-1.44764,-1.23575,-0.747102,-0.767308,-0.416256,-1.02438,1.82693,-0.699923,-0.305621,-0.952466,-0.710216,-0.874083,0 +0.281771,0.688222,0.869313,0.0367019,-0.82535,-0.416256,-1.02438,0.79092,1.42344,-0.916863,-0.952466,-0.710216,1.18707,0 +1.05024,0.688222,0.869313,0.76452,-0.728613,-0.416256,0.979844,-0.763101,-0.699923,0.829542,0.675165,1.40866,0.671784,1 +0.501332,0.688222,0.869313,0.372618,0.41289,-0.416256,0.979844,1.39526,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.486695,0.688222,-0.183219,0.48459,-0.322315,-0.416256,-1.02438,0.575084,-0.699923,-0.392941,0.675165,0.349222,1.18707,1 +-0.376914,0.688222,-2.28828,-0.3552,-0.709265,-0.416256,0.979844,-1.06527,1.42344,0.305621,-0.952466,0.349222,-0.874083,0 +-0.0475717,0.688222,-1.23575,3.39586,0.64506,-0.416256,0.979844,1.95644,-0.699923,-0.916863,-0.952466,0.349222,1.18707,1 +-0.157352,0.688222,0.869313,-0.467172,0.625713,-0.416256,-1.02438,-2.36029,1.42344,0.829542,0.675165,1.40866,1.18707,1 +-0.267133,0.688222,0.869313,-1.08302,-0.380358,-0.416256,-1.02438,0.445582,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,1 +-1.5845,0.688222,0.869313,-1.19499,-1.59925,-0.416256,0.979844,-1.54011,1.42344,0.829542,0.675165,-0.710216,1.18707,1 +0.391551,0.688222,-0.183219,0.0367019,-0.496443,-0.416256,0.979844,1.00676,-0.699923,1.87739,-0.952466,1.40866,1.18707,1 +-1.47472,-1.44764,-0.183219,-1.08302,0.354848,-0.416256,0.979844,0.963589,1.42344,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.47472,0.688222,-0.183219,-1.08302,0.00659248,-0.416256,-1.02438,1.26576,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.486695,-1.44764,-0.183219,-0.63513,-0.59318,-0.416256,-1.02438,0.359247,-0.699923,0.480261,0.675165,-0.710216,-0.874083,0 +-0.0475717,-1.44764,-0.183219,-1.30696,0.3355,-0.416256,0.979844,0.747752,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +1.05024,-1.44764,0.869313,-0.0752701,1.03201,-0.416256,-1.02438,-1.19477,-0.699923,0.829542,0.675165,1.40866,-0.874083,0 +-0.376914,-1.44764,-0.183219,-0.0752701,0.122678,-0.416256,0.979844,-0.0292578,-0.699923,-0.480261,-0.952466,-0.710216,-0.874083,0 +-0.925818,-1.44764,-1.23575,-1.47492,-0.883393,-0.416256,-1.02438,0.963589,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.0622091,0.688222,0.869313,0.48459,-0.631875,-0.416256,-1.02438,-1.66961,1.42344,3.97307,2.3028,-0.710216,1.18707,1 +-1.0356,0.688222,-1.23575,-0.187242,1.12875,-0.416256,0.979844,0.877254,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.17199,0.688222,-2.28828,-0.63513,-1.09622,-0.416256,0.979844,0.531916,-0.699923,0.742222,0.675165,-0.710216,1.18707,0 +1.2698,-1.44764,0.869313,2.61206,-0.419053,2.39347,-1.02438,0.661418,1.42344,-0.0436601,0.675165,1.40866,1.18707,1 +-1.80406,0.688222,-2.28828,-0.63513,-0.36101,-0.416256,-1.02438,1.39526,1.42344,2.40131,0.675165,-0.710216,1.18707,1 +0.830674,-1.44764,0.869313,1.04445,-0.109493,-0.416256,-1.02438,0.186578,1.42344,0.305621,0.675165,-0.710216,-0.874083,1 +0.0622091,0.688222,-1.23575,-0.0752701,0.238763,-0.416256,-1.02438,0.229746,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.391551,0.688222,0.869313,-0.187242,0.18072,-0.416256,0.979844,-0.849435,1.42344,1.70274,0.675165,1.40866,1.18707,1 +-1.25516,0.688222,0.869313,-1.19499,-0.74796,-0.416256,-1.02438,0.488749,-0.699923,-0.916863,-0.952466,-0.710216,1.18707,0 +1.05024,-1.44764,0.869313,2.72403,1.45766,-0.416256,-1.02438,0.186578,1.42344,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.486695,-1.44764,0.869313,-1.19499,0.0839825,-0.416256,0.979844,0.402415,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.157352,0.688222,-0.183219,-0.0752701,-1.01883,2.39347,0.979844,0.100244,-0.699923,0.13098,2.3028,-0.710216,-0.874083,0 +-1.0356,-1.44764,0.869313,0.372618,-0.264273,-0.416256,0.979844,0.100244,1.42344,-0.742222,0.675165,-0.710216,-0.874083,0 +1.16002,0.688222,-2.28828,0.372618,0.625713,2.39347,0.979844,1.04992,-0.699923,0.305621,0.675165,0.349222,-0.874083,1 +1.59914,0.688222,-2.28828,1.60431,-0.302968,2.39347,0.979844,-0.806268,-0.699923,-0.829542,0.675165,0.349222,-0.874083,0 +1.59914,0.688222,-0.183219,0.48459,0.0839825,-0.416256,0.979844,-0.15876,-0.699923,0.829542,0.675165,2.4681,1.18707,1 +1.37958,0.688222,0.869313,-1.75485,0.95462,-0.416256,0.979844,-1.06527,1.42344,-0.13098,0.675165,1.40866,-0.874083,1 +1.48936,-1.44764,-0.183219,-0.63513,-0.74796,-0.416256,0.979844,-1.49694,-0.699923,0.392941,0.675165,-0.710216,-0.874083,0 +-2.24319,0.688222,-2.28828,-0.747102,-1.30904,-0.416256,0.979844,1.04992,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.830674,-1.44764,0.869313,0.372618,0.857883,2.39347,-1.02438,-1.88545,-0.699923,0.742222,0.675165,2.4681,-0.874083,1 +-0.376914,0.688222,0.869313,0.48459,0.935273,-0.416256,-1.02438,-1.19477,1.42344,2.75059,0.675165,2.4681,1.18707,1 +-0.925818,0.688222,-0.183219,1.04445,-0.36101,-0.416256,-1.02438,-0.115592,-0.699923,2.22667,0.675165,-0.710216,-0.874083,1 +1.37958,0.688222,0.869313,-0.3552,0.0839825,2.39347,-1.02438,0.575084,-0.699923,-0.742222,0.675165,1.40866,1.18707,1 +-0.486695,0.688222,-0.183219,-0.131256,-1.03817,-0.416256,-1.02438,0.575084,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.36494,0.688222,-0.183219,-0.63513,-0.186883,2.39347,-1.02438,1.91327,-0.699923,-0.218301,2.3028,-0.710216,1.18707,0 +0.17199,-1.44764,0.869313,0.148674,3.08285,-0.416256,0.979844,0.0139094,1.42344,0.742222,0.675165,1.40866,1.18707,1 +-1.47472,0.688222,0.869313,-1.19499,-1.50251,-0.416256,0.979844,0.359247,-0.699923,-0.916863,-0.952466,-0.710216,1.18707,1 +-1.36494,-1.44764,0.869313,-1.64288,0.296805,-0.416256,0.979844,-1.19477,-0.699923,-0.392941,0.675165,-0.710216,-0.874083,0 +-0.157352,0.688222,-0.183219,-0.0752701,-0.0707976,2.39347,0.979844,1.00676,-0.699923,-0.916863,-0.952466,2.4681,-0.874083,0 +-1.25516,0.688222,-0.183219,-0.0752701,1.26418,-0.416256,-1.02438,0.531916,-0.699923,0.742222,-0.952466,0.349222,-0.874083,0 +0.17199,0.688222,0.869313,0.0367019,-1.27034,-0.416256,0.979844,-1.92862,1.42344,0.916863,0.675165,0.349222,0.671784,1 +-0.267133,0.688222,0.869313,-1.30696,-0.322315,2.39347,-1.02438,-0.115592,-0.699923,-0.829542,-0.952466,2.4681,1.18707,0 +0.830674,-1.44764,0.869313,0.48459,2.79263,-0.416256,0.979844,0.31608,-0.699923,0.13098,0.675165,-0.710216,-0.874083,0 +1.70892,0.688222,-0.183219,1.60431,0.374195,-0.416256,-1.02438,-1.62645,1.42344,1.61542,0.675165,0.349222,1.18707,1 +-0.0475717,0.688222,0.869313,0.48459,-0.20623,-0.416256,-1.02438,0.445582,-0.699923,0.13098,-0.952466,-0.710216,-0.874083,0 +1.70892,0.688222,0.869313,0.76452,-1.46382,-0.416256,-1.02438,-1.06527,1.42344,1.35346,2.3028,-0.710216,1.18707,1 +-0.0475717,0.688222,-1.23575,-1.30696,1.1481,-0.416256,-1.02438,0.272913,-0.699923,-0.916863,-0.952466,-0.710216,1.18707,0 +-2.13341,0.688222,0.869313,-0.299214,0.625713,-0.416256,0.979844,0.272913,1.42344,-0.916863,-0.952466,-0.710216,1.18707,1 +-0.706256,0.688222,-0.183219,-0.411186,0.10333,2.39347,-1.02438,1.09309,-0.699923,-0.916863,-0.952466,1.40866,-0.874083,0 +0.0622091,-1.44764,-1.23575,0.20466,0.00659248,-0.416256,0.979844,0.488749,-0.699923,0.305621,0.675165,-0.710216,-0.874083,0 +0.391551,-1.44764,0.869313,-1.75485,-0.0321025,-0.416256,0.979844,-1.19477,-0.699923,-0.0436601,0.675165,-0.710216,-0.874083,0 +-0.0475717,-1.44764,-0.183219,-1.19499,-0.689918,-0.416256,-1.02438,0.359247,-0.699923,0.480261,0.675165,-0.710216,-0.874083,0 +1.59914,-1.44764,-2.28828,0.48459,-0.20623,-0.416256,-1.02438,0.0570767,-0.699923,0.654902,-0.952466,1.40866,-0.874083,0 +2.47739,0.688222,0.869313,-0.3552,1.05136,-0.416256,0.979844,0.531916,1.42344,-0.916863,-0.952466,2.4681,-0.874083,1 +1.48936,0.688222,-0.183219,-0.747102,0.528975,-0.416256,-1.02438,0.0570767,-0.699923,-0.0436601,-0.952466,0.349222,1.18707,0 +0.391551,0.688222,0.869313,-0.3552,0.973968,-0.416256,0.979844,0.920421,-0.699923,-0.916863,-0.952466,1.40866,1.18707,1 +0.611113,0.688222,0.869313,-0.3552,0.161373,-0.416256,0.979844,-0.374596,1.42344,1.5281,0.675165,0.349222,1.18707,1 +-0.376914,0.688222,0.869313,0.48459,0.95462,-0.416256,-1.02438,1.00676,1.42344,0.480261,-0.952466,-0.710216,1.18707,1 +0.0622091,0.688222,0.869313,1.60431,0.761145,-0.416256,0.979844,-0.201927,1.42344,-0.218301,0.675165,0.349222,1.18707,1 +-0.267133,0.688222,-2.28828,1.15642,0.935273,2.39347,-1.02438,1.22259,-0.699923,0.13098,0.675165,-0.710216,1.18707,0 +0.611113,-1.44764,-0.183219,-1.64288,1.32222,-0.416256,-1.02438,0.445582,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,0 +0.391551,0.688222,-0.183219,-1.47492,-0.186883,-0.416256,0.979844,0.186578,1.42344,-0.392941,0.675165,-0.710216,1.18707,0 +1.05024,0.688222,-0.183219,-0.3552,1.1481,-0.416256,-1.02438,-0.806268,1.42344,0.654902,0.675165,-0.710216,1.18707,1 +-1.91384,0.688222,-0.183219,-0.0752701,0.00659248,-0.416256,-1.02438,1.6111,-0.699923,2.13935,2.3028,-0.710216,-0.874083,0 +0.501332,0.688222,-2.28828,2.16417,0.741798,-0.416256,0.979844,0.402415,-0.699923,-0.742222,0.675165,-0.710216,1.18707,1 +-0.376914,0.688222,-0.183219,-0.3552,-0.0901451,2.39347,0.979844,0.704585,-0.699923,1.17882,0.675165,-0.710216,-0.874083,0 +-1.25516,-1.44764,-0.183219,-0.523158,-0.709265,-0.416256,-1.02438,0.661418,-0.699923,-0.742222,0.675165,-0.710216,-0.874083,0 +0.391551,0.688222,0.869313,-0.187242,-0.651223,-0.416256,0.979844,-0.806268,1.42344,1.00418,0.675165,2.4681,1.18707,1 +-2.79209,0.688222,-1.23575,-0.0752701,-0.883393,-0.416256,0.979844,2.25861,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.47472,-1.44764,-1.23575,-0.0752701,-0.883393,-0.416256,0.979844,0.963589,-0.699923,0.305621,-0.952466,-0.710216,-0.874083,0 +0.940455,-1.44764,-0.183219,0.20466,0.0452875,-0.416256,0.979844,0.963589,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.376914,0.688222,-0.183219,-2.09077,-0.4384,-0.416256,-1.02438,0.186578,1.42344,-0.916863,-0.952466,0.349222,1.18707,0 +-0.0475717,0.688222,-0.183219,-0.63513,0.161373,-0.416256,0.979844,-0.115592,-0.699923,-0.567582,0.675165,-0.710216,1.18707,0 +-1.14538,0.688222,-1.23575,-0.63513,-0.573833,-0.416256,-1.02438,0.877254,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.0475717,0.688222,0.869313,-1.19499,-0.20623,-0.416256,-1.02438,-1.0221,1.42344,1.5281,0.675165,0.349222,1.18707,1 +1.16002,0.688222,0.869313,0.20466,0.0839825,-0.416256,0.979844,-0.978937,-0.699923,1.5281,0.675165,0.349222,1.18707,1 +0.281771,0.688222,-0.183219,1.04445,-1.5799,-0.416256,-1.02438,1.04992,-0.699923,0.480261,-0.952466,-0.710216,-0.874083,0 +0.940455,0.688222,0.869313,-0.0752701,1.55439,2.39347,0.979844,-0.763101,1.42344,0.654902,-0.952466,2.4681,1.18707,1 +-2.13341,-1.44764,0.869313,0.372618,-1.28969,-0.416256,-1.02438,1.39526,-0.699923,0.305621,-0.952466,-0.710216,-0.874083,0 +-1.47472,0.688222,-1.23575,0.20466,-0.90274,-0.416256,-1.02438,-0.763101,-0.699923,-0.916863,0.675165,-0.710216,0.671784,0 +0.830674,-1.44764,-0.183219,-0.0752701,0.25811,-0.416256,-1.02438,-2.27395,-0.699923,0.13098,0.675165,0.349222,1.18707,1 +-1.25516,-1.44764,0.869313,0.0367019,1.76722,2.39347,0.979844,-0.590432,1.42344,1.70274,0.675165,-0.710216,1.18707,1 +0.391551,-1.44764,-2.28828,1.04445,0.64506,2.39347,0.979844,0.531916,-0.699923,-0.0436601,-0.952466,-0.710216,-0.874083,0 +-0.267133,0.688222,-2.28828,-0.747102,-1.23165,-0.416256,0.979844,1.7406,-0.699923,-0.916863,0.675165,-0.710216,0.671784,0 +0.720893,-1.44764,0.869313,0.76452,1.1094,-0.416256,0.979844,-0.15876,1.42344,-0.0436601,0.675165,-0.710216,1.18707,1 +-1.69428,0.688222,0.869313,-0.747102,-0.59318,-0.416256,-1.02438,-0.417763,-0.699923,0.13098,0.675165,-0.710216,1.18707,1 +-1.0356,0.688222,0.869313,-0.91506,0.200068,-0.416256,0.979844,1.52476,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.267133,0.688222,0.869313,-0.187242,0.10333,-0.416256,-1.02438,0.488749,1.42344,-0.916863,-0.952466,0.349222,1.18707,1 +0.830674,0.688222,-0.183219,-0.0752701,-0.36101,-0.416256,-1.02438,-0.15876,-0.699923,0.654902,0.675165,2.4681,1.18707,0 +0.830674,-1.44764,0.869313,1.60431,-1.65729,-0.416256,0.979844,-0.201927,-0.699923,4.49699,2.3028,2.4681,1.18707,1 +-0.157352,-1.44764,0.869313,0.372618,-0.302968,-0.416256,0.979844,0.445582,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.25516,0.688222,0.869313,-0.63513,-1.40578,-0.416256,0.979844,-1.28111,1.42344,1.26614,0.675165,-0.710216,1.18707,1 +-0.816037,0.688222,-0.183219,0.372618,0.142025,-0.416256,0.979844,0.272913,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.267133,0.688222,-1.23575,-0.63513,1.45766,-0.416256,-1.02438,0.963589,-0.699923,-0.742222,-0.952466,-0.710216,-0.874083,0 +1.48936,0.688222,-0.183219,2.72403,0.470933,2.39347,0.979844,0.0139094,1.42344,0.480261,0.675165,-0.710216,1.18707,1 +-1.69428,0.688222,-0.183219,0.48459,1.38027,-0.416256,0.979844,1.39526,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-0.157352,-1.44764,0.869313,-0.0752701,0.277458,-0.416256,0.979844,-0.288261,-0.699923,-0.567582,0.675165,-0.710216,-0.874083,0 +0.830674,-1.44764,0.869313,0.48459,0.354848,-0.416256,0.979844,0.445582,-0.699923,2.22667,2.3028,1.40866,-0.874083,1 +-0.376914,-1.44764,-0.183219,0.48459,1.12875,-0.416256,0.979844,-0.331428,-0.699923,0.392941,-0.952466,0.349222,-0.874083,0 +0.611113,0.688222,0.869313,-0.0752701,0.064635,-0.416256,-1.02438,-0.245094,1.42344,0.305621,-0.952466,0.349222,1.18707,1 +1.16002,0.688222,0.869313,-1.19499,-0.0321025,-0.416256,0.979844,0.359247,-0.699923,-0.392941,-0.952466,1.40866,0.671784,1 +1.16002,-1.44764,-0.183219,1.32438,0.374195,-0.416256,-1.02438,-0.072425,-0.699923,-0.218301,-0.952466,-0.710216,-0.874083,0 +0.611113,0.688222,-0.183219,0.48459,-1.251,-0.416256,0.979844,0.229746,-0.699923,1.70274,0.675165,-0.710216,-0.874083,1 +0.611113,0.688222,0.869313,0.76452,0.625713,-0.416256,0.979844,-0.331428,1.42344,1.5281,0.675165,1.40866,1.18707,1 +-0.0475717,0.688222,0.869313,-0.63513,-1.19295,-0.416256,-1.02438,-1.58328,-0.699923,0.305621,0.675165,0.349222,1.18707,1 +-1.14538,0.688222,-1.23575,-0.0752701,-0.59318,-0.416256,0.979844,1.65426,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +-1.14538,0.688222,0.869313,-1.08302,0.780493,-0.416256,0.979844,0.143411,-0.699923,-0.916863,-0.952466,0.349222,-0.874083,1 +-0.376914,0.688222,-0.183219,-1.19499,-1.44447,-0.416256,-1.02438,-1.15161,-0.699923,-0.392941,-0.952466,-0.710216,-0.874083,0 +0.501332,0.688222,-0.183219,1.04445,-0.728613,2.39347,-1.02438,0.31608,-0.699923,0.480261,-0.952466,-0.710216,-0.874083,0 +1.8187,-1.44764,-1.23575,1.60431,1.01266,-0.416256,-1.02438,0.531916,-0.699923,-0.567582,-0.952466,1.40866,-0.874083,0 +0.720893,0.688222,-0.183219,1.04445,-0.12884,2.39347,-1.02438,-0.547265,1.42344,-0.0436601,0.675165,-0.710216,-0.874083,0 +0.0622091,0.688222,0.869313,0.0367019,1.99939,-0.416256,-1.02438,-0.763101,1.42344,0.13098,0.675165,0.349222,1.18707,1 +1.05024,0.688222,-0.183219,0.48459,1.65113,-0.416256,-1.02438,0.359247,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,1 +-1.25516,0.688222,0.869313,1.04445,-0.05145,-0.416256,-1.02438,0.920421,-0.699923,0.392941,-0.952466,-0.710216,-0.874083,0 +0.391551,-1.44764,-0.183219,-0.63513,1.74787,-0.416256,-1.02438,0.963589,-0.699923,-0.916863,-0.952466,-0.710216,-0.874083,0 +0.611113,0.688222,0.869313,-0.0752701,-0.844698,-0.416256,0.979844,-0.763101,1.42344,1.17882,0.675165,1.40866,1.18707,1 +0.391551,0.688222,-1.23575,-0.63513,0.664408,-0.416256,0.979844,0.445582,-0.699923,0.654902,0.675165,-0.710216,-0.874083,1 +-0.596475,0.688222,-1.23575,-0.0752701,0.316153,-0.416256,-1.02438,0.920421,-0.699923,-0.392941,-0.952466,-0.710216,-0.874083,0 +-0.706256,0.688222,-1.23575,-1.19499,-0.399705,-0.416256,-1.02438,0.79092,-0.699923,-0.0436601,2.3028,-0.710216,1.18707,1 +-0.267133,0.688222,-0.183219,2.27614,-0.980131,2.39347,-1.02438,0.531916,-0.699923,-0.480261,-0.952466,-0.710216,1.18707,0 +-1.14538,0.688222,-1.23575,-0.63513,0.25811,-0.416256,-1.02438,1.00676,-0.699923,-0.916863,-0.952466,-0.710216,1.18707,0 +0.17199,-1.44764,-1.23575,0.48459,0.857883,-0.416256,0.979844,0.143411,-0.699923,0.218301,0.675165,-0.710216,-0.874083,0 +0.281771,0.688222,0.869313,0.48459,-1.11556,-0.416256,-1.02438,-0.072425,-0.699923,-0.567582,0.675165,-0.710216,0.671784,0 +1.37958,0.688222,0.869313,1.60431,0.703103,-0.416256,0.979844,-1.79911,1.42344,0.392941,0.675165,2.4681,-0.874083,1 diff --git a/data/statlog-image.arff b/data/statlog-image.arff new file mode 100755 index 0000000..98e8788 --- /dev/null +++ b/data/statlog-image.arff @@ -0,0 +1,2331 @@ +@relation statlog-image +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'clase' {0,1,2,3,4,5,6} +@data +1.27591,0.949531,2.41015,-0.19451,-0.392976,-0.115095,-0.363874,-0.130916,0.591413,0.560073,0.712983,0.469592,-0.765282,1.2962,-1.42874,0.700921,-0.472589,-0.438518,5 +-0.163301,0.114514,-0.35697,-0.19451,-0.598821,-0.121713,-0.579319,-0.133963,-0.947253,-0.936767,-0.956461,-0.935919,0.865381,-0.838392,0.552706,-0.992082,2.51022,-0.492034,2 +1.0566,-1.43375,-0.35697,-0.19451,-0.351806,-0.110089,-0.363873,-0.122733,2.25232,2.2567,2.19608,2.29065,-1.79164,1.47219,-0.697719,2.20495,-0.996657,-0.606354,1 +-1.27355,0.86255,-0.35697,-0.19451,-0.0636249,-0.0875817,1.82136,-0.0254067,0.171336,0.192205,0.199897,0.115159,0.0500494,0.33109,-0.611151,0.180594,-0.700712,-0.411536,5 +-0.876054,1.28006,-0.35697,-0.19451,-0.166547,-0.0935184,0.0516296,-0.107432,0.328501,0.325398,0.399005,0.243488,-0.295267,0.739841,-0.957423,0.382512,-0.542984,-0.426689,5 +0.330144,1.0713,-0.35697,-0.19451,-0.125378,-0.103492,0.174742,-0.107432,0.32171,0.357111,0.353057,0.246544,0.0596415,0.473018,-0.861236,0.335916,-0.6614,-0.381712,5 +0.98807,1.83674,-0.35697,-0.19451,-0.187132,-0.092209,-0.348484,-0.130536,-0.505832,-0.534016,-0.604193,-0.355382,0.155563,-1.07115,1.65885,-0.557182,-0.399354,2.59782,6 +-1.31467,-0.216014,-0.35697,-0.19451,-0.557652,-0.12194,-0.502374,-0.137589,-0.828894,-0.740149,-0.86967,-0.856477,1.47928,-0.951934,0.129485,-0.891123,0.601204,0.30093,0 +-1.69846,-0.7379,-0.35697,-0.19451,3.80625,5.8365,1.88292,3.35171,-0.411727,-0.537187,-0.313189,-0.404269,-0.803651,0.319736,0.264147,-0.339732,0.737548,-0.695973,2 +-0.7664,-0.668315,2.41015,-0.19451,0.450987,0.0557032,0.420965,0.020354,-0.408817,-0.353254,-0.369348,-0.505099,0.836605,-0.0719836,-0.716956,-0.396684,0.0460384,-0.19218,0 +0.371264,-0.703107,-0.35697,-0.19451,0.945014,-0.0977012,-0.41004,-0.128602,-0.275905,-0.2708,-0.251925,-0.306494,0.270669,-0.0663066,-0.159074,-0.277604,-0.523316,-0.4532,3 +1.68712,0.514626,-0.35697,-0.19451,-0.598821,-0.125904,-0.640875,-0.139668,-0.960835,-0.936767,-0.989646,-0.938975,0.999671,-0.980319,0.658511,-1.02574,2.02355,-0.473359,4 +0.165662,0.305872,-0.35697,-0.19451,-0.681158,-0.124274,-0.656264,-0.137858,-0.969566,-0.936767,-1.01262,-0.938975,1.086,-1.08251,0.745079,-1.04903,-1.38313,-0.473359,4 +-0.533384,1.28006,2.41015,4.39036,-0.104793,-0.0949379,-0.317706,-0.121402,0.685518,0.667896,0.771694,0.591811,-0.717322,1.13724,-1.20751,0.760461,-0.620037,-0.456291,5 +1.30333,1.68017,2.41015,-0.19451,0.14222,-0.102119,-0.0407042,-0.0695755,-0.801729,-0.775033,-0.892644,-0.709815,0.894157,-1.26417,1.24525,-0.85747,0.00201855,2.16604,6 +1.12514,-0.146429,-0.35697,-0.19451,-0.310638,-0.119958,-0.625486,-0.139605,-0.938521,-0.924082,-0.948803,-0.929808,0.894157,-0.838392,0.52385,-0.984316,2.21822,-0.454684,4 +-1.62993,-1.25979,-0.35697,-0.19451,-0.0842092,-0.0827116,-0.225372,-0.104338,-0.457324,-0.400823,-0.425506,-0.54482,0.884565,-0.162817,-0.611151,-0.453635,0.0699387,-0.206035,0 +1.07031,1.01912,-0.35697,-0.19451,0.677416,-0.0698462,0.328632,-0.111179,0.468204,0.474448,0.549612,0.359596,-0.324044,0.927185,-1.24598,0.535245,-0.526353,-0.399558,5 +1.61858,-0.0594483,-0.35697,-0.19451,0.945014,-0.0300931,-0.240761,-0.10899,0.282904,0.341255,0.27903,0.228211,0.299445,0.206194,-0.649625,0.260843,-0.795288,-0.354511,3 +0.289023,-0.459561,-0.35697,-0.19451,3.04463,-0.0247827,-0.502374,-0.130409,0.285814,0.376139,0.233082,0.258766,0.587209,-0.1174,-0.389922,0.214247,-1.00643,-0.309213,3 +0.809882,0.375456,-0.35697,-0.19451,-0.434145,-0.11367,-0.610097,-0.135544,-0.955984,-0.927254,-0.987093,-0.935919,1.03804,-0.991673,0.639274,-1.02315,0.441878,-0.361117,4 +0.727641,0.0797212,-0.35697,-0.19451,-0.537067,-0.11971,-0.425429,-0.136645,-0.815312,-0.711607,-0.867118,-0.844255,1.60398,-1.01438,0.110248,-0.867825,0.599273,0.415183,0 +0.0971283,0.184098,-0.35697,-0.19451,0.286311,-0.0569446,-0.25615,-0.11391,-0.808521,-0.873342,-0.752248,-0.804534,0.0692336,-0.287713,0.418045,-0.784987,1.78285,-0.662455,2 +-0.574504,-1.6599,-0.35697,-0.19451,-0.557652,-0.124274,-0.42543,-0.132428,1.98844,1.90152,1.99697,2.0401,-2.40554,1.68792,-0.447634,2.00303,-0.811975,-0.663278,1 +0.0148876,1.97591,-0.35697,-0.19451,-0.351807,-0.12194,-0.394651,-0.131859,-0.819192,-0.816259,-0.918171,-0.694538,0.692723,-1.3323,1.56266,-0.844527,0.555908,2.23908,6 +1.37186,-1.13801,-0.35697,-0.19451,-0.578236,-0.117906,-0.548541,-0.134318,-0.752252,-0.778204,-0.690984,-0.792313,0.376182,-0.208234,-0.0244131,-0.722858,0.855546,-0.456643,4 +-1.52027,-0.0594483,-0.35697,-0.19451,-0.578236,-0.124335,-0.548541,-0.135133,-0.92882,-0.936767,-0.925829,-0.914531,0.68313,-0.741881,0.571943,-0.961018,2.51022,-0.616581,2 +-1.64363,1.50621,-0.35697,4.39036,0.101051,-0.09007,0.559466,-0.0957353,0.373128,0.360282,0.462822,0.274043,-0.419965,0.904477,-1.11132,0.447229,-0.478853,-0.425797,5 +-0.629332,-1.06843,-0.35697,-0.19451,-0.495898,-0.118719,-0.42543,-0.129843,1.91568,1.9364,1.90508,1.88733,-1.36959,1.50057,-1.16903,1.90984,-0.9587,-0.527557,1 +-1.46545,-0.703107,-0.35697,4.39036,1.58313,0.0954272,2.89859,0.349277,-0.594116,-0.679894,-0.494428,-0.624262,-0.295267,0.177809,-0.00517577,-0.523529,1.04197,-0.589716,2 +1.22109,2.13247,-0.35697,-0.19451,0.348064,-0.0845455,0.159353,-0.106354,-0.511653,-0.530845,-0.660352,-0.30955,0.241892,-1.41178,2.1494,-0.518352,-0.154813,2.32684,6 +-0.42373,0.288476,-0.35697,-0.19451,-0.639989,-0.126565,-0.579319,-0.139416,-0.890984,-0.886027,-0.874776,-0.905365,0.76946,-0.622662,0.283384,-0.909244,1.62495,-0.403066,4 +-0.972001,0.323268,-0.35697,-0.19451,-0.434145,-0.108851,-0.117649,-0.104325,-0.922999,-0.911397,-0.930934,-0.914531,0.855789,-0.810006,0.514232,-0.966195,1.50038,-0.473359,4 +-0.245541,0.392853,-0.35697,-0.19451,-0.00187127,-0.104845,-0.0868712,-0.117752,-0.410757,-0.457905,-0.33361,-0.453156,-0.0938327,0.177809,-0.207167,-0.360442,0.0258119,-0.519029,3 +-0.437437,1.95851,2.41015,-0.19451,-0.0430403,-0.0671853,-0.117649,-0.124301,-0.642624,-0.664038,-0.767564,-0.465378,0.328221,-1.36068,1.97627,-0.650375,0.0891492,2.34907,6 +1.646,2.18466,-0.35697,-0.19451,0.0392976,-0.0985681,-0.25615,-0.12978,-0.584415,-0.629154,-0.662904,-0.440935,0.0692336,-1.00303,1.63,-0.629666,-0.0905824,2.65732,6 +-1.05424,0.86255,-0.35697,-0.19451,-0.269469,-0.103454,-0.271539,-0.112251,-0.467026,-0.467419,-0.637378,-0.257607,0.376182,-1.51964,2.1975,-0.474344,-0.338301,2.24058,6 +1.56376,-0.0246559,-0.35697,-0.19451,-0.598821,-0.125904,-0.579319,-0.137149,-0.825013,-0.736977,-0.862012,-0.856477,1.46969,-0.923548,0.0910108,-0.883357,0.676521,0.264967,0 +0.809882,0.375456,-0.35697,-0.19451,-0.351807,-0.116367,-0.179205,-0.124275,-0.881282,-0.870171,-0.882434,-0.880921,0.81742,-0.730527,0.418045,-0.91701,1.00618,-0.435898,4 +-0.218128,0.392853,-0.35697,-0.19451,-0.681158,-0.124274,-0.656264,-0.137858,-0.969566,-0.936767,-1.01262,-0.938975,1.086,-1.08251,0.745079,-1.04903,-1.38313,-0.473359,2 +-0.190714,2.13247,-0.35697,-0.19451,0.471571,-0.0805939,0.944192,-0.0702248,-0.292398,-0.334226,-0.499534,-0.000948419,-0.141793,-1.62183,2.89004,-0.256894,-0.166091,2.31465,6 +0.412385,-1.45114,-0.35697,-0.19451,-0.00187127,-0.0810893,-0.656264,-0.137858,-0.937551,-0.901883,-0.979435,-0.911475,1.086,-1.04844,0.687367,-1.01538,-1.3588,-0.134534,4 +0.919536,0.584211,-0.35697,-0.19451,-0.310638,-0.115994,-0.456207,-0.1374,-0.49031,-0.540359,-0.619509,-0.282051,-0.0554641,-1.26417,2.1975,-0.495054,-0.0381452,2.45999,6 +1.15255,2.18466,-0.35697,-0.19451,0.203973,-0.0463736,0.0977968,-0.0686309,-0.695012,-0.721121,-0.828828,-0.502044,0.328221,-1.46287,2.1494,-0.681439,0.466095,2.27761,6 +-0.0947667,0.0275327,-0.35697,-0.19451,-0.578236,-0.12066,-0.425429,-0.134318,-0.940462,-0.936767,-0.943698,-0.929808,0.798236,-0.792975,0.543088,-0.979139,2.51022,-0.525937,2 +-1.12278,0.49723,-0.35697,-0.19451,0.0187132,-0.0892359,-0.333095,-0.126065,-0.93076,-0.908226,-0.948803,-0.920642,0.961302,-0.883808,0.533469,-0.984316,0.97142,-0.369073,4 +1.67341,-0.546542,-0.35697,-0.19451,-0.372392,-0.115746,-0.548541,-0.138156,-0.654266,-0.721121,-0.542929,-0.715926,-0.0746484,0.206194,-0.274498,-0.572714,0.898928,-0.50148,4 +-0.84864,1.34964,-0.35697,-0.19451,0.0804668,-0.0886387,0.020852,-0.112003,0.643802,0.629841,0.741062,0.533757,-0.650177,1.17698,-1.34217,0.729396,-0.559241,-0.434353,5 +-1.25984,-0.111637,-0.35697,-0.19451,-0.598821,-0.126895,-0.640875,-0.139668,-0.942402,-0.936767,-0.943698,-0.935919,0.81742,-0.781621,0.504613,-0.979139,2.51022,-0.498104,2 +-0.0947667,-0.668315,-0.35697,-0.19451,0.51274,-0.0287826,-0.0407042,-0.0242329,-0.756132,-0.835287,-0.673115,-0.770924,-0.103425,-0.0663066,0.216053,-0.704738,1.52087,-0.625234,2 +-0.0536464,-1.10322,-0.35697,-0.19451,0.14222,-0.0753614,0.128575,-0.0913021,-0.270084,-0.232745,-0.205977,-0.379825,0.558433,0.206194,-0.909329,-0.231008,-0.0201165,-0.267396,0 +1.27591,-0.146429,-0.35697,-0.19451,-0.351807,-0.1154,-0.56393,-0.133545,-0.36904,-0.381795,-0.338716,-0.388992,0.184339,-0.100369,-0.0147944,-0.365619,-0.384321,-0.50848,4 +1.15255,-1.95563,-0.35697,-0.19451,-0.392976,-0.12161,-0.0714822,-0.0746136,2.7374,2.9195,2.43348,2.89563,-0.57344,0.217548,0.206435,2.4457,-1.43252,-0.672145,1 +-0.958295,1.48881,2.41015,-0.19451,-0.0224559,-0.0984254,-0.286928,-0.123199,-0.642624,-0.641839,-0.777774,-0.474545,0.529656,-1.42881,1.8897,-0.658141,-0.0831726,2.24037,6 +-1.02683,1.31485,-0.35697,-0.19451,0.492156,-0.0608829,0.882635,-0.0616835,0.487607,0.464934,0.587902,0.38404,-0.602216,1.06911,-1.20751,0.574075,-0.501418,-0.441674,5 +0.480919,-1.43375,-0.35697,-0.19451,-0.392976,-0.109254,-0.610097,-0.137245,-0.952103,-0.920911,-0.987093,-0.929808,1.05722,-1.01438,0.658511,-1.02315,0.482433,-0.312051,4 +0.234196,0.288476,-0.35697,-0.19451,0.862676,-0.0984573,-0.25615,-0.127884,-0.277846,-0.267629,-0.272346,-0.291217,0.318629,-0.191203,0.00444287,-0.298313,-0.621058,-0.477301,3 +-1.58881,-0.511749,-0.35697,-0.19451,-0.475314,-0.115003,-0.394651,-0.128836,1.99426,2.114,1.91529,1.95149,-0.535071,1.10885,-1.34217,1.92019,-1.09546,-0.42218,1 +-0.231835,0.392853,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,2 +-0.944588,-0.285599,-0.35697,-0.19451,-0.290054,-0.122683,0.636412,0.203236,0.334322,0.382481,0.324978,0.295431,0.165155,0.211871,-0.524583,0.30744,-0.860404,-0.406739,3 +-0.972001,0.914738,-0.35697,-0.19451,0.0804671,-0.111955,0.0670189,-0.0944057,0.356636,0.376139,0.424532,0.252655,-0.113017,0.745518,-1.1498,0.408399,-0.518243,-0.380832,5 +-1.15019,-0.355184,-0.35697,-0.19451,0.203974,-0.058266,-0.179205,-0.114729,0.6341,0.661553,0.67214,0.555145,-0.266491,0.773904,-1.04399,0.659502,-0.732717,-0.414165,3 +-0.793813,0.218891,-0.35697,-0.19451,1.78898,-0.0446183,0.0670187,-0.0858075,-0.564041,-0.679894,-0.433164,-0.602874,-0.592624,0.41057,-0.101362,-0.461401,1.02457,-0.611268,2 +1.70082,-1.13801,-0.35697,-0.19451,-0.207716,-0.106285,-0.594708,-0.134599,-0.738669,-0.765519,-0.680773,-0.77398,0.356998,-0.219588,0.0140616,-0.712504,0.792234,-0.4675,4 +-0.478557,-0.389976,2.41015,-0.19451,-0.372391,-0.118719,-0.194594,-0.108117,-0.444712,-0.356425,-0.440822,-0.529543,1.16274,-0.338807,-0.591914,-0.469167,-0.100107,-0.101744,0 +0.755054,1.74976,-0.35697,-0.19451,0.677416,-0.0446393,0.328632,-0.044637,-0.572773,-0.603784,-0.708852,-0.373715,0.184339,-1.37772,2.1494,-0.572714,0.0721899,2.36916,6 +-0.396316,-1.92084,-0.35697,-0.19451,-0.392977,-0.116654,-0.517763,-0.136645,2.48128,2.54846,2.31095,2.59314,-1.40796,0.8988,-0.110981,2.32144,-1.18403,-0.662221,1 +-0.177007,-0.581334,-0.35697,-0.19451,2.03599,0.027566,-0.317706,-0.125211,0.736937,0.709122,0.817642,0.659031,-0.851611,1.14292,-1.08246,0.807057,-0.650641,-0.482689,3 +1.23479,1.01912,-0.35697,-0.19451,0.245142,-0.094514,0.0824078,-0.106465,0.4488,0.449078,0.529191,0.347374,-0.362413,0.904477,-1.16903,0.514535,-0.538055,-0.414916,5 +1.37186,-1.13801,-0.35697,-0.19451,-0.578236,-0.117906,-0.548541,-0.134318,-0.752252,-0.778204,-0.690984,-0.792313,0.376182,-0.208234,-0.0244131,-0.722858,0.855546,-0.456643,4 +-0.50597,-0.59873,-0.35697,-0.19451,-0.413561,-0.118719,0.344021,-0.0714018,-0.385533,-0.31837,-0.36169,-0.474545,0.922934,-0.15714,-0.659244,-0.388918,-0.101645,-0.169989,0 +-0.46485,-0.0594483,-0.35697,-0.19451,-0.187131,-0.106594,-0.502374,-0.127041,-0.529116,-0.616469,-0.422954,-0.566209,-0.362413,0.274319,-0.101362,-0.451046,0.592464,-0.561641,2 +-0.930881,-1.41635,-0.35697,-0.19451,0.162805,-0.107926,-0.394651,-0.128282,0.0102903,-0.00124236,0.0824744,-0.065113,-0.113017,0.490049,-0.716956,0.0615145,-0.403974,-0.431398,3 +1.17996,0.114514,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.20502,-0.0594483,-0.35697,-0.19451,-0.392976,-0.119628,-0.379262,-0.132299,-0.920088,-0.930425,-0.913066,-0.90842,0.654354,-0.707818,0.543088,-0.948074,2.348,-0.605168,2 +-0.972001,0.288476,2.41015,-0.19451,-0.434145,-0.117429,-0.179205,-0.122368,-0.752252,-0.828944,-0.693536,-0.74037,-0.0842406,-0.225265,0.466138,-0.725447,1.34719,-0.698506,2 +0.946949,-0.894465,-0.35697,-0.19451,-0.331223,-0.118389,-0.348484,-0.120712,1.47716,1.32435,1.67534,1.37095,-2.58779,2.5338,-1.69806,1.67686,-0.45321,-0.558379,1 +-0.533384,-0.616126,2.41015,-0.19451,0.0598822,-0.0852717,-0.194594,-0.0824226,-0.416578,-0.324712,-0.41019,-0.508155,1.17233,-0.299068,-0.668863,-0.438103,-0.0953746,-0.0968451,0 +-0.738986,0.984323,2.41015,-0.19451,-0.248885,-0.114755,0.159353,-0.108432,-0.385533,-0.413508,-0.522508,-0.190387,0.0596415,-1.23011,2.02436,-0.417393,-0.435858,2.46984,6 +0.0285944,-0.0594483,2.41015,-0.19451,-0.0842092,-0.108478,0.220909,-0.0716537,-0.350607,-0.305684,-0.315742,-0.431768,0.692723,-0.0549523,-0.601532,-0.342321,-0.140293,-0.260133,0 +0.206783,0.0101365,-0.35697,-0.19451,-0.331223,-0.117398,-0.363873,-0.122286,-0.904566,-0.930425,-0.874776,-0.905365,0.50088,-0.543183,0.418045,-0.909244,2.39531,-0.585352,2 +-1.05424,-0.7379,-0.35697,-0.19451,-0.475314,-0.12194,-0.425429,-0.132866,1.98747,2.07911,1.94592,1.92705,-0.784467,1.35297,-1.50569,1.95126,-1.02411,-0.433945,1 +-1.52027,0.253683,-0.35697,-0.19451,-0.516483,-0.124583,-0.533152,-0.138849,-0.840536,-0.74332,-0.890092,-0.865644,1.56561,-1.02006,0.158341,-0.893712,0.775014,0.414152,0 +-0.382609,0.114514,-0.35697,-0.19451,-0.434145,-0.115994,-0.379262,-0.128521,-0.817252,-0.727464,-0.856907,-0.847311,1.47928,-0.934902,0.100629,-0.873002,0.627275,0.258746,0 +-0.204421,1.01912,-0.35697,-0.19451,0.183389,-0.0873045,0.0362409,-0.113668,0.244098,0.281001,0.27903,0.164046,0.136379,0.433278,-0.870855,0.260843,-0.609906,-0.367008,5 +1.646,1.9933,2.41015,-0.19451,-0.0842092,-0.0707019,-0.0253152,-0.0986761,-0.736729,-0.756005,-0.864565,-0.557042,0.424143,-1.4572,2.0436,-0.728036,0.745138,2.25774,6 +-0.588211,0.253683,-0.35697,-0.19451,-0.372392,-0.115746,-0.425429,-0.133622,-0.933671,-0.936767,-0.928382,-0.926753,0.731091,-0.730527,0.504613,-0.963607,2.51022,-0.524846,2 +0.0971283,-0.685711,-0.35697,-0.19451,0.409818,-0.0998975,-0.425429,-0.132428,-0.737699,-0.727464,-0.74459,-0.731203,0.692723,-0.651047,0.408426,-0.777221,-0.203275,-0.50089,3 +1.50893,1.26266,-0.35697,-0.19451,-0.0842092,-0.0975771,-0.0560933,-0.120647,0.267381,0.255631,0.330083,0.200712,-0.324044,0.637654,-0.755431,0.312617,-0.581032,-0.460559,5 +0.30273,-0.633523,-0.35697,-0.19451,1.83015,0.0202842,-0.240761,-0.111345,0.164545,0.144636,0.245845,0.0846044,-0.314452,0.677393,-0.83238,0.227191,-0.469481,-0.444881,3 +-1.65734,1.50621,-0.35697,-0.19451,1.04794,-0.0376927,0.913413,-0.103019,0.332382,0.325398,0.414321,0.237378,-0.333636,0.81932,-1.05361,0.398044,-0.493257,-0.421615,5 +-0.368903,-1.43375,-0.35697,-0.19451,-0.0636231,-0.110048,-0.363872,-0.125309,2.62195,2.79265,2.36711,2.73369,-0.583032,0.450309,-0.178312,2.37839,-1.37739,-0.586042,1 +1.33074,-0.163825,-0.35697,-0.19451,-0.598821,-0.125904,-0.548541,-0.138912,-0.827924,-0.762348,-0.846696,-0.859533,1.26825,-0.804329,0.0910108,-0.880768,0.772117,0.0312969,0 +-0.0399396,-0.00725971,-0.35697,-0.19451,-0.475314,-0.118967,-0.533152,-0.136582,-0.939491,-0.936767,-0.938592,-0.932864,0.788644,-0.764589,0.504613,-0.973961,2.51022,-0.5046,2 +0.056008,0.584211,-0.35697,-0.19451,0.203973,-0.0483556,-0.0560933,-0.110951,-0.364189,-0.416679,-0.280004,-0.41038,-0.180162,0.262965,-0.264879,-0.306079,0.0146555,-0.521874,3 +0.206783,0.653796,-0.35697,-0.19451,-0.598821,-0.12,-0.456207,-0.129618,-0.55822,-0.581585,-0.685878,-0.37677,0.241892,-1.30959,1.97627,-0.575303,-0.1574,2.3995,6 +0.68652,1.12349,-0.35697,-0.19451,0.409818,-0.0699264,-0.0253154,-0.118074,0.490517,0.480791,0.572586,0.396261,-0.48711,0.949894,-1.12094,0.558543,-0.572027,-0.437944,5 +0.919536,0.323268,2.41015,-0.19451,-0.516483,-0.124583,-0.25615,-0.131292,-0.848297,-0.74332,-0.902855,-0.87481,1.64234,-1.0598,0.148723,-0.893712,1.02994,0.49053,0 +-0.327782,-0.894465,-0.35697,-0.19451,0.224558,-0.0215151,-0.179205,-0.0331125,-0.276876,-0.264458,-0.193214,-0.385936,0.337813,0.33109,-0.89971,-0.218064,0.0438104,-0.312722,0 +1.17996,-0.285599,2.41015,-0.19451,0.245142,-0.0770957,-0.10226,-0.0922468,-0.532026,-0.600613,-0.422954,-0.590652,-0.189754,0.291351,-0.303354,-0.451046,0.526831,-0.515465,4 +0.206783,0.0275327,-0.35697,-0.19451,-0.598821,-0.125904,-0.486985,-0.134881,-0.808521,-0.727464,-0.839038,-0.8412,1.39295,-0.866777,0.0717735,-0.870414,0.520092,0.156004,0 +1.31703,-0.285599,-0.35697,-0.19451,-0.269469,-0.122601,-0.440818,-0.134315,-0.912327,-0.927254,-0.892644,-0.911475,0.606393,-0.616985,0.437282,-0.927365,2.27847,-0.558751,2 +0.590573,-1.92084,2.41015,-0.19451,-0.207717,-0.117398,-0.302317,-0.13337,2.44538,2.47869,2.32627,2.52897,-1.68613,1.21104,-0.361066,2.33697,-1.0937,-0.642156,1 +1.02919,2.20206,-0.35697,-0.19451,0.14222,-0.0956279,-0.271539,-0.122733,-0.728968,-0.749662,-0.846696,-0.560098,0.404958,-1.38339,1.93779,-0.730625,0.597861,2.30101,6 +-1.39691,-0.668315,-0.35697,-0.19451,-0.166547,-0.103854,-0.179205,-0.123798,-0.500011,-0.397651,-0.512297,-0.57843,1.3354,-0.492089,-0.505346,-0.54165,-0.11888,-0.0155112,0 +-0.821227,0.340664,-0.35697,-0.19451,-0.578236,-0.124335,-0.548541,-0.138912,-0.838595,-0.749662,-0.879881,-0.865644,1.48887,-0.963288,0.139104,-0.896301,0.737355,0.294746,0 +-0.231835,0.0797212,-0.35697,-0.19451,1.91248,-0.0298945,-0.209983,-0.122248,0.424547,0.385653,0.526638,0.335152,-0.698137,1.02937,-1.04399,0.511946,-0.499171,-0.471761,3 +-1.47915,-1.03363,-0.35697,-0.19451,-0.166547,-0.0969164,-0.209983,-0.115989,-0.475757,-0.435707,-0.43827,-0.553987,0.750275,-0.140109,-0.514964,-0.466578,0.0621922,-0.25406,0 +0.851002,0.184098,2.41015,-0.19451,0.409818,-0.0817205,-0.363873,-0.133622,-0.271055,-0.356425,-0.154924,-0.324827,-0.554255,0.552497,-0.380303,-0.179234,0.135161,-0.552348,4 +0.98807,-0.0420521,-0.35697,-0.19451,7.3262,0.259853,-0.41004,-0.124788,0.104395,0.131951,0.120764,0.0571053,0.165155,0.19484,-0.495727,0.100345,-0.640864,-0.409386,3 +0.864709,-1.41635,-0.35697,-0.19451,-0.41356,-0.115171,-0.209983,-0.118664,1.88269,1.7937,1.88466,1.94538,-2.33839,1.55734,-0.293735,1.88913,-0.810124,-0.67784,1 +-0.355196,0.114514,-0.35697,-0.19451,-0.495898,-0.117153,-0.517763,-0.130916,-0.934641,-0.933596,-0.938592,-0.920642,0.76946,-0.792975,0.571943,-0.973961,2.41289,-0.566953,2 +-0.410023,-0.911862,-0.35697,-0.19451,-0.310639,-0.10311,-0.0560934,-0.0761879,1.79732,1.82224,1.79787,1.75289,-1.2353,1.47786,-1.26522,1.80111,-0.940081,-0.504915,1 +0.384971,1.19308,-0.35697,-0.19451,0.553909,-0.0875817,1.39047,-0.069866,0.429397,0.414194,0.478138,0.380984,-0.48711,0.677393,-0.659244,0.462761,-0.675277,-0.518527,5 +-0.0947667,0.758173,2.41015,-0.19451,-0.372392,-0.115746,-0.10226,-0.123231,-0.588295,-0.5689,-0.698642,-0.468434,0.654354,-1.21876,1.40877,-0.652964,-0.781588,2.374,6 +-0.7664,-0.842277,2.41015,-0.19451,0.0804665,-0.0959254,-0.25615,-0.102575,-0.374861,-0.308856,-0.341268,-0.474545,0.90375,-0.0833378,-0.765049,-0.368208,-0.014856,-0.180533,0 +-0.368903,-0.0768445,5.17726,-0.19451,-0.166547,-0.115746,0.0362408,-0.0452039,-0.404936,-0.327883,-0.387216,-0.495933,1.02845,-0.213911,-0.668863,-0.414804,-0.081829,-0.139816,0 +-0.903467,-0.129033,-0.35697,-0.19451,0.409818,-0.0645904,-0.456207,-0.132428,-0.395234,-0.426193,-0.336163,-0.431768,0.0404572,0.0699439,-0.159074,-0.363031,-0.136787,-0.505962,4 +-1.52027,-1.6599,-0.35697,-0.19451,-0.495899,-0.125656,-0.333095,-0.132866,1.92344,1.85712,1.99697,1.87816,-2.16573,2.06828,-1.33255,2.00303,-0.760347,-0.566847,1 +1.41298,-1.41635,2.41015,-0.19451,0.0598822,-0.0926308,0.528689,-0.102235,0.19656,0.192205,0.227976,0.160991,-0.199346,0.37083,-0.428397,0.20907,-0.680308,-0.490013,3 +-0.12218,-1.53812,-0.35697,-0.19451,-0.392976,-0.109877,-0.425429,-0.130916,2.30859,2.31061,2.23182,2.37314,-1.85879,1.38135,-0.47649,2.24119,-1.01634,-0.636586,1 +-1.09536,-0.268203,-0.35697,4.39036,8.74652,0.158008,6.88434,0.130711,0.334322,0.255631,0.388794,0.341263,-0.985901,0.637654,-0.0917437,0.372157,-0.297482,-0.645552,2 +0.0285944,-0.0942407,-0.35697,-0.19451,3.57982,0.100802,-0.440818,-0.128418,-0.0712027,-0.0583253,-0.0579223,-0.0987231,0.174747,0.0302041,-0.226405,-0.0808635,-0.582298,-0.462534,3 +0.371264,1.68017,-0.35697,-0.19451,-0.351807,-0.11203,-0.271539,-0.103393,-0.587325,-0.606955,-0.713958,-0.41038,0.299445,-1.32662,1.94741,-0.603779,-0.0446232,2.37475,6 +-1.32838,0.13191,-0.35697,-0.19451,-0.619405,-0.125656,-0.456207,-0.136645,-0.834715,-0.746491,-0.877328,-0.859533,1.47928,-0.968965,0.158341,-0.896301,0.609894,0.315955,0 +0.768761,-1.88605,-0.35697,-0.19451,-0.392975,-0.122601,-0.27154,-0.119263,2.70441,2.88461,2.42072,2.84063,-0.563847,0.325413,0.0140616,2.43275,-1.41148,-0.626185,1 +1.0429,0.0275327,2.41015,-0.19451,-0.0636248,-0.0974226,1.69825,-0.0428123,0.165515,0.252459,0.110554,0.145714,0.654354,-0.230942,-0.264879,0.08999,-1.02672,-0.309112,3 +1.0429,0.0275327,-0.35697,-0.19451,-0.331223,-0.117398,2.08298,1.62397,0.150963,0.17952,0.17437,0.0937709,0.136379,0.279996,-0.611151,0.154707,-0.6844,-0.394819,3 +-0.903467,-0.0594483,-0.35697,-0.19451,0.101051,-0.0830223,-0.271539,-0.108378,-0.470907,-0.635497,-0.254478,-0.566209,-1.1106,1.05776,-0.678481,-0.280193,1.11416,-0.561926,2 +-1.42433,-1.03363,-0.35697,-0.19451,5.3295,0.161421,4.92994,0.159585,-0.158517,-0.232745,-0.14216,-0.104834,-0.544663,-0.0208898,0.581562,-0.16629,-0.114523,-0.796544,2 +0.974363,-0.494353,-0.35697,-0.19451,-0.0636248,-0.102249,-0.302317,-0.118664,-0.770684,-0.74332,-0.767564,-0.792313,0.874973,-0.611308,0.158341,-0.800519,0.375249,-0.250018,4 +-0.84864,-1.81646,-0.35697,-0.19451,0.203973,-0.100855,-0.271539,-0.125105,0.213053,0.147807,0.335188,0.127381,-0.765282,0.989634,-0.909329,0.317795,-0.3139,-0.498778,3 +-1.09536,-0.268203,-0.35697,4.39036,8.74652,0.158008,6.88434,0.130711,0.334322,0.255631,0.388794,0.341263,-0.985901,0.637654,-0.0917437,0.372157,-0.297482,-0.645552,2 +-0.0262328,1.03651,-0.35697,-0.19451,-0.290054,-0.112773,1.08269,0.487823,-0.125531,-0.0963805,-0.116634,-0.162888,0.36659,-0.0435982,-0.293735,-0.140403,-0.702804,-0.393361,5 +-0.410023,-0.250806,-0.35697,-0.19451,-0.331223,-0.116407,-0.133038,-0.0937582,-0.518444,-0.388138,-0.555692,-0.593708,1.60398,-0.673756,-0.466871,-0.575303,-0.183503,0.149931,0 +0.851002,-0.59873,-0.35697,-0.19451,0.409818,-0.0915072,-0.363873,-0.122011,-0.749341,-0.756005,-0.71651,-0.77398,0.54884,-0.395578,0.119867,-0.748745,0.532838,-0.440673,4 +-0.135887,-0.216014,-0.35697,-0.19451,-0.495898,-0.118307,-0.133038,-0.122458,-0.498071,-0.660867,-0.3234,-0.54482,-1.07223,0.756872,-0.207167,-0.350087,1.10648,-0.627968,2 +-0.231835,-0.00725971,-0.35697,-0.19451,-0.475314,-0.12194,-0.486985,-0.135637,-0.793968,-0.702093,-0.83138,-0.828978,1.47928,-0.90084,0.0429175,-0.854882,0.427393,0.244068,0 +1.11143,-1.08582,-0.35697,-0.19451,-0.495898,-0.118307,-0.533152,-0.132359,-0.785237,-0.803574,-0.734379,-0.819812,0.472103,-0.304745,0.0429175,-0.766866,0.959216,-0.4438,4 +-1.24614,0.792965,-0.35697,-0.19451,-0.392976,-0.116036,-0.225372,-0.125211,-0.634863,-0.632325,-0.790538,-0.44399,0.539248,-1.55938,2.10131,-0.632254,0.160643,2.17175,6 +-1.65734,-0.476957,-0.35697,-0.19451,0.121635,-0.0612391,-0.240761,-0.101882,-0.877402,-0.911397,-0.836486,-0.883976,0.404958,-0.446672,0.350714,-0.870414,2.1163,-0.570481,2 +-1.31467,-0.7379,2.41015,-0.19451,0.265726,-0.0436482,0.0824076,-0.0763769,-0.434041,-0.362767,-0.415296,-0.520377,0.999671,-0.230942,-0.611151,-0.44328,-0.0623305,-0.131647,0 +0.056008,1.05391,2.41015,-0.19451,0.121635,-0.106998,0.328632,-0.109248,0.214023,0.255631,0.235634,0.145714,0.203524,0.319736,-0.745812,0.216836,-0.66171,-0.367104,5 +-0.50597,0.218891,-0.35697,-0.19451,-0.0224559,-0.101668,-0.10226,-0.10425,-0.760983,-0.81943,-0.711405,-0.755647,0.0884179,-0.29339,0.408426,-0.743568,1.1747,-0.679318,2 +-1.42433,-0.00725971,-0.35697,-0.19451,-0.372392,-0.118719,-0.394651,-0.134126,-0.465086,-0.489618,-0.41019,-0.502044,0.155563,-0.0152127,-0.130218,-0.438103,-0.0787514,-0.487167,3 +-0.711572,-1.81646,-0.35697,-0.19451,-0.351807,-0.118619,-0.410041,-0.128602,2.36971,2.3899,2.27266,2.44036,-1.74368,1.2962,-0.447634,2.28261,-1.05714,-0.635002,1 +-0.752693,-1.48594,-0.35697,-0.19451,-0.248885,-0.121239,-0.394651,-0.127247,0.548726,0.490305,0.692562,0.426816,-0.976309,1.40974,-1.4095,0.680211,-0.398046,-0.463075,3 +0.138249,1.52361,-0.35697,-0.19451,-0.00187146,-0.0977012,-0.0714823,-0.120619,-0.500011,-0.524502,-0.63993,-0.303439,0.184339,-1.34365,2.09169,-0.513175,-0.224873,2.38812,6 +0.357557,0.688588,-0.35697,-0.19451,0.0598821,-0.0763524,4.36055,0.573786,0.0772311,0.049498,0.0875797,0.0907154,-0.314452,0.132392,0.0910108,0.0692805,-0.714147,-0.747147,5 +0.494625,0.532022,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.34445,0.897342,-0.35697,-0.19451,0.698001,-0.0576355,1.31353,-0.0604382,0.544846,0.512504,0.656824,0.435982,-0.736506,1.19401,-1.28446,0.64397,-0.499581,-0.450681,5 +1.75565,-0.842277,-0.35697,-0.19451,-0.454729,-0.121362,-0.425429,-0.133622,1.3491,1.11822,1.64726,1.19985,-3.19209,3.09584,-2.04433,1.64838,-0.211167,-0.562404,1 +-0.437437,1.15829,-0.35697,-0.19451,1.33612,-0.0866651,0.0516298,-0.0851711,0.433278,0.414194,0.521533,0.341263,-0.525479,0.944217,-1.07285,0.506769,-0.540019,-0.446278,5 +1.44039,-0.181222,-0.35697,-0.19451,-0.290054,-0.116118,-0.517763,-0.130916,-0.404936,-0.41985,-0.374453,-0.422602,0.193931,-0.128755,0.0236802,-0.401861,-0.336433,-0.518163,4 +0.193076,0.0797212,-0.35697,-0.19451,0.389233,0.0485181,0.20552,0.0712385,-0.831804,-0.866999,-0.795643,-0.832034,0.356998,-0.440995,0.389189,-0.828995,1.65491,-0.606646,2 +1.09772,1.22787,-0.35697,-0.19451,-0.104794,-0.100543,0.821079,-0.0884211,0.111186,0.122437,0.143738,0.0601609,0.0116809,0.308382,-0.534202,0.123643,-0.640943,-0.436585,5 +-0.930881,1.83674,-0.35697,-0.19451,0.306896,-0.0813891,0.282465,-0.116214,-0.587325,-0.59427,-0.703747,-0.434824,0.414551,-1.2585,1.71656,-0.624488,-0.346902,2.40293,6 +-0.410023,-1.15541,-0.35697,-0.19451,-0.022456,-0.0512462,-0.0868713,-0.110951,-0.281726,-0.232745,-0.223846,-0.395103,0.673538,0.1551,-0.938185,-0.249128,-0.0052649,-0.243391,0 +0.426091,1.12349,-0.35697,-0.19451,0.88326,-0.0757231,0.713356,-0.0764493,0.6341,0.636183,0.723194,0.51848,-0.496703,1.11453,-1.39026,0.711276,-0.554735,-0.410816,5 +-0.862347,1.33225,-0.35697,-0.19451,0.14222,-0.0797346,0.374799,-0.109825,0.628279,0.607642,0.741062,0.506258,-0.698137,1.26781,-1.44797,0.729396,-0.500865,-0.429479,5 +1.44039,-0.111637,-0.35697,-0.19451,0.51274,-0.106594,-0.271539,-0.125537,0.052007,0.0209565,0.128422,-0.0101147,-0.324044,0.552497,-0.611151,0.108111,-0.40238,-0.48102,3 +1.01548,-0.0594483,-0.35697,-0.19451,0.595078,-0.0363807,1.6367,0.777261,0.0597682,0.0748682,0.0824744,0.0173844,0.0884179,0.200517,-0.428397,0.0615145,-0.675142,-0.442529,3 +1.0566,1.47142,-0.35697,-0.19451,-0.0636247,-0.0961731,-0.163816,-0.0882164,-0.466056,-0.492789,-0.609298,-0.263718,0.136379,-1.33798,2.13017,-0.479522,-0.254159,2.43291,6 +-1.39691,0.845154,-0.35697,-0.19451,-0.207716,-0.107364,1.86753,-0.0405885,0.138351,0.147807,0.161607,0.0998819,-0.0266877,0.268642,-0.428397,0.141764,-0.707106,-0.494172,5 +-0.84864,-1.92084,-0.35697,-0.19451,-0.269469,-0.104762,-0.41004,-0.128521,2.74419,2.97658,2.4054,2.89563,-0.122609,-0.00953562,0.139104,2.41722,-1.52025,-0.591373,1 +-0.437437,-1.34677,-0.35697,-0.19451,0.0804668,-0.0909702,-0.179205,-0.109439,2.3309,2.37404,2.22416,2.39148,-1.50388,1.19969,-0.524583,2.23342,-1.09368,-0.609278,1 +0.206783,0.0275327,-0.35697,-0.19451,-0.454729,-0.122353,0.0670187,-0.075936,-0.8677,-0.89237,-0.836486,-0.871755,0.481696,-0.503443,0.369952,-0.870414,1.86723,-0.563854,2 +0.563159,0.532022,-0.35697,-0.19451,-0.660574,-0.126647,-0.548541,-0.138912,-0.952103,-0.930425,-0.971777,-0.938975,0.970895,-0.912194,0.571943,-1.00761,2.51022,-0.423606,4 +-0.643038,-0.668315,-0.35697,-0.19451,1.33612,-0.080358,1.12886,-0.0619842,0.310068,0.274658,0.399005,0.234322,-0.57344,0.847706,-0.861236,0.382512,-0.489095,-0.475279,3 +0.782468,-1.46854,-0.35697,-0.19451,1.33612,0.00063481,-0.502374,-0.125211,-0.721207,-0.727464,-0.685878,-0.749536,0.529656,-0.355838,0.0717735,-0.717681,0.653184,-0.435718,4 +0.782468,0.201495,-0.35697,-0.19451,0.862676,-0.102139,-0.363873,-0.122733,-0.113889,-0.121751,-0.0732383,-0.153721,0.0212729,0.177809,-0.322591,-0.0963956,-0.517145,-0.472588,3 +1.52263,-0.37258,-0.35697,-0.19451,-0.310638,-0.125904,-0.179205,-0.119263,0.3838,0.382481,0.462822,0.286265,-0.324044,0.842029,-1.1017,0.447229,-0.525104,-0.418652,3 +-1.27355,0.601607,-0.35697,-0.19451,-0.351807,-0.108066,-0.440818,-0.12978,-0.761953,-0.756005,-0.742037,-0.783146,0.673538,-0.492089,0.158341,-0.774632,0.410343,-0.401167,3 +-1.39691,-0.546542,-0.35697,4.39036,0.821507,-0.0239241,1.26736,-0.0434523,-0.638743,-0.686237,-0.586324,-0.648706,0.0884179,-0.174171,0.206435,-0.616722,0.604465,-0.593828,2 +-1.27355,-0.494353,-0.35697,-0.19451,-0.2283,-0.104101,-0.0560932,-0.0875236,-0.888073,-0.914569,-0.844144,-0.905365,0.481696,-0.435318,0.254528,-0.87818,2.15805,-0.510608,2 +0.234196,1.01912,-0.35697,-0.19451,0.224557,-0.10278,-0.0407044,-0.078644,-0.0663518,-0.0361264,-0.0451591,-0.120111,0.328221,0.086975,-0.47649,-0.0679201,-0.585545,-0.375415,5 +1.48151,1.05391,-0.35697,-0.19451,-0.516483,-0.125574,-0.456207,-0.126821,-0.660087,-0.657696,-0.787985,-0.502044,0.558433,-1.39475,1.80313,-0.681439,-0.0934584,2.25941,6 +1.75565,-1.59031,-0.35697,-0.19451,-0.516483,-0.114221,-0.302318,-0.130687,2.08836,2.02837,2.04803,2.17148,-2.24247,1.4438,-0.197549,2.05481,-0.902918,-0.684833,1 +1.07031,-1.08582,-0.35697,-0.19451,-0.639989,-0.121089,-0.471596,-0.132638,-0.787177,-0.809917,-0.731826,-0.822867,0.433735,-0.276359,0.0332989,-0.764277,1.04843,-0.45641,4 +-0.368903,-0.285599,-0.35697,-0.19451,1.02735,-0.0440612,0.420966,0.151092,-0.74255,-0.797231,-0.680773,-0.755647,0.107602,-0.19688,0.225672,-0.712504,1.18406,-0.59356,2 +-1.19131,1.14089,-0.35697,-0.19451,-0.331222,-0.122353,1.05191,0.426359,-0.208965,-0.185176,-0.205977,-0.233163,0.385774,-0.151463,-0.130218,-0.231008,-0.681905,-0.444079,5 +-1.19131,0.392853,-0.35697,-0.19451,-0.516483,-0.124583,-0.486985,-0.135637,-0.836655,-0.775033,-0.85946,-0.859533,1.23947,-0.838392,0.177579,-0.891123,0.633069,0.0676482,0 +0.357557,0.0971174,-0.35697,-0.19451,2.283,0.054235,-0.471596,-0.126097,-0.131352,-0.150292,-0.0706857,-0.184276,-0.0650563,0.297028,-0.438015,-0.093807,-0.387569,-0.463265,3 +-0.533384,1.21047,-0.35697,-0.19451,0.512741,-0.0904678,-0.0560933,-0.109405,0.637981,0.594957,0.743615,0.545979,-0.909164,1.22807,-1.16903,0.731985,-0.557638,-0.483052,5 +-0.286662,-0.96405,-0.35697,-0.19451,-0.331223,-0.114425,-0.425429,-0.126065,1.80023,1.77784,1.85403,1.73761,-1.66694,1.83552,-1.43836,1.85806,-0.822347,-0.522283,1 +-0.889761,-1.24239,-0.35697,-0.19451,-0.434145,-0.114012,-0.456207,-0.127576,1.95351,1.94592,1.95358,1.93927,-1.65735,1.60276,-1.05361,1.95902,-0.913294,-0.560906,1 +-0.862347,1.36704,-0.35697,-0.19451,0.245142,-0.0892145,-0.25615,-0.120951,0.613727,0.594957,0.705325,0.515424,-0.669361,1.11453,-1.21713,0.693155,-0.565082,-0.451499,5 +1.61858,-0.511749,-0.35697,-0.19451,-0.454729,-0.120371,-0.610097,-0.139668,-0.939491,-0.930425,-0.941145,-0.935919,0.846197,-0.781621,0.475757,-0.97655,2.41289,-0.458376,4 +-1.41062,-0.633523,-0.35697,-0.19451,-0.00187094,-0.0992337,-0.348484,-0.129568,0.706862,0.655211,0.830406,0.600977,-1.04345,1.40406,-1.33255,0.82,-0.513309,-0.480269,3 +-0.396316,-0.546542,2.41015,-0.19451,0.533325,-0.0609088,-0.179205,-0.129088,-0.370981,-0.315198,-0.331058,-0.468434,0.807828,-0.0379211,-0.745812,-0.357853,-0.0204546,-0.206915,0 +-0.0810599,0.514626,-0.35697,-0.19451,1.17144,-0.00378846,-0.656264,-0.137858,-0.882252,-0.851143,-0.925829,-0.850366,0.999671,-1.01438,0.716223,-0.961018,-1.49742,-0.55575,4 +-0.533384,1.22787,-0.35697,-0.19451,-0.0430401,-0.0988985,-0.148427,-0.133622,-0.531056,-0.559386,-0.632272,-0.37677,0.174747,-1.11089,1.70694,-0.575303,-0.327456,2.55996,6 +-1.62993,0.879946,-0.35697,-0.19451,-0.00187135,-0.104845,0.128575,-0.0716537,-0.470907,-0.505475,-0.606746,-0.269829,0.0692336,-1.29256,2.12055,-0.484699,-0.197213,2.43178,6 +-1.1776,-0.216014,-0.35697,-0.19451,-0.434145,-0.118967,-0.425429,-0.132866,-0.812401,-0.736977,-0.839038,-0.844255,1.34499,-0.844069,0.0813921,-0.867825,0.595796,0.12109,0 +-1.39691,0.410249,-0.35697,-0.19451,-0.578236,-0.124335,-0.471596,-0.133055,-0.850237,-0.81943,-0.844144,-0.877865,0.970895,-0.656725,0.139104,-0.873002,1.1894,-0.128682,0 +1.68712,-1.22499,-0.35697,-0.19451,-0.434142,-0.120949,-0.440818,-0.128269,2.55986,2.72288,2.33393,2.64508,-0.602216,0.592237,-0.399541,2.34474,-1.3393,-0.553013,1 +-1.25984,-0.407372,-0.35697,-0.19451,-0.434145,-0.1154,-0.486985,-0.133963,-0.938521,-0.933596,-0.951356,-0.917586,0.807828,-0.855423,0.639274,-0.986905,2.41289,-0.630412,2 +-0.300369,1.61059,-0.35697,-0.19451,-0.372392,-0.112773,-0.0714823,-0.120712,-0.589265,-0.625983,-0.701194,-0.413436,0.145971,-1.23011,1.93779,-0.606367,0.0210363,2.46577,6 +1.61858,-0.511749,-0.35697,-0.19451,-0.454729,-0.120371,-0.610097,-0.139668,-0.939491,-0.930425,-0.941145,-0.935919,0.846197,-0.781621,0.475757,-0.97655,2.41289,-0.458376,4 +-1.39691,-1.71209,-0.35697,-0.19451,-0.290054,-0.110578,-0.502374,-0.129171,0.874698,0.794747,1.02951,0.756806,-1.43673,1.75036,-1.52492,1.02192,-0.476119,-0.496671,3 +-0.684159,-0.842277,-0.35697,-0.19451,0.348065,-0.0244882,-0.0560932,-0.0769437,-0.290458,-0.2708,-0.216188,-0.395103,0.414551,0.257288,-0.851617,-0.241362,0.0121341,-0.30589,0 +1.33074,0.13191,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.57746,-1.05103,-0.35697,-0.19451,-0.495898,-0.11517,-0.56393,-0.133545,-0.735759,-0.756005,-0.693536,-0.758702,0.414551,-0.321776,0.129485,-0.725447,0.529139,-0.491117,4 +1.19367,-0.511749,-0.35697,-0.19451,-0.0636248,-0.0743703,-0.333095,-0.123798,-0.561131,-0.635497,-0.443375,-0.624262,-0.21853,0.325413,-0.33221,-0.471756,0.655981,-0.515467,4 +-0.533384,1.1061,-0.35697,-0.19451,-0.290054,-0.111252,-0.271539,-0.127414,-0.610609,-0.603784,-0.777774,-0.41038,0.558433,-1.61615,2.17826,-0.603779,0.159591,2.13828,6 +1.00178,1.03651,-0.35697,-0.19451,-0.310638,-0.100959,0.267075,-0.113009,0.44492,0.458592,0.513875,0.344319,-0.237715,0.824998,-1.15941,0.499003,-0.561831,-0.396071,5 +-0.0810599,-0.668315,-0.35697,-0.19451,-0.516483,-0.120619,-0.42543,-0.129843,1.67605,1.59708,1.80042,1.58484,-2.07941,2.20453,-1.64997,1.8037,-0.66325,-0.532858,1 +1.2485,0.792965,-0.35697,-0.19451,-0.392976,-0.118637,-0.133038,-0.133055,-0.535907,-0.572071,-0.655246,-0.352326,0.107602,-1.23579,1.98589,-0.554594,-0.114479,2.46463,6 +-1.38321,1.41923,-0.35697,-0.19451,0.121636,-0.0919211,-0.00992611,-0.0978457,0.498278,0.483962,0.587902,0.399317,-0.535071,1.00666,-1.16903,0.574075,-0.538661,-0.437035,5 +-0.615625,-0.129033,-0.35697,-0.19451,-0.145963,-0.0908876,-0.240761,-0.125309,-0.402026,-0.331055,-0.382111,-0.489822,0.970895,-0.19688,-0.640007,-0.409627,-0.0855364,-0.174296,0 +-1.53398,1.17568,-0.35697,-0.19451,0.615662,-0.00673209,1.48281,0.540471,-0.30792,-0.264458,-0.328505,-0.321772,0.644762,-0.389901,0.0140616,-0.350087,-0.831242,-0.320556,5 +-1.5751,-0.511749,-0.35697,-0.19451,-0.537067,-0.124665,-0.471596,-0.136834,-0.911357,-0.933596,-0.877328,-0.920642,0.539248,-0.520474,0.341096,-0.911833,2.44939,-0.535037,2 +-0.300369,1.78455,-0.35697,-0.19451,-0.0636248,-0.0892359,-0.225372,-0.110384,-0.6174,-0.64501,-0.742037,-0.434824,0.251484,-1.33798,2.01474,-0.624488,0.0681665,2.37279,6 +1.46781,-1.60771,-0.35697,-0.19451,-0.495899,-0.119632,-0.456207,-0.134318,2.04082,1.97129,2.03016,2.09815,-2.29043,1.60276,-0.418778,2.03668,-0.856613,-0.661332,1 +-0.0262328,0.340664,-0.35697,-0.19451,-0.598821,-0.118619,-0.594708,-0.137858,-0.959865,-0.936767,-0.987093,-0.938975,0.990079,-0.968965,0.648893,-1.02315,1.53688,-0.473359,2 +0.179369,0.35806,-0.35697,-0.19451,-0.372392,-0.108117,-0.594708,-0.131091,-0.953074,-0.920911,-0.992198,-0.926753,1.06682,-1.04277,0.696986,-1.02832,-0.24757,-0.350327,4 +-1.12278,0.236287,-0.35697,-0.19451,-0.639989,-0.125574,-0.286928,-0.110384,-0.926879,-0.91774,-0.928382,-0.923697,0.836605,-0.770267,0.466138,-0.963607,2.15101,-0.458376,4 +1.55005,-0.0942407,-0.35697,-0.19451,-0.578236,-0.123344,-0.456207,-0.138912,-0.839565,-0.759176,-0.872223,-0.868699,1.41213,-0.906517,0.119867,-0.896301,0.832951,0.204292,0 +-1.43803,1.14089,-0.35697,-0.19451,-0.0636244,-0.0882448,0.0670188,-0.0751803,-0.0770236,-0.077353,-0.0323956,-0.129278,0.0596415,0.23458,-0.457252,-0.0549765,-0.512503,-0.440927,5 +-0.917174,-0.216014,-0.35697,-0.19451,0.492156,-0.0503377,-0.10226,-0.123987,-0.464115,-0.492789,-0.412743,-0.492877,0.117194,-0.0379211,-0.053269,-0.440691,-0.0773807,-0.511747,4 +-1.04054,0.271079,-0.35697,-0.19451,-0.639989,-0.125574,-0.579319,-0.13866,-0.958895,-0.936767,-0.98454,-0.938975,0.980487,-0.957611,0.639274,-1.02056,1.53688,-0.473359,2 +-1.41062,-0.633523,-0.35697,-0.19451,-0.00187094,-0.0992337,-0.348484,-0.129568,0.706862,0.655211,0.830406,0.600977,-1.04345,1.40406,-1.33255,0.82,-0.513309,-0.480269,3 +1.50893,-0.650919,-0.35697,-0.19451,-0.598821,-0.126895,-0.594708,-0.139101,-0.647475,-0.714778,-0.530166,-0.715926,-0.0842406,0.251611,-0.341829,-0.559771,0.893679,-0.490027,4 +-1.24614,-0.703107,-0.35697,-0.19451,-0.166547,-0.11971,0.00546292,-0.132866,-0.461205,-0.378624,-0.453586,-0.54482,1.12437,-0.327453,-0.572676,-0.48211,-0.0736708,-0.0932546,0 +-1.41062,-1.15541,-0.35697,-0.19451,-0.372392,-0.110791,-0.486985,-0.131859,2.33284,2.3677,2.2114,2.41898,-1.58061,1.10318,-0.284117,2.22048,-1.10065,-0.646861,1 +-0.396316,-0.511749,-0.35697,-0.19451,-0.434145,-0.120949,-0.548541,-0.132866,-0.440832,-0.480104,-0.354032,-0.502044,0.00208865,0.217548,-0.370685,-0.381151,0.10798,-0.46721,4 +-0.738986,-0.494353,-0.35697,-0.19451,0.0804665,-0.0463736,0.0670187,-0.0797146,-0.721207,-0.800403,-0.660352,-0.709815,-0.132201,-0.185525,0.446901,-0.691794,1.1914,-0.700246,2 +1.2485,-0.790088,-0.35697,-0.19451,-0.207716,-0.11938,0.528689,-0.032105,-0.0246352,-0.0424689,0.0416317,-0.0865013,-0.141793,0.421924,-0.572676,0.0200954,-0.381864,-0.447111,3 +1.72824,0.86255,2.41015,-0.19451,0.101051,-0.0863942,-0.00992645,-0.119142,0.516711,0.487133,0.628745,0.405428,-0.688545,1.1713,-1.29408,0.615494,-0.475348,-0.443465,5 +0.6454,-1.10322,-0.35697,-0.19451,-0.392976,-0.118637,-0.379262,-0.134567,2.26881,2.31696,2.1629,2.32426,-1.40796,1.15427,-0.54382,2.1713,-1.0996,-0.602128,1 +-0.780106,0.0623251,-0.35697,-0.19451,-0.310638,-0.105553,-0.317706,-0.126097,-0.541728,-0.625983,-0.407638,-0.615096,-0.324044,0.450309,-0.438015,-0.435514,0.764535,-0.435446,2 +-0.588211,-0.250806,2.41015,-0.19451,-0.434145,-0.12194,-0.302317,-0.126569,-0.504862,-0.388138,-0.532718,-0.57843,1.46969,-0.599954,-0.457252,-0.56236,-0.222809,0.0558683,0 +0.563159,-1.52073,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.2485,0.479834,-0.35697,-0.19451,-0.639989,-0.121089,-0.640875,-0.137245,-0.967626,-0.936767,-1.00751,-0.938975,1.06682,-1.0598,0.725842,-1.04386,-0.896462,-0.473359,4 +0.768761,0.671192,-0.35697,-0.19451,0.286311,0.0322485,3.03709,0.0241321,0.13447,0.103409,0.16416,0.127381,-0.391189,0.308382,-0.130218,0.144352,-0.619204,-0.624191,5 +0.590573,-1.45114,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.06795,1.88893,-0.35697,-0.19451,-0.2283,-0.0993322,-0.394651,-0.124963,-0.637773,-0.622812,-0.808406,-0.440935,0.654354,-1.66157,2.15902,-0.629666,0.324441,2.09551,6 +-0.368903,0.35806,-0.35697,-0.19451,-0.619405,-0.126647,-0.579319,-0.13866,-0.944342,-0.936767,-0.94625,-0.938975,0.836605,-0.787298,0.494994,-0.981727,2.51022,-0.473359,2 +0.755054,0.305872,-0.35697,-0.19451,-0.681158,-0.124274,-0.656264,-0.137858,-0.969566,-0.936767,-1.01262,-0.938975,1.086,-1.08251,0.745079,-1.04903,-1.38313,-0.473359,4 +-0.547091,1.33225,-0.35697,-0.19451,0.965598,-0.0308825,1.00575,-0.0665842,0.564249,0.55373,0.654272,0.460426,-0.554255,1.06344,-1.24598,0.641381,-0.555001,-0.430944,5 +0.357557,1.1061,-0.35697,-0.19451,-0.248885,-0.110791,-0.10226,-0.122475,-0.665908,-0.670381,-0.79309,-0.502044,0.50088,-1.39475,1.86084,-0.681439,0.00643676,2.27752,6 +0.193076,-0.181222,-0.35697,-0.19451,-0.351807,-0.105553,-0.486985,-0.133002,-0.202174,-0.226403,-0.165134,-0.220942,-0.0554641,0.081298,-0.082125,-0.189588,-0.435849,-0.541584,4 +0.30273,-1.25979,2.41015,-0.19451,-0.26947,-0.10278,-0.256151,-0.107109,2.33866,2.40258,2.20629,2.40981,-1.32163,1.03505,-0.428397,2.2153,-1.14469,-0.610735,1 +-1.52027,0.392853,2.41015,-0.19451,-0.372392,-0.116737,-0.363873,-0.127576,-0.693072,-0.708436,-0.655246,-0.715926,0.424143,-0.316099,0.110248,-0.686617,0.267055,-0.482752,3 +-1.62993,-0.0594483,-0.35697,-0.19451,-0.578236,-0.125326,-0.533152,-0.138849,-0.940462,-0.930425,-0.94625,-0.932864,0.855789,-0.810006,0.514232,-0.981727,2.51022,-0.449346,2 +0.151956,0.0971174,2.41015,-0.19451,0.0187132,-0.0585137,-0.117649,-0.0865159,-0.323443,-0.391309,-0.213635,-0.385936,-0.352821,0.467341,-0.438015,-0.238774,0.100103,-0.51649,3 +-0.42373,0.218891,-0.35697,-0.19451,-0.619405,-0.126647,-0.610097,-0.139668,-0.903596,-0.908226,-0.882434,-0.914531,0.692723,-0.599954,0.321858,-0.91701,1.84047,-0.458376,4 +1.37186,-1.52073,-0.35697,-0.19451,-0.537067,-0.121239,-0.56393,-0.134599,-0.762923,-0.79406,-0.701194,-0.798423,0.337813,-0.213911,0.0236802,-0.733213,0.911166,-0.481712,4 +1.0566,1.21047,-0.35697,-0.19451,-0.290053,-0.110578,0.267075,-0.0978457,0.121858,0.144636,0.148844,0.0662718,0.107602,0.279996,-0.582295,0.12882,-0.650461,-0.407744,5 +-0.834933,1.26266,-0.35697,-0.19451,0.286311,-0.0743318,0.282465,-0.101453,0.336262,0.32857,0.396452,0.267932,-0.343228,0.677393,-0.803524,0.379923,-0.599607,-0.453602,5 +-1.39691,-0.668315,-0.35697,-0.19451,-0.166547,-0.103854,-0.179205,-0.123798,-0.500011,-0.397651,-0.512297,-0.57843,1.3354,-0.492089,-0.505346,-0.54165,-0.11888,-0.0155112,0 +-1.06795,0.897342,-0.35697,-0.19451,-0.207716,-0.109719,-0.348484,-0.125069,-0.348667,-0.403994,-0.468902,-0.14761,-0.21853,-1.08818,2.06283,-0.381151,-0.330279,2.58394,6 +-1.20502,-0.790088,-0.35697,-0.19451,-0.331222,-0.123344,0.036241,-0.0913022,0.177157,0.236603,0.176923,0.118215,0.395366,0.143746,-0.640007,0.157296,-0.735741,-0.338551,3 +0.275317,0.549418,-0.35697,4.39036,1.13027,0.666925,2.08298,1.92399,-0.674639,-0.714778,-0.611851,-0.703704,0.184339,-0.134432,0.0429175,-0.642609,1.40336,-0.503214,4 +0.617986,1.0713,-0.35697,-0.19451,-0.475314,-0.117429,-0.271539,-0.122368,-0.689191,-0.705265,-0.790538,-0.54482,0.414551,-1.24147,1.68771,-0.717681,0.0363201,2.41094,6 +1.4541,-1.62511,-0.35697,4.39036,-0.434145,-0.111425,0.159353,-0.0926157,-0.786207,-0.800403,-0.747142,-0.810645,0.510472,-0.384224,0.139104,-0.77981,0.818299,-0.442868,4 +-1.46545,-1.92084,-0.35697,-0.19451,-0.372391,-0.122683,-0.363872,-0.1374,2.70344,2.8973,2.41051,2.83757,-0.43915,0.262965,-0.00517577,2.4224,-1.43591,-0.601479,1 +-1.19131,1.36704,-0.35697,-0.19451,0.101051,-0.103454,1.6367,-0.0974554,0.531264,0.496647,0.628745,0.442093,-0.746098,1.08614,-1.09208,0.615494,-0.544785,-0.472939,5 +-0.752693,-0.442164,2.41015,-0.19451,-0.248885,-0.0889881,-0.179205,-0.117752,-0.848297,-0.901883,-0.803301,-0.8412,0.203524,-0.395578,0.466138,-0.836761,2.0321,-0.668156,2 +-0.80752,0.549418,-0.35697,-0.19451,0.677416,0.358712,1.46742,1.07684,-0.754192,-0.76869,-0.724168,-0.767869,0.481696,-0.418287,0.225672,-0.756511,-0.553062,-0.507802,4 +0.837295,-1.34677,-0.35697,-0.19451,-0.45473,-0.118389,-0.379261,-0.125498,2.57926,2.75776,2.32882,2.67869,-0.477518,0.444632,-0.274498,2.33956,-1.38514,-0.562802,1 +-0.84864,-0.0246559,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.961805,-0.936767,-0.992198,-0.938975,1.00926,-0.991673,0.66813,-1.02832,2.51022,-0.473359,2 +-1.25984,0.323268,-0.35697,-0.19451,-0.00187127,-0.096602,-0.425429,-0.116214,-0.86964,-0.889198,-0.849249,-0.865644,0.529656,-0.577245,0.446901,-0.883357,1.6937,-0.593855,2 +0.878415,1.05391,-0.35697,4.39036,-0.0842094,-0.108505,0.0977966,-0.106039,0.354695,0.372968,0.416874,0.258766,-0.122609,0.705779,-1.07285,0.400633,-0.551654,-0.389289,5 +0.206783,-0.877069,-0.35697,-0.19451,-0.063625,-0.108851,-0.456207,-0.123105,0.242157,0.366625,0.159054,0.219045,0.932526,-0.355838,-0.33221,0.139175,-1.09823,-0.206228,3 +1.33074,-0.529145,-0.35697,-0.19451,-0.0636247,-0.125904,-0.625486,-0.139605,-0.906506,-0.908226,-0.890092,-0.914531,0.721499,-0.634016,0.350714,-0.924776,1.97759,-0.460854,4 +-1.52027,0.392853,2.41015,-0.19451,-0.372392,-0.116737,-0.363873,-0.127576,-0.693072,-0.708436,-0.655246,-0.715926,0.424143,-0.316099,0.110248,-0.686617,0.267055,-0.482752,3 +-0.177007,-1.48594,-0.35697,-0.19451,3.39456,0.119631,-0.363873,-0.122011,0.722384,0.724979,0.78701,0.634587,-0.563847,1.0237,-1.16903,0.775993,-0.679927,-0.437398,3 +-0.944588,-0.285599,-0.35697,4.39036,0.986183,0.171654,1.2058,0.254057,-0.761953,-0.806745,-0.71651,-0.764813,0.213116,-0.321776,0.331477,-0.748745,1.33021,-0.601077,2 +1.71453,0.914738,-0.35697,4.39036,-0.104793,-0.103609,0.282465,-0.111345,0.435218,0.407852,0.539402,0.332097,-0.602216,1.05208,-1.17865,0.52489,-0.476353,-0.446092,5 +-1.46545,1.40183,-0.35697,-0.19451,0.245142,-0.10044,0.0977966,-0.120647,0.545816,0.531531,0.638956,0.442093,-0.57344,1.06911,-1.23636,0.625849,-0.544733,-0.437217,5 +-0.177007,-1.53812,-0.35697,-0.19451,-0.290054,-0.0998895,-0.271539,-0.126065,2.37068,2.41527,2.2599,2.43425,-1.52306,1.20536,-0.514964,2.26967,-1.09855,-0.613557,1 +-1.68475,-1.38156,-0.35697,-0.19451,0.101051,-0.07404,-0.00992603,-0.114162,-0.479638,-0.442049,-0.435717,-0.563153,0.731091,-0.100369,-0.563058,-0.46399,0.134854,-0.252909,0 +-0.574504,-0.703107,2.41015,-0.19451,-0.41356,-0.1098,-0.209983,-0.0872717,0.335292,0.376139,0.353057,0.270988,0.0980101,0.393538,-0.765049,0.335916,-0.728343,-0.385435,3 +0.0971283,1.01912,-0.35697,-0.19451,-0.372391,-0.112692,-0.0868711,-0.110038,0.169396,0.211233,0.192239,0.0998819,0.241892,0.291351,-0.736193,0.172828,-0.64005,-0.358791,5 +0.26161,0.271079,-0.35697,-0.19451,1.33612,-0.0393537,-0.286928,-0.130032,0.723354,0.715465,0.794668,0.637643,-0.659769,1.06911,-1.1498,0.783759,-0.662273,-0.454642,3 +1.4541,-1.92084,-0.35697,-0.19451,-0.228301,-0.114506,-0.394651,-0.122248,2.13784,2.10448,2.10419,2.18676,-2.04104,1.52896,-0.54382,2.11176,-0.927711,-0.63999,1 +-0.437437,1.24527,-0.35697,-0.19451,-0.0224555,-0.100406,0.451744,-0.104072,0.642831,0.623498,0.746168,0.530702,-0.698137,1.21672,-1.36141,0.734574,-0.531297,-0.436293,5 +-1.32838,1.40183,-0.35697,-0.19451,0.0392979,-0.0879777,0.220909,-0.104746,0.493428,0.483962,0.575139,0.399317,-0.48711,0.949894,-1.12094,0.561131,-0.56959,-0.436457,5 +0.316437,-0.250806,-0.35697,-0.19451,-0.331223,-0.100304,-0.333095,-0.129026,0.32365,0.277829,0.429637,0.237378,-0.678953,0.972602,-0.967041,0.413576,-0.445688,-0.480531,3 +-0.972001,0.166702,-0.35697,-0.19451,-0.125378,-0.104845,-0.533152,-0.134315,-0.829864,-0.832115,-0.808406,-0.844255,0.654354,-0.537506,0.254528,-0.841938,0.891678,-0.443336,4 +-1.01312,-0.146429,-0.35697,-0.19451,-0.454729,-0.116407,-0.286928,-0.128521,-0.899715,-0.920911,-0.884986,-0.887032,0.539248,-0.639693,0.543088,-0.919599,2.15101,-0.64419,2 +-0.547091,1.76715,-0.35697,-0.19451,-0.145963,-0.104886,-0.225372,-0.118244,-0.546579,-0.524502,-0.721616,-0.352326,0.644762,-1.61615,2.09169,-0.554594,-0.112749,2.10564,6 +-0.862347,0.35806,-0.35697,-0.19451,-0.598821,-0.125904,-0.471596,-0.134567,-0.844416,-0.765519,-0.882434,-0.865644,1.40254,-0.946257,0.196816,-0.906655,0.646974,0.254817,0 +1.50893,-1.34677,-0.35697,-0.19451,-0.26947,-0.113403,-0.302317,-0.130033,2.03209,1.94275,2.03782,2.08899,-2.46309,1.70495,-0.418778,2.04445,-0.815434,-0.667901,1 +0.576866,1.14089,-0.35697,-0.19451,0.698,-0.0774107,0.374799,-0.113911,0.559398,0.52836,0.649166,0.475703,-0.736506,1.05776,-1.05361,0.636203,-0.575403,-0.477844,5 +1.33074,1.14089,-0.35697,-0.19451,-0.392976,-0.104886,-0.394651,-0.119894,-0.517474,-0.521331,-0.690984,-0.300384,0.385774,-1.58209,2.29368,-0.510586,-0.0721509,2.21527,6 +1.15255,-0.511749,-0.35697,-0.19451,-0.331223,-0.110359,-0.502374,-0.131829,-0.731878,-0.76869,-0.665457,-0.767869,0.261076,-0.15714,0.00444287,-0.696972,0.844555,-0.495972,4 +0.727641,-1.39895,-0.35697,-0.19451,-0.26947,-0.10278,-0.363873,-0.127576,2.31053,2.36453,2.20629,2.35787,-1.38877,1.19969,-0.640007,2.2153,-1.10353,-0.587417,1 +-1.1639,-1.85126,-0.35697,-0.19451,-0.228301,-0.106067,-0.271539,-0.121316,0.876639,0.845487,0.973355,0.781249,-0.995493,1.36432,-1.31331,0.964967,-0.61607,-0.476029,3 +0.426091,-1.29458,-0.35697,-0.19451,-0.310638,-0.114506,-0.333095,-0.130916,0.0258128,0.0812107,-0.0017637,0.00516261,0.481696,-0.162817,-0.207167,-0.0239124,-0.900997,-0.379754,3 +0.412385,-1.79907,-0.35697,-0.19451,-0.475314,-0.12,-0.502374,-0.134599,1.95545,1.87298,1.96124,2.00649,-2.33839,1.6425,-0.438015,1.96679,-0.818124,-0.66155,1 +0.672814,-0.807484,-0.35697,-0.19451,-0.331222,-0.120371,-0.317707,-0.117185,2.58993,2.73239,2.36966,2.68786,-0.813243,0.654685,-0.293735,2.38098,-1.31185,-0.591618,1 +-0.259248,1.17568,-0.35697,-0.19451,0.471572,-0.0597149,0.113185,-0.0909232,0.679697,0.636183,0.812537,0.555145,-0.947533,1.4438,-1.49607,0.80188,-0.479043,-0.452581,5 +1.63229,-0.268203,-0.35697,-0.19451,1.70664,-0.0135358,-0.194594,-0.126097,-0.349637,-0.365939,-0.315742,-0.370659,0.136379,-0.0606295,-0.0340317,-0.342321,-0.269639,-0.512183,4 +0.439798,1.05391,-0.35697,-0.19451,-0.2283,-0.110048,-0.302317,-0.125813,-0.461205,-0.502303,-0.596535,-0.254552,0.00208865,-1.28121,2.16864,-0.471756,-0.169431,2.44759,6 +-1.41062,-0.163825,2.41015,-0.19451,-0.351807,-0.101382,-0.348484,-0.13323,-0.172099,-0.239088,-0.0783436,-0.217886,-0.467926,0.484372,-0.351447,-0.101573,-0.115443,-0.546329,4 +1.23479,1.94111,-0.35697,-0.19451,-0.187131,-0.103609,-0.379262,-0.131829,-0.729938,-0.74332,-0.83138,-0.587597,0.472103,-1.27553,1.68771,-0.753923,0.242212,2.37725,6 +1.4541,1.90632,-0.35697,-0.19451,-0.166547,-0.110791,-0.348484,-0.134315,-0.640684,-0.683066,-0.742037,-0.471489,0.136379,-1.20173,1.89932,-0.655553,0.224821,2.49427,6 +-0.999415,1.26266,-0.35697,-0.19451,-0.166547,-0.0977012,1.2058,-0.068958,0.236336,0.217575,0.296898,0.179324,-0.362413,0.597914,-0.649625,0.278964,-0.581876,-0.48066,5 +-0.177007,1.28006,-0.35697,-0.19451,0.862676,-0.060551,0.697968,-0.087073,0.347904,0.338084,0.414321,0.274043,-0.372005,0.728487,-0.861236,0.398044,-0.571875,-0.458363,5 +-1.20502,0.758173,-0.35697,-0.19451,-0.372392,-0.114755,1.42125,-0.0618295,-0.601877,-0.603784,-0.62972,-0.560098,0.472103,-0.679433,0.677749,-0.64002,-0.492254,-1.06914,6 +-1.43803,0.184098,-0.35697,-0.19451,-0.454729,-0.125326,-0.502374,-0.136078,-0.892924,-0.905055,-0.867118,-0.902309,0.615985,-0.560214,0.331477,-0.901478,1.76226,-0.498402,4 +0.206783,2.14987,-0.35697,-0.19451,0.224558,-0.0562014,0.0670187,-0.0797146,-0.758072,-0.765519,-0.879881,-0.596763,0.54884,-1.43449,1.88008,-0.761689,0.598197,2.25244,6 +-0.149594,1.00172,-0.35697,-0.19451,-0.290054,-0.118719,-0.425429,-0.121531,-0.448593,-0.483276,-0.583772,-0.248441,0.0500494,-1.26985,2.10131,-0.466578,-0.26417,2.44848,6 +-1.10907,-1.57292,-0.35697,-0.19451,-0.26947,-0.106417,-0.379263,-0.125647,2.32702,2.33598,2.24203,2.39453,-1.81083,1.34161,-0.457252,2.25155,-1.03228,-0.63747,1 +1.0566,0.288476,-0.35697,-0.19451,-0.434145,-0.116367,-0.548541,-0.134318,-0.943372,-0.914569,-0.971777,-0.926753,1.02845,-0.963288,0.600799,-1.00761,1.69911,-0.308011,4 +-0.410023,-1.32937,-0.35697,-0.19451,-0.434146,-0.119958,-0.25615,-0.132048,1.83515,1.72393,1.94337,1.79261,-2.50146,2.22724,-1.26522,1.94867,-0.661102,-0.587688,1 +-0.231835,-0.181222,-0.35697,-0.19451,-0.537067,-0.122683,-0.548541,-0.138156,-0.825983,-0.740149,-0.862012,-0.856477,1.4505,-0.917871,0.100629,-0.891123,0.609894,0.241753,0 +1.59117,-0.929258,-0.35697,-0.19451,-0.310638,-0.111424,0.467132,-0.0933418,0.0762609,0.103409,0.0952376,0.0265507,0.184339,0.189163,-0.505346,0.0744578,-0.66945,-0.406071,3 +-1.24614,-1.92084,-0.35697,-0.19451,-0.619406,-0.12347,-0.240762,-0.130916,0.872758,0.794747,1.00909,0.775138,-1.41755,1.62547,-1.33255,1.00121,-0.505701,-0.51257,3 +0.823588,1.12349,-0.35697,-0.19451,-0.0430406,-0.102139,-0.117649,-0.118964,0.344024,0.347597,0.411768,0.25571,-0.247307,0.734164,-0.995897,0.395455,-0.553911,-0.417051,5 +-1.05424,1.19308,-0.35697,-0.19451,-0.248885,-0.104845,0.128575,-0.0580509,-0.709565,-0.689408,-0.844144,-0.560098,0.759868,-1.4799,1.74542,-0.730625,0.216123,2.11692,6 +0.220489,-0.96405,-0.35697,-0.19451,-0.166547,-0.104845,-0.0714822,-0.125246,-0.258443,-0.24543,-0.167687,-0.37677,0.328221,0.393538,-0.995897,-0.192177,0.0821662,-0.314253,0 +0.480919,1.1061,2.41015,-0.19451,0.265727,-0.084117,0.744134,-0.0800105,0.325591,0.338084,0.383689,0.240433,-0.151386,0.654685,-0.957423,0.36698,-0.567441,-0.406209,5 +1.35815,2.06289,-0.35697,-0.19451,-0.00187135,-0.108809,-0.0560933,-0.0845008,-0.662997,-0.689408,-0.767564,-0.505099,0.299445,-1.24147,1.80313,-0.684028,0.121126,2.42633,6 +0.892122,0.671192,-0.35697,-0.19451,0.0804664,-0.0384453,3.19098,2.49757,0.112157,0.062183,0.159054,0.102937,-0.544663,0.404893,-0.139837,0.144352,-0.562491,-0.73234,5 +0.508332,1.80194,-0.35697,-0.19451,-0.187131,-0.105092,0.20552,0.00624743,-0.604788,-0.648182,-0.683326,-0.462323,0.0980101,-1.02006,1.63,-0.645198,-0.00609575,2.6337,6 +1.02919,1.59319,-0.35697,-0.19451,-0.125378,-0.105938,0.636411,-0.0951963,-0.3671,-0.448392,-0.496981,-0.129278,-0.43915,-1.16766,2.41872,-0.365619,-0.0268321,2.53922,6 +0.563159,1.01912,-0.35697,-0.19451,0.430402,-0.0333588,0.436354,-0.0999338,0.559398,0.563244,0.651719,0.439038,-0.419965,1.07479,-1.39988,0.638792,-0.506735,-0.398359,5 +-0.917174,-0.0246559,-0.35697,-0.19451,-0.598821,-0.124913,-0.517763,-0.138156,-0.823073,-0.736977,-0.862012,-0.850366,1.4505,-0.934902,0.129485,-0.883357,0.546164,0.257614,0 +0.522039,-0.96405,-0.35697,-0.19451,-0.0224555,-0.0780042,-0.240761,-0.123798,0.516711,0.547387,0.552165,0.439038,-0.141793,0.660362,-0.97666,0.537833,-0.708863,-0.40212,3 +1.70082,1.45402,5.17726,-0.19451,0.306896,-0.106594,-0.425429,-0.135544,-0.652326,-0.664038,-0.777774,-0.483711,0.424143,-1.37204,1.89932,-0.665907,0.0240738,2.31675,6 +-1.08166,1.94111,-0.35697,-0.19451,0.0187132,-0.0862628,-0.194594,-0.0793997,-0.685311,-0.721121,-0.800748,-0.505099,0.2323,-1.3323,2.02436,-0.684028,0.40956,2.3808,6 +-0.643038,-1.62511,-0.35697,-0.19451,-0.454729,-0.112443,-0.41004,-0.127041,1.98844,1.89835,1.99697,2.04315,-2.43431,1.68792,-0.418778,2.00303,-0.808361,-0.667924,1 +0.905829,0.984323,2.41015,-0.19451,0.615663,-0.100855,-0.0560933,-0.121316,0.603055,0.582271,0.718088,0.478759,-0.678953,1.26213,-1.45759,0.706098,-0.47691,-0.426607,5 +-0.149594,-0.0420521,-0.35697,-0.19451,-0.537067,-0.124665,-0.502374,-0.138345,-0.8027,-0.708436,-0.844144,-0.835089,1.50805,-0.934902,0.0717735,-0.865236,0.443809,0.290275,0 +-0.547091,-0.389976,-0.35697,-0.19451,-0.207716,-0.0985681,-0.317706,-0.119452,-0.412697,-0.331055,-0.39998,-0.502044,1.07641,-0.253651,-0.649625,-0.427748,-0.0968019,-0.126641,0 +-1.20502,0.0449289,-0.35697,-0.19451,-0.557652,-0.125904,-0.548541,-0.135889,-0.819192,-0.724292,-0.85946,-0.853422,1.52724,-0.940579,0.0621548,-0.87818,0.676521,0.302258,0 +0.659107,-0.581334,-0.35697,-0.19451,-0.454729,-0.121362,-0.440818,-0.134315,-0.354488,-0.442049,-0.223846,-0.422602,-0.506295,0.580883,-0.47649,-0.249128,0.305839,-0.530335,4 +-0.231835,1.541,-0.35697,-0.19451,0.0392976,-0.095595,-0.240761,-0.106416,-0.760013,-0.765519,-0.85946,-0.627318,0.568025,-1.28688,1.61076,-0.787576,0.378879,2.33318,6 +-1.25984,-0.111637,-0.35697,-0.19451,-0.516483,-0.124583,-0.394651,-0.134881,-0.801729,-0.727464,-0.826275,-0.835089,1.3258,-0.82136,0.0621548,-0.860059,0.489193,0.0838917,0 +-0.218128,0.114514,-0.35697,-0.19451,-0.290054,-0.110791,2.03681,0.229875,-0.629042,-0.654524,-0.581219,-0.654817,0.280261,-0.19688,0.0525362,-0.611545,0.530995,-0.501169,3 +-0.889761,1.00172,2.41015,-0.19451,-0.0842092,-0.10055,0.0670187,-0.104653,-0.456354,-0.448392,-0.604193,-0.282051,0.443327,-1.36068,1.86084,-0.495054,-0.618468,2.29855,6 +1.28962,0.166702,-0.35697,-0.19451,-0.392976,-0.120619,-0.548541,-0.139668,-0.712475,-0.759176,-0.632272,-0.755647,0.155563,-0.0492752,-0.0725063,-0.663319,0.877653,-0.502057,4 +-1.13648,2.09768,2.41015,-0.19451,-0.290054,-0.094514,-0.363873,-0.118763,-0.634863,-0.664038,-0.747142,-0.465378,0.251484,-1.26985,1.89932,-0.650375,0.0838444,2.42966,6 +-0.738986,-0.581334,-0.35697,-0.19451,0.32748,-0.0810599,0.744134,-0.0845008,-0.377772,-0.308856,-0.346374,-0.4776,0.932526,-0.100369,-0.765049,-0.373385,-0.0280609,-0.167882,0 +0.0011808,0.445041,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.34445,-1.06843,-0.35697,-0.19451,-0.578236,-0.12066,-0.548541,-0.131638,-0.801729,-0.81943,-0.752248,-0.835089,0.491288,-0.327453,0.0621548,-0.784987,1.06644,-0.4438,4 +-0.615625,-0.494353,-0.35697,-0.19451,-0.248885,-0.104845,-0.41004,-0.130788,-0.409787,-0.327883,-0.402532,-0.492877,1.07641,-0.287713,-0.591914,-0.430337,-0.159683,-0.132289,0 +0.316437,-0.129033,-0.35697,-0.19451,-0.516483,-0.116655,-0.348484,-0.12978,-0.810461,-0.733806,-0.839038,-0.8412,1.35458,-0.855423,0.0910108,-0.870414,0.516142,0.129196,0 +0.206783,-1.55552,-0.35697,-0.19451,-0.516483,-0.124583,-0.42543,-0.136645,1.79247,1.66685,1.91018,1.75289,-2.59738,2.25563,-1.21713,1.91502,-0.627958,-0.59776,1 +0.6454,0.253683,-0.35697,-0.19451,0.203973,0.0973267,1.4982,0.703768,-0.651355,-0.702093,-0.573561,-0.688427,0.0692336,-0.0152127,-0.0436503,-0.603779,0.825008,-0.523642,4 +-1.39691,1.66277,-0.35697,-0.19451,-0.145963,-0.104886,-0.194594,-0.124376,-0.62031,-0.625983,-0.739484,-0.465378,0.452919,-1.30391,1.75504,-0.650375,-0.240811,2.34139,6 +1.13884,2.02809,2.41015,-0.19451,-0.310638,-0.108066,0.00546275,-0.0550281,-0.599937,-0.625983,-0.71651,-0.428713,0.251484,-1.26985,1.89932,-0.619311,-0.0230915,2.43014,6 +0.60428,-0.337787,-0.35697,-0.19451,-0.125378,-0.0877908,0.882635,-0.101828,-0.485459,-0.480104,-0.479112,-0.492877,0.443327,-0.355838,0.158341,-0.507997,-0.491352,-0.485992,4 +0.467212,-0.703107,-0.35697,-0.19451,-0.557652,-0.121713,-0.594708,-0.135905,-0.49322,-0.556215,-0.397427,-0.541765,-0.17057,0.23458,-0.226405,-0.425159,0.336898,-0.527668,4 +-1.68475,-1.05103,-0.35697,-0.19451,-0.248885,-0.114755,-0.25615,-0.128269,-0.497101,-0.44522,-0.471454,-0.572319,0.874973,-0.236619,-0.47649,-0.500231,0.0355998,-0.20769,0 +0.837295,1.64538,-0.35697,-0.19451,-0.269469,-0.110708,-0.348484,-0.129025,-0.611579,-0.632325,-0.724168,-0.450101,0.309037,-1.25282,1.81275,-0.637432,-0.111893,2.4238,6 +0.741348,-0.389976,-0.35697,-0.19451,-0.537066,-0.118719,-0.502374,-0.134566,2.56374,2.67214,2.36711,2.66647,-1.10101,0.790935,-0.236023,2.37839,-1.25175,-0.625002,1 +1.39927,-1.38156,2.41015,-0.19451,-0.495898,-0.118307,-0.225373,-0.123199,0.281934,0.287343,0.31732,0.231267,-0.180162,0.467341,-0.611151,0.299674,-0.678492,-0.457874,3 +-0.601918,0.375456,-0.35697,4.39036,0.986183,-0.0261933,1.40586,-0.0362321,-0.61837,-0.654524,-0.55314,-0.654817,0.174747,-0.0719836,-0.053269,-0.583069,0.463559,-0.452602,2 +0.110835,1.00172,-0.35697,-0.19451,0.183389,-0.0790428,0.6518,-0.0914589,0.110216,0.141465,0.123317,0.0632162,0.193931,0.177809,-0.495727,0.102933,-0.706382,-0.411219,5 +-1.45174,0.166702,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,2 +1.11143,-1.15541,-0.35697,-0.19451,-0.310638,-0.122931,-0.425429,-0.134378,2.23389,2.24085,2.17821,2.26926,-1.75327,1.46083,-0.716956,2.18683,-0.99851,-0.604578,1 +1.52263,-0.111637,-0.35697,-0.19451,-0.41356,-0.118307,-0.317706,-0.12754,0.231486,0.192205,0.32753,0.151825,-0.544663,0.830675,-0.861236,0.310029,-0.422305,-0.476649,3 +-0.738986,1.1061,-0.35697,-0.19451,0.0392976,-0.0908952,0.313242,-0.108378,-0.481578,-0.51816,-0.642483,-0.248441,0.0596415,-1.46855,2.42834,-0.466578,0.01893,2.34072,6 +0.357557,0.688588,-0.35697,-0.19451,0.0598821,-0.0763524,4.36055,0.573786,0.0772311,0.049498,0.0875797,0.0907154,-0.314452,0.132392,0.0910108,0.0692805,-0.714147,-0.747147,5 +0.0697148,-0.37258,-0.35697,-0.19451,1.99482,1.51822,1.94448,1.40576,-0.594116,-0.648182,-0.550587,-0.587597,-0.00750348,-0.19688,0.341096,-0.580481,0.649265,-0.657493,2 +0.617986,1.14089,-0.35697,-0.19451,0.14222,-0.0977947,0.00546284,-0.109825,0.368278,0.369796,0.439848,0.277098,-0.285675,0.779581,-1.03437,0.423931,-0.549897,-0.418054,5 +0.371264,-1.83386,-0.35697,-0.19451,-0.413561,-0.117153,-0.517763,-0.135544,1.96612,1.83809,1.98166,2.04927,-2.76045,1.7163,-0.139837,1.9875,-0.754347,-0.706696,1 +0.563159,-1.01624,-0.35697,-0.19451,-0.413561,-0.1098,-0.471596,-0.134567,1.57903,1.42583,1.76723,1.48401,-2.67412,2.55084,-1.64035,1.77005,-0.483637,-0.567027,1 +-1.27355,-1.36416,-0.35697,-0.19451,0.14222,-0.0565317,0.236298,-0.115674,-0.396205,-0.350082,-0.354032,-0.486767,0.740683,-0.0435982,-0.668863,-0.381151,0.00558148,-0.24103,0 +0.919536,-1.25979,-0.35697,-0.19451,-0.434144,-0.118619,-0.410041,-0.127041,1.87784,1.78101,1.90253,1.92094,-2.40554,1.70495,-0.47649,1.90725,-0.774196,-0.660401,1 +-1.58881,1.95851,-0.35697,-0.19451,-0.0224557,-0.0502551,0.174742,-0.0461485,-0.68046,-0.667209,-0.798196,-0.54482,0.673538,-1.34365,1.60114,-0.717681,-0.220488,2.23002,6 +-1.13648,1.34964,-0.35697,-0.19451,0.0804664,-0.0823005,0.528688,-0.0598561,0.583652,0.563244,0.684904,0.475703,-0.659769,1.15427,-1.29408,0.672445,-0.526848,-0.439786,5 +0.508332,-1.90344,-0.35697,-0.19451,-0.351807,-0.1154,-0.502373,-0.128059,1.98262,1.88884,1.98676,2.04621,-2.46309,1.65385,-0.33221,1.99268,-0.808546,-0.676921,1 +-1.32838,-0.163825,-0.35697,-0.19451,-0.392976,-0.117646,-0.348484,-0.135826,-0.922029,-0.933596,-0.90796,-0.917586,0.644762,-0.662402,0.475757,-0.942897,2.4407,-0.556361,2 +-1.09536,-0.59873,-0.35697,-0.19451,-0.41356,-0.11971,-0.456207,-0.13211,-0.910387,-0.933596,-0.867118,-0.929808,0.529656,-0.458026,0.244909,-0.901478,2.44939,-0.492455,2 +1.13884,-0.581334,-0.35697,-0.19451,0.368649,-0.0701584,-0.471596,-0.139101,-0.835685,-0.857486,-0.785432,-0.865644,0.481696,-0.350161,0.110248,-0.81864,1.62201,-0.459791,4 +0.467212,-1.45114,-0.35697,-0.19451,-0.372391,-0.113469,-0.517763,-0.137245,2.30762,2.3233,2.23948,2.3487,-1.73409,1.43812,-0.697719,2.24896,-1.02155,-0.603107,1 +-1.39691,0.0971174,-0.35697,-0.19451,-0.516483,-0.125574,-0.56393,-0.137589,-0.956954,-0.936767,-0.979435,-0.938975,0.961302,-0.934902,0.620037,-1.01538,1.53688,-0.473359,2 +-0.574504,-0.7379,-0.35697,-0.19451,-0.537068,-0.119632,-0.471596,-0.133545,0.586562,0.544216,0.695114,0.490981,-0.861204,1.20536,-1.17865,0.6828,-0.523296,-0.476242,3 +0.768761,-1.67729,-0.35697,-0.19451,-0.434145,-0.116985,-0.533152,-0.135826,2.6462,2.84656,2.3518,2.77646,-0.333636,0.206194,-0.0147944,2.36286,-1.44817,-0.583456,1 +0.056008,1.12349,-0.35697,-0.19451,0.656831,-0.0824644,0.605633,-0.0992346,0.629249,0.598128,0.730852,0.530702,-0.794059,1.19401,-1.22674,0.719042,-0.555224,-0.463458,5 +-0.752693,0.932135,-0.35697,-0.19451,0.101051,-0.103454,-0.209983,-0.120213,0.324621,0.347597,0.386242,0.225156,-0.0554641,0.677393,-1.09208,0.369568,-0.529681,-0.375171,5 +0.535746,-1.29458,-0.35697,-0.19451,-0.26947,-0.117646,-0.25615,-0.13507,2.33478,2.38355,2.24203,2.37314,-1.45592,1.2962,-0.736193,2.25155,-1.08397,-0.582942,1 +0.398678,-0.0594483,-0.35697,-0.19451,-0.537067,-0.126647,-0.548541,-0.138156,-0.814341,-0.714778,-0.85946,-0.847311,1.56561,-0.968965,0.0717735,-0.870414,0.624378,0.351053,0 +0.768761,1.0887,2.41015,-0.19451,0.389234,-0.0668479,-0.10226,-0.111625,0.308128,0.322227,0.373478,0.212934,-0.122609,0.688747,-1.04399,0.356625,-0.525016,-0.391898,5 +0.0971283,1.73236,-0.35697,-0.19451,0.0804665,-0.111252,-0.179205,-0.124275,-0.537847,-0.559386,-0.7063,-0.30955,0.241892,-1.56506,2.40911,-0.518352,0.0272975,2.25352,6 +-0.0947667,1.01912,2.41015,-0.19451,-0.0430401,-0.0984573,0.0208523,-0.115925,0.208202,0.252459,0.233082,0.133492,0.2323,0.336767,-0.803524,0.214247,-0.635183,-0.354473,5 +-0.382609,1.0887,-0.35697,-0.19451,-0.269469,-0.111895,-0.348484,-0.123074,-0.562101,-0.540359,-0.74459,-0.358437,0.654354,-1.6786,2.18788,-0.559771,0.0690624,2.08793,6 +-1.20502,-0.824881,-0.35697,-0.19451,-0.0430401,-0.106827,-0.163816,-0.109376,-0.754192,-0.828944,-0.708852,-0.728148,-0.0650563,-0.316099,0.600799,-0.740979,1.297,-0.74891,2 +-1.13648,0.253683,-0.35697,-0.19451,-0.537067,-0.100881,-0.548541,-0.120019,-0.962775,-0.933596,-0.999856,-0.935919,1.04763,-1.03709,0.706605,-1.03609,-1.46424,-0.473359,2 +0.68652,-1.90344,-0.35697,-0.19451,-0.372392,-0.109305,-0.333095,-0.12692,2.01075,1.92055,2.01995,2.06454,-2.4535,1.71062,-0.438015,2.02633,-0.809134,-0.665368,1 +-0.780106,-0.146429,-0.35697,-0.19451,0.533325,-0.0580597,0.0824077,-0.0926946,-0.288517,-0.410336,-0.119186,-0.370659,-0.870796,0.893123,-0.640007,-0.142992,0.423305,-0.470935,2 +0.30273,-0.546542,-0.35697,-0.19451,-0.290054,-0.117728,-0.286928,-0.102071,-0.356428,-0.286657,-0.325952,-0.456212,0.922934,-0.0890149,-0.774668,-0.352676,-0.0549113,-0.188327,0 +1.52263,1.21047,-0.35697,-0.19451,0.286311,-0.089701,0.451744,-0.0844746,0.315889,0.300028,0.391347,0.237378,-0.400781,0.76255,-0.890092,0.374746,-0.542023,-0.454609,5 +-0.327782,-0.755296,-0.35697,-0.19451,0.615662,-0.086015,0.159353,-0.0744246,-0.320532,-0.242259,-0.290215,-0.428713,0.970895,-0.0606295,-0.870855,-0.316434,-0.0648181,-0.166665,0 +-0.0399396,-0.563938,-0.35697,-0.19451,0.121635,-0.0820509,-0.0714823,-0.118445,-0.381652,-0.308856,-0.354032,-0.480656,0.970895,-0.128755,-0.755431,-0.381151,-0.0270553,-0.173109,0 +-0.670452,-1.81646,-0.35697,-0.19451,-0.351807,-0.117429,-0.425429,-0.130246,2.02239,1.94592,2.02505,2.07065,-2.33839,1.67656,-0.495727,2.03151,-0.832903,-0.655578,1 +-0.697866,-0.616126,-0.35697,-0.19451,-0.434145,-0.119958,-0.533152,-0.136582,1.92635,1.96177,1.91529,1.88427,-1.24489,1.50625,-1.30369,1.92019,-0.973318,-0.502378,1 +-1.27355,-0.181222,-0.35697,-0.19451,-0.516483,-0.125574,-0.594708,-0.137589,-0.809491,-0.730635,-0.836486,-0.844255,1.37376,-0.844069,0.0525362,-0.867825,0.598307,0.121296,0 +1.02919,0.410249,-0.35697,-0.19451,-0.619405,-0.115171,-0.548541,-0.128464,-0.962775,-0.930425,-1.00496,-0.932864,1.07641,-1.07115,0.735461,-1.04127,-1.38313,-0.473359,4 +0.727641,-1.71209,-0.35697,-0.19451,-0.434145,-0.12,-0.240761,-0.119066,0.203351,0.192205,0.248398,0.157936,-0.266491,0.467341,-0.524583,0.229779,-0.623326,-0.489158,3 +-1.15019,-0.842277,-0.35697,4.39036,5.00015,0.299398,6.69968,0.39907,0.470144,0.417365,0.488348,0.494036,-0.861204,0.50708,0.00444287,0.473116,-0.565422,-0.643134,2 +-1.13648,-1.12062,-0.35697,-0.19451,-0.0224559,-0.0492641,-0.10226,-0.125498,-0.399115,-0.34374,-0.354032,-0.502044,0.827012,-0.0265668,-0.784287,-0.381151,0.0799318,-0.205726,0 +-0.930881,-0.59873,2.41015,-0.19451,-0.495899,-0.121239,-0.317706,-0.127041,1.80799,1.72076,1.86679,1.80177,-2.26166,1.87526,-0.909329,1.87101,-0.740867,-0.610422,1 +-0.0262328,-0.511749,-0.35697,-0.19451,-0.516482,-0.125574,-0.440818,-0.139605,-0.408817,-0.454734,-0.315742,-0.471489,-0.0842406,0.285673,-0.399541,-0.342321,0.110767,-0.477611,4 +-0.492264,1.24527,2.41015,-0.19451,0.306896,-0.0856802,0.20552,-0.109179,0.646712,0.636183,0.743615,0.533757,-0.6214,1.17698,-1.37102,0.731985,-0.554766,-0.425824,5 +-0.437437,0.410249,-0.35697,-0.19451,0.430402,-0.0473353,0.313243,-0.0854933,-0.768744,-0.752834,-0.787985,-0.752592,0.76946,-0.758912,0.514232,-0.821229,-0.33911,-0.454022,2 +0.0834216,1.47142,-0.35697,-0.19451,-0.187131,-0.117976,-0.502374,-0.136078,-0.546579,-0.572071,-0.670562,-0.367604,0.213116,-1.27553,1.94741,-0.567537,-0.191518,2.42982,6 +0.878415,-0.772692,-0.35697,-0.19451,0.306896,-0.0753614,-0.302317,-0.127324,0.114097,0.147807,0.12587,0.0662718,0.213116,0.172132,-0.505346,0.105522,-0.706753,-0.402298,3 +-0.314075,-0.877069,-0.35697,-0.19451,-0.557652,-0.125904,-0.225372,-0.119452,2.31732,2.35818,2.21395,2.3762,-1.51347,1.21104,-0.534202,2.22307,-1.08737,-0.611194,1 +-0.601918,-0.981446,-0.35697,-0.19451,-0.392976,-0.117063,-0.425429,-0.130246,2.24844,2.26939,2.16545,2.30287,-1.63817,1.29052,-0.54382,2.17388,-1.04395,-0.61753,1 +-0.50597,-0.616126,-0.35697,-0.19451,-0.392976,-0.116655,0.128575,-0.099615,-0.390384,-0.327883,-0.36169,-0.480656,0.884565,-0.128755,-0.668863,-0.388918,-0.0595019,-0.188238,0 +1.75565,1.19308,-0.35697,-0.19451,0.101051,-0.0825261,0.0362407,-0.113911,0.274173,0.271487,0.345399,0.18849,-0.247307,0.700101,-0.938185,0.328149,-0.523062,-0.425369,5 +0.289023,0.0275327,2.41015,-0.19451,-0.331224,-0.117398,-0.0714822,-0.107109,0.845594,0.867686,0.894223,0.756806,-0.48711,1.01802,-1.23636,0.884718,-0.741509,-0.424923,3 +-0.149594,1.9933,-0.35697,-0.19451,-0.084209,-0.101993,-0.271539,-0.122011,-0.613519,-0.61964,-0.770116,-0.413436,0.443327,-1.54803,2.17826,-0.606367,0.1514,2.20637,6 +-1.49286,0.0797212,-0.35697,-0.19451,-0.516483,-0.125574,-0.486985,-0.134881,-0.825013,-0.740149,-0.862012,-0.853422,1.44091,-0.923548,0.119867,-0.885946,0.589616,0.244016,0 +-1.5751,0.236287,-0.35697,-0.19451,-0.495898,-0.125656,-0.594708,-0.139857,-0.946283,-0.933596,-0.953908,-0.938975,0.884565,-0.827037,0.514232,-0.989493,2.51022,-0.448613,4 +1.38557,-0.946654,-0.35697,4.39036,6.37931,21.9863,4.9915,17.5356,-0.346727,-0.388138,-0.341268,-0.30955,-0.0938327,-0.247974,0.514232,-0.368208,0.359603,-0.728697,2 +-0.684159,-0.442164,-0.35697,-0.19451,0.759754,0.894863,0.621022,0.527876,-0.825983,-0.870171,-0.775222,-0.835089,0.270669,-0.338807,0.302621,-0.808285,1.95022,-0.588918,2 +1.0566,-1.05103,-0.35697,-0.19451,-0.557652,-0.12,-0.548541,-0.135544,-0.811431,-0.822602,-0.772669,-0.838144,0.558433,-0.406932,0.129485,-0.805697,0.992698,-0.441117,4 +-1.1776,-0.216014,-0.35697,-0.19451,-0.434145,-0.118967,-0.425429,-0.132866,-0.812401,-0.736977,-0.839038,-0.844255,1.34499,-0.844069,0.0813921,-0.867825,0.595796,0.12109,0 +-0.327782,-1.41635,-0.35697,-0.19451,-0.290052,-0.113764,-0.348483,-0.127513,2.62001,2.7863,2.37222,2.72758,-0.6214,0.495726,-0.216786,2.38357,-1.36477,-0.582859,1 +0.576866,-1.15541,-0.35697,-0.19451,-0.351806,-0.118967,-0.456206,-0.128332,1.61202,1.46071,1.77745,1.54206,-2.68371,2.42594,-1.41912,1.7804,-0.517194,-0.583372,1 +-0.108474,0.236287,-0.35697,-0.19451,-0.598821,-0.118619,-0.56393,-0.135905,-0.950163,-0.936767,-0.964119,-0.935919,0.894157,-0.872454,0.581562,-0.999848,2.51022,-0.492034,2 +-0.684159,-0.181222,-0.35697,4.39036,0.389234,-0.0353799,1.03653,-0.0343332,-0.24001,-0.448392,0.000788944,-0.324827,-1.69572,1.40974,-0.6881,-0.0213237,0.854882,-0.604239,2 +-0.204421,1.26266,-0.35697,4.39036,0.656831,-0.085791,1.23658,-0.057517,0.404173,0.401509,0.478138,0.313764,-0.352821,0.824998,-1.04399,0.462761,-0.566176,-0.426899,5 +0.110835,1.01912,-0.35697,-0.19451,0.224558,-0.00565861,1.72903,1.07123,-0.190532,-0.159806,-0.200872,-0.205664,0.433735,-0.225265,-0.053269,-0.215475,-0.748174,-0.553173,5 +0.672814,-0.476957,5.17726,-0.19451,0.121636,-0.111955,-0.41004,-0.125211,0.474024,0.607642,0.386242,0.445149,0.827012,-0.19688,-0.495727,0.369568,-1.10514,-0.231387,3 +-1.23243,-0.198618,2.41015,-0.19451,-0.372391,-0.120701,-0.517763,-0.1374,-0.546579,-0.591099,-0.466349,-0.593708,0.0404572,0.086975,-0.18793,-0.495054,0.287474,-0.498543,4 +1.00178,0.0623251,-0.35697,-0.19451,0.203973,-0.0295259,1.69825,0.872228,0.0966341,0.147807,0.092685,0.0509944,0.385774,0.0529125,-0.47649,0.0718691,-0.779178,-0.352966,3 +0.480919,1.50621,-0.35697,-0.19451,-0.104794,-0.102119,-0.333095,-0.123042,-0.512623,-0.54353,-0.647588,-0.315661,0.136379,-1.32094,2.10131,-0.523529,-0.100543,2.42624,6 +-0.917174,1.88893,-0.35697,-0.19451,0.224558,-0.0948518,0.0362408,-0.126065,-0.585385,-0.616469,-0.703747,-0.407325,0.193931,-1.26985,1.95703,-0.60119,-0.0149351,2.43685,6 +1.23479,1.66277,-0.35697,-0.19451,0.245142,-0.0774107,0.220909,-0.0978078,-0.624191,-0.641839,-0.780327,-0.413436,0.347406,-1.55371,2.28406,-0.606367,0.296537,2.23188,6 +-1.20502,-0.163825,7.94438,-0.19451,-0.187131,-0.0822987,0.405576,-0.076188,-0.519414,-0.39448,-0.55314,-0.593708,1.55601,-0.651047,-0.457252,-0.572714,-0.145426,0.120514,0 +1.60488,-0.7379,-0.35697,-0.19451,7.59379,4.0969,3.52954,1.74514,0.127679,0.00827135,0.261161,0.081549,-1.18734,0.995311,-0.495727,0.242723,-0.0294219,-0.589881,2 +-0.930881,-0.59873,-0.35697,-0.19451,-0.0636247,-0.0981715,1.03653,-0.0601968,-0.525235,-0.565729,-0.451033,-0.569264,0.0596415,0.0642667,-0.168693,-0.479522,0.22161,-0.496235,4 +0.26161,0.792965,-0.35697,-0.19451,-0.290054,-0.10993,-0.286928,-0.12754,-0.522325,-0.553044,-0.60164,-0.392047,0.145971,-0.957611,1.4761,-0.588247,-0.446446,2.71638,6 +-0.958295,0.0797212,-0.35697,-0.19451,-0.578236,-0.126317,-0.56393,-0.137589,-0.838595,-0.740149,-0.890092,-0.862588,1.5752,-1.03141,0.16796,-0.891123,0.731561,0.436343,0 +1.38557,-0.703107,-0.35697,-0.19451,-0.372391,-0.115746,-0.379263,-0.131544,1.40343,1.19116,1.67023,1.27318,-3.0674,2.9312,-1.89043,1.67168,-0.283962,-0.566968,1 +0.878415,0.305872,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.09536,1.12349,-0.35697,-0.19451,0.203973,-0.0661943,0.190131,-0.0119526,-0.0973969,-0.090038,-0.0655803,-0.1415,0.145971,0.132392,-0.370685,-0.0886295,-0.556384,-0.438626,5 +0.316437,0.792965,2.41015,-0.19451,-0.310638,-0.110048,-0.163816,-0.0957735,-0.457324,-0.505475,-0.586324,-0.251496,-0.0650563,-1.23579,2.15902,-0.469167,-0.134781,2.47885,6 +0.974363,0.184098,-0.35697,-0.19451,-0.495898,-0.121692,-0.456207,-0.135133,-0.811431,-0.724292,-0.851802,-0.838144,1.4505,-0.934902,0.129485,-0.870414,0.451534,0.25663,0 +0.110835,-0.268203,-0.35697,-0.19451,-0.413561,-0.110791,5.5455,1.64381,0.223725,0.239774,0.258608,0.164046,-0.0362799,0.416247,-0.668863,0.240134,-0.660977,-0.42234,3 +-1.43803,0.810361,-0.35697,-0.19451,-0.41356,-0.1098,-0.363873,-0.130599,-0.458295,-0.505475,-0.581219,-0.260663,-0.0554641,-1.19605,2.08207,-0.476933,-0.172687,2.50256,6 +-1.31467,1.24527,-0.35697,-0.19451,-0.537067,-0.118307,-0.502374,-0.128602,-0.550459,-0.524502,-0.708852,-0.379825,0.68313,-1.50829,1.87046,-0.577892,-0.370489,2.1393,6 +-0.684159,0.445041,-0.35697,-0.19451,-0.516483,-0.124583,-0.379262,-0.131544,-0.773595,-0.778204,-0.742037,-0.798423,0.587209,-0.423964,0.129485,-0.774632,0.664954,-0.424331,0 +-1.46545,1.48881,-0.35697,4.39036,0.265727,-0.111424,0.590245,-0.0947344,0.307158,0.290515,0.381136,0.231267,-0.400781,0.745518,-0.861236,0.364391,-0.542732,-0.455619,5 +-0.574504,0.340664,-0.35697,-0.19451,-0.228301,-0.102694,-0.333095,-0.130916,0.348874,0.290515,0.473032,0.252655,-0.813243,1.11453,-1.07285,0.457584,-0.375212,-0.482807,3 +0.576866,-1.36416,-0.35697,-0.19451,-0.351807,-0.111039,-0.502374,-0.135322,1.6809,1.54951,1.8336,1.60622,-2.55901,2.39755,-1.49607,1.83736,-0.567119,-0.572639,1 +-0.643038,0.0797212,-0.35697,-0.19451,-0.269469,-0.107503,-0.286928,-0.121063,0.337233,0.281001,0.460269,0.240433,-0.784467,1.0975,-1.07285,0.44464,-0.379556,-0.478566,3 +-1.39691,-0.181222,-0.35697,-0.19451,-0.434145,-0.105092,0.0977968,-0.0928136,-0.585385,-0.448392,-0.627167,-0.660928,1.71908,-0.758912,-0.438015,-0.624488,0.107163,0.250558,0 +-1.65734,1.34964,-0.35697,8.97523,0.306895,-0.0898727,0.774912,-0.0870428,0.436188,0.407852,0.529191,0.347374,-0.611808,0.978279,-1.04399,0.514535,-0.51699,-0.460955,5 +0.892122,-0.7379,-0.35697,-0.19451,-0.248885,-0.112773,-0.163816,-0.134315,0.153873,0.189034,0.169265,0.0998819,0.193931,0.228903,-0.582295,0.14953,-0.699234,-0.393135,3 +-0.286662,0.410249,-0.35697,4.39036,0.450987,-0.0785305,0.621022,-0.0959769,0.333352,0.312713,0.419426,0.246544,-0.458334,0.847706,-0.97666,0.403221,-0.515909,-0.448757,3 +0.576866,1.15829,-0.35697,-0.19451,0.430402,-0.108261,0.728746,-0.0928301,0.367307,0.344426,0.437295,0.301542,-0.506295,0.768227,-0.793905,0.421342,-0.560359,-0.485198,5 +-0.533384,0.549418,-0.35697,-0.19451,0.88326,0.10798,0.82108,0.88413,-0.74158,-0.746491,-0.719063,-0.755647,0.558433,-0.458026,0.216053,-0.751334,-0.151144,-0.463588,4 +0.672814,-0.146429,-0.35697,-0.19451,0.203973,-0.0513288,0.344021,0.0684046,-0.198293,-0.277143,-0.0936597,-0.245385,-0.554255,0.535466,-0.351447,-0.117105,-0.0236505,-0.553769,4 +1.646,-0.529145,2.41015,-0.19451,0.36865,-0.0404271,-0.133038,-0.0567284,1.28992,1.08016,1.56047,1.15402,-2.95229,2.86308,-1.89043,1.56037,-0.250779,-0.562118,1 +-1.31467,-0.998843,-0.35697,-0.19451,0.245142,-0.0790778,-0.0714822,-0.0526979,-0.377772,-0.331055,-0.328505,-0.4776,0.731091,0.01885,-0.765049,-0.355265,0.0497271,-0.239849,0 +0.549452,1.0887,-0.35697,-0.19451,0.245142,-0.0922347,-0.117649,-0.120213,0.326561,0.350769,0.388794,0.225156,-0.045872,0.68307,-1.11132,0.372157,-0.524007,-0.373975,5 +0.0423012,0.288476,-0.35697,-0.19451,2.20067,0.0295039,-0.486985,-0.135102,-0.245831,-0.226403,-0.244267,-0.263718,0.376182,-0.191203,-0.053269,-0.269838,-0.703811,-0.447148,3 +-0.972001,0.184098,-0.35697,-0.19451,-0.619405,-0.126647,-0.656264,-0.139857,-0.956954,-0.936767,-0.979435,-0.938975,0.961302,-0.934902,0.620037,-1.01538,2.51022,-0.473359,4 +-1.19131,0.184098,-0.35697,-0.19451,-0.639989,-0.123237,-0.579319,-0.136587,-0.943372,-0.936767,-0.943698,-0.938975,0.827012,-0.775944,0.485376,-0.979139,2.51022,-0.473359,4 +0.960656,0.653796,-0.35697,-0.19451,0.0804664,-0.0870061,2.23687,1.41262,0.116037,0.0907244,0.159054,0.08766,-0.324044,0.382184,-0.322591,0.141764,-0.578981,-0.617089,5 +1.74194,1.00172,-0.35697,-0.19451,-0.331223,-0.113205,-0.10226,-0.105525,-0.543668,-0.549872,-0.696089,-0.349271,0.385774,-1.46287,2.09169,-0.552005,-0.181059,2.26768,6 +-0.930881,-0.0768445,-0.35697,-0.19451,0.14222,-0.0821168,-0.179205,-0.110903,-0.43113,-0.587928,-0.241714,-0.502044,-1.07223,0.910154,-0.466871,-0.267249,0.914244,-0.585796,2 +-0.574504,-0.111637,-0.35697,-0.19451,-0.0224557,-0.0965721,-0.471596,-0.131829,-0.522325,-0.521331,-0.48677,-0.560098,0.433735,-0.191203,-0.110981,-0.515763,-0.108143,-0.4156,4 +-0.451143,-1.1728,-0.35697,-0.19451,-0.537068,-0.126647,-0.440818,-0.130536,2.32993,2.37087,2.2165,2.40064,-1.52306,1.15427,-0.428397,2.22566,-1.09865,-0.623739,1 +-1.65734,-1.45114,-0.35697,-0.19451,-0.207716,-0.066855,-0.363873,-0.104149,-0.520384,-0.489618,-0.479112,-0.593708,0.702315,-0.151463,-0.447634,-0.507997,0.158412,-0.272242,0 +1.50893,-0.0594483,-0.35697,-0.19451,-0.537067,-0.11971,-0.533152,-0.13507,-0.9327,-0.936767,-0.923276,-0.929808,0.721499,-0.702141,0.466138,-0.958429,2.51022,-0.51346,2 +-1.34208,-1.15541,2.41015,-0.19451,-0.434145,-0.12,-0.471596,-0.133545,0.872758,0.775719,1.05504,0.738473,-1.59021,1.93203,-1.67882,1.04781,-0.4008,-0.495623,3 +0.0148876,-0.755296,-0.35697,-0.19451,7.09977,11.7031,8.91569,6.82099,0.831042,0.785233,0.812537,0.88819,-1.09142,0.558174,0.148723,0.80188,-0.601242,-0.693245,2 +-0.135887,1.24527,-0.35697,-0.19451,0.718585,-0.0613698,0.420966,-0.111179,0.525443,0.52836,0.59556,0.432927,-0.400781,0.8988,-1.12094,0.581841,-0.606778,-0.422367,5 +-1.13648,1.38444,-0.35697,-0.19451,-0.351807,-0.112883,1.00575,-0.0983036,0.457532,0.452249,0.526638,0.374873,-0.419965,0.836352,-0.995897,0.511946,-0.600501,-0.442388,5 +-0.519677,0.392853,-0.35697,-0.19451,-0.351807,-0.11367,0.744134,-0.060043,0.159694,0.116095,0.268819,0.0693272,-0.525479,0.85906,-0.928567,0.250489,-0.347946,-0.465236,3 +-0.917174,-1.13801,-0.35697,-0.19451,-0.495898,-0.118307,-0.425429,-0.125537,2.25135,2.27573,2.14248,2.33342,-1.60939,1.12021,-0.284117,2.15059,-1.07714,-0.648719,1 +-0.0399396,0.0971174,-0.35697,-0.19451,0.14222,-0.108066,4.82222,0.0629266,0.365367,0.401509,0.378584,0.310709,0.0308651,0.387861,-0.6881,0.361802,-0.783153,-0.41049,3 +1.01548,0.288476,-0.35697,-0.19451,-0.537067,-0.121692,-0.533152,-0.133559,-0.813371,-0.724292,-0.856907,-0.838144,1.46969,-0.957611,0.148723,-0.875591,0.381044,0.286848,0 +-0.574504,-1.2076,-0.35697,-0.19451,-0.413561,-0.111252,-0.486985,-0.130687,1.90985,1.84761,1.91274,1.94538,-2.11777,1.58573,-0.563058,1.9176,-0.842666,-0.639528,1 +0.522039,0.13191,-0.35697,-0.19451,-0.639989,-0.123237,-0.594708,-0.135905,-0.92979,-0.911397,-0.930934,-0.935919,0.922934,-0.770267,0.37957,-0.966195,2.38855,-0.328829,4 +-0.547091,-0.389976,-0.35697,-0.19451,-0.207716,-0.0985681,-0.317706,-0.119452,-0.412697,-0.331055,-0.39998,-0.502044,1.07641,-0.253651,-0.649625,-0.427748,-0.0968019,-0.126641,0 +-0.0262328,1.1061,-0.35697,-0.19451,0.286311,-0.086058,0.282465,-0.112022,0.566189,0.563244,0.651719,0.460426,-0.48711,1.03505,-1.26522,0.638792,-0.56213,-0.421027,5 +-1.01312,-1.03363,-0.35697,-0.19451,5.78236,-0.100406,-0.486985,-0.128282,0.0772311,0.0685255,0.13608,0.0143289,-0.141793,0.455986,-0.630388,0.115877,-0.511549,-0.431862,3 +0.384971,-0.790088,-0.35697,-0.19451,2.77703,-0.000870963,0.143964,-0.0803586,-0.17695,-0.162977,-0.154924,-0.214831,0.270669,0.00181866,-0.274498,-0.179234,-0.554883,-0.42378,3 +-0.396316,-0.511749,-0.35697,-0.19451,-0.434145,-0.120949,-0.548541,-0.132866,-0.440832,-0.480104,-0.354032,-0.502044,0.00208865,0.217548,-0.370685,-0.381151,0.10798,-0.46721,4 +0.700227,-0.407372,-0.35697,-0.19451,0.018713,-0.110048,-0.271539,-0.129088,0.479845,0.499818,0.521533,0.405428,-0.208938,0.671716,-0.928567,0.506769,-0.693237,-0.416281,3 +1.27591,0.410249,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.793813,-0.911862,-0.35697,-0.19451,-0.0842092,-0.107487,-0.25615,-0.13507,2.32896,2.36135,2.22161,2.40064,-1.5998,1.19401,-0.418778,2.23084,-1.08283,-0.632135,1 +0.60428,-0.111637,-0.35697,-0.19451,-0.248885,-0.113469,-0.363873,-0.118171,-0.151726,-0.153463,-0.119186,-0.187331,0.107602,0.0926521,-0.264879,-0.142992,-0.524477,-0.469812,3 +1.74194,-1.67729,-0.35697,-0.19451,-0.228301,-0.114012,-0.394652,-0.130347,2.59963,2.78313,2.32882,2.71841,-0.448742,0.325413,-0.101362,2.33956,-1.41222,-0.583195,1 +-0.149594,2.06289,-0.35697,-0.19451,0.306896,-0.0726045,0.621023,-0.107514,-0.339936,-0.388138,-0.499534,-0.0987231,-0.160978,-1.34365,2.43796,-0.339732,-0.241769,2.43227,6 +0.179369,-0.129033,-0.35697,-0.19451,-0.475314,-0.123922,-0.548541,-0.136645,-0.800759,-0.721121,-0.826275,-0.838144,1.37376,-0.827037,0.0236802,-0.85747,0.579381,0.111191,0 +0.549452,-0.476957,-0.35697,-0.19451,0.183389,-0.0922089,-0.194594,-0.119452,0.785444,0.80426,0.827853,0.707918,-0.467926,0.927185,-1.1017,0.817412,-0.754668,-0.435788,3 +0.617986,1.78455,-0.35697,-0.19451,-0.125378,-0.0955409,-0.00992625,-0.118244,-0.659117,-0.648182,-0.83138,-0.456212,0.63517,-1.68996,2.22635,-0.642609,0.531895,2.09366,6 +0.727641,-1.86865,-0.35697,-0.19451,-0.578236,-0.12066,-0.25615,-0.119657,1.98844,1.90469,1.99442,2.0401,-2.37676,1.67089,-0.447634,2.00044,-0.819038,-0.661412,1 +0.878415,-0.146429,-0.35697,-0.19451,-0.639989,-0.126565,-0.579319,-0.137904,-0.795908,-0.702093,-0.833933,-0.832034,1.49846,-0.906517,0.0332989,-0.854882,0.489193,0.257389,0 +-0.0810599,1.00172,2.41015,-0.19451,-0.413561,-0.110578,0.236297,-0.112774,-0.409787,-0.464248,-0.56335,-0.168999,-0.160978,-1.36068,2.46682,-0.399272,-0.0759562,2.42131,6 +0.494625,1.15829,-0.35697,-0.19451,0.698,-0.0806136,0.590244,-0.0767863,0.551637,0.537874,0.618534,0.478759,-0.57344,0.8988,-0.947804,0.605139,-0.617482,-0.478861,5 +-1.24614,0.13191,-0.35697,-0.19451,-0.578236,-0.123344,-0.471596,-0.130788,-0.949193,-0.927254,-0.971777,-0.932864,0.970895,-0.929225,0.600799,-1.00761,2.18577,-0.448613,4 +-0.245541,1.17568,-0.35697,-0.19451,0.677416,-0.060427,0.128574,-0.0927962,0.654473,0.617155,0.779353,0.533757,-0.870796,1.37,-1.44797,0.768227,-0.491483,-0.448584,5 +-0.862347,0.288476,-0.35697,-0.19451,0.203973,-0.104845,-0.286928,-0.128521,-0.36807,-0.426193,-0.274899,-0.419546,-0.228123,0.319736,-0.312973,-0.300902,0.0764757,-0.520512,3 +0.549452,-0.424768,-0.35697,-0.19451,-0.372391,-0.116737,-0.456207,-0.13211,1.47619,1.31801,1.69576,1.34956,-2.63575,2.67573,-1.89043,1.69757,-0.422564,-0.546716,1 +1.13884,0.532022,-0.35697,4.39036,3.62099,2.67931,-0.41004,-0.128521,-0.74255,-0.76869,-0.696089,-0.764813,0.36659,-0.299068,0.139104,-0.728036,1.50946,-0.455577,4 +0.30273,-0.216014,-0.35697,-0.19451,-0.557652,-0.123922,-0.548541,-0.138156,-0.822103,-0.736977,-0.854354,-0.856477,1.44091,-0.889486,0.0621548,-0.880768,0.719974,0.208022,0 +-1.47915,-0.268203,-0.35697,-0.19451,-0.2283,-0.112883,-0.348484,-0.124649,-0.922029,-0.920911,-0.938592,-0.893143,0.759868,-0.866777,0.706605,-0.973961,1.96677,-0.712438,2 +-0.985708,-1.22499,-0.35697,-0.19451,-0.331222,-0.117398,-0.363874,-0.132866,1.99329,2.04106,1.97655,1.94538,-1.18734,1.52328,-1.39026,1.98232,-0.991676,-0.487991,1 +-0.643038,-0.285599,-0.35697,-0.19451,-0.392976,-0.11269,-0.225372,-0.107361,-0.520384,-0.413508,-0.540376,-0.593708,1.39295,-0.560214,-0.447634,-0.567537,-0.138582,0.0326126,0 +0.809882,1.28006,-0.35697,-0.19451,0.430402,-0.0547228,0.590244,-0.0934791,-0.657176,-0.683066,-0.795643,-0.459267,0.299445,-1.46287,2.17826,-0.645198,0.38673,2.28246,6 +0.0834216,1.92372,-0.35697,-0.19451,-0.392976,-0.120619,-0.425429,-0.129843,-0.820162,-0.822602,-0.913066,-0.697593,0.644762,-1.29256,1.54343,-0.847116,0.56818,2.30142,6 +1.28962,0.184098,-0.35697,-0.19451,-0.598821,-0.124913,-0.486985,-0.132614,-0.846357,-0.752834,-0.895197,-0.868699,1.53683,-1.02006,0.187197,-0.901478,0.774435,0.409252,0 +-0.629332,0.532022,-0.35697,-0.19451,-0.290054,-0.0919612,-0.625486,-0.138849,-0.951133,-0.924082,-0.979435,-0.932864,1.01886,-0.968965,0.620037,-1.01538,-0.604461,-0.360273,4 +-0.834933,-1.29458,-0.35697,-0.19451,-0.351806,-0.12194,-0.471595,-0.133055,1.88172,1.83492,1.94592,1.82927,-1.95471,1.97177,-1.38064,1.95126,-0.790164,-0.549241,1 +0.713934,-0.668315,-0.35697,-0.19451,-0.392976,-0.123592,-0.425429,-0.132866,1.48008,1.32435,1.69576,1.35568,-2.61656,2.65302,-1.87119,1.69757,-0.43051,-0.547141,1 +-1.56139,-1.06843,-0.35697,-0.19451,-0.372391,-0.116118,-0.471596,-0.133545,0.778653,0.70278,0.92996,0.662086,-1.32163,1.64818,-1.46721,0.920959,-0.456103,-0.492813,3 +1.2485,-1.85126,-0.35697,-0.19451,-0.45473,-0.115793,-0.317706,-0.122825,2.33381,2.3455,2.24458,2.4037,-1.79164,1.3189,-0.438015,2.25413,-1.03995,-0.637737,1 +-1.60251,-0.772692,-0.35697,-0.19451,-0.2283,-0.0763524,-0.0868712,-0.131355,-0.530086,-0.442049,-0.532718,-0.605929,1.22988,-0.452349,-0.466871,-0.56236,-0.0199558,-0.0583805,0 +-0.0536464,-0.0594483,-0.35697,-0.19451,-0.351807,-0.121713,-0.471596,-0.125211,-0.878372,-0.905055,-0.864565,-0.859533,0.472103,-0.628339,0.591181,-0.898889,1.80919,-0.692988,2 +1.59117,0.375456,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.864709,0.166702,-0.35697,-0.19451,-0.578236,-0.121362,-0.533152,-0.138849,-0.795908,-0.698922,-0.836486,-0.832034,1.52724,-0.923548,0.0332989,-0.854882,0.489193,0.283485,0 +1.68712,-1.92084,-0.35697,-0.19451,-0.41356,-0.122683,-0.363873,-0.135133,1.75657,1.58122,1.93571,1.69178,-3.01943,2.63599,-1.43836,1.9409,-0.498157,-0.598047,1 +-1.45174,1.05391,-0.35697,-0.19451,-0.495898,-0.119632,-0.440818,-0.129568,-0.597997,-0.584756,-0.762458,-0.407325,0.606393,-1.58777,2.08207,-0.60119,0.0186544,2.13597,6 +1.71453,0.13191,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.659107,0.601607,2.41015,-0.19451,-0.00187127,-0.0453825,-0.348484,-0.132048,-0.751281,-0.733806,-0.74459,-0.767869,0.76946,-0.571568,0.196816,-0.777221,0.201841,-0.350574,3 +1.13884,-1.55552,-0.35697,-0.19451,-0.0636246,-0.0887102,-0.548541,-0.131638,-0.592176,-0.629154,-0.532718,-0.621207,0.145971,-0.0890149,0.00444287,-0.56236,0.232426,-0.517354,4 +1.11143,-1.08582,-0.35697,-0.19451,-0.495898,-0.118307,-0.533152,-0.132359,-0.785237,-0.803574,-0.734379,-0.819812,0.472103,-0.304745,0.0429175,-0.766866,0.959216,-0.4438,4 +0.0423012,0.653796,-0.35697,-0.19451,-0.495898,-0.121692,-0.456207,-0.1374,-0.783296,-0.778204,-0.765011,-0.801479,0.68313,-0.520474,0.196816,-0.79793,0.499431,-0.409885,3 +-0.218128,-0.216014,-0.35697,-0.19451,-0.166547,-0.103033,-0.25615,-0.115143,0.542906,0.52836,0.631298,0.445149,-0.57344,1.03505,-1.17865,0.618083,-0.560646,-0.441502,3 +-0.451143,-1.06843,-0.35697,-0.19451,-0.00187209,-0.0980768,-0.148428,-0.127927,2.26396,2.26939,2.18587,2.32731,-1.79164,1.33594,-0.466871,2.19459,-1.02143,-0.634494,1 +-1.35579,-0.0594483,-0.35697,-0.19451,-0.41356,-0.0988985,-0.440818,-0.122223,-0.935611,-0.933596,-0.938592,-0.923697,0.779052,-0.787298,0.552706,-0.973961,2.4407,-0.527958,2 +1.07031,-0.529145,-0.35697,-0.19451,0.286311,0.016392,0.282465,0.0583284,-0.792998,-0.844801,-0.742037,-0.795368,0.174747,-0.310422,0.350714,-0.774632,1.45985,-0.627611,2 +-0.410023,-0.459561,-0.35697,-0.19451,-0.475314,-0.1154,-0.456207,-0.132428,-0.457324,-0.499132,-0.377006,-0.508155,-0.00750348,0.160777,-0.264879,-0.40445,0.0902338,-0.490799,4 +-0.862347,1.73236,-0.35697,-0.19451,0.224558,0.000287715,-0.209983,-0.0986073,-0.795908,-0.797231,-0.90796,-0.651761,0.63517,-1.40042,1.7358,-0.808285,0.728208,2.20631,6 +0.933243,-0.998843,2.41015,-0.19451,-0.187131,-0.0951821,-0.425429,-0.129843,1.52082,1.36558,1.71363,1.4229,-2.64534,2.5338,-1.64035,1.71569,-0.465286,-0.564799,1 +1.11143,-1.62511,-0.35697,-0.19451,-0.413561,-0.116118,-0.440818,-0.130858,2.26008,2.28207,2.19353,2.2937,-1.63817,1.40974,-0.745812,2.20236,-1.0266,-0.593148,1 +1.42669,0.897342,-0.35697,-0.19451,-0.26947,-0.115663,0.898024,0.304186,-0.106128,-0.109066,-0.0732383,-0.1415,0.0596415,0.132392,-0.284117,-0.0963956,-0.613462,-0.471297,5 +1.48151,0.0101365,2.41015,-0.19451,0.0804666,-0.0938469,-0.10226,-0.131829,0.101485,0.084382,0.166712,0.0387726,-0.237715,0.518434,-0.640007,0.146941,-0.480909,-0.462081,3 +0.659107,-0.529145,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.34445,0.305872,2.41015,-0.19451,0.0804665,-0.087006,-0.456207,-0.1374,-0.712475,-0.765519,-0.634825,-0.746481,0.0980101,-0.0663066,0.0140616,-0.665907,0.934393,-0.536301,4 +-1.65734,1.12349,-0.35697,-0.19451,-0.125378,-0.111955,-0.0253153,-0.127247,-0.55822,-0.556215,-0.693536,-0.392047,0.472103,-1.36068,1.83199,-0.588247,-0.370045,2.3086,6 +-0.50597,0.984323,-0.35697,-0.19451,-0.145963,-0.106417,0.390187,-0.0910539,0.349845,0.35394,0.416874,0.261821,-0.247307,0.734164,-0.995897,0.400633,-0.551772,-0.417917,5 +-0.533384,1.21047,-0.35697,-0.19451,0.512741,-0.0904678,-0.0560933,-0.109405,0.637981,0.594957,0.743615,0.545979,-0.909164,1.22807,-1.16903,0.731985,-0.557638,-0.483052,5 +1.26221,-0.877069,-0.35697,-0.19451,-0.372392,-0.1098,-0.194594,-0.125498,-0.843446,-0.886027,-0.79309,-0.853422,0.299445,-0.355838,0.302621,-0.826406,1.7328,-0.585814,2 +1.55005,0.984323,2.41015,-0.19451,-0.495898,-0.11971,-0.194594,-0.111895,-0.61449,-0.61964,-0.742037,-0.450101,0.452919,-1.35501,1.84161,-0.637432,-0.221805,2.31393,6 +-1.28726,-0.302995,-0.35697,-0.19451,-0.104794,-0.111039,-0.471596,-0.120208,-0.469936,-0.378624,-0.471454,-0.550931,1.2107,-0.395578,-0.54382,-0.500231,-0.103671,-0.0787419,0 +-1.23243,-0.824881,-0.35697,4.39036,2.18008,4.15859,1.4982,3.28981,-0.61643,-0.695751,-0.568456,-0.590652,-0.21853,-0.185525,0.533469,-0.598601,0.922117,-0.750923,2 +1.01548,-0.129033,-0.35697,-0.19451,-0.495898,-0.120701,-0.548541,-0.139668,-0.919118,-0.91774,-0.902855,-0.929808,0.759868,-0.64537,0.331477,-0.93772,2.25066,-0.424521,4 +-1.24614,-0.146429,-0.35697,-0.19451,-0.516483,-0.118637,-0.456207,-0.129843,-0.80561,-0.727464,-0.833933,-0.838144,1.36417,-0.849746,0.0717735,-0.865236,0.503677,0.121296,0 +0.151956,1.61059,2.41015,-0.19451,0.32748,-0.0977012,0.0824078,-0.089424,-0.575683,-0.610126,-0.711405,-0.373715,0.155563,-1.37772,2.17826,-0.572714,0.0647435,2.36031,6 +0.823588,-0.685711,-0.35697,-0.19451,-0.475314,-0.116367,-0.533152,-0.132359,-0.361279,-0.403994,-0.29532,-0.395103,-0.0938327,0.143746,-0.149456,-0.321612,-0.0998361,-0.531901,4 +-0.889761,0.13191,-0.35697,-0.19451,-0.578236,-0.125326,-0.579319,-0.13866,-0.833745,-0.730635,-0.890092,-0.856477,1.61357,-1.0598,0.177579,-0.883357,0.676521,0.479944,0 +-0.0536464,-0.285599,-0.35697,-0.19451,-0.125378,-0.107818,2.97554,-0.0451407,0.44395,0.474448,0.465374,0.38404,-0.0842406,0.50708,-0.774668,0.449818,-0.763103,-0.414609,3 +1.63229,-0.320391,-0.35697,-0.19451,1.50079,-0.0175227,-0.25615,-0.126404,-0.375831,-0.391309,-0.336163,-0.404269,0.165155,-0.0435982,-0.0917437,-0.363031,-0.273285,-0.493518,4 +0.165662,-0.320391,-0.35697,4.39036,3.27106,0.240779,7.97696,10.9194,0.151933,0.084382,0.194792,0.164046,-0.736506,0.41057,0.0429175,0.175417,-0.223876,-0.65833,2 +-1.68475,2.11508,-0.35697,-0.19451,-0.00187135,-0.0790778,0.20552,-0.0844378,-0.8027,-0.759176,-0.877328,-0.746481,1.04763,-1.15631,0.908596,-0.883357,-1.033,2.01868,6 +-0.012526,-1.6425,-0.35697,-0.19451,-0.331222,-0.111452,-0.379263,-0.124742,2.39396,2.46601,2.26756,2.44953,-1.29285,1.12021,-0.601532,2.27743,-1.1444,-0.587724,1 +-0.108474,-0.23341,-0.35697,-0.19451,0.162804,-0.0625108,-0.0407044,-0.107827,-0.519414,-0.673552,-0.348926,-0.569264,-0.976309,0.711456,-0.226405,-0.375974,1.11206,-0.620143,2 +1.0566,0.0971174,-0.35697,-0.19451,-0.619405,-0.115171,0.282465,-0.075482,-0.910387,-0.866999,-0.956461,-0.887032,1.13396,-1.05412,0.648893,-0.989493,-1.44686,0.169221,4 +0.905829,-0.285599,-0.35697,-0.19451,0.059882,-0.093274,2.1907,-0.0889724,-0.205084,-0.16932,-0.190661,-0.254552,0.491288,-0.0719836,-0.370685,-0.215475,-0.505195,-0.332783,3 +0.672814,1.00172,-0.35697,-0.19451,0.51274,-0.0570432,0.482522,-0.0927848,0.576861,0.556901,0.690009,0.454315,-0.650177,1.22807,-1.42874,0.677622,-0.479821,-0.425777,5 +-0.286662,0.236287,-0.35697,-0.19451,-0.598821,-0.123922,-0.594708,-0.137589,-0.873521,-0.876513,-0.851802,-0.887032,0.68313,-0.571568,0.283384,-0.885946,1.33604,-0.450099,4 +-1.04054,2.02809,-0.35697,4.39036,0.430402,-0.090769,-0.10226,-0.110521,-0.435011,-0.502303,-0.583772,-0.187331,-0.256899,-1.34933,2.54377,-0.414804,0.0828499,2.44846,6 +0.796175,-0.998843,-0.35697,-0.19451,-0.2283,-0.108851,0.0362409,-0.107976,0.13253,0.249288,0.039079,0.130436,0.95171,-0.514797,-0.082125,0.0175067,-1.204,-0.207692,3 +-0.327782,0.236287,-0.35697,-0.19451,-0.537067,-0.116118,-0.440818,-0.126404,-0.940462,-0.930425,-0.953908,-0.923697,0.855789,-0.8611,0.600799,-0.989493,2.29122,-0.542077,2 +1.63229,1.22787,-0.35697,-0.19451,-0.0636248,-0.101812,-0.0407042,-0.105525,0.332382,0.331741,0.401558,0.246544,-0.276083,0.734164,-0.967041,0.385101,-0.552057,-0.426406,5 +-1.31467,-1.24239,-0.35697,-0.19451,-0.557652,-0.126895,-0.302317,-0.137149,2.32411,2.36135,2.20629,2.4037,-1.55184,1.12021,-0.341829,2.2153,-1.09958,-0.637788,1 +-1.68475,-0.476957,-0.35697,-0.19451,0.718585,0.168764,-0.0253152,-0.0124564,-0.833745,-0.876513,-0.790538,-0.835089,0.289853,-0.395578,0.37957,-0.823817,1.74277,-0.626269,2 +0.892122,1.0887,-0.35697,4.39036,0.306895,-0.0772449,1.00575,-0.0922903,0.341113,0.366625,0.368373,0.280154,-0.045872,0.461663,-0.736193,0.351448,-0.703859,-0.430919,5 +-0.601918,-0.772692,-0.35697,-0.19451,-0.537067,-0.125656,-0.425429,-0.129088,0.229545,0.287343,0.222871,0.179324,0.337813,0.143746,-0.582295,0.203892,-0.795793,-0.359787,3 +-0.314075,0.966927,2.41015,-0.19451,-0.0224557,-0.0931659,0.00546284,-0.108176,0.317829,0.344426,0.358162,0.240433,-0.0170956,0.529789,-0.880473,0.341093,-0.631626,-0.393119,5 +1.01548,0.35806,-0.35697,-0.19451,-0.578236,-0.115793,-0.579319,-0.133963,-0.958895,-0.933596,-0.989646,-0.935919,1.00926,-0.991673,0.66813,-1.02574,1.37466,-0.473359,4 +1.37186,1.00172,-0.35697,-0.19451,-0.269469,-0.108069,-0.163816,-0.117571,0.478875,0.461763,0.564928,0.387095,-0.544663,0.966925,-1.09208,0.550777,-0.555766,-0.446694,5 +0.823588,-0.668315,-0.35697,-0.19451,2.73586,1.68967,0.113186,0.0160718,0.316859,0.347597,0.353057,0.240433,0.0212729,0.501403,-0.870855,0.335916,-0.648976,-0.38265,3 +-0.0399396,-0.302995,2.41015,-0.19451,-0.104794,-0.114012,-0.225372,-0.0937582,-0.3671,-0.308856,-0.328505,-0.465378,0.827012,-0.0435982,-0.755431,-0.355265,-0.0155339,-0.215427,0 +-0.382609,0.0449289,-0.35697,-0.19451,-0.310638,-0.118967,-0.394651,-0.125813,-0.800759,-0.71795,-0.83138,-0.835089,1.40254,-0.8611,0.0525362,-0.85747,0.546164,0.15839,0 +-0.560798,-0.650919,-0.35697,-0.19451,-0.392976,-0.111895,-0.348483,-0.128418,1.80023,1.71442,1.83616,1.82011,-2.24247,1.7163,-0.659244,1.83994,-0.767997,-0.634744,1 +-0.135887,-1.46854,-0.35697,-0.19451,-0.434145,-0.125904,-0.333096,-0.13211,2.35807,2.38355,2.25735,2.42814,-1.68613,1.26213,-0.447634,2.26708,-1.0672,-0.629719,1 +-0.615625,-0.129033,-0.35697,-0.19451,-0.145963,-0.0908876,-0.240761,-0.125309,-0.402026,-0.331055,-0.382111,-0.489822,0.970895,-0.19688,-0.640007,-0.409627,-0.0855364,-0.174296,0 +1.53634,0.236287,-0.35697,-0.19451,-0.557652,-0.124913,-0.579319,-0.139416,-0.953074,-0.936767,-0.969224,-0.938975,0.922934,-0.889486,0.581562,-1.00503,2.51022,-0.473359,2 +0.864709,-0.616126,-0.35697,-0.19451,-0.454729,-0.116797,-0.579319,-0.135102,-0.778446,-0.790889,-0.734379,-0.810645,0.520064,-0.344484,0.0621548,-0.766866,0.836658,-0.435421,4 +0.576866,-1.22499,-0.35697,-0.19451,-0.228301,-0.116367,-0.41004,-0.133545,0.0888729,0.116095,0.102896,0.0448836,0.174747,0.166454,-0.457252,0.082224,-0.711006,-0.415226,3 +-0.533384,-1.79907,-0.35697,-0.19451,-0.351806,-0.10456,-0.133038,-0.122099,0.736937,0.674238,0.861038,0.640698,-1.16815,1.43245,-1.2556,0.851065,-0.513937,-0.498361,3 +0.220489,-1.85126,2.41015,8.97523,0.677416,-0.0280963,0.713356,-0.10074,0.19753,0.214404,0.225424,0.145714,-0.00750348,0.348121,-0.582295,0.206481,-0.69514,-0.431719,3 +-1.62993,-0.581334,-0.35697,-0.19451,0.0187132,-0.114012,-0.302317,-0.109187,-0.496131,-0.400823,-0.507192,-0.569264,1.26825,-0.480735,-0.457252,-0.536473,-0.168336,-0.0407599,0 +-1.39691,1.97591,-0.35697,-0.19451,-0.0842092,-0.0728012,-0.179205,-0.104905,-0.817252,-0.816259,-0.910513,-0.697593,0.673538,-1.29256,1.51457,-0.847116,0.500956,2.29298,6 +-1.46545,-0.00725971,-0.35697,-0.19451,-0.434145,-0.108066,-0.502374,-0.133055,-0.942402,-0.933596,-0.953908,-0.926753,0.846197,-0.849746,0.591181,-0.989493,2.42911,-0.521772,2 +-0.0262328,0.49723,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.20502,-0.790088,-0.35697,-0.19451,-0.331222,-0.123344,0.036241,-0.0913022,0.177157,0.236603,0.176923,0.118215,0.395366,0.143746,-0.640007,0.157296,-0.735741,-0.338551,3 +-0.42373,0.201495,-0.35697,-0.19451,0.14222,-0.0991462,-0.517763,-0.133622,-0.913297,-0.914569,-0.902855,-0.914531,0.731091,-0.679433,0.418045,-0.93772,2.01969,-0.484087,4 +-1.09536,-0.59873,-0.35697,-0.19451,-0.41356,-0.11971,-0.456207,-0.13211,-0.910387,-0.933596,-0.867118,-0.929808,0.529656,-0.458026,0.244909,-0.901478,2.44939,-0.492455,2 +-0.42373,-0.981446,-0.35697,-0.19451,0.245142,-0.0523198,-0.240761,-0.120019,-0.348667,-0.283486,-0.308084,-0.456212,0.874973,-0.0152127,-0.851617,-0.334555,0.0131567,-0.19884,0 +0.933243,-1.53812,-0.35697,-0.19451,-0.59882,-0.120949,-0.471596,-0.135322,2.60448,2.8085,2.34414,2.69091,-0.266491,0.399215,-0.409159,2.35509,-1.41719,-0.5073,1 +0.700227,1.1061,-0.35697,-0.19451,-0.0430404,-0.0916102,-0.025315,-0.105789,0.464323,0.461763,0.54706,0.362651,-0.400781,0.932863,-1.17865,0.532656,-0.537721,-0.418497,5 +0.179369,-1.78167,-0.35697,-0.19451,-0.45473,-0.110359,-0.394651,-0.131391,2.36389,2.38038,2.27266,2.4312,-1.77246,1.33026,-0.47649,2.28261,-1.047,-0.631889,1 +1.19367,-0.96405,2.41015,-0.19451,0.368649,-0.0808509,-0.163816,-0.124241,0.0238725,0.135122,-0.0579223,0.0143289,0.990079,-0.526151,-0.101362,-0.0808635,-1.13436,-0.192026,3 +0.0285944,-0.0942407,5.17726,-0.19451,-0.0636248,-0.0932,0.282465,0.0212986,-0.374861,-0.321541,-0.348926,-0.453156,0.788644,-0.134432,-0.563058,-0.375974,-0.159847,-0.222926,0 +-0.793813,-0.0942407,-0.35697,-0.19451,-0.290054,-0.118719,-0.0407042,-0.0673084,-0.417548,-0.359596,-0.387216,-0.505099,0.865381,-0.140109,-0.630388,-0.414804,-0.0438394,-0.166858,0 +1.42669,-0.337787,-0.35697,-0.19451,-0.516483,-0.115095,0.113186,-0.105463,-0.452474,-0.470591,-0.415296,-0.474545,0.203524,-0.123077,0.00444287,-0.44328,-0.224961,-0.509754,4 +-1.43803,-0.111637,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,2 +0.494625,0.253683,-0.35697,-0.19451,-0.619405,-0.12347,-0.610097,-0.135544,-0.938521,-0.924082,-0.941145,-0.938975,0.894157,-0.787298,0.437282,-0.97655,2.51022,-0.37938,4 +-1.47915,-1.83386,-0.35697,-0.19451,-0.248885,-0.0984573,-0.317706,-0.118838,2.32023,2.31696,2.24714,2.38537,-1.91634,1.41542,-0.47649,2.25672,-1.00647,-0.640176,1 +-1.3695,1.47142,-0.35697,-0.19451,1.41846,-0.0193495,1.08269,-0.0797618,0.486637,0.439564,0.600666,0.39015,-0.822835,1.15995,-1.14018,0.587018,-0.465586,-0.473481,5 +-1.42433,1.88893,-0.35697,-0.19451,0.183389,-0.0674331,-0.0407042,-0.0998039,-0.61546,-0.613298,-0.731826,-0.471489,0.520064,-1.28121,1.64923,-0.655553,-0.433513,2.35939,6 +-1.25984,0.149306,2.41015,-0.19451,-0.310638,-0.105051,-0.194594,-0.123199,-0.919118,-0.91774,-0.918171,-0.911475,0.759868,-0.747558,0.504613,-0.953252,1.09498,-0.510915,2 +1.0429,0.653796,-0.35697,-0.19451,0.245142,-0.115746,2.51387,1.50331,0.124769,0.084382,0.166712,0.112104,-0.467926,0.382184,-0.178312,0.146941,-0.542728,-0.631628,5 +-1.04054,-0.494353,-0.35697,-0.19451,-0.0842092,0.0044996,0.159353,-0.0842489,-0.834715,-0.873342,-0.798196,-0.832034,0.328221,-0.440995,0.418045,-0.831583,1.60841,-0.623527,2 +-0.204421,-0.546542,2.41015,-0.19451,-0.00187138,-0.0374542,-0.0407042,-0.0801554,-0.775535,-0.844801,-0.724168,-0.761758,0.00208865,-0.29339,0.494994,-0.756511,1.45469,-0.704882,2 +1.37186,2.09768,-0.35697,-0.19451,0.553909,-0.0783609,0.159353,-0.114322,-0.649415,-0.641839,-0.800748,-0.468434,0.596801,-1.54235,2.01474,-0.652964,0.233263,2.16833,6 +0.234196,1.47142,-0.35697,-0.19451,0.0187131,-0.0684242,0.0208516,-0.117689,-0.484489,-0.495961,-0.673115,-0.24233,0.289853,-1.65589,2.51491,-0.461401,0.0613278,2.2423,6 +-1.1776,0.253683,-0.35697,-0.19451,-0.290054,-0.116118,-0.00992611,-0.112309,0.460442,0.464934,0.51898,0.380984,-0.333636,0.768227,-0.967041,0.50418,-0.639405,-0.431466,3 +-1.32838,1.12349,-0.35697,-0.19451,-0.166547,-0.0939433,0.744134,0.183021,-0.185681,-0.16932,-0.177898,-0.20872,0.299445,-0.100369,-0.130218,-0.202532,-0.661515,-0.466351,5 +1.68712,-0.355184,-0.35697,-0.19451,-0.351807,-0.114506,-0.363873,-0.124275,-0.0372472,-0.0583253,0.0237629,-0.0895567,-0.160978,0.376507,-0.47649,0.00197451,-0.451047,-0.478673,3 +-0.862347,1.73236,-0.35697,-0.19451,0.224558,0.000287715,-0.209983,-0.0986073,-0.795908,-0.797231,-0.90796,-0.651761,0.63517,-1.40042,1.7358,-0.808285,0.728208,2.20631,6 +-0.80752,0.636399,-0.35697,-0.19451,0.409818,-0.0371238,0.0977968,-0.132866,-0.371951,-0.416679,-0.290215,-0.422602,-0.103425,0.240257,-0.303354,-0.316434,-0.00385037,-0.502046,3 +0.755054,0.671192,-0.35697,-0.19451,0.450986,0.00119615,2.91398,0.0195976,0.116037,0.0812107,0.146291,0.112104,-0.410373,0.297028,-0.0917437,0.126232,-0.594748,-0.629297,5 +-0.903467,-0.476957,-0.35697,-0.19451,-0.475314,-0.117976,-0.502374,-0.136078,1.95254,2.01569,1.92805,1.89955,-1.01468,1.43812,-1.41912,1.93314,-1.00372,-0.467897,1 +-1.31467,-0.668315,-0.35697,-0.19451,0.348064,-0.0617058,-0.00992625,-0.0882971,-0.863819,-0.876513,-0.85946,-0.847311,0.587209,-0.679433,0.562325,-0.893712,1.47199,-0.651617,2 +-0.478557,-0.129033,-0.35697,-0.19451,-0.2283,-0.108261,-0.302317,-0.120867,-0.479638,-0.600613,-0.336163,-0.529543,-0.70773,0.563851,-0.245642,-0.363031,0.741147,-0.580502,2 +-1.47915,-0.442164,2.41015,-0.19451,-0.434145,-0.111425,-0.486985,-0.127754,-0.93076,-0.927254,-0.948803,-0.902309,0.788644,-0.883808,0.706605,-0.984316,2.14522,-0.68652,2 +0.617986,-0.181222,-0.35697,-0.19451,0.348064,-0.113403,-0.333095,-0.128464,-0.228368,-0.242259,-0.213635,-0.230108,0.0596415,-0.0890149,0.0910108,-0.238774,-0.546725,-0.565155,4 +1.74194,-0.720504,-0.35697,-0.19451,-0.310638,-0.117976,-0.456207,-0.13211,0.0481264,0.049498,0.0977903,-0.0131702,-0.0266877,0.37083,-0.601532,0.0770465,-0.538816,-0.430422,3 +0.522039,0.49723,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.28726,-1.06843,-0.35697,-0.19451,-0.0224557,-0.108726,-0.163816,-0.123735,-0.415608,-0.350082,-0.389769,-0.505099,0.932526,-0.168494,-0.649625,-0.417393,-0.0325167,-0.185867,0 +-0.231835,0.35806,-0.35697,-0.19451,-0.557652,-0.123922,-0.610097,-0.138912,-0.945312,-0.936767,-0.948803,-0.938975,0.846197,-0.798652,0.504613,-0.984316,2.51022,-0.473359,2 +-1.19131,-1.43375,2.41015,-0.19451,-0.0430403,-0.0899792,-0.209983,-0.109943,-0.381652,-0.34374,-0.331058,-0.474545,0.654354,0.0245271,-0.697719,-0.357853,0.0225752,-0.264514,0 +1.42669,-0.337787,-0.35697,-0.19451,-0.516483,-0.115095,0.113186,-0.105463,-0.452474,-0.470591,-0.415296,-0.474545,0.203524,-0.123077,0.00444287,-0.44328,-0.224961,-0.509754,4 +-0.629332,-1.32937,2.41015,-0.19451,-0.454728,-0.11938,-0.394651,-0.120523,2.33963,2.37404,2.23948,2.40064,-1.59021,1.25078,-0.524583,2.24896,-1.07696,-0.616627,1 +1.0429,-0.650919,-0.35697,4.39036,2.8182,4.83853,1.75981,1.65439,-0.61934,-0.686237,-0.558245,-0.621207,-0.103425,-0.100369,0.273765,-0.588247,0.893754,-0.647549,2 +0.755054,-0.129033,-0.35697,-0.19451,0.389234,-0.0913788,-0.302317,-0.126288,-0.101277,-0.105894,-0.0579223,-0.14761,0.0404572,0.206194,-0.389922,-0.0808635,-0.514357,-0.456351,3 +1.74194,1.24527,-0.35697,-0.19451,0.265727,-0.0806729,0.35941,-0.102675,0.278053,0.274658,0.335188,0.209878,-0.256899,0.609268,-0.774668,0.317795,-0.604902,-0.445712,5 +-0.272955,-0.23341,-0.35697,-0.19451,-0.516483,-0.124583,-0.133038,-0.0998039,-0.859939,-0.813088,-0.86967,-0.883976,1.12437,-0.770267,0.177579,-0.904067,1.23271,-0.114451,0 +0.494625,0.410249,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.42669,-1.72948,-0.35697,-0.19451,-0.0430401,-0.102582,-0.333095,-0.122368,0.317829,0.271487,0.391347,0.270988,-0.678953,0.751195,-0.591914,0.374746,-0.518039,-0.533153,3 +1.57746,-1.69469,-0.35697,-0.19451,-0.248884,-0.104845,-0.425429,-0.136645,2.61516,2.80216,2.3518,2.72147,-0.429557,0.387861,-0.226405,2.36286,-1.40507,-0.561579,1 +-0.396316,-0.0768445,-0.35697,-0.19451,-0.578236,-0.125326,-0.517763,-0.136645,-0.9327,-0.936767,-0.918171,-0.935919,0.721499,-0.668079,0.408426,-0.953252,2.51022,-0.485864,2 +-0.382609,-0.129033,-0.35697,-0.19451,-0.434145,-0.122931,-0.517763,-0.136645,-0.796879,-0.721121,-0.82117,-0.832034,1.3354,-0.815683,0.0429175,-0.852293,0.523955,0.0834456,0 +1.12514,1.59319,-0.35697,-0.19451,0.492156,-0.0818122,0.0208517,-0.112696,-0.346727,-0.41985,-0.494428,-0.0956677,-0.381597,-1.26985,2.53415,-0.337144,-0.0747069,2.48144,6 +-1.31467,0.0275327,-0.35697,-0.19451,-0.557652,-0.125904,-0.486985,-0.137149,-0.817252,-0.730635,-0.856907,-0.844255,1.4505,-0.934902,0.129485,-0.880768,0.450568,0.270896,0 +-1.38321,-1.13801,-0.35697,-0.19451,-0.372391,-0.123674,-0.286928,-0.101315,-0.422399,-0.365939,-0.387216,-0.514266,0.855789,-0.111723,-0.668863,-0.414804,0.0343846,-0.208483,0 +-1.5751,1.15829,-0.35697,-0.19451,0.286311,0.0282844,0.020852,-0.0950177,-0.107098,-0.0995518,-0.0706857,-0.156777,0.155563,0.1551,-0.418778,-0.093807,-0.530805,-0.425244,5 +-0.670452,1.29745,-0.35697,-0.19451,-0.0430402,-0.10044,-0.25615,-0.128418,-0.589265,-0.591099,-0.74459,-0.395103,0.462511,-1.51964,2.11093,-0.590835,-0.0671031,2.21219,6 +1.19367,0.636399,-0.35697,-0.19451,-0.166547,-0.0984573,-0.271539,-0.110038,-0.361279,-0.429364,-0.47656,-0.153721,-0.324044,-1.06548,2.13017,-0.386329,-0.213208,2.59199,6 +-0.972001,0.166702,-0.35697,-0.19451,-0.125378,-0.104845,-0.533152,-0.134315,-0.829864,-0.832115,-0.808406,-0.844255,0.654354,-0.537506,0.254528,-0.841938,0.891678,-0.443336,4 +0.467212,-0.129033,2.41015,-0.19451,-0.537067,-0.119632,-0.10226,-0.121402,-0.189562,-0.204204,-0.162582,-0.205664,0.0212729,0.0245271,-0.0628877,-0.187,-0.51074,-0.527141,4 +-1.10907,-0.772692,-0.35697,-0.19451,-0.537067,-0.119632,-0.456207,-0.133307,1.85164,1.74296,1.89232,1.88733,-2.49187,1.7901,-0.534202,1.8969,-0.739408,-0.656859,1 +-0.382609,-1.78167,-0.35697,-0.19451,-0.351807,-0.11367,-0.302317,-0.125392,2.35127,2.3455,2.26756,2.4312,-1.9643,1.37,-0.351447,2.27743,-1.01514,-0.656761,1 +0.056008,-0.563938,-0.35697,4.39036,9.40523,16.6464,6.33034,6.28594,0.189769,0.160492,0.194792,0.209878,-0.419965,0.189163,0.100629,0.175417,-0.341678,-0.619526,2 +-1.28726,-1.41635,2.41015,-0.19451,-0.228301,-0.11203,-0.41004,-0.127009,2.3571,2.40258,2.24203,2.42509,-1.50388,1.16562,-0.466871,2.25155,-1.1049,-0.615739,1 +0.110835,-0.981446,-0.35697,-0.19451,-0.187131,-0.0961731,-0.0868711,-0.119263,-0.259413,-0.22006,-0.190661,-0.37677,0.568025,0.245934,-0.986278,-0.215475,0.0105785,-0.262376,0 +-0.560798,0.184098,-0.35697,-0.19451,-0.537067,-0.124665,-0.471596,-0.137589,-0.915238,-0.908226,-0.90796,-0.920642,0.807828,-0.702141,0.37957,-0.942897,1.95866,-0.42078,4 +0.905829,-1.32937,-0.35697,-0.19451,-0.537067,-0.118719,-0.363874,-0.133622,2.58508,2.74508,2.34669,2.68786,-0.650177,0.529789,-0.245642,2.35768,-1.35121,-0.582176,1 +-0.300369,0.0275327,-0.35697,-0.19451,-0.351807,-0.108851,-0.440818,-0.128418,-0.923969,-0.924082,-0.925829,-0.911475,0.750275,-0.770267,0.552706,-0.961018,2.1765,-0.566003,2 +0.316437,1.19308,2.41015,-0.19451,0.780338,-0.0786817,0.697968,-0.074423,0.551637,0.541045,0.638956,0.45126,-0.544663,1.03505,-1.20751,0.625849,-0.558826,-0.434307,5 +-1.09536,-0.216014,-0.35697,-0.19451,-0.516483,-0.119513,-0.394651,-0.126759,-0.548519,-0.587928,-0.468902,-0.599819,0.0884179,0.081298,-0.226405,-0.497642,0.275957,-0.47742,4 +-0.177007,1.34964,-0.35697,-0.19451,0.348064,-0.0984254,0.190131,-0.109825,-0.412697,-0.461077,-0.548034,-0.199553,-0.103425,-1.24147,2.20711,-0.425159,-0.197018,2.47897,6 +1.56376,-1.59031,-0.35697,-0.19451,-0.41356,-0.122683,-0.25615,-0.119956,2.2106,2.20913,2.15779,2.25093,-1.81083,1.46083,-0.659244,2.16612,-0.985484,-0.612484,1 +1.646,0.288476,-0.35697,-0.19451,-0.639989,-0.121089,-0.502374,-0.12754,-0.959865,-0.930425,-0.997304,-0.932864,1.04763,-1.03709,0.706605,-1.0335,-0.815351,-0.473359,4 +-1.3695,-1.83386,-0.35697,-0.19451,-0.45473,-0.125326,-0.517764,-0.133622,2.01948,1.98714,2.02505,2.02177,-1.93552,1.69359,-0.928567,2.03151,-0.881119,-0.592463,1 +0.234196,-0.407372,-0.35697,-0.19451,-0.454729,-0.121362,-0.286928,-0.124742,-0.388443,-0.315198,-0.36169,-0.486767,0.980487,-0.140109,-0.745812,-0.388918,-0.0214558,-0.168509,0 +0.234196,-0.216014,-0.35697,-0.19451,-0.290054,-0.117153,-0.517763,-0.134318,-0.217696,-0.235917,-0.190661,-0.230108,0.0116809,0.00181866,-0.0147944,-0.215475,-0.487975,-0.543423,4 +1.08402,1.22787,-0.35697,-0.19451,0.265727,-0.0843736,0.744134,-0.0820751,0.104395,0.119266,0.128422,0.0601609,0.0500494,0.245934,-0.466871,0.108111,-0.663477,-0.441525,5 +1.55005,-1.71209,-0.35697,-0.19451,-0.557652,-0.121713,-0.410039,-0.126097,2.07478,2.02203,2.05824,2.1226,-2.16573,1.59141,-0.524583,2.06516,-0.884406,-0.64536,1 +-0.12218,1.38444,-0.35697,-0.19451,0.430402,-0.083862,0.143964,-0.110305,-0.459265,-0.495961,-0.609298,-0.239274,0.0404572,-1.37772,2.29368,-0.458812,-0.14465,2.38348,6 +-1.52027,0.184098,-0.35697,-0.19451,-0.557652,-0.125904,-0.56393,-0.139101,-0.831804,-0.74332,-0.872223,-0.859533,1.47928,-0.951934,0.129485,-0.888535,0.702593,0.291371,0 +-0.7664,-1.12062,-0.35697,-0.19451,-0.228301,-0.106083,-0.10226,-0.114918,-0.345757,-0.289828,-0.305531,-0.44399,0.788644,-0.0152127,-0.765049,-0.331966,-0.050772,-0.217706,0 +-0.793813,-1.03363,-0.35697,-0.19451,0.0804664,-0.0800688,-0.0099262,-0.0816668,-0.381652,-0.308856,-0.351479,-0.483711,0.970895,-0.111723,-0.784287,-0.378563,0.000130104,-0.170042,0 +-0.204421,1.14089,-0.35697,-0.19451,-0.331222,-0.112443,-0.333095,-0.119999,-0.631952,-0.625983,-0.803301,-0.425657,0.568025,-1.66157,2.24559,-0.616722,0.355859,2.11848,6 +0.206783,1.12349,-0.35697,-0.19451,0.0392976,-0.0802992,0.174741,-0.0976942,0.644772,0.617155,0.743615,0.545979,-0.774874,1.18833,-1.23636,0.731985,-0.57496,-0.460179,5 +1.13884,-1.01624,-0.35697,-0.19451,-0.187132,-0.0997301,6.65351,0.294054,0.514771,0.566415,0.465374,0.51848,0.0500494,0.0926521,-0.207167,0.449818,-1.00636,-0.393387,3 +-1.13648,0.166702,-0.35697,-0.19451,-0.269469,-0.0848047,0.0824078,-0.0864714,-0.899715,-0.901883,-0.900302,-0.887032,0.711907,-0.741881,0.543088,-0.935131,1.89967,-0.547145,4 +0.0285944,-0.0594483,-0.35697,-0.19451,-0.516483,-0.116655,-0.471596,-0.130032,-0.93076,-0.933596,-0.920724,-0.929808,0.731091,-0.696464,0.446901,-0.95584,2.4407,-0.498402,2 +-0.752693,-0.911862,2.41015,-0.19451,0.0804668,-0.0870061,0.113186,-0.104842,-0.373891,-0.312027,-0.33361,-0.4776,0.865381,-0.0379211,-0.803524,-0.360442,0.0292434,-0.197409,0 +1.26221,1.47142,-0.35697,-0.19451,0.224558,-0.0789952,0.0670187,-0.0986073,-0.549489,-0.575242,-0.683326,-0.358437,0.213116,-1.34365,2.06283,-0.559771,-0.108464,2.37737,6 +-0.793813,-0.911862,-0.35697,-0.19451,-0.0842092,-0.107487,-0.25615,-0.13507,2.32896,2.36135,2.22161,2.40064,-1.5998,1.19401,-0.418778,2.23084,-1.08283,-0.632135,1 +-0.84864,1.68017,-0.35697,-0.19451,0.430402,0.21303,0.344021,-0.0366391,-0.756132,-0.749662,-0.867118,-0.621207,0.673538,-1.36068,1.63,-0.782398,0.262032,2.23644,6 +-0.780106,-0.355184,-0.35697,-0.19451,-0.454729,-0.114425,-0.363873,-0.123798,-0.914267,-0.933596,-0.884986,-0.920642,0.568025,-0.554537,0.369952,-0.919599,2.45615,-0.532291,2 +1.41298,-0.563938,-0.35697,-0.19451,-0.434145,-0.122931,-0.363873,-0.133622,-0.901655,-0.924082,-0.872223,-0.905365,0.529656,-0.543183,0.389189,-0.906655,2.24661,-0.55835,2 +1.48151,1.52361,2.41015,-0.19451,0.286311,0.00846376,-0.209983,-0.110699,-0.565982,-0.581585,-0.665457,-0.425657,0.318629,-1.12792,1.59152,-0.616722,-0.400647,2.53528,6 +-1.31467,-0.407372,-0.35697,-0.19451,0.121636,-0.0969164,0.0670189,-0.0782032,-0.43016,-0.340568,-0.428059,-0.514266,1.16274,-0.338807,-0.591914,-0.456223,-0.142624,-0.10147,0 +0.60428,-0.37258,-0.35697,-0.19451,-0.331223,-0.11938,-0.425429,-0.135133,0.554547,0.588614,0.58535,0.478759,-0.141793,0.660362,-0.97666,0.571486,-0.732046,-0.402946,3 +0.755054,0.966927,-0.35697,-0.19451,0.14222,-0.0713972,0.590245,-0.0164869,-0.0411279,-0.0424689,-0.0017637,-0.0865013,0.0212729,0.228903,-0.409159,-0.0239124,-0.550688,-0.460937,5 +-0.930881,-0.529145,-0.35697,-0.19451,-0.557652,-0.118619,-0.610097,-0.137245,-0.500981,-0.559386,-0.392322,-0.569264,-0.122609,0.314059,-0.409159,-0.419982,0.372354,-0.483753,4 +-0.396316,-0.00725971,-0.35697,-0.19451,-0.2283,-0.123922,-0.163816,-0.104842,-0.403966,-0.514988,-0.228951,-0.502044,-0.678953,0.836352,-0.736193,-0.254306,0.581024,-0.509185,3 +-0.601918,-0.0246559,-0.35697,4.39036,2.03599,1.32101,0.66719,0.57832,-0.796879,-0.841629,-0.7548,-0.795368,0.241892,-0.37287,0.389189,-0.787576,1.67509,-0.638127,2 +-0.314075,-1.27718,-0.35697,-0.19451,-0.104793,-0.103609,-0.302317,-0.125392,0.623428,0.575929,0.725746,0.539868,-0.937941,1.19401,-1.08246,0.713864,-0.534883,-0.496062,3 +0.782468,1.0887,2.41015,-0.19451,0.656831,-0.0817313,-0.179205,-0.119066,0.298426,0.312713,0.360715,0.206823,-0.113017,0.660362,-1.00552,0.343682,-0.535988,-0.394839,5 +1.13884,-1.55552,-0.35697,-0.19451,-0.0636246,-0.0887102,-0.548541,-0.131638,-0.592176,-0.629154,-0.532718,-0.621207,0.145971,-0.0890149,0.00444287,-0.56236,0.232426,-0.517354,4 +-1.04054,0.427645,-0.35697,-0.19451,-0.41356,-0.121692,1.17503,0.428123,-0.5524,-0.59427,-0.627167,-0.416491,0.0692336,-0.951934,1.54343,-0.598601,-0.10155,2.76663,6 +0.6454,1.03651,-0.35697,-0.19451,0.368649,-0.0897991,0.451744,-0.0879268,0.505069,0.50299,0.593008,0.396261,-0.429557,1.00099,-1.26522,0.579252,-0.531828,-0.410707,5 +0.330144,-0.546542,-0.35697,-0.19451,-0.248885,-0.114755,-0.0253152,-0.0751803,-0.350607,-0.277143,-0.318294,-0.456212,0.95171,-0.0719836,-0.83238,-0.34491,-0.0259318,-0.177878,0 +-0.451143,-0.59873,-0.35697,-0.19451,0.0392974,-0.0991028,-0.333095,-0.123875,0.57298,0.518846,0.695114,0.472648,-0.957125,1.28484,-1.21713,0.6828,-0.47752,-0.482652,3 +0.60428,-0.998843,-0.35697,-0.19451,0.0392979,-0.0807295,-0.41004,-0.133055,0.38089,0.426879,0.391347,0.319875,0.107602,0.382184,-0.755431,0.374746,-0.765583,-0.387202,3 +-0.396316,0.114514,-0.35697,-0.19451,-0.495898,-0.117153,-0.333095,-0.129026,-0.907476,-0.924082,-0.900302,-0.890087,0.587209,-0.696464,0.591181,-0.935131,2.20895,-0.649256,2 +0.343851,0.601607,-0.35697,-0.19451,0.101051,-0.0908876,-0.286928,-0.133055,-0.749341,-0.736977,-0.734379,-0.770924,0.721499,-0.514797,0.148723,-0.766866,0.333729,-0.37568,3 +-0.46485,-0.146429,2.41015,-0.19451,-0.0636247,-0.0951821,0.405577,-0.0920578,-0.448593,-0.350082,-0.461244,-0.523432,1.25866,-0.452349,-0.495727,-0.489876,-0.225884,-0.050517,0 +-0.231835,0.114514,-0.35697,-0.19451,-0.351807,-0.114012,-0.394651,-0.128836,-0.796879,-0.695751,-0.849249,-0.822867,1.56561,-1.00303,0.129485,-0.854882,0.324652,0.387502,0 +0.522039,0.984323,-0.35697,-0.19451,-0.0430401,-0.100881,1.86753,0.947106,-0.175009,-0.153463,-0.18045,-0.187331,0.337813,-0.179848,-0.0340317,-0.205121,-0.825207,-0.552759,5 +0.878415,-1.46854,-0.35697,-0.19451,-0.310638,-0.114506,-0.456208,-0.130246,2.28239,2.31379,2.20885,2.31509,-1.57102,1.38135,-0.765049,2.21789,-1.04464,-0.585773,1 +1.12514,-1.13801,-0.35697,-0.19451,-0.413561,-0.119632,-0.425429,-0.130246,1.92053,1.85078,1.92805,1.9576,-2.19451,1.62547,-0.553439,1.93314,-0.829254,-0.643468,1 +1.4541,-0.00725971,-0.35697,-0.19451,-0.454729,-0.125326,-0.56393,-0.137589,-0.818222,-0.733806,-0.856907,-0.844255,1.43132,-0.929225,0.139104,-0.880768,0.459259,0.242332,0 +0.30273,1.21047,-0.35697,-0.19451,1.74781,-0.0469219,1.28275,-0.0481907,0.38477,0.391995,0.43219,0.316819,-0.247307,0.631976,-0.822761,0.416165,-0.664127,-0.464156,5 +0.453505,1.0887,-0.35697,-0.19451,-0.372392,-0.11971,-0.25615,-0.109376,-0.654266,-0.670381,-0.767564,-0.495933,0.385774,-1.29256,1.80313,-0.676262,0.00863532,2.38292,6 +-1.52027,-0.911862,-0.35697,-0.19451,4.1356,0.104204,5.39161,0.141004,-0.136203,-0.207375,-0.0911071,-0.120111,-0.535071,0.189163,0.216053,-0.114517,-0.136754,-0.672299,2 +-0.259248,-1.01624,5.17726,-0.19451,0.121635,-0.0903929,-0.040704,-0.126097,0.617607,0.594957,0.697667,0.536813,-0.70773,1.04073,-1.05361,0.685389,-0.611312,-0.471186,3 +1.38557,-0.703107,-0.35697,-0.19451,-0.372391,-0.115746,-0.379263,-0.131544,1.40343,1.19116,1.67023,1.27318,-3.0674,2.9312,-1.89043,1.67168,-0.283962,-0.566968,1 +-0.821227,-0.929258,-0.35697,-0.19451,-0.45473,-0.123344,-0.363874,-0.130599,1.97679,2.03154,1.92039,1.96982,-1.1106,1.2451,-0.995897,1.92537,-1.05468,-0.523358,1 +0.110835,0.305872,-0.35697,-0.19451,-0.660574,-0.12347,-0.640875,-0.137245,-0.968596,-0.936767,-1.01007,-0.938975,1.07641,-1.07115,0.735461,-1.04644,-0.896462,-0.473359,4 +0.0285944,-0.7379,-0.35697,-0.19451,8.31425,9.73251,5.45317,4.33338,0.144172,0.0590118,0.17437,0.18849,-0.88998,0.319736,0.350714,0.154707,-0.262568,-0.72061,2 +0.494625,0.914738,-0.35697,-0.19451,-0.557652,-0.123922,-0.348484,-0.133559,-0.630012,-0.648182,-0.74459,-0.468434,0.347406,-1.28121,1.82237,-0.652964,-0.0839158,2.39658,6 +-0.80752,0.636399,-0.35697,-0.19451,0.409818,-0.0371238,0.0977968,-0.132866,-0.371951,-0.416679,-0.290215,-0.422602,-0.103425,0.240257,-0.303354,-0.316434,-0.00385037,-0.502046,3 +-1.27355,2.02809,-0.35697,-0.19451,-0.2283,-0.0929509,-0.0407042,-0.111179,-0.652326,-0.657696,-0.800748,-0.462323,0.481696,-1.52532,2.10131,-0.647786,0.191765,2.20455,6 +0.617986,0.619003,2.41015,-0.19451,0.14222,-0.0956279,-0.225372,-0.120079,-0.433071,-0.356425,-0.502086,-0.419546,1.04763,-0.815683,0.331477,-0.531295,-1.20719,-0.151283,3 +1.19367,2.0107,-0.35697,-0.19451,0.0187131,-0.0949379,-0.0253152,-0.0922121,-0.698893,-0.71795,-0.79309,-0.560098,0.395366,-1.20173,1.63961,-0.730625,0.0835521,2.45207,6 +-0.999415,0.810361,-0.35697,-0.19451,-0.495898,-0.117153,-0.41004,-0.133545,-0.30404,-0.362767,-0.433164,-0.0895567,-0.285675,-1.11089,2.16864,-0.331966,-0.340684,2.56702,6 +-0.177007,-0.163825,-0.35697,-0.19451,-0.434145,-0.125904,-0.486985,-0.139416,-0.832774,-0.749662,-0.874776,-0.853422,1.43132,-0.963288,0.196816,-0.896301,0.470846,0.292679,0 +-0.533384,0.288476,-0.35697,-0.19451,1.31553,-0.0209736,0.174742,-0.0946285,-0.710535,-0.765519,-0.66801,-0.700649,0.0788258,-0.299068,0.427664,-0.69956,0.880608,-0.682649,2 +-0.752693,-0.0246559,-0.35697,-0.19451,0.656831,-0.0373747,0.467133,-0.0758805,-0.449563,-0.426193,-0.43827,-0.480656,0.577617,-0.29339,-0.082125,-0.435514,-0.106875,-0.114743,2 +-1.68475,-1.38156,-0.35697,-0.19451,0.101051,-0.07404,-0.00992603,-0.114162,-0.479638,-0.442049,-0.435717,-0.563153,0.731091,-0.100369,-0.563058,-0.46399,0.134854,-0.252909,0 +1.44039,-1.43375,-0.35697,-0.19451,-0.372391,-0.111955,-0.148427,-0.119066,2.21157,2.20913,2.17566,2.23259,-1.82042,1.57437,-0.841999,2.18424,-0.9658,-0.593985,1 +0.837295,0.671192,-0.35697,-0.19451,-0.104793,-0.114012,2.76009,0.995976,0.183948,0.131951,0.24074,0.164046,-0.6214,0.529789,-0.274498,0.222013,-0.549191,-0.662493,5 +-0.601918,0.601607,-0.35697,-0.19451,0.348064,-0.101789,-0.271539,-0.110195,-0.419488,-0.457905,-0.348926,-0.462323,-0.00750348,0.126715,-0.207167,-0.375974,-0.0338725,-0.504618,3 +-1.1639,-1.53812,-0.35697,-0.19451,-0.434145,-0.121713,-0.379262,-0.129171,0.848504,0.826459,0.945276,0.744584,-0.88998,1.34161,-1.38064,0.936491,-0.610595,-0.460291,3 +1.50893,1.26266,-0.35697,-0.19451,-0.0842092,-0.0975771,-0.0560933,-0.120647,0.267381,0.255631,0.330083,0.200712,-0.324044,0.637654,-0.755431,0.312617,-0.581032,-0.460559,5 +0.494625,-0.59873,-0.35697,-0.19451,1.02735,-0.0132206,-0.625486,-0.135429,-0.889043,-0.854314,-0.928382,-0.865644,1.03804,-0.991673,0.639274,-0.963607,-1.44212,-0.341406,4 +1.56376,0.636399,-0.35697,-0.19451,-0.0224557,-0.106744,0.974969,-0.0620184,0.212083,0.144636,0.324978,0.139603,-0.784467,0.927185,-0.784287,0.30744,-0.327481,-0.517753,5 +-0.917174,0.0797212,2.41015,-0.19451,0.389233,-0.0881419,0.00546275,-0.111569,-0.538817,-0.648182,-0.420401,-0.569264,-0.554255,0.348121,-0.0340317,-0.448457,0.816838,-0.616956,2 +1.26221,0.114514,-0.35697,-0.19451,0.162804,-0.0708191,-0.271539,-0.13211,-0.410757,-0.486447,-0.282557,-0.486767,-0.352821,0.518434,-0.524583,-0.308668,0.344044,-0.499585,3 +-1.1639,-0.877069,2.41015,-0.19451,-0.187131,-0.10311,-0.225372,-0.0975368,-0.43016,-0.372281,-0.39998,-0.517321,0.874973,-0.151463,-0.62077,-0.427748,0.000351207,-0.202265,0 +0.809882,-0.563938,-0.35697,-0.19451,-0.248885,-0.118719,-0.56393,-0.138345,-0.339936,-0.429364,-0.213635,-0.401214,-0.535071,0.563851,-0.418778,-0.238774,0.276366,-0.543266,4 +-1.34208,0.184098,-0.35697,-0.19451,-0.290054,-0.105427,-0.225372,-0.122099,-0.74255,-0.832115,-0.650141,-0.758702,-0.208938,0.0074957,0.196816,-0.681439,1.51522,-0.634235,2 +0.343851,0.49723,-0.35697,-0.19451,-0.660574,-0.126647,-0.10226,-0.0793997,-0.934641,-0.908226,-0.961566,-0.917586,0.999671,-0.946257,0.600799,-0.99726,0.482433,-0.417032,4 +-0.272955,0.271079,-0.35697,-0.19451,-0.598821,-0.124913,-0.440818,-0.131292,-0.810461,-0.721121,-0.849249,-0.8412,1.46969,-0.923548,0.0910108,-0.875591,0.463121,0.256871,0 +1.60488,-0.59873,-0.35697,-0.19451,-0.516483,-0.116655,-0.41004,-0.130788,-0.922999,-0.914569,-0.920724,-0.923697,0.827012,-0.741881,0.427664,-0.95584,2.056,-0.439621,4 +-0.725279,-0.0942407,-0.35697,-0.19451,-0.598821,-0.125904,-0.517763,-0.138156,-0.826953,-0.749662,-0.862012,-0.850366,1.37376,-0.912194,0.16796,-0.885946,0.521058,0.200312,0 +-0.738986,-0.181222,-0.35697,-0.19451,-0.434145,-0.12194,-0.471596,-0.137589,-0.826953,-0.733806,-0.86967,-0.856477,1.51765,-0.963288,0.110248,-0.885946,0.670728,0.331122,0 +-1.3695,-0.129033,-0.35697,-0.19451,-0.351807,-0.123922,0.6518,-0.0875236,-0.546579,-0.451563,-0.555692,-0.621207,1.30662,-0.50912,-0.447634,-0.557182,0.0888898,0.129456,0 +-0.889761,-1.24239,-0.35697,-0.19451,-0.434145,-0.114012,-0.456207,-0.127576,1.95351,1.94592,1.95358,1.93927,-1.65735,1.60276,-1.05361,1.95902,-0.913294,-0.560906,1 +-1.25984,0.445041,-0.35697,-0.19451,-0.495898,-0.121692,-0.471596,-0.137589,-0.827924,-0.81943,-0.816064,-0.8412,0.750275,-0.599954,0.264147,-0.849704,0.663336,-0.403023,0 +-0.341489,1.22787,-0.35697,-0.19451,-0.0636248,-0.0694629,0.220909,-0.114656,0.641861,0.626669,0.735957,0.536813,-0.659769,1.15427,-1.29408,0.724219,-0.573718,-0.439918,5 +0.60428,0.218891,-0.35697,-0.19451,-0.598821,-0.125904,-0.440818,-0.136582,-0.916208,-0.91774,-0.902855,-0.920642,0.731091,-0.662402,0.389189,-0.93772,1.97373,-0.473359,4 +0.659107,-0.981446,-0.35697,-0.19451,-0.290054,-0.09963,-0.610097,-0.134318,-0.951133,-0.914569,-0.989646,-0.929808,1.10518,-1.03709,0.648893,-1.02574,-0.855906,-0.0969288,4 +-1.05424,-0.772692,-0.35697,-0.19451,-0.0430402,-0.086015,-0.348484,-0.117689,-0.828894,-0.886027,-0.772669,-0.832034,0.155563,-0.304745,0.360333,-0.805697,1.82016,-0.632161,2 +-0.355196,-0.285599,2.41015,-0.19451,-0.125378,-0.0820509,0.251687,-0.10163,-0.482548,-0.381795,-0.48677,-0.569264,1.30662,-0.423964,-0.591914,-0.513175,-0.0574116,-0.00483528,0 +1.07031,0.166702,-0.35697,-0.19451,-0.660574,-0.126647,-0.640875,-0.139668,-0.955014,-0.936767,-0.97433,-0.938975,0.942118,-0.912194,0.600799,-1.0102,2.51022,-0.473359,4 +1.11143,0.166702,-0.35697,-0.19451,-0.681158,-0.124274,-0.656264,-0.137858,-0.960835,-0.936767,-0.989646,-0.938975,0.999671,-0.980319,0.658511,-1.02574,2.51022,-0.473359,4 +1.71453,-0.633523,-0.35697,-0.19451,-0.434145,-0.12194,-0.502374,-0.133811,-0.67852,-0.746491,-0.565903,-0.74037,-0.0650563,0.19484,-0.264879,-0.596013,1.01807,-0.501975,4 +-1.1776,-1.85126,-0.35697,-0.19451,-0.290054,-0.103033,-0.425429,-0.126443,0.894102,0.870857,0.991224,0.790416,-0.937941,1.38135,-1.39988,0.983088,-0.622047,-0.460912,3 +-1.10907,1.1061,-0.35697,-0.19451,-0.166547,-0.119632,-0.440818,-0.122702,-0.571803,-0.559386,-0.721616,-0.398158,0.577617,-1.46855,1.90894,-0.593424,-0.312589,2.20106,6 +-0.738986,1.28006,-0.35697,-0.19451,0.306896,-0.0859465,0.590245,-0.103674,0.481786,0.464934,0.582797,0.371818,-0.544663,1.06911,-1.26522,0.568898,-0.491238,-0.428013,5 +-0.0947667,0.984323,-0.35697,-0.19451,0.0187132,-0.0942623,0.190131,-0.12166,0.301337,0.322227,0.340294,0.231267,-0.0554641,0.50708,-0.803524,0.322972,-0.648553,-0.409714,5 +0.919536,0.671192,-0.35697,-0.19451,0.183389,-0.0783345,3.46799,3.59335,0.0888729,0.0463267,0.120764,0.0907154,-0.458334,0.285673,-0.0244131,0.121054,-0.521568,-0.783479,5 +-0.0947667,-1.48594,-0.35697,-0.19451,-0.413561,-0.114292,-0.425429,-0.122011,2.29986,2.29793,2.23948,2.3487,-1.88756,1.48354,-0.62077,2.24896,-0.993918,-0.621241,1 +-0.670452,0.253683,-0.35697,8.97523,0.492156,-0.0407981,0.851857,-0.0988701,-0.537847,-0.654524,-0.445928,-0.529543,-0.6214,0.172132,0.331477,-0.474344,0.798596,-0.696704,2 +0.247903,-1.72948,-0.35697,-0.19451,-0.228301,-0.107075,-0.425429,-0.120775,2.37262,2.42161,2.23948,2.4587,-1.48469,1.05776,-0.303354,2.24896,-1.12784,-0.638279,1 +0.179369,-0.129033,-0.35697,-0.19451,-0.475314,-0.123922,-0.548541,-0.136645,-0.800759,-0.721121,-0.826275,-0.838144,1.37376,-0.827037,0.0236802,-0.85747,0.579381,0.111191,0 +-0.725279,-0.216014,-0.35697,-0.19451,-0.516483,-0.120619,-0.41004,-0.11643,-0.936581,-0.936767,-0.933487,-0.929808,0.759868,-0.747558,0.504613,-0.968784,2.51022,-0.502543,2 +-0.410023,0.305872,-0.35697,-0.19451,-0.434145,-0.12194,-0.471596,-0.137589,-0.92979,-0.933596,-0.930934,-0.914531,0.721499,-0.770267,0.581562,-0.966195,2.41289,-0.597342,2 +-0.917174,-1.71209,-0.35697,-0.19451,-0.41356,-0.116118,-0.56393,-0.134599,1.96903,1.85395,2.00208,2.01871,-2.64534,1.83552,-0.457252,2.00821,-0.751099,-0.669109,1 +0.179369,-1.29458,-0.35697,-0.19451,-0.310638,-0.106594,-0.179205,-0.122011,2.27851,2.29159,2.2114,2.3212,-1.73409,1.42109,-0.668863,2.22048,-1.01735,-0.608615,1 +-0.930881,0.932135,-0.35697,-0.19451,-0.351807,-0.115003,-0.271539,-0.110951,-0.457324,-0.486447,-0.59143,-0.263718,0.107602,-1.26985,2.0436,-0.479522,-0.297415,2.44359,6 +0.878415,0.323268,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.38321,-0.529145,-0.35697,-0.19451,-0.104794,-0.110089,-0.10226,-0.110739,0.675817,0.626669,0.804879,0.561256,-0.995493,1.41542,-1.39988,0.794113,-0.487738,-0.466448,3 +0.480919,-1.43375,-0.35697,-0.19451,-0.392976,-0.109254,-0.610097,-0.137245,-0.952103,-0.920911,-0.987093,-0.929808,1.05722,-1.01438,0.658511,-1.02315,0.482433,-0.312051,4 +-0.84864,0.966927,-0.35697,-0.19451,-0.454729,-0.122353,-0.240761,-0.130599,-0.661057,-0.657696,-0.798196,-0.492877,0.568025,-1.4572,1.89932,-0.673673,-0.0312331,2.205,6 +1.01548,1.68017,-0.35697,-0.19451,-0.269469,-0.108726,-0.425429,-0.13211,-0.796879,-0.784546,-0.900302,-0.676205,0.759868,-1.34365,1.51457,-0.828995,0.337293,2.19613,6 +-0.478557,-0.0246559,2.41015,-0.19451,-0.0842091,-0.0961259,-0.348484,-0.128418,-0.546579,-0.64501,-0.433164,-0.581486,-0.448742,0.308382,-0.0725063,-0.461401,0.691391,-0.572283,2 +-1.54769,0.532022,-0.35697,-0.19451,0.492156,-0.0592571,-0.0253152,-0.0857602,-0.454414,-0.511817,-0.359137,-0.508155,-0.151386,0.262965,-0.293735,-0.386329,0.231363,-0.504507,3 +0.617986,-1.06843,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.382609,0.914738,-0.35697,-0.19451,-0.41356,-0.112692,-0.00992611,-0.117953,-0.389414,-0.39448,-0.560798,-0.17511,0.270669,-1.46287,2.20711,-0.40445,-0.485535,2.29254,6 +1.08402,-1.93824,-0.35697,-0.19451,-0.413561,-0.115746,-0.179205,-0.126821,2.36777,2.36135,2.27266,2.46175,-1.98348,1.30755,-0.226405,2.28261,-1.02656,-0.673006,1 +-1.13648,1.33225,-0.35697,-0.19451,-0.495898,-0.117728,-0.548541,-0.135889,-0.768744,-0.771861,-0.879881,-0.624262,0.596801,-1.37204,1.72618,-0.784987,0.387312,2.24557,6 +1.07031,-0.703107,-0.35697,-0.19451,-0.557652,-0.124274,-0.610097,-0.133307,-0.523295,-0.5689,-0.443375,-0.569264,0.0116809,0.104006,-0.18793,-0.471756,0.240721,-0.505304,4 +-0.50597,-0.563938,-0.35697,-0.19451,-0.310638,-0.108851,-0.471596,-0.127041,1.77694,1.7049,1.82084,1.77427,-2.09859,1.75036,-0.861236,1.82441,-0.773901,-0.606722,1 +1.22109,0.653796,-0.35697,-0.19451,0.677416,-0.111039,2.51387,0.181572,0.0888729,0.0716969,0.12587,0.0601609,-0.228123,0.319736,-0.312973,0.105522,-0.564308,-0.54101,5 +-0.177007,-0.807484,-0.35697,-0.19451,-0.351806,-0.114506,-0.348484,-0.126404,1.84873,1.74296,1.86168,1.91483,-2.46309,1.60276,-0.245642,1.86583,-0.774169,-0.687089,1 +-0.218128,-0.824881,-0.35697,-0.19451,-0.145962,-0.111895,-0.56393,-0.134599,0.38574,0.423708,0.399005,0.329041,0.0308651,0.404893,-0.716956,0.382512,-0.771705,-0.405754,3 +-1.35579,1.52361,-0.35697,-0.19451,-0.0842092,-0.094604,-0.209983,-0.109187,-0.541728,-0.54353,-0.67822,-0.370659,0.424143,-1.35501,1.87046,-0.570126,-0.407506,2.33084,6 +-1.46545,-0.633523,-0.35697,-0.19451,-0.125378,-0.0835452,-0.148427,-0.110467,-0.893894,-0.901883,-0.884986,-0.887032,0.654354,-0.673756,0.485376,-0.919599,1.90915,-0.560782,2 +-1.10907,-0.00725971,-0.35697,-0.19451,-0.310638,-0.105092,-0.394651,-0.125813,-0.93173,-0.930425,-0.930934,-0.923697,0.76946,-0.758912,0.514232,-0.966195,2.34336,-0.516951,2 +1.46781,0.897342,-0.35697,-0.19451,-0.269469,-0.113403,0.113186,-0.103309,-0.567922,-0.581585,-0.703747,-0.385936,0.337813,-1.37204,1.98589,-0.583069,-0.172926,2.33289,6 +-1.20502,-0.337787,-0.35697,-0.19451,2.20067,0.0892776,5.45317,0.22742,-0.482548,-0.511817,-0.47656,-0.456212,0.126786,-0.355838,0.475757,-0.505409,0.791559,-0.687341,2 +-0.355196,0.636399,-0.35697,-0.19451,0.0392976,-0.108505,0.174742,-0.100027,-0.236129,-0.334226,-0.33361,-0.0223365,-0.698137,-0.844069,2.13017,-0.275015,-0.260082,2.71139,6 +-1.43803,-0.929258,-0.35697,-0.19451,3.55924,0.0682034,1.52897,-0.0225635,-0.483519,-0.546701,-0.466349,-0.437879,-0.180162,-0.282036,0.658511,-0.495054,0.218963,-0.793494,2 +0.741348,0.671192,-0.35697,-0.19451,0.0187132,-0.0981552,3.22176,-0.0393472,0.0849923,0.0526692,0.115659,0.0784936,-0.362413,0.274319,-0.101362,0.0951673,-0.60112,-0.633067,5 +0.933243,0.532022,-0.35697,-0.19451,-0.0636249,-0.0704062,-0.117649,-0.108432,-0.233219,-0.321541,-0.106423,-0.297328,-0.611808,0.654685,-0.495727,-0.130049,0.116685,-0.53592,3 +-1.62993,-0.0942407,-0.35697,-0.19451,-0.681158,-0.124274,-0.656264,-0.137858,-0.969566,-0.936767,-1.01262,-0.938975,1.086,-1.08251,0.745079,-1.04903,-1.38313,-0.473359,2 +-0.451143,-1.1728,-0.35697,-0.19451,-0.537068,-0.126647,-0.440818,-0.130536,2.32993,2.37087,2.2165,2.40064,-1.52306,1.15427,-0.428397,2.22566,-1.09865,-0.623739,1 +1.74194,1.34964,-0.35697,-0.19451,1.00677,-0.00477641,0.867246,-0.0416316,0.0849923,0.084382,0.110554,0.0540499,-0.0746484,0.240257,-0.33221,0.08999,-0.663682,-0.526053,5 +-0.629332,-1.15541,-0.35697,-0.19451,-0.0636247,-0.091218,-0.133038,-0.106605,-0.268144,-0.251773,-0.183003,-0.382881,0.36659,0.348121,-0.957423,-0.207709,0.05964,-0.307233,0 +1.42669,0.0101365,-0.35697,-0.19451,-0.372392,-0.125656,-0.425429,-0.134378,-0.816282,-0.733806,-0.851802,-0.844255,1.41213,-0.906517,0.119867,-0.875591,0.521058,0.210462,0 +0.275317,-0.389976,2.41015,-0.19451,-0.495898,-0.124665,-0.225372,-0.130032,-0.382622,-0.321541,-0.343821,-0.483711,0.865381,-0.0549523,-0.774668,-0.370797,0.0259573,-0.201523,0 +-0.437437,1.15829,-0.35697,-0.19451,1.33612,-0.0866651,0.0516298,-0.0851711,0.433278,0.414194,0.521533,0.341263,-0.525479,0.944217,-1.07285,0.506769,-0.540019,-0.446278,5 +0.371264,1.31485,-0.35697,-0.19451,-0.290054,-0.115746,-0.440818,-0.135826,-0.500011,-0.502303,-0.660352,-0.300384,0.385774,-1.4799,2.12055,-0.510586,-0.345279,2.25997,6 +1.34445,0.653796,-0.35697,-0.19451,-0.187131,-0.0595049,1.82136,0.387314,0.13059,0.0907244,0.184581,0.102937,-0.467926,0.467341,-0.322591,0.165062,-0.51893,-0.59495,5 +1.12514,-0.459561,-0.35697,-0.19451,-0.372392,-0.112773,-0.456207,-0.13211,-0.901655,-0.920911,-0.879881,-0.899254,0.558433,-0.594277,0.446901,-0.914421,2.13943,-0.586362,2 +1.0429,-0.546542,-0.35697,-0.19451,-0.392976,-0.122601,-0.456206,-0.135133,1.39567,1.20067,1.63705,1.27929,-2.90433,2.75521,-1.75577,1.63803,-0.331449,-0.569394,1 +-1.49286,-0.720504,-0.35697,-0.19451,0.903845,0.793364,1.05191,0.993141,-0.748371,-0.813088,-0.680773,-0.758702,0.0212729,-0.162817,0.254528,-0.712504,1.38376,-0.619756,2 +-0.177007,-1.83386,-0.35697,-0.19451,-0.392976,-0.111895,-0.533152,-0.135429,2.00978,1.98397,1.974,2.05538,-1.86838,1.40974,-0.514964,1.97973,-0.935728,-0.632835,1 +1.33074,-1.06843,-0.35697,-0.19451,-0.598821,-0.121713,-0.486985,-0.130687,-0.8027,-0.81943,-0.752248,-0.838144,0.50088,-0.321776,0.0429175,-0.784987,1.11215,-0.434375,4 +1.61858,-0.0594483,-0.35697,-0.19451,0.945014,-0.0300931,-0.240761,-0.10899,0.282904,0.341255,0.27903,0.228211,0.299445,0.206194,-0.649625,0.260843,-0.795288,-0.354511,3 +0.6454,0.288476,-0.35697,-0.19451,0.409818,-0.117906,-0.486985,-0.133002,-0.886133,-0.860657,-0.900302,-0.883976,0.95171,-0.82136,0.437282,-0.935131,1.00386,-0.317254,4 +1.72824,-1.72948,-0.35697,-0.19451,-0.269469,-0.105753,-0.225373,-0.133055,2.21545,2.22499,2.15013,2.26009,-1.7149,1.38135,-0.62077,2.15835,-1.01142,-0.611529,1 +-0.382609,-0.650919,2.41015,-0.19451,-0.145962,-0.108726,0.313243,-0.103393,-0.346727,-0.2708,-0.320847,-0.447046,0.970895,-0.111723,-0.784287,-0.347499,-0.093524,-0.15899,0 +1.49522,1.22787,-0.35697,8.97523,-0.166547,-0.0837984,0.390188,-0.0876407,0.303277,0.290515,0.370926,0.231267,-0.362413,0.700101,-0.822761,0.354036,-0.562939,-0.458786,5 +0.590573,1.48881,-0.35697,-0.19451,-0.207716,-0.112443,-0.471596,-0.128059,-0.380682,-0.432535,-0.535271,-0.1415,-0.160978,-1.34365,2.43796,-0.375974,-0.160112,2.42814,6 +-0.7664,-1.85126,-0.35697,-0.19451,-0.475314,-0.124913,-0.486985,-0.134881,2.44247,2.5104,2.29053,2.53203,-1.36959,0.989634,-0.303354,2.30073,-1.16635,-0.631964,1 +-1.64363,-0.0942407,-0.35697,-0.19451,-0.619405,-0.125656,-0.579319,-0.13866,-0.946283,-0.936767,-0.956461,-0.932864,0.855789,-0.844069,0.571943,-0.992082,2.51022,-0.523112,2 +0.371264,0.49723,-0.35697,-0.19451,-0.639989,-0.126565,-0.0868712,-0.0663637,-0.933671,-0.908226,-0.959014,-0.917586,0.990079,-0.934902,0.591181,-0.994671,0.053701,-0.412451,4 +1.15255,-0.929258,-0.35697,4.39036,0.121636,-0.0866878,1.75981,-0.081306,-0.0081426,0.0241278,0.0058943,-0.0559467,0.299445,0.086975,-0.447634,-0.0161463,-0.672486,-0.386767,3 +-0.84864,1.34964,-0.35697,-0.19451,-0.166547,-0.106827,-0.41004,-0.130788,-0.766804,-0.759176,-0.887539,-0.621207,0.692723,-1.43449,1.7358,-0.782398,0.509433,2.16515,6 +-0.0536464,-0.37258,2.41015,-0.19451,0.389233,-0.0859465,-0.333095,-0.125537,0.38283,0.407852,0.416874,0.313764,-0.0842406,0.541143,-0.83238,0.400633,-0.689823,-0.408962,3 +1.46781,0.897342,-0.35697,-0.19451,-0.269469,-0.113403,0.113186,-0.103309,-0.567922,-0.581585,-0.703747,-0.385936,0.337813,-1.37204,1.98589,-0.583069,-0.172926,2.33289,6 +-0.629332,-1.38156,-0.35697,-0.19451,1.10969,-0.0559123,-0.0868708,-0.120979,0.566189,0.493476,0.720641,0.445149,-1.12019,1.4949,-1.4095,0.708687,-0.380957,-0.478702,3 +1.4541,0.0101365,-0.35697,-0.19451,0.574494,0.206341,-0.163816,-0.0307824,-0.891954,-0.895541,-0.879881,-0.893143,0.692723,-0.651047,0.408426,-0.914421,2.05193,-0.48924,2 +-0.670452,1.33225,-0.35697,-0.19451,0.32748,-0.10993,0.528688,-0.0911521,0.50604,0.50299,0.58535,0.408483,-0.43915,0.944217,-1.15941,0.571486,-0.569653,-0.425975,5 +1.02919,0.72338,2.41015,-0.19451,0.14222,-0.038693,-0.179205,-0.124553,-0.516504,-0.5689,-0.637378,-0.315661,-0.0554641,-1.23011,2.13978,-0.523529,0.0171984,2.48108,6 +-1.06795,0.0623251,-0.35697,-0.19451,-0.269469,-0.105895,-0.379262,-0.131829,-0.509713,-0.679894,-0.3234,-0.563153,-1.12978,0.824998,-0.264879,-0.350087,1.20268,-0.62341,2 +0.247903,-0.59873,-0.35697,-0.19451,0.286311,-0.078455,-0.579319,-0.140171,-0.499041,-0.537187,-0.422954,-0.547876,0.0596415,0.0983293,-0.226405,-0.451046,0.141037,-0.485419,4 +-1.47915,-0.511749,-0.35697,-0.19451,-0.0636247,-0.0565317,-0.379262,-0.123987,-0.445683,-0.486447,-0.356584,-0.508155,-0.00750348,0.228903,-0.380303,-0.38374,0.13525,-0.466797,4 +-1.25984,-0.424768,-0.35697,-0.19451,-0.125378,-0.0992337,0.00546275,-0.120979,-0.565012,-0.616469,-0.468902,-0.624262,-0.00750348,0.177809,-0.293735,-0.497642,0.501893,-0.485077,4 +-1.24614,0.236287,-0.35697,-0.19451,-0.516483,-0.123592,-0.363873,-0.13211,-0.817252,-0.714778,-0.867118,-0.847311,1.59438,-1.00303,0.100629,-0.870414,0.642725,0.400318,0 +0.384971,-0.129033,-0.35697,-0.19451,0.51274,-0.072202,-0.363873,-0.125983,-0.199263,-0.223231,-0.134502,-0.251496,-0.0554641,0.268642,-0.399541,-0.158524,-0.311582,-0.47102,3 +-1.04054,-0.198618,2.41015,-0.19451,-0.207716,-0.0965861,-0.240761,-0.110951,-0.87061,-0.905055,-0.849249,-0.853422,0.395366,-0.571568,0.571943,-0.883357,1.93059,-0.694232,2 +-1.28726,-0.616126,2.41015,-0.19451,-0.372392,-0.113764,-0.0714822,-0.106353,-0.832774,-0.89237,-0.78288,-0.825923,0.136379,-0.350161,0.45652,-0.816051,1.85926,-0.668955,2 +1.39927,-0.946654,-0.35697,-0.19451,0.636247,0.896845,0.528688,0.478755,-0.68046,-0.740149,-0.647588,-0.654817,0.0116809,-0.338807,0.562325,-0.678851,0.776963,-0.7241,2 +-1.1639,-0.668315,2.41015,-0.19451,-0.290054,-0.115746,0.020852,-0.129025,-0.417548,-0.34374,-0.392322,-0.514266,1.00926,-0.174171,-0.716956,-0.419982,0.0080695,-0.155992,0 +0.206783,0.0101365,-0.35697,-0.19451,-0.331223,-0.117398,-0.363873,-0.122286,-0.904566,-0.930425,-0.874776,-0.905365,0.50088,-0.543183,0.418045,-0.909244,2.39531,-0.585352,2 +0.234196,1.01912,-0.35697,-0.19451,0.224557,-0.10278,-0.0407044,-0.078644,-0.0663518,-0.0361264,-0.0451591,-0.120111,0.328221,0.086975,-0.47649,-0.0679201,-0.585545,-0.375415,5 +1.50893,2.18466,-0.35697,4.39036,-0.104794,-0.0732138,0.0670188,-0.114572,-0.371951,-0.372281,-0.527613,-0.181221,0.299445,-1.34365,1.97627,-0.409627,-0.614444,2.35905,6 +-1.25984,0.13191,-0.35697,-0.19451,-0.537067,-0.109305,-0.394651,-0.121545,-0.951133,-0.930425,-0.97433,-0.932864,0.961302,-0.934902,0.620037,-1.0102,-0.0853472,-0.473359,2 +-1.21872,2.08028,2.41015,-0.19451,-0.00187127,-0.086015,-0.117649,-0.12808,-0.621281,-0.654524,-0.736932,-0.44399,0.203524,-1.28121,1.96665,-0.632254,0.110971,2.4145,6 +1.11143,-1.03363,-0.35697,-0.19451,-0.681158,-0.124274,-0.594708,-0.137858,-0.821133,-0.832115,-0.777774,-0.853422,0.568025,-0.384224,0.0813921,-0.810874,1.18737,-0.422259,4 +0.535746,-0.703107,2.41015,-0.19451,0.224558,0.00821577,-0.240761,-0.126821,0.765071,0.782061,0.81509,0.680419,-0.467926,0.961248,-1.15941,0.804468,-0.729552,-0.430246,3 +-0.917174,-0.250806,-0.35697,-0.19451,-0.269469,-0.113403,-0.379262,-0.131829,0.124769,0.0938957,0.217766,0.0418281,-0.381597,0.72281,-0.841999,0.198715,-0.402661,-0.456695,3 +-0.834933,-1.81646,-0.35697,-0.19451,-0.351807,-0.123922,-0.209982,-0.134881,2.63844,2.81802,2.34924,2.78258,-0.515887,0.23458,0.119867,2.36027,-1.42516,-0.644329,1 +0.851002,-1.52073,-0.35697,-0.19451,-0.557652,-0.121713,-0.533152,-0.135429,-0.773595,-0.800403,-0.71651,-0.80759,0.385774,-0.253651,0.0429175,-0.748745,0.971331,-0.475234,4 +0.206783,-0.877069,-0.35697,-0.19451,-0.063625,-0.108851,-0.456207,-0.123105,0.242157,0.366625,0.159054,0.219045,0.932526,-0.355838,-0.33221,0.139175,-1.09823,-0.206228,3 +0.851002,-0.755296,-0.35697,-0.19451,-0.207716,-0.111452,-0.302317,-0.12808,0.0908133,0.141465,0.0799217,0.0540499,0.385774,0.00181866,-0.389922,0.0589258,-0.797879,-0.375194,3 +-0.533384,-0.981446,-0.35697,-0.19451,-0.331223,-0.113434,-0.379262,-0.128521,1.88075,1.90152,1.86934,1.85372,-1.34081,1.46651,-1.14018,1.8736,-0.960061,-0.524289,1 +-0.272955,1.21047,-0.35697,-0.19451,0.492156,-0.0848263,0.128575,-0.103149,0.604025,0.5791,0.71043,0.494036,-0.717322,1.20536,-1.32293,0.698332,-0.518715,-0.443185,5 +1.09772,1.15829,-0.35697,-0.19451,-0.228301,-0.105051,-0.225372,-0.121063,0.325591,0.341255,0.378584,0.243488,-0.122609,0.620622,-0.928567,0.361802,-0.596141,-0.40425,5 +-1.58881,-0.755296,-0.35697,-0.19451,0.389233,0.179335,3.94504,1.07577,-0.351577,-0.442049,-0.287662,-0.337049,-0.535071,0.138069,0.302621,-0.313846,0.382642,-0.691511,2 +-1.10907,-1.27718,-0.35697,-0.19451,-0.269469,-0.105895,-0.379262,-0.133545,0.734996,0.699608,0.830406,0.646809,-0.918757,1.23943,-1.17865,0.82,-0.598871,-0.482023,3 +-1.06795,1.14089,-0.35697,-0.19451,0.14222,-0.0258095,0.95958,0.108205,-0.194412,-0.172491,-0.175345,-0.236219,0.356998,-0.0322439,-0.303354,-0.199943,-0.567126,-0.382879,5 +-1.58881,-0.824881,-0.35697,-0.19451,-0.2283,-0.0956279,-0.209983,-0.108513,-0.906506,-0.911397,-0.90796,-0.890087,0.692723,-0.753235,0.581562,-0.942897,1.95055,-0.63281,2 +-0.862347,0.932135,-0.35697,-0.19451,-0.2283,-0.10769,-0.209983,-0.12414,0.367307,0.385653,0.434742,0.264877,-0.132201,0.751195,-1.14018,0.418754,-0.528573,-0.383805,5 +-1.09536,-0.0420521,-0.35697,-0.19451,0.0598827,-0.0993322,1.15964,-0.0946285,0.469174,0.426879,0.562376,0.393206,-0.765282,1.00666,-0.938185,0.548188,-0.524287,-0.494421,3 +0.494625,0.35806,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.39927,1.71496,-0.35697,-0.19451,0.0804665,-0.0691674,0.0516298,-0.0166759,-0.726057,-0.69258,-0.839038,-0.615096,0.894157,-1.34933,1.38953,-0.777221,-0.233017,2.11471,6 +-1.35579,-0.581334,-0.35697,-0.19451,-0.475314,-0.118967,-0.317706,-0.135322,1.99232,2.07911,1.93316,1.9576,-0.832427,1.23943,-1.26522,1.93831,-1.07356,-0.46302,1 +1.55005,-0.877069,-0.35697,-0.19451,0.142219,-0.0959787,-0.25615,-0.126879,0.169396,0.170006,0.20245,0.127381,-0.132201,0.359476,-0.47649,0.183183,-0.66821,-0.474666,3 +-0.930881,-0.59873,-0.35697,-0.19451,-0.0636247,-0.0981715,1.03653,-0.0601968,-0.525235,-0.565729,-0.451033,-0.569264,0.0596415,0.0642667,-0.168693,-0.479522,0.22161,-0.496235,4 +-0.985708,-1.41635,-0.35697,-0.19451,0.51274,-0.111425,-0.502374,-0.131091,-0.230308,-0.239088,-0.183003,-0.27594,0.107602,0.126715,-0.322591,-0.207709,-0.38982,-0.451752,3 +0.480919,0.775569,-0.35697,-0.19451,-0.145963,-0.101668,-0.486985,-0.132156,-0.312771,-0.340568,-0.48677,-0.0742794,0.00208865,-1.41746,2.39949,-0.319023,-0.400802,2.37167,6 +0.151956,-0.929258,-0.35697,-0.19451,-0.331223,-0.120371,-0.194594,-0.102827,-0.288517,-0.239088,-0.234056,-0.398158,0.68313,0.126715,-0.89971,-0.259483,-0.0245786,-0.247378,0 +-1.28726,-0.96405,-0.35697,-0.19451,9.65224,4.40709,4.39133,5.6179,0.265441,0.163664,0.36582,0.240433,-1.13938,0.887446,-0.361066,0.348859,-0.0607077,-0.612009,2 +-0.163301,-0.00725971,2.41015,-0.19451,-0.166547,-0.113469,-0.133038,-0.110958,0.583652,0.544216,0.679798,0.500147,-0.832427,1.12021,-1.06323,0.667268,-0.559457,-0.484713,3 +-0.889761,-0.129033,-0.35697,-0.19451,-0.434145,-0.118619,-0.456207,-0.134318,-0.357398,-0.384966,-0.292768,-0.404269,0.0404572,0.138069,-0.274498,-0.319023,-0.152178,-0.480207,4 +0.124542,1.1061,-0.35697,-0.19451,-0.00187138,-0.0935183,-0.0868711,-0.109825,0.584622,0.566415,0.687456,0.472648,-0.640584,1.16562,-1.33255,0.675034,-0.523129,-0.43394,5 +0.508332,0.619003,-0.35697,-0.19451,0.101051,-0.105895,-0.0560932,-0.115423,-0.286577,-0.216889,-0.336163,-0.291217,0.865381,-0.565891,0.0910108,-0.363031,-0.981332,-0.284506,3 +0.412385,0.201495,-0.35697,-0.19451,0.183388,-0.0545497,-0.440818,-0.138093,0.861116,0.880371,0.912091,0.772083,-0.525479,1.0464,-1.24598,0.902838,-0.738426,-0.428417,3 +-0.725279,1.17568,2.41015,-0.19451,-0.2283,-0.115994,0.190131,-0.0618295,-0.572773,-0.591099,-0.673115,-0.428713,0.299445,-1.13928,1.63,-0.619311,-0.335173,2.52905,6 +1.33074,-1.2076,-0.35697,-0.19451,-0.269467,-0.123592,-0.394651,-0.125813,2.54822,2.70385,2.32882,2.63286,-0.659769,0.626299,-0.399541,2.33956,-1.32531,-0.562116,1 +1.75565,0.462437,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.30096,-0.563938,-0.35697,-0.19451,0.553909,0.0168049,0.236298,0.0135526,-0.80658,-0.866999,-0.736932,-0.822867,0.107602,-0.19688,0.225672,-0.769455,1.73505,-0.595241,2 +-1.68475,1.29745,2.41015,-0.19451,-0.372392,-0.113469,-0.133038,-0.117102,-0.651355,-0.660867,-0.772669,-0.489822,0.443327,-1.34365,1.83199,-0.671085,-0.0487119,2.31935,6 +-1.39691,1.12349,-0.35697,-0.19451,-0.0842089,-0.116407,1.37508,0.492673,-0.169188,-0.153463,-0.147266,-0.20872,0.280261,0.0074957,-0.293735,-0.171468,-0.625225,-0.421664,5 +-1.60251,-1.46854,2.41015,-0.19451,-0.187131,-0.102119,-0.163816,-0.128269,1.99911,1.99032,2.0174,1.96371,-1.70531,1.76172,-1.27484,2.02374,-0.893259,-0.540505,1 +0.453505,1.66277,2.41015,-0.19451,0.14222,-0.0486034,-0.0868712,-0.070898,-0.580534,-0.610126,-0.703747,-0.398158,0.203524,-1.29824,1.9955,-0.593424,-0.00385799,2.40827,6 +-1.25984,-0.337787,2.41015,-0.19451,-0.125378,-0.105836,0.174742,-0.0544613,-0.441802,-0.359596,-0.443375,-0.514266,1.10518,-0.37287,-0.47649,-0.471756,-0.203787,-0.124555,0 +0.796175,-1.6425,-0.35697,-0.19451,-0.41356,-0.113764,-0.456207,-0.132866,1.73426,1.59708,1.88721,1.66428,-2.65493,2.44297,-1.47683,1.89172,-0.568035,-0.578722,1 +-0.7664,-0.859673,5.17726,-0.19451,0.739169,0.0943535,-0.0714821,-0.0980406,-0.352548,-0.292999,-0.313189,-0.453156,0.827012,-0.0265668,-0.784287,-0.339732,-0.0290894,-0.196516,0 +0.590573,1.1061,-0.35697,-0.19451,0.595078,-0.0789666,0.113186,-0.11293,0.548726,0.563244,0.626192,0.435982,-0.314452,0.966925,-1.32293,0.612905,-0.557328,-0.390707,5 +0.617986,-0.0420521,-0.35697,-0.19451,0.101051,-0.0863942,0.0824078,-0.107432,-0.122621,-0.118579,-0.083449,-0.172054,0.136379,0.160777,-0.409159,-0.10675,-0.496983,-0.427979,3 +-0.46485,-1.2076,-0.35697,-0.19451,-0.392976,-0.118205,-0.440818,-0.128978,1.91082,1.85712,1.90508,1.94844,-2.04104,1.52896,-0.54382,1.90984,-0.863824,-0.636009,1 +0.563159,0.201495,-0.35697,-0.19451,-0.537067,-0.121239,-0.610097,-0.133307,-0.933671,-0.914569,-0.938592,-0.935919,0.932526,-0.798652,0.418045,-0.973961,2.38855,-0.335091,4 +-0.985708,-1.6599,-0.35697,-0.19451,-0.537067,-0.118307,-0.179205,-0.125537,1.95254,1.8159,1.98676,2.02177,-2.82759,1.82984,-0.264879,1.99268,-0.722942,-0.696087,1 +1.0429,0.166702,-0.35697,-0.19451,-0.475314,-0.12194,-0.610097,-0.138912,-0.951133,-0.927254,-0.97433,-0.935919,0.990079,-0.934902,0.591181,-1.0102,2.348,-0.411669,4 +1.67341,1.28006,-0.35697,-0.19451,-0.578236,-0.126317,-0.502374,-0.139101,-0.813371,-0.81943,-0.923276,-0.667039,0.606393,-1.40042,1.76466,-0.821229,0.832933,2.22466,6 +-0.944588,1.26266,-0.35697,-0.19451,0.183389,-0.0956279,0.559467,-0.0655223,0.341113,0.32857,0.414321,0.261821,-0.391189,0.768227,-0.909329,0.398044,-0.564717,-0.447706,5 +1.12514,0.845154,-0.35697,-0.19451,-0.331222,-0.12066,-0.209983,-0.124546,-0.472847,-0.467419,-0.63993,-0.272884,0.433735,-1.50261,2.11093,-0.487288,-0.36417,2.23042,6 +-0.0673532,0.0101365,-0.35697,-0.19451,2.63294,2.38299,2.42154,2.99735,0.438129,0.461763,0.465374,0.377929,-0.141793,0.541143,-0.774668,0.449818,-0.725537,-0.423521,3 +-0.0262328,0.49723,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.52027,0.218891,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,2 +-0.300369,1.24527,2.41015,-0.19451,0.0598821,-0.092209,-0.10226,-0.0756212,-0.747401,-0.756005,-0.856907,-0.599819,0.529656,-1.34365,1.74542,-0.764277,0.327584,2.29718,6 +0.165662,-0.511749,5.17726,-0.19451,-0.084209,-0.10947,0.344021,-0.0910502,-0.414638,-0.346911,-0.387216,-0.508155,0.95171,-0.15714,-0.6881,-0.414804,0.0040225,-0.170997,0 +-0.615625,1.38444,-0.35697,-0.19451,-0.187131,-0.110743,-0.133038,-0.114219,-0.645534,-0.651353,-0.808406,-0.437879,0.472103,-1.61615,2.26483,-0.627077,0.383478,2.16758,6 +0.206783,-1.81646,2.41015,-0.19451,-0.310639,-0.115003,-0.148427,-0.106416,1.91859,1.85078,1.97655,1.89344,-2.17533,1.96042,-1.14018,1.98232,-0.775256,-0.583326,1 +-1.69846,-1.36416,-0.35697,-0.19451,-0.372391,-0.117153,-0.363873,-0.132428,2.24747,2.21865,2.20119,2.30592,-2.089,1.53463,-0.505346,2.21013,-0.949233,-0.64482,1 +0.974363,2.09768,-0.35697,-0.19451,-0.2283,-0.115003,0.328632,-0.0219658,-0.767774,-0.746491,-0.854354,-0.676205,0.81742,-1.2074,1.22601,-0.828995,-0.190623,2.39656,6 +0.672814,-1.27718,-0.35697,-0.19451,-0.331222,-0.110359,-0.41004,-0.123974,1.84388,1.76516,1.87445,1.86288,-2.21369,1.7163,-0.6881,1.87877,-0.78646,-0.630542,1 +-0.643038,-0.407372,-0.35697,-0.19451,-0.125378,0.0576852,0.0362408,0.009963,-0.850237,-0.895541,-0.798196,-0.859533,0.280261,-0.350161,0.31224,-0.831583,1.96855,-0.593815,2 +1.41298,-1.76427,-0.35697,-0.19451,-0.290054,-0.108117,-0.286928,-0.123582,0.330442,0.284172,0.429637,0.252655,-0.688545,0.932863,-0.890092,0.413576,-0.470498,-0.492217,3 +-1.39691,0.323268,-0.35697,-0.19451,-0.557652,-0.124913,-0.41004,-0.133811,-0.838595,-0.749662,-0.882434,-0.862588,1.48887,-0.980319,0.16796,-0.898889,0.647553,0.345029,0 +0.056008,0.218891,-0.35697,-0.19451,0.0392976,-0.0926219,-0.440818,-0.138093,-0.808521,-0.832115,-0.770116,-0.822867,0.443327,-0.406932,0.244909,-0.803108,1.01113,-0.52571,4 +0.727641,0.184098,-0.35697,-0.19451,-0.660574,-0.12347,-0.610097,-0.135544,-0.922029,-0.908226,-0.925829,-0.920642,0.874973,-0.781621,0.446901,-0.961018,1.78022,-0.410849,4 +1.4541,0.0101365,-0.35697,-0.19451,0.574494,0.206341,-0.163816,-0.0307824,-0.891954,-0.895541,-0.879881,-0.893143,0.692723,-0.651047,0.408426,-0.914421,2.05193,-0.48924,2 +-0.163301,0.0797212,-0.35697,-0.19451,-0.619405,-0.125656,-0.56393,-0.137589,-0.951133,-0.936767,-0.964119,-0.938975,0.90375,-0.866777,0.562325,-0.999848,2.51022,-0.473359,2 +0.234196,1.03651,2.41015,-0.19451,-0.331223,-0.107926,-0.240761,-0.114909,0.160664,0.211233,0.179476,0.08766,0.328221,0.257288,-0.765049,0.159885,-0.636649,-0.339624,5 +-0.0673532,-1.25979,-0.35697,-0.19451,-0.310638,-0.111425,-0.102261,-0.12754,2.28821,2.29476,2.22671,2.33037,-1.80123,1.46651,-0.678481,2.23601,-1.00444,-0.609844,1 +-0.793813,1.22787,-0.35697,-0.19451,0.677415,-0.0939296,1.11347,-0.0727584,0.57007,0.541045,0.651719,0.494036,-0.726914,1.01234,-0.986278,0.638792,-0.61365,-0.48536,5 +-1.28726,-0.476957,-0.35697,-0.19451,0.162804,-0.0470343,0.0977967,-0.0353796,-0.871581,-0.908226,-0.83138,-0.87481,0.376182,-0.446672,0.37957,-0.865236,2.11267,-0.585835,2 +0.26161,1.1061,-0.35697,-0.19451,0.018713,-0.0816304,1.05191,-0.0804392,0.500219,0.487133,0.58535,0.405428,-0.525479,0.978279,-1.13056,0.571486,-0.556007,-0.44067,5 +-0.135887,1.03651,-0.35697,-0.19451,-0.310638,-0.110089,0.636411,-0.122825,-0.450533,-0.521331,-0.578666,-0.223997,-0.276083,-1.22443,2.35139,-0.445869,0.100955,2.50412,6 +0.98807,-0.320391,-0.35697,-0.19451,0.677416,0.221949,0.344021,0.104679,-0.861879,-0.889198,-0.823722,-0.871755,0.452919,-0.452349,0.31224,-0.85747,2.01111,-0.545215,2 +-0.793813,-1.08582,-0.35697,-0.19451,-0.310638,-0.115994,-0.440818,-0.133559,-0.348667,-0.289828,-0.310636,-0.447046,0.81742,-0.0322439,-0.765049,-0.337144,-0.0488028,-0.218733,0 +1.38557,0.35806,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.327782,-0.0420521,2.41015,-0.19451,-0.454729,-0.108505,-0.25615,-0.125069,-0.881282,-0.905055,-0.877328,-0.853422,0.50088,-0.696464,0.677749,-0.911833,1.82483,-0.748231,2 +0.851002,-0.0594483,-0.35697,-0.19451,0.121635,-0.0808509,-0.317706,-0.129171,0.602085,0.686923,0.577692,0.542924,0.280261,0.33109,-0.841999,0.56372,-0.893896,-0.343019,3 +-1.62993,-0.7379,-0.35697,4.39036,0.821507,0.0675956,0.913414,0.344554,-0.643594,-0.71795,-0.581219,-0.63954,-0.151386,-0.111723,0.341096,-0.611545,0.881535,-0.663716,2 +-0.656745,0.201495,-0.35697,-0.19451,-0.619405,-0.126647,-0.610097,-0.139668,-0.950163,-0.936767,-0.961566,-0.938975,0.894157,-0.855423,0.552706,-0.99726,2.51022,-0.473359,4 +-0.478557,1.14089,-0.35697,-0.19451,-0.372392,-0.10993,-0.379262,-0.126097,-0.632922,-0.638668,-0.798196,-0.422602,0.462511,-1.62183,2.28406,-0.614133,0.307487,2.16681,6 +0.823588,-1.53812,-0.35697,-0.19451,-0.187132,-0.10408,-0.348484,-0.126404,1.88754,1.8159,1.86679,1.96066,-2.18492,1.40974,-0.197549,1.87101,-0.857289,-0.684192,1 +0.98807,1.95851,-0.35697,-0.19451,0.203973,0.024981,0.251687,-0.010945,-0.549489,-0.562557,-0.632272,-0.431768,0.328221,-1.00303,1.37029,-0.619311,-0.587642,2.68725,6 +0.727641,1.0713,-0.35697,-0.19451,0.265727,-0.0870292,0.190131,-0.101453,0.313949,0.319056,0.378584,0.228211,-0.208938,0.688747,-0.957423,0.361802,-0.555635,-0.416278,5 +0.837295,-1.6599,-0.35697,-0.19451,-0.351808,-0.118619,-0.27154,-0.118171,2.23874,2.23133,2.17056,2.30287,-1.88756,1.38135,-0.447634,2.17906,-0.995928,-0.641338,1 +-1.34208,1.14089,-0.35697,-0.19451,-0.331223,-0.120371,0.0516298,-0.0975368,-0.111949,-0.109066,-0.0808963,-0.150666,0.117194,0.115361,-0.312973,-0.104162,-0.56525,-0.453867,5 +0.220489,-1.60771,-0.35697,-0.19451,-0.166547,-0.118719,-0.333095,-0.120019,2.35127,2.40575,2.22927,2.41898,-1.41755,1.11453,-0.466871,2.2386,-1.12205,-0.613374,1 +1.02919,1.59319,-0.35697,-0.19451,-0.125378,-0.105938,0.636411,-0.0951963,-0.3671,-0.448392,-0.496981,-0.129278,-0.43915,-1.16766,2.41872,-0.365619,-0.0268321,2.53922,6 +0.823588,-0.23341,-0.35697,-0.19451,6.1323,8.2367,-0.317706,-0.130032,0.356636,0.37931,0.373478,0.310709,-0.0842406,0.404893,-0.601532,0.356625,-0.778068,-0.433317,3 +0.398678,2.18466,-0.35697,-0.19451,0.595078,-0.0758661,0.590244,-0.0800105,-0.499041,-0.51816,-0.655246,-0.288162,0.2323,-1.45152,2.22635,-0.500231,-0.124814,2.31529,6 +-1.49286,1.15829,-0.35697,-0.19451,0.698,0.0259721,1.69825,1.11254,-0.194412,-0.191519,-0.167687,-0.227052,0.184339,0.01885,-0.216786,-0.192177,-0.554087,-0.516238,5 +-1.52027,-0.494353,-0.35697,-0.19451,-0.207716,-0.111717,-0.363873,-0.129618,-0.911357,-0.91774,-0.925829,-0.877865,0.68313,-0.844069,0.745079,-0.961018,1.95866,-0.769947,2 +1.4541,0.636399,-0.35697,-0.19451,0.265727,0.0564464,2.97554,2.23786,0.100515,0.0368128,0.17437,0.0723827,-0.659769,0.575205,-0.312973,0.154707,-0.382266,-0.629598,5 +0.0423012,-1.88605,-0.35697,-0.19451,-0.41356,-0.121239,-0.517763,-0.129618,2.4153,2.44064,2.29308,2.51064,-1.73409,1.16562,-0.236023,2.30332,-1.08937,-0.659755,1 +-0.46485,-1.03363,-0.35697,-0.19451,-0.351807,-0.111425,-0.379262,-0.122825,0.653503,0.594957,0.779353,0.55209,-1.06264,1.37568,-1.26522,0.768227,-0.493335,-0.48869,3 +0.878415,-0.96405,-0.35697,-0.19451,-0.0842092,-0.0911999,-0.363873,-0.117312,0.0403652,0.157321,-0.0426063,0.0265507,1.02845,-0.520474,-0.149456,-0.0653313,-1.12323,-0.16951,3 +0.809882,-1.38156,-0.35697,-0.19451,-0.516482,-0.124583,-0.394651,-0.127324,1.62269,1.48926,1.77489,1.55123,-2.53024,2.34646,-1.43836,1.77782,-0.555712,-0.576991,1 +0.974363,0.0971174,-0.35697,-0.19451,-0.392976,-0.117646,-0.486985,-0.137149,-0.80464,-0.711607,-0.846696,-0.835089,1.49846,-0.940579,0.0910108,-0.860059,0.495952,0.278331,0 +-0.259248,0.218891,-0.35697,-0.19451,-0.578236,-0.123344,-0.56393,-0.138345,-0.952103,-0.933596,-0.971777,-0.935919,0.942118,-0.912194,0.600799,-1.00761,2.348,-0.473359,2 +-1.46545,-0.581334,-0.35697,-0.19451,-0.310638,-0.118967,-0.486985,-0.136393,-0.896805,-0.920911,-0.856907,-0.911475,0.510472,-0.46938,0.283384,-0.891123,2.18674,-0.518609,2 +-0.0810599,1.17568,-0.35697,-0.19451,0.450986,-0.0615516,0.774913,-0.0818543,0.590443,0.556901,0.712983,0.469592,-0.784467,1.30187,-1.41912,0.700921,-0.472528,-0.442723,5 +-1.64363,-0.546542,-0.35697,-0.19451,-0.207716,-0.116407,-0.0714822,-0.118445,-0.480608,-0.400823,-0.468902,-0.566209,1.11478,-0.316099,-0.582295,-0.497642,0.00861604,-0.119973,0 +0.974363,1.01912,-0.35697,-0.19451,-0.269469,-0.117646,-0.502374,-0.133811,-0.449563,-0.454734,-0.599088,-0.260663,0.318629,-1.36636,1.9955,-0.476933,-0.490547,2.35197,6 +0.98807,0.566815,-0.35697,-0.19451,-0.351807,-0.116367,-0.10226,-0.111179,-0.527176,-0.553044,-0.657799,-0.340104,0.193931,-1.30391,2.01474,-0.544239,-0.185076,2.41144,6 +0.974363,-0.407372,-0.35697,-0.19451,1.99482,1.7313,0.928802,1.03093,-0.757102,-0.803574,-0.708852,-0.761758,0.193931,-0.299068,0.31224,-0.740979,1.36281,-0.599855,2 +0.713934,0.13191,-0.35697,-0.19451,-0.537067,-0.117728,-0.456207,-0.136645,-0.814341,-0.721121,-0.862012,-0.838144,1.50805,-0.985996,0.158341,-0.875591,0.389734,0.36112,0 +-1.08166,0.13191,-0.35697,-0.19451,-0.598821,-0.125904,-0.179205,-0.108683,-0.933671,-0.914569,-0.951356,-0.920642,0.932526,-0.883808,0.562325,-0.986905,1.50444,-0.4455,4 +1.646,0.914738,-0.35697,-0.19451,-0.331222,-0.115793,-0.394651,-0.130687,-0.486429,-0.505475,-0.624614,-0.297328,0.222708,-1.32094,2.01474,-0.507997,-0.327726,2.39116,6 +0.837295,-1.93824,-0.35697,-0.19451,-0.537067,-0.121239,-0.0253152,-0.106736,-0.80658,-0.825773,-0.7548,-0.8412,0.481696,-0.316099,0.0525362,-0.787576,1.1406,-0.449793,4 +1.48151,0.619003,-0.35697,-0.19451,0.224558,-0.115663,-0.317706,-0.113407,-0.796879,-0.790889,-0.78288,-0.810645,0.702315,-0.560214,0.244909,-0.816051,0.502711,-0.411915,3 +0.480919,-1.62511,-0.35697,-0.19451,-0.619405,-0.121239,-0.502374,-0.129772,1.94284,1.85078,1.94847,2.00343,-2.41513,1.63115,-0.341829,1.95385,-0.80611,-0.674545,1 +0.357557,0.340664,-0.35697,-0.19451,-0.557652,-0.125904,-0.533152,-0.139605,-0.822103,-0.721121,-0.867118,-0.856477,1.58479,-0.974642,0.0621548,-0.875591,0.763427,0.36625,0 +0.206783,-1.86865,-0.35697,-0.19451,-0.516483,-0.119628,-0.425429,-0.133622,1.95836,1.89201,1.99697,1.95455,-2.19451,1.86391,-0.957423,2.00303,-0.800984,-0.602482,1 +-0.341489,0.0101365,-0.35697,-0.19451,-0.598821,-0.125904,-0.394651,-0.132614,-0.785237,-0.702093,-0.813512,-0.822867,1.39295,-0.832715,0.0140616,-0.841938,0.456748,0.133185,0 +1.55005,-0.442164,-0.35697,-0.19451,-0.207716,-0.0985682,-0.317706,-0.130032,0.413875,0.420537,0.47048,0.335152,-0.276083,0.717133,-0.938185,0.454995,-0.621014,-0.428953,3 +-0.985708,1.29745,-0.35697,-0.19451,-0.0636243,-0.0859465,0.744134,-0.11295,0.38283,0.363454,0.460269,0.304598,-0.48711,0.830675,-0.918948,0.44464,-0.557077,-0.459265,5 +0.713934,0.0971174,-0.35697,-0.19451,-0.537067,-0.121692,-0.363873,-0.135133,-0.8027,-0.708436,-0.844144,-0.835089,1.50805,-0.934902,0.0717735,-0.860059,0.503677,0.291284,0 +-0.519677,1.26266,2.41015,-0.19451,-0.207716,-0.107926,-0.0560933,-0.111795,0.642831,0.633012,0.723194,0.549034,-0.611808,1.06344,-1.18827,0.711276,-0.610429,-0.443813,5 +1.09772,-1.32937,-0.35697,-0.19451,-0.248885,-0.113764,-0.240761,-0.126065,2.27366,2.32013,2.19608,2.29676,-1.42714,1.34729,-0.851617,2.20495,-1.06589,-0.56751,1 +1.08402,0.566815,-0.35697,-0.19451,-0.516483,-0.121089,-0.117649,-0.130687,-0.349637,-0.442049,-0.430612,-0.159832,-0.554255,-0.827037,1.95703,-0.391506,-0.165823,2.73586,6 +0.480919,-0.23341,-0.35697,-0.19451,-0.392976,-0.111895,-0.548541,-0.135544,-0.142024,-0.159806,-0.111528,-0.159832,-0.045872,0.086975,-0.101362,-0.135226,-0.523189,-0.533441,4 +1.59117,-0.824881,-0.35697,-0.19451,-0.392976,-0.122601,-0.302317,-0.12808,1.38888,1.19116,1.66258,1.23651,-2.92351,2.96526,-2.09242,1.66391,-0.292142,-0.546886,1 +-0.50597,-0.146429,-0.35697,-0.19451,-0.084209,-0.0866757,0.482522,-0.0685679,-0.393294,-0.327883,-0.3719,-0.4776,0.913342,-0.179848,-0.611151,-0.399272,-0.129345,-0.166082,0 +0.700227,1.90632,2.41015,-0.19451,-0.166547,-0.101704,0.0516297,-0.107827,-0.643594,-0.641839,-0.823722,-0.422602,0.539248,-1.7297,2.38987,-0.614133,0.56059,2.11383,6 +-1.01312,-0.216014,-0.35697,-0.19451,5.30892,0.239352,-0.548541,-0.134318,-0.0770236,-0.0710104,-0.0451591,-0.120111,0.117194,0.149423,-0.370685,-0.0679201,-0.598041,-0.415991,3 +-1.45174,-1.6599,-0.35697,-0.19451,-0.269469,-0.0988104,-0.363873,-0.119999,1.9506,1.80638,1.99953,2.00954,-2.89474,1.92635,-0.361066,2.00562,-0.69795,-0.687938,1 +1.50893,-0.616126,-0.35697,-0.19451,-0.475314,-0.12194,-0.41004,-0.134567,-0.897775,-0.924082,-0.867118,-0.899254,0.491288,-0.531828,0.408426,-0.901478,2.24081,-0.5867,2 +1.01548,-0.407372,-0.35697,-0.19451,0.183389,-0.0951821,0.00546275,-0.0376467,-0.811431,-0.857486,-0.749695,-0.832034,0.241892,-0.253651,0.187197,-0.782398,1.51953,-0.558681,2 +-0.917174,-0.181222,-0.35697,-0.19451,0.574494,-0.100032,-0.471596,-0.133545,-0.424339,-0.454734,-0.36169,-0.465378,0.0692336,0.0699439,-0.18793,-0.388918,-0.052936,-0.493612,4 +-1.08166,-0.616126,-0.35697,-0.19451,-0.145963,-0.0968338,-0.240761,-0.118508,-0.884193,-0.91774,-0.839038,-0.896198,0.414551,-0.423964,0.302621,-0.873002,2.20175,-0.552403,2 +-1.23243,1.14089,-0.35697,-0.19451,0.245142,-0.0632213,0.574856,0.121115,-0.134263,-0.109066,-0.129397,-0.162888,0.337813,-0.0776607,-0.207167,-0.153347,-0.717937,-0.426658,5 +0.563159,1.71496,-0.35697,-0.19451,-0.125378,-0.108701,-0.348484,-0.129568,-0.695983,-0.689408,-0.862012,-0.495933,0.625578,-1.6786,2.21673,-0.676262,0.704161,2.09235,6 +-0.615625,1.05391,-0.35697,-0.19451,0.574493,0.136968,0.482522,-0.0406067,-0.508743,-0.549872,-0.622062,-0.327883,0.0404572,-1.17334,1.94741,-0.533884,-0.125006,2.51542,6 +1.60488,0.427645,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.837295,0.86255,-0.35697,-0.19451,-0.166547,-0.108809,-0.0868711,-0.106416,-0.521355,-0.549872,-0.657799,-0.324827,0.165155,-1.33798,2.10131,-0.531295,-0.133414,2.39148,6 +-0.684159,-1.01624,-0.35697,-0.19451,0.224558,-0.102545,-0.240761,-0.124274,0.541935,0.50299,0.654272,0.439038,-0.794059,1.19401,-1.22674,0.641381,-0.491046,-0.462521,3 +0.6454,-1.60771,-0.35697,-0.19451,-0.434145,-0.117976,-0.486986,-0.12808,2.60254,2.79582,2.32627,2.71841,-0.362413,0.291351,-0.130218,2.33697,-1.42869,-0.575025,1 +0.851002,-0.650919,-0.35697,-0.19451,-0.310638,-0.103609,0.174742,-0.0969445,-0.794938,-0.803574,-0.765011,-0.813701,0.568025,-0.452349,0.196816,-0.79793,0.732921,-0.447526,4 +-1.35579,-0.563938,2.41015,-0.19451,0.0392976,-0.0787474,0.0362408,-0.103394,-0.453444,-0.372281,-0.451033,-0.529543,1.10518,-0.355838,-0.505346,-0.479522,-0.143386,-0.122532,0 +0.467212,0.984323,2.41015,-0.19451,-0.125378,-0.107818,0.236298,-0.0824225,-0.413667,-0.41985,-0.599088,-0.181221,0.280261,-1.57641,2.38987,-0.409627,-0.297979,2.24988,6 +-0.84864,-1.57292,-0.35697,-0.19451,-0.475314,-0.119958,-0.471596,-0.139101,1.94575,1.85395,2.0174,1.92705,-2.41513,2.07396,-1.09208,2.02374,-0.734805,-0.600209,1 +-0.341489,-0.146429,2.41015,-0.19451,-0.41356,-0.123674,-0.471596,-0.134567,-0.898745,-0.927254,-0.872223,-0.893143,0.472103,-0.560214,0.475757,-0.906655,2.31034,-0.620557,2 +0.0285944,-0.0420521,-0.35697,-0.19451,-0.0842092,-0.10947,-0.117649,-0.0986074,-0.36516,-0.31837,-0.3234,-0.456212,0.721499,-0.0208898,-0.6881,-0.350087,-0.049795,-0.244503,0 +-0.451143,-1.34677,-0.35697,-0.19451,-0.475314,-0.12194,-0.363873,-0.123042,1.84582,1.74296,1.94592,1.80483,-2.43431,2.18182,-1.2556,1.95126,-0.680619,-0.587545,1 +1.35815,-0.877069,-0.35697,-0.19451,-0.145963,-0.0988159,-0.0253152,-0.122034,-0.818222,-0.870171,-0.770116,-0.816756,0.193931,-0.350161,0.398808,-0.803108,1.59011,-0.642414,2 +1.35815,1.15829,-0.35697,-0.19451,0.368649,-0.0796765,0.159353,-0.108716,0.273202,0.274658,0.332636,0.197657,-0.208938,0.620622,-0.841999,0.315206,-0.574972,-0.429062,5 +1.57746,-0.842277,-0.35697,-0.19451,10.1257,16.5911,2.15992,1.54481,0.0258128,-0.0868667,0.148844,-0.0131702,-1.04345,0.842029,-0.380303,0.12882,0.166523,-0.596175,2 +-0.12218,1.19308,2.41015,-0.19451,1.54196,-0.0643413,0.528689,-0.0881014,0.524473,0.499818,0.641508,0.402372,-0.650177,1.21104,-1.39988,0.628437,-0.450598,-0.42829,5 +-0.149594,1.05391,-0.35697,-0.19451,-0.434145,-0.119958,1.92909,0.352111,-0.153666,-0.124922,-0.162582,-0.168999,0.385774,-0.185525,-0.0725063,-0.187,-0.852133,-0.516026,5 +-1.10907,0.671192,-0.35697,-0.19451,-0.372392,-0.117153,-0.133038,-0.117102,-0.328294,-0.378624,-0.461244,-0.117056,-0.189754,-1.15631,2.1494,-0.355265,-0.349792,2.53685,6 +1.41298,-0.00725971,-0.35697,-0.19451,-0.639989,-0.125574,-0.548541,-0.136645,-0.952103,-0.936767,-0.969224,-0.935919,0.913342,-0.895163,0.600799,-1.00503,2.51022,-0.492034,2 +-0.601918,0.0449289,-0.35697,4.39036,0.0187131,-0.102119,-0.379262,-0.135322,-0.892924,-0.920911,-0.864565,-0.890087,0.472103,-0.543183,0.446901,-0.898889,2.22861,-0.599352,2 +1.11143,1.90632,-0.35697,-0.19451,-0.187131,-0.0929509,-0.194594,-0.126097,-0.268144,-0.312027,-0.43827,-0.0192811,-0.180162,-1.35501,2.47644,-0.272426,-0.355385,2.42811,6 +-1.1639,-0.494353,-0.35697,4.39036,-0.2283,-0.092209,-0.225372,-0.119452,-0.849267,-0.908226,-0.803301,-0.838144,0.155563,-0.389901,0.504613,-0.836761,2.10331,-0.690175,2 +0.851002,0.671192,-0.35697,-0.19451,-0.145962,-0.101789,2.56004,1.10297,0.161634,0.112923,0.217766,0.139603,-0.57344,0.50708,-0.284117,0.198715,-0.554996,-0.665735,5 +-1.52027,-0.998843,-0.35697,-0.19451,-0.125378,-0.104845,-0.25615,-0.122979,-0.481578,-0.407165,-0.463796,-0.569264,1.06682,-0.276359,-0.601532,-0.492465,0.0480131,-0.133535,0 +1.26221,-0.0246559,-0.35697,-0.19451,-0.578236,-0.124335,-0.533152,-0.13507,-0.813371,-0.730635,-0.846696,-0.844255,1.41213,-0.889486,0.0910108,-0.873002,0.547129,0.201546,0 +-1.13648,-1.15541,-0.35697,-0.19451,-0.187131,-0.105553,-0.394651,-0.133963,0.750519,0.759863,0.809984,0.662086,-0.525479,1.01234,-1.18827,0.799291,-0.701315,-0.432143,3 +0.878415,0.35806,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.289023,1.9933,-0.35697,-0.19451,0.0598821,-0.114012,0.0670187,-0.108432,-0.504862,-0.508646,-0.634825,-0.340104,0.376182,-1.28121,1.79351,-0.544239,-0.488974,2.39454,6 +-0.656745,1.0713,-0.35697,-0.19451,0.389234,0.0435628,1.05191,0.405955,-0.11777,-0.102723,-0.10387,-0.14761,0.2323,-0.00385843,-0.226405,-0.12746,-0.685616,-0.467455,5 +-1.53398,-0.355184,-0.35697,-0.19451,-0.187131,-0.114012,-0.0407042,-0.103582,-0.547549,-0.432535,-0.576114,-0.618151,1.48887,-0.639693,-0.409159,-0.598601,-0.122597,0.0929806,0 +1.63229,-0.772692,-0.35697,-0.19451,-0.495899,-0.124665,-0.379263,-0.132299,1.37239,1.16261,1.6345,1.24568,-3.01943,2.87443,-1.84234,1.63544,-0.283481,-0.568637,1 +-1.45174,-0.581334,-0.35697,-0.19451,-0.187131,-0.0852717,-0.363873,-0.104149,-0.881282,-0.911397,-0.833933,-0.899254,0.443327,-0.406932,0.244909,-0.867825,2.09114,-0.519747,2 +-0.533384,0.218891,-0.35697,-0.19451,0.739169,-0.0338009,-0.0868712,-0.0995103,-0.651355,-0.746491,-0.535271,-0.691482,-0.333636,0.240257,-0.0725063,-0.564948,1.17762,-0.586341,2 +1.30333,-1.52073,-0.35697,-0.19451,-0.351808,-0.109459,-0.379262,-0.125647,2.01657,1.93958,2.02761,2.05538,-2.33839,1.72766,-0.582295,2.0341,-0.822601,-0.646682,1 +-1.41062,-1.10322,-0.35697,-0.19451,-0.516483,-0.120619,-0.317706,-0.127765,-0.448593,-0.384966,-0.422954,-0.535654,0.942118,-0.19688,-0.611151,-0.451046,0.0157302,-0.185818,0 +0.960656,-0.0768445,-0.35697,4.39036,0.636247,-0.0959787,-0.333095,-0.124684,-0.74449,-0.76869,-0.701194,-0.764813,0.385774,-0.321776,0.158341,-0.733213,0.712506,-0.504622,4 +-1.50657,1.14089,-0.35697,-0.19451,-0.145963,-0.106744,-0.117649,-0.0910503,-0.129412,-0.128093,-0.0885543,-0.178165,0.117194,0.166454,-0.399541,-0.111928,-0.488505,-0.436854,5 +1.26221,2.11508,2.41015,4.39036,0.471571,-0.0600426,-0.0714822,-0.11904,-0.715386,-0.724292,-0.851802,-0.535654,0.50088,-1.49693,2.03398,-0.709915,0.638929,2.2211,6 +0.617986,-1.52073,-0.35697,-0.19451,-0.290054,-0.11971,-0.163816,-0.115422,1.72844,1.61928,1.86168,1.65511,-2.39595,2.30672,-1.50569,1.86583,-0.623012,-0.562628,1 +-0.711572,1.22787,-0.35697,-0.19451,0.492156,-0.0752434,0.605634,-0.0831071,0.621488,0.588614,0.733404,0.512369,-0.803651,1.25646,-1.32293,0.72163,-0.515266,-0.451457,5 +-0.0262328,-0.96405,-0.35697,-0.19451,-0.351807,-0.114506,-0.471596,-0.130409,1.84194,1.75247,1.88721,1.85372,-2.30962,1.81281,-0.755431,1.89172,-0.756576,-0.627899,1 +1.55005,0.671192,5.17726,-0.19451,-0.351807,-0.111425,0.0670188,-0.127754,-0.472847,-0.486447,-0.616956,-0.282051,0.261076,-1.34933,2.02436,-0.495054,-0.380461,2.36474,6 +-1.20502,-1.71209,-0.35697,-0.19451,-0.207716,-0.111024,-0.394652,-0.127247,2.3309,2.32647,2.25224,2.4037,-1.93552,1.38703,-0.409159,2.2619,-1.01091,-0.648586,1 +-1.20502,0.72338,-0.35697,-0.19451,0.183389,0.0534731,3.88349,0.266149,-0.0323964,-0.0583253,-0.029843,-0.0101147,-0.208938,-0.00953562,0.225672,-0.0523879,-0.671222,-0.716515,5 +-0.629332,-0.337787,2.41015,-0.19451,-0.351807,-0.118967,-0.25615,-0.122979,0.739847,0.769377,0.7768,0.659031,-0.333636,0.853383,-1.11132,0.765638,-0.754221,-0.417343,3 +1.02919,2.20206,-0.35697,-0.19451,0.14222,-0.0956279,-0.271539,-0.122733,-0.728968,-0.749662,-0.846696,-0.560098,0.404958,-1.38339,1.93779,-0.730625,0.597861,2.30101,6 +1.53634,0.236287,-0.35697,-0.19451,2.61236,0.0656816,0.0516295,-0.113728,-0.00329181,0.0590118,-0.0426063,-0.0162256,0.568025,-0.265005,-0.1206,-0.0653313,-0.930478,-0.374079,3 +0.124542,1.1061,-0.35697,-0.19451,-0.00187138,-0.0935183,-0.0868711,-0.109825,0.584622,0.566415,0.687456,0.472648,-0.640584,1.16562,-1.33255,0.675034,-0.523129,-0.43394,5 +0.508332,1.15829,-0.35697,-0.19451,0.430402,-0.103609,1.02114,-0.0514438,0.531264,0.518846,0.593008,0.463482,-0.544663,0.847706,-0.890092,0.579252,-0.645316,-0.484807,5 +0.851002,-0.755296,-0.35697,-0.19451,-0.207716,-0.111452,-0.302317,-0.12808,0.0908133,0.141465,0.0799217,0.0540499,0.385774,0.00181866,-0.389922,0.0589258,-0.797879,-0.375194,3 +1.52263,1.22787,-0.35697,-0.19451,0.286311,-0.0842238,0.0054625,-0.109614,0.342083,0.325398,0.419426,0.261821,-0.429557,0.796612,-0.918948,0.403221,-0.552871,-0.453869,5 +1.31703,1.24527,-0.35697,-0.19451,-0.248885,-0.0958906,0.143964,-0.114219,-0.584415,-0.603784,-0.729274,-0.385936,0.299445,-1.44584,2.1494,-0.583069,0.033267,2.30155,6 +1.41298,0.340664,-0.35697,-0.19451,-0.516483,-0.119628,-0.486985,-0.134881,-0.831804,-0.746491,-0.872223,-0.856477,1.4505,-0.951934,0.158341,-0.893712,0.567407,0.289959,0 +1.61858,-1.31197,-0.35697,-0.19451,-0.248884,-0.122683,-0.317705,-0.118697,2.5618,2.70385,2.34158,2.66036,-0.794059,0.631976,-0.274498,2.3525,-1.31368,-0.592448,1 +1.38557,-0.894465,-0.35697,-0.19451,-0.2283,-0.109057,-0.286928,-0.115674,-0.852177,-0.89237,-0.798196,-0.868699,0.328221,-0.338807,0.244909,-0.831583,1.81682,-0.552517,2 +0.508332,0.619003,-0.35697,-0.19451,0.101051,-0.105895,-0.0560932,-0.115423,-0.286577,-0.216889,-0.336163,-0.291217,0.865381,-0.565891,0.0910108,-0.363031,-0.981332,-0.284506,3 +0.206783,0.0275327,-0.35697,-0.19451,-0.598821,-0.125904,-0.486985,-0.134881,-0.808521,-0.727464,-0.839038,-0.8412,1.39295,-0.866777,0.0717735,-0.870414,0.520092,0.156004,0 +-0.135887,-0.842277,-0.35697,-0.19451,-0.351807,-0.110048,-0.379261,-0.130032,2.33187,2.37087,2.22927,2.39148,-1.54225,1.22807,-0.534202,2.2386,-1.08423,-0.612752,1 +-1.21872,0.375456,-0.35697,-0.19451,-0.598821,-0.122931,-0.317706,-0.105094,-0.948223,-0.927254,-0.981988,-0.917586,0.961302,-1.00303,0.735461,-1.01797,-0.766684,-0.755857,2 +0.151956,0.271079,-0.35697,-0.19451,-0.454729,-0.123344,-0.456207,-0.136645,-0.830834,-0.749662,-0.867118,-0.856477,1.41213,-0.923548,0.148723,-0.891123,0.612791,0.23164,0 +-1.58881,-0.546542,-0.35697,-0.19451,-0.187131,-0.0733793,0.0208517,-0.125246,-0.470907,-0.400823,-0.461244,-0.54482,1.01886,-0.321776,-0.47649,-0.489876,-0.113304,-0.134399,0 +-0.272955,1.21047,-0.35697,-0.19451,0.492156,-0.0848263,0.128575,-0.103149,0.604025,0.5791,0.71043,0.494036,-0.717322,1.20536,-1.32293,0.698332,-0.518715,-0.443185,5 +-0.355196,-0.355184,-0.35697,-0.19451,-0.331223,-0.118389,-0.440817,-0.132803,0.717533,0.72815,0.779353,0.625421,-0.48711,1.00099,-1.20751,0.768227,-0.680327,-0.426887,3 +-1.38321,0.845154,-0.35697,-0.19451,-0.269469,-0.106953,2.03681,-0.0474082,0.13059,0.147807,0.141186,0.0998819,0.0500494,0.177809,-0.351447,0.121054,-0.775515,-0.505276,5 +1.74194,1.22787,-0.35697,-0.19451,0.101051,-0.109877,-0.10226,-0.105711,-0.484489,-0.508646,-0.662904,-0.24233,0.174747,-1.58777,2.51491,-0.461401,-0.0192824,2.25803,6 +0.631693,-1.88605,-0.35697,-0.19451,-0.454729,-0.114871,-0.486985,-0.128282,2.00881,1.92055,2.0174,2.06149,-2.43431,1.70495,-0.447634,2.02374,-0.811692,-0.664017,1 +-1.24614,-0.529145,-0.35697,-0.19451,-0.495898,-0.121239,-0.56393,-0.133545,-0.582474,-0.638668,-0.47656,-0.648706,-0.0362799,0.228903,-0.351447,-0.505409,0.579415,-0.478738,4 +1.55005,1.52361,2.41015,-0.19451,-0.310638,-0.116367,-0.225372,-0.118838,-0.433071,-0.476933,-0.573561,-0.217886,-0.045872,-1.29256,2.23597,-0.440691,-0.182255,2.44559,6 +1.50893,-0.616126,-0.35697,-0.19451,-0.578236,-0.126317,-0.548541,-0.138912,-0.649415,-0.721121,-0.530166,-0.715926,-0.122609,0.262965,-0.322591,-0.559771,0.941187,-0.50072,4 +-1.1776,-1.10322,2.41015,-0.19451,-0.125378,-0.101872,0.00546292,-0.107172,-0.377772,-0.327883,-0.325952,-0.483711,0.759868,0.0358812,-0.822761,-0.352676,0.086473,-0.224218,0 +-0.410023,1.17568,-0.35697,4.39036,0.471571,-0.0651656,0.990359,-0.0520007,0.607906,0.560073,0.735957,0.494036,-0.928349,1.35297,-1.36141,0.724219,-0.464405,-0.462523,5 +0.590573,-0.807484,-0.35697,-0.19451,-0.372392,-0.0988984,-0.240761,-0.113218,0.589473,0.610813,0.62364,0.521535,-0.285675,0.711456,-0.918948,0.610317,-0.751455,-0.432254,3 +1.72824,1.59319,2.41015,-0.19451,-0.145962,-0.0819683,0.0977968,-0.0973479,-0.645534,-0.673552,-0.749695,-0.486767,0.270669,-1.22443,1.80313,-0.668496,0.0620032,2.45948,6 +-0.0399396,-1.95563,-0.35697,-0.19451,-0.331223,-0.120371,0.128575,-0.0542724,2.78687,2.97024,2.45135,2.98118,-0.602216,0.0472354,0.52385,2.46382,-1.46345,-0.749838,1 +1.19367,1.94111,-0.35697,-0.19451,-0.166547,-0.0948527,-0.133038,-0.101661,-0.292398,-0.334226,-0.463796,-0.0437248,-0.141793,-1.38339,2.48606,-0.293136,-0.328555,2.40655,6 +-1.46545,0.375456,-0.35697,-0.19451,-0.557652,-0.126895,-0.502374,-0.133811,-0.8677,-0.778204,-0.923276,-0.877865,1.51765,-1.08251,0.31224,-0.922188,0.76053,0.512482,0 +1.07031,0.166702,-0.35697,-0.19451,-0.681158,-0.124274,-0.656264,-0.137858,-0.962775,-0.936767,-0.994751,-0.938975,1.01886,-1.00303,0.677749,-1.03091,2.02355,-0.473359,4 +1.31703,-1.62511,-0.35697,-0.19451,-0.310638,-0.108261,-0.209983,-0.112405,-0.748371,-0.762348,-0.713958,-0.767869,0.481696,-0.384224,0.16796,-0.746157,0.401619,-0.451082,4 +0.467212,-0.320391,-0.35697,-0.19451,-0.495898,-0.116118,0.436355,-0.109127,-0.270084,-0.292999,-0.234056,-0.288162,0.0116809,0.01885,-0.0436503,-0.259483,-0.391572,-0.536783,4 +0.343851,0.49723,-0.35697,-0.19451,-0.660574,-0.126647,-0.10226,-0.0793997,-0.934641,-0.908226,-0.961566,-0.917586,0.999671,-0.946257,0.600799,-0.99726,0.482433,-0.417032,4 +1.0429,-0.0594483,2.41015,-0.19451,0.759754,0.202129,0.35941,0.0233769,-0.872551,-0.895541,-0.839038,-0.880921,0.50088,-0.492089,0.331477,-0.873002,2.04179,-0.528943,2 +-0.629332,-1.13801,-0.35697,-0.19451,-0.310638,-0.1154,-0.379261,-0.128602,1.88657,1.81272,1.88976,1.93316,-2.2041,1.5687,-0.447634,1.89431,-0.826727,-0.655075,1 +-0.396316,-0.146429,-0.35697,-0.19451,0.0392976,-0.105766,0.251687,-0.116125,-0.583445,-0.695751,-0.489323,-0.581486,-0.544663,0.149423,0.293002,-0.518352,0.838488,-0.709324,2 +1.59117,1.64538,-0.35697,-0.19451,-0.0430403,-0.0493467,-0.209983,-0.12279,-0.749341,-0.781375,-0.846696,-0.593708,0.318629,-1.26417,1.82237,-0.7591,0.623596,2.41005,6 +-1.08166,1.9933,-0.35697,-0.19451,-0.310638,-0.108851,-0.0714821,-0.109179,-0.623221,-0.660867,-0.724168,-0.459267,0.165155,-1.18469,1.84161,-0.645198,0.0815392,2.50504,6 +0.289023,0.0101365,-0.35697,-0.19451,-0.516483,-0.123592,-0.56393,-0.138345,-0.812401,-0.724292,-0.846696,-0.847311,1.46009,-0.895163,0.0525362,-0.873002,0.598307,0.218831,0 +-1.47915,0.0101365,-0.35697,-0.19451,-0.269469,-0.113681,-0.271539,-0.126821,-0.940462,-0.930425,-0.953908,-0.923697,0.855789,-0.8611,0.600799,-0.989493,2.30744,-0.521772,2 +-0.135887,-0.7379,-0.35697,-0.19451,-0.434144,-0.112883,-0.471596,-0.133545,1.80411,1.68587,1.85403,1.83844,-2.53983,1.81281,-0.524583,1.85806,-0.712512,-0.65964,1 +1.15255,-0.998843,-0.35697,-0.19451,-0.310638,-0.116985,-0.363873,-0.129843,1.47716,1.32118,1.68044,1.3679,-2.61656,2.56787,-1.72691,1.68203,-0.443178,-0.557774,1 +-0.780106,-0.285599,2.41015,-0.19451,-0.290054,-0.057275,-0.363873,-0.0965921,-0.923969,-0.930425,-0.910513,-0.923697,0.692723,-0.668079,0.437282,-0.945486,2.42911,-0.507096,2 +-0.0947667,-1.78167,-0.35697,-0.19451,1.08911,-0.0253139,-0.317706,-0.122099,0.755369,0.756691,0.804879,0.68653,-0.602216,0.949894,-1.00552,0.794113,-0.743873,-0.458969,3 +0.124542,-1.6425,-0.35697,-0.19451,-0.413561,-0.118307,-0.548541,-0.133307,1.96515,1.87615,1.98421,2.00649,-2.40554,1.73901,-0.534202,1.99009,-0.796286,-0.65378,1 +-1.21872,1.45402,-0.35697,-0.19451,0.306895,-0.0564171,1.11347,-0.0925257,0.517681,0.50299,0.59556,0.432927,-0.554255,0.944217,-1.04399,0.581841,-0.596667,-0.452864,5 +-0.12218,1.9933,-0.35697,-0.19451,-0.269469,-0.107735,-0.379262,-0.101315,-0.747401,-0.724292,-0.884986,-0.596763,0.81742,-1.531,1.77428,-0.761689,0.497777,2.07568,6 +-1.45174,-1.06843,-0.35697,-0.19451,3.45632,-0.10755,-0.486985,-0.133963,0.674847,0.598128,0.822748,0.564312,-1.24489,1.54031,-1.36141,0.812234,-0.427177,-0.493944,3 +-1.49286,2.13247,2.41015,-0.19451,0.183389,-0.10311,-0.194594,-0.110384,-0.724117,-0.664038,-0.78288,-0.703704,1.13396,-0.985996,0.533469,-0.810874,-1.15432,0.11152,6 +1.00178,0.0623251,-0.35697,-0.19451,0.203973,-0.0295259,1.69825,0.872228,0.0966341,0.147807,0.092685,0.0509944,0.385774,0.0529125,-0.47649,0.0718691,-0.779178,-0.352966,3 +0.617986,-0.616126,-0.35697,-0.19451,-0.434145,-0.118619,-0.440818,-0.132359,-0.385533,-0.416679,-0.341268,-0.404269,0.0308651,-0.0208898,0.00444287,-0.368208,-0.211458,-0.547061,4 +0.0423012,0.35806,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.30333,-1.46854,2.41015,-0.19451,-0.454729,-0.111024,-0.302317,-0.1175,1.98941,1.90152,1.99697,2.04315,-2.41513,1.68224,-0.428397,2.00303,-0.812207,-0.666954,1 +-1.32838,0.671192,2.41015,-0.19451,-0.269469,-0.113403,-0.271539,-0.117595,-0.312771,-0.375452,-0.415296,-0.126222,-0.314452,-0.940579,1.90894,-0.363031,-0.401938,2.67381,6 +-0.286662,-0.355184,2.41015,-0.19451,-0.351807,-0.1154,-0.486985,-0.130032,0.57201,0.55373,0.654272,0.48487,-0.630992,1.01802,-1.09208,0.641381,-0.611007,-0.458306,3 +-0.177007,-1.62511,-0.35697,-0.19451,-0.495898,-0.121239,-0.333095,-0.127927,1.9962,1.93958,1.974,2.05538,-2.13696,1.48922,-0.380303,1.97973,-0.882615,-0.661611,1 +-0.451143,-0.0420521,-0.35697,-0.19451,-0.166547,-0.0866878,-0.10226,-0.105156,-0.578594,-0.664038,-0.47656,-0.61204,-0.30486,0.206194,-0.0436503,-0.505409,0.742541,-0.564575,2 +0.727641,1.0713,-0.35697,-0.19451,0.265727,-0.0870292,0.190131,-0.101453,0.313949,0.319056,0.378584,0.228211,-0.208938,0.688747,-0.957423,0.361802,-0.555635,-0.416278,5 +-0.930881,0.932135,-0.35697,-0.19451,-0.351807,-0.115003,-0.271539,-0.110951,-0.457324,-0.486447,-0.59143,-0.263718,0.107602,-1.26985,2.0436,-0.479522,-0.297415,2.44359,6 +-0.7664,0.271079,-0.35697,-0.19451,0.348064,-0.0877675,-0.0868712,-0.111795,-0.497101,-0.480104,-0.496981,-0.508155,0.558433,-0.406932,0.129485,-0.495054,-0.176432,-0.219976,2 +-1.25984,-0.268203,-0.35697,-0.19451,0.389233,-0.0248185,1.22119,0.146054,0.0772311,0.0907244,0.092685,0.0448836,0.0596415,0.166454,-0.341829,0.0718691,-0.701396,-0.46435,3 +0.864709,-0.23341,-0.35697,-0.19451,-0.41356,-0.115746,-0.456207,-0.123798,-0.859939,-0.857486,-0.844144,-0.871755,0.721499,-0.599954,0.293002,-0.87818,1.08787,-0.426012,4 +-0.711572,-0.320391,-0.35697,-0.19451,0.0804666,-0.102863,-0.348484,-0.131292,0.565219,0.585443,0.600666,0.497092,-0.276083,0.700101,-0.909329,0.587018,-0.735165,-0.43314,3 +0.371264,2.14987,-0.35697,8.97523,-0.104794,-0.100137,1.29814,-0.0663635,-0.396205,-0.334226,-0.43827,-0.401214,0.884565,-0.605631,0.139104,-0.466578,-0.924644,-0.254046,6 +-1.38321,-1.88605,-0.35697,-0.19451,-0.392976,-0.111895,-0.363873,-0.130916,0.864997,0.80426,0.993776,0.759861,-1.25448,1.5687,-1.39988,0.985676,-0.54585,-0.493151,3 +0.919536,2.0107,2.41015,-0.19451,0.224558,-0.073049,-0.0407042,-0.117941,-0.573743,-0.587928,-0.680773,-0.425657,0.337813,-1.18469,1.66847,-0.616722,-0.361741,2.48835,6 +-1.1776,-0.807484,2.41015,-0.19451,-0.0224557,-0.0869235,-0.0099262,-0.127009,-0.768744,-0.844801,-0.713958,-0.752592,-0.0650563,-0.265005,0.514232,-0.746157,1.46799,-0.714794,2 +1.49522,0.932135,-0.35697,-0.19451,-0.290054,-0.116737,-0.425429,-0.130599,-0.544638,-0.578414,-0.660352,-0.367604,0.136379,-1.21876,1.92817,-0.567537,-0.133565,2.4752,6 +-0.0673532,-0.268203,2.41015,-0.19451,-0.475314,-0.113021,-0.41004,-0.137589,-0.396205,-0.337397,-0.366795,-0.483711,0.855789,-0.128755,-0.640007,-0.394095,-0.0646458,-0.207484,0 +-0.382609,-0.807484,-0.35697,4.39036,-0.248885,-0.086015,0.559467,-0.0285783,-0.310831,-0.248602,-0.272346,-0.413436,0.81742,0.00181866,-0.822761,-0.298313,-0.0844025,-0.203458,0 +1.48151,-0.320391,-0.35697,-0.19451,1.6243,-0.0757231,-0.41004,-0.12754,-0.572773,-0.575242,-0.560798,-0.57843,0.443327,-0.389901,0.216053,-0.590835,-0.320288,-0.516829,4 +-0.0536464,-1.06843,-0.35697,-0.19451,-0.495898,-0.122683,-0.363873,-0.130599,2.31441,2.38355,2.17311,2.39148,-1.25448,0.955571,-0.361066,2.18165,-1.16173,-0.616737,1 +0.343851,-0.511749,-0.35697,-0.19451,-0.290054,-0.113764,-0.317707,-0.131544,1.52567,1.37192,1.72384,1.41984,-2.63575,2.57354,-1.7173,1.72604,-0.461601,-0.559242,1 +1.11143,-1.69469,-0.35697,-0.19451,-0.248886,-0.0939435,-0.148428,-0.11624,2.61904,2.81485,2.3569,2.71536,-0.352821,0.399215,-0.322591,2.36804,-1.40934,-0.530416,1 +0.576866,1.14089,-0.35697,-0.19451,0.698,-0.0774107,0.374799,-0.113911,0.559398,0.52836,0.649166,0.475703,-0.736506,1.05776,-1.05361,0.636203,-0.575403,-0.477844,5 +0.193076,-0.250806,-0.35697,-0.19451,-0.372392,-0.108701,-0.594708,-0.133545,-0.200233,-0.229574,-0.162582,-0.214831,-0.103425,0.086975,-0.0436503,-0.187,-0.415834,-0.558626,4 +-0.492264,-0.285599,2.41015,-0.19451,-0.166547,-0.0840329,-0.148427,-0.0935693,-0.475757,-0.36911,-0.489323,-0.557042,1.35458,-0.480735,-0.54382,-0.515763,-0.141199,0.00325241,0 +-0.601918,-0.442164,2.41015,-0.19451,-0.248885,-0.117728,-0.148427,-0.0852564,-0.423369,-0.337397,-0.420401,-0.505099,1.12437,-0.327453,-0.572676,-0.448457,-0.16533,-0.107419,0 +-0.643038,-1.06843,2.41015,-0.19451,-0.454729,-0.118389,-0.225373,-0.125498,1.91179,1.93958,1.88721,1.89344,-1.30244,1.40406,-1.07285,1.89172,-0.983814,-0.532261,1 +-0.0673532,-1.85126,-0.35697,-0.19451,-0.187132,-0.115003,-0.148427,-0.120775,2.42307,2.45332,2.28287,2.53508,-1.69572,1.05208,-0.082125,2.29296,-1.11369,-0.67951,1 +1.56376,-0.529145,-0.35697,-0.19451,0.574493,0.173636,-0.379262,-0.125498,-0.593146,-0.654524,-0.489323,-0.651761,-0.0746484,0.206194,-0.274498,-0.518352,0.657482,-0.501248,4 +-0.0536464,1.19308,2.41015,-0.19451,0.553909,-0.0813891,0.974969,-0.0978457,0.622458,0.588614,0.741062,0.506258,-0.813243,1.30187,-1.39026,0.729396,-0.500564,-0.448162,5 +-1.12278,0.49723,-0.35697,-0.19451,0.0187132,-0.0892359,-0.333095,-0.126065,-0.93076,-0.908226,-0.948803,-0.920642,0.961302,-0.883808,0.533469,-0.984316,0.97142,-0.369073,4 +0.617986,0.340664,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.67105,-0.302995,-0.35697,-0.19451,-0.619405,-0.12347,-0.640875,-0.137245,-0.955984,-0.936767,-0.976882,-0.938975,0.95171,-0.923548,0.610418,-1.01279,2.51022,-0.473359,2 +0.234196,-0.198618,-0.35697,-0.19451,-0.310638,-0.116367,-0.517763,-0.134318,-0.214786,-0.235917,-0.183003,-0.230108,-0.0170956,0.0358812,-0.0436503,-0.207709,-0.46053,-0.541797,4 +-0.985708,0.914738,-0.35697,-0.19451,0.0187135,-0.10769,-0.240761,-0.106227,0.346934,0.360282,0.411768,0.252655,-0.160978,0.717133,-1.05361,0.395455,-0.545189,-0.39776,5 +1.76936,0.619003,-0.35697,-0.19451,0.615662,0.0408376,3.43721,2.45626,-0.011053,-0.0424689,0.0467369,-0.0498357,-0.276083,0.376507,-0.361066,0.0252727,-0.578371,-0.617326,5 +0.124542,-0.529145,-0.35697,-0.19451,-0.557652,-0.121713,-0.425429,-0.130916,-0.422399,-0.461077,-0.336163,-0.483711,-0.00750348,0.228903,-0.380303,-0.363031,0.0722125,-0.46798,4 +-0.656745,0.201495,-0.35697,-0.19451,0.389233,-0.0833563,-0.179205,-0.123875,0.270292,0.233432,0.378584,0.173213,-0.554255,0.944217,-1.04399,0.361802,-0.403984,-0.45334,3 +0.878415,0.305872,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.492264,-0.59873,-0.35697,-0.19451,-0.0636248,-0.0624779,0.143964,-0.0574842,-0.397175,-0.327883,-0.377006,-0.483711,0.95171,-0.191203,-0.630388,-0.40445,-0.115844,-0.160786,0 +-0.12218,1.05391,-0.35697,-0.19451,0.121636,-0.0800688,2.26764,0.626433,-0.140084,-0.115408,-0.14216,-0.159832,0.337813,-0.128755,-0.1206,-0.158524,-0.771635,-0.551703,5 +1.16626,1.88893,-0.35697,-0.19451,-0.0224557,-0.100406,-0.25615,-0.110885,-0.739639,-0.749662,-0.849249,-0.590652,0.510472,-1.33798,1.75504,-0.756511,0.282491,2.30643,6 +-1.49286,-1.25979,-0.35697,-0.19451,-0.434145,-0.117429,-0.440818,-0.127884,2.25038,2.22182,2.21906,2.29065,-2.089,1.63682,-0.678481,2.22825,-0.933294,-0.626122,1 +0.0971283,0.0101365,-0.35697,-0.19451,-0.619405,-0.125656,-0.610097,-0.138912,-0.942402,-0.936767,-0.941145,-0.938975,0.81742,-0.764589,0.475757,-0.97655,2.51022,-0.473359,2 +-1.31467,-0.216014,-0.35697,-0.19451,-0.557652,-0.12194,-0.502374,-0.137589,-0.828894,-0.740149,-0.86967,-0.856477,1.47928,-0.951934,0.129485,-0.891123,0.601204,0.30093,0 +0.713934,1.15829,-0.35697,-0.19451,-0.351807,-0.108851,-0.286928,-0.123974,0.402233,0.414194,0.467927,0.307653,-0.21853,0.768227,-1.08246,0.452407,-0.565722,-0.40315,5 +-0.917174,0.0275327,-0.35697,-0.19451,0.101051,-0.102545,-0.379262,-0.124788,-0.484489,-0.61964,-0.310636,-0.557042,-0.832427,0.76255,-0.457252,-0.337144,0.926648,-0.568847,2 +1.60488,-1.01624,-0.35697,-0.19451,-0.495898,-0.121239,-0.394651,-0.133002,-0.736729,-0.762348,-0.685878,-0.764813,0.36659,-0.265005,0.0813921,-0.717681,0.685769,-0.491143,4 +0.453505,1.24527,-0.35697,-0.19451,0.203973,-0.0750316,0.113186,-0.110885,-0.663967,-0.667209,-0.818617,-0.468434,0.510472,-1.57641,2.15902,-0.652964,0.39781,2.18343,6 +-0.889761,1.26266,-0.35697,-0.19451,-0.166547,-0.103961,0.559466,-0.106228,0.369248,0.357111,0.439848,0.292376,-0.410373,0.773904,-0.89971,0.423931,-0.565917,-0.450624,5 +-0.697866,0.0971174,-0.35697,-0.19451,-0.619405,-0.126647,-0.640875,-0.139668,-0.956954,-0.936767,-0.979435,-0.938975,0.961302,-0.934902,0.620037,-1.01538,2.51022,-0.473359,2 +1.34445,1.0713,-0.35697,-0.19451,-0.516483,-0.119513,-0.00992631,-0.104791,-0.630982,-0.606955,-0.790538,-0.456212,0.731091,-1.58209,1.94741,-0.642609,0.0811401,2.07188,6 +1.22109,1.22787,-0.35697,-0.19451,-0.248885,-0.104439,0.220909,-0.111345,0.210142,0.211233,0.258608,0.148769,-0.160978,0.495726,-0.678481,0.240134,-0.590956,-0.442688,5 +1.09772,1.40183,-0.35697,-0.19451,-0.125378,-0.105938,-0.148427,-0.110038,-0.472847,-0.527673,-0.622062,-0.236219,-0.113017,-1.38339,2.4572,-0.456223,0.0545273,2.40183,6 +-0.903467,-0.424768,-0.35697,-0.19451,-0.41356,-0.108809,-0.394651,-0.134126,-0.917178,-0.933596,-0.887539,-0.926753,0.596801,-0.554537,0.341096,-0.922188,2.44939,-0.509175,2 +1.01548,-0.459561,2.41015,-0.19451,0.306895,-0.0993322,-0.533152,-0.137067,0.281934,0.376139,0.227976,0.252655,0.625578,-0.128755,-0.409159,0.20907,-0.996636,-0.306652,3 +-1.60251,-1.78167,2.41015,-0.19451,-0.475314,-0.117429,-0.10226,-0.11945,2.31926,2.3011,2.25735,2.38537,-2.05063,1.48922,-0.466871,2.26708,-0.978107,-0.646869,1 +-0.108474,2.13247,-0.35697,-0.19451,0.14222,-0.00202474,0.0670187,-0.0404177,-0.565982,-0.59427,-0.685878,-0.388992,0.203524,-1.26417,1.93779,-0.585658,-0.13551,2.43222,6 +-0.177007,-1.62511,-0.35697,-0.19451,-0.495898,-0.121239,-0.333095,-0.127927,1.9962,1.93958,1.974,2.05538,-2.13696,1.48922,-0.380303,1.97973,-0.882615,-0.661611,1 +0.864709,-1.53812,-0.35697,-0.19451,-0.248885,-0.103854,-0.363873,-0.130599,2.2921,2.32964,2.20374,2.33648,-1.52306,1.29052,-0.659244,2.21272,-1.06778,-0.595357,1 +1.30333,-0.216014,-0.35697,-0.19451,0.245142,-0.0903929,-0.0407043,-0.113009,-0.195383,-0.210546,-0.137055,-0.248441,0.0212729,0.228903,-0.409159,-0.161113,-0.339749,-0.454158,3 +-1.68475,-0.163825,-0.35697,-0.19451,-0.392976,-0.124583,-0.594708,-0.139101,-0.924939,-0.914569,-0.925829,-0.923697,0.846197,-0.764589,0.446901,-0.961018,1.99111,-0.429766,2 +0.275317,1.0713,2.41015,-0.19451,0.32748,-0.0769698,-0.0560934,-0.106993,0.503129,0.487133,0.590455,0.408483,-0.554255,0.995311,-1.13056,0.576664,-0.545796,-0.445314,5 +-1.30096,2.21945,-0.35697,-0.19451,0.203973,-0.0853498,1.54436,-0.112872,-0.42919,-0.324712,-0.606746,-0.312605,1.29703,-1.53667,1.30296,-0.520941,-0.85619,1.71481,6 +-0.245541,0.0971174,-0.35697,-0.19451,-0.495898,-0.114755,-0.425429,-0.125309,-0.795908,-0.695751,-0.841591,-0.828978,1.55601,-0.957611,0.0621548,-0.854882,0.454044,0.335845,0 +-1.24614,0.0797212,-0.35697,-0.19451,-0.537067,-0.124665,-0.486985,-0.131859,-0.822103,-0.724292,-0.864565,-0.856477,1.55601,-0.957611,0.0621548,-0.87818,0.747011,0.339925,0 +-0.272955,-1.06843,-0.35697,-0.19451,-0.392976,-0.123592,-0.348484,-0.126002,2.34254,2.41844,2.20885,2.4037,-1.21611,1.02937,-0.524583,2.21789,-1.15925,-0.590505,1 +1.53634,1.19308,2.41015,-0.19451,-0.392976,-0.115095,0.544078,-0.0802513,0.244098,0.236603,0.309662,0.170157,-0.266491,0.637654,-0.813143,0.291908,-0.544078,-0.442846,5 +1.55005,-0.650919,-0.35697,-0.19451,-0.537067,-0.126647,-0.579319,-0.139416,-0.656206,-0.721121,-0.545482,-0.718982,-0.0554641,0.200517,-0.284117,-0.575303,0.887437,-0.495339,4 +-0.42373,-0.755296,-0.35697,-0.19451,0.10105,-0.10082,-0.440818,-0.131576,0.557458,0.525189,0.641508,0.481814,-0.746098,1.01802,-0.97666,0.628437,-0.595943,-0.487567,3 +0.193076,1.1061,-0.35697,-0.19451,0.0598822,-0.102249,-0.163816,-0.121981,0.612757,0.594957,0.702772,0.515424,-0.659769,1.10318,-1.20751,0.690566,-0.587802,-0.449943,5 +-0.80752,-0.250806,-0.35697,-0.19451,-0.392976,-0.109254,-0.394651,-0.125833,1.71388,1.61611,1.79276,1.69483,-2.28084,1.93203,-0.986278,1.79594,-0.695438,-0.60482,1 +-1.65734,1.14089,-0.35697,-0.19451,0.0598824,-0.0406751,2.57542,1.80836,-0.277846,-0.267629,-0.25703,-0.30955,0.318629,-0.0890149,-0.168693,-0.282781,-0.680745,-0.477634,5 +-1.46545,-0.929258,-0.35697,4.39036,2.79761,0.00420493,2.08298,-0.0220185,-0.419488,-0.473762,-0.402532,-0.382881,-0.151386,-0.230942,0.543088,-0.430337,-0.048432,-0.745021,2 +1.0566,-0.911862,-0.35697,-0.19451,-0.351807,-0.114506,-0.456207,-0.132428,0.0345442,0.144636,-0.0477117,0.0265507,0.970895,-0.520474,-0.0917437,-0.0705088,-1.14251,-0.202559,3 +-1.67105,-1.78167,-0.35697,-0.19451,-0.537067,-0.113764,-0.333095,-0.138156,2.43859,2.5104,2.27522,2.53814,-1.33122,0.910154,-0.207167,2.2852,-1.18354,-0.643408,1 +1.27591,-1.03363,-0.35697,-0.19451,-0.145962,-0.102102,-0.163816,-0.106784,-0.760983,-0.762348,-0.726721,-0.792313,0.606393,-0.395578,0.0621548,-0.7591,0.666855,-0.389785,4 +0.946949,0.0101365,-0.35697,-0.19451,-0.145963,-0.117646,-0.286928,-0.124742,-0.896805,-0.908226,-0.887539,-0.887032,0.625578,-0.673756,0.514232,-0.922188,1.79528,-0.596447,2 +1.15255,1.17568,-0.35697,4.39036,0.430402,-0.0759377,0.913413,-0.036935,0.292605,0.315885,0.332636,0.219045,-0.0266877,0.50708,-0.83238,0.315206,-0.644427,-0.389562,5 +-1.27355,1.43662,-0.35697,4.39036,0.348064,-0.0877675,0.882635,-0.0924247,0.539025,0.50299,0.641508,0.445149,-0.765282,1.12588,-1.14018,0.628437,-0.530915,-0.467884,5 +0.275317,-1.55552,2.41015,-0.19451,-0.495898,-0.11971,-0.148427,-0.120775,2.61904,2.81485,2.35435,2.71841,-0.352821,0.382184,-0.293735,2.36545,-1.41192,-0.541697,1 +-0.437437,0.0623251,-0.35697,-0.19451,-0.290054,-0.108701,-0.394651,-0.126759,-0.87061,-0.898712,-0.85946,-0.847311,0.452919,-0.639693,0.629655,-0.893712,1.75357,-0.719368,2 +-1.25984,-0.511749,-0.35697,-0.19451,-0.207716,-0.122607,0.0362408,-0.112251,-0.816282,-0.844801,-0.836486,-0.755647,0.404958,-0.804329,0.95669,-0.870414,0.801086,-0.975226,2 +0.809882,0.375456,-0.35697,-0.19451,-0.434145,-0.11367,-0.610097,-0.135544,-0.955984,-0.927254,-0.987093,-0.935919,1.03804,-0.991673,0.639274,-1.02315,0.441878,-0.361117,4 +1.44039,0.671192,-0.35697,-0.19451,-0.0842092,-0.103338,-0.41004,-0.130409,-0.516504,-0.54353,-0.650141,-0.324827,0.174747,-1.31527,2.05322,-0.531295,-0.194346,2.40289,6 +0.549452,-0.0768445,-0.35697,-0.19451,-0.310638,-0.092209,-0.271539,-0.126065,-0.198293,-0.273972,-0.0885543,-0.254552,-0.525479,0.569528,-0.438015,-0.111928,-0.00516622,-0.53379,4 +-1.21872,1.14089,-0.35697,-0.19451,0.018713,-0.0723883,0.944191,0.226915,-0.148815,-0.124922,-0.14216,-0.178165,0.337813,-0.0776607,-0.207167,-0.16629,-0.703391,-0.425441,5 +-1.58881,0.984323,-0.35697,-0.19451,-0.269469,-0.111194,-0.348484,-0.123454,-0.379712,-0.438878,-0.509744,-0.162888,-0.228123,-1.17902,2.22635,-0.394095,-0.199133,2.52667,6 +0.467212,1.50621,-0.35697,-0.19451,-0.145963,-0.0968338,-0.240761,-0.103394,-0.630982,-0.667209,-0.739484,-0.459267,0.184339,-1.24147,1.91855,-0.645198,0.146921,2.45361,6 +0.0148876,0.305872,-0.35697,-0.19451,-0.187131,-0.0971641,-0.425429,-0.126065,-0.885163,-0.924082,-0.839038,-0.893143,0.36659,-0.418287,0.341096,-0.873002,2.30474,-0.578661,2 +0.110835,-0.37258,-0.35697,4.39036,7.47029,8.22556,7.60763,8.15803,0.182978,0.131951,0.194792,0.215989,-0.611808,0.228903,0.225672,0.175417,-0.127027,-0.682001,2 +0.700227,-0.407372,-0.35697,-0.19451,0.018713,-0.110048,-0.271539,-0.129088,0.479845,0.499818,0.521533,0.405428,-0.208938,0.671716,-0.928567,0.506769,-0.693237,-0.416281,3 +1.34445,0.462437,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.725279,-1.60771,-0.35697,-0.19451,-0.290054,-0.0939433,-0.302317,-0.12808,2.58993,2.77045,2.32882,2.70008,-0.467926,0.382184,-0.178312,2.33956,-1.39844,-0.577295,1 +0.933243,0.0275327,-0.35697,-0.19451,1.17144,-0.070426,-0.133038,-0.108226,0.0102903,-0.0139274,0.077369,-0.0467802,-0.228123,0.455986,-0.54382,0.0563371,-0.460198,-0.477431,3 +-0.300369,0.114514,-0.35697,-0.19451,-0.578236,-0.127308,-0.594708,-0.133545,-0.950163,-0.936767,-0.961566,-0.938975,0.894157,-0.855423,0.552706,-0.99726,2.51022,-0.473359,2 +0.289023,0.0101365,-0.35697,-0.19451,-0.516483,-0.123592,-0.56393,-0.138345,-0.812401,-0.724292,-0.846696,-0.847311,1.46009,-0.895163,0.0525362,-0.873002,0.598307,0.218831,0 +-0.793813,-1.55552,-0.35697,-0.19451,-0.290054,-0.100032,-0.517763,-0.130246,0.450741,0.382481,0.600666,0.332097,-0.985901,1.37,-1.33255,0.587018,-0.347874,-0.47344,3 +0.0697148,1.14089,-0.35697,-0.19451,-0.372392,-0.11971,-0.348484,-0.12449,-0.656206,-0.667209,-0.78288,-0.486767,0.433735,-1.38339,1.90894,-0.668496,0.0549677,2.30179,6 +1.49522,0.653796,-0.35697,-0.19451,-0.372392,-0.116118,-0.225372,-0.116281,-0.471877,-0.505475,-0.624614,-0.251496,0.0788258,-1.4061,2.3033,-0.469167,-0.13707,2.36559,6 +-0.574504,0.166702,2.41015,-0.19451,0.162805,-0.0795993,-0.348484,-0.121981,0.304247,0.249288,0.421979,0.212934,-0.746098,1.03505,-1.00552,0.40581,-0.384337,-0.484614,3 +-0.396316,1.95851,-0.35697,-0.19451,-0.0636247,-0.0416661,-0.194594,-0.120964,-0.604788,-0.629154,-0.729274,-0.425657,0.270669,-1.32662,1.97627,-0.616722,-0.0116414,2.38364,6 +-1.15019,-0.807484,2.41015,-0.19451,-0.0430401,-0.112773,-0.225372,-0.113407,-0.839565,-0.901883,-0.780327,-0.8412,0.117194,-0.29339,0.37957,-0.813463,2.03546,-0.641922,2 +0.494625,0.201495,-0.35697,-0.19451,-0.681158,-0.124274,-0.640875,-0.137245,-0.937551,-0.914569,-0.94625,-0.938975,0.970895,-0.827037,0.427664,-0.981727,2.51022,-0.297228,4 +0.453505,-0.824881,-0.35697,-0.19451,-0.392976,-0.11263,0.236298,-0.08805,-0.0576205,-0.0266126,-0.0502643,-0.0956677,0.328221,0.00181866,-0.33221,-0.0730974,-0.685837,-0.400303,3 +1.59117,-0.581334,-0.35697,4.39036,1.39787,0.393977,1.2058,0.94402,-0.734789,-0.800403,-0.655246,-0.758702,0.00208865,-0.0719836,0.119867,-0.686617,1.4718,-0.584658,2 +1.57746,-1.13801,-0.35697,-0.19451,-0.310638,-0.110048,-0.394651,-0.12808,1.45776,1.25775,1.70852,1.33429,-3.00025,2.86875,-1.85196,1.71051,-0.330962,-0.567128,1 +-0.560798,-1.01624,-0.35697,-0.19451,-0.434145,-0.118967,-0.117649,-0.12808,2.3212,2.35501,2.23948,2.36092,-1.58061,1.35864,-0.716956,2.24896,-1.05661,-0.589417,1 +0.439798,-1.79907,-0.35697,-0.19451,-0.207716,-0.110359,0.697967,-0.0640099,-0.0411279,-0.0234413,-0.0323956,-0.0681685,0.193931,0.0245271,-0.236023,-0.0549765,-0.722419,-0.441526,3 +0.823588,-0.37258,-0.35697,-0.19451,3.39456,1.51624,-0.548541,-0.136645,0.516711,0.522017,0.572586,0.439038,-0.372005,0.796612,-0.97666,0.558543,-0.668128,-0.434312,3 +-1.15019,0.462437,-0.35697,-0.19451,-0.0430401,-0.0840329,-0.0714822,-0.114666,-0.42725,-0.473762,-0.343821,-0.4776,-0.0746484,0.206194,-0.274498,-0.370797,0.0642974,-0.499554,3 +1.33074,0.375456,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.41298,-1.79907,-0.35697,-0.19451,-0.310638,-0.116367,-0.440818,-0.127372,2.30374,2.31696,2.21395,2.37314,-1.75327,1.29052,-0.428397,2.22307,-1.04245,-0.637473,1 +1.19367,-0.7379,-0.35697,-0.19451,-0.434146,-0.124913,-0.440818,-0.138849,1.44418,1.26727,1.70597,1.2854,-2.77963,2.9312,-2.17899,1.70792,-0.34598,-0.533543,1 +0.974363,-0.529145,-0.35697,-0.19451,-0.0430403,-0.0701584,-0.25615,-0.12449,-0.839565,-0.879685,-0.800748,-0.838144,0.318629,-0.429641,0.408426,-0.834172,1.67197,-0.625448,2 +0.617986,0.532022,-0.35697,-0.19451,-0.660574,-0.12347,-0.656264,-0.137858,-0.968596,-0.936767,-1.01007,-0.938975,1.07641,-1.07115,0.735461,-1.04644,-0.896462,-0.473359,4 +-0.46485,2.14987,-0.35697,-0.19451,0.286311,-0.0994973,-0.0560933,-0.115947,-0.639714,-0.664038,-0.729274,-0.502044,0.299445,-1.12225,1.60114,-0.681439,-0.109762,2.53407,6 +-1.15019,-0.529145,-0.35697,-0.19451,-0.434146,-0.123922,-0.379262,-0.11643,1.97097,2.02837,1.9255,1.94844,-1.08182,1.31323,-1.14018,1.93055,-1.04498,-0.503789,1 +-1.60251,1.78455,-0.35697,-0.19451,0.368649,-0.0830431,-0.363873,-0.132428,-0.499041,-0.537187,-0.652694,-0.272884,0.0596415,-1.43449,2.37063,-0.487288,-0.0109018,2.35284,6 +-1.15019,-1.08582,-0.35697,-0.19451,0.059882,-0.092209,-0.240761,-0.107172,-0.401055,-0.356425,-0.354032,-0.495933,0.731091,-0.0152127,-0.707338,-0.381151,0.0444548,-0.242275,0 +-0.615625,-0.494353,-0.35697,-0.19451,-0.248885,-0.104845,-0.41004,-0.130788,-0.409787,-0.327883,-0.402532,-0.492877,1.07641,-0.287713,-0.591914,-0.430337,-0.159683,-0.132289,0 +-0.917174,-0.494353,-0.35697,-0.19451,0.101051,-0.0908876,-0.133038,-0.128521,-0.854118,-0.901883,-0.808406,-0.853422,0.261076,-0.395578,0.408426,-0.841938,1.96236,-0.628283,2 +0.98807,1.95851,-0.35697,-0.19451,0.203973,0.024981,0.251687,-0.010945,-0.549489,-0.562557,-0.632272,-0.431768,0.328221,-1.00303,1.37029,-0.619311,-0.587642,2.68725,6 +1.12514,-1.13801,-0.35697,-0.19451,-0.392977,-0.117063,-0.394651,-0.133002,2.22515,2.20596,2.17311,2.28148,-1.98348,1.47786,-0.514964,2.18165,-0.965314,-0.63829,1 +0.426091,-0.650919,-0.35697,-0.19451,0.14222,-0.118619,-0.594708,-0.135905,-0.435011,-0.483276,-0.359137,-0.474545,-0.0842406,0.149423,-0.168693,-0.386329,0.0779858,-0.527642,4 +1.57746,-0.772692,-0.35697,-0.19451,5.3295,0.783867,3.25254,2.50085,-0.111949,-0.242259,0.0365264,-0.162888,-1.09142,0.8988,-0.428397,0.0149181,0.2723,-0.597539,2 +-0.492264,-0.96405,-0.35697,-0.19451,0.800923,-0.0595048,-0.00992631,-0.119452,-0.506802,-0.432535,-0.48677,-0.596763,1.086,-0.282036,-0.611151,-0.515763,0.153778,-0.130118,0 +0.247903,-1.55552,-0.35697,-0.19451,-0.310638,-0.106594,-0.286928,-0.125212,2.31635,2.30744,2.24714,2.38231,-1.9643,1.43812,-0.466871,2.25672,-0.995916,-0.643469,1 +0.60428,-0.442164,-0.35697,-0.19451,-0.434145,-0.123922,-0.209983,-0.127324,1.44806,1.27044,1.67023,1.33734,-2.78922,2.67005,-1.72691,1.67168,-0.38809,-0.566625,1 +0.98807,0.35806,-0.35697,-0.19451,-0.351807,-0.111425,-0.56393,-0.131829,-0.952103,-0.927254,-0.976882,-0.935919,0.999671,-0.946257,0.600799,-1.01279,1.90188,-0.403823,4 +-0.862347,-1.69469,-0.35697,-0.19451,-0.413561,-0.121239,-0.548541,-0.133307,1.96903,1.86981,1.99187,2.01566,-2.50146,1.7674,-0.486108,1.99785,-0.780497,-0.662149,1 +0.124542,1.22787,-0.35697,-0.19451,0.265726,-0.100134,0.774912,-0.0647517,0.57395,0.572758,0.628745,0.503202,-0.477518,0.836352,-0.938185,0.615494,-0.672112,-0.465267,5 +-0.972001,-0.563938,-0.35697,-0.19451,-0.166547,-0.0929522,-0.440818,-0.135826,-0.885163,-0.920911,-0.83138,-0.905365,0.395366,-0.367193,0.225672,-0.865236,2.26849,-0.533105,2 +0.289023,-0.894465,-0.35697,-0.19451,-0.351807,-0.115994,-0.209983,-0.130347,-0.283667,-0.258115,-0.200872,-0.404269,0.462511,0.319736,-1.00552,-0.22583,0.105265,-0.287943,0 +1.44039,0.984323,2.41015,-0.19451,-0.290054,-0.115746,-0.133038,-0.118697,-0.607698,-0.660867,-0.713958,-0.422602,0.0116809,-1.2074,2.03398,-0.614133,0.262757,2.4919,6 +0.974363,0.653796,-0.35697,-0.19451,0.32748,-0.00375916,2.59081,1.4579,0.128649,0.106581,0.161607,0.109048,-0.30486,0.325413,-0.245642,0.144352,-0.634087,-0.663541,5 +-0.519677,0.201495,-0.35697,-0.19451,-0.557652,-0.12194,-0.579319,-0.137149,-0.945312,-0.936767,-0.951356,-0.935919,0.846197,-0.815683,0.533469,-0.986905,2.51022,-0.488342,2 +1.50893,-0.7379,-0.35697,-0.19451,-0.187131,-0.117976,-0.456207,-0.135133,-0.879342,-0.908226,-0.844144,-0.883976,0.452919,-0.486412,0.369952,-0.87818,1.98995,-0.572844,2 +-0.670452,-0.302995,-0.35697,-0.19451,-0.0224557,-0.0482731,-0.0560932,-0.0769437,-0.874491,-0.908226,-0.833933,-0.880921,0.404958,-0.446672,0.350714,-0.867825,2.08786,-0.577637,2 +0.330144,-0.111637,5.17726,-0.19451,-0.392976,-0.12161,-0.394651,-0.132614,-0.414638,-0.334226,-0.41019,-0.492877,1.06682,-0.310422,-0.54382,-0.438103,-0.193876,-0.136915,0 +-0.7664,-0.546542,2.41015,-0.19451,-0.00187127,-0.0265529,-0.117649,-0.12279,-0.463145,-0.359596,-0.479112,-0.538709,1.31621,-0.486412,-0.495727,-0.507997,-0.220398,-0.0293431,0 +1.50893,1.24527,-0.35697,-0.19451,-0.00187138,-0.0806137,0.159352,-0.110612,0.295516,0.284172,0.35561,0.231267,-0.343228,0.643331,-0.745812,0.338504,-0.597031,-0.464753,5 +0.672814,0.375456,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.165662,-0.998843,-0.35697,-0.19451,0.265727,-0.0595048,0.143964,-0.0741098,-0.226427,-0.213718,-0.137055,-0.34316,0.299445,0.41057,-0.995897,-0.161113,0.016052,-0.311968,0 +-0.0536464,-0.181222,-0.35697,-0.19451,-0.0636248,-0.0932,0.143964,-0.114162,-0.439862,-0.365939,-0.430612,-0.517321,1.02845,-0.299068,-0.524583,-0.458812,-0.132732,-0.144119,0 +-0.697866,1.59319,-0.35697,-0.19451,-0.537067,-0.125656,-0.533152,-0.138093,-0.789117,-0.790889,-0.913066,-0.630373,0.625578,-1.47423,1.87046,-0.790164,0.774435,2.17044,6 +-1.23243,-1.41635,2.41015,-0.19451,-0.310638,-0.123922,-0.286928,-0.131544,-0.378742,-0.365939,-0.300426,-0.480656,0.424143,0.211871,-0.784287,-0.326789,0.157064,-0.310351,0 +0.247903,-1.79907,-0.35697,-0.19451,-0.290052,-0.110578,-0.317706,-0.124376,2.36486,2.39624,2.26245,2.4312,-1.63817,1.25646,-0.486108,2.27226,-1.07493,-0.623827,1 +0.0834216,0.35806,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.0285944,0.340664,-0.35697,-0.19451,-0.145963,-0.124583,-0.425429,-0.129843,-0.860909,-0.911397,-0.798196,-0.877865,0.241892,-0.287713,0.244909,-0.831583,2.13957,-0.578849,2 +0.439798,1.69757,-0.35697,-0.19451,-0.310638,-0.112883,-0.333095,-0.129618,-0.653296,-0.64501,-0.828828,-0.44399,0.606393,-1.70699,2.28406,-0.632254,0.535618,2.09666,6 +-0.903467,0.305872,2.41015,-0.19451,0.183389,-0.0929509,-0.0714822,-0.118441,-0.638743,-0.711607,-0.588877,-0.621207,-0.141793,-0.191203,0.466138,-0.619311,0.695908,-0.704491,2 +1.56376,-0.00725971,-0.35697,-0.19451,-0.516483,-0.125574,-0.533152,-0.137337,-0.93076,-0.936767,-0.918171,-0.929808,0.702315,-0.679433,0.446901,-0.953252,2.51022,-0.518462,2 +-1.34208,-0.302995,-0.35697,-0.19451,-0.475314,-0.117976,-0.317706,-0.130032,-0.913297,-0.927254,-0.902855,-0.902309,0.615985,-0.679433,0.533469,-0.93772,2.29875,-0.589628,2 +-1.3695,-0.563938,-0.35697,-0.19451,-0.104794,-0.0297737,-0.286928,-0.123231,-0.86867,-0.911397,-0.828828,-0.865644,0.318629,-0.446672,0.437282,-0.862648,2.12236,-0.641724,2 +-0.697866,0.0623251,-0.35697,-0.19451,1.0891,-0.0459202,-0.209983,-0.118964,0.214993,0.189034,0.302004,0.133492,-0.410373,0.756872,-0.870855,0.284142,-0.479912,-0.451772,3 +-0.451143,-1.38156,2.41015,-0.19451,-0.434145,-0.114506,-0.348484,-0.122338,2.27269,2.3011,2.15779,2.35787,-1.59021,1.0975,-0.264879,2.16612,-1.08828,-0.649947,1 +-0.451143,-0.929258,2.41015,-0.19451,-0.290054,-0.096964,-0.456207,-0.129026,0.630219,0.588614,0.753826,0.515424,-0.88998,1.34161,-1.38064,0.74234,-0.492876,-0.458111,3 +-1.19131,-0.198618,-0.35697,-0.19451,-0.495898,-0.118719,-0.394651,-0.13866,-0.80755,-0.736977,-0.828828,-0.8412,1.29703,-0.804329,0.0621548,-0.862648,0.579381,0.0575311,0 +0.179369,0.166702,-0.35697,-0.19451,-0.454729,-0.117398,-0.348484,-0.136582,-0.801729,-0.714778,-0.833933,-0.838144,1.44091,-0.872454,0.0332989,-0.860059,0.575132,0.18458,0 +-0.0947667,0.0449289,-0.35697,-0.19451,-0.454729,-0.118389,-0.163816,-0.104086,-0.4321,-0.476933,-0.356584,-0.474545,-0.0554641,0.149423,-0.197549,-0.38374,0.0446106,-0.515039,3 +-0.547091,-0.929258,-0.35697,-0.19451,-0.2283,-0.111039,-0.163816,-0.120712,-0.350607,-0.280314,-0.3234,-0.447046,0.922934,-0.106046,-0.745812,-0.350087,-0.0914476,-0.18553,0 +1.0429,0.201495,-0.35697,-0.19451,-0.495898,-0.120701,-0.425429,-0.138912,-0.825983,-0.733806,-0.867118,-0.856477,1.50805,-0.951934,0.100629,-0.87818,0.755702,0.304606,0 +-0.903467,-0.216014,-0.35697,-0.19451,-0.598821,-0.123922,-0.533152,-0.138093,-0.827924,-0.752834,-0.854354,-0.859533,1.35458,-0.855423,0.0910108,-0.883357,0.763427,0.117456,0 +-0.012526,1.03651,-0.35697,-0.19451,-0.0430402,-0.117728,-0.0407043,-0.0688198,-0.49419,-0.530845,-0.622062,-0.300384,0.0692336,-1.2585,2.06283,-0.510586,-0.162108,2.45314,6 +-0.547091,0.0101365,-0.35697,-0.19451,-0.248885,-0.106461,-0.00992611,-0.111625,-0.586355,-0.721121,-0.461244,-0.599819,-0.746098,0.353799,0.148723,-0.489876,1.15733,-0.668971,2 +-0.355196,0.445041,-0.35697,-0.19451,0.656831,-0.0252315,-0.0868712,-0.113218,-0.410757,-0.461077,-0.325952,-0.459267,-0.122609,0.228903,-0.264879,-0.352676,0.0800629,-0.504027,3 +-0.0673532,-0.59873,2.41015,-0.19451,0.780338,0.0857645,0.944191,0.0614141,-0.695983,-0.771861,-0.622062,-0.703704,-0.122609,-0.0776607,0.254528,-0.652964,1.1379,-0.643159,2 +1.63229,1.21047,-0.35697,-0.19451,0.0598821,-0.0776883,0.405577,-0.0784294,-0.546579,-0.556215,-0.688431,-0.361493,0.356998,-1.39475,2.00512,-0.56236,-0.210339,2.31988,6 +-0.355196,0.149306,-0.35697,-0.19451,-0.537067,-0.118719,-0.517763,-0.126821,-0.951133,-0.933596,-0.969224,-0.935919,0.932526,-0.90084,0.591181,-1.00503,2.42911,-0.473359,2 +0.522039,0.740776,-0.35697,-0.19451,-0.0430403,-0.102863,0.00546292,-0.122286,-0.526205,-0.584756,-0.63993,-0.327883,-0.103425,-1.19037,2.12055,-0.533884,0.0846252,2.50996,6 +1.16626,-0.163825,-0.35697,-0.19451,-0.2283,-0.0981552,-0.502374,-0.139101,-0.546579,-0.610126,-0.440822,-0.605929,-0.132201,0.257288,-0.303354,-0.469167,0.522599,-0.503944,4 +-0.821227,-1.2076,-0.35697,-0.19451,-0.0430401,-0.0899792,0.0824077,-0.0665527,-0.326353,-0.286657,-0.267241,-0.431768,0.625578,0.126715,-0.841999,-0.293136,0.0230981,-0.257456,0 +1.74194,-1.52073,-0.35697,-0.19451,-0.351808,-0.122931,-0.394651,-0.136393,2.57344,2.73239,2.34158,2.66952,-0.650177,0.563851,-0.303354,2.3525,-1.34407,-0.572212,1 +0.796175,1.0713,-0.35697,-0.19451,0.368649,-0.0955409,0.928802,-0.0456925,0.207232,0.223918,0.248398,0.139603,-0.0170956,0.444632,-0.736193,0.229779,-0.618252,-0.415503,5 +-0.670452,-1.03363,-0.35697,-0.19451,0.121635,-0.00475004,0.128575,-0.0663637,-0.351577,-0.315198,-0.297873,-0.447046,0.615985,0.0699439,-0.736193,-0.3242,-0.00908253,-0.254841,0 +-1.06795,-0.0420521,-0.35697,-0.19451,-0.372392,-0.104439,0.682578,-0.0856109,0.435218,0.401509,0.521533,0.359596,-0.659769,0.932863,-0.918948,0.506769,-0.552849,-0.483608,3 +1.26221,1.24527,-0.35697,-0.19451,0.862676,-0.0540787,-0.00992611,-0.10443,0.210142,0.195376,0.261161,0.160991,-0.30486,0.512757,-0.563058,0.242723,-0.586644,-0.489004,5 +-1.05424,1.36704,-0.35697,4.39036,0.553909,-0.0910726,0.667189,-0.0705932,0.548726,0.547387,0.615982,0.463482,-0.458334,0.8988,-1.06323,0.60255,-0.623616,-0.442005,5 +1.02919,-1.92084,-0.35697,-0.19451,-0.0430403,-0.0858798,-0.594708,-0.135905,-0.727027,-0.762348,-0.650141,-0.777035,0.270669,-0.0833378,-0.130218,-0.681439,0.901611,-0.460247,4 +1.42669,0.0101365,-0.35697,-0.19451,-0.372392,-0.125656,-0.425429,-0.134378,-0.816282,-0.733806,-0.851802,-0.844255,1.41213,-0.906517,0.119867,-0.875591,0.521058,0.210462,0 +-1.58881,0.13191,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,2 +0.206783,1.00172,2.41015,-0.19451,-0.392976,-0.116655,-0.317706,-0.11114,-0.465086,-0.495961,-0.59143,-0.278995,0.0980101,-1.22443,1.97627,-0.492465,-0.303206,2.47284,6 +0.864709,1.0887,-0.35697,-0.19451,-0.372392,-0.123674,-0.456207,-0.136645,-0.485459,-0.499132,-0.596535,-0.333994,0.270669,-1.13928,1.65885,-0.539062,-0.547548,2.55627,6 +0.398678,0.0797212,-0.35697,-0.19451,-0.516483,-0.120619,-0.579319,-0.139416,-0.814341,-0.727464,-0.849249,-0.847311,1.4505,-0.90084,0.0717735,-0.873002,0.599273,0.231564,0 +-0.643038,-0.894465,-0.35697,-0.19451,-0.290053,-0.104845,-0.379261,-0.127765,2.31829,2.35501,2.21395,2.38231,-1.55184,1.20536,-0.486108,2.22307,-1.08433,-0.619893,1 +-1.24614,0.705984,-0.35697,-0.19451,-0.372392,-0.118307,-0.317706,-0.131829,-0.673669,-0.673552,-0.777774,-0.541765,0.54884,-1.24714,1.56266,-0.715092,-0.25829,2.36454,6 +-0.177007,-0.581334,-0.35697,-0.19451,2.03599,0.027566,-0.317706,-0.125211,0.736937,0.709122,0.817642,0.659031,-0.851611,1.14292,-1.08246,0.807057,-0.650641,-0.482689,3 +0.837295,-0.442164,-0.35697,-0.19451,-0.2283,-0.100959,0.974969,-0.087804,-0.0809042,-0.0519828,-0.0732383,-0.117056,0.328221,-0.0152127,-0.303354,-0.0963956,-0.706038,-0.386591,3 +1.48151,-0.7379,-0.35697,-0.19451,-0.475313,-0.119958,-0.379262,-0.130788,1.39761,1.22287,1.66002,1.23651,-2.72208,2.89714,-2.17899,1.66132,-0.336623,-0.530262,1 +-0.0536464,-0.720504,-0.35697,-0.19451,-0.495898,-0.119632,-0.502374,-0.132638,1.81963,1.71442,1.877,1.83233,-2.43431,1.87526,-0.736193,1.88136,-0.721829,-0.635444,1 +-1.38321,-0.703107,-0.35697,-0.19451,0.32748,-0.0176335,0.328632,-0.0998039,-0.479638,-0.391309,-0.481665,-0.557042,1.19151,-0.406932,-0.505346,-0.507997,-0.118112,-0.060778,0 +-0.245541,1.50621,-0.35697,-0.19451,-0.351807,-0.114012,-0.163816,-0.129025,-0.574713,-0.616469,-0.688431,-0.392047,0.0884179,-1.23011,1.9955,-0.588247,0.0388778,2.47486,6 +-0.300369,0.879946,2.41015,-0.19451,-0.166547,-0.101276,-0.209983,-0.118664,-0.363219,-0.346911,-0.558245,-0.1415,0.443327,-1.59912,2.26483,-0.375974,-0.433284,2.19797,6 +0.275317,2.16726,-0.35697,-0.19451,0.059882,-0.0889976,-0.0868712,-0.116757,-0.266204,-0.273972,-0.43827,-0.0498357,0.145971,-1.36636,2.16864,-0.298313,-0.592257,2.36065,6 +-0.903467,0.201495,-0.35697,-0.19451,-0.639989,-0.123237,-0.656264,-0.137858,-0.957924,-0.936767,-0.981988,-0.938975,0.970895,-0.946257,0.629655,-1.01797,2.51022,-0.473359,4 +-1.09536,1.41923,-0.35697,-0.19451,0.0187135,-0.0783609,0.251687,-0.0971556,0.345964,0.344426,0.40411,0.274043,-0.295267,0.671716,-0.841999,0.387689,-0.610226,-0.44117,5 +1.53634,-0.703107,-0.35697,-0.19451,-0.434145,-0.117976,0.944191,0.215579,-0.711505,-0.765519,-0.624614,-0.755647,0.0884179,-0.00385843,-0.082125,-0.655553,1.09364,-0.509507,4 +-0.0673532,-0.859673,-0.35697,-0.19451,-0.578236,-0.125326,-0.533152,-0.138849,1.69739,1.60659,1.81574,1.62456,-2.2041,2.18182,-1.48645,1.81923,-0.657479,-0.554997,1 +0.837295,-0.581334,-0.35697,-0.19451,0.945014,-0.0948527,-0.486985,-0.132156,-0.707624,-0.721121,-0.670562,-0.731203,0.452919,-0.33313,0.110248,-0.702149,0.468817,-0.455648,4 +-1.43803,0.184098,-0.35697,-0.19451,-0.454729,-0.125326,-0.502374,-0.136078,-0.892924,-0.905055,-0.867118,-0.902309,0.615985,-0.560214,0.331477,-0.901478,1.76226,-0.498402,4 +1.16626,0.514626,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.108474,0.236287,-0.35697,-0.19451,-0.619405,-0.125656,-0.486985,-0.137149,-0.889043,-0.89237,-0.86967,-0.899254,0.692723,-0.599954,0.321858,-0.904067,1.51371,-0.460854,4 +-1.46545,-1.39895,-0.35697,-0.19451,-0.00187116,-0.0877908,-0.240761,-0.119372,0.724325,0.629841,0.881459,0.61931,-1.44632,1.6425,-1.33255,0.871774,-0.401989,-0.516169,3 +-0.84864,1.68017,-0.35697,-0.19451,0.430402,0.21303,0.344021,-0.0366391,-0.756132,-0.749662,-0.867118,-0.621207,0.673538,-1.36068,1.63,-0.782398,0.262032,2.23644,6 +0.6454,1.64538,-0.35697,-0.19451,0.245142,-0.0731315,-0.225372,-0.0990482,-0.579564,-0.597441,-0.698642,-0.413436,0.309037,-1.26985,1.84161,-0.606367,-0.177116,2.41051,6 +0.659107,1.15829,2.41015,-0.19451,0.162804,-0.0701193,-0.240761,-0.119683,0.350815,0.344426,0.416874,0.274043,-0.343228,0.728487,-0.890092,0.400633,-0.590285,-0.443787,5 +-1.21872,2.08028,2.41015,-0.19451,-0.00187127,-0.086015,-0.117649,-0.12808,-0.621281,-0.654524,-0.736932,-0.44399,0.203524,-1.28121,1.96665,-0.632254,0.110971,2.4145,6 +0.672814,1.12349,-0.35697,-0.19451,0.368649,-0.0630817,0.328632,-0.102165,0.349845,0.360282,0.409216,0.264877,-0.189754,0.68307,-0.967041,0.392867,-0.582114,-0.409086,5 +-1.1776,0.0101365,-0.35697,4.39036,1.27437,-0.0208352,1.12886,-0.0628934,-0.771655,-0.81943,-0.719063,-0.780091,0.193931,-0.282036,0.283384,-0.751334,1.51224,-0.584242,2 +-0.656745,1.31485,-0.35697,-0.19451,0.286312,-0.085791,0.621022,-0.088722,0.522532,0.506161,0.615982,0.420705,-0.57344,1.05208,-1.20751,0.60255,-0.540477,-0.43872,5 +-1.52027,-0.23341,-0.35697,-0.19451,-0.0636246,-0.00797096,0.0670187,-0.12279,-0.500981,-0.397651,-0.522508,-0.569264,1.34499,-0.554537,-0.409159,-0.552005,-0.254237,0.0115194,0 +-0.670452,-0.129033,-0.35697,-0.19451,-0.392976,-0.117646,-0.625486,-0.138849,-0.529116,-0.549872,-0.481665,-0.560098,0.241892,-0.1174,-0.0436503,-0.510586,-0.0265173,-0.490689,4 +0.755054,-0.00725971,2.41015,-0.19451,-0.063625,-0.0803166,-0.363873,-0.131355,0.535144,0.563244,0.559823,0.472648,-0.180162,0.603591,-0.841999,0.545599,-0.769566,-0.426189,3 +-1.01312,1.97591,2.41015,-0.19451,0.245142,-0.070767,-0.0253152,-0.119269,-0.599937,-0.61964,-0.71651,-0.434824,0.309037,-1.26985,1.84161,-0.624488,-0.126619,2.42105,6 +1.48151,-0.459561,-0.35697,-0.19451,-0.557652,-0.122931,-0.517763,-0.136645,-0.915238,-0.933596,-0.887539,-0.920642,0.577617,-0.565891,0.37957,-0.922188,2.4407,-0.53612,2 +-0.0536464,-0.181222,-0.35697,-0.19451,-0.0636248,-0.0932,0.143964,-0.114162,-0.439862,-0.365939,-0.430612,-0.517321,1.02845,-0.299068,-0.524583,-0.458812,-0.132732,-0.144119,0 +1.0566,-1.78167,-0.35697,-0.19451,-0.578236,-0.119166,0.774912,-0.0957352,0.0966341,0.122437,0.118212,0.0448836,0.155563,0.223225,-0.534202,0.097756,-0.667402,-0.406325,3 +1.00178,0.427645,2.41015,-0.19451,-0.0842092,-0.108505,-0.363873,-0.123486,-0.923969,-0.905055,-0.941145,-0.911475,0.922934,-0.872454,0.552706,-0.97655,0.81499,-0.441492,4 +-1.56139,-0.268203,-0.35697,-0.19451,-0.207716,-0.10947,-0.286928,-0.123987,-0.507772,-0.39448,-0.530166,-0.584541,1.44091,-0.565891,-0.486108,-0.559771,-0.167039,0.0393207,0 +0.193076,-0.494353,-0.35697,-0.19451,0.636247,-0.0710118,1.28275,-0.0428288,0.25671,0.287343,0.27903,0.197657,0.0692336,0.359476,-0.678481,0.260843,-0.710972,-0.39338,3 +0.905829,-0.0768445,-0.35697,-0.19451,-0.290054,-0.0984572,-0.41004,-0.127041,0.0733504,0.0970669,0.092685,0.0265507,0.155563,0.189163,-0.47649,0.0718691,-0.679673,-0.416157,3 +1.71453,0.845154,-0.35697,-0.19451,-0.351807,-0.115994,-0.302317,-0.12808,-0.549489,-0.584756,-0.670562,-0.364548,0.126786,-1.2585,2.00512,-0.564948,-0.0747123,2.44646,6 +0.60428,1.0887,-0.35697,8.97523,0.162805,-0.0902933,0.851858,-0.0973427,0.324621,0.338084,0.388794,0.231267,-0.141793,0.694424,-1.03437,0.372157,-0.540692,-0.395705,5 +0.275317,-0.37258,-0.35697,-0.19451,-0.372392,-0.113764,0.0516297,-0.114918,-0.36613,-0.305684,-0.331058,-0.462323,0.846197,-0.0663066,-0.736193,-0.357853,-0.0399913,-0.208721,0 +-0.396316,1.21047,-0.35697,-0.19451,-0.207716,-0.102433,-0.163816,-0.108767,0.671936,0.626669,0.794668,0.561256,-0.957125,1.37,-1.36141,0.783759,-0.510732,-0.467237,5 +-0.684159,-0.285599,2.41015,-0.19451,-0.269469,-0.119628,-0.179205,-0.113973,-0.532996,-0.400823,-0.568456,-0.61204,1.63275,-0.673756,-0.495727,-0.590835,-0.120808,0.149433,0 +1.57746,1.19308,-0.35697,-0.19451,0.183389,-0.112883,0.544078,-0.0997082,0.233426,0.220747,0.319872,0.139603,-0.30486,0.768227,-0.995897,0.302263,-0.44363,-0.423003,5 +-0.410023,0.13191,-0.35697,-0.19451,-0.495898,-0.123674,-0.302317,-0.12808,-0.830834,-0.740149,-0.874776,-0.856477,1.49846,-0.974642,0.148723,-0.883357,0.726734,0.331393,0 +0.275317,-1.57292,-0.35697,-0.19451,-0.372391,-0.121239,-0.425429,-0.129618,2.2921,2.29476,2.22161,2.3487,-1.8396,1.40974,-0.54382,2.23084,-1.01001,-0.62811,1 +-0.999415,-0.37258,-0.35697,-0.19451,-0.434145,-0.115994,-0.440818,-0.130536,-0.894864,-0.91774,-0.86967,-0.893143,0.520064,-0.565891,0.437282,-0.904067,2.07106,-0.581636,2 +-0.437437,-0.981446,-0.35697,-0.19451,-0.0636252,-0.0963334,-0.25615,-0.119973,0.620518,0.575929,0.728299,0.527646,-0.909164,1.22807,-1.16903,0.716453,-0.542461,-0.48333,3 +-1.65734,0.0449289,-0.35697,-0.19451,-0.269469,-0.110708,-0.41004,-0.130032,0.543876,0.556901,0.603218,0.454315,-0.324044,0.842029,-1.1017,0.589607,-0.64016,-0.416176,3 +0.823588,-0.0942407,-0.35697,-0.19451,4.65022,3.93759,-0.348484,-0.122223,0.472084,0.493476,0.50877,0.402372,-0.189754,0.631976,-0.880473,0.493826,-0.706653,-0.41688,3 +-1.67105,-0.563938,-0.35697,4.39036,0.121635,-0.0146604,-0.394651,-0.10692,-0.823073,-0.882856,-0.770116,-0.819812,0.126786,-0.321776,0.418045,-0.803108,1.76452,-0.660732,2 +-0.643038,1.0887,-0.35697,-0.19451,0.348065,-0.0799863,0.313243,-0.0686309,-0.0459787,-0.0456403,-0.00686898,-0.0926122,0.0404572,0.223225,-0.418778,-0.0290897,-0.545783,-0.45118,5 +1.01548,-1.71209,-0.35697,-0.19451,-0.331223,-0.108479,-0.317707,-0.127009,1.74396,1.60659,1.89997,1.67039,-2.66453,2.47136,-1.5153,1.90466,-0.566622,-0.575411,1 +0.837295,-1.93824,-0.35697,-0.19451,-0.537067,-0.121239,-0.0253152,-0.106736,-0.80658,-0.825773,-0.7548,-0.8412,0.481696,-0.316099,0.0525362,-0.787576,1.1406,-0.449793,4 +0.453505,0.532022,-0.35697,-0.19451,-0.351807,-0.103147,-0.610097,-0.133307,-0.954044,-0.924082,-0.987093,-0.932864,1.04763,-1.00303,0.648893,-1.02315,-0.653128,-0.322427,4 +0.878415,1.1061,-0.35697,-0.19451,-0.248885,-0.104927,0.174742,-0.0995498,0.300367,0.322227,0.360715,0.203767,-0.045872,0.649008,-1.05361,0.343682,-0.530589,-0.378283,5 +0.892122,1.12349,-0.35697,-0.19451,0.0392979,-0.0924454,-0.0407043,-0.109878,0.331412,0.338084,0.40411,0.234322,-0.208938,0.756872,-1.07285,0.387689,-0.515339,-0.402287,5 +0.796175,-0.216014,-0.35697,-0.19451,-0.454729,-0.120371,-0.379262,-0.131544,-0.821133,-0.740149,-0.854354,-0.850366,1.40254,-0.895163,0.110248,-0.880768,0.609894,0.192729,0 +0.193076,-0.650919,2.41015,-0.19451,-0.166547,-0.0988985,-0.333095,-0.117752,-0.276876,-0.24543,-0.211082,-0.382881,0.510472,0.211871,-0.870855,-0.236185,-0.0236437,-0.285978,0 +0.330144,-0.807484,-0.35697,-0.19451,0.0804665,-0.0394363,0.00546284,-0.0376467,-0.329264,-0.267629,-0.290215,-0.431768,0.827012,-0.00953562,-0.813143,-0.316434,-0.0488649,-0.211374,0 +0.371264,-0.442164,-0.35697,-0.19451,1.8919,-0.0406279,-0.379262,-0.127041,-0.216726,-0.226403,-0.162582,-0.269829,0.0884179,0.183486,-0.399541,-0.187,-0.35257,-0.440062,3 +-1.19131,-0.911862,-0.35697,-0.19451,-0.434145,-0.116367,-0.425429,-0.127928,2.23001,2.24402,2.1629,2.27231,-1.68613,1.38135,-0.649625,2.1713,-1.01869,-0.607186,1 +-0.382609,-0.842277,-0.35697,4.39036,0.0392977,-0.0846937,0.374799,0.000894399,-0.319562,-0.251773,-0.287662,-0.419546,0.874973,-0.0492752,-0.793905,-0.313846,-0.108508,-0.187578,0 +1.19367,1.92372,-0.35697,-0.19451,-0.537067,-0.124665,-0.379262,-0.135322,-0.784267,-0.765519,-0.918171,-0.633429,0.807828,-1.53667,1.79351,-0.792753,0.851614,2.0715,6 +-1.60251,1.31485,-0.35697,-0.19451,-0.084209,-0.109719,-0.286928,-0.128059,-0.577624,-0.556215,-0.74459,-0.392047,0.663946,-1.58777,2.02436,-0.588247,-0.0788771,2.11488,6 +-0.396316,-0.476957,-0.35697,-0.19451,-0.331223,-0.093613,-0.440818,-0.13507,-0.80561,-0.860657,-0.742037,-0.819812,0.155563,-0.236619,0.244909,-0.774632,1.54163,-0.590742,2 +0.60428,1.05391,2.41015,-0.19451,-0.248885,-0.11517,0.0208516,-0.107366,0.503129,0.525189,0.570034,0.396261,-0.208938,0.85906,-1.24598,0.555954,-0.575066,-0.385105,5 +0.974363,0.0971174,-0.35697,-0.19451,-0.392976,-0.117646,-0.486985,-0.137149,-0.80464,-0.711607,-0.846696,-0.835089,1.49846,-0.940579,0.0910108,-0.860059,0.495952,0.278331,0 +1.71453,-1.50333,-0.35697,-0.19451,-0.475314,-0.12194,-0.379263,-0.123987,1.54217,1.34972,1.76723,1.44123,-3.00025,2.76656,-1.67882,1.77005,-0.387221,-0.579516,1 +1.38557,-0.23341,-0.35697,-0.19451,-0.578236,-0.125326,-0.533152,-0.136582,-0.926879,-0.933596,-0.913066,-0.926753,0.692723,-0.668079,0.437282,-0.948074,2.41289,-0.513213,2 +1.646,-1.83386,-0.35697,-0.19451,-0.331223,-0.104514,-0.348483,-0.136582,2.64135,2.81485,2.38243,2.75508,-0.57344,0.438955,-0.168693,2.39392,-1.38266,-0.590301,1 +-0.985708,0.201495,-0.35697,-0.19451,-0.495898,-0.122683,-0.579319,-0.13866,-0.951133,-0.936767,-0.966672,-0.935919,0.90375,-0.883808,0.591181,-1.00244,2.02355,-0.501217,2 +0.179369,1.38444,-0.35697,-0.19451,-0.084209,-0.090593,-0.0407041,-0.108226,-0.675609,-0.686237,-0.828828,-0.474545,0.452919,-1.57641,2.21673,-0.658141,0.490791,2.18894,6 +-0.697866,-0.0246559,-0.35697,-0.19451,-0.248885,-0.09963,-0.302317,-0.128282,-0.547549,-0.708436,-0.364242,-0.605929,-1.01468,0.773904,-0.293735,-0.391506,1.27602,-0.610283,2 +-1.23243,-0.981446,2.41015,-0.19451,0.286311,-0.101993,0.390187,-0.107171,1.80799,1.69222,1.86934,1.82622,-2.52064,1.89229,-0.678481,1.8736,-0.702788,-0.643511,1 +1.646,-0.790088,2.41015,-0.19451,-0.00187127,-0.104845,0.451744,-0.0438814,-0.17986,-0.22006,-0.0885543,-0.248441,-0.21853,0.461663,-0.563058,-0.111928,-0.152684,-0.455434,3 +-0.972001,0.0449289,-0.35697,-0.19451,-0.454729,-0.120371,-0.533152,-0.137337,-0.933671,-0.936767,-0.930934,-0.923697,0.731091,-0.747558,0.533469,-0.966195,2.51022,-0.56107,2 +-0.752693,-1.10322,-0.35697,-0.19451,-0.351807,-0.0961731,-0.0714824,-0.116933,-0.347697,-0.296171,-0.302978,-0.447046,0.750275,0.0131728,-0.774668,-0.329378,-0.0265866,-0.226641,0 +0.631693,1.1061,-0.35697,4.39036,0.389234,-0.0887102,0.0670189,-0.0988312,0.296486,0.300028,0.36582,0.206823,-0.208938,0.705779,-0.986278,0.348859,-0.526336,-0.411334,5 +-1.42433,0.410249,2.41015,-0.19451,0.0187132,-0.091218,-0.302317,-0.125813,-0.80658,-0.771861,-0.82117,-0.813701,0.970895,-0.758912,0.31224,-0.849704,0.162833,-0.143299,3 +-1.60251,-1.46854,2.41015,-0.19451,-0.187131,-0.102119,-0.163816,-0.128269,1.99911,1.99032,2.0174,1.96371,-1.70531,1.76172,-1.27484,2.02374,-0.893259,-0.540505,1 +0.467212,-0.216014,-0.35697,-0.19451,-0.537067,-0.125656,-0.502374,-0.137589,-0.815312,-0.71795,-0.856907,-0.850366,1.54642,-0.946257,0.0525362,-0.873002,0.676521,0.317233,0 +0.289023,0.288476,-0.35697,-0.19451,-0.310638,-0.116985,-0.394651,-0.130347,-0.80464,-0.711607,-0.846696,-0.835089,1.49846,-0.940579,0.0910108,-0.860059,0.482346,0.293548,0 +0.151956,-0.546542,-0.35697,-0.19451,2.283,0.871078,-0.394651,-0.137149,-0.566952,-0.603784,-0.494428,-0.61204,0.126786,0.01885,-0.159074,-0.523529,0.467159,-0.485575,4 +-0.697866,0.0971174,-0.35697,-0.19451,-0.619405,-0.126647,-0.640875,-0.139668,-0.956954,-0.936767,-0.979435,-0.938975,0.961302,-0.934902,0.620037,-1.01538,2.51022,-0.473359,2 +-0.574504,1.29745,-0.35697,-0.19451,0.183389,-0.0939296,0.66719,-0.0890038,0.595294,0.5791,0.684904,0.497092,-0.630992,1.08614,-1.20751,0.672445,-0.571939,-0.445002,5 +0.110835,-0.476957,2.41015,-0.19451,-0.331222,-0.104514,0.0977968,-0.0829894,-0.397175,-0.305684,-0.387216,-0.492877,1.15315,-0.259328,-0.716956,-0.414804,-0.0895382,-0.108578,0 +1.17996,0.532022,-0.35697,-0.19451,-0.660574,-0.126647,-0.56393,-0.139101,-0.963745,-0.936767,-0.997304,-0.938975,1.02845,-1.01438,0.687367,-1.0335,0.563545,-0.473359,4 +-1.15019,0.271079,-0.35697,-0.19451,-0.681158,-0.126895,-0.640875,-0.139668,-0.936581,-0.936767,-0.925829,-0.938975,0.759868,-0.696464,0.418045,-0.961018,2.51022,-0.473359,4 +0.823588,1.0887,-0.35697,-0.19451,0.101051,-0.0858576,0.159353,-0.117218,0.292605,0.319056,0.337741,0.209878,0.00208865,0.541143,-0.918948,0.320383,-0.597723,-0.383817,5 +-0.108474,0.410249,-0.35697,-0.19451,-0.475314,-0.124913,-0.456207,-0.130599,-0.792998,-0.781375,-0.762458,-0.832034,0.750275,-0.446672,0.00444287,-0.795342,0.949523,-0.272103,0 +0.522039,0.932135,2.41015,-0.19451,-0.269469,-0.111699,0.0208518,-0.126758,-0.328294,-0.331055,-0.522508,-0.0895567,0.241892,-1.56506,2.40911,-0.331966,-0.463205,2.25732,6 +-0.42373,0.0623251,-0.35697,-0.19451,-0.41356,-0.116118,-0.456207,-0.128464,-0.898745,-0.920911,-0.887539,-0.880921,0.529656,-0.662402,0.591181,-0.922188,2.13943,-0.676903,2 +-1.3695,-1.43375,-0.35697,-0.19451,-0.331223,-0.114425,-0.25615,-0.129025,2.00008,2.02837,1.99953,1.95149,-1.36959,1.63682,-1.39988,2.00562,-0.95747,-0.502755,1 +-1.69846,-0.146429,2.41015,-0.19451,-0.0224559,-0.07404,-0.0560931,-0.0557838,-0.536877,-0.489618,-0.51485,-0.602874,0.865381,-0.29339,-0.370685,-0.54165,-0.00593548,-0.119788,0 +1.49522,-0.23341,-0.35697,-0.19451,-0.392976,-0.122601,-0.533152,-0.130536,-0.922999,-0.933596,-0.902855,-0.926753,0.654354,-0.622662,0.398808,-0.93772,2.4407,-0.510963,2 +0.851002,-0.842277,-0.35697,-0.19451,-0.125378,-0.106998,0.898024,-0.0585075,0.0694699,0.084382,0.092685,0.0265507,0.0788258,0.211871,-0.438015,0.0718691,-0.665035,-0.435852,3 +-0.0536464,-1.10322,-0.35697,-0.19451,0.14222,-0.0753614,0.128575,-0.0913021,-0.270084,-0.232745,-0.205977,-0.379825,0.558433,0.206194,-0.909329,-0.231008,-0.0201165,-0.267396,0 +-1.06795,-0.476957,-0.35697,-0.19451,-0.351807,-0.114506,-0.440818,-0.127372,0.651563,0.617155,0.753826,0.555145,-0.842019,1.21672,-1.21713,0.74234,-0.567967,-0.469936,3 +0.124542,0.427645,-0.35697,-0.19451,-0.660574,-0.12347,-0.656264,-0.137858,-0.969566,-0.936767,-1.01262,-0.938975,1.086,-1.08251,0.745079,-1.04903,-1.38313,-0.473359,4 +-1.15019,-0.389976,-0.35697,-0.19451,-0.063625,-0.106594,-0.102261,-0.113728,0.715593,0.686923,0.809984,0.622366,-0.842019,1.21672,-1.21713,0.799291,-0.602391,-0.470236,3 +1.70082,0.949531,-0.35697,-0.19451,0.14222,-0.0878608,0.774912,-0.0562825,0.285814,0.281001,0.337741,0.225156,-0.276083,0.580883,-0.707338,0.320383,-0.600193,-0.478627,5 +0.905829,-0.389976,-0.35697,-0.19451,-0.290053,-0.10993,-0.363873,-0.119999,0.209172,0.176349,0.296898,0.133492,-0.467926,0.756872,-0.813143,0.278964,-0.456223,-0.473299,3 +1.70082,1.33225,-0.35697,-0.19451,0.245142,-0.0688454,0.0208518,-0.119657,0.215963,0.223918,0.266266,0.145714,-0.103425,0.512757,-0.765049,0.2479,-0.587399,-0.423047,5 +1.70082,0.86255,2.41015,-0.19451,-0.0842096,-0.090593,0.328632,-0.10425,0.474995,0.449078,0.582797,0.365707,-0.6214,1.10885,-1.2556,0.568898,-0.463442,-0.439272,5 +0.206783,-1.71209,-0.35697,-0.19451,-0.331223,-0.0946039,-0.363873,-0.138156,2.38232,2.42478,2.25479,2.46786,-1.55184,1.10318,-0.312973,2.26449,-1.11423,-0.641708,1 +0.206783,-1.71209,-0.35697,-0.19451,-0.331223,-0.0946039,-0.363873,-0.138156,2.38232,2.42478,2.25479,2.46786,-1.55184,1.10318,-0.312973,2.26449,-1.11423,-0.641708,1 +1.11143,-0.755296,-0.35697,-0.19451,1.10969,0.203367,0.390188,0.474032,-0.707624,-0.749662,-0.66801,-0.70676,0.193931,-0.316099,0.341096,-0.69956,0.748425,-0.623399,2 +-1.21872,0.375456,-0.35697,-0.19451,-0.598821,-0.122931,-0.317706,-0.105094,-0.948223,-0.927254,-0.981988,-0.917586,0.961302,-1.00303,0.735461,-1.01797,-0.766684,-0.755857,2 +0.494625,-0.877069,-0.35697,-0.19451,-0.392976,-0.116036,-0.502374,-0.133545,0.178127,0.290515,0.105448,0.15488,0.874973,-0.338807,-0.303354,0.0848127,-1.06223,-0.23137,3 +-1.61622,-0.581334,-0.35697,-0.19451,-0.2283,-0.108261,0.00546275,-0.105851,-0.848297,-0.863828,-0.882434,-0.783146,0.54884,-0.923548,1.0144,-0.906655,1.04442,-1.08797,2 +-1.47915,-0.23341,2.41015,-0.19451,-0.2283,-0.0991462,0.0824078,-0.089224,-0.86673,-0.895541,-0.867118,-0.828978,0.443327,-0.713496,0.764317,-0.901478,1.66338,-0.812609,2 +-0.149594,1.21047,-0.35697,-0.19451,0.471571,-0.0723358,0.574856,-0.0976438,0.543876,0.522017,0.651719,0.429872,-0.640584,1.16562,-1.33255,0.638792,-0.494069,-0.43415,5 +1.63229,1.52361,-0.35697,-0.19451,-0.0842092,-0.0975771,-0.117649,-0.100874,-0.613519,-0.629154,-0.719063,-0.465378,0.356998,-1.2074,1.68771,-0.650375,-0.22814,2.46155,6 +-1.56139,1.33225,-0.35697,-0.19451,0.471571,-0.0597149,0.420966,-0.0979978,0.432308,0.388824,0.531744,0.35043,-0.746098,1.01802,-0.97666,0.517124,-0.498714,-0.487814,5 +-0.300369,-1.46854,-0.35697,-0.19451,-0.516484,-0.120619,-0.363873,-0.132866,2.36971,2.3899,2.26756,2.44648,-1.74368,1.26213,-0.389922,2.27743,-1.06272,-0.640679,1 +-0.396316,-0.146429,-0.35697,-0.19451,-0.557652,-0.123922,-0.579319,-0.137149,-0.792998,-0.714778,-0.818617,-0.828978,1.35458,-0.82136,0.0332989,-0.849704,0.489193,0.0987096,0 +0.98807,-1.13801,-0.35697,-0.19451,-0.392976,-0.113403,-0.271539,-0.123105,2.23195,2.21548,2.17311,2.2937,-1.9643,1.43812,-0.466871,2.18165,-0.975633,-0.643468,1 +0.796175,-0.320391,-0.35697,-0.19451,0.0804659,-0.101872,-0.456208,-0.129088,0.746638,0.775719,0.794668,0.65292,-0.343228,0.932863,-1.23636,0.783759,-0.709158,-0.405464,3 +0.700227,-0.0942407,-0.35697,-0.19451,-0.557652,-0.123922,-0.471596,-0.136834,-0.811431,-0.71795,-0.854354,-0.8412,1.50805,-0.951934,0.100629,-0.873002,0.48533,0.313593,0 +-0.7664,0.271079,-0.35697,-0.19451,0.348064,-0.0877675,-0.0868712,-0.111795,-0.497101,-0.480104,-0.496981,-0.508155,0.558433,-0.406932,0.129485,-0.495054,-0.176432,-0.219976,2 +-0.410023,0.0623251,-0.35697,-0.19451,-0.619405,-0.125656,-0.610097,-0.139668,-0.954044,-0.936767,-0.971777,-0.938975,0.932526,-0.90084,0.591181,-1.00761,2.51022,-0.473359,2 +1.76936,0.619003,-0.35697,-0.19451,0.615662,0.0408376,3.43721,2.45626,-0.011053,-0.0424689,0.0467369,-0.0498357,-0.276083,0.376507,-0.361066,0.0252727,-0.578371,-0.617326,5 +-0.382609,-0.00725971,-0.35697,-0.19451,-0.125378,-0.102863,2.99093,1.7088,0.412905,0.433222,0.457716,0.335152,-0.151386,0.637654,-0.928567,0.442052,-0.640795,-0.40846,3 +-0.588211,-0.0594483,-0.35697,-0.19451,1.39787,0.919226,0.974969,0.881108,-0.788147,-0.841629,-0.721616,-0.80759,0.155563,-0.202557,0.187197,-0.753923,1.73449,-0.567667,2 +0.275317,0.49723,-0.35697,-0.19451,-0.434145,-0.101812,0.0977966,-0.121316,-0.314712,-0.375452,-0.422954,-0.123167,-0.295267,-0.980319,1.95703,-0.360442,-0.389401,2.64928,6 +0.713934,0.114514,-0.35697,-0.19451,-0.681158,-0.124274,-0.610097,-0.135544,-0.939491,-0.91774,-0.948803,-0.938975,0.961302,-0.832715,0.446901,-0.984316,2.51022,-0.322427,4 +0.563159,0.984323,-0.35697,-0.19451,-0.166547,-0.0919612,1.35969,0.641233,-0.146875,-0.118579,-0.147266,-0.172054,0.376182,-0.123077,-0.168693,-0.171468,-0.761862,-0.425885,5 +1.70082,0.532022,-0.35697,4.39036,0.862676,0.277695,-0.194594,-0.0862011,-0.857998,-0.863828,-0.839038,-0.865644,0.644762,-0.577245,0.331477,-0.873002,1.70142,-0.474276,4 +1.74194,0.236287,-0.35697,-0.19451,-0.372392,-0.115171,-0.502374,-0.128059,-0.951133,-0.927254,-0.97433,-0.935919,0.990079,-0.934902,0.591181,-1.0102,1.41522,-0.417197,4 +-0.0673532,1.80194,-0.35697,-0.19451,-0.166547,-0.100855,-0.148427,-0.126443,-0.639714,-0.667209,-0.762458,-0.459267,0.270669,-1.34365,2.00512,-0.645198,0.137846,2.36502,6 +-1.34208,-0.198618,-0.35697,-0.19451,-0.619405,-0.119632,-0.640875,-0.135544,-0.966656,-0.936767,-1.00496,-0.938975,1.05722,-1.04844,0.716223,-1.04127,-0.896462,-0.473359,2 +0.782468,1.28006,2.41015,-0.19451,0.101051,-0.111895,-0.00992625,-0.113247,-0.633893,-0.638668,-0.721616,-0.517321,0.472103,-1.10522,1.39915,-0.694383,-0.459131,2.58268,6 +-0.999415,-0.998843,2.41015,-0.19451,-0.26947,-0.12161,-0.163816,-0.104086,2.02142,2.114,1.94337,2.00343,-0.803651,1.13724,-1.12094,1.94867,-1.10711,-0.476332,1 +1.44039,-1.93824,-0.35697,-0.19451,-0.372392,-0.121239,-0.225372,-0.123582,2.14754,2.12351,2.09398,2.2112,-1.9643,1.40406,-0.409159,2.1014,-0.960179,-0.650971,1 +0.412385,-0.96405,-0.35697,-0.19451,0.574494,-0.0428663,-0.625486,-0.135429,-0.910387,-0.876513,-0.948803,-0.887032,1.04763,-1.00303,0.648893,-0.984316,-1.36285,-0.322427,4 +-0.574504,-1.22499,-0.35697,-0.19451,-0.495899,-0.117153,-0.471596,-0.131829,2.26299,2.26939,2.16035,2.35481,-1.78205,1.1713,-0.197549,2.16871,-1.04979,-0.666764,1 +-1.68475,-0.494353,2.41015,-0.19451,0.0598824,-0.0974227,-0.425429,-0.124684,0.486637,0.417365,0.631298,0.374873,-1.02427,1.36432,-1.28446,0.618083,-0.390423,-0.482071,3 +1.22109,1.24527,-0.35697,-0.19451,-0.392976,-0.11263,-0.117649,-0.123744,0.248949,0.236603,0.302004,0.194601,-0.314452,0.558174,-0.630388,0.284142,-0.598286,-0.477877,5 +0.124542,-0.337787,-0.35697,-0.19451,0.183389,-0.0862628,0.0670186,-0.0797146,-0.400085,-0.340568,-0.364242,-0.495933,0.865381,-0.0890149,-0.716956,-0.391506,0.0153567,-0.198569,0 +1.4541,-1.29458,-0.35697,-0.19451,-0.495898,-0.118719,-0.486984,-0.135637,2.1912,2.14888,2.18587,2.21426,-2.16573,1.76172,-0.813143,2.19459,-0.889206,-0.616423,1 +0.151956,-1.36416,-0.35697,-0.19451,-0.248885,-0.0928705,-0.10226,-0.114219,0.419696,0.436393,0.450058,0.362651,-0.189754,0.54682,-0.736193,0.434286,-0.733766,-0.44198,3 +0.755054,1.0887,2.41015,-0.19451,-0.145962,-0.0872126,-0.133038,-0.109878,0.329471,0.347597,0.3939,0.231267,-0.103425,0.700101,-1.08246,0.377334,-0.528808,-0.385151,5 +-1.06795,-0.0768445,2.41015,-0.19451,0.14222,-0.0765871,-0.302317,-0.116665,-0.856058,-0.876513,-0.85946,-0.822867,0.510472,-0.72485,0.716223,-0.893712,1.34043,-0.792275,2 +-0.355196,1.29745,-0.35697,-0.19451,1.17144,0.016159,0.898024,-0.0416751,0.557458,0.544216,0.646614,0.457371,-0.57344,1.05208,-1.20751,0.633615,-0.557308,-0.435489,5 +0.851002,0.201495,-0.35697,-0.19451,0.51274,-0.0723882,-0.440818,-0.132048,-0.277846,-0.359596,-0.165134,-0.330938,-0.515887,0.524112,-0.370685,-0.189588,0.119744,-0.549453,4 +0.165662,1.15829,-0.35697,-0.19451,0.0598822,-0.110743,-0.0407042,-0.116281,0.612757,0.588614,0.720641,0.500147,-0.717322,1.22239,-1.35179,0.708687,-0.517254,-0.4405,5 +-1.06795,1.59319,-0.35697,-0.19451,0.450987,-0.0875122,0.267076,-0.0992347,-0.520384,-0.524502,-0.655246,-0.349271,0.385774,-1.32662,1.86084,-0.552005,-0.372858,2.34835,6 +-0.0673532,0.218891,-0.35697,-0.19451,-0.475314,-0.117976,-0.394651,-0.132614,-0.80658,-0.714778,-0.849249,-0.835089,1.48887,-0.946257,0.110248,-0.865236,0.449602,0.283622,0 +-0.725279,1.17568,2.41015,-0.19451,-0.2283,-0.115994,0.190131,-0.0618295,-0.572773,-0.591099,-0.673115,-0.428713,0.299445,-1.13928,1.63,-0.619311,-0.335173,2.52905,6 +-0.286662,0.271079,-0.35697,-0.19451,-0.578236,-0.115793,-0.579319,-0.131391,-0.953074,-0.936767,-0.97433,-0.932864,0.922934,-0.923548,0.639274,-1.0102,2.51022,-0.509814,2 +-1.61622,-0.163825,-0.35697,-0.19451,-0.269469,-0.109717,-0.0868711,-0.118508,-0.590236,-0.476933,-0.622062,-0.654817,1.50805,-0.696464,-0.33221,-0.645198,-0.079929,0.118776,0 +0.851002,0.984323,-0.35697,-0.19451,0.800923,-0.0607583,0.251687,-0.0858075,0.655443,0.629841,0.766589,0.539868,-0.765282,1.27917,-1.39988,0.755283,-0.525547,-0.440863,5 +1.48151,1.52361,2.41015,-0.19451,0.286311,0.00846376,-0.209983,-0.110699,-0.565982,-0.581585,-0.665457,-0.425657,0.318629,-1.12792,1.59152,-0.616722,-0.400647,2.53528,6 +-0.0673532,-0.859673,-0.35697,-0.19451,-0.578236,-0.125326,-0.533152,-0.138849,1.69739,1.60659,1.81574,1.62456,-2.2041,2.18182,-1.48645,1.81923,-0.657479,-0.554997,1 +-0.711572,0.705984,-0.35697,-0.19451,-0.351807,-0.114506,-0.148427,-0.122368,-0.364189,-0.315198,-0.576114,-0.153721,0.740683,-1.71266,2.15902,-0.386329,-0.422882,2.04564,6 +-0.286662,0.184098,-0.35697,-0.19451,-0.516483,-0.123237,-0.440818,-0.135429,-0.923969,-0.933596,-0.925829,-0.902309,0.663946,-0.770267,0.639274,-0.961018,2.41289,-0.685682,2 +0.357557,-0.163825,-0.35697,-0.19451,-0.475314,-0.122931,-0.394651,-0.131103,-0.80755,-0.721121,-0.844144,-0.838144,1.44091,-0.906517,0.0910108,-0.867825,0.486296,0.227845,0 +1.31703,0.532022,2.41015,4.39036,0.862676,-0.0661944,-0.317706,-0.130032,-0.800759,-0.813088,-0.767564,-0.819812,0.539248,-0.435318,0.196816,-0.800519,0.866838,-0.469211,4 +1.34445,1.0713,-0.35697,-0.19451,-0.516483,-0.119513,-0.00992631,-0.104791,-0.630982,-0.606955,-0.790538,-0.456212,0.731091,-1.58209,1.94741,-0.642609,0.0811401,2.07188,6 +1.19367,-1.31197,-0.35697,-0.19451,-0.495899,-0.121692,-0.517763,-0.138912,2.23486,2.26622,2.15779,2.27231,-1.53265,1.3189,-0.697719,2.16612,-1.04915,-0.592562,1 +0.330144,0.688588,-0.35697,-0.19451,0.265726,0.143657,3.20637,0.69111,0.120888,0.0748682,0.16416,0.112104,-0.515887,0.387861,-0.139837,0.144352,-0.566537,-0.66105,5 +1.17996,1.43662,-0.35697,-0.19451,-0.351807,-0.102119,-0.0714821,-0.121468,-0.549489,-0.549872,-0.680773,-0.385936,0.443327,-1.32662,1.80313,-0.583069,-0.435955,2.33947,6 +-1.53398,-0.877069,-0.35697,-0.19451,-0.187131,-0.111039,0.0516297,-0.0869569,-0.470907,-0.388138,-0.461244,-0.557042,1.13396,-0.321776,-0.591914,-0.489876,-0.0236045,-0.104415,0 +-0.917174,-0.181222,-0.35697,-0.19451,0.574494,-0.100032,-0.471596,-0.133545,-0.424339,-0.454734,-0.36169,-0.465378,0.0692336,0.0699439,-0.18793,-0.388918,-0.052936,-0.493612,4 +-1.31467,-0.790088,-0.35697,-0.19451,-0.45473,-0.111717,0.0516296,-0.100672,0.856266,0.766205,1.01675,0.741528,-1.51347,1.77307,-1.48645,1.00897,-0.444158,-0.506456,3 +-0.972001,0.253683,-0.35697,-0.19451,-0.619405,-0.120701,-0.56393,-0.133055,-0.963745,-0.936767,-0.999856,-0.935919,1.02845,-1.03141,0.716223,-1.03609,-0.409793,-0.529685,2 +-1.47915,-0.668315,2.41015,-0.19451,-0.372392,-0.111252,-0.363873,-0.127927,-0.923969,-0.924082,-0.93604,-0.899254,0.750275,-0.838392,0.66813,-0.971373,2.129,-0.656639,2 +-0.519677,1.26266,2.41015,-0.19451,-0.207716,-0.107926,-0.0560933,-0.111795,0.642831,0.633012,0.723194,0.549034,-0.611808,1.06344,-1.18827,0.711276,-0.610429,-0.443813,5 +0.0834216,-0.650919,-0.35697,-0.19451,-0.187131,-0.100137,-0.209983,-0.0963402,-0.334115,-0.264458,-0.29532,-0.44399,0.90375,-0.0152127,-0.880473,-0.321612,-0.0100562,-0.186333,0 +1.60488,1.03651,-0.35697,-0.19451,-0.145963,-0.106417,-0.0714822,-0.109597,-0.567922,-0.575242,-0.729274,-0.361493,0.395366,-1.54235,2.21673,-0.56236,-0.0291225,2.22526,6 +0.905829,-0.0768445,-0.35697,-0.19451,-0.290054,-0.0984572,-0.41004,-0.127041,0.0733504,0.0970669,0.092685,0.0265507,0.155563,0.189163,-0.47649,0.0718691,-0.679673,-0.416157,3 +0.0423012,0.897342,-0.35697,-0.19451,0.101051,-0.0334076,0.0824075,-0.0665527,-0.347697,-0.340568,-0.51485,-0.150666,0.347406,-1.40042,2.02436,-0.38374,-0.621697,2.3467,6 +-0.190714,1.94111,-0.35697,-0.19451,-0.104794,-0.0981552,0.0824076,-0.096781,-0.561131,-0.600613,-0.650141,-0.41038,0.0980101,-1.05412,1.68771,-0.603779,-0.169933,2.61022,6 +1.15255,2.18466,-0.35697,-0.19451,0.203973,-0.0741226,0.128575,-0.0754323,-0.746431,-0.708436,-0.841591,-0.660928,0.95171,-1.24714,1.15868,-0.816051,-0.516278,2.12272,6 +-0.341489,-0.216014,-0.35697,-0.19451,-0.104794,-0.107075,-0.225372,-0.126254,-0.448593,-0.372281,-0.443375,-0.523432,1.05722,-0.33313,-0.495727,-0.471756,-0.154141,-0.141421,0 +-0.368903,-0.337787,-0.35697,-0.19451,0.121635,-0.0463736,-0.25615,-0.117689,-0.480608,-0.388138,-0.481665,-0.563153,1.22988,-0.401255,-0.553439,-0.510586,-0.0739509,-0.0541918,0 +0.892122,-0.320391,-0.35697,-0.19451,-0.00187116,-0.0761046,-0.0714824,-0.111643,0.227605,0.239774,0.27903,0.151825,-0.0746484,0.529789,-0.822761,0.260843,-0.57335,-0.409739,3 +1.41298,-0.163825,-0.35697,-0.19451,-0.557652,-0.125904,-0.440818,-0.138093,-0.816282,-0.736977,-0.844144,-0.850366,1.38336,-0.855423,0.0621548,-0.87818,0.615688,0.136579,0 +-1.5751,1.26266,-0.35697,-0.19451,-0.248885,-0.103961,-0.394651,-0.125833,-0.568892,-0.534016,-0.752248,-0.37677,0.779052,-1.68996,2.08207,-0.575303,0.0599512,2.03973,6 +-1.19131,-0.302995,-0.35697,-0.19451,0.121635,-0.0711495,-0.0868711,-0.0867679,-0.446653,-0.365939,-0.43827,-0.529543,1.09559,-0.310422,-0.572676,-0.466578,-0.0820738,-0.126007,0 +1.41298,1.17568,-0.35697,-0.19451,-0.166547,-0.113469,-0.0253154,-0.119894,0.3188,0.319056,0.376031,0.246544,-0.256899,0.643331,-0.83238,0.359214,-0.601423,-0.438493,5 +-0.341489,-0.216014,-0.35697,-0.19451,0.677416,0.339883,0.467133,0.191333,-0.842476,-0.873342,-0.805854,-0.847311,0.404958,-0.446672,0.350714,-0.839349,1.91745,-0.552357,2 +1.33074,-1.48594,2.41015,-0.19451,-0.495898,-0.118307,-0.0868713,-0.128464,2.00202,1.93006,2.00463,2.04621,-2.28084,1.65953,-0.524583,2.0108,-0.837165,-0.651706,1 +0.330144,1.01912,2.41015,-0.19451,0.450987,-0.0557577,1.26736,-0.0441189,0.0733504,0.125608,0.0722636,0.0234953,0.414551,0.0529125,-0.505346,0.0511596,-0.784475,-0.327036,5 +0.357557,0.253683,-0.35697,-0.19451,-0.537067,-0.125656,-0.548541,-0.138912,-0.827924,-0.736977,-0.86967,-0.856477,1.49846,-0.957611,0.119867,-0.888535,0.615688,0.31215,0 +1.67341,0.619003,-0.35697,-0.19451,0.245142,-0.0146605,3.68343,2.7326,-0.0333666,-0.0678391,0.0186577,-0.0620576,-0.285675,0.319736,-0.255261,0.00715191,-0.60302,-0.767764,5 +0.426091,1.00172,-0.35697,-0.19451,-0.516483,-0.119513,-0.25615,-0.131576,-0.664938,-0.679894,-0.790538,-0.492877,0.404958,-1.38339,1.93779,-0.673673,0.0835953,2.30988,6 +-0.231835,0.253683,-0.35697,-0.19451,-0.598821,-0.125904,-0.533152,-0.138093,-0.887103,-0.895541,-0.862012,-0.899254,0.644762,-0.560214,0.302621,-0.896301,1.63248,-0.46911,4 +0.234196,-1.57292,-0.35697,-0.19451,-0.516483,-0.113403,-0.533152,-0.134227,1.92635,1.82541,1.94082,1.9851,-2.48227,1.67656,-0.351447,1.94608,-0.784534,-0.676307,1 +-0.80752,-0.389976,2.41015,-0.19451,-0.434145,-0.119958,-0.0560932,-0.129088,-0.471877,-0.375452,-0.474007,-0.557042,1.25866,-0.401255,-0.582295,-0.50282,-0.0728241,-0.0612777,0 +0.878415,0.0101365,-0.35697,-0.19451,-0.228301,-0.106083,-0.317706,-0.117185,0.0403652,0.0875532,0.0467369,-0.0131702,0.395366,0.075621,-0.524583,0.0252727,-0.680739,-0.352419,3 +0.933243,0.323268,2.41015,-0.19451,-0.557652,-0.125904,-0.194594,-0.137589,-0.844416,-0.74332,-0.895197,-0.871755,1.60398,-1.03141,0.139104,-0.893712,0.960412,0.445065,0 +0.247903,-0.163825,-0.35697,-0.19451,-0.145963,-0.109254,-0.56393,-0.133545,-0.258443,-0.280314,-0.223846,-0.27594,0.0116809,0.01885,-0.0436503,-0.249128,-0.416124,-0.539382,4 +-0.889761,1.00172,2.41015,-0.19451,-0.0842092,-0.10055,0.0670187,-0.104653,-0.456354,-0.448392,-0.604193,-0.282051,0.443327,-1.36068,1.86084,-0.495054,-0.618468,2.29855,6 +-1.3695,1.31485,-0.35697,-0.19451,-0.290054,-0.113764,-0.379262,-0.132299,-0.511653,-0.562557,-0.604193,-0.346215,-0.045872,-1.03709,1.80313,-0.549416,-0.148443,2.62274,6 +1.68712,1.33225,-0.35697,-0.19451,-0.187132,-0.106067,-0.179205,-0.120321,0.237307,0.242946,0.284135,0.173213,-0.141793,0.50708,-0.716956,0.266021,-0.614212,-0.436876,5 +-1.42433,-0.581334,-0.35697,-0.19451,-0.454729,-0.126317,-0.456207,-0.130599,2.00202,2.08545,1.93826,1.97593,-0.870796,1.21672,-1.18827,1.94349,-1.08272,-0.475572,1 +-0.272955,-0.216014,-0.35697,-0.19451,-0.557652,-0.118619,-0.379262,-0.132638,0.605966,0.582271,0.705325,0.503202,-0.70773,1.15995,-1.2556,0.693155,-0.557266,-0.449807,3 +-1.19131,1.33225,-0.35697,-0.19451,0.574494,-0.0799091,0.282465,-0.119683,0.495368,0.461763,0.598113,0.399317,-0.70773,1.09182,-1.14018,0.58443,-0.512754,-0.464177,5 +0.151956,-1.36416,-0.35697,-0.19451,-0.248885,-0.0928705,-0.10226,-0.114219,0.419696,0.436393,0.450058,0.362651,-0.189754,0.54682,-0.736193,0.434286,-0.733766,-0.44198,3 +-0.341489,0.549418,-0.35697,-0.19451,-0.516483,-0.117063,-0.440818,-0.134227,-0.359339,-0.365939,-0.540376,-0.132333,0.2323,-1.50261,2.31292,-0.368208,-0.47656,2.28578,6 +-0.135887,1.03651,-0.35697,-0.19451,-0.41356,-0.118719,-0.117649,-0.115233,-0.496131,-0.537187,-0.616956,-0.306494,0.0308651,-1.21308,2.02436,-0.515763,-0.151237,2.48884,6 +0.110835,0.0275327,-0.35697,-0.19451,-0.166547,-0.0642122,-0.0868711,-0.117752,0.765071,0.807432,0.802327,0.671253,-0.237715,0.876092,-1.24598,0.791525,-0.731688,-0.388462,3 +-1.68475,2.11508,-0.35697,-0.19451,-0.00187135,-0.0790778,0.20552,-0.0844378,-0.8027,-0.759176,-0.877328,-0.746481,1.04763,-1.15631,0.908596,-0.883357,-1.033,2.01868,6 +-0.780106,-0.755296,-0.35697,-0.19451,-0.269469,-0.123592,-0.194594,-0.11114,1.93896,1.99983,1.91018,1.89344,-1.02427,1.39838,-1.34217,1.91502,-1.00233,-0.476143,1 +0.522039,-0.96405,-0.35697,-0.19451,-0.0224555,-0.0780042,-0.240761,-0.123798,0.516711,0.547387,0.552165,0.439038,-0.141793,0.660362,-0.97666,0.537833,-0.708863,-0.40212,3 +-1.09536,0.0449289,-0.35697,-0.19451,1.8919,-0.0410112,0.0362408,-0.109614,-0.703744,-0.797231,-0.619509,-0.70676,-0.276083,-0.0152127,0.302621,-0.650375,1.35578,-0.70337,2 +0.741348,-0.389976,-0.35697,-0.19451,-0.537066,-0.118719,-0.502374,-0.134566,2.56374,2.67214,2.36711,2.66647,-1.10101,0.790935,-0.236023,2.37839,-1.25175,-0.625002,1 +0.700227,0.149306,-0.35697,-0.19451,-0.516483,-0.124583,-0.41004,-0.134567,-0.820162,-0.724292,-0.872223,-0.8412,1.53683,-1.02006,0.187197,-0.875591,0.451534,0.41213,0 +-0.643038,-0.424768,-0.35697,-0.19451,-0.104794,0.0514912,0.174742,0.111039,-0.861879,-0.905055,-0.808406,-0.87481,0.309037,-0.350161,0.283384,-0.841938,2.11996,-0.577723,2 +-1.58881,-0.755296,-0.35697,-0.19451,0.389233,0.179335,3.94504,1.07577,-0.351577,-0.442049,-0.287662,-0.337049,-0.535071,0.138069,0.302621,-0.313846,0.382642,-0.691511,2 +-1.39691,-1.1902,-0.35697,-0.19451,0.121635,-0.0453826,-0.179205,-0.126821,-0.356428,-0.31837,-0.300426,-0.456212,0.63517,0.081298,-0.774668,-0.326789,0.0358165,-0.264193,0 +1.08402,-1.71209,-0.35697,-0.19451,-0.475314,-0.119958,-0.440818,-0.132048,1.71388,1.57488,1.87189,1.63983,-2.65493,2.46,-1.50569,1.87619,-0.557621,-0.576257,1 +-0.012526,1.17568,-0.35697,-0.19451,0.595078,-0.0662417,0.236298,-0.0925594,0.594324,0.572758,0.702772,0.478759,-0.678953,1.21104,-1.37102,0.690566,-0.496178,-0.435234,5 +1.02919,-1.60771,-0.35697,-0.19451,0.0804665,-0.100032,0.728745,-0.0946285,-0.675609,-0.698922,-0.634825,-0.694538,0.337813,-0.282036,0.139104,-0.665907,0.324344,-0.523545,4 +-1.62993,1.62798,-0.35697,-0.19451,0.0804665,-0.0136694,0.420965,0.072498,-0.589265,-0.610126,-0.708852,-0.419546,0.289853,-1.28121,1.88008,-0.611545,-0.138203,2.41162,6 +-0.643038,-0.268203,-0.35697,-0.19451,-0.392976,-0.117646,-0.225372,-0.120208,-0.522325,-0.39448,-0.558245,-0.596763,1.58479,-0.668079,-0.457252,-0.585658,-0.210476,0.125138,0 +-0.615625,-0.703107,2.41015,-0.19451,-0.0842092,-0.0876667,-0.25615,-0.130536,0.324621,0.366625,0.332636,0.270988,0.117194,0.319736,-0.659244,0.315206,-0.776201,-0.395201,3 +1.38557,1.90632,-0.35697,-0.19451,0.32748,-0.0979074,-0.179205,-0.121531,-0.663967,-0.698922,-0.762458,-0.505099,0.222708,-1.20173,1.81275,-0.684028,0.206085,2.48458,6 +-1.46545,-0.998843,-0.35697,-0.19451,2.50943,0.0753762,2.35998,-0.0502391,0.0743206,-0.0139274,0.123317,0.0998819,-0.861204,0.387861,0.206435,0.102933,-0.336054,-0.690939,2 +1.09772,1.15829,-0.35697,-0.19451,-0.228301,-0.105051,-0.225372,-0.121063,0.325591,0.341255,0.378584,0.243488,-0.122609,0.620622,-0.928567,0.361802,-0.596141,-0.40425,5 +-0.50597,1.52361,5.17726,-0.19451,-0.187131,-0.10769,0.00546275,-0.115423,-0.687251,-0.683066,-0.839038,-0.502044,0.596801,-1.57641,2.07245,-0.681439,0.426767,2.13787,6 +0.220489,-1.06843,-0.35697,-0.19451,-0.00187127,-0.0800688,0.267076,-0.03179,-0.253592,-0.258115,-0.149818,-0.370659,0.165155,0.484372,-0.986278,-0.174056,0.102546,-0.340063,0 +0.60428,-0.37258,-0.35697,-0.19451,-0.331223,-0.11938,-0.425429,-0.135133,0.554547,0.588614,0.58535,0.478759,-0.141793,0.660362,-0.97666,0.571486,-0.732046,-0.402946,3 +0.138249,1.0713,2.41015,-0.19451,0.121635,-0.0646491,-0.0407038,-0.118244,0.285814,0.322227,0.302004,0.228211,0.0980101,0.342444,-0.678481,0.284142,-0.734548,-0.400691,5 +-1.65734,1.47142,2.41015,-0.19451,0.162804,-0.0879776,0.00546275,-0.111345,-0.583445,-0.591099,-0.734379,-0.388992,0.404958,-1.48558,2.11093,-0.585658,0.0109701,2.24904,6 +1.55005,-1.12062,-0.35697,-0.19451,-0.392976,-0.117063,-0.379262,-0.128602,2.21739,2.18059,2.17821,2.27537,-2.13696,1.55734,-0.495727,2.18683,-0.931583,-0.647962,1 +0.330144,-1.03363,-0.35697,-0.19451,-0.145963,-0.101789,-0.286928,-0.132299,-0.339936,-0.289828,-0.282557,-0.453156,0.731091,0.104006,-0.909329,-0.308668,0.0852419,-0.234252,0 +1.48151,0.532022,-0.35697,-0.19451,0.677416,0.131765,-0.486985,-0.130347,-0.106128,-0.22006,0.054395,-0.187331,-0.947533,0.983956,-0.716956,0.0330389,0.139688,-0.543411,3 +0.549452,-0.424768,-0.35697,-0.19451,-0.372391,-0.116737,-0.456207,-0.13211,1.47619,1.31801,1.69576,1.34956,-2.63575,2.67573,-1.89043,1.69757,-0.422564,-0.546716,1 +1.34445,1.15829,-0.35697,-0.19451,0.0392974,-0.104279,-0.10226,-0.115229,0.25768,0.261973,0.312214,0.185435,-0.17057,0.575205,-0.803524,0.294497,-0.589842,-0.428539,5 +-1.19131,-0.355184,-0.35697,-0.19451,-0.372391,-0.103854,-0.133038,-0.11643,0.553577,0.585443,0.582797,0.481814,-0.160978,0.649008,-0.938185,0.568898,-0.744073,-0.410715,3 +1.23479,-0.00725971,-0.35697,-0.19451,-0.578236,-0.124335,-0.486985,-0.139416,-0.934641,-0.936767,-0.928382,-0.929808,0.740683,-0.72485,0.485376,-0.963607,2.51022,-0.522196,2 +-0.917174,0.0101365,2.41015,-0.19451,-0.290054,-0.101872,-0.517763,-0.13211,-0.940462,-0.933596,-0.951356,-0.923697,0.827012,-0.844069,0.600799,-0.986905,2.4407,-0.52959,2 +-1.23243,0.149306,-0.35697,-0.19451,-0.516483,-0.125574,-0.610097,-0.1374,-0.829864,-0.733806,-0.874776,-0.859533,1.54642,-0.980319,0.110248,-0.885946,0.728665,0.358831,0 +0.878415,1.1061,-0.35697,-0.19451,-0.248885,-0.104927,0.174742,-0.0995498,0.300367,0.322227,0.360715,0.203767,-0.045872,0.649008,-1.05361,0.343682,-0.530589,-0.378283,5 +1.00178,1.0713,-0.35697,-0.19451,-0.207715,-0.0998975,0.0208518,-0.112003,0.344994,0.360282,0.3939,0.267932,-0.141793,0.609268,-0.890092,0.377334,-0.619066,-0.416918,5 +0.30273,1.01912,-0.35697,-0.19451,0.14222,-0.089287,0.143964,-0.113009,0.171336,0.214404,0.192239,0.102937,0.251484,0.279996,-0.726575,0.172828,-0.649222,-0.359967,5 +-0.46485,-1.81646,-0.35697,-0.19451,-0.331222,-0.110359,-0.271539,-0.126919,2.34739,2.35818,2.25735,2.41898,-1.81083,1.32458,-0.428397,2.26708,-1.03967,-0.640597,1 +0.412385,-1.67729,-0.35697,-0.19451,-0.310638,-0.12194,-0.271539,-0.135889,2.63165,2.84656,2.3518,2.73063,-0.189754,0.291351,-0.303354,2.36286,-1.43849,-0.507216,1 +-1.13648,-1.05103,2.41015,-0.19451,-0.145962,-0.10278,-0.133038,-0.0982925,-0.384563,-0.356425,-0.33361,-0.468434,0.568025,0.0245271,-0.611151,-0.360442,-0.0185785,-0.291839,0 +-0.917174,1.62798,-0.35697,-0.19451,-0.187131,-0.103609,-0.209983,-0.117218,-0.658146,-0.657696,-0.808406,-0.471489,0.539248,-1.54235,2.07245,-0.655553,0.261511,2.18046,6 +-0.012526,-1.6425,-0.35697,-0.19451,-0.331222,-0.111452,-0.379263,-0.124742,2.39396,2.46601,2.26756,2.44953,-1.29285,1.12021,-0.601532,2.27743,-1.1444,-0.587724,1 +0.878415,0.35806,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +1.19367,0.49723,-0.35697,-0.19451,1.15086,0.0431499,-0.00992631,-0.0846897,-0.274935,-0.356425,-0.149818,-0.34316,-0.515887,0.609268,-0.514964,-0.174056,0.160035,-0.519521,3 +1.31703,-1.27718,-0.35697,-0.19451,-0.537067,-0.11517,-0.271539,-0.128464,2.22709,2.19962,2.19608,2.2662,-2.06022,1.61979,-0.678481,2.20495,-0.933314,-0.623024,1 +1.39927,1.26266,-0.35697,-0.19451,0.265727,-0.074663,0.313243,-0.111345,0.265441,0.265144,0.322425,0.194601,-0.21853,0.597914,-0.793905,0.304851,-0.58878,-0.43783,5 +0.480919,-0.23341,-0.35697,-0.19451,-0.392976,-0.111895,-0.548541,-0.135544,-0.142024,-0.159806,-0.111528,-0.159832,-0.045872,0.086975,-0.101362,-0.135226,-0.523189,-0.533441,4 +0.974363,0.0101365,-0.35697,-0.19451,-0.619405,-0.126647,-0.440818,-0.133559,-0.80755,-0.721121,-0.844144,-0.838144,1.44091,-0.906517,0.0910108,-0.865236,0.504642,0.227402,0 +1.35815,-1.05103,-0.35697,-0.19451,-0.413561,-0.120701,-0.486985,-0.137149,2.17859,2.15839,2.14503,2.21426,-1.95471,1.56302,-0.6881,2.15318,-0.943496,-0.616687,1 +1.38557,0.13191,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.727641,0.253683,-0.35697,-0.19451,-0.660574,-0.12347,-0.656264,-0.137858,-0.934641,-0.908226,-0.943698,-0.938975,0.999671,-0.827037,0.398808,-0.979139,2.51022,-0.253744,4 +1.49522,0.705984,-0.35697,-0.19451,-0.516483,-0.122601,0.159353,-0.00338781,-0.612549,-0.603784,-0.670562,-0.54482,0.577617,-0.889486,0.927834,-0.658141,-0.559517,2.74246,6 +-0.50597,0.984323,-0.35697,-0.19451,-0.145963,-0.106417,0.390187,-0.0910539,0.349845,0.35394,0.416874,0.261821,-0.247307,0.734164,-0.995897,0.400633,-0.551772,-0.417917,5 +0.672814,0.949531,-0.35697,-0.19451,-0.187131,-0.0674331,0.713356,0.0366647,-0.458295,-0.451563,-0.599088,-0.291217,0.433735,-1.31527,1.79351,-0.50282,-0.560342,2.35355,6 +1.71453,1.26266,-0.35697,-0.19451,-0.145963,-0.0938194,-0.0407045,-0.11945,0.280964,0.281001,0.335188,0.212934,-0.228123,0.592237,-0.774668,0.317795,-0.603371,-0.442039,5 +1.22109,-0.772692,-0.35697,-0.19451,-0.2283,-0.108066,-0.302317,-0.131103,-0.843446,-0.879685,-0.803301,-0.847311,0.356998,-0.423964,0.360333,-0.836761,1.59772,-0.599277,2 +1.16626,-1.32937,-0.35697,-0.19451,-0.516483,-0.122601,-0.486985,-0.131859,1.57321,1.41949,1.77489,1.46262,-2.67412,2.63599,-1.78463,1.77782,-0.467768,-0.556721,1 +-0.560798,-1.25979,-0.35697,-0.19451,-0.0430403,-0.0909702,0.0670189,-0.125057,-0.296279,-0.289828,-0.20853,-0.404269,0.299445,0.342444,-0.880473,-0.233596,0.0842039,-0.330113,0 +0.412385,0.253683,-0.35697,-0.19451,0.039298,-0.112443,-0.379263,-0.133055,0.849474,0.886714,0.881459,0.765972,-0.352821,0.910154,-1.18827,0.871774,-0.779185,-0.411657,3 +-0.0536464,-0.00725971,-0.35697,-0.19451,-0.125378,-0.0721405,-0.425429,-0.121531,-0.788147,-0.711607,-0.82117,-0.813701,1.3354,-0.866777,0.129485,-0.854882,0.21071,0.117914,0 +0.768761,-0.146429,-0.35697,-0.19451,-0.619404,-0.126647,-0.271539,-0.119263,2.50747,2.58017,2.32372,2.6298,-1.37918,0.830675,-0.0244131,2.33438,-1.20345,-0.674662,1 +-1.06795,-0.59873,-0.35697,-0.19451,-0.495898,-0.12347,0.328632,-0.0749134,-0.597997,-0.64501,-0.507192,-0.654817,0.0596415,0.115361,-0.255261,-0.536473,0.534064,-0.481717,4 +1.26221,-0.146429,-0.35697,-0.19451,-0.269469,-0.119628,-0.517763,-0.133622,-0.921058,-0.930425,-0.90796,-0.917586,0.663946,-0.668079,0.466138,-0.942897,2.348,-0.552441,2 +-0.382609,-0.00725971,-0.35697,-0.19451,-0.557652,-0.126895,-0.625486,-0.138849,-0.940462,-0.936767,-0.93604,-0.938975,0.798236,-0.741881,0.45652,-0.971373,2.51022,-0.473359,2 +0.124542,-1.2076,-0.35697,-0.19451,-0.475314,-0.112883,-0.333095,-0.123105,2.28724,2.2789,2.23182,2.33648,-1.93552,1.50625,-0.611151,2.24119,-0.981936,-0.624955,1 +0.234196,-0.216014,-0.35697,-0.19451,-0.290054,-0.117153,-0.517763,-0.134318,-0.217696,-0.235917,-0.190661,-0.230108,0.0116809,0.00181866,-0.0147944,-0.215475,-0.487975,-0.543423,4 +-1.56139,-1.27718,2.41015,-0.19451,-0.0430404,-0.104927,-0.363873,-0.124684,1.89142,1.74296,1.97911,1.90871,-2.88514,2.13641,-0.726575,1.98491,-0.644708,-0.653012,1 +1.26221,0.375456,-0.35697,-0.19451,-0.495898,-0.123674,-0.471596,-0.139101,-0.831804,-0.756005,-0.864565,-0.856477,1.36417,-0.90084,0.158341,-0.888535,0.601204,0.190204,0 +-0.725279,1.94111,2.41015,-0.19451,0.348064,-0.0883304,0.790301,-0.0868316,-0.575683,-0.59427,-0.670562,-0.437879,0.299445,-1.10522,1.57228,-0.627077,-0.347827,2.55538,6 +1.67341,-1.27718,-0.35697,-0.19451,-0.537068,-0.121239,-0.456207,-0.134318,2.20381,2.18059,2.17566,2.23565,-2.00267,1.61979,-0.736193,2.18424,-0.934498,-0.61437,1 +1.68712,0.445041,-0.35697,-0.19451,-0.269469,-0.109717,-0.379262,-0.129277,-0.472847,-0.524502,-0.560798,-0.312605,-0.0842406,-0.974642,1.7358,-0.520941,-0.276713,2.65609,6 +0.357557,-0.389976,-0.35697,-0.19451,2.85937,0.0184512,-0.533152,-0.134227,-0.153666,-0.159806,-0.108976,-0.199553,0.0692336,0.172132,-0.361066,-0.132637,-0.436273,-0.45006,3 +0.384971,1.47142,-0.35697,-0.19451,0.203973,-0.0731316,-0.133038,-0.0877125,-0.529116,-0.565729,-0.647588,-0.346215,0.0980101,-1.22443,1.97627,-0.549416,-0.13133,2.4889,6 +-1.10907,-0.772692,-0.35697,-0.19451,-0.537067,-0.119632,-0.456207,-0.133307,1.85164,1.74296,1.89232,1.88733,-2.49187,1.7901,-0.534202,1.8969,-0.739408,-0.656859,1 +1.23479,-0.59873,5.17726,-0.19451,-0.00187127,-0.0919211,-0.0253154,-0.11083,-0.498071,-0.524502,-0.43827,-0.538709,0.165155,-0.00953562,-0.149456,-0.466578,0.0196519,-0.478471,4 +1.38557,-0.581334,-0.35697,-0.19451,-0.41356,-0.113469,-0.56393,-0.135905,-0.782326,-0.790889,-0.736932,-0.819812,0.558433,-0.338807,0.0140616,-0.769455,0.937873,-0.40551,4 +-0.327782,-0.0420521,2.41015,-0.19451,-0.454729,-0.108505,-0.25615,-0.125069,-0.881282,-0.905055,-0.877328,-0.853422,0.50088,-0.696464,0.677749,-0.911833,1.82483,-0.748231,2 +1.38557,0.914738,-0.35697,-0.19451,0.430402,-0.0542676,-0.00992611,-0.0913601,0.520592,0.50299,0.626192,0.405428,-0.583032,1.13156,-1.33255,0.612905,-0.48632,-0.426372,5 +0.467212,0.253683,-0.35697,-0.19451,-0.639989,-0.123592,-0.579319,-0.137904,-0.900685,-0.905055,-0.879881,-0.911475,0.692723,-0.599954,0.321858,-0.914421,1.75183,-0.46263,4 +1.60488,-0.7379,-0.35697,-0.19451,-0.145963,-0.101789,-0.333095,-0.127576,0.0316338,0.049498,0.069711,-0.031503,0.136379,0.279996,-0.611151,0.0485709,-0.552305,-0.402287,3 +-0.396316,1.26266,-0.35697,-0.19451,0.595078,-0.0992009,1.37508,-0.0776281,0.69328,0.661553,0.802327,0.5857,-0.851611,1.2962,-1.34217,0.791525,-0.548847,-0.457858,5 +-1.53398,0.323268,-0.35697,-0.19451,-0.557652,-0.125904,-0.317706,-0.137589,-0.850237,-0.759176,-0.895197,-0.87481,1.51765,-0.99735,0.16796,-0.904067,0.890308,0.37957,0 +-0.50597,-0.911862,2.41015,4.39036,-0.166547,-0.1098,0.574856,-0.0436294,-0.385533,-0.315198,-0.359137,-0.480656,0.95171,-0.140109,-0.716956,-0.386329,-0.0464,-0.177286,0 +0.206783,0.0275327,-0.35697,-0.19451,-0.454729,-0.122353,0.0670187,-0.075936,-0.8677,-0.89237,-0.836486,-0.871755,0.481696,-0.503443,0.369952,-0.870414,1.86723,-0.563854,2 +0.946949,-1.15541,-0.35697,-0.19451,-0.475314,-0.117976,-0.348484,-0.133559,2.5909,2.77045,2.34414,2.6848,-0.477518,0.478695,-0.33221,2.35509,-1.38057,-0.551433,1 +-0.780106,-0.111637,-0.35697,-0.19451,-0.537067,-0.122683,-0.225372,-0.103582,-0.449563,-0.346911,-0.461244,-0.529543,1.29703,-0.446672,-0.54382,-0.489876,-0.1998,-0.0370085,0 +-0.0673532,-0.37258,-0.35697,-0.19451,-0.41356,-0.123674,-0.486985,-0.137149,0.692309,0.683752,0.756378,0.616255,-0.640584,0.995311,-1.04399,0.744928,-0.689912,-0.466013,3 +0.508332,1.97591,2.41015,-0.19451,0.14222,-0.101812,0.0670187,-0.0965623,-0.624191,-0.625983,-0.785432,-0.422602,0.491288,-1.58777,2.1975,-0.614133,0.201187,2.16994,6 +-1.1639,0.323268,-0.35697,-0.19451,-0.598821,-0.124274,-0.610097,-0.137245,-0.938521,-0.933596,-0.933487,-0.938975,0.807828,-0.736204,0.437282,-0.968784,2.51022,-0.448613,4 +0.138249,-0.337787,-0.35697,-0.19451,-0.351807,-0.124913,-0.117649,-0.12808,0.69619,0.724979,0.743615,0.604033,-0.30486,0.887446,-1.19789,0.731985,-0.699376,-0.403582,3 +-0.382609,-1.34677,-0.35697,-0.19451,-0.0842089,-0.0911999,-0.0560936,-0.116214,0.662235,0.582271,0.802327,0.564312,-1.26407,1.47786,-1.23636,0.791525,-0.438766,-0.510832,3 +-0.012526,1.34964,-0.35697,-0.19451,0.0187133,-0.0836084,-0.10226,-0.117953,-0.501951,-0.537187,-0.673115,-0.257607,0.0884179,-1.55371,2.54377,-0.474344,0.0561719,2.29069,6 +1.31703,-0.216014,-0.35697,-0.19451,-0.475314,-0.12194,-0.56393,-0.136078,-0.935611,-0.936767,-0.923276,-0.938975,0.750275,-0.68511,0.408426,-0.958429,2.51022,-0.473359,2 +0.713934,-0.824881,-0.35697,-0.19451,-0.187131,-0.0970552,3.48338,0.0550521,-0.189562,-0.118579,-0.24682,-0.187331,0.798236,-0.537506,0.110248,-0.272426,-0.990898,-0.349909,3 +-0.314075,1.38444,-0.35697,-0.19451,-0.454729,-0.110359,-0.302317,-0.124963,-0.714415,-0.724292,-0.867118,-0.514266,0.491288,-1.6048,2.22635,-0.691794,0.722411,2.16631,6 +-0.876054,-0.546542,-0.35697,-0.19451,-0.2283,-0.103609,-0.517763,-0.129618,-0.518444,-0.5689,-0.422954,-0.57843,-0.0362799,0.211871,-0.322591,-0.451046,0.318873,-0.484648,4 +-0.80752,-1.43375,-0.35697,-0.19451,-0.475314,-0.12,-0.563929,-0.134599,1.90306,1.77784,1.94592,1.95149,-2.68371,1.84688,-0.438015,1.95126,-0.722035,-0.674189,1 +1.08402,0.566815,-0.35697,-0.19451,-0.516483,-0.121089,-0.117649,-0.130687,-0.349637,-0.442049,-0.430612,-0.159832,-0.554255,-0.827037,1.95703,-0.391506,-0.165823,2.73586,6 +-0.903467,-0.633523,-0.35697,4.39036,3.43573,1.76532,2.99093,1.05058,-0.522325,-0.587928,-0.47656,-0.508155,-0.17057,-0.123077,0.37957,-0.505409,0.986162,-0.682814,2 +-0.218128,0.0449289,-0.35697,-0.19451,-0.392976,-0.122601,-0.486985,-0.134126,-0.779416,-0.686237,-0.826275,-0.804534,1.47928,-0.951934,0.129485,-0.844527,0.102561,0.290695,0 +-0.163301,-0.476957,-0.35697,-0.19451,-0.351807,-0.115994,-0.363873,-0.134378,-0.87061,-0.905055,-0.818617,-0.890087,0.395366,-0.367193,0.225672,-0.852293,1.95055,-0.532789,2 +0.892122,-0.320391,-0.35697,-0.19451,-0.00187116,-0.0761046,-0.0714824,-0.111643,0.227605,0.239774,0.27903,0.151825,-0.0746484,0.529789,-0.822761,0.260843,-0.57335,-0.409739,3 +-1.32838,-0.198618,-0.35697,-0.19451,-0.434145,-0.117976,-0.517763,-0.1374,-0.815312,-0.733806,-0.849249,-0.844255,1.40254,-0.895163,0.110248,-0.875591,0.513333,0.197122,0 +1.4541,-0.563938,-0.35697,-0.19451,-0.516483,-0.121089,-0.517763,-0.137245,-0.813371,-0.806745,-0.790538,-0.838144,0.721499,-0.514797,0.148723,-0.823817,0.848664,-0.370154,4 +-1.5751,-0.198618,-0.35697,-0.19451,-0.578236,-0.117906,-0.533152,-0.137067,-0.958895,-0.936767,-0.987093,-0.935919,0.980487,-0.974642,0.66813,-1.02315,1.05021,-0.51058,2 +-0.108474,-1.38156,-0.35697,-0.19451,-0.2283,-0.12194,-0.302317,-0.134881,1.80605,1.71759,1.89742,1.76205,-2.27125,2.09099,-1.26522,1.90207,-0.703004,-0.577661,1 +-0.300369,0.0275327,-0.35697,-0.19451,-0.351807,-0.108851,-0.440818,-0.128418,-0.923969,-0.924082,-0.925829,-0.911475,0.750275,-0.770267,0.552706,-0.961018,2.1765,-0.566003,2 +0.864709,1.01912,-0.35697,-0.19451,-0.104793,-0.110743,0.482521,-0.104013,0.548726,0.544216,0.649166,0.426816,-0.48711,1.12021,-1.4095,0.636203,-0.493243,-0.406833,5 +0.946949,-0.0942407,-0.35697,-0.19451,-0.537067,-0.124665,-0.548541,-0.1374,-0.80658,-0.721121,-0.839038,-0.8412,1.43132,-0.878131,0.0525362,-0.870414,0.512367,0.185526,0 +-1.04054,-0.129033,-0.35697,-0.19451,-0.207716,-0.120371,-0.0868712,-0.117752,-0.891954,-0.911397,-0.877328,-0.880921,0.54884,-0.634016,0.52385,-0.911833,1.96504,-0.614829,2 +-1.61622,-1.31197,-0.35697,-0.19451,-0.475314,-0.124913,-0.302318,-0.134126,2.06217,2.12985,2.02761,2.01566,-1.06264,1.46083,-1.4095,2.0341,-1.00644,-0.470875,1 +-0.355196,0.566815,-0.35697,-0.19451,0.0598821,-0.0684241,0.0208518,-0.0519423,-0.420458,-0.457905,-0.343821,-0.471489,0.00208865,0.166454,-0.284117,-0.370797,0.0193931,-0.483046,3 +-0.643038,-0.946654,-0.35697,-0.19451,-0.145963,-0.101789,-0.225372,-0.115674,-0.333145,-0.308856,-0.267241,-0.431768,0.491288,0.166454,-0.774668,-0.293136,0.0203856,-0.290103,0 +-0.629332,-1.31197,-0.35697,-0.19451,-0.310639,-0.105092,-0.394651,-0.134126,1.85553,1.76833,1.95103,1.80483,-2.30002,2.15912,-1.35179,1.95643,-0.705156,-0.572134,1 +-0.876054,1.36704,-0.35697,-0.19451,0.14222,-0.0854157,-0.148427,-0.123105,0.643802,0.633012,0.730852,0.542924,-0.6214,1.10885,-1.2556,0.719042,-0.584146,-0.440449,5 +-0.396316,-0.755296,2.41015,-0.19451,-0.125378,-0.0344811,0.0208518,-0.107865,-0.289488,-0.251773,-0.223846,-0.401214,0.577617,0.200517,-0.918948,-0.249128,0.0244314,-0.265766,0 +-0.944588,0.288476,-0.35697,-0.19451,-0.351807,-0.116985,-0.594708,-0.139101,-0.825013,-0.832115,-0.798196,-0.8412,0.606393,-0.497766,0.235291,-0.831583,0.930144,-0.45904,4 +-1.1639,-1.15541,-0.35697,-0.19451,-0.26947,-0.111194,-0.286928,-0.126561,2.2659,2.26622,2.17821,2.34564,-1.8396,1.27349,-0.312973,2.18683,-1.0267,-0.655623,1 +1.09772,-0.703107,-0.35697,-0.19451,8.39659,15.2156,1.6367,1.9214,-0.360309,-0.372281,-0.359137,-0.346215,0.184339,-0.287713,0.302621,-0.386329,0.338435,-0.620219,2 +0.837295,1.64538,-0.35697,-0.19451,-0.269469,-0.110708,-0.348484,-0.129025,-0.611579,-0.632325,-0.724168,-0.450101,0.309037,-1.25282,1.81275,-0.637432,-0.111893,2.4238,6 +-0.656745,1.0887,-0.35697,-0.19451,0.0392975,-0.067846,-0.0253153,-0.0797146,-0.05471,-0.0488115,-0.0170797,-0.104834,0.0980101,0.206194,-0.447634,-0.0394445,-0.541004,-0.435986,5 +0.741348,-0.946654,-0.35697,-0.19451,-0.434145,-0.116367,-0.41004,-0.12754,0.0946939,0.23026,0.00844703,0.0662718,1.15315,-0.497766,-0.312973,-0.0135575,-1.08713,-0.100861,3 +-0.327782,1.28006,-0.35697,-0.19451,0.615662,0.0408376,0.697968,-0.0310343,-0.413667,-0.438878,-0.583772,-0.181221,0.107602,-1.47423,2.38987,-0.409627,-0.140191,2.33347,6 +1.63229,0.184098,2.41015,-0.19451,0.0804671,-0.102139,-0.394651,-0.127754,0.200441,0.122437,0.322425,0.127381,-0.870796,0.978279,-0.784287,0.304851,-0.287367,-0.525745,3 +-1.64363,-0.389976,-0.35697,-0.19451,0.162804,-0.0757743,-0.179205,-0.129843,-0.527176,-0.413508,-0.558245,-0.593708,1.46009,-0.639693,-0.380303,-0.580481,-0.21918,0.0982228,0 +-0.752693,-1.38156,-0.35697,4.39036,0.203973,-0.0806137,-0.0253152,-0.103791,2.24068,2.25987,2.12971,2.33037,-1.64776,1.0975,-0.207167,2.13764,-1.07342,-0.66119,1 +0.713934,0.0449289,-0.35697,-0.19451,-0.537067,-0.124665,-0.502374,-0.133055,-0.828894,-0.71795,-0.884986,-0.859533,1.68071,-1.05412,0.100629,-0.873002,0.859022,0.485339,0 +-0.793813,-1.59031,-0.35697,-0.19451,-0.351807,-0.103609,-0.179205,-0.117881,2.33575,2.34867,2.25224,2.39759,-1.78205,1.35864,-0.514964,2.2619,-1.03486,-0.628245,1 +1.35815,0.0101365,-0.35697,-0.19451,0.471571,0.0855167,1.37508,1.05341,0.159694,0.182691,0.194792,0.0937709,0.0788258,0.365153,-0.697719,0.175417,-0.595294,-0.399965,3 +-0.300369,-1.03363,-0.35697,-0.19451,-0.454729,-0.111717,-0.302318,-0.124546,1.87881,1.81272,1.88466,1.91483,-2.12737,1.58005,-0.54382,1.88913,-0.832625,-0.642285,1 +1.22109,0.653796,-0.35697,-0.19451,0.677416,-0.111039,2.51387,0.181572,0.0888729,0.0716969,0.12587,0.0601609,-0.228123,0.319736,-0.312973,0.105522,-0.564308,-0.54101,5 +1.09772,-0.720504,-0.35697,-0.19451,-0.248885,-0.101704,0.0208518,-0.103309,-0.571803,-0.597441,-0.517402,-0.605929,0.2323,-0.106046,-0.053269,-0.546828,0.136913,-0.478747,4 +0.275317,0.688588,-0.35697,-0.19451,0.450987,0.173636,4.49905,0.323079,0.0626787,0.0336416,0.0824744,0.0662718,-0.314452,0.183486,0.00444287,0.0692805,-0.636666,-0.687506,5 +-1.60251,-0.529145,-0.35697,-0.19451,-0.392976,-0.117063,-0.379262,-0.124376,-0.449563,-0.505475,-0.351479,-0.508155,-0.141793,0.285673,-0.341829,-0.378563,0.233686,-0.500421,4 +1.26221,-0.807484,-0.35697,-0.19451,-0.125378,-0.0661943,-0.209983,-0.131103,0.0830519,0.125608,0.092685,0.0296062,0.318629,0.132392,-0.54382,0.0718691,-0.690734,-0.368314,3 +-0.958295,0.375456,-0.35697,-0.19451,1.17144,-0.0609245,-0.394651,-0.133002,-0.269114,-0.24543,-0.249372,-0.312605,0.433735,-0.0890149,-0.284117,-0.275015,-0.488612,-0.37001,3 +1.53634,1.17568,-0.35697,-0.19451,-0.331223,-0.120371,-0.25615,-0.122979,-0.778446,-0.784546,-0.890092,-0.630373,0.577617,-1.38339,1.76466,-0.790164,0.477101,2.25538,6 +-1.20502,1.14089,-0.35697,-0.19451,-0.187131,-0.0941911,0.913414,0.26596,-0.184711,-0.162977,-0.18045,-0.20872,0.347406,-0.123077,-0.139837,-0.205121,-0.708007,-0.444813,5 +-0.684159,1.78455,-0.35697,-0.19451,0.121636,-0.112692,-0.225372,-0.122825,-0.532996,-0.499132,-0.71651,-0.340104,0.740683,-1.66157,2.07245,-0.544239,-0.0969918,2.06119,6 +-1.49286,0.0797212,-0.35697,-0.19451,-0.516483,-0.125574,-0.486985,-0.134881,-0.825013,-0.740149,-0.862012,-0.853422,1.44091,-0.923548,0.119867,-0.885946,0.589616,0.244016,0 +1.13884,2.02809,2.41015,-0.19451,-0.310638,-0.108066,0.00546275,-0.0550281,-0.599937,-0.625983,-0.71651,-0.428713,0.251484,-1.26985,1.89932,-0.619311,-0.0230915,2.43014,6 +1.26221,-0.755296,-0.35697,-0.19451,-0.495898,-0.114292,0.0977967,-0.127927,-0.55531,-0.597441,-0.481665,-0.596763,0.0692336,0.0358812,-0.130218,-0.510586,0.276329,-0.504338,4 +1.26221,-1.36416,2.41015,-0.19451,-0.372392,-0.122683,-0.240761,-0.126065,2.21254,2.2345,2.13992,2.25398,-1.5998,1.33026,-0.649625,2.148,-1.0336,-0.601663,1 +1.34445,-1.06843,-0.35697,-0.19451,-0.578236,-0.12066,-0.548541,-0.131638,-0.801729,-0.81943,-0.752248,-0.835089,0.491288,-0.327453,0.0621548,-0.784987,1.06644,-0.4438,4 +0.960656,0.218891,-0.35697,-0.19451,-0.269469,-0.115663,-0.348484,-0.132048,-0.906506,-0.91774,-0.882434,-0.914531,0.63517,-0.582922,0.350714,-0.91701,2.12108,-0.496619,4 +-0.80752,-1.43375,-0.35697,-0.19451,-0.475314,-0.12,-0.563929,-0.134599,1.90306,1.77784,1.94592,1.95149,-2.68371,1.84688,-0.438015,1.95126,-0.722035,-0.674189,1 +-0.711572,-0.355184,-0.35697,-0.19451,-0.228301,-0.119958,-0.363873,-0.113973,-0.49031,-0.388138,-0.496981,-0.575375,1.3258,-0.446672,-0.572676,-0.526118,-0.0726501,-0.0223361,0 +-0.780106,-0.355184,-0.35697,-0.19451,-0.454729,-0.114425,-0.363873,-0.123798,-0.914267,-0.933596,-0.884986,-0.920642,0.568025,-0.554537,0.369952,-0.919599,2.45615,-0.532291,2 +0.234196,-1.57292,-0.35697,-0.19451,-0.516483,-0.113403,-0.533152,-0.134227,1.92635,1.82541,1.94082,1.9851,-2.48227,1.67656,-0.351447,1.94608,-0.784534,-0.676307,1 +-0.272955,-0.946654,-0.35697,-0.19451,0.224558,-0.0931659,-0.163816,-0.115143,0.589473,0.588614,0.667035,0.490981,-0.48711,1.00099,-1.20751,0.654324,-0.601116,-0.427069,3 +0.617986,0.271079,-0.35697,-0.19451,-0.310638,-0.115994,-0.471596,-0.135322,-0.860909,-0.882856,-0.818617,-0.880921,0.50088,-0.423964,0.216053,-0.852293,1.57366,-0.494837,4 +1.48151,-1.03363,-0.35697,-0.19451,-0.331222,-0.109469,-0.456207,-0.136645,1.46067,1.26727,1.71108,1.33123,-2.9427,2.86875,-1.90967,1.7131,-0.340252,-0.560424,1 +-0.135887,0.253683,-0.35697,-0.19451,-0.578236,-0.125326,-0.579319,-0.137149,-0.950163,-0.936767,-0.961566,-0.938975,0.894157,-0.855423,0.552706,-0.99726,2.51022,-0.473359,2 +1.38557,0.13191,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.247903,1.0887,-0.35697,-0.19451,0.162804,-0.0755983,0.0977966,-0.0972054,0.469174,0.464934,0.544507,0.377929,-0.419965,0.887446,-1.08246,0.530067,-0.572213,-0.430794,5 +0.480919,-0.877069,2.41015,-0.19451,-0.351807,-0.119958,-0.456207,-0.129088,0.57007,0.60447,0.59556,0.500147,-0.151386,0.637654,-0.928567,0.581841,-0.76006,-0.410274,3 +-0.12218,1.05391,-0.35697,-0.19451,0.121636,-0.0800688,2.26764,0.626433,-0.140084,-0.115408,-0.14216,-0.159832,0.337813,-0.128755,-0.1206,-0.158524,-0.771635,-0.551703,5 +-0.834933,-0.163825,-0.35697,-0.19451,1.21261,0.0136208,1.7752,0.00722474,-0.189562,-0.413508,0.069711,-0.282051,-1.87797,1.57437,-0.784287,0.0485709,0.886306,-0.603418,2 +1.0566,1.21047,-0.35697,-0.19451,-0.290053,-0.110578,0.267075,-0.0978457,0.121858,0.144636,0.148844,0.0662718,0.107602,0.279996,-0.582295,0.12882,-0.650461,-0.407744,5 +-1.68475,0.827757,-0.35697,-0.19451,0.0187132,-0.100134,0.344021,-0.0870025,0.228575,0.233432,0.27903,0.160991,-0.141793,0.524112,-0.745812,0.260843,-0.608429,-0.433583,5 +0.165662,-0.546542,-0.35697,-0.19451,2.03599,0.0372511,-0.456207,-0.134318,-0.709565,-0.733806,-0.657799,-0.74037,0.356998,-0.236619,0.0429175,-0.689205,0.795165,-0.474853,4 +0.974363,-0.494353,-0.35697,-0.19451,-0.0636248,-0.102249,-0.302317,-0.118664,-0.770684,-0.74332,-0.767564,-0.792313,0.874973,-0.611308,0.158341,-0.800519,0.375249,-0.250018,4 +-0.547091,-1.1728,-0.35697,-0.19451,-0.207716,-0.118389,-0.317706,-0.108872,-0.277846,-0.2708,-0.188108,-0.388992,0.289853,0.37083,-0.918948,-0.212887,0.0696214,-0.323739,0 +0.398678,1.14089,-0.35697,-0.19451,-0.125378,-0.103961,-0.271539,-0.125537,0.599174,0.588614,0.705325,0.475703,-0.583032,1.19969,-1.44797,0.693155,-0.499328,-0.416129,5 +1.39927,-0.337787,-0.35697,4.39036,-0.516483,-0.115095,0.190131,-0.104385,-0.456354,-0.473762,-0.415296,-0.483711,0.213116,-0.100369,-0.0436503,-0.44328,-0.204115,-0.495254,4 +-0.286662,-0.198618,-0.35697,-0.19451,-0.475314,-0.121713,-0.379262,-0.128059,0.578801,0.55373,0.669588,0.487925,-0.698137,1.08047,-1.13056,0.656913,-0.583473,-0.463049,3 +-0.12218,0.0275327,-0.35697,-0.19451,0.348064,-0.111194,-0.10226,-0.130409,0.625369,0.563244,0.741062,0.539868,-1.07223,1.28484,-1.1017,0.729396,-0.480433,-0.506135,3 +0.796175,-0.790088,-0.35697,-0.19451,-0.310638,-0.119958,-0.456207,-0.118508,2.58023,2.73556,2.36201,2.66341,-0.688545,0.660362,-0.428397,2.37321,-1.32384,-0.558222,1 +-1.09536,-0.981446,-0.35697,-0.19451,-0.454729,-0.12066,-0.379263,-0.129171,0.725295,0.693266,0.832958,0.61931,-0.880388,1.31323,-1.34217,0.822589,-0.563917,-0.461884,3 +0.151956,1.21047,-0.35697,-0.19451,0.183389,-0.0949379,0.0362409,-0.116214,0.619548,0.617155,0.705325,0.512369,-0.525479,1.08047,-1.30369,0.693155,-0.57636,-0.42406,5 +-0.656745,1.0713,-0.35697,-0.19451,0.389234,0.0435628,1.05191,0.405955,-0.11777,-0.102723,-0.10387,-0.14761,0.2323,-0.00385843,-0.226405,-0.12746,-0.685616,-0.467455,5 +-1.53398,-1.88605,2.41015,-0.19451,-0.248885,-0.107549,-0.333095,-0.122733,0.835892,0.756691,0.981013,0.729307,-1.39836,1.65385,-1.39988,0.972733,-0.48175,-0.506315,3 +0.60428,0.236287,-0.35697,-0.19451,-0.145962,-0.116655,1.66747,0.711262,-0.30695,-0.403994,-0.175345,-0.367604,-0.630992,0.626299,-0.428397,-0.199943,0.331461,-0.55013,4 +-0.42373,-1.92084,-0.35697,-0.19451,-0.310639,-0.115994,-0.209984,-0.119012,2.73837,2.91316,2.42838,2.91091,-0.640584,0.177809,0.341096,2.44052,-1.4314,-0.702998,1 +-0.272955,-1.01624,-0.35697,-0.19451,-0.351808,-0.11367,-0.25615,-0.119346,2.25135,2.25036,2.20119,2.28759,-1.8396,1.51193,-0.716956,2.21013,-0.983437,-0.60899,1 +1.49522,0.897342,-0.35697,-0.19451,0.018713,-0.0977947,0.282465,-0.101786,0.542906,0.509332,0.654272,0.435982,-0.746098,1.18833,-1.26522,0.641381,-0.503071,-0.453545,5 +-0.492264,-1.22499,-0.35697,-0.19451,0.0804664,-0.0889881,0.113186,-0.0889721,-0.261353,-0.286657,-0.134502,-0.385936,-0.0170956,0.631976,-1.05361,-0.158524,0.209714,-0.371819,0 +-0.478557,0.184098,-0.35697,-0.19451,-0.495898,-0.11971,-0.379262,-0.133811,-0.900685,-0.908226,-0.874776,-0.914531,0.663946,-0.565891,0.293002,-0.909244,1.96755,-0.458376,4 +-1.38321,-1.01624,-0.35697,-0.19451,-0.248885,-0.0879971,-0.025315,-0.100119,-0.425309,-0.362767,-0.39998,-0.51121,0.913342,-0.179848,-0.611151,-0.427748,-0.0327425,-0.196045,0 +1.22109,-0.685711,-0.35697,-0.19451,-0.619405,-0.121239,-0.548541,-0.134318,-0.520384,-0.565729,-0.443375,-0.563153,0.0116809,0.086975,-0.159074,-0.471756,0.220443,-0.511187,4 +0.275317,-0.37258,-0.35697,-0.19451,-0.372392,-0.113764,0.0516297,-0.114918,-0.36613,-0.305684,-0.331058,-0.462323,0.846197,-0.0663066,-0.736193,-0.357853,-0.0399913,-0.208721,0 +-0.999415,-0.37258,-0.35697,-0.19451,-0.434145,-0.115994,-0.440818,-0.130536,-0.894864,-0.91774,-0.86967,-0.893143,0.520064,-0.565891,0.437282,-0.904067,2.07106,-0.581636,2 +-1.24614,1.26266,-0.35697,-0.19451,-0.187131,-0.0822986,-0.00992631,-0.119452,-0.559191,-0.581585,-0.66801,-0.401214,0.251484,-1.18469,1.75504,-0.596013,-0.270077,2.50733,6 +-0.684159,-0.0246559,-0.35697,-0.19451,-0.434145,-0.12194,-0.440818,-0.133559,-0.92882,-0.936767,-0.913066,-0.929808,0.68313,-0.656725,0.427664,-0.948074,2.51022,-0.51167,2 +-1.3695,1.29745,-0.35697,-0.19451,0.348064,-0.0972997,0.467132,-0.0833046,0.305218,0.284172,0.386242,0.225156,-0.43915,0.790935,-0.89971,0.369568,-0.51355,-0.458036,5 +1.01548,-0.0594483,-0.35697,-0.19451,1.43904,-0.0168955,-0.41004,-0.132638,0.367307,0.439564,0.345399,0.319875,0.356998,0.1551,-0.62077,0.328149,-0.885973,-0.34525,3 +0.522039,0.166702,-0.35697,-0.19451,-0.660574,-0.12347,-0.610097,-0.135544,-0.92979,-0.908226,-0.933487,-0.935919,0.95171,-0.787298,0.37957,-0.968784,2.38855,-0.297454,4 +-0.0536464,-1.1902,-0.35697,-0.19451,-0.145962,-0.0631387,-0.271539,-0.120019,1.72941,1.63196,1.83616,1.6765,-2.29043,2.13073,-1.31331,1.83994,-0.666191,-0.574707,1 +1.57746,0.375456,-0.35697,-0.19451,-0.557652,-0.123922,-0.533152,-0.138093,-0.863819,-0.784546,-0.900302,-0.887032,1.42172,-0.951934,0.187197,-0.924776,1.00155,0.261051,0 +1.38557,0.305872,-0.35697,-0.19451,-0.516483,-0.117646,-0.456207,-0.133622,-0.828894,-0.736977,-0.872223,-0.856477,1.50805,-0.968965,0.129485,-0.888535,0.644656,0.335956,0 +0.768761,-1.67729,-0.35697,-0.19451,-0.434145,-0.116985,-0.533152,-0.135826,2.6462,2.84656,2.3518,2.77646,-0.333636,0.206194,-0.0147944,2.36286,-1.44817,-0.583456,1 +-0.149594,-0.37258,-0.35697,-0.19451,-0.290054,-0.0998895,-0.348484,-0.125246,-0.86479,-0.908226,-0.82117,-0.865644,0.309037,-0.418287,0.398808,-0.854882,2.03375,-0.616833,2 +-0.670452,-0.59873,-0.35697,-0.19451,-0.310638,-0.106067,0.236298,-0.0984573,-0.530086,-0.5689,-0.453586,-0.57843,0.0788258,0.075621,-0.207167,-0.48211,0.202148,-0.484648,4 +0.0971283,-0.563938,-0.35697,4.39036,6.31756,4.07609,8.59252,14.9821,0.150963,0.0875532,0.194792,0.157936,-0.698137,0.416247,-0.00517577,0.175417,-0.122943,-0.636211,2 +0.659107,1.0887,-0.35697,4.39036,0.492156,-0.0801428,0.851857,-0.0805379,0.429397,0.439564,0.498559,0.332097,-0.256899,0.813643,-1.12094,0.483471,-0.563231,-0.404671,5 +1.2485,-1.88605,-0.35697,-0.19451,-0.372391,-0.11971,-0.333094,-0.131355,1.81963,1.65733,1.99697,1.74372,-2.95229,2.67573,-1.57302,2.00303,-0.526286,-0.584698,1 +-0.684159,0.13191,-0.35697,-0.19451,-0.619405,-0.126647,-0.579319,-0.139416,-0.956954,-0.936767,-0.979435,-0.938975,0.961302,-0.934902,0.620037,-1.01538,2.51022,-0.473359,2 +0.590573,-0.929258,-0.35697,-0.19451,-0.392976,-0.113681,-0.56393,-0.138345,0.471114,0.534702,0.475585,0.399317,0.193931,0.416247,-0.89971,0.460173,-0.775543,-0.352712,3 +-0.231835,-0.216014,-0.35697,-0.19451,-0.495898,-0.123674,0.0362407,-0.133622,-0.87061,-0.81943,-0.887539,-0.890087,1.17233,-0.827037,0.225672,-0.922188,1.26458,-0.048108,0 +-0.478557,-0.216014,-0.35697,-0.19451,-0.0842092,-0.094604,-0.302317,-0.12279,-0.482548,-0.372281,-0.504639,-0.557042,1.39295,-0.543183,-0.47649,-0.533884,-0.230307,0.0188339,0 +0.426091,-0.00725971,-0.35697,-0.19451,-0.557652,-0.123922,-0.56393,-0.139101,-0.810461,-0.708436,-0.85946,-0.8412,1.58479,-0.991673,0.0910108,-0.865236,0.56451,0.389073,0 +0.206783,-0.129033,-0.35697,-0.19451,-0.351807,-0.120949,-0.425429,-0.138912,-0.391354,-0.327883,-0.369348,-0.474545,0.894157,-0.174171,-0.601532,-0.396684,-0.124588,-0.198932,0 +-0.834933,-0.859673,-0.35697,-0.19451,-0.207716,-0.114425,-0.286928,-0.124742,-0.416578,-0.337397,-0.397427,-0.51121,1.05722,-0.213911,-0.697719,-0.425159,-0.0336797,-0.123816,0 +-0.355196,1.05391,-0.35697,-0.19451,-0.022456,-0.0542192,1.52897,0.93703,-0.144934,-0.14395,-0.124292,-0.168999,0.126786,0.01885,-0.159074,-0.148169,-0.641425,-0.530777,5 +0.659107,1.66277,-0.35697,-0.19451,0.32748,-0.0493467,0.113186,-0.0277595,-0.824043,-0.81943,-0.915618,-0.709815,0.711907,-1.28688,1.46648,-0.85747,0.588502,2.27217,6 +1.37186,-1.76427,-0.35697,-0.19451,-0.392976,-0.12161,-0.471596,-0.138345,2.64329,2.85924,2.36201,2.74285,-0.189754,0.291351,-0.303354,2.37321,-1.45289,-0.514715,1 +-1.25984,0.445041,-0.35697,-0.19451,-0.495898,-0.121692,-0.471596,-0.137589,-0.827924,-0.81943,-0.816064,-0.8412,0.750275,-0.599954,0.264147,-0.849704,0.663336,-0.403023,0 +0.878415,-1.06843,-0.35697,-0.19451,-0.557652,-0.121713,-0.548541,-0.134318,-0.770684,-0.79406,-0.713958,-0.80759,0.414551,-0.253651,0.0140616,-0.746157,0.915622,-0.455601,4 +1.37186,0.340664,-0.35697,-0.19451,-0.537067,-0.122683,-0.548541,-0.1374,-0.827924,-0.74332,-0.85946,-0.862588,1.44091,-0.889486,0.0621548,-0.888535,0.766324,0.203629,0 +-1.38321,1.12349,-0.35697,-0.19451,-0.0636243,-0.100137,1.15964,0.515344,-0.168218,-0.156635,-0.14216,-0.20872,0.241892,0.0358812,-0.303354,-0.16629,-0.596109,-0.437008,5 +-0.780106,0.845154,-0.35697,-0.19451,-0.310638,-0.103609,-0.0253151,-0.111271,-0.1818,-0.235917,-0.3234,0.0418281,-0.343228,-1.09386,2.1975,-0.220653,-0.501943,2.57594,6 +0.864709,-0.877069,-0.35697,-0.19451,-0.310638,-0.106594,-0.040704,-0.106275,0.0820818,0.0812107,0.128422,0.0265507,-0.0746484,0.376507,-0.563058,0.108111,-0.568514,-0.447842,3 +-0.930881,-0.0942407,-0.35697,-0.19451,0.348065,-0.00466748,-0.333095,-0.125309,-0.462175,-0.492789,-0.405085,-0.495933,0.0980101,0.00181866,-0.101362,-0.432925,-0.0358315,-0.507516,4 +-0.684159,-0.355184,2.41015,-0.19451,-0.187131,-0.0932,-0.148427,-0.121531,-0.473817,-0.359596,-0.491876,-0.557042,1.42172,-0.50912,-0.563058,-0.520941,-0.168664,0.018617,0 +0.0011808,-1.34677,2.41015,-0.19451,-0.475314,-0.11367,-0.0714818,-0.126879,2.2921,2.28207,2.22416,2.35787,-1.95471,1.42677,-0.457252,2.23342,-0.993254,-0.643738,1 +1.30333,-0.0594483,-0.35697,-0.19451,-0.557652,-0.125904,-0.56393,-0.139101,-0.944342,-0.936767,-0.94625,-0.938975,0.836605,-0.787298,0.494994,-0.981727,2.51022,-0.473359,2 +0.60428,1.15829,-0.35697,-0.19451,0.450987,-0.0869607,0.128575,-0.104565,0.406114,0.401509,0.478138,0.319875,-0.372005,0.813643,-1.00552,0.462761,-0.568677,-0.434813,5 +-1.46545,0.375456,-0.35697,-0.19451,-0.557652,-0.126895,-0.502374,-0.133811,-0.8677,-0.778204,-0.923276,-0.877865,1.51765,-1.08251,0.31224,-0.922188,0.76053,0.512482,0 +1.30333,0.0101365,-0.35697,-0.19451,-0.619405,-0.126647,-0.548541,-0.138912,-0.947253,-0.936767,-0.959014,-0.932864,0.865381,-0.855423,0.581562,-0.994671,2.51022,-0.516951,2 +1.44039,0.0101365,-0.35697,-0.19451,-0.598821,-0.124913,-0.594708,-0.137589,-0.953074,-0.936767,-0.969224,-0.938975,0.922934,-0.889486,0.581562,-1.00503,2.51022,-0.473359,2 +0.563159,-1.1902,-0.35697,-0.19451,-0.187132,-0.109056,-0.348484,-0.128269,2.28045,2.31379,2.18587,2.33648,-1.55184,1.23943,-0.54382,2.19459,-1.06991,-0.6117,1 +1.53634,-0.563938,-0.35697,-0.19451,-0.475314,-0.126895,-0.502374,-0.136834,-0.652326,-0.721121,-0.540376,-0.712871,-0.0938327,0.211871,-0.264879,-0.570126,0.909164,-0.507769,4 +-0.793813,0.218891,-0.35697,-0.19451,1.78898,-0.0446183,0.0670187,-0.0858075,-0.564041,-0.679894,-0.433164,-0.602874,-0.592624,0.41057,-0.101362,-0.461401,1.02457,-0.611268,2 +0.220489,-0.59873,-0.35697,-0.19451,-0.2283,-0.094191,-0.209983,-0.0774475,-0.344786,-0.277143,-0.315742,-0.440935,0.894157,-0.0890149,-0.745812,-0.342321,-0.0957961,-0.194852,0 +1.67341,0.879946,2.41015,-0.19451,0.450987,-0.0675371,0.20552,-0.113891,0.501189,0.474448,0.613429,0.387095,-0.650177,1.15995,-1.31331,0.599962,-0.454963,-0.436445,5 +1.42669,1.24527,-0.35697,-0.19451,0.842091,-0.0765145,0.467133,-0.101954,0.279023,0.274658,0.337741,0.209878,-0.266491,0.620622,-0.784287,0.320383,-0.598376,-0.446381,5 +-0.218128,-0.407372,-0.35697,-0.19451,-0.351807,-0.116367,-0.548541,-0.133307,0.526413,0.534702,0.58535,0.442093,-0.352821,0.824998,-1.04399,0.571486,-0.647937,-0.427845,3 +1.09772,-0.302995,-0.35697,-0.19451,-0.41356,-0.117153,-0.56393,-0.137858,-0.512623,-0.534016,-0.463796,-0.54482,0.222708,-0.094692,-0.0628877,-0.492465,-0.0459552,-0.488421,4 +1.44039,0.0101365,-0.35697,-0.19451,-0.598821,-0.124913,-0.594708,-0.137589,-0.953074,-0.936767,-0.969224,-0.938975,0.922934,-0.889486,0.581562,-1.00503,2.51022,-0.473359,2 +-0.286662,0.0971174,-0.35697,-0.19451,6.44106,0.517278,-0.363873,-0.121531,0.0219323,0.00827135,0.0748163,-0.0284476,-0.141793,0.37083,-0.486108,0.0537483,-0.465511,-0.475561,3 +-0.670452,2.18466,2.41015,-0.19451,0.0598821,-0.0813076,-0.0253152,-0.0464633,-0.62031,-0.587928,-0.713958,-0.532598,0.798236,-1.1336,1.12021,-0.702149,-0.979566,2.54076,6 +0.535746,0.949531,5.17726,-0.19451,-0.187131,-0.108066,0.0208518,-0.115422,-0.346727,-0.359596,-0.530166,-0.110945,0.165155,-1.50829,2.38987,-0.350087,-0.427843,2.29931,6 +-0.0262328,1.0887,-0.35697,-0.19451,0.636247,-0.0597694,1.94448,-0.00529783,0.38574,0.391995,0.447506,0.301542,-0.256899,0.728487,-0.97666,0.431697,-0.598948,-0.4214,5 +-0.876054,-0.337787,5.17726,-0.19451,-0.187131,-0.111039,-0.271539,-0.127576,0.531264,0.569586,0.552165,0.463482,-0.0842406,0.575205,-0.890092,0.537833,-0.765148,-0.402712,3 +0.343851,0.35806,-0.35697,-0.19451,-0.495898,-0.125656,-0.502374,-0.137589,-0.904566,-0.933596,-0.864565,-0.914531,0.472103,-0.475057,0.331477,-0.898889,2.44939,-0.549567,2 +-0.478557,-1.52073,-0.35697,-0.19451,-0.351808,-0.12,-0.363874,-0.119372,0.767981,0.67741,0.932512,0.649865,-1.44632,1.72766,-1.47683,0.923548,-0.412063,-0.501952,3 +-0.300369,1.61059,-0.35697,-0.19451,-0.145963,-0.114672,-0.440818,-0.119956,-0.785237,-0.790889,-0.900302,-0.633429,0.587209,-1.41178,1.80313,-0.792753,0.728093,2.22747,6 +-0.985708,0.184098,-0.35697,-0.19451,0.101051,-0.120619,-0.594708,-0.139857,-0.788147,-0.803574,-0.757353,-0.801479,0.50088,-0.440995,0.244909,-0.790164,0.702297,-0.501873,4 +0.439798,-0.668315,-0.35697,-0.19451,-0.248885,-0.09963,-0.610097,-0.137245,-0.474787,-0.521331,-0.397427,-0.517321,-0.0362799,0.126715,-0.178312,-0.425159,0.140737,-0.516403,4 +0.631693,-0.59873,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +0.755054,0.323268,-0.35697,-0.19451,-0.639989,-0.121089,-0.640875,-0.137245,-0.967626,-0.936767,-1.00751,-0.938975,1.06682,-1.0598,0.725842,-1.04386,-0.896462,-0.473359,4 +-0.615625,-0.633523,-0.35697,4.39036,8.33483,12.6495,11.7165,23.4322,0.796116,0.740835,0.799774,0.836248,-1.14897,0.677393,0.00444287,0.788936,-0.528282,-0.685437,2 +0.426091,0.532022,-0.35697,-0.19451,-0.598821,-0.12,-0.456207,-0.130916,-0.924939,-0.908226,-0.933487,-0.920642,0.90375,-0.815683,0.475757,-0.968784,1.80455,-0.40464,4 +-0.725279,-1.59031,2.41015,4.39036,0.759754,-0.0670309,-0.0407042,-0.106656,0.50604,0.449078,0.656824,0.374873,-0.928349,1.42109,-1.47683,0.64397,-0.36128,-0.451494,3 +0.234196,-0.424768,-0.35697,-0.19451,-0.41356,-0.117153,-0.194594,-0.117382,0.388651,0.544216,0.271372,0.374873,1.09559,-0.463703,-0.312973,0.253077,-1.22764,-0.132377,3 +1.52263,2.02809,-0.35697,-0.19451,0.245142,-0.0900948,0.267076,-0.0984573,-0.381652,-0.378624,-0.560798,-0.165943,0.337813,-1.50829,2.21673,-0.396684,-0.4271,2.26793,6 +1.46781,0.0449289,-0.35697,4.39036,0.183389,0.137711,-0.333095,-0.0331125,-0.93076,-0.924082,-0.933487,-0.923697,0.81742,-0.781621,0.504613,-0.968784,2.36048,-0.481712,2 +-0.368903,0.0449289,-0.35697,-0.19451,-0.310638,-0.111425,-0.41004,-0.131829,-0.897775,-0.920911,-0.895197,-0.868699,0.520064,-0.719173,0.696986,-0.929954,2.11162,-0.759458,2 +-1.06795,1.48881,-0.35697,-0.19451,-0.0636247,-0.0985532,-0.286928,-0.124376,-0.665908,-0.664038,-0.803301,-0.495933,0.558433,-1.46287,1.91855,-0.676262,0.163951,2.2156,6 +1.60488,0.705984,2.41015,-0.19451,-0.557652,-0.1154,0.220909,-0.122368,-0.451503,-0.505475,-0.583772,-0.236219,-0.122609,-1.25282,2.24559,-0.456223,-0.0760531,2.4737,6 +-1.52027,0.201495,-0.35697,-0.19451,-0.598821,-0.125904,-0.594708,-0.139101,-0.894864,-0.889198,-0.877328,-0.911475,0.779052,-0.616985,0.264147,-0.911833,1.77558,-0.38545,4 +-1.52027,-0.581334,2.41015,-0.19451,0.389233,-0.0730099,0.251687,-0.0855717,-0.839565,-0.863828,-0.846696,-0.798423,0.462511,-0.736204,0.783554,-0.880768,1.30698,-0.826029,2 +0.60428,0.13191,-0.35697,-0.19451,0.183389,-0.0856802,1.88292,-0.104206,-0.0353069,-0.0614966,0.0365264,-0.0956677,-0.208938,0.450309,-0.553439,0.0149181,-0.386643,-0.469988,3 +0.672814,-0.842277,-0.35697,-0.19451,-0.145963,-0.111194,-0.00992631,-0.121747,0.106336,0.214404,0.0339737,0.08766,0.894157,-0.395578,-0.226405,0.0123294,-1.07381,-0.232558,3 +0.782468,1.0887,2.41015,-0.19451,0.656831,-0.0817313,-0.179205,-0.119066,0.298426,0.312713,0.360715,0.206823,-0.113017,0.660362,-1.00552,0.343682,-0.535988,-0.394839,5 +-0.958295,-0.268203,-0.35697,-0.19451,1.66547,0.374569,0.267076,0.0316897,-0.74352,-0.790889,-0.690984,-0.752592,0.174747,-0.259328,0.264147,-0.722858,1.22023,-0.590588,2 +0.426091,-1.59031,-0.35697,-0.19451,-0.413562,-0.123674,0.0516293,-0.122475,2.59963,2.76728,2.34669,2.7123,-0.592624,0.444632,-0.159074,2.35768,-1.37462,-0.593954,1 +1.60488,-1.15541,-0.35697,4.39036,0.203973,-0.0748207,1.89831,-0.093239,-0.567922,-0.613298,-0.535271,-0.557042,0.0500494,-0.247974,0.369952,-0.564948,0.172637,-0.652102,4 +1.56376,-0.23341,-0.35697,-0.19451,-0.59882,-0.125904,-0.610097,-0.139668,-0.723147,-0.762348,-0.650141,-0.764813,0.2323,-0.106046,-0.053269,-0.681439,0.848628,-0.4901,4 +-0.410023,-0.494353,-0.35697,-0.19451,-0.434145,-0.109057,-0.363873,-0.135889,-0.800759,-0.870171,-0.726721,-0.813701,0.0212729,-0.162817,0.254528,-0.7591,1.70828,-0.620835,2 +0.179369,0.236287,2.41015,-0.19451,-0.084209,-0.0876667,-0.394651,-0.137149,-0.770684,-0.847972,-0.696089,-0.777035,-0.0746484,-0.134432,0.302621,-0.728036,1.54603,-0.64574,2 +-1.27355,-0.616126,-0.35697,-0.19451,-0.392976,-0.119513,-0.363873,-0.127928,0.791265,0.715465,0.937618,0.680419,-1.33122,1.62547,-1.41912,0.928725,-0.467661,-0.497711,3 +-0.780106,0.0797212,-0.35697,-0.19451,7.20269,0.00549016,-0.302317,-0.125813,-0.0382174,-0.0202701,-0.00942162,-0.0895567,0.193931,0.160777,-0.466871,-0.0316783,-0.484938,-0.400527,3 +-1.34208,2.16726,2.41015,-0.19451,-0.104794,-0.112883,0.20552,-0.110885,-0.569862,-0.514988,-0.719063,-0.437879,0.961302,-1.46287,1.51457,-0.627077,-0.502238,2.03607,6 +-1.69846,-0.7379,-0.35697,-0.19451,3.80625,5.8365,1.88292,3.35171,-0.411727,-0.537187,-0.313189,-0.404269,-0.803651,0.319736,0.264147,-0.339732,0.737548,-0.695973,2 +-0.0810599,1.26266,-0.35697,-0.19451,0.286311,-0.0793682,-0.286928,-0.117102,0.426487,0.414194,0.493454,0.353485,-0.458334,0.796612,-0.890092,0.478293,-0.583889,-0.463516,5 +0.522039,1.50621,-0.35697,-0.19451,-0.125378,-0.115171,-0.25615,-0.123843,-0.660087,-0.670381,-0.810959,-0.462323,0.443327,-1.54803,2.17826,-0.647786,0.27089,2.20446,6 +-0.0947667,-0.250806,-0.35697,4.39036,0.615662,-0.0680943,0.436354,-0.0877325,-0.622251,-0.736977,-0.502086,-0.648706,-0.535071,0.291351,0.0429175,-0.531295,1.17268,-0.63494,2 +-1.42433,-0.0246559,-0.35697,-0.19451,-0.537067,-0.118307,-0.548541,-0.133307,-0.955984,-0.936767,-0.987093,-0.926753,0.95171,-0.991673,0.725842,-1.02315,0.563545,-0.699955,2 +0.892122,0.218891,-0.35697,-0.19451,0.14222,-0.0932,0.113186,-0.12978,-0.843446,-0.854314,-0.818617,-0.853422,0.587209,-0.526151,0.302621,-0.852293,1.23893,-0.492455,3 +0.0834216,1.57579,-0.35697,-0.19451,-0.41356,-0.112773,-0.317706,-0.136078,-0.792028,-0.79406,-0.905408,-0.64565,0.625578,-1.4061,1.75504,-0.803108,0.618763,2.2139,6 +-0.12218,2.11508,2.41015,-0.19451,-0.187131,-0.115003,-0.0560933,-0.0731651,-0.597997,-0.61964,-0.713958,-0.431768,0.289853,-1.26417,1.85122,-0.6219,-0.162929,2.43205,6 +0.905829,0.671192,-0.35697,-0.19451,0.265727,-0.0852718,3.25254,3.44624,0.102455,0.0590118,0.13608,0.102937,-0.477518,0.308382,-0.0436503,0.12882,-0.564011,-0.771862,5 +-0.84864,0.601607,2.41015,-0.19451,-0.331223,-0.103804,-0.148427,-0.118171,-0.389414,-0.467419,-0.504639,-0.172054,-0.391189,-1.08818,2.23597,-0.401861,-0.0660606,2.58041,6 +-0.889761,0.0449289,-0.35697,-0.19451,-0.392976,-0.113681,-0.517763,-0.1374,-0.443742,-0.467419,-0.387216,-0.483711,0.145971,0.0131728,-0.168693,-0.414804,-0.0917926,-0.47964,3 +1.74194,1.34964,-0.35697,-0.19451,1.00677,-0.00477641,0.867246,-0.0416316,0.0849923,0.084382,0.110554,0.0540499,-0.0746484,0.240257,-0.33221,0.08999,-0.663682,-0.526053,5 +0.68652,1.541,2.41015,-0.19451,-0.331223,-0.112443,-0.163816,-0.117289,-0.648445,-0.651353,-0.808406,-0.447046,0.50088,-1.59912,2.20711,-0.634843,0.314767,2.15966,6 +0.535746,1.36704,2.41015,-0.19451,-0.145963,-0.0866651,-0.225372,-0.126097,-0.574713,-0.59427,-0.675668,-0.428713,0.289853,-1.14495,1.64923,-0.619311,-0.319185,2.51443,6 +0.946949,1.03651,-0.35697,-0.19451,-0.41356,-0.114292,0.143964,-0.11254,0.463353,0.468106,0.541954,0.359596,-0.333636,0.904477,-1.19789,0.527479,-0.542123,-0.406904,5 +-0.451143,-0.96405,-0.35697,-0.19451,-0.310638,-0.123922,-0.456207,-0.129088,2.32411,2.36453,2.22416,2.37925,-1.52306,1.23943,-0.572676,2.23342,-1.08302,-0.606808,1 +-1.43803,2.16726,-0.35697,-0.19451,-0.0224557,-0.108726,-0.209983,-0.112966,-0.61837,-0.635497,-0.736932,-0.453156,0.347406,-1.29824,1.85122,-0.64002,-0.102736,2.39726,6 +-0.821227,-0.842277,-0.35697,-0.19451,-0.475314,-0.119958,-0.471596,-0.136834,-0.411727,-0.334226,-0.392322,-0.505099,1.03804,-0.208234,-0.6881,-0.419982,-0.04313,-0.147067,0 +-0.629332,-0.494353,-0.35697,-0.19451,-0.0842092,-0.0440611,0.0208516,-0.0179353,-0.417548,-0.334226,-0.412743,-0.498988,1.09559,-0.310422,-0.572676,-0.440691,-0.168762,-0.124667,0 +1.08402,0.13191,-0.35697,-0.19451,-0.660574,-0.12347,-0.640875,-0.137245,-0.964715,-0.936767,-0.999856,-0.938975,1.03804,-1.02574,0.696986,-1.03609,1.05021,-0.473359,4 +-0.711572,-0.111637,-0.35697,-0.19451,-0.125378,-0.105836,-0.502374,-0.127009,-0.935611,-0.930425,-0.933487,-0.932864,0.807828,-0.753235,0.466138,-0.968784,2.37117,-0.473359,2 +-0.135887,1.01912,-0.35697,-0.19451,-0.495898,-0.103961,-0.471596,-0.120729,-0.509713,-0.495961,-0.693536,-0.297328,0.539248,-1.64454,2.24559,-0.507997,-0.120215,2.13578,6 +-1.23243,-1.06843,-0.35697,-0.19451,-0.41356,-0.115746,-0.333095,-0.122286,-0.414638,-0.34374,-0.389769,-0.508155,0.980487,-0.174171,-0.6881,-0.417393,-0.0165213,-0.166631,0 +-0.793813,-1.59031,-0.35697,-0.19451,-0.351807,-0.103609,-0.179205,-0.117881,2.33575,2.34867,2.25224,2.39759,-1.78205,1.35864,-0.514964,2.2619,-1.03486,-0.628245,1 +0.672814,0.49723,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.272955,0.271079,-0.35697,-0.19451,-0.598821,-0.124913,-0.440818,-0.131292,-0.810461,-0.721121,-0.849249,-0.8412,1.46969,-0.923548,0.0910108,-0.875591,0.463121,0.256871,0 +1.02919,1.21047,-0.35697,-0.19451,0.245142,-0.0818122,0.605633,-0.0790832,0.108276,0.131951,0.133528,0.0540499,0.126786,0.257288,-0.563058,0.113288,-0.643936,-0.409558,5 +-0.684159,-0.981446,-0.35697,-0.19451,-0.166547,-0.104845,-0.163816,-0.11391,-0.387473,-0.292999,-0.374453,-0.489822,1.17233,-0.230942,-0.784287,-0.401861,-0.0528111,-0.10475,0 +-0.643038,-1.10322,-0.35697,-0.19451,-0.537066,-0.122683,-0.456207,-0.133622,1.905,1.90469,1.93061,1.85372,-1.55184,1.73333,-1.38064,1.93573,-0.891462,-0.52029,1 +1.23479,0.514626,-0.35697,4.39036,6.58515,0.0520698,-0.363873,-0.0739208,-0.752252,-0.784546,-0.7063,-0.767869,0.318629,-0.310422,0.206435,-0.738391,1.50096,-0.505387,4 +-1.34208,-0.96405,-0.35697,-0.19451,-0.187131,-0.094191,-0.179205,-0.0535166,-0.404936,-0.353254,-0.36169,-0.502044,0.798236,-0.0435982,-0.726575,-0.388918,0.0589596,-0.218352,0 +-1.52027,-0.23341,-0.35697,-0.19451,-0.0636246,-0.00797096,0.0670187,-0.12279,-0.500981,-0.397651,-0.522508,-0.569264,1.34499,-0.554537,-0.409159,-0.552005,-0.254237,0.0115194,0 +0.289023,0.288476,-0.35697,-0.19451,-0.310638,-0.116985,-0.394651,-0.130347,-0.80464,-0.711607,-0.846696,-0.835089,1.49846,-0.940579,0.0910108,-0.860059,0.482346,0.293548,0 +0.206783,-0.129033,2.41015,-0.19451,-0.0430401,-0.100032,-0.517763,-0.131638,0.25574,0.271487,0.284135,0.203767,-0.0650563,0.399215,-0.611151,0.266021,-0.711008,-0.437269,3 +0.864709,-1.41635,-0.35697,-0.19451,-0.41356,-0.115171,-0.209983,-0.118664,1.88269,1.7937,1.88466,1.94538,-2.33839,1.55734,-0.293735,1.88913,-0.810124,-0.67784,1 +-1.30096,0.0101365,-0.35697,-0.19451,-0.475314,-0.124913,-0.502374,-0.138345,-0.813371,-0.724292,-0.849249,-0.847311,1.46969,-0.906517,0.0621548,-0.870414,0.634034,0.242681,0 +-0.135887,0.114514,-0.35697,-0.19451,-0.495898,-0.11971,-0.440818,-0.130536,-0.779416,-0.69258,-0.816064,-0.810645,1.42172,-0.883808,0.0717735,-0.841938,0.23959,0.19817,0 +1.37186,-0.581334,-0.35697,-0.19451,-0.557652,-0.121713,-0.517763,-0.132428,-0.797849,-0.803574,-0.757353,-0.832034,0.596801,-0.384224,0.0525362,-0.790164,0.982262,-0.404164,4 +1.46781,0.445041,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.396316,-0.685711,-0.35697,-0.19451,-0.145962,-0.0988159,-0.225372,-0.101315,-0.345757,-0.264458,-0.325952,-0.44399,1.01886,-0.151463,-0.765049,-0.352676,-0.123087,-0.152698,0 +-0.0673532,0.218891,-0.35697,-0.19451,-0.475314,-0.117976,-0.394651,-0.132614,-0.80658,-0.714778,-0.849249,-0.835089,1.48887,-0.946257,0.110248,-0.865236,0.449602,0.283622,0 +1.31703,1.34964,2.41015,-0.19451,-0.166547,-0.102139,0.00546284,-0.125983,-0.468966,-0.51816,-0.609298,-0.248441,-0.0650563,-1.32094,2.3033,-0.466578,-0.0443751,2.42837,6 +1.49522,-1.67729,2.41015,-0.19451,-0.392976,-0.113403,-0.10226,-0.117102,2.24262,2.24719,2.17056,2.29981,-1.78205,1.35864,-0.514964,2.17906,-1.01387,-0.62874,1 +-0.108474,1.00172,2.41015,-0.19451,-0.0224557,-0.0995968,0.159353,-0.105233,0.25768,0.290515,0.291793,0.182379,0.0884179,0.438955,-0.83238,0.273787,-0.628999,-0.379329,5 +-0.396316,0.166702,-0.35697,-0.19451,-0.681158,-0.126895,-0.610097,-0.139668,-0.957924,-0.936767,-0.981988,-0.938975,0.970895,-0.946257,0.629655,-1.01797,2.51022,-0.473359,2 +-1.56139,0.688588,-0.35697,-0.19451,-0.310638,-0.106594,0.0208518,-0.117857,-0.451503,-0.438878,-0.632272,-0.24233,0.481696,-1.57641,2.18788,-0.461401,-0.361905,2.17725,6 +-1.39691,-0.650919,-0.35697,-0.19451,-0.372391,-0.112773,-0.194594,-0.117941,-0.483519,-0.407165,-0.474007,-0.563153,1.086,-0.33313,-0.524583,-0.50282,-0.0393209,-0.115577,0 +-0.163301,0.149306,-0.35697,-0.19451,-0.537067,-0.119632,-0.56393,-0.131091,-0.936581,-0.936767,-0.93604,-0.926753,0.759868,-0.764589,0.533469,-0.971373,2.51022,-0.544833,2 +-1.20502,-1.08582,-0.35697,-0.19451,-0.475314,-0.116367,-0.517763,-0.135544,1.88657,1.77784,1.93316,1.91483,-2.52064,1.85823,-0.62077,1.93831,-0.735948,-0.65002,1 +0.30273,0.0275327,-0.35697,-0.19451,1.66547,-0.0398138,-0.302317,-0.127247,0.161634,0.125608,0.248398,0.0907154,-0.458334,0.711456,-0.745812,0.229779,-0.447876,-0.474704,3 +-1.58881,0.114514,-0.35697,-0.19451,-0.681158,-0.126895,0.0516297,-0.0340571,-0.924939,-0.908226,-0.941145,-0.911475,0.90375,-0.866777,0.562325,-0.97655,0.543267,-0.473359,4 +1.74194,-0.911862,-0.35697,-0.19451,-0.434145,-0.119958,-0.302317,-0.12808,1.36463,1.14042,1.6396,1.23651,-3.14413,2.95391,-1.85196,1.64062,-0.248766,-0.573713,1 +-0.0947667,0.984323,-0.35697,-0.19451,0.0187132,-0.0942623,0.190131,-0.12166,0.301337,0.322227,0.340294,0.231267,-0.0554641,0.50708,-0.803524,0.322972,-0.648553,-0.409714,5 +-0.574504,0.0449289,-0.35697,-0.19451,-0.434145,-0.1154,-0.41004,-0.130409,-0.67755,-0.787718,-0.555692,-0.709815,-0.448742,0.257288,0.0140616,-0.585658,1.3682,-0.615165,2 +-0.0810599,0.792965,-0.35697,-0.19451,-0.269469,-0.105385,-0.394651,-0.124546,-0.290458,-0.340568,-0.440822,-0.0590021,-0.21853,-1.24147,2.32254,-0.306079,-0.346503,2.48617,6 +1.76936,-0.877069,-0.35697,-0.19451,1.76839,0.04808,1.94448,0.0694819,-0.0615011,-0.350082,0.302004,-0.217886,-2.5686,2.37484,-1.44797,0.284142,0.982175,-0.577651,2 +1.31703,-0.946654,-0.35697,-0.19451,-0.125378,-0.109305,-0.471596,-0.125647,-0.00232165,0.109752,-0.0911071,-0.00400385,1.01886,-0.594277,-0.0147944,-0.114517,-1.19486,-0.179402,3 +0.727641,1.03651,2.41015,-0.19451,0.306895,-0.0738301,0.621022,-0.0772611,0.489547,0.480791,0.58535,0.377929,-0.477518,1.04073,-1.28446,0.571486,-0.501631,-0.415637,5 +-1.41062,0.0275327,-0.35697,-0.19451,0.14222,-0.0870292,0.00546284,-0.117312,0.554547,0.496647,0.679798,0.454315,-0.976309,1.29052,-1.20751,0.667268,-0.451074,-0.485219,3 +-0.917174,0.288476,-0.35697,-0.19451,-0.681158,-0.126895,-0.610097,-0.139668,-0.963745,-0.936767,-0.997304,-0.938975,1.02845,-1.01438,0.687367,-1.0335,1.53688,-0.473359,4 +0.98807,-0.0420521,-0.35697,-0.19451,7.3262,0.259853,-0.41004,-0.124788,0.104395,0.131951,0.120764,0.0571053,0.165155,0.19484,-0.495727,0.100345,-0.640864,-0.409386,3 +1.16626,-0.877069,-0.35697,-0.19451,-0.207716,-0.105766,-0.394651,-0.126288,0.136411,0.220747,0.0722636,0.130436,0.654354,-0.316099,-0.1206,0.0511596,-1.08917,-0.343354,3 +0.672814,-1.27718,-0.35697,-0.19451,-0.331222,-0.110359,-0.41004,-0.123974,1.84388,1.76516,1.87445,1.86288,-2.21369,1.7163,-0.6881,1.87877,-0.78646,-0.630542,1 +1.44039,-0.442164,-0.35697,-0.19451,-0.557652,-0.123922,-0.56393,-0.139101,-0.933671,-0.936767,-0.920724,-0.935919,0.731091,-0.679433,0.418045,-0.95584,2.51022,-0.485864,2 +-0.999415,0.810361,-0.35697,-0.19451,-0.495898,-0.117153,-0.41004,-0.133545,-0.30404,-0.362767,-0.433164,-0.0895567,-0.285675,-1.11089,2.16864,-0.331966,-0.340684,2.56702,6 +1.57746,-1.86865,-0.35697,-0.19451,-0.537067,-0.123674,-0.209983,-0.120523,1.71485,1.56219,1.85658,1.67344,-2.77963,2.35214,-1.19789,1.86065,-0.55754,-0.608005,1 +1.56376,0.340664,-0.35697,-0.19451,-0.578236,-0.126317,-0.486985,-0.137904,-0.852177,-0.762348,-0.890092,-0.883976,1.50805,-0.951934,0.100629,-0.909244,1.08266,0.313593,0 +1.2485,0.0449289,-0.35697,-0.19451,-0.495898,-0.122683,-0.517763,-0.138912,-0.841506,-0.752834,-0.882434,-0.868699,1.48887,-0.963288,0.139104,-0.898889,0.806879,0.313971,0 +-0.917174,-0.250806,-0.35697,-0.19451,-0.372392,-0.121692,0.113186,-0.111643,-0.857998,-0.895541,-0.82117,-0.856477,0.356998,-0.458026,0.418045,-0.854882,1.91665,-0.595916,2 +1.01548,-0.998843,-0.35697,-0.19451,-0.2283,-0.0922091,-0.27154,-0.0913022,2.23971,2.23133,2.19608,2.27537,-1.89715,1.54599,-0.716956,2.20495,-0.96838,-0.610998,1 +-1.58881,-0.894465,-0.35697,-0.19451,-0.413561,-0.114755,-0.25615,-0.127513,2.31538,2.32013,2.22671,2.39148,-1.8396,1.30755,-0.370685,2.23601,-1.03195,-0.649244,1 +1.71453,0.914738,-0.35697,4.39036,-0.104793,-0.103609,0.282465,-0.111345,0.435218,0.407852,0.539402,0.332097,-0.602216,1.05208,-1.17865,0.52489,-0.476353,-0.446092,5 +1.0429,-1.45114,-0.35697,-0.19451,-0.310638,-0.114012,-0.25615,-0.11391,2.27172,2.29793,2.19353,2.31509,-1.60939,1.34161,-0.659244,2.20236,-1.04415,-0.60136,1 +-0.670452,-0.7379,2.41015,-0.19451,-0.00187127,-0.0899792,-0.302317,-0.0993631,-0.375831,-0.299342,-0.354032,-0.471489,0.999671,-0.162817,-0.726575,-0.381151,-0.0774905,-0.157828,0 +1.60488,0.427645,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.177007,1.28006,-0.35697,-0.19451,0.862676,-0.060551,0.697968,-0.087073,0.347904,0.338084,0.414321,0.274043,-0.372005,0.728487,-0.861236,0.398044,-0.571875,-0.458363,5 +0.522039,-1.39895,-0.35697,-0.19451,-0.392976,-0.117646,-0.440818,-0.12978,2.34254,2.41209,2.21395,2.4037,-1.27367,1.06344,-0.524583,2.22307,-1.14626,-0.593599,1 +-1.68475,1.15829,-0.35697,-0.19451,0.245142,-0.0949343,0.0208518,-0.0897277,-0.141054,-0.137607,-0.0936597,-0.199553,0.145971,0.200517,-0.486108,-0.117105,-0.428741,-0.417698,5 +-0.300369,1.0713,-0.35697,-0.19451,-0.0224561,-0.0234971,2.06759,1.47377,-0.161427,-0.14395,-0.165134,-0.172054,0.289853,-0.15714,-0.0244131,-0.176645,-0.77285,-0.703849,5 +-0.012526,1.17568,-0.35697,-0.19451,0.595078,-0.0662417,0.236298,-0.0925594,0.594324,0.572758,0.702772,0.478759,-0.678953,1.21104,-1.37102,0.690566,-0.496178,-0.435234,5 +-1.58881,0.827757,-0.35697,-0.19451,-0.145963,-0.104886,0.0977966,-0.112251,0.232456,0.233432,0.299451,0.148769,-0.180162,0.637654,-0.89971,0.281553,-0.521005,-0.419214,5 +-0.437437,-1.6425,-0.35697,-0.19451,-0.248884,-0.0998894,-0.286928,-0.113407,2.39493,2.45966,2.265,2.46175,-1.35999,1.0975,-0.495727,2.27484,-1.1406,-0.604958,1 +-0.12218,2.11508,-0.35697,-0.19451,0.14222,-0.101382,-0.0407042,-0.114719,-0.541728,-0.549872,-0.685878,-0.355382,0.36659,-1.4061,2.01474,-0.557182,-0.183917,2.30432,6 +-1.60251,-0.37258,-0.35697,-0.19451,-0.00187127,-0.086015,-0.133038,-0.0846897,-0.500981,-0.407165,-0.512297,-0.572319,1.25866,-0.486412,-0.438015,-0.54165,-0.16015,-0.0544478,0 +0.878415,-0.285599,-0.35697,-0.19451,0.286311,-0.111717,-0.440818,-0.127884,-0.24292,-0.267629,-0.20853,-0.257607,-0.0266877,0.0302041,-0.0244131,-0.233596,-0.413849,-0.542664,4 +1.12514,1.62798,-0.35697,-0.19451,-0.41356,-0.116737,-0.10226,-0.124742,-0.80561,-0.79406,-0.918171,-0.67315,0.759868,-1.41178,1.63,-0.826406,0.682052,2.16072,6 +-1.1776,2.13247,2.41015,-0.19451,0.14222,-0.0545496,-0.163816,-0.0987963,-0.567922,-0.578414,-0.713958,-0.37677,0.36659,-1.44016,2.07245,-0.575303,-0.144778,2.28652,6 +0.563159,1.0713,-0.35697,-0.19451,0.0187132,-0.121713,-0.117649,-0.136587,0.449771,0.449078,0.529191,0.35043,-0.372005,0.8988,-1.1498,0.514535,-0.544671,-0.417457,5 +0.713934,1.00172,-0.35697,-0.19451,0.88326,-0.0887102,0.0362409,-0.114909,0.617607,0.594957,0.723194,0.506258,-0.70773,1.21104,-1.34217,0.711276,-0.525166,-0.441112,5 +-0.780106,0.201495,-0.35697,-0.19451,-0.392976,-0.116655,-0.579319,-0.135637,-0.80755,-0.822602,-0.775222,-0.822867,0.520064,-0.446672,0.235291,-0.808285,0.835268,-0.493498,4 +1.11143,-0.320391,-0.35697,-0.19451,-0.598821,-0.125904,-0.502374,-0.137589,0.344024,0.366625,0.383689,0.270988,-0.0746484,0.54682,-0.851617,0.36698,-0.656071,-0.407075,3 +-1.62993,-0.7379,-0.35697,4.39036,0.821507,0.0675956,0.913414,0.344554,-0.643594,-0.71795,-0.581219,-0.63954,-0.151386,-0.111723,0.341096,-0.611545,0.881535,-0.663716,2 +-0.245541,-1.78167,-0.35697,-0.19451,-0.454731,-0.115793,-0.348484,-0.13323,2.3503,2.3677,2.24458,2.43425,-1.75327,1.22239,-0.312973,2.25413,-1.06378,-0.651946,1 +1.75565,1.34964,-0.35697,-0.19451,0.409818,-0.0672912,0.113186,-0.100456,0.181038,0.182691,0.222871,0.127381,-0.132201,0.427601,-0.591914,0.203892,-0.63976,-0.456188,5 +0.0285944,0.340664,-0.35697,-0.19451,-0.145963,-0.124583,-0.425429,-0.129843,-0.860909,-0.911397,-0.798196,-0.877865,0.241892,-0.287713,0.244909,-0.831583,2.13957,-0.578849,2 +0.0011808,-1.1728,-0.35697,-0.19451,0.286311,-0.0460432,0.0824076,-0.113407,-0.220607,-0.191519,-0.149818,-0.330938,0.443327,0.291351,-0.938185,-0.174056,-0.0567347,-0.29574,0 +0.426091,-1.59031,-0.35697,-0.19451,-0.413562,-0.123674,0.0516293,-0.122475,2.59963,2.76728,2.34669,2.7123,-0.592624,0.444632,-0.159074,2.35768,-1.37462,-0.593954,1 +1.0429,1.03651,-0.35697,-0.19451,-0.00187164,-0.084567,-0.025315,-0.109755,0.408054,0.417365,0.48069,0.307653,-0.247307,0.81932,-1.14018,0.46535,-0.539502,-0.400569,5 +-0.972001,0.0449289,2.41015,-0.19451,0.32748,-0.0671685,0.267076,-0.101494,-0.360309,-0.337397,-0.351479,-0.388992,0.50088,-0.236619,-0.101362,-0.378563,-0.530453,-0.392046,3 +-1.61622,0.184098,-0.35697,-0.19451,-0.681158,-0.126895,-0.656264,-0.139857,-0.969566,-0.936767,-1.01262,-0.938975,1.086,-1.08251,0.745079,-1.04903,-1.38313,-0.473359,2 +1.16626,0.514626,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.08166,0.532022,2.41015,-0.19451,0.471571,0.0557857,-0.225372,-0.119452,-0.80367,-0.660867,-0.90796,-0.80759,1.94929,-1.35501,0.341096,-0.826406,0.591452,0.878754,4 +-0.42373,0.35806,-0.35697,-0.19451,-0.537067,-0.124665,-0.533152,-0.137337,-0.940462,-0.936767,-0.93604,-0.938975,0.798236,-0.741881,0.45652,-0.971373,2.51022,-0.473359,2 +1.48151,1.28006,-0.35697,4.39036,0.739169,-0.0651804,-0.117649,-0.118663,0.332382,0.32857,0.396452,0.25571,-0.30486,0.700101,-0.880473,0.379923,-0.579201,-0.440359,5 +0.412385,0.0623251,-0.35697,-0.19451,0.101051,-0.0891903,3.5911,-0.0697062,-0.0139635,0.0875532,-0.0732383,-0.0406693,0.932526,-0.406932,-0.245642,-0.0963956,-0.973929,-0.20311,3 +-0.670452,0.201495,-0.35697,-0.19451,-0.537067,-0.124665,-0.440818,-0.138093,-0.839565,-0.740149,-0.890092,-0.865644,1.58479,-1.02574,0.148723,-0.891123,0.818467,0.434125,0 +-1.42433,1.61059,2.41015,-0.19451,0.718585,-0.111699,-0.440818,-0.132048,-0.536877,-0.562557,-0.693536,-0.318716,0.203524,-1.48558,2.31292,-0.526118,-0.000507978,2.31161,6 +-0.163301,-1.55552,-0.35697,-0.19451,0.0392971,-0.101993,-0.440819,-0.125945,0.938729,0.918426,1.03207,0.836248,-0.947533,1.39271,-1.4095,1.02451,-0.647004,-0.462849,3 +-1.65734,2.16726,-0.35697,-0.19451,0.533325,-0.0868695,0.220909,-0.118763,-0.458295,-0.492789,-0.632272,-0.211775,0.0596415,-1.53667,2.54377,-0.435514,-0.0207715,2.30888,6 +-1.41062,1.33225,-0.35697,-0.19451,0.368648,-0.0735724,0.667189,-0.0955789,0.462383,0.43005,0.570034,0.359596,-0.669361,1.0975,-1.18827,0.555954,-0.479747,-0.454766,5 +0.659107,0.49723,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-0.0536464,-0.198618,-0.35697,-0.19451,0.183389,-0.0878608,-0.533152,-0.135429,-0.349637,-0.381795,-0.272346,-0.407325,-0.00750348,0.228903,-0.380303,-0.298313,-0.0759875,-0.46744,4 +0.439798,-1.15541,-0.35697,-0.19451,-0.248886,-0.116737,-0.333096,-0.126065,2.29598,2.3233,2.19353,2.36703,-1.61898,1.19969,-0.409159,2.20236,-1.07232,-0.632415,1 +-1.65734,1.14089,-0.35697,-0.19451,0.0598824,-0.0406751,2.57542,1.80836,-0.277846,-0.267629,-0.25703,-0.30955,0.318629,-0.0890149,-0.168693,-0.282781,-0.680745,-0.477634,5 +0.26161,-0.0942407,-0.35697,-0.19451,-0.495898,-0.118719,-0.486985,-0.13337,-0.801729,-0.721121,-0.828828,-0.838144,1.38336,-0.838392,0.0332989,-0.854882,0.601976,0.14777,0 +1.30333,-1.08582,-0.35697,-0.19451,-0.598821,-0.124274,-0.517763,-0.135544,-0.790088,-0.806745,-0.739484,-0.825923,0.491288,-0.310422,0.0332989,-0.772044,1.00302,-0.437809,4 +1.09772,1.15829,-0.35697,-0.19451,-0.228301,-0.105051,-0.225372,-0.121063,0.325591,0.341255,0.378584,0.243488,-0.122609,0.620622,-0.928567,0.361802,-0.596141,-0.40425,5 +1.33074,2.09768,2.41015,-0.19451,0.389233,-0.113021,-0.0407042,-0.103582,-0.698893,-0.660867,-0.790538,-0.618151,0.913342,-1.18469,1.09135,-0.774632,-0.877806,2.38543,6 +1.59117,0.236287,-0.35697,4.39036,0.88326,0.28934,0.390188,0.497459,-0.839565,-0.863828,-0.808406,-0.844255,0.462511,-0.480735,0.350714,-0.841938,1.79837,-0.537793,2 +1.11143,-1.93824,-0.35697,-0.19451,0.265727,-0.0942623,0.574856,-0.0830696,-0.670758,-0.695751,-0.609298,-0.712871,0.318629,-0.140109,-0.082125,-0.64002,0.511944,-0.454002,4 +1.0429,1.17568,-0.35697,-0.19451,-0.331222,-0.110359,0.143964,-0.122825,0.317829,0.338084,0.358162,0.246544,-0.0746484,0.529789,-0.822761,0.341093,-0.648273,-0.411623,5 +0.165662,1.01912,-0.35697,-0.19451,-0.0224557,-0.0413358,0.328632,0.0165755,-0.0556802,-0.0392977,-0.029843,-0.101779,0.193931,0.126715,-0.409159,-0.0523879,-0.618182,-0.413003,5 +-0.780106,1.29745,-0.35697,4.39036,0.368649,-0.0630817,0.174742,-0.0913601,0.550667,0.531531,0.636403,0.460426,-0.6214,1.0237,-1.11132,0.62326,-0.593896,-0.454265,5 +1.41298,1.01912,2.41015,-0.19451,-0.372392,-0.111955,-0.456207,-0.129026,-0.531056,-0.521331,-0.721616,-0.306494,0.520064,-1.70699,2.37063,-0.515763,0.0764979,2.12207,6 +-0.478557,0.184098,-0.35697,-0.19451,-0.557652,-0.126895,-0.41004,-0.137589,-0.915238,-0.908226,-0.90796,-0.920642,0.807828,-0.702141,0.37957,-0.942897,1.99111,-0.42078,4 +1.52263,-0.807484,-0.35697,-0.19451,7.51146,0.217712,1.46742,0.00219896,-0.111949,-0.0741817,-0.149818,-0.101779,0.433735,-0.344484,0.148723,-0.174056,-0.88323,-0.492102,3 +-1.45174,-1.05103,-0.35697,-0.19451,-0.2283,-0.092209,-0.0868711,-0.0875236,-0.422399,-0.375452,-0.377006,-0.517321,0.76946,-0.0435982,-0.697719,-0.40445,0.0891634,-0.235504,0 +-0.930881,1.31485,-0.35697,-0.19451,0.718585,-0.0682656,1.09808,-0.0812242,0.469174,0.43005,0.575139,0.374873,-0.736506,1.09182,-1.11132,0.561131,-0.481308,-0.46712,5 +-0.259248,-0.285599,-0.35697,-0.19451,-0.290054,-0.111252,-0.486985,-0.133002,-0.379712,-0.565729,-0.188108,-0.425657,-1.37918,0.966925,-0.255261,-0.212887,0.927022,-0.641751,2 +-0.533384,1.28006,2.41015,4.39036,-0.104793,-0.0949379,-0.317706,-0.121402,0.685518,0.667896,0.771694,0.591811,-0.717322,1.13724,-1.20751,0.760461,-0.620037,-0.456291,5 +-1.54769,-1.1728,5.17726,-0.19451,-0.248885,-0.122683,-0.302317,-0.12279,-0.450533,-0.381795,-0.430612,-0.535654,0.990079,-0.236619,-0.591914,-0.458812,-0.0184137,-0.167805,0 +-1.19131,2.04549,-0.35697,-0.19451,0.0598822,-0.114506,-0.240761,-0.115947,-0.595086,-0.625983,-0.693536,-0.440935,0.203524,-1.14495,1.7358,-0.629666,-0.118225,2.52828,6 +0.755054,-0.459561,-0.35697,-0.19451,-0.351808,-0.119958,-0.394651,-0.128836,2.54919,2.67531,2.32627,2.66647,-0.928349,0.603591,-0.0917437,2.33697,-1.30106,-0.636326,1 +-1.20502,-0.355184,-0.35697,-0.19451,-0.0430403,-0.0799091,0.143964,-0.0819922,-0.86964,-0.882856,-0.872223,-0.844255,0.587209,-0.730527,0.648893,-0.906655,1.63016,-0.734489,2 +-0.862347,-0.00725971,-0.35697,-0.19451,-0.537067,-0.122683,-0.533152,-0.138093,-0.818222,-0.721121,-0.862012,-0.850366,1.54642,-0.963288,0.0813921,-0.875591,0.641759,0.339926,0 +-0.012526,-0.181222,-0.35697,-0.19451,-0.557652,-0.118619,-0.594708,-0.134599,-0.945312,-0.936767,-0.951356,-0.935919,0.846197,-0.815683,0.533469,-0.986905,2.51022,-0.492034,2 +1.70082,-0.633523,-0.35697,-0.19451,4.62963,7.1701,3.03709,0.914359,-0.140084,-0.131265,-0.108976,-0.184276,0.193931,0.0926521,-0.351447,-0.132637,-0.501122,-0.420935,3 +-1.61622,-1.55552,-0.35697,-0.19451,0.0392976,-0.0450522,-0.25615,-0.105598,-0.437921,-0.416679,-0.374453,-0.529543,0.54884,0.0642667,-0.659244,-0.401861,0.172799,-0.297832,0 +0.193076,-0.0420521,-0.35697,-0.19451,-0.310638,-0.117976,-0.348484,-0.126002,-0.873521,-0.914569,-0.836486,-0.868699,0.337813,-0.46938,0.45652,-0.870414,2.10466,-0.639743,2 +0.782468,0.49723,-0.35697,-0.19451,-0.41356,-0.105427,-0.440818,-0.121631,-0.950163,-0.927254,-0.976882,-0.929808,0.980487,-0.957611,0.639274,-1.01279,1.22055,-0.473359,4 +0.30273,-0.946654,-0.35697,-0.19451,0.0598821,-0.0624779,-0.148427,-0.0965921,-0.298219,-0.267629,-0.223846,-0.413436,0.520064,0.251611,-0.947804,-0.249128,0.0786957,-0.277281,0 +-0.12218,-1.2076,-0.35697,-0.19451,-0.475314,-0.117429,-0.194594,-0.124376,1.88075,1.82541,1.8821,1.91177,-2.03144,1.55167,-0.591914,1.88654,-0.852676,-0.629917,1 +0.0697148,-1.59031,-0.35697,-0.19451,-0.290054,-0.103961,-0.440818,-0.125945,0.587533,0.610813,0.613429,0.527646,-0.266491,0.654685,-0.841999,0.599962,-0.779172,-0.439727,3 +-0.259248,1.21047,-0.35697,-0.19451,-0.310638,-0.106067,-0.425429,-0.129618,-0.592176,-0.603784,-0.726721,-0.413436,0.376182,-1.38339,1.96665,-0.606367,-0.166571,2.31209,6 +-1.35579,-0.720504,-0.35697,-0.19451,-0.125378,-0.116737,-0.0868712,-0.065608,-0.824043,-0.886027,-0.780327,-0.80759,0.107602,-0.384224,0.543088,-0.813463,1.82522,-0.704757,2 +0.796175,0.514626,-0.35697,-0.19451,1.15086,0.146218,0.159353,-0.0230363,-0.237099,-0.327883,-0.124292,-0.282051,-0.630992,0.558174,-0.312973,-0.148169,0.0913337,-0.569355,3 +-1.39691,0.0971174,-0.35697,-0.19451,-0.516483,-0.125574,-0.56393,-0.137589,-0.956954,-0.936767,-0.979435,-0.938975,0.961302,-0.934902,0.620037,-1.01538,1.53688,-0.473359,2 +1.08402,-0.129033,-0.35697,-0.19451,-0.310638,-0.0991462,-0.379262,-0.115674,-0.913297,-0.927254,-0.89775,-0.90842,0.615985,-0.64537,0.475757,-0.932542,2.34124,-0.573456,2 +1.49522,-1.13801,-0.35697,-0.19451,-0.269469,-0.118637,-0.394651,-0.131103,1.4694,1.27044,1.71363,1.35262,-3.00025,2.83469,-1.79425,1.71569,-0.341774,-0.571668,1 +0.905829,0.72338,-0.35697,-0.19451,-0.578236,-0.123344,0.0054627,-0.120775,-0.596057,-0.59427,-0.690984,-0.4776,0.50088,-1.12225,1.39915,-0.642609,-0.47639,2.56025,6 +-1.05424,-0.668315,-0.35697,-0.19451,0.450987,0.172645,-0.10226,-0.0234772,-0.857998,-0.898712,-0.810959,-0.865644,0.328221,-0.389901,0.331477,-0.844527,2.01013,-0.587994,2 +1.26221,0.427645,-0.35697,-0.19451,0.0598821,-0.0704061,-0.379262,-0.131544,-0.208965,-0.324712,-0.060475,-0.272884,-0.880388,0.81932,-0.505346,-0.0834521,0.249126,-0.566268,3 +-1.13648,0.201495,-0.35697,-0.19451,-0.557652,-0.123922,-0.548541,-0.1374,-0.907476,-0.898712,-0.89775,-0.917586,0.81742,-0.679433,0.331477,-0.932542,1.85206,-0.394276,4 +-0.684159,-1.12062,-0.35697,-0.19451,-0.310638,-0.110048,0.143964,-0.0967811,-0.313741,-0.299342,-0.226398,-0.428713,0.385774,0.325413,-0.938185,-0.251717,0.142502,-0.306362,0 +0.0697148,-1.59031,-0.35697,-0.19451,-0.290054,-0.103961,-0.440818,-0.125945,0.587533,0.610813,0.613429,0.527646,-0.266491,0.654685,-0.841999,0.599962,-0.779172,-0.439727,3 +1.42669,0.410249,-0.35697,4.39036,0.800922,0.186272,0.0208518,-0.118445,-0.255532,-0.340568,-0.126844,-0.324827,-0.563847,0.649008,-0.534202,-0.150758,0.133643,-0.525174,3 +-0.574504,-0.163825,-0.35697,-0.19451,-0.187131,-0.102119,-0.133038,-0.130032,-0.450533,-0.365939,-0.44848,-0.529543,1.13396,-0.355838,-0.534202,-0.476933,-0.13985,-0.0943231,0 +-1.23243,-0.476957,2.41015,-0.19451,0.0804666,-0.104845,0.113186,-0.0746136,-0.401055,-0.34374,-0.377006,-0.480656,0.846197,-0.168494,-0.563058,-0.40445,-0.119985,-0.203208,0 +-0.231835,-0.842277,2.41015,-0.19451,-0.454729,-0.116797,2.40615,0.030115,2.08642,2.08545,2.04037,2.11954,-1.70531,1.40406,-0.668863,2.04704,-0.980701,-0.603488,1 +-0.300369,-1.01624,-0.35697,-0.19451,-0.2283,-0.103147,-0.333095,-0.124684,0.604995,0.598128,0.682351,0.512369,-0.554255,1.01234,-1.15941,0.669856,-0.612535,-0.439389,3 +0.919536,-1.45114,-0.35697,-0.19451,-0.248885,-0.122683,-0.302317,-0.131859,2.29404,2.32964,2.21395,2.33037,-1.54225,1.34729,-0.736193,2.22307,-1.05622,-0.587136,1 +0.0423012,1.26266,-0.35697,-0.19451,-0.084209,-0.0995592,-0.148427,-0.0746765,-0.456354,-0.489618,-0.588877,-0.260663,0.0692336,-1.2585,2.06283,-0.476933,-0.269794,2.45917,6 +1.20738,-0.650919,-0.35697,-0.19451,-0.392976,-0.123237,-0.56393,-0.134599,-0.521355,-0.559386,-0.44848,-0.566209,0.0788258,0.0585896,-0.178312,-0.476933,0.160252,-0.492265,4 +0.412385,-0.755296,-0.35697,-0.19451,-0.331223,-0.123344,-0.271539,-0.128332,1.55284,1.41632,1.72639,1.45956,-2.50146,2.43162,-1.61149,1.72863,-0.516114,-0.560277,1 +-1.13648,-1.1728,-0.35697,-0.19451,-0.310638,-0.106083,-0.302317,-0.112966,-0.374861,-0.334226,-0.320847,-0.474545,0.673538,0.0529125,-0.765049,-0.347499,0.0605086,-0.25659,0 +-0.972001,-0.563938,-0.35697,-0.19451,-0.166547,-0.0929522,-0.440818,-0.135826,-0.885163,-0.920911,-0.83138,-0.905365,0.395366,-0.367193,0.225672,-0.865236,2.26849,-0.533105,2 +0.165662,0.688588,-0.35697,-0.19451,-0.166547,-0.1098,4.5606,-0.0459593,0.0587981,0.0272991,0.077369,0.0662718,-0.333636,0.172132,0.0429175,0.0563371,-0.622312,-0.668021,5 +-0.889761,0.149306,-0.35697,-0.19451,-0.660574,-0.126647,-0.610097,-0.139668,-0.960835,-0.936767,-0.989646,-0.938975,0.999671,-0.980319,0.658511,-1.02574,2.02355,-0.473359,2 +0.946949,0.949531,-0.35697,-0.19451,-0.248885,-0.103854,1.54436,0.0736945,-0.0886654,-0.090038,-0.052817,-0.129278,0.0596415,0.166454,-0.341829,-0.0756861,-0.569096,-0.479418,5 +0.864709,0.166702,-0.35697,-0.19451,-0.578236,-0.121362,-0.533152,-0.138849,-0.795908,-0.698922,-0.836486,-0.832034,1.52724,-0.923548,0.0332989,-0.854882,0.489193,0.283485,0 +-0.903467,-0.0594483,-0.35697,-0.19451,0.101051,-0.0830223,-0.271539,-0.108378,-0.470907,-0.635497,-0.254478,-0.566209,-1.1106,1.05776,-0.678481,-0.280193,1.11416,-0.561926,2 +-0.999415,-0.720504,-0.35697,-0.19451,0.51274,-0.116985,-0.302317,-0.131859,0.205292,0.249288,0.205002,0.160991,0.2323,0.166454,-0.514964,0.185771,-0.789665,-0.394014,3 +-0.958295,-0.529145,2.41015,-0.19451,-0.392976,-0.120619,-0.286928,-0.109628,-0.891954,-0.920911,-0.849249,-0.905365,0.462511,-0.446672,0.293002,-0.883357,2.22845,-0.53109,2 +0.165662,0.410249,2.41015,-0.19451,-0.125378,-0.0988984,-0.10226,-0.0922468,-0.257472,-0.350082,-0.126844,-0.321772,-0.630992,0.660362,-0.486108,-0.150758,0.180771,-0.544657,3 +-1.20502,1.26266,-0.35697,-0.19451,-0.2283,-0.105051,-0.302317,-0.126288,-0.62031,-0.606955,-0.775222,-0.440935,0.625578,-1.54235,1.98589,-0.629666,0.0146736,2.14819,6 +1.60488,1.03651,-0.35697,-0.19451,-0.145963,-0.106417,-0.0714822,-0.109597,-0.567922,-0.575242,-0.729274,-0.361493,0.395366,-1.54235,2.21673,-0.56236,-0.0291225,2.22526,6 +1.42669,1.24527,-0.35697,-0.19451,0.842091,-0.0765145,0.467133,-0.101954,0.279023,0.274658,0.337741,0.209878,-0.266491,0.620622,-0.784287,0.320383,-0.598376,-0.446381,5 +0.412385,0.288476,-0.35697,-0.19451,-0.537067,-0.124665,-0.486985,-0.13866,-0.839565,-0.749662,-0.887539,-0.859533,1.49846,-1.0087,0.206435,-0.896301,0.601204,0.374838,0 +1.52263,-0.146429,-0.35697,-0.19451,0.924429,-0.0456303,-0.548541,-0.138912,-0.584415,-0.632325,-0.504639,-0.627318,0.0404572,0.0529125,-0.130218,-0.533884,0.465302,-0.510393,4 +-1.19131,-0.511749,2.41015,-0.19451,-0.187131,-0.10408,-0.425429,-0.12692,0.813579,0.807432,0.884012,0.726251,-0.717322,1.13724,-1.20751,0.874363,-0.699203,-0.456625,3 +1.28962,0.149306,-0.35697,-0.19451,-0.166547,-0.112692,-0.363873,-0.127414,-0.047919,-0.0932093,0.0339737,-0.101779,-0.372005,0.50708,-0.486108,0.0123294,-0.316004,-0.50738,3 +-0.135887,0.566815,-0.35697,-0.19451,-0.557652,-0.118619,-0.379262,-0.129171,-0.335085,-0.44522,-0.417848,-0.126222,-0.726914,-0.827037,2.13017,-0.363031,-0.0418966,2.72194,6 +-0.684159,2.02809,-0.35697,-0.19451,0.203973,-0.0837984,-0.0868711,-0.117033,-0.416578,-0.451563,-0.604193,-0.153721,0.0212729,-1.59345,2.67843,-0.386329,-0.0423786,2.28974,6 +-1.61622,-1.83386,-0.35697,-0.19451,-0.2283,-0.111039,-0.41004,-0.133811,2.66075,2.86876,2.37477,2.77341,-0.276083,0.274319,-0.18793,2.38616,-1.44778,-0.551152,1 +-0.533384,-0.859673,2.41015,-0.19451,-0.207716,-0.0926219,-0.486985,-0.137904,-0.383593,-0.31837,-0.351479,-0.480656,0.90375,-0.100369,-0.736193,-0.378563,-0.0205284,-0.183633,0 +-1.46545,0.253683,-0.35697,-0.19451,-0.372392,-0.114755,-0.440818,-0.13507,-0.820162,-0.727464,-0.864565,-0.847311,1.50805,-0.968965,0.129485,-0.880768,0.512367,0.324065,0 +-0.643038,-0.424768,-0.35697,-0.19451,-0.104794,0.0514912,0.174742,0.111039,-0.861879,-0.905055,-0.808406,-0.87481,0.309037,-0.350161,0.283384,-0.841938,2.11996,-0.577723,2 +1.56376,-0.529145,-0.35697,-0.19451,0.574493,0.173636,-0.379262,-0.125498,-0.593146,-0.654524,-0.489323,-0.651761,-0.0746484,0.206194,-0.274498,-0.518352,0.657482,-0.501248,4 +0.837295,0.114514,-0.35697,-0.19451,-0.516483,-0.124583,-0.56393,-0.137589,-0.830834,-0.740149,-0.872223,-0.859533,1.49846,-0.957611,0.119867,-0.888535,0.70549,0.306648,0 +-1.20502,0.114514,-0.35697,-0.19451,-0.41356,-0.105836,-0.317706,-0.123987,-0.92785,-0.905055,-0.94625,-0.917586,0.961302,-0.883808,0.533469,-0.981727,1.87755,-0.386276,4 +-1.3695,0.549418,-0.35697,-0.19451,1.41846,2.09699,4.31438,2.43907,-0.595086,-0.565729,-0.586324,-0.627318,0.750275,-0.429641,-0.0244131,-0.552005,0.960999,-0.281193,4 +0.672814,-0.181222,-0.35697,-0.19451,0.224557,-0.104762,-0.394651,-0.124301,-0.138143,-0.239088,-0.00942162,-0.193442,-0.803651,0.745518,-0.457252,-0.0316783,0.0640075,-0.566806,4 +-0.382609,-1.05103,-0.35697,-0.19451,-0.434145,-0.117429,-0.579319,-0.136587,1.88269,1.80955,1.8821,1.93316,-2.19451,1.54031,-0.409159,1.88654,-0.832217,-0.659754,1 +-1.62993,-1.2076,-0.35697,-0.19451,-0.475314,-0.124913,-0.41004,-0.130788,2.08836,2.17742,2.02761,2.05232,-0.88998,1.30755,-1.32293,2.0341,-1.07636,-0.463495,1 +0.659107,-0.181222,-0.35697,-0.19451,-0.516483,-0.120619,-0.302317,-0.122034,2.5162,2.6214,2.33137,2.60841,-1.09142,0.830675,-0.312973,2.34215,-1.23849,-0.612588,1 +0.0697148,1.14089,2.41015,-0.19451,0.224557,-0.105385,-0.0868711,-0.092391,0.565219,0.541045,0.669588,0.457371,-0.678953,1.15995,-1.28446,0.656913,-0.520819,-0.443373,5 +0.590573,1.05391,-0.35697,-0.19451,1.02735,-0.0934095,0.944191,-0.109387,0.293576,0.315885,0.332636,0.2221,-0.0362799,0.501403,-0.813143,0.315206,-0.651298,-0.403717,5 +1.28962,-0.755296,-0.35697,-0.19451,-0.228301,-0.119958,-0.486985,-0.124302,0.0694699,0.100238,0.092685,0.0112735,0.222708,0.211871,-0.582295,0.0718691,-0.630412,-0.388103,3 +-1.01312,0.305872,-0.35697,-0.19451,-0.495898,-0.124665,-0.610097,-0.138912,-0.952103,-0.927254,-0.97433,-0.938975,0.999671,-0.929225,0.571943,-1.0102,2.02355,-0.361294,4 +0.179369,1.0713,-0.35697,-0.19451,0.430402,-0.0609245,-0.133038,-0.103542,0.524473,0.493476,0.618534,0.435982,-0.70773,1.05776,-1.08246,0.605139,-0.564446,-0.469773,5 +0.124542,1.17568,-0.35697,-0.19451,-0.187131,-0.0981714,-0.271539,-0.12166,0.644772,0.626669,0.746168,0.533757,-0.688545,1.20536,-1.35179,0.734574,-0.542682,-0.438985,5 +-1.52027,-0.111637,-0.35697,-0.19451,-0.578236,-0.124335,-0.517763,-0.138912,-0.819192,-0.756005,-0.841591,-0.844255,1.23947,-0.82136,0.148723,-0.875591,0.511402,0.0058246,0 +-0.245541,1.78455,-0.35697,-0.19451,-0.125378,-0.058266,0.313243,-0.0965921,-0.764864,-0.771861,-0.864565,-0.630373,0.558433,-1.29256,1.63,-0.790164,0.437951,2.34402,6 +0.234196,0.688588,-0.35697,-0.19451,-0.145963,-0.107735,4.22205,-0.0850036,0.0888729,0.062183,0.100343,0.0998819,-0.314452,0.149423,0.0621548,0.0796353,-0.69167,-0.666421,5 +-1.69846,1.14089,-0.35697,-0.19451,-0.187132,-0.116985,2.76009,1.29826,-0.352548,-0.334226,-0.341268,-0.379825,0.452919,-0.213911,-0.0917437,-0.368208,-0.848832,-0.425055,5 +-0.615625,-1.45114,-0.35697,-0.19451,-0.475314,-0.114506,-0.471596,-0.127041,1.92926,1.80955,1.94847,2.00038,-2.65493,1.71062,-0.236023,1.95385,-0.75705,-0.693568,1 +-0.533384,0.966927,-0.35697,-0.19451,0.0392976,-0.0987137,0.313243,-0.0878961,0.353725,0.369796,0.411768,0.264877,-0.141793,0.677393,-1.00552,0.395455,-0.570919,-0.398464,5 +-1.45174,0.375456,-0.35697,-0.19451,-0.372392,-0.0899791,-0.0868712,-0.065608,-0.916208,-0.91774,-0.933487,-0.883976,0.731091,-0.866777,0.735461,-0.968784,0.134813,-0.780977,2 +0.384971,1.40183,2.41015,-0.19451,0.183389,-0.0895788,0.251687,-0.116665,-0.462175,-0.499132,-0.627167,-0.223997,0.0404572,-1.4799,2.46682,-0.445869,-0.0285879,2.33432,6 +1.76936,-1.15541,-0.35697,-0.19451,-0.351809,-0.110048,-0.286928,-0.122475,2.58605,2.75776,2.35435,2.66952,-0.544663,0.575205,-0.428397,2.36545,-1.34975,-0.533557,1 +-0.42373,1.74976,-0.35697,-0.19451,-0.187131,-0.0862628,-0.41004,-0.130788,-0.61837,-0.651353,-0.742037,-0.431768,0.203524,-1.3323,2.05322,-0.6219,0.134685,2.38848,6 +1.28962,0.914738,-0.35697,4.39036,0.0804668,-0.0858798,0.744134,-0.0918561,0.608876,0.585443,0.723194,0.487925,-0.70773,1.26213,-1.42874,0.711276,-0.492448,-0.432108,5 +-1.15019,-0.842277,-0.35697,4.39036,5.00015,0.299398,6.69968,0.39907,0.470144,0.417365,0.488348,0.494036,-0.861204,0.50708,0.00444287,0.473116,-0.565422,-0.643134,2 +-0.177007,-0.37258,-0.35697,-0.19451,-0.495898,-0.122683,-0.240761,-0.13211,-0.882252,-0.920911,-0.839038,-0.887032,0.36659,-0.435318,0.369952,-0.873002,2.25066,-0.590332,2 +0.522039,0.740776,-0.35697,-0.19451,-0.0430403,-0.102863,0.00546292,-0.122286,-0.526205,-0.584756,-0.63993,-0.327883,-0.103425,-1.19037,2.12055,-0.533884,0.0846252,2.50996,6 +1.26221,0.427645,-0.35697,-0.19451,0.0598821,-0.0704061,-0.379262,-0.131544,-0.208965,-0.324712,-0.060475,-0.272884,-0.880388,0.81932,-0.505346,-0.0834521,0.249126,-0.566268,3 +-0.108474,1.74976,-0.35697,-0.19451,0.430402,-0.0702321,0.174742,-0.0887949,-0.439862,-0.495961,-0.606746,-0.181221,-0.151386,-1.47423,2.64957,-0.409627,0.0640501,2.37298,6 +1.74194,0.914738,-0.35697,4.39036,-0.00187138,-0.101704,0.728745,-0.091624,0.415815,0.385653,0.524086,0.310709,-0.611808,1.06344,-1.18827,0.509358,-0.466352,-0.445689,5 +0.0011808,-1.34677,2.41015,-0.19451,-0.475314,-0.11367,-0.0714818,-0.126879,2.2921,2.28207,2.22416,2.35787,-1.95471,1.42677,-0.457252,2.23342,-0.993254,-0.643738,1 +-1.46545,0.323268,-0.35697,-0.19451,-0.41356,-0.112773,-0.594708,-0.137589,-0.955984,-0.933596,-0.98454,-0.932864,0.980487,-0.974642,0.66813,-1.02056,-0.0447915,-0.51553,2 +1.07031,-0.0594483,-0.35697,-0.19451,0.533324,-0.040097,0.5133,0.0173312,0.32365,0.344426,0.347952,0.270988,-0.0746484,0.427601,-0.649625,0.330738,-0.715811,-0.435081,3 +1.28962,0.0449289,-0.35697,-0.19451,-0.557652,-0.125904,3.22176,0.614343,-0.0226949,0.0209565,-0.0272903,-0.0590021,0.414551,-0.0492752,-0.33221,-0.0497992,-0.737965,-0.374858,3 +1.02919,1.14089,-0.35697,-0.19451,-0.290054,-0.103033,0.20552,-0.123074,0.330442,0.350769,0.383689,0.243488,-0.0842406,0.626299,-0.97666,0.36698,-0.582908,-0.394946,5 +-1.3695,0.253683,2.41015,-0.19451,-0.2283,-0.101812,-0.471596,-0.131829,-0.834715,-0.879685,-0.800748,-0.822867,0.270669,-0.458026,0.504613,-0.834172,1.59047,-0.675524,2 +1.646,-1.74688,-0.35697,-0.19451,-0.454729,-0.119166,-0.348484,-0.119347,2.25135,2.23133,2.19608,2.31203,-2.01226,1.47786,-0.486108,2.20495,-0.96795,-0.642815,1 +-0.012526,-0.442164,-0.35697,-0.19451,-0.331223,-0.104763,-0.333095,-0.118171,-0.406876,-0.454734,-0.315742,-0.465378,-0.103425,0.274319,-0.361066,-0.342321,0.0954088,-0.488786,4 +1.67341,-0.268203,2.41015,-0.19451,-0.434145,-0.11367,-0.0868711,-0.106993,-0.590236,-0.613298,-0.542929,-0.618151,0.270669,-0.168494,0.0140616,-0.572714,0.127621,-0.494562,4 +-0.382609,-0.581334,-0.35697,-0.19451,-0.0018712,-0.0701584,0.328632,0.0044841,-0.442772,-0.489618,-0.348926,-0.505099,-0.0650563,0.262965,-0.380303,-0.375974,0.168127,-0.477966,4 +-0.135887,1.36704,2.41015,-0.19451,-0.104794,-0.12194,-0.0099262,-0.0960254,-0.573743,-0.603784,-0.693536,-0.395103,0.193931,-1.26985,1.95703,-0.590835,-0.0742897,2.43574,6 +-0.286662,1.17568,-0.35697,-0.19451,0.492156,-0.0832934,0.374799,-0.0908038,0.681638,0.642526,0.804879,0.564312,-0.909164,1.38135,-1.42874,0.794113,-0.505043,-0.45495,5 +1.42669,-0.37258,-0.35697,-0.19451,-0.372392,-0.111252,1.52897,-0.0479117,0.149993,0.119266,0.235634,0.0754381,-0.400781,0.694424,-0.774668,0.216836,-0.475766,-0.469595,3 +1.56376,0.236287,-0.35697,-0.19451,-0.0430404,-0.096964,0.282465,-0.12166,0.0995446,0.201719,0.0263156,0.08766,0.846197,-0.406932,-0.159074,0.00456322,-1.09863,-0.255668,3 +-1.68475,-0.616126,-0.35697,-0.19451,0.636247,0.0336526,0.0208517,-0.0406066,-0.766804,-0.835287,-0.708852,-0.761758,0.00208865,-0.242297,0.408426,-0.740979,1.43582,-0.667555,2 +-0.615625,-0.633523,-0.35697,4.39036,8.33483,12.6495,11.7165,23.4322,0.796116,0.740835,0.799774,0.836248,-1.14897,0.677393,0.00444287,0.788936,-0.528282,-0.685437,2 +-1.46545,0.253683,-0.35697,-0.19451,-0.372392,-0.114755,-0.440818,-0.13507,-0.820162,-0.727464,-0.864565,-0.847311,1.50805,-0.968965,0.129485,-0.880768,0.512367,0.324065,0 +-0.684159,-0.581334,2.41015,-0.19451,0.842092,-0.060372,0.113186,-0.0930568,0.292605,0.239774,0.396452,0.215989,-0.717322,0.932863,-0.861236,0.379923,-0.434767,-0.497604,3 +-1.24614,2.06289,-0.35697,-0.19451,-0.104794,-0.090769,0.00546284,-0.121316,-0.582474,-0.613298,-0.655246,-0.459267,0.193931,-0.963288,1.43762,-0.645198,-0.322946,2.71689,6 +-0.985708,-0.790088,2.41015,-0.19451,-0.248884,-0.104439,0.0670184,-0.101232,1.82836,1.72393,1.87189,1.85677,-2.43431,1.7901,-0.591914,1.87619,-0.738959,-0.650464,1 +1.4541,1.29745,2.41015,-0.19451,-0.331223,-0.124335,-0.363873,-0.119263,-0.55628,-0.581585,-0.688431,-0.367604,0.222708,-1.33798,2.0436,-0.567537,-0.113836,2.3864,6 +0.206783,-0.355184,2.41015,-0.19451,0.101051,-0.0512461,-0.163816,-0.103331,-0.398145,-0.331055,-0.3719,-0.489822,0.932526,-0.151463,-0.678481,-0.399272,-0.0466664,-0.175689,0 +1.22109,0.340664,-0.35697,-0.19451,-0.660574,-0.12347,-0.548541,-0.137245,-0.953074,-0.930425,-0.97433,-0.938975,0.980487,-0.923548,0.581562,-1.0102,2.02355,-0.403823,4 +-0.245541,-1.78167,-0.35697,-0.19451,-0.454731,-0.115793,-0.348484,-0.13323,2.3503,2.3677,2.24458,2.43425,-1.75327,1.22239,-0.312973,2.25413,-1.06378,-0.651946,1 +0.796175,0.271079,-0.35697,-0.19451,-0.639989,-0.123237,-0.610097,-0.135544,-0.934641,-0.911397,-0.941145,-0.938975,0.970895,-0.810006,0.398808,-0.97655,2.51022,-0.284841,4 +1.74194,-0.824881,-0.35697,-0.19451,-0.063625,-0.101812,-0.517763,-0.134318,0.137381,0.0907244,0.227976,0.0723827,-0.535071,0.717133,-0.678481,0.20907,-0.403036,-0.502224,3 +0.371264,0.549418,-0.35697,-0.19451,-0.516483,-0.113681,2.31381,2.10101,-0.779416,-0.784546,-0.762458,-0.786202,0.587209,-0.526151,0.302621,-0.795342,0.32021,-0.487059,4 +-0.437437,1.87153,-0.35697,-0.19451,0.203973,-0.0731315,0.0670187,-0.086516,-0.648445,-0.686237,-0.759906,-0.471489,0.184339,-1.27553,1.97627,-0.655553,0.255456,2.42938,6 +-1.23243,0.758173,-0.35697,-0.19451,-0.104794,-0.106594,-0.25615,-0.120951,-0.471877,-0.457905,-0.655246,-0.260663,0.510472,-1.61048,2.21673,-0.476933,-0.268889,2.15776,6 +0.98807,-0.00725971,-0.35697,-0.19451,-0.351807,-0.106083,0.159353,-0.113722,0.203351,0.236603,0.220318,0.148769,0.136379,0.279996,-0.611151,0.201304,-0.716652,-0.39825,3 +0.193076,-0.146429,2.41015,-0.19451,0.0804664,-0.105938,-0.471596,-0.129171,0.253799,0.274658,0.27903,0.200712,-0.0170956,0.376507,-0.62077,0.260843,-0.712971,-0.425945,3 +-0.862347,1.74976,-0.35697,-0.19451,-0.351807,-0.103147,-0.0253152,-0.112405,-0.587325,-0.559386,-0.752248,-0.41038,0.731091,-1.58209,1.94741,-0.603779,-0.0785232,2.08569,6 +0.672814,-1.12062,-0.35697,-0.19451,-0.392976,-0.119513,-0.302317,-0.126288,2.22612,2.21865,2.17311,2.27231,-1.87797,1.47219,-0.611151,2.18165,-0.979227,-0.621403,1 +1.23479,-0.685711,-0.35697,-0.19451,-0.578236,-0.12066,-0.56393,-0.134599,-0.522325,-0.565729,-0.445928,-0.566209,0.0308651,0.081298,-0.168693,-0.474344,0.21071,-0.505392,4 +-0.0536464,0.184098,-0.35697,-0.19451,-0.619405,-0.126647,-0.440818,-0.138849,-0.926879,-0.91774,-0.923276,-0.929808,0.836605,-0.736204,0.408426,-0.958429,2.23444,-0.42078,4 +-0.972001,0.166702,-0.35697,-0.19451,0.924429,-0.0892871,-0.317706,-0.11945,-0.408817,-0.36911,-0.422954,-0.425657,0.692723,-0.429641,0.0332989,-0.451046,-0.686009,-0.35003,3 +-0.300369,1.97591,-0.35697,-0.19451,-0.331223,-0.117398,-0.517763,-0.13211,-0.760983,-0.749662,-0.884986,-0.615096,0.721499,-1.45152,1.7358,-0.777221,0.420947,2.14154,6 +0.275317,0.810361,-0.35697,-0.19451,-0.2283,-0.114506,-0.333095,-0.125537,-0.540758,-0.572071,-0.627167,-0.401214,0.155563,-1.02006,1.57228,-0.596013,-0.351165,2.65313,6 +1.28962,-0.755296,-0.35697,-0.19451,-0.228301,-0.119958,-0.486985,-0.124302,0.0694699,0.100238,0.092685,0.0112735,0.222708,0.211871,-0.582295,0.0718691,-0.630412,-0.388103,3 +-0.84864,-1.92084,-0.35697,-0.19451,-0.475313,-0.122931,-0.348484,-0.122979,2.49389,2.56749,2.32627,2.59619,-1.35999,0.927185,-0.207167,2.33697,-1.18729,-0.645511,1 +0.289023,-1.06843,-0.35697,-0.19451,-0.372391,-0.122683,-0.394651,-0.134126,1.64015,1.50828,1.77489,1.58789,-2.53024,2.24427,-1.26522,1.77782,-0.579519,-0.591616,1 +1.39927,-0.250806,-0.35697,-0.19451,-0.269469,-0.105385,-0.56393,-0.133545,-0.398145,-0.410336,-0.354032,-0.434824,0.213116,-0.0322439,-0.159074,-0.381151,-0.261715,-0.465831,4 +1.646,0.0971174,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.39691,-0.181222,-0.35697,-0.19451,-0.475314,-0.120949,-0.486985,-0.131859,-0.933671,-0.933596,-0.93604,-0.920642,0.759868,-0.781621,0.562325,-0.971373,2.42911,-0.566003,2 +-0.42373,1.59319,-0.35697,-0.19451,0.450987,-0.0136694,-0.225372,-0.120964,-0.520384,-0.527673,-0.685878,-0.30955,0.356998,-1.531,2.23597,-0.518352,-0.0985556,2.24423,6 +-0.547091,1.73236,2.41015,-0.19451,-0.0430403,-0.103961,-0.133038,-0.114468,-0.584415,-0.575242,-0.749695,-0.388992,0.558433,-1.58209,2.12055,-0.585658,-0.0165128,2.1545,6 +1.53634,1.17568,-0.35697,-0.19451,-0.331223,-0.120371,-0.25615,-0.122979,-0.778446,-0.784546,-0.890092,-0.630373,0.577617,-1.38339,1.76466,-0.790164,0.477101,2.25538,6 +0.837295,1.12349,-0.35697,-0.19451,-0.0224562,-0.0992009,-0.133038,-0.118838,0.338203,0.350769,0.396452,0.252655,-0.160978,0.666039,-0.967041,0.379923,-0.578684,-0.40803,5 +1.39927,-0.0942407,-0.35697,-0.19451,-0.681158,-0.126895,-0.379262,-0.138345,-0.823073,-0.736977,-0.862012,-0.850366,1.4505,-0.934902,0.129485,-0.885946,0.520092,0.260183,0 +-0.917174,-0.250806,-0.35697,-0.19451,-0.372392,-0.121692,0.113186,-0.111643,-0.857998,-0.895541,-0.82117,-0.856477,0.356998,-0.458026,0.418045,-0.854882,1.91665,-0.595916,2 +1.13884,-1.01624,-0.35697,-0.19451,-0.187132,-0.0997301,6.65351,0.294054,0.514771,0.566415,0.465374,0.51848,0.0500494,0.0926521,-0.207167,0.449818,-1.00636,-0.393387,3 +-1.5751,0.845154,-0.35697,-0.19451,0.88326,-0.0294418,1.17503,-0.0150164,0.202381,0.214404,0.24074,0.142658,-0.0554641,0.421924,-0.659244,0.222013,-0.651961,-0.446218,5 +-1.68475,-0.59873,-0.35697,-0.19451,-0.248885,-0.0879971,0.0362408,-0.0807222,-0.473817,-0.400823,-0.466349,-0.547876,1.04763,-0.338807,-0.47649,-0.495054,-0.106813,-0.117332,0 +-1.24614,0.236287,-0.35697,-0.19451,-0.516483,-0.123592,-0.363873,-0.13211,-0.817252,-0.714778,-0.867118,-0.847311,1.59438,-1.00303,0.100629,-0.870414,0.642725,0.400318,0 +-1.21872,-1.78167,-0.35697,-0.19451,-0.331224,-0.10947,-0.302317,-0.131859,2.43083,2.50723,2.2599,2.53508,-1.28326,0.853383,-0.159074,2.26967,-1.19748,-0.648395,1 +-0.177007,-0.0594483,2.41015,-0.19451,-0.207716,-0.104279,-0.0560933,-0.111123,-0.405906,-0.435707,-0.356584,-0.431768,0.0596415,-0.00385843,-0.053269,-0.38374,-0.175826,-0.527083,4 +-0.738986,0.984323,2.41015,-0.19451,-0.248885,-0.114755,0.159353,-0.108432,-0.385533,-0.413508,-0.522508,-0.190387,0.0596415,-1.23011,2.02436,-0.417393,-0.435858,2.46984,6 +0.576866,0.201495,-0.35697,-0.19451,-0.475314,-0.124913,-0.502374,-0.137589,-0.153666,-0.251773,-0.0247377,-0.211775,-0.765282,0.734164,-0.47649,-0.0472106,0.0711434,-0.559687,4 +0.220489,-1.85126,2.41015,8.97523,0.677416,-0.0280963,0.713356,-0.10074,0.19753,0.214404,0.225424,0.145714,-0.00750348,0.348121,-0.582295,0.206481,-0.69514,-0.431719,3 +0.864709,1.15829,-0.35697,-0.19451,0.0187132,-0.105553,-0.10226,-0.121402,0.310068,0.325398,0.363268,0.228211,-0.113017,0.609268,-0.918948,0.34627,-0.589487,-0.403414,5 +0.892122,-1.36416,-0.35697,-0.19451,-0.454729,-0.112443,-0.456207,-0.130916,1.88366,1.80004,1.89997,1.92399,-2.29043,1.65385,-0.505346,1.90466,-0.79981,-0.652875,1 +0.151956,-0.807484,5.17726,-0.19451,-0.00187127,-0.0939433,0.174742,-0.0446371,-0.278816,-0.235917,-0.223846,-0.382881,0.615985,0.138069,-0.851617,-0.249128,-0.0598993,-0.26271,0 +-1.67105,-0.790088,-0.35697,4.39036,4.79431,7.81461,11.3318,11.1222,1.11627,1.08333,1.08567,1.17235,-1.20652,0.711456,0.00444287,1.07887,-0.688363,-0.678654,2 +1.55005,-1.1902,-0.35697,-0.19451,-0.434144,-0.116367,-0.394651,-0.130687,2.00687,1.94592,2.0225,2.02482,-2.18492,1.75036,-0.774668,2.02892,-0.836581,-0.619154,1 +-1.10907,0.584211,-0.35697,-0.19451,-0.392976,-0.120619,0.143964,-0.0106301,-0.334115,-0.388138,-0.458691,-0.129278,-0.21853,-1.10522,2.09169,-0.365619,-0.336604,2.56721,6 +-0.930881,-0.111637,-0.35697,-0.19451,-0.537067,-0.122683,-0.56393,-0.139101,-0.80464,-0.71795,-0.844144,-0.832034,1.44091,-0.923548,0.119867,-0.865236,0.365594,0.245222,0 +1.61858,0.740776,-0.35697,-0.19451,-0.475314,-0.119958,-0.471596,-0.134567,-0.62031,-0.616469,-0.736932,-0.4776,0.539248,-1.28688,1.63961,-0.66073,-0.422148,2.34718,6 +-0.944588,2.08028,-0.35697,-0.19451,0.121635,-0.00970527,0.0362408,-0.126065,-0.800759,-0.790889,-0.902855,-0.679261,0.740683,-1.33798,1.52419,-0.831583,0.431625,2.19792,6 +-0.492264,1.69757,-0.35697,-0.19451,-0.187131,-0.0941911,-0.271539,-0.113218,-0.601877,-0.632325,-0.729274,-0.413436,0.213116,-1.34365,2.06283,-0.606367,0.0837397,2.38143,6 +-0.451143,-0.337787,-0.35697,-0.19451,-0.0636245,-0.0952811,-0.163816,-0.116734,1.66246,1.55268,1.73916,1.65817,-2.34799,1.87526,-0.822761,1.74157,-0.676671,-0.623363,1 +-0.149594,0.0971174,2.41015,-0.19451,0.0598822,-0.101812,-0.456208,-0.125104,0.664175,0.610813,0.7768,0.573478,-1.02427,1.2962,-1.16903,0.765638,-0.529603,-0.494451,3 +0.275317,-0.581334,-0.35697,-0.19451,-0.331223,-0.114425,-0.117649,-0.13337,-0.319562,-0.261287,-0.274899,-0.425657,0.788644,0.0358812,-0.851617,-0.300902,-0.0275699,-0.221987,0 +-1.41062,0.166702,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,2 +-1.04054,-1.41635,-0.35697,-0.19451,0.265726,-0.106594,-0.302317,-0.124963,0.57201,0.509332,0.697667,0.475703,-1.03386,1.30755,-1.17865,0.685389,-0.455357,-0.493639,3 +-1.61622,-1.83386,-0.35697,-0.19451,-0.2283,-0.111039,-0.41004,-0.133811,2.66075,2.86876,2.37477,2.77341,-0.276083,0.274319,-0.18793,2.38616,-1.44778,-0.551152,1 +-1.68475,-0.442164,-0.35697,-0.19451,0.0392976,-0.112443,-0.379262,-0.130788,-0.512623,-0.413508,-0.537824,-0.572319,1.31621,-0.588599,-0.322591,-0.567537,-0.307343,0.00159206,0 +0.960656,-0.424768,-0.35697,-0.19451,0.430402,-0.0277916,0.0977967,-0.0610738,-0.793968,-0.838458,-0.749695,-0.795368,0.241892,-0.355838,0.360333,-0.782398,1.24833,-0.618628,2 +1.35815,0.0101365,-0.35697,-0.19451,-0.125378,-0.0984573,-0.148427,-0.119999,0.169396,0.112923,0.27903,0.0907154,-0.650177,0.870414,-0.822761,0.260843,-0.345458,-0.494976,3 +-0.12218,1.52361,-0.35697,-0.19451,-0.0636248,-0.102119,-0.225372,-0.11114,-0.610609,-0.61964,-0.731826,-0.450101,0.414551,-1.30959,1.80313,-0.637432,-0.225777,2.36514,6 +-0.684159,-1.29458,-0.35697,-0.19451,-0.392975,-0.118637,-0.348484,-0.128269,2.3668,2.40258,2.27266,2.41898,-1.5998,1.31323,-0.62077,2.28261,-1.07089,-0.605009,1 +0.179369,1.12349,-0.35697,-0.19451,0.0598824,-0.0970552,-0.363873,-0.127414,0.609846,0.591785,0.705325,0.506258,-0.659769,1.13724,-1.26522,0.693155,-0.557935,-0.442826,5 +1.26221,0.375456,-0.35697,-0.19451,-0.495898,-0.123674,-0.471596,-0.139101,-0.831804,-0.756005,-0.864565,-0.856477,1.36417,-0.90084,0.158341,-0.888535,0.601204,0.190204,0 +1.57746,1.15829,-0.35697,-0.19451,-0.125378,-0.110578,-0.302317,-0.121545,-0.443742,-0.483276,-0.611851,-0.199553,0.00208865,-1.48558,2.51491,-0.425159,-0.0770191,2.33938,6 +0.960656,0.653796,-0.35697,-0.19451,0.0804664,-0.0870061,2.23687,1.41262,0.116037,0.0907244,0.159054,0.08766,-0.324044,0.382184,-0.322591,0.141764,-0.578981,-0.617089,5 +-1.5751,1.73236,2.41015,-0.19451,-0.145962,-0.103454,0.313243,-0.090029,-0.576653,-0.54353,-0.719063,-0.431768,0.76946,-1.42313,1.63961,-0.6219,-0.421479,2.11853,6 +-0.286662,-0.0246559,-0.35697,-0.19451,-0.537067,-0.126647,-0.533152,-0.137337,-0.8027,-0.705265,-0.849249,-0.832034,1.53683,-0.968965,0.100629,-0.862648,0.408081,0.343471,0 +-0.314075,-1.62511,-0.35697,-0.19451,-0.351806,-0.10769,-0.502374,-0.127041,2.31441,2.34867,2.22416,2.36398,-1.57102,1.2962,-0.62077,2.23342,-1.06578,-0.603812,1 +-0.601918,1.83674,2.41015,-0.19451,0.203973,-0.1098,-0.10226,-0.0854454,-0.684341,-0.724292,-0.770116,-0.535654,0.193931,-1.1336,1.72618,-0.709915,0.303312,2.5369,6 +0.179369,0.166702,-0.35697,-0.19451,-0.454729,-0.117398,-0.348484,-0.136582,-0.801729,-0.714778,-0.833933,-0.838144,1.44091,-0.872454,0.0332989,-0.860059,0.575132,0.18458,0 +-0.7664,-0.96405,-0.35697,-0.19451,-0.392976,-0.108069,-0.456207,-0.130246,0.504099,0.468106,0.615982,0.399317,-0.736506,1.15995,-1.22674,0.60255,-0.485598,-0.457275,3 +-0.149594,0.375456,2.41015,-0.19451,0.101051,-0.0980453,-0.394651,-0.128282,0.630219,0.560073,0.74872,0.549034,-1.14897,1.30755,-1.06323,0.737162,-0.48072,-0.519793,3 +-1.25984,0.323268,-0.35697,-0.19451,-0.660574,-0.126647,-0.640875,-0.139668,-0.969566,-0.936767,-1.01262,-0.938975,1.086,-1.08251,0.745079,-1.04903,-1.38313,-0.473359,2 +-0.656745,0.0101365,-0.35697,-0.19451,-0.516483,-0.124583,-0.502374,-0.139101,-0.836655,-0.740149,-0.884986,-0.862588,1.55601,-1.0087,0.148723,-0.891123,0.740252,0.394884,0 +-1.23243,0.201495,-0.35697,-0.19451,-0.619405,-0.124665,-0.610097,-0.138156,-0.964715,-0.936767,-0.999856,-0.938975,1.03804,-1.02574,0.696986,-1.03609,-0.409793,-0.473359,2 +-1.10907,1.90632,-0.35697,-0.19451,0.121635,-0.0794451,-0.0868712,-0.117595,-0.591206,-0.578414,-0.7548,-0.401214,0.596801,-1.57641,2.07245,-0.596013,-0.0206682,2.14407,6 +-0.917174,0.392853,2.41015,-0.19451,0.595078,0.0300188,0.020852,-0.0610108,-0.374861,-0.41985,-0.290215,-0.428713,-0.103425,0.257288,-0.33221,-0.316434,0.0128433,-0.49308,3 +-1.32838,1.12349,-0.35697,-0.19451,-0.166547,-0.0939433,0.744134,0.183021,-0.185681,-0.16932,-0.177898,-0.20872,0.299445,-0.100369,-0.130218,-0.202532,-0.661515,-0.466351,5 +0.741348,0.166702,-0.35697,-0.19451,0.183389,-0.0742449,-0.425429,-0.127414,-0.00717237,-0.0234413,0.0492896,-0.0590021,-0.141793,0.37083,-0.486108,0.0278614,-0.497113,-0.471532,3 +-0.656745,-1.52073,-0.35697,-0.19451,-0.495898,-0.12347,-0.379262,-0.129171,1.96127,1.86664,1.97911,2.00954,-2.4535,1.72766,-0.466871,1.98491,-0.790827,-0.662954,1 +-0.656745,-0.790088,-0.35697,-0.19451,0.121636,-0.0751136,-0.117649,-0.0404176,-0.326353,-0.251773,-0.297873,-0.428713,0.942118,-0.0776607,-0.813143,-0.3242,-0.109185,-0.160192,0 +-1.02683,-0.250806,-0.35697,-0.19451,0.121635,-0.0998895,-0.117649,-0.039662,-0.822103,-0.863828,-0.79309,-0.80759,0.289853,-0.480735,0.52385,-0.826406,1.46223,-0.680173,2 +0.878415,-0.285599,-0.35697,-0.19451,-0.331223,-0.098568,-0.379262,-0.133055,2.53075,2.65311,2.32116,2.63591,-0.947533,0.677393,-0.197549,2.3318,-1.28362,-0.617657,1 +-0.0262328,-0.337787,-0.35697,-0.19451,0.14222,-0.0803166,0.436355,-0.106164,-0.396205,-0.350082,-0.356584,-0.483711,0.740683,-0.0606295,-0.640007,-0.38374,-0.0240795,-0.236772,0 +-0.396316,0.253683,-0.35697,-0.19451,-0.434145,-0.112883,-0.41004,-0.128059,-0.940462,-0.933596,-0.951356,-0.923697,0.827012,-0.844069,0.600799,-0.986905,2.41289,-0.554148,2 +-0.231835,-1.12062,-0.35697,-0.19451,-0.516482,-0.123592,-0.379262,-0.135322,2.33381,2.3899,2.2114,2.40064,-1.38877,1.0975,-0.466871,2.22048,-1.1248,-0.611997,1 +-0.42373,0.35806,-0.35697,-0.19451,-0.537067,-0.124665,-0.533152,-0.137337,-0.940462,-0.936767,-0.93604,-0.938975,0.798236,-0.741881,0.45652,-0.971373,2.51022,-0.473359,2 +0.892122,-0.476957,-0.35697,-0.19451,-0.557652,-0.122931,-0.41004,-0.133055,1.40828,1.23238,1.64215,1.28234,-2.74126,2.71547,-1.85196,1.6432,-0.367724,-0.554625,1 +-1.61622,0.532022,-0.35697,4.39036,0.430402,-0.0418583,0.390187,-0.103135,0.357606,0.334912,0.455164,0.258766,-0.496703,0.944217,-1.1017,0.439463,-0.462302,-0.433679,3 +-0.834933,0.914738,-0.35697,-0.19451,0.162804,-0.106817,-0.394651,-0.124546,0.359546,0.376139,0.416874,0.270988,-0.141793,0.677393,-1.00552,0.400633,-0.58183,-0.399902,5 +1.50893,-1.76427,-0.35697,-0.19451,-0.269469,-0.118637,-0.394651,-0.131859,2.63456,2.83387,2.38243,2.71536,-0.333636,0.478695,-0.47649,2.39392,-1.38951,-0.506885,1 +0.343851,-0.181222,-0.35697,-0.19451,-0.516483,-0.12161,-0.456207,-0.136645,-0.824043,-0.733806,-0.862012,-0.856477,1.48887,-0.929225,0.0813921,-0.885946,0.667831,0.272005,0 +-0.012526,-0.389976,-0.35697,4.39036,0.553909,0.496466,1.11347,0.871472,-0.703744,-0.771861,-0.657799,-0.685371,-0.045872,-0.270682,0.504613,-0.689205,1.1966,-0.702205,2 +-0.917174,-0.0246559,-0.35697,-0.19451,0.0598821,-0.0779115,1.02114,-0.0888888,-0.0750833,-0.102723,0.00334163,-0.1415,-0.189754,0.461663,-0.591914,-0.018735,-0.338318,-0.460703,3 +1.52263,-1.48594,2.41015,-0.19451,-0.207716,-0.0940678,0.143964,-0.101163,-0.592176,-0.648182,-0.509744,-0.630373,-0.0266877,0.0642667,-0.082125,-0.539062,0.527089,-0.53723,4 +-1.60251,0.671192,2.41015,-0.19451,-0.104794,-0.0813076,-0.579319,-0.137904,-0.751281,-0.746491,-0.739484,-0.761758,0.654354,-0.537506,0.254528,-0.772044,0.253657,-0.44136,3 +-1.64363,1.50621,-0.35697,4.39036,0.101051,-0.09007,0.559466,-0.0957353,0.373128,0.360282,0.462822,0.274043,-0.419965,0.904477,-1.11132,0.447229,-0.478853,-0.425797,5 +-0.42373,-0.337787,-0.35697,-0.19451,1.74781,-0.0956279,-0.394651,-0.131391,0.489547,0.458592,0.582797,0.402372,-0.678953,1.0237,-1.05361,0.568898,-0.542341,-0.467596,3 +-1.43803,0.236287,-0.35697,-0.19451,-0.660574,-0.126647,-0.594708,-0.139857,-0.964715,-0.936767,-0.999856,-0.938975,1.03804,-1.02574,0.696986,-1.03609,1.05021,-0.473359,2 +1.35815,-0.494353,-0.35697,-0.19451,-0.248885,-0.116737,-0.379262,-0.127765,-0.878372,-0.911397,-0.849249,-0.871755,0.414551,-0.526151,0.475757,-0.883357,2.02645,-0.638108,2 +1.33074,-1.06843,-0.35697,-0.19451,-0.598821,-0.121713,-0.486985,-0.130687,-0.8027,-0.81943,-0.752248,-0.838144,0.50088,-0.321776,0.0429175,-0.784987,1.11215,-0.434375,4 +1.646,-0.23341,-0.35697,-0.19451,1.10969,-0.0505429,-0.179205,-0.109405,-0.0770236,-0.105894,0.0058943,-0.14761,-0.199346,0.490049,-0.630388,-0.0161463,-0.321251,-0.456701,3 +-1.04054,-1.45114,-0.35697,-0.19451,-0.331223,-0.117906,-0.440818,-0.127884,2.30665,2.31696,2.23693,2.35481,-1.78205,1.42677,-0.630388,2.24637,-1.01772,-0.615263,1 +-1.30096,-1.1728,-0.35697,-0.19451,-0.125378,-0.117728,-0.25615,-0.118445,-0.349637,-0.305684,-0.29532,-0.453156,0.68313,0.075621,-0.813143,-0.321612,0.039713,-0.249744,0 +0.878415,-0.96405,-0.35697,-0.19451,-0.290054,-0.114292,-0.379262,-0.131091,-0.790088,-0.775033,-0.777774,-0.810645,0.779052,-0.565891,0.177579,-0.810874,0.469792,-0.270076,4 +-1.56139,-0.268203,-0.35697,-0.19451,-0.207716,-0.10947,-0.286928,-0.123987,-0.507772,-0.39448,-0.530166,-0.584541,1.44091,-0.565891,-0.486108,-0.559771,-0.167039,0.0393207,0 +-1.39691,-1.1902,-0.35697,-0.19451,0.121635,-0.0453826,-0.179205,-0.126821,-0.356428,-0.31837,-0.300426,-0.456212,0.63517,0.081298,-0.774668,-0.326789,0.0358165,-0.264193,0 +-1.34208,-1.06843,-0.35697,-0.19451,-0.290053,-0.114755,-0.209982,-0.1175,2.31247,2.3677,2.18842,2.38231,-1.37918,1.06911,-0.428397,2.19718,-1.12679,-0.615617,1 +0.165662,1.01912,-0.35697,-0.19451,-0.0224557,-0.0413358,0.328632,0.0165755,-0.0556802,-0.0392977,-0.029843,-0.101779,0.193931,0.126715,-0.409159,-0.0523879,-0.618182,-0.413003,5 +-0.0810599,1.19308,2.41015,-0.19451,0.224557,-0.0808311,1.03653,-0.100618,0.589473,0.563244,0.702772,0.472648,-0.717322,1.23943,-1.38064,0.690566,-0.499749,-0.436979,5 +-0.396316,0.201495,-0.35697,-0.19451,-0.557652,-0.125904,-0.625486,-0.139605,-0.920088,-0.908226,-0.913066,-0.929808,0.855789,-0.707818,0.341096,-0.948074,2.19389,-0.367839,4 +1.57746,1.24527,-0.35697,-0.19451,-0.00187138,-0.101276,-0.163816,-0.111105,0.309098,0.296857,0.378584,0.234322,-0.362413,0.717133,-0.851617,0.361802,-0.554205,-0.453071,5 +-0.834933,1.0887,-0.35697,-0.19451,0.101051,-0.0839504,1.22119,0.771025,-0.164338,-0.150292,-0.144713,-0.199553,0.261076,-0.00385843,-0.255261,-0.168879,-0.657732,-0.44224,5 +0.713934,-1.57292,-0.35697,-0.19451,-0.0842092,-0.0921299,0.528689,-0.0896037,-0.74158,-0.752834,-0.713958,-0.755647,0.50088,-0.423964,0.216053,-0.746157,0.526522,-0.44859,4 +-0.42373,2.13247,-0.35697,-0.19451,0.162804,-0.0911999,0.0824078,-0.127041,-0.372921,-0.397651,-0.56335,-0.117056,0.0788258,-1.57641,2.59186,-0.355265,-0.228169,2.27899,6 +1.22109,-0.0420521,-0.35697,-0.19451,-0.598821,-0.125904,-0.640875,-0.138912,-0.940462,-0.936767,-0.938592,-0.935919,0.798236,-0.758912,0.485376,-0.973961,2.51022,-0.498104,2 +0.727641,-1.53812,-0.35697,-0.19451,-0.537067,-0.119632,-0.56393,-0.135905,-0.6174,-0.641839,-0.573561,-0.63954,0.280261,-0.213911,0.0813921,-0.603779,0.14189,-0.511498,4 +-0.780106,0.584211,-0.35697,-0.19451,1.45962,0.192549,-0.286928,-0.111895,-0.408817,-0.454734,-0.325952,-0.459267,-0.0842406,0.217548,-0.284117,-0.352676,0.0525112,-0.499182,3 +-0.615625,-0.807484,-0.35697,-0.19451,-0.187132,-0.103609,-0.486985,-0.130687,0.577831,0.522017,0.684904,0.497092,-0.976309,1.18833,-1.03437,0.672445,-0.508972,-0.504843,3 +-0.396316,-0.685711,-0.35697,-0.19451,-0.145962,-0.0988159,-0.225372,-0.101315,-0.345757,-0.264458,-0.325952,-0.44399,1.01886,-0.151463,-0.765049,-0.352676,-0.123087,-0.152698,0 +1.28962,0.914738,-0.35697,4.39036,0.0804668,-0.0858798,0.744134,-0.0918561,0.608876,0.585443,0.723194,0.487925,-0.70773,1.26213,-1.42874,0.711276,-0.492448,-0.432108,5 +-0.999415,1.0713,-0.35697,-0.19451,-0.0842092,-0.095595,-0.41004,-0.123987,-0.466056,-0.511817,-0.596535,-0.260663,-0.0362799,-1.25282,2.15902,-0.476933,-0.133306,2.46855,6 +0.357557,-0.59873,-0.35697,-0.19451,2.40651,-0.0252417,-0.471596,-0.133545,-0.140084,-0.156635,-0.0732383,-0.202609,-0.0362799,0.33109,-0.524583,-0.0963956,-0.331219,-0.442392,3 +-0.656745,0.932135,-0.35697,-0.19451,-0.207716,-0.0975771,-0.0714821,-0.106592,0.297456,0.325398,0.347952,0.206823,0.0116809,0.580883,-0.995897,0.330738,-0.567047,-0.373722,5 +-0.286662,0.0101365,-0.35697,-0.19451,-0.475314,-0.123922,-0.486985,-0.134881,-0.808521,-0.71795,-0.846696,-0.8412,1.47928,-0.917871,0.0717735,-0.867825,0.539404,0.262116,0 +-1.5751,-1.08582,2.41015,-0.19451,0.121635,-0.056284,0.190131,-0.0179983,-0.473817,-0.403994,-0.458691,-0.553987,1.01886,-0.287713,-0.534202,-0.487288,-0.032283,-0.147741,0 +-0.670452,0.184098,2.41015,-0.19451,0.245142,-0.0951949,-0.271539,-0.130916,0.311038,0.258802,0.434742,0.209878,-0.726914,1.08047,-1.1017,0.418754,-0.375726,-0.468518,3 +-0.0810599,-0.146429,-0.35697,4.39036,0.203973,-0.0922347,0.713356,-0.090243,-0.772625,-0.835287,-0.719063,-0.767869,0.0596415,-0.276359,0.408426,-0.751334,1.49071,-0.665289,2 +0.371264,0.549418,-0.35697,-0.19451,-0.516483,-0.113681,2.31381,2.10101,-0.779416,-0.784546,-0.762458,-0.786202,0.587209,-0.526151,0.302621,-0.795342,0.32021,-0.487059,4 +1.30333,0.445041,-0.35697,-0.19451,-0.660574,-0.12347,-0.640875,-0.137245,-0.969566,-0.936767,-1.01262,-0.938975,1.086,-1.08251,0.745079,-1.04903,-1.38313,-0.473359,4 +-0.958295,-0.755296,2.41015,-0.19451,-0.0224559,-0.0314254,-0.163816,-0.121468,-0.785237,-0.854314,-0.729274,-0.777035,0.0116809,-0.270682,0.446901,-0.761689,1.52595,-0.682454,2 +-0.327782,0.114514,-0.35697,-0.19451,-0.475314,-0.12194,-0.486985,-0.130347,-0.819192,-0.724292,-0.862012,-0.850366,1.52724,-0.957611,0.0910108,-0.875591,0.65045,0.31799,0 +-0.574504,-0.476957,-0.35697,-0.19451,-0.516483,-0.117063,-0.486985,-0.131391,-0.457324,-0.502303,-0.36169,-0.523432,-0.0362799,0.262965,-0.409159,-0.388918,0.200918,-0.46798,4 +1.20738,-1.90344,-0.35697,-0.19451,-0.310638,-0.114506,-0.209982,-0.1175,2.09418,2.03788,2.0659,2.15926,-2.21369,1.52896,-0.370685,2.07293,-0.893688,-0.664895,1 +1.44039,-0.111637,-0.35697,-0.19451,0.51274,-0.106594,-0.271539,-0.125537,0.052007,0.0209565,0.128422,-0.0101147,-0.324044,0.552497,-0.611151,0.108111,-0.40238,-0.48102,3 +-0.204421,0.879946,-0.35697,-0.19451,-0.557652,-0.125904,-0.194594,-0.137589,-0.6174,-0.625983,-0.726721,-0.471489,0.424143,-1.23579,1.66847,-0.655553,-0.296078,2.42067,6 +1.63229,-0.720504,-0.35697,-0.19451,-0.475314,-0.10456,0.0824077,-0.0970934,-0.564041,-0.603784,-0.499534,-0.596763,0.0980101,-0.0322439,-0.0436503,-0.528707,0.239624,-0.522693,4 +-1.5751,1.45402,-0.35697,-0.19451,0.265726,-0.0981714,0.190131,-0.0890142,0.394472,0.376139,0.475585,0.310709,-0.48711,0.864737,-0.97666,0.460173,-0.558926,-0.453272,5 +-1.45174,-1.1902,-0.35697,-0.19451,-0.166547,-0.0642122,-0.317706,-0.125498,-0.419488,-0.350082,-0.402532,-0.502044,0.970895,-0.230942,-0.582295,-0.430337,-0.0968078,-0.175702,0 +-0.286662,-1.43375,-0.35697,-0.19451,-0.557652,-0.12,-0.440818,-0.130192,1.96612,1.88884,1.95613,2.03093,-2.30002,1.54599,-0.312973,1.96161,-0.842718,-0.674065,1 +1.63229,1.22787,-0.35697,-0.19451,-0.0636248,-0.101812,-0.0407042,-0.105525,0.332382,0.331741,0.401558,0.246544,-0.276083,0.734164,-0.967041,0.385101,-0.552057,-0.426406,5 +0.0834216,-1.88605,2.41015,-0.19451,-0.372391,-0.103854,-0.148427,-0.103393,2.43859,2.47869,2.32372,2.51064,-1.61898,1.23375,-0.466871,2.33438,-1.09675,-0.622566,1 +-0.0262328,1.22787,-0.35697,-0.19451,0.245142,-0.0875122,1.85214,-0.00901707,0.622458,0.613984,0.705325,0.524591,-0.583032,1.06344,-1.21713,0.693155,-0.589159,-0.434021,5 +-0.903467,-0.424768,-0.35697,-0.19451,-0.41356,-0.108809,-0.394651,-0.134126,-0.917178,-0.933596,-0.887539,-0.926753,0.596801,-0.554537,0.341096,-0.922188,2.44939,-0.509175,2 +-0.917174,-1.81646,-0.35697,-0.19451,-0.104794,-0.117976,-0.256151,-0.118445,2.43277,2.51675,2.26245,2.52897,-1.21611,0.85906,-0.236023,2.27226,-1.20486,-0.632787,1 +-0.876054,-0.0768445,-0.35697,-0.19451,-0.392976,-0.108726,-0.379262,-0.123987,-0.938521,-0.933596,-0.941145,-0.929808,0.807828,-0.787298,0.52385,-0.97655,2.4407,-0.498402,2 +1.41298,-1.79907,-0.35697,-0.19451,-0.310638,-0.116367,-0.440818,-0.127372,2.30374,2.31696,2.21395,2.37314,-1.75327,1.29052,-0.428397,2.22307,-1.04245,-0.637473,1 +1.37186,1.71496,2.41015,-0.19451,-0.145963,-0.116655,-0.179205,-0.110951,-0.603818,-0.629154,-0.701194,-0.456212,0.261076,-1.14495,1.67809,-0.642609,-0.180307,2.5368,6 +0.508332,-0.511749,-0.35697,-0.19451,2.85937,0.748189,-0.517763,-0.135889,-0.567922,-0.632325,-0.468902,-0.618151,-0.122609,0.19484,-0.207167,-0.497642,0.756433,-0.504654,4 +0.494625,0.218891,-0.35697,-0.19451,-0.475314,-0.122931,-0.548541,-0.138912,-0.823073,-0.733806,-0.867118,-0.847311,1.47928,-0.968965,0.158341,-0.883357,0.47664,0.301788,0 +1.26221,-1.74688,-0.35697,-0.19451,-0.310638,-0.11367,-0.348484,-0.130858,2.28918,2.2567,2.23948,2.35481,-2.15614,1.54599,-0.457252,2.24896,-0.949288,-0.652061,1 +-0.711572,-1.60771,-0.35697,-0.19451,-0.495898,-0.117153,-0.425429,-0.134318,2.35224,2.36135,2.27266,2.41286,-1.83001,1.39838,-0.534202,2.28261,-1.02684,-0.628947,1 +0.809882,-1.88605,-0.35697,-0.19451,-0.537067,-0.121692,-0.456208,-0.138156,2.71702,2.8973,2.43348,2.85285,-0.57344,0.336767,0.00444287,2.4457,-1.40957,-0.624832,1 +1.39927,0.149306,-0.35697,-0.19451,1.76839,-0.0964823,-0.302317,-0.12298,0.045216,0.0114426,0.115659,-0.00705928,-0.343228,0.50708,-0.514964,0.0951673,-0.442928,-0.49609,3 +-1.13648,-1.15541,-0.35697,-0.19451,-0.187131,-0.105553,-0.394651,-0.133963,0.750519,0.759863,0.809984,0.662086,-0.525479,1.01234,-1.18827,0.799291,-0.701315,-0.432143,3 +-1.24614,-0.129033,-0.35697,-0.19451,1.43904,-0.0290756,-0.533152,-0.135429,0.627309,0.560073,0.741062,0.549034,-1.12019,1.27349,-1.03437,0.729396,-0.497826,-0.516973,3 +-0.163301,-0.163825,-0.35697,-0.19451,-0.351807,-0.115994,-0.579319,-0.13866,-0.294338,-0.337397,-0.21874,-0.340104,-0.151386,0.262965,-0.293735,-0.243951,-0.144391,-0.511114,4 +-1.53398,0.445041,-0.35697,-0.19451,-0.372392,-0.1098,-0.394651,-0.119012,-0.825983,-0.81943,-0.813512,-0.838144,0.731091,-0.594277,0.273765,-0.847116,0.706368,-0.418169,0 +-0.917174,-1.31197,-0.35697,-0.19451,0.14222,-0.121713,-0.594708,-0.135905,0.0995446,0.0748682,0.189686,0.0143289,-0.30486,0.68307,-0.851617,0.170239,-0.384462,-0.44381,3 +-0.300369,1.61059,-0.35697,-0.19451,-0.372392,-0.112773,-0.0714823,-0.120712,-0.589265,-0.625983,-0.701194,-0.413436,0.145971,-1.23011,1.93779,-0.606367,0.0210363,2.46577,6 +0.165662,1.01912,-0.35697,-0.19451,-0.0224557,-0.0413358,0.328632,0.0165755,-0.0556802,-0.0392977,-0.029843,-0.101779,0.193931,0.126715,-0.409159,-0.0523879,-0.618182,-0.413003,5 +-0.300369,-1.03363,-0.35697,-0.19451,-0.454729,-0.111717,-0.302318,-0.124546,1.87881,1.81272,1.88466,1.91483,-2.12737,1.58005,-0.54382,1.88913,-0.832625,-0.642285,1 +0.98807,0.653796,-0.35697,-0.19451,0.0392975,-0.00342878,2.51387,1.55394,0.139321,0.116095,0.171818,0.12127,-0.324044,0.33109,-0.236023,0.154707,-0.66512,-0.668249,5 +-0.821227,0.914738,-0.35697,-0.19451,0.368649,-0.094514,-0.25615,-0.120294,0.332382,0.35394,0.386242,0.243488,-0.0746484,0.631976,-0.995897,0.369568,-0.578627,-0.390081,5 +1.38557,-0.23341,-0.35697,-0.19451,-0.578236,-0.125326,-0.533152,-0.136582,-0.926879,-0.933596,-0.913066,-0.926753,0.692723,-0.668079,0.437282,-0.948074,2.41289,-0.513213,2 +0.796175,0.584211,-0.35697,-0.19451,-0.454729,-0.117906,-0.0868711,-0.129618,-0.455384,-0.467419,-0.586324,-0.282051,0.261076,-1.24714,1.85122,-0.495054,-0.493656,2.43837,6 +-0.368903,0.201495,-0.35697,-0.19451,-0.475314,-0.123922,-0.379262,-0.133811,-0.821133,-0.724292,-0.867118,-0.850366,1.54642,-0.980319,0.110248,-0.87818,0.606997,0.372425,0 +-1.38321,1.59319,5.17726,-0.19451,-0.392976,-0.109254,0.0362408,-0.118763,-0.497101,-0.530845,-0.660352,-0.263718,0.0980101,-1.49693,2.43796,-0.479522,-0.00735973,2.32112,6 +0.220489,0.688588,-0.35697,-0.19451,-0.413561,-0.117728,4.52983,-0.108684,0.095664,0.0685255,0.108001,0.105993,-0.324044,0.160777,0.0525362,0.0874013,-0.68695,-0.663647,5 +1.23479,1.15829,2.41015,-0.19451,-0.187131,-0.10408,0.0516298,-0.108836,-0.449563,-0.480104,-0.622062,-0.20872,0.0884179,-1.51964,2.48606,-0.432925,-0.102365,2.30843,6 +1.33074,1.22787,-0.35697,-0.19451,0.14222,-0.101812,-0.0407042,-0.116014,-0.441802,-0.464248,-0.604193,-0.220942,0.155563,-1.44584,2.29368,-0.44328,-0.239865,2.32136,6 +-0.0536464,1.97591,-0.35697,-0.19451,-0.207716,-0.101541,-0.240761,-0.126821,-0.774565,-0.762348,-0.89775,-0.630373,0.740683,-1.4572,1.72618,-0.790164,0.5709,2.13634,6 +1.31703,-1.53812,-0.35697,-0.19451,-0.454729,-0.124335,-0.410039,-0.138345,1.6159,1.44169,1.80042,1.54511,-2.89474,2.55651,-1.42874,1.8037,-0.468129,-0.594011,1 +1.646,-0.877069,-0.35697,-0.19451,2.34476,0.0125912,2.29842,-0.00956934,0.251859,-0.0202701,0.59556,0.0998819,-2.67412,2.49974,-1.55378,0.581841,0.534973,-0.574863,2 +1.15255,-0.0246559,-0.35697,-0.19451,-0.392976,-0.125574,2.49848,1.40425,0.0568577,0.084382,0.077369,0.00516261,0.203524,0.183486,-0.514964,0.0563371,-0.632836,-0.402585,3 +-1.65734,-0.633523,2.41015,-0.19451,0.32748,-0.058266,0.0824077,-0.0657969,-0.516504,-0.416679,-0.532718,-0.587597,1.3258,-0.531828,-0.428397,-0.559771,-0.15401,0.0288118,0 +-0.410023,-0.407372,2.41015,-0.19451,-0.434145,-0.124913,-0.333095,-0.120775,-0.418518,-0.31837,-0.417848,-0.51121,1.24907,-0.338807,-0.678481,-0.445869,-0.113228,-0.0738491,0 +-0.314075,0.601607,5.17726,-0.19451,0.14222,-0.0799674,-0.163816,-0.122338,0.0597682,0.0780394,0.0748163,0.0234953,0.117194,0.149423,-0.370685,0.0537483,-0.71281,-0.444095,3 +-1.23243,-0.285599,-0.35697,-0.19451,3.0858,0.206444,2.0522,0.15819,-0.721207,-0.727464,-0.734379,-0.691482,0.529656,-0.679433,0.620037,-0.766866,1.08652,-0.731277,2 +1.39927,1.24527,2.41015,-0.19451,0.224558,-0.0773922,0.297854,-0.0910539,0.279993,0.284172,0.330083,0.212934,-0.189754,0.563851,-0.765049,0.312617,-0.623706,-0.437484,5 +-0.615625,0.0101365,-0.35697,-0.19451,-0.495898,-0.123674,-0.548541,-0.139668,-0.836655,-0.746491,-0.877328,-0.865644,1.49846,-0.957611,0.119867,-0.893712,0.795292,0.313971,0 +-1.05424,-0.703107,-0.35697,-0.19451,0.14222,-0.037702,-0.0253152,-0.111454,-0.80658,-0.873342,-0.742037,-0.810645,0.0500494,-0.230942,0.341096,-0.774632,1.75401,-0.63553,2 +0.289023,1.34964,-0.35697,-0.19451,-0.475314,-0.12,-0.379262,-0.126561,-0.691132,-0.689408,-0.854354,-0.489822,0.577617,-1.65589,2.22635,-0.671085,0.630541,2.11744,6 +-1.50657,-0.00725971,-0.35697,-0.19451,-0.537067,-0.124665,-0.548541,-0.138156,-0.851207,-0.765519,-0.892644,-0.87481,1.46969,-0.974642,0.177579,-0.911833,0.809197,0.329605,0 +0.727641,-0.0246559,-0.35697,-0.19451,-0.495898,-0.124665,-0.456207,-0.138156,-0.817252,-0.727464,-0.856907,-0.847311,1.47928,-0.934902,0.100629,-0.87818,0.537473,0.272004,0 +0.234196,1.0713,2.41015,-0.19451,0.14222,-0.0878607,0.190131,-0.120321,0.281934,0.315885,0.322425,0.197657,0.0788258,0.501403,-0.928567,0.304851,-0.603342,-0.372105,5 +1.09772,0.932135,-0.35697,-0.19451,0.348065,0.0874987,1.68286,0.155123,-0.120681,-0.124922,-0.0885543,-0.153721,0.0596415,0.115361,-0.255261,-0.111928,-0.571715,-0.490728,5 +-1.35579,-0.981446,2.41015,-0.19451,-0.331223,-0.107487,0.00546284,-0.0860122,-0.446653,-0.378624,-0.420401,-0.538709,0.980487,-0.191203,-0.659244,-0.448457,0.0440027,-0.168446,0 +-1.65734,1.34964,-0.35697,8.97523,0.306895,-0.0898727,0.774912,-0.0870428,0.436188,0.407852,0.529191,0.347374,-0.611808,0.978279,-1.04399,0.514535,-0.51699,-0.460955,5 +-1.41062,-0.129033,-0.35697,-0.19451,-0.557652,-0.124913,-0.579319,-0.137904,-0.823073,-0.74332,-0.854354,-0.853422,1.39295,-0.883808,0.100629,-0.880768,0.65045,0.170366,0 +0.851002,-0.59873,-0.35697,-0.19451,-0.0430403,-0.088354,-0.41004,-0.126561,-0.838595,-0.854314,-0.795643,-0.865644,0.539248,-0.401255,0.139104,-0.828995,1.37537,-0.454558,4 +0.563159,-0.998843,-0.35697,-0.19451,-0.413561,-0.112692,0.790301,-0.0558432,0.119918,0.220747,0.0492896,0.105993,0.81742,-0.37287,-0.18793,0.0278614,-1.08632,-0.249557,3 +-0.629332,-1.6599,-0.35697,-0.19451,0.88326,-0.0434243,-0.440818,-0.128978,0.664175,0.588614,0.802327,0.564312,-1.2257,1.46651,-1.2556,0.791525,-0.448239,-0.505787,3 +0.371264,-1.83386,-0.35697,-0.19451,-0.413561,-0.117153,-0.517763,-0.135544,1.96612,1.83809,1.98166,2.04927,-2.76045,1.7163,-0.139837,1.9875,-0.754347,-0.706696,1 +-1.25984,-0.163825,-0.35697,-0.19451,-0.495898,-0.125656,-0.533152,-0.136582,-0.548519,-0.600613,-0.461244,-0.596763,-0.0266877,0.132392,-0.197549,-0.489876,0.368058,-0.508742,4 +0.056008,0.914738,-0.35697,-0.19451,-0.166547,-0.112692,0.0824077,-0.113972,-0.374861,-0.381795,-0.560798,-0.1415,0.241892,-1.54803,2.38025,-0.375974,-0.4024,2.25828,6 +1.28962,-0.755296,-0.35697,-0.19451,0.0598821,-0.0626103,0.143964,-0.121747,-0.591206,-0.613298,-0.548034,-0.615096,0.280261,-0.19688,0.0525362,-0.577892,0.0261373,-0.502159,4 +0.741348,-1.05103,-0.35697,-0.19451,-0.331224,-0.115793,1.05191,-0.043674,1.79538,1.70807,1.81574,1.83538,-2.25206,1.60844,-0.466871,1.81923,-0.78296,-0.655123,1 +-1.20502,0.0101365,-0.35697,4.39036,-0.145963,-0.104762,0.00546284,-0.109439,0.452681,0.474448,0.483243,0.39015,-0.17057,0.575205,-0.803524,0.467939,-0.737377,-0.431739,3 +1.72824,1.24527,-0.35697,-0.19451,0.389233,-0.0631247,0.390188,-0.100134,0.284844,0.277829,0.345399,0.215989,-0.295267,0.637654,-0.784287,0.328149,-0.591382,-0.448988,5 +-0.793813,-1.45114,-0.35697,-0.19451,-0.45473,-0.115793,-0.486985,-0.128282,1.91179,1.78418,1.94847,1.96982,-2.71249,1.81281,-0.351447,1.95385,-0.726763,-0.683709,1 +0.426091,-0.772692,-0.35697,4.39036,0.0187131,-0.0726045,0.6518,-0.080871,-0.598967,-0.635497,-0.542929,-0.624262,0.155563,-0.1174,0.0429175,-0.572714,0.254702,-0.526065,4 +-0.0262328,0.218891,-0.35697,-0.19451,-0.495898,-0.102863,-0.486985,-0.1175,-0.941432,-0.933596,-0.94625,-0.932864,0.836605,-0.804329,0.52385,-0.981727,2.44939,-0.484087,2 +1.53634,0.201495,-0.35697,-0.19451,-0.495898,-0.122683,-0.486985,-0.134126,-0.861879,-0.775033,-0.905408,-0.883976,1.48887,-0.99735,0.196816,-0.919599,0.965047,0.359177,0 +-0.7664,-0.7379,-0.35697,-0.19451,-0.0224559,-0.0780042,-0.163816,-0.122979,-0.450533,-0.356425,-0.44848,-0.538709,1.22029,-0.355838,-0.62077,-0.476933,-0.072634,-0.0708461,0 +-0.588211,-1.25979,-0.35697,-0.19451,-0.475314,-0.117429,-0.502374,-0.12754,2.2562,2.25353,2.17566,2.33037,-1.85879,1.31323,-0.361066,2.18424,-1.01482,-0.650733,1 +0.193076,1.0713,-0.35697,-0.19451,0.0392974,-0.113205,-0.333095,-0.107777,0.578801,0.55373,0.67214,0.48487,-0.698137,1.0975,-1.15941,0.659502,-0.571389,-0.460077,5 +0.0285944,-1.15541,2.41015,-0.19451,-0.351807,-0.111424,-0.225372,-0.121402,2.28433,2.28842,2.20885,2.34564,-1.82042,1.37,-0.495727,2.21789,-1.01677,-0.633045,1 +1.52263,-0.111637,-0.35697,-0.19451,-0.41356,-0.118307,-0.317706,-0.12754,0.231486,0.192205,0.32753,0.151825,-0.544663,0.830675,-0.861236,0.310029,-0.422305,-0.476649,3 +1.61858,-1.43375,-0.35697,-0.19451,-0.331223,-0.11938,-0.594708,-0.137589,2.5715,2.72922,2.33648,2.67258,-0.659769,0.541143,-0.255261,2.34733,-1.34625,-0.58714,1 +0.439798,-0.668315,-0.35697,-0.19451,-0.248885,-0.09963,-0.610097,-0.137245,-0.474787,-0.521331,-0.397427,-0.517321,-0.0362799,0.126715,-0.178312,-0.425159,0.140737,-0.516403,4 +1.12514,-0.146429,-0.35697,-0.19451,-0.310638,-0.119958,-0.625486,-0.139605,-0.938521,-0.924082,-0.948803,-0.929808,0.894157,-0.838392,0.52385,-0.984316,2.21822,-0.454684,4 +-0.478557,0.184098,-0.35697,-0.19451,-0.557652,-0.126895,-0.41004,-0.137589,-0.915238,-0.908226,-0.90796,-0.920642,0.807828,-0.702141,0.37957,-0.942897,1.99111,-0.42078,4 +-1.01312,-1.1728,-0.35697,-0.19451,-0.372392,-0.123674,-0.471596,-0.138345,2.34157,2.38038,2.23948,2.40064,-1.55184,1.23943,-0.54382,2.24896,-1.08366,-0.611362,1 +-0.999415,-0.59873,-0.35697,-0.19451,1.2332,-0.0666199,-0.471596,-0.131829,-0.212845,-0.216889,-0.167687,-0.260663,0.136379,0.126715,-0.351447,-0.192177,-0.419454,-0.443635,3 +-1.60251,1.31485,-0.35697,-0.19451,-0.084209,-0.109719,-0.286928,-0.128059,-0.577624,-0.556215,-0.74459,-0.392047,0.663946,-1.58777,2.02436,-0.588247,-0.0788771,2.11488,6 +0.60428,1.31485,-0.35697,-0.19451,-0.2283,-0.117429,-0.317706,-0.122458,-0.590236,-0.61964,-0.680773,-0.447046,0.213116,-1.08818,1.63,-0.634843,-0.212079,2.58654,6 +0.343851,0.601607,-0.35697,-0.19451,0.101051,-0.0908876,-0.286928,-0.133055,-0.749341,-0.736977,-0.734379,-0.770924,0.721499,-0.514797,0.148723,-0.766866,0.333729,-0.37568,3 +-0.410023,-1.15541,-0.35697,-0.19451,-0.022456,-0.0512462,-0.0868713,-0.110951,-0.281726,-0.232745,-0.223846,-0.395103,0.673538,0.1551,-0.938185,-0.249128,-0.0052649,-0.243391,0 +-1.47915,1.40183,-0.35697,-0.19451,0.0392979,-0.0987137,-0.0714822,-0.127372,0.529323,0.515675,0.621087,0.426816,-0.554255,1.0464,-1.21713,0.607728,-0.544094,-0.436459,5 +-0.396316,0.305872,-0.35697,-0.19451,-0.125378,-0.110791,-0.548541,-0.138156,-0.840536,-0.847972,-0.813512,-0.856477,0.615985,-0.50912,0.244909,-0.847116,1.04396,-0.460854,4 +-0.492264,1.69757,-0.35697,-0.19451,-0.187131,-0.0941911,-0.271539,-0.113218,-0.601877,-0.632325,-0.729274,-0.413436,0.213116,-1.34365,2.06283,-0.606367,0.0837397,2.38143,6 +0.768761,-0.633523,-0.35697,-0.19451,-0.248884,-0.116737,-0.456207,-0.136645,2.57635,2.71337,2.34924,2.68786,-0.851611,0.597914,-0.159074,2.36027,-1.31542,-0.614738,1 +0.782468,0.184098,-0.35697,-0.19451,-0.475314,-0.12194,-0.471596,-0.139101,-0.816282,-0.71795,-0.862012,-0.847311,1.55601,-0.974642,0.0910108,-0.867825,0.660106,0.360345,0 +-1.31467,-1.83386,5.17726,-0.19451,-0.413561,-0.109305,-0.194594,-0.118244,0.818429,0.747178,0.963145,0.704863,-1.31203,1.63682,-1.45759,0.954612,-0.48065,-0.492284,3 +0.535746,-1.36416,-0.35697,-0.19451,-0.310638,-0.114012,-0.394651,-0.136393,1.69933,1.57805,1.84637,1.6215,-2.48227,2.37484,-1.53454,1.8503,-0.588631,-0.566496,1 +0.0423012,-0.129033,-0.35697,-0.19451,-0.41356,-0.111782,-0.440818,-0.12449,-0.919118,-0.930425,-0.900302,-0.920642,0.644762,-0.628339,0.418045,-0.935131,2.37986,-0.518035,2 +-0.615625,-1.45114,-0.35697,-0.19451,-0.475314,-0.114506,-0.471596,-0.127041,1.92926,1.80955,1.94847,2.00038,-2.65493,1.71062,-0.236023,1.95385,-0.75705,-0.693568,1 +1.59117,0.201495,-0.35697,-0.19451,-0.619405,-0.126647,-0.625486,-0.138849,-0.966656,-0.936767,-1.00496,-0.938975,1.05722,-1.04844,0.716223,-1.04127,-0.409793,-0.473359,4 +-1.01312,-1.88605,-0.35697,-0.19451,-0.434143,-0.120949,-0.333095,-0.126821,2.49292,2.57383,2.32372,2.59008,-1.29285,0.915831,-0.255261,2.33438,-1.19696,-0.632965,1 +1.0566,1.01912,-0.35697,-0.19451,0.245142,-0.0858798,0.159353,-0.105233,0.472084,0.47762,0.549612,0.368762,-0.333636,0.904477,-1.19789,0.535245,-0.548782,-0.4053,5 +-0.437437,-1.6425,-0.35697,-0.19451,-0.248884,-0.0998894,-0.286928,-0.113407,2.39493,2.45966,2.265,2.46175,-1.35999,1.0975,-0.495727,2.27484,-1.1406,-0.604958,1 +0.672814,-0.198618,-0.35697,-0.19451,0.183389,-0.105092,-0.486985,-0.126569,-0.142024,-0.24543,-0.0119743,-0.196498,-0.822835,0.751195,-0.447634,-0.0342671,0.0794822,-0.570669,4 +-0.0536464,0.532022,-0.35697,-0.19451,-0.537067,-0.124665,0.0516297,-0.0423699,-0.922029,-0.89237,-0.94625,-0.911475,1.01886,-0.917871,0.533469,-0.981727,0.470846,-0.351399,4 +-1.46545,-0.633523,-0.35697,-0.19451,-0.125378,-0.0835452,-0.148427,-0.110467,-0.893894,-0.901883,-0.884986,-0.887032,0.654354,-0.673756,0.485376,-0.919599,1.90915,-0.560782,2 +-0.643038,1.34964,-0.35697,-0.19451,0.348064,-0.0680787,0.713356,-0.0709403,0.50798,0.531531,0.562376,0.414594,-0.199346,0.779581,-1.12094,0.548188,-0.641512,-0.392509,5 +1.41298,-0.581334,-0.35697,-0.19451,-0.0224557,-0.0780608,-0.0560932,-0.0982653,-0.529116,-0.5689,-0.453586,-0.575375,0.0692336,0.0699439,-0.18793,-0.48211,0.213113,-0.491695,4 +1.22109,1.95851,-0.35697,-0.19451,-0.516483,-0.12161,0.374799,-0.116996,-0.535907,-0.5689,-0.67822,-0.327883,0.136379,-1.38907,2.21673,-0.533884,-0.0319563,2.37461,6 +1.52263,-1.41635,-0.35697,-0.19451,-0.434144,-0.116985,-0.286928,-0.115674,2.57344,2.71971,2.34924,2.67258,-0.765282,0.614945,-0.274498,2.36027,-1.3217,-0.5949,1 +1.50893,-1.53812,-0.35697,-0.19451,-0.537067,-0.120701,-0.333095,-0.129843,1.59455,1.43217,1.78766,1.50234,-2.77004,2.59625,-1.62111,1.79076,-0.470389,-0.57291,1 +-1.41062,-0.129033,-0.35697,-0.19451,-0.557652,-0.124913,-0.579319,-0.137904,-0.823073,-0.74332,-0.854354,-0.853422,1.39295,-0.883808,0.100629,-0.880768,0.65045,0.170366,0 +0.0834216,0.0275327,-0.35697,-0.19451,-0.475314,-0.118967,-0.533152,-0.13507,-0.934641,-0.936767,-0.925829,-0.932864,0.740683,-0.707818,0.45652,-0.961018,2.51022,-0.496619,2 +-1.49286,-0.111637,-0.35697,-0.19451,-0.598821,-0.123922,-0.533152,-0.136582,-0.816282,-0.740149,-0.844144,-0.847311,1.35458,-0.855423,0.0910108,-0.87818,0.554854,0.118554,0 +-1.45174,-0.37258,-0.35697,-0.19451,0.73917,-0.093847,-0.348484,-0.129568,0.558428,0.509332,0.67214,0.463482,-0.899572,1.21672,-1.15941,0.659502,-0.481272,-0.478311,3 +-1.52027,-1.10322,-0.35697,-0.19451,-0.495898,-0.1098,-0.379262,-0.139101,-0.464115,-0.397651,-0.445928,-0.54482,0.980487,-0.259328,-0.54382,-0.474344,-0.0334848,-0.168568,0 +-0.560798,-1.06843,-0.35697,-0.19451,-0.434145,-0.116367,-0.41004,-0.127041,0.628279,0.588614,0.735957,0.530702,-0.870796,1.23375,-1.21713,0.724219,-0.541871,-0.472937,3 +-0.84864,1.38444,-0.35697,-0.19451,0.88326,-0.0427683,0.282465,-0.0715307,0.561338,0.560073,0.631298,0.472648,-0.467926,0.927185,-1.1017,0.618083,-0.612264,-0.434692,5 +0.878415,-1.31197,-0.35697,-0.19451,-0.434145,-0.118619,0.621022,-0.0669708,0.13156,0.170006,0.130975,0.0937709,0.241892,0.104006,-0.418778,0.1107,-0.795642,-0.414384,3 +0.851002,-0.302995,-0.35697,-0.19451,0.800923,0.147622,1.26736,0.765169,0.0170815,0.0368128,0.0365264,-0.0253921,0.165155,0.143746,-0.409159,0.0149181,-0.683222,-0.418861,3 +-1.42433,-1.22499,-0.35697,-0.19451,-0.372392,-0.115746,-0.348484,-0.132803,-0.405906,-0.340568,-0.384664,-0.489822,0.922934,-0.191203,-0.601532,-0.412216,-0.0996692,-0.193667,0 +-0.560798,1.33225,-0.35697,-0.19451,1.04794,-0.0670309,0.0208518,-0.114136,0.513801,0.509332,0.598113,0.411539,-0.458334,0.983956,-1.20751,0.58443,-0.552214,-0.422223,5 +-0.108474,1.74976,-0.35697,-0.19451,0.430402,-0.0702321,0.174742,-0.0887949,-0.439862,-0.495961,-0.606746,-0.181221,-0.151386,-1.47423,2.64957,-0.409627,0.0640501,2.37298,6 +-0.533384,-1.57292,-0.35697,-0.19451,-0.26947,-0.113681,-0.502374,-0.136834,1.90791,1.82541,1.98421,1.8751,-2.30002,2.07396,-1.20751,1.99009,-0.737111,-0.584552,1 +-0.437437,1.95851,2.41015,-0.19451,-0.0430403,-0.0671853,-0.117649,-0.124301,-0.642624,-0.664038,-0.767564,-0.465378,0.328221,-1.36068,1.97627,-0.650375,0.0891492,2.34907,6 +1.02919,2.11508,2.41015,-0.19451,-0.145963,-0.106744,-0.379262,-0.131544,-0.548519,-0.597441,-0.670562,-0.349271,0.00208865,-1.26417,2.13978,-0.552005,0.0809751,2.45622,6 +-1.62993,0.532022,-0.35697,-0.19451,-0.660574,-0.126647,-0.640875,-0.139668,-0.968596,-0.936767,-1.01007,-0.938975,1.07641,-1.07115,0.735461,-1.04644,-0.896462,-0.473359,4 +-1.43803,-0.0246559,-0.35697,-0.19451,-0.125378,-0.100855,-0.179205,-0.114909,0.620518,0.534702,0.781905,0.503202,-1.28326,1.58573,-1.39988,0.770815,-0.370244,-0.495379,3 +1.0429,-1.55552,-0.35697,-0.19451,0.88326,-0.0591182,-0.548541,-0.133307,-0.610609,-0.657696,-0.535271,-0.648706,0.0692336,0.00181866,-0.0725063,-0.564948,0.516689,-0.517671,4 +1.49522,-0.0246559,-0.35697,-0.19451,-0.0636247,0.047527,-0.286928,-0.0113858,-0.911357,-0.920911,-0.895197,-0.911475,0.654354,-0.639693,0.427664,-0.929954,2.33641,-0.524357,2 +1.71453,0.636399,-0.35697,-0.19451,0.0804666,-0.100881,-0.240761,-0.0935693,0.150963,0.103409,0.256056,0.0693272,-0.554255,0.824998,-0.841999,0.237545,-0.34931,-0.478486,5 +0.357557,-0.59873,-0.35697,-0.19451,2.40651,-0.0252417,-0.471596,-0.133545,-0.140084,-0.156635,-0.0732383,-0.202609,-0.0362799,0.33109,-0.524583,-0.0963956,-0.331219,-0.442392,3 +0.974363,2.04549,-0.35697,-0.19451,-0.125378,-0.102139,-0.348484,-0.119657,-0.754192,-0.76869,-0.854354,-0.61204,0.481696,-1.28688,1.69733,-0.774632,0.361644,2.35564,6 +-0.84864,1.34964,-0.35697,-0.19451,-0.166547,-0.106827,-0.41004,-0.130788,-0.766804,-0.759176,-0.887539,-0.621207,0.692723,-1.43449,1.7358,-0.782398,0.509433,2.16515,6 +-1.09536,1.0713,2.41015,-0.19451,0.101051,-0.0443089,-0.133038,-0.0945139,-0.481578,-0.51816,-0.622062,-0.272884,0.0596415,-1.3323,2.1975,-0.487288,-0.113973,2.4103,6 +-1.39691,-0.616126,-0.35697,-0.19451,0.0392977,-0.0559536,0.143964,-0.122475,-0.43113,-0.400823,-0.387216,-0.508155,0.625578,-0.0606295,-0.524583,-0.414804,-0.00871075,-0.273242,0 +0.508332,-0.998843,-0.35697,-0.19451,0.0598822,-0.106067,1.88292,-0.019903,0.145142,0.233432,0.0824744,0.133492,0.68313,-0.299068,-0.178312,0.0615145,-1.0595,-0.307495,3 +-1.10907,-1.79907,-0.35697,-0.19451,-0.475314,-0.125904,-0.27154,-0.130599,2.01172,1.99349,2.02505,1.99121,-1.80123,1.73901,-1.14018,2.03151,-0.888066,-0.562292,1 +1.68712,0.636399,-0.35697,-0.19451,0.409818,0.0708992,-0.0714818,-0.0761249,0.180067,0.122437,0.296898,0.0937709,-0.669361,0.927185,-0.89971,0.278964,-0.319112,-0.485911,5 +-1.25984,-0.581334,2.41015,-0.19451,-0.516483,-0.118205,-0.163816,-0.130858,-0.533967,-0.597441,-0.422954,-0.599819,-0.141793,0.302705,-0.370685,-0.451046,0.491537,-0.493795,4 +-0.752693,1.28006,-0.35697,4.39036,0.306896,-0.0823619,0.790301,-0.0844746,0.466263,0.458592,0.54706,0.371818,-0.448742,0.921508,-1.11132,0.532656,-0.56147,-0.433956,5 +-0.780106,-0.250806,-0.35697,-0.19451,-0.145963,-0.0552103,-0.363873,-0.107928,-0.919118,-0.927254,-0.905408,-0.917586,0.673538,-0.662402,0.446901,-0.940308,2.37503,-0.507096,2 +-0.944588,-1.59031,-0.35697,-0.19451,-0.351807,-0.117976,-0.440818,-0.129025,1.96418,1.89518,2.03016,1.9301,-2.22329,2.05125,-1.24598,2.03668,-0.768574,-0.577724,1 +0.193076,-1.86865,-0.35697,-0.19451,-0.454729,-0.11938,-0.410039,-0.139101,2.70732,2.90681,2.42838,2.81924,-0.391189,0.359476,-0.216786,2.44052,-1.42511,-0.562983,1 +-0.012526,0.671192,2.41015,-0.19451,-0.187131,-0.102119,-0.117649,-0.125057,-0.707624,-0.708436,-0.680773,-0.731203,0.568025,-0.401255,0.110248,-0.712504,0.232309,-0.431243,3 +-0.780106,-0.0246559,-0.35697,-0.19451,0.32748,-0.0820557,-0.240761,-0.106227,-0.442772,-0.530845,-0.300426,-0.523432,-0.43915,0.58656,-0.553439,-0.326789,0.520945,-0.451212,2 +1.67341,-0.146429,-0.35697,-0.19451,0.615663,-0.0869607,-0.286928,-0.117953,-0.214786,-0.226403,-0.17024,-0.254552,0.0692336,0.121038,-0.274498,-0.194766,-0.41711,-0.473357,3 +-0.697866,-1.03363,-0.35697,-0.19451,-0.022456,-0.100406,-0.117649,-0.121203,0.511861,0.480791,0.615982,0.411539,-0.698137,1.11453,-1.18827,0.60255,-0.498839,-0.45574,3 +0.659107,0.49723,-0.35697,-0.19451,-0.619405,-0.126647,-0.440818,-0.137337,-0.876431,-0.860657,-0.882434,-0.87481,0.855789,-0.758912,0.427664,-0.91701,0.757054,-0.410849,4 +1.09772,0.566815,-0.35697,-0.19451,0.101051,-0.0988159,-0.117649,-0.100119,-0.49225,-0.553044,-0.616956,-0.278995,-0.151386,-1.23579,2.24559,-0.492465,0.0599358,2.48407,6 +1.00178,-0.0246559,-0.35697,-0.19451,-0.145963,-0.107735,2.49848,1.62416,-0.0226949,-0.00441366,-0.00431634,-0.0620576,0.184339,0.104006,-0.361066,-0.026501,-0.591493,-0.435168,3 +-0.0947667,0.0449289,-0.35697,-0.19451,-0.454729,-0.118389,-0.163816,-0.104086,-0.4321,-0.476933,-0.356584,-0.474545,-0.0554641,0.149423,-0.197549,-0.38374,0.0446106,-0.515039,3 +-1.62993,-0.494353,-0.35697,-0.19451,-0.41356,-0.113764,-0.56393,-0.139101,-0.441802,-0.492789,-0.354032,-0.492877,-0.103425,0.223225,-0.274498,-0.381151,0.142684,-0.506873,4 +-0.0947667,0.166702,-0.35697,-0.19451,-0.619405,-0.126647,-0.610097,-0.139668,-0.951133,-0.936767,-0.964119,-0.938975,0.90375,-0.866777,0.562325,-0.999848,2.51022,-0.473359,2 +-0.999415,-1.57292,-0.35697,-0.19451,4.44437,0.163109,-0.594708,-0.135905,-0.0323964,-0.0424689,0.031421,-0.0987231,-0.0650563,0.399215,-0.611151,0.00974067,-0.39255,-0.431965,3 +1.646,-1.32937,-0.35697,-0.19451,-0.392977,-0.124583,-0.394652,-0.131859,2.55986,2.70068,2.33393,2.66647,-0.803651,0.592237,-0.197549,2.34474,-1.31919,-0.607987,1 +1.37186,-0.563938,-0.35697,-0.19451,-0.454729,-0.11938,-0.486985,-0.134881,-0.874491,-0.905055,-0.83138,-0.887032,0.433735,-0.429641,0.293002,-0.865236,1.93124,-0.553173,2 +1.74194,0.236287,-0.35697,-0.19451,-0.372392,-0.115171,-0.502374,-0.128059,-0.951133,-0.927254,-0.97433,-0.935919,0.990079,-0.934902,0.591181,-1.0102,1.41522,-0.417197,4 +0.905829,-0.389976,-0.35697,-0.19451,-0.290053,-0.10993,-0.363873,-0.119999,0.209172,0.176349,0.296898,0.133492,-0.467926,0.756872,-0.813143,0.278964,-0.456223,-0.473299,3 +-1.46545,-0.581334,-0.35697,-0.19451,-0.310638,-0.118967,-0.486985,-0.136393,-0.896805,-0.920911,-0.856907,-0.911475,0.510472,-0.46938,0.283384,-0.891123,2.18674,-0.518609,2 +-0.286662,0.218891,-0.35697,-0.19451,-0.516483,-0.124583,-0.486985,-0.13866,-0.792028,-0.698922,-0.83138,-0.825923,1.48887,-0.912194,0.0525362,-0.849704,0.435118,0.258175,0 +0.480919,-0.494353,-0.35697,-0.19451,0.492156,-0.0482734,-0.610097,-0.133307,-0.914267,-0.876513,-0.956461,-0.890087,1.086,-1.03141,0.658511,-0.992082,-1.42658,-0.172138,4 +0.0697148,0.375456,-0.35697,-0.19451,-0.701743,-0.127308,-0.671653,-0.140171,-0.970536,-0.936767,-1.01517,-0.938975,1.09559,-1.09386,0.754698,-1.05162,-1.8698,0.881942,4 +-1.47915,1.83674,-0.35697,-0.19451,0.0804666,-0.0830431,0.00546284,-0.112715,-0.611579,-0.616469,-0.759906,-0.422602,0.452919,-1.49126,2.07245,-0.614133,0.0567625,2.24081,6 +-0.478557,1.97591,-0.35697,-0.19451,0.203973,-0.0977012,0.0824076,-0.0946285,-0.388443,-0.435707,-0.56335,-0.129278,-0.113017,-1.48558,2.63034,-0.365619,-0.0575851,2.35754,6 +-1.56139,-0.0942407,-0.35697,-0.19451,-0.598821,-0.123922,-0.56393,-0.139101,-0.952103,-0.936767,-0.969224,-0.935919,0.913342,-0.895163,0.600799,-1.00503,2.51022,-0.498104,2 +-0.711572,1.34964,-0.35697,4.39036,-0.434145,-0.112883,0.559466,-0.0984188,0.567159,0.572758,0.644061,0.463482,-0.410373,0.978279,-1.24598,0.631026,-0.581253,-0.41081,5 +-1.10907,0.0275327,-0.35697,-0.19451,-0.516483,-0.122601,-0.548541,-0.1374,-0.49322,-0.511817,-0.445928,-0.526488,0.2323,-0.0890149,-0.082125,-0.474344,-0.123532,-0.479628,3 +-0.629332,-1.6599,-0.35697,-0.19451,0.88326,-0.0434243,-0.440818,-0.128978,0.664175,0.588614,0.802327,0.564312,-1.2257,1.46651,-1.2556,0.791525,-0.448239,-0.505787,3 +-0.725279,1.71496,2.41015,-0.19451,0.183389,-0.0684241,-0.225372,-0.101315,-0.578594,-0.603784,-0.713958,-0.385936,0.241892,-1.37772,2.09169,-0.583069,-0.00636012,2.35795,6 +0.234196,-0.0768445,-0.35697,-0.19451,1.25378,-0.108261,-0.379262,-0.129772,0.224695,0.223918,0.271372,0.167102,-0.189754,0.495726,-0.649625,0.253077,-0.64002,-0.453715,3 +-0.0673532,-0.268203,-0.35697,-0.19451,1.00677,-0.0492936,-0.209983,-0.113587,0.550667,0.566415,0.582797,0.490981,-0.30486,0.666039,-0.822761,0.568898,-0.764027,-0.447134,3 +0.563159,-0.23341,-0.35697,4.39036,-0.475314,-0.12194,-0.0868711,-0.101126,-0.203144,-0.280314,-0.0860017,-0.266773,-0.535071,0.614945,-0.505346,-0.109339,0.0216019,-0.53006,4 +-1.35579,-0.981446,2.41015,-0.19451,-0.331223,-0.107487,0.00546284,-0.0860122,-0.446653,-0.378624,-0.420401,-0.538709,0.980487,-0.191203,-0.659244,-0.448457,0.0440027,-0.168446,0 +-1.31467,1.24527,-0.35697,-0.19451,-0.537067,-0.118307,-0.502374,-0.128602,-0.550459,-0.524502,-0.708852,-0.379825,0.68313,-1.50829,1.87046,-0.577892,-0.370489,2.1393,6 +1.17996,0.271079,-0.35697,-0.19451,-0.578236,-0.125326,-0.594708,-0.139101,-0.833745,-0.844801,-0.795643,-0.859533,0.577617,-0.429641,0.148723,-0.828995,1.18134,-0.441117,4 +0.796175,-0.563938,-0.35697,-0.19451,0.286311,-0.107364,-0.533152,-0.130858,-0.592176,-0.622812,-0.532718,-0.627318,0.203524,-0.0890149,-0.053269,-0.56236,0.218519,-0.495406,4 +-1.13648,1.12349,-0.35697,-0.19451,-0.0224559,-0.0869235,-0.286928,-0.110384,-0.164338,-0.150292,-0.139608,-0.205664,0.261076,0.0302041,-0.312973,-0.163702,-0.548141,-0.422915,5 +1.08402,0.932135,-0.35697,-0.19451,-0.0430399,0.111201,1.6367,0.324591,-0.109039,-0.109066,-0.0808963,-0.1415,0.0884179,0.0983293,-0.255261,-0.104162,-0.638622,-0.477529,5 +1.35815,-1.55552,-0.35697,-0.19451,-0.207716,-0.105766,-0.394651,-0.129417,2.25717,2.24402,2.20119,2.31203,-1.95471,1.47786,-0.54382,2.21013,-0.976625,-0.63448,1 +-0.560798,-1.45114,-0.35697,-0.19451,-0.26947,-0.123592,-0.333095,-0.104149,2.3668,2.41527,2.25224,2.4312,-1.48469,1.17698,-0.505346,2.2619,-1.10676,-0.61208,1 +-1.05424,0.271079,-0.35697,-0.19451,0.203973,-0.0897991,-0.163816,-0.122338,0.292605,0.277829,0.373478,0.206823,-0.372005,0.779581,-0.947804,0.356625,-0.50841,-0.440902,3 +1.53634,-0.302995,-0.35697,-0.19451,-0.351807,-0.123922,-0.440818,-0.132048,-0.907476,-0.924082,-0.874776,-0.920642,0.587209,-0.526151,0.302621,-0.909244,2.24951,-0.498402,2 +-1.61622,1.38444,2.41015,4.39036,0.739169,-0.0635999,0.836468,-0.0934792,0.44395,0.423708,0.539402,0.344319,-0.544663,1.00099,-1.1498,0.52489,-0.490548,-0.438168,5 +-0.0536464,1.14089,-0.35697,-0.19451,0.14222,-0.0783609,0.697968,-0.0720238,0.655443,0.626669,0.766589,0.542924,-0.794059,1.27917,-1.37102,0.755283,-0.532122,-0.447273,5 +-0.492264,-1.39895,-0.35697,-0.19451,-0.310638,-0.119958,-0.425429,-0.134378,1.83612,1.7493,1.93061,1.7865,-2.28084,2.13641,-1.33255,1.93573,-0.704614,-0.572727,1 +1.08402,0.653796,-0.35697,-0.19451,-0.2283,-0.115994,1.88292,1.10272,0.183948,0.147807,0.238187,0.151825,-0.477518,0.512757,-0.389922,0.219425,-0.520297,-0.566476,5 +0.234196,1.01912,2.41015,-0.19451,-0.290054,-0.108701,0.0977966,-0.105294,0.172306,0.214404,0.199897,0.0968264,0.241892,0.325413,-0.793905,0.180594,-0.613335,-0.350785,5 +-1.02683,-1.27718,-0.35697,-0.19451,-0.413561,-0.112692,-0.456206,-0.131638,2.28045,2.29159,2.22161,2.31509,-1.75327,1.47786,-0.745812,2.23084,-1.00623,-0.598823,1 +0.357557,-1.15541,-0.35697,-0.19451,-0.310638,-0.110048,-0.225373,-0.133055,1.66052,1.52414,1.79276,1.61539,-2.58779,2.24427,-1.20751,1.79594,-0.579819,-0.598727,1 +-1.53398,-0.703107,-0.35697,-0.19451,-0.392976,-0.115095,-0.486985,-0.129417,-0.873521,-0.89237,-0.877328,-0.8412,0.539248,-0.741881,0.716223,-0.911833,1.3735,-0.783315,2 +1.48151,1.05391,-0.35697,-0.19451,-0.516483,-0.125574,-0.456207,-0.126821,-0.660087,-0.657696,-0.787985,-0.502044,0.558433,-1.39475,1.80313,-0.681439,-0.0934584,2.25941,6 +0.741348,0.462437,-0.35697,-0.19451,-0.310638,-0.122931,-0.194594,-0.112651,-0.474787,-0.553044,-0.555692,-0.297328,-0.324044,-0.929225,1.89932,-0.507997,-0.010824,2.68846,6 +0.837295,0.86255,-0.35697,-0.19451,-0.166547,-0.108809,-0.0868711,-0.106416,-0.521355,-0.549872,-0.657799,-0.324827,0.165155,-1.33798,2.10131,-0.531295,-0.133414,2.39148,6 +0.453505,0.479834,-0.35697,-0.19451,-0.557652,-0.118619,0.559467,-0.0714371,-0.472847,-0.502303,-0.593982,-0.294273,0.117194,-1.19605,1.90894,-0.505409,-0.325379,2.50311,6 +0.796175,1.01912,-0.35697,-0.19451,0.348064,-0.0805939,0.313243,-0.0966114,0.57395,0.572758,0.669588,0.454315,-0.477518,1.10885,-1.39988,0.656913,-0.517139,-0.407132,5 +-0.738986,0.0275327,-0.35697,-0.19451,-0.454729,-0.116797,-0.471596,-0.131829,-0.540758,-0.581585,-0.471454,-0.57843,0.0692336,0.01885,-0.101362,-0.461401,0.587567,-0.278584,2 +-1.34208,-1.27718,-0.35697,-0.19451,-0.310638,-0.116985,-0.394651,-0.131859,-0.3671,-0.31837,-0.325952,-0.459267,0.740683,-0.0265668,-0.697719,-0.352676,-0.035682,-0.244838,0 +-1.35579,0.236287,-0.35697,-0.19451,-0.681158,-0.126895,-0.640875,-0.139668,-0.963745,-0.936767,-0.997304,-0.938975,1.02845,-1.01438,0.687367,-1.0335,1.53688,-0.473359,2 +-0.903467,0.271079,-0.35697,-0.19451,1.85073,0.0279539,-0.209983,-0.126569,-0.541728,-0.581585,-0.471454,-0.581486,0.0788258,0.0245271,-0.1206,-0.500231,0.244546,-0.488778,3 +-0.944588,0.305872,-0.35697,-0.19451,-0.639989,-0.123237,-0.579319,-0.140171,-0.965686,-0.936767,-1.00241,-0.938975,1.04763,-1.03709,0.706605,-1.03868,0.563545,-0.473359,4 +-0.0810599,0.253683,-0.35697,-0.19451,-0.41356,-0.115746,-0.471596,-0.135322,-0.877402,-0.886027,-0.849249,-0.893143,0.63517,-0.531828,0.264147,-0.883357,1.54441,-0.458376,4 +1.60488,-1.15541,-0.35697,-0.19451,-0.248884,-0.1098,-0.394651,-0.134881,1.46358,1.24507,1.72639,1.34345,-3.17291,2.95391,-1.8231,1.72863,-0.295871,-0.576775,1 +0.522039,0.479834,-0.35697,-0.19451,0.718585,0.119212,-0.240761,-0.101882,-0.172099,-0.277143,-0.0323956,-0.236219,-0.813243,0.790935,-0.524583,-0.0549765,0.13383,-0.554396,3 +-1.1776,0.236287,-0.35697,-0.19451,-0.619405,-0.126647,-0.594708,-0.138345,-0.934641,-0.936767,-0.920724,-0.938975,0.740683,-0.673756,0.398808,-0.95584,2.51022,-0.473359,4 +-1.31467,1.05391,-0.35697,-0.19451,-0.104794,-0.103609,0.0670187,-0.10791,-0.613519,-0.610126,-0.7548,-0.440935,0.529656,-1.44584,1.91855,-0.629666,-0.171827,2.22822,6 +1.38557,-0.685711,-0.35697,-0.19451,0.430402,-0.0386931,-0.179205,-0.094325,-0.851207,-0.89237,-0.808406,-0.853422,0.318629,-0.412609,0.37957,-0.841938,1.84327,-0.610115,2 +-1.42433,-0.0246559,-0.35697,-0.19451,-0.537067,-0.118307,-0.548541,-0.133307,-0.955984,-0.936767,-0.987093,-0.926753,0.95171,-0.991673,0.725842,-1.02315,0.563545,-0.699955,2 +1.19367,0.288476,-0.35697,-0.19451,0.718585,-0.033555,-0.486985,-0.128836,-0.894864,-0.860657,-0.938592,-0.865644,1.03804,-1.02574,0.696986,-0.973961,-1.56809,-0.473359,4 +1.22109,-0.268203,-0.35697,-0.19451,-0.454729,-0.119166,-0.486985,-0.135102,-0.527176,-0.549872,-0.47656,-0.560098,0.222708,-0.094692,-0.0628877,-0.505409,-0.022856,-0.488406,4 +1.56376,0.879946,-0.35697,-0.19451,0.0392979,-0.0950804,-0.286928,-0.125647,0.544846,0.50299,0.667035,0.432927,-0.822835,1.26213,-1.31331,0.654324,-0.467051,-0.456955,5 +0.837295,-0.59873,-0.35697,-0.19451,-0.475314,-0.122931,-0.379262,-0.135322,-0.376802,-0.467419,-0.244267,-0.44399,-0.515887,0.575205,-0.457252,-0.269838,0.361655,-0.534028,4 +-0.272955,1.14089,-0.35697,-0.19451,0.059882,-0.0936002,0.559467,-0.0814153,0.637981,0.633012,0.718088,0.539868,-0.563847,1.05776,-1.22674,0.706098,-0.619238,-0.435502,5 +-0.0947667,-0.216014,-0.35697,-0.19451,-0.248885,-0.103961,-0.517763,-0.135544,0.660294,0.674238,0.715536,0.573478,-0.410373,0.910154,-1.13056,0.703509,-0.690621,-0.421416,3 +1.39927,-0.129033,-0.35697,-0.19451,-0.557652,-0.123922,-0.610097,-0.138912,-0.828894,-0.749662,-0.85946,-0.859533,1.39295,-0.883808,0.100629,-0.891123,0.670728,0.174557,0 +1.23479,1.21047,-0.35697,-0.19451,0.0392974,-0.115793,0.66719,-0.118147,0.214023,0.23026,0.256056,0.145714,-0.0266877,0.455986,-0.745812,0.237545,-0.602914,-0.412351,5 +0.26161,-1.53812,-0.35697,-0.19451,0.162804,-0.0819744,-0.10226,-0.110739,0.014171,-0.0139274,0.0748163,-0.031503,-0.266491,0.416247,-0.438015,0.0537483,-0.469448,-0.502069,3 +-1.25984,-0.442164,-0.35697,-0.19451,-0.475314,-0.11367,-0.302317,-0.124546,-0.917178,-0.920911,-0.933487,-0.883976,0.711907,-0.8611,0.745079,-0.968784,1.99922,-0.767471,2 +-1.42433,-0.581334,-0.35697,-0.19451,-0.454729,-0.126317,-0.456207,-0.130599,2.00202,2.08545,1.93826,1.97593,-0.870796,1.21672,-1.18827,1.94349,-1.08272,-0.475572,1 +0.357557,0.410249,-0.35697,-0.19451,-0.537067,-0.117728,-0.471596,-0.138345,-0.812401,-0.775033,-0.803301,-0.850366,0.999671,-0.605631,0.0236802,-0.828995,0.987058,-0.094137,0 +1.00178,1.03651,-0.35697,-0.19451,-0.310638,-0.100959,0.267075,-0.113009,0.44492,0.458592,0.513875,0.344319,-0.237715,0.824998,-1.15941,0.499003,-0.561831,-0.396071,5 +0.30273,-1.55552,-0.35697,-0.19451,1.00677,-0.0346616,-0.456207,-0.12692,0.276113,0.236603,0.363268,0.206823,-0.583032,0.807966,-0.784287,0.34627,-0.478959,-0.491788,3 +-1.35579,-0.529145,-0.35697,-0.19451,0.224557,-0.122601,-0.0868711,0.0152529,-0.436951,-0.397651,-0.39998,-0.514266,0.711907,-0.111723,-0.524583,-0.427748,-0.03355,-0.237754,0 +-0.0399396,-1.95563,-0.35697,-0.19451,-0.331223,-0.120371,0.128575,-0.0542724,2.78687,2.97024,2.45135,2.98118,-0.602216,0.0472354,0.52385,2.46382,-1.46345,-0.749838,1 +-0.547091,-0.0420521,-0.35697,-0.19451,-0.104794,-0.103609,-0.41004,-0.128059,-0.519414,-0.683066,-0.343821,-0.566209,-1.06264,0.745518,-0.197549,-0.370797,1.17947,-0.62962,2 +-0.7664,0.218891,-0.35697,-0.19451,0.450987,-0.0646491,0.0977968,-0.0863221,-0.461205,-0.454734,-0.422954,-0.508155,0.433735,-0.123077,-0.226405,-0.430337,-0.0070078,-0.163604,2 +0.0148876,-1.79907,-0.35697,-0.19451,-0.331224,-0.100716,-0.348484,-0.120619,2.34448,2.36453,2.25479,2.40675,-1.7245,1.32458,-0.514964,2.26449,-1.04945,-0.624549,1 +-1.19131,-0.129033,-0.35697,-0.19451,-0.351807,-0.12194,-0.333095,-0.121531,-0.896805,-0.920911,-0.884986,-0.877865,0.510472,-0.656725,0.600799,-0.919599,2.12784,-0.684227,2 +-1.12278,0.305872,-0.35697,-0.19451,-0.537067,-0.12347,-0.625486,-0.137067,-0.950163,-0.936767,-0.961566,-0.938975,0.894157,-0.855423,0.552706,-0.99726,2.51022,-0.473359,4 +1.55005,-1.08582,-0.35697,-0.19451,-0.454729,-0.116797,-0.471596,-0.131829,-0.74061,-0.76869,-0.685878,-0.770924,0.347406,-0.242297,0.0621548,-0.717681,0.709256,-0.491117,4 +0.98807,1.01912,-0.35697,-0.19451,0.121635,-0.0992337,0.282465,-0.0921228,0.492457,0.493476,0.572586,0.39015,-0.391189,0.93854,-1.19789,0.558543,-0.552975,-0.413283,5 +1.34445,0.653796,-0.35697,-0.19451,-0.187131,-0.0595049,1.82136,0.387314,0.13059,0.0907244,0.184581,0.102937,-0.467926,0.467341,-0.322591,0.165062,-0.51893,-0.59495,5 +-1.09536,0.445041,-0.35697,-0.19451,0.224558,-0.0532282,-0.486985,-0.135637,-0.530086,-0.553044,-0.468902,-0.575375,0.222708,-0.0265668,-0.178312,-0.497642,0.115844,-0.457088,3 +-1.30096,-0.37258,-0.35697,-0.19451,-0.248885,-0.124665,-0.302317,-0.126569,-0.439862,-0.356425,-0.440822,-0.514266,1.11478,-0.367193,-0.495727,-0.469167,-0.200752,-0.124374,0 +0.247903,-1.72948,-0.35697,-0.19451,-0.228301,-0.107075,-0.425429,-0.120775,2.37262,2.42161,2.23948,2.4587,-1.48469,1.05776,-0.303354,2.24896,-1.12784,-0.638279,1 +-0.615625,-0.894465,-0.35697,-0.19451,-0.248885,-0.104927,-0.271539,-0.12032,0.574921,0.52836,0.695114,0.469592,-0.88998,1.27349,-1.26522,0.6828,-0.491818,-0.470658,3 +-0.368903,0.166702,-0.35697,-0.19451,-0.495898,-0.12347,-0.56393,-0.134599,-0.945312,-0.936767,-0.951356,-0.935919,0.846197,-0.815683,0.533469,-0.986905,2.51022,-0.492034,2 +-1.45174,0.410249,-0.35697,-0.19451,-0.619405,-0.125656,-0.533152,-0.138849,-0.861879,-0.825773,-0.862012,-0.887032,1.02845,-0.707818,0.16796,-0.888535,1.25415,-0.0729588,0 diff --git a/data/statlog-vehicle.arff b/data/statlog-vehicle.arff new file mode 100755 index 0000000..8243426 --- /dev/null +++ b/data/statlog-vehicle.arff @@ -0,0 +1,867 @@ +@relation statlog-vehicle +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'clase' {0,1,2,3} +@data +0.160485,0.508649,0.0577843,0.270646,1.30652,0.311358,-0.205723,0.136489,-0.224811,0.757884,-0.402146,-0.344731,0.285643,-0.328861,-0.0766656,0.380766,-0.313537,0.183849,3 +-0.325277,-0.625897,0.12119,-0.83475,-0.595044,0.0940239,-0.596759,0.520535,-0.610593,-0.344374,-0.59326,-0.622048,-0.513214,-0.0617305,0.533295,0.156833,0.0109306,0.452709,3 +1.25345,0.832805,1.51611,1.19679,0.545894,0.311358,1.14787,-1.14366,0.932534,0.688993,1.09492,1.10411,1.39175,0.0718348,1.5499,-0.403,-0.151303,0.0494182,2 +-0.0823959,-0.625897,-0.00562104,-0.29699,0.165581,0.0940239,-0.747158,0.648551,-0.610593,-0.344374,-0.911784,-0.740899,-1.4657,-1.26382,-0.0766656,-0.291034,1.63327,1.52815,3 +-1.05392,-0.139663,-0.766486,1.07729,5.23641,9.43938,-0.596759,0.520535,-0.610593,-0.275483,1.66826,-0.650346,0.408545,7.28436,0.533295,-0.179067,-1.44917,-1.69818,0 +1.61777,1.96735,1.51611,0.0913924,-1.48244,-0.557978,2.59169,-1.91176,2.86144,1.4468,2.9105,2.92649,2.74367,1.67462,-0.279986,-0.403,-1.28694,-1.69818,0 +0.403367,-0.301741,-0.576269,0.121268,0.419123,-0.557978,-0.47644,0.136489,-0.610593,-0.344374,-0.402146,-0.446602,-0.0830599,-0.863122,1.34658,-1.29873,1.7955,1.12486,0 +-0.446718,-0.301741,-1.02011,-0.356741,0.419123,0.0940239,-0.957716,0.904582,-0.996375,-0.137701,-0.848079,-0.899366,-0.328862,-0.729557,-0.686626,-1.0748,0.659865,0.856,3 +-0.932481,-1.76044,-1.27373,-0.864625,-0.0879604,-0.340644,-1.40891,1.67267,-1.38216,-1.44663,-1.51698,-1.22762,-1.92658,-1.13025,-0.889946,0.156833,1.7955,1.66258,3 +-0.0823959,-0.139663,1.00887,0.838281,0.0388104,0.528691,0.425952,-0.631603,0.546752,-0.137701,0.426016,0.368372,-0.697566,-1.13025,-0.483306,0.156833,0.984333,1.12486,2 +-0.932481,-1.43629,-0.766486,-0.774999,-0.0879604,0.0940239,-1.07803,1.16061,-0.996375,-1.23996,-1.13475,-0.984259,-1.4657,-0.863122,-0.889946,-0.291034,0.822099,0.856,3 +-0.446718,-1.76044,-1.02011,-0.984128,-0.848585,-0.557978,-1.37883,1.67267,-1.38216,-2.06665,-1.29401,-1.22196,-1.74223,-0.996688,-0.279986,1.50043,1.14657,0.856,2 +-0.689599,0.184493,-0.512864,0.0615168,0.799435,-0.557978,-0.50652,0.264505,-0.610593,8.14316e-05,-0.274736,-0.514517,0.531446,-0.195296,-0.279986,-0.179067,0.0109306,-0.0850121,0 +-0.568159,-0.463819,0.184595,-0.745123,-0.468273,0.311358,-0.50652,0.39252,-0.610593,-0.275483,-0.497703,-0.537155,-0.421038,-0.0617305,0.329975,0.044866,-0.313537,0.183849,3 +0.0390448,0.670727,-0.195837,1.01753,1.17975,-0.775311,0.155234,-0.503588,0.16097,0.413428,0.234902,0.14199,0.9616,-0.195296,-0.0766656,-1.18677,1.3088,0.452709,0 +0.281926,1.6432,1.32589,0.957783,0.419123,0.0940239,1.05763,-1.14366,0.932534,1.24012,1.22233,1.04186,2.19061,0.2054,-0.0766656,-1.18677,-0.47577,-0.219442,1 +-0.568159,-1.43629,-1.97119,-1.79077,-1.2289,-0.557978,-1.52923,2.05672,-1.38216,-1.30885,-1.64439,-1.32383,-1.52715,1.00679,-0.889946,0.156833,-1.28694,-1.42932,3 +0.646248,-0.625897,-0.322648,0.838281,0.926206,-0.557978,0.245473,-0.631603,0.16097,-0.619939,0.426016,0.255181,-0.728291,-0.0617305,-0.483306,-0.291034,1.47103,0.452709,0 +1.25345,1.48112,1.13568,0.50965,-0.0879604,0.311358,1.41858,-1.27168,1.31832,1.72236,1.15862,1.39275,1.39175,0.2054,-0.279986,-0.179067,-0.638004,-0.0850121,2 +0.889129,1.80527,1.13568,1.37604,0.926206,0.311358,1.17795,-1.14366,1.31832,1.4468,1.22233,1.19467,1.48393,0.2054,-0.0766656,-0.850866,-0.47577,-0.353873,1 +-1.17536,0.346571,-0.449459,-0.476243,0.292352,-0.557978,-0.44636,0.264505,-0.610593,-0.206592,-0.433998,-0.486219,0.285643,0.338965,-1.29659,-1.0748,-0.638004,-0.488303,0 +-1.17536,-1.27421,-1.84438,-1.43226,-0.341502,-0.775311,-1.37883,1.80069,-1.38216,-1.58442,-1.51698,-1.23894,-1.28135,1.27392,0.126654,-1.29873,-1.61141,-1.69818,3 +0.0390448,-0.301741,-1.14692,0.121268,0.926206,-0.340644,-0.566679,0.264505,-0.610593,-0.413265,-0.625112,-0.542815,0.0705665,-0.595992,0.533295,-1.29873,1.63327,1.39372,0 +-0.81104,-0.950053,-0.766486,-0.625621,-0.0879604,-0.340644,-0.777237,0.648551,-0.996375,-0.826612,-0.784374,-0.752218,-1.03554,-0.462426,-1.09327,-1.18677,0.497632,0.452709,0 +0.646248,1.31904,1.4527,1.49554,0.545894,0.528691,1.05763,-1.14366,0.932534,1.17123,1.03121,1.0362,1.51465,-0.595992,-1.29659,-0.7389,0.335398,0.72157,2 +-1.05392,0.0224151,-0.132432,-0.446368,0.292352,0.0940239,-0.656919,0.520535,-0.610593,8.14316e-05,-0.625112,-0.656006,-0.0216094,-0.195296,-1.09327,-0.962833,-0.151303,0.452709,3 +-1.2968,-1.43629,-1.78097,-1.49201,-0.595044,-0.557978,-1.22843,1.54466,-0.996375,-1.58442,-1.45327,-1.14273,-1.09699,1.27392,-0.0766656,-1.0748,-1.61141,-1.69818,2 +1.61777,1.48112,1.00887,1.01753,0.419123,0.528691,1.47874,-1.27168,1.7041,1.30901,1.28603,1.44935,1.26885,-0.0617305,-1.09327,1.72436,-0.313537,0.452709,2 +1.01057,0.0224151,0.184595,0.718779,0.292352,-0.557978,0.696669,-1.01565,0.546752,-0.137701,0.903802,0.736243,-0.359587,0.472531,-0.0766656,-0.626933,0.984333,-0.353873,0 +-1.66112,-1.11213,-1.21032,-1.19326,-0.848585,-0.340644,-0.686998,0.648551,-0.610593,-1.23996,-0.656965,-0.712601,-0.513214,1.40749,0.533295,0.828632,-1.44917,-1.42932,2 +-0.568159,-0.301741,0.184595,-0.267114,0.292352,0.528691,-0.416281,0.264505,-0.610593,0.206755,-0.497703,-0.4749,-0.0216094,-0.0617305,-0.279986,-0.403,-0.638004,0.0494182,3 +-0.689599,-0.463819,-0.322648,-0.535994,-0.468273,-0.12331,-0.867477,0.776566,-0.996375,-0.413265,-0.752522,-0.831452,-0.513214,-1.13025,0.736615,-0.179067,1.47103,1.25929,2 +-0.0823959,-1.59837,-1.02011,-0.446368,-0.341502,-0.557978,-0.807317,0.648551,-0.996375,-1.37774,-0.848079,-0.769197,-1.68077,-1.13025,-0.279986,0.044866,1.3088,0.856,1 +0.889129,0.508649,1.57951,1.58517,0.799435,0.311358,1.17795,-1.14366,1.31832,0.413428,1.38159,1.13807,0.900149,-0.328861,-0.279986,2.84403,0.173164,0.856,1 +-0.81104,-1.11213,0.184595,0.24077,-0.0879604,-0.12331,-0.145563,-0.119542,-0.224811,-1.30885,-0.0836219,-0.214561,-1.37352,-1.26382,-1.09327,1.38846,1.47103,1.25929,1 +0.767689,0.184493,0.501622,0.0913924,0.672665,0.0940239,-0.356121,0.264505,-0.224811,0.137864,-0.59326,-0.435283,0.285643,-0.729557,2.15986,-0.626933,0.497632,0.58714,3 +-1.41824,-0.139663,-0.639675,-1.52189,-1.2289,-0.340644,-0.50652,0.39252,-0.610593,-0.0688097,-0.46585,-0.565453,0.0705665,1.27392,-0.889946,-1.18677,-1.44917,-1.42932,0 +-0.446718,0.508649,0.248,4.09472,8.15214,8.78738,-0.47644,0.39252,-0.610593,0.551211,2.65568,-0.531496,0.777248,6.08227,-1.29659,0.268799,-0.638004,-0.219442,3 +1.49633,1.31904,1.00887,0.210895,-0.975356,0.311358,1.41858,-1.27168,1.31832,1.58458,1.47714,1.42105,1.3303,0.2054,-1.09327,-0.403,-0.313537,0.183849,2 +-1.53968,0.0224151,-0.893296,0.00176569,1.43329,-0.557978,-0.5366,0.39252,-0.610593,-0.137701,-0.497703,-0.588091,0.347094,0.338965,0.126654,-1.4107,-0.962471,-0.891594,0 +0.160485,0.508649,1.3893,1.34617,0.672665,0.0940239,1.08771,-1.14366,0.932534,0.206755,1.22233,1.0645,0.838698,0.2054,-0.279986,-0.403,-0.47577,-0.353873,1 +-0.689599,-1.27421,-1.97119,-1.91027,-1.2289,-0.775311,-1.49915,2.05672,-1.38216,-1.37774,-1.70809,-1.31817,-1.52715,1.80818,0.329975,0.380766,-1.61141,-1.69818,3 +0.0390448,0.670727,0.311406,-0.954252,-0.975356,0.528691,-0.326042,0.264505,-0.224811,0.964558,-0.338441,-0.418305,0.347094,0.338965,-0.279986,-0.850866,-0.962471,-0.219442,3 +-0.0823959,-1.27421,-0.386053,0.420023,0.165581,-0.12331,-0.145563,-0.119542,-0.224811,-0.964395,0.07564,-0.197582,-1.09699,-0.729557,-0.483306,-0.626933,0.497632,0.183849,2 +3.07506,1.48112,1.51611,1.52542,0.419123,0.746025,1.32834,-1.27168,1.31832,1.30901,1.09492,1.3305,1.76046,-0.863122,2.76982,-1.29873,0.497632,0.856,2 +-0.0823959,0.184493,-0.00562104,-0.715248,-0.468273,0.528691,-0.295962,0.264505,-0.224811,0.826775,-0.274736,-0.390007,0.43927,0.606096,-0.889946,-0.962833,-0.962471,-0.219442,3 +-0.325277,-0.301741,-0.766486,-1.07375,-0.848585,-0.12331,-1.16827,1.28863,-0.996375,-0.137701,-0.943636,-1.05783,-0.574664,-0.328861,-1.09327,-0.514967,0.173164,-0.219442,3 +-1.05392,-0.463819,-1.02011,-1.40239,-0.975356,-0.557978,-0.626839,0.648551,-0.610593,-0.482157,-0.529555,-0.695622,-0.0216094,2.07531,-0.0766656,0.156833,-1.44917,-1.83261,0 +-0.568159,0.346571,-0.0690264,-0.655496,0.292352,0.528691,-0.386201,0.39252,-0.224811,1.03345,-0.59326,-0.497538,0.408545,0.472531,-0.0766656,0.044866,-0.800238,-0.353873,3 +-0.325277,0.0224151,-0.195837,0.210895,-0.341502,0.0940239,-0.175643,-0.119542,-0.224811,8.14316e-05,-0.147327,-0.203242,0.132017,-1.39738,-1.29659,-0.291034,1.63327,1.66258,2 +-1.90401,-1.11213,-1.21032,-1.61151,-1.35567,-0.557978,-0.807317,0.776566,-0.610593,-1.23996,-0.848079,-0.797494,-0.881917,0.606096,-0.889946,-0.962833,-1.28694,-1.42932,2 +-0.203837,-1.11213,-0.70308,0.151143,0.545894,-0.340644,-0.44636,0.264505,-0.610593,-1.03329,-0.242884,-0.48056,-1.37352,-0.328861,-0.483306,1.2765,0.0109306,-0.0850121,2 +0.524807,1.6432,1.19908,1.76442,1.05298,0.0940239,1.2381,-1.27168,1.31832,1.3779,1.509,1.25126,2.15989,-0.0617305,-1.09327,-0.7389,-0.151303,0.183849,1 +0.889129,-0.463819,-1.27373,0.181019,0.672665,-0.557978,-0.596759,0.264505,-0.610593,-0.619939,-0.625112,-0.559793,-0.298137,-0.996688,0.126654,-0.179067,2.11997,1.79701,0 +0.889129,1.80527,1.3893,0.479775,-1.10213,-0.557978,2.65185,-1.91176,2.86144,1.3779,2.75124,2.92083,1.69901,1.40749,-0.279986,1.50043,-1.44917,-1.56375,0 +0.0390448,-1.43629,-1.02011,-0.535994,-0.0879604,-0.12331,-1.07803,1.16061,-0.996375,-0.895504,-1.1029,-0.989919,-1.7115,-1.39738,0.533295,-1.0748,1.95773,1.66258,3 +0.403367,-0.139663,0.882054,0.77853,0.165581,0.0940239,0.486111,-0.631603,0.546752,-0.275483,0.426016,0.407989,-0.298137,-0.863122,-0.483306,-0.514967,0.335398,0.452709,2 +-0.568159,0.346571,0.12119,-1.07375,-0.848585,0.528691,-0.356121,0.39252,-0.224811,0.826775,-0.625112,-0.486219,0.0398412,0.2054,-0.279986,-0.403,-1.1247,-0.488303,3 +1.61777,1.31904,1.32589,1.55529,0.545894,0.528691,1.20802,-1.14366,1.31832,1.03345,1.06306,1.20599,1.14595,-0.863122,-1.29659,-1.29873,0.335398,0.72157,1 +-1.05392,-0.950053,-0.893296,-1.49201,-1.2289,-0.775311,-1.22843,1.54466,-0.996375,-0.895504,-1.29401,-1.12575,-1.00482,0.338965,0.329975,-0.514967,-1.1247,-1.16045,3 +1.13201,0.832805,1.00887,1.28641,0.165581,0.0940239,0.726749,-0.887634,0.546752,0.895666,0.808245,0.719264,0.316369,-1.13025,-0.279986,-0.850866,1.47103,1.12486,1 +-2.02545,-1.11213,-1.21032,-1.014,-0.341502,-0.775311,-1.16827,1.41664,-0.996375,-1.23996,-1.38957,-1.09179,-1.09699,0.873227,1.34658,0.940598,-0.962471,-1.16045,1 +0.281926,-0.787975,-0.766486,-1.46214,-1.48244,-0.12331,-0.957716,1.16061,-0.996375,-0.482157,-0.848079,-0.967281,-1.09699,1.00679,0.736615,0.044866,-0.962471,-1.69818,3 +-1.2968,-0.463819,-1.02011,-0.386617,0.672665,-0.340644,-0.566679,0.520535,-0.610593,-0.275483,-0.46585,-0.60507,-0.482489,0.739661,-0.483306,-1.18677,-1.1247,-1.02602,0 +-0.0823959,0.0224151,0.248,0.957783,0.926206,-0.340644,0.456031,-0.759619,0.546752,-0.206592,0.457868,0.470244,0.254918,-0.0617305,-1.29659,-0.962833,0.822099,0.183849,0 +-0.568159,-0.625897,-0.449459,-0.774999,-0.721814,-0.340644,-0.686998,0.648551,-0.610593,-0.757721,-0.59326,-0.695622,-0.574664,0.472531,2.36318,-0.850866,-0.800238,-1.02602,1 +-1.53968,-0.301741,-0.893296,-1.31276,-0.595044,-0.12331,-0.596759,0.648551,-0.610593,-0.137701,-0.625112,-0.661665,-0.0830599,1.40749,-0.0766656,0.604699,-1.61141,-1.56375,0 +0.524807,1.6432,1.19908,1.49554,0.926206,0.528691,1.6893,-1.3997,1.7041,2.06682,1.34973,1.74364,1.26885,0.2054,-0.0766656,0.156833,-0.313537,-0.0850121,1 +-0.932481,-0.139663,-0.259243,-0.147612,0.799435,0.0940239,-0.807317,0.648551,-0.996375,-0.0688097,-0.656965,-0.763537,-0.113785,-0.328861,-1.09327,-0.179067,0.173164,0.72157,3 +0.524807,0.670727,0.12119,1.49554,1.56006,-0.340644,0.63651,-0.887634,0.546752,0.413428,0.61713,0.668328,1.05378,0.2054,-0.483306,-0.626933,0.984333,-0.0850121,0 +0.281926,1.6432,1.00887,-0.237239,-0.975356,0.311358,1.3885,-1.27168,1.31832,1.86014,1.19047,1.37577,1.42248,0.472531,-0.686626,-0.7389,-0.638004,-0.353873,1 +0.403367,2.29151,1.64292,1.73455,1.05298,0.528691,1.65922,-1.3997,1.7041,2.61795,1.15862,1.65309,1.3303,-0.328861,0.736615,1.38846,-0.47577,0.318279,1 +-0.203837,-0.950053,0.565027,0.659028,0.0388104,-0.12331,0.215394,-0.503588,0.16097,-0.757721,0.234902,0.14765,-0.728291,-0.729557,-0.686626,1.16453,0.497632,0.58714,1 +-2.51121,-1.27421,-1.84438,-1.73102,-0.975356,-0.557978,-1.28859,1.80069,-0.996375,-1.37774,-1.70809,-1.20498,-0.851192,1.27392,-1.09327,0.268799,-2.09811,-1.56375,1 +-0.568159,-0.463819,0.438217,-0.655496,-0.0879604,0.528691,-0.5366,0.39252,-0.610593,-0.206592,-0.59326,-0.576772,-0.359587,-0.0617305,0.939935,1.16453,-0.313537,0.452709,3 +0.889129,1.31904,1.32589,1.01753,0.165581,0.0940239,0.786909,-0.887634,0.546752,0.964558,0.680835,0.741902,1.0845,-0.595992,-0.279986,-0.850866,0.335398,0.318279,1 +-0.325277,-0.950053,0.0577843,0.0316412,-0.214731,-0.12331,0.0950747,-0.375572,0.16097,-0.964395,0.266754,0.0287995,-0.697566,-0.0617305,-1.29659,-0.291034,-0.151303,-0.219442,2 +-0.932481,-0.787975,-1.27373,-0.864625,0.0388104,-0.340644,-0.566679,0.520535,-0.610593,-1.03329,-0.752522,-0.622048,-0.0523347,1.27392,-0.889946,-1.0748,-1.44917,-1.42932,2 +1.25345,1.15696,0.755243,1.16691,0.545894,-0.775311,1.17795,-1.27168,1.31832,0.895666,1.22233,1.27956,1.3303,0.472531,0.939935,-0.962833,0.659865,-0.622733,0 +-0.568159,-0.139663,-0.893296,-1.67127,-1.48244,-0.340644,-0.566679,0.520535,-0.610593,-0.0688097,-0.561407,-0.633367,0.43927,2.07531,-0.0766656,-0.850866,-1.61141,-1.83261,0 +-0.81104,0.184493,-0.70308,-0.29699,0.545894,-0.557978,-0.5366,0.39252,-0.610593,-0.137701,-0.433998,-0.548474,0.43927,0.0718348,-0.889946,-1.4107,-0.47577,-0.757164,0 +0.646248,0.994884,0.628433,1.01753,0.419123,-0.775311,1.20802,-1.27168,1.31832,0.757884,1.38159,1.30786,1.2074,0.739661,-0.279986,-0.179067,0.335398,-0.891594,0 +0.0390448,-1.43629,-0.893296,-1.25301,-0.975356,-0.340644,-1.25851,1.41664,-0.996375,-1.10218,-1.07105,-1.12009,-1.80368,-0.863122,-1.09327,-1.18677,0.984333,0.0494182,3 +-1.78257,-0.787975,-0.132432,-1.07375,-0.848585,-0.340644,-0.656919,0.776566,-0.610593,-0.895504,-0.529555,-0.72958,-0.943368,0.472531,0.329975,1.9483,-1.28694,-0.353873,1 +-0.568159,-0.787975,-0.386053,0.569401,1.8136,-0.340644,-0.566679,0.39252,-0.610593,-0.826612,-0.46585,-0.554134,-0.820467,-0.0617305,-0.686626,-0.514967,0.659865,0.183849,0 +1.9821,2.12943,1.51611,0.330397,-1.35567,-0.557978,2.77217,-1.91176,2.86144,1.58458,2.8468,3.15853,2.52859,1.40749,0.533295,0.044866,-1.28694,-1.83261,0 +-0.568159,-0.625897,0.12119,-0.83475,-0.468273,0.0940239,-0.596759,0.520535,-0.610593,-0.206592,-0.529555,-0.622048,-0.390313,-0.0617305,-0.483306,0.604699,-0.151303,0.58714,3 +-0.932481,-1.27421,-1.40054,-1.61151,-0.975356,-0.775311,-1.49915,1.9287,-1.38216,-1.10218,-1.51698,-1.30685,-1.40425,-0.0617305,-0.889946,-0.514967,-0.47577,-0.757164,3 +-0.325277,-0.463819,0.12119,1.19679,1.68683,-0.557978,0.064995,-0.375572,-0.224811,-0.68883,0.0119352,0.034459,-0.421038,-0.462426,-0.686626,-0.0671005,1.14657,0.72157,0 +-1.66112,-1.27421,-1.59076,-1.58164,-0.848585,-0.557978,-1.31867,1.67267,-0.996375,-1.58442,-1.48513,-1.19366,-1.31207,1.14036,0.329975,-0.850866,-1.77364,-1.56375,1 +1.25345,1.6432,1.57951,1.58517,0.799435,0.528691,1.47874,-1.27168,1.31832,1.72236,1.38159,1.48896,1.66828,-0.195296,-0.686626,-0.291034,-0.151303,0.452709,2 +0.0390448,-1.11213,0.12119,-0.326865,-0.848585,0.0940239,0.00483551,-0.247557,-0.224811,-1.23996,0.234902,-0.0560937,-0.60539,-0.462426,0.533295,0.268799,0.173164,-0.0850121,1 +1.25345,1.15696,1.13568,0.659028,-0.341502,0.0940239,0.847068,-1.01565,0.932534,0.688993,0.935654,0.809817,1.82191,-0.328861,0.736615,-0.291034,0.335398,0.318279,2 +0.0390448,0.508649,0.311406,-0.207363,0.292352,0.311358,-0.356121,0.264505,-0.224811,0.895666,-0.306588,-0.435283,0.347094,0.338965,-0.483306,0.268799,-0.800238,-0.0850121,3 +-1.17536,0.0224151,-1.02011,-0.446368,0.419123,-0.557978,-0.717078,0.648551,-0.610593,-0.275483,-0.656965,-0.72392,0.0705665,0.0718348,-0.889946,-1.0748,-0.800238,-1.02602,0 +0.403367,0.832805,1.64292,1.25654,0.419123,0.311358,1.35842,-1.27168,1.31832,0.551211,1.38159,1.37577,1.3303,-0.0617305,0.126654,1.83633,-0.151303,0.183849,1 +-0.568159,-0.463819,-0.132432,-0.535994,0.0388104,-0.557978,-0.747158,0.648551,-0.610593,-0.619939,-0.720669,-0.746558,-0.144511,0.2054,2.15986,0.044866,-0.638004,-0.891594,2 +-0.932481,-0.301741,-0.893296,-0.506119,0.0388104,-0.340644,-0.566679,0.39252,-0.610593,-0.413265,-0.306588,-0.582432,-0.328862,0.338965,-0.483306,-0.403,-0.151303,-0.488303,0 +0.160485,0.184493,1.4527,1.49554,0.799435,0.0940239,0.967387,-1.01565,0.932534,8.14316e-05,1.09492,0.917348,0.807973,-0.462426,-0.279986,2.84403,0.335398,0.856,1 +-0.81104,-0.139663,-1.08351,-1.34263,-0.721814,-0.557978,-0.596759,0.648551,-0.610593,-0.275483,-0.59326,-0.672984,-0.113785,1.94175,-0.483306,-0.0671005,-1.61141,-1.83261,0 +-1.41824,0.0224151,-1.02011,2.48144,8.15214,9.43938,-0.626839,0.520535,-0.610593,-0.275483,1.54085,-0.644687,0.316369,6.21584,-1.09327,-1.29873,-1.28694,-1.42932,0 +0.160485,-0.463819,0.184595,0.151143,0.545894,0.0940239,-0.47644,0.39252,-0.610593,-0.275483,-0.656965,-0.525836,-0.759016,-0.996688,0.939935,-0.850866,1.14657,1.12486,3 +0.0390448,-0.463819,-0.893296,-0.56587,0.292352,-0.340644,-1.22843,1.41664,-0.996375,-0.344374,-1.1029,-1.09745,-0.482489,-0.462426,1.5499,-0.850866,0.497632,0.0494182,3 +-0.203837,-1.11213,-1.40054,-1.16338,0.0388104,-0.775311,-1.64955,2.18474,-1.38216,-1.10218,-1.70809,-1.39175,-1.15844,-0.0617305,1.5499,-0.850866,0.173164,-0.219442,3 +1.01057,0.0224151,0.0577843,0.868157,0.419123,-0.775311,0.756829,-1.01565,0.546752,-0.137701,1.15862,0.7702,-0.236686,0.873227,-1.29659,1.6124,0.659865,-0.622733,0 +1.73921,1.31904,1.32589,0.987659,0.292352,0.311358,1.5389,-1.3997,1.7041,1.3779,1.12677,1.53424,1.2074,0.0718348,0.939935,-0.291034,-0.151303,0.452709,2 +0.646248,0.184493,1.4527,1.19679,0.292352,0.528691,0.847068,-0.887634,0.932534,0.275646,0.74454,0.76454,-0.482489,-0.996688,-1.29659,2.2842,0.822099,1.25929,1 +-1.05392,-0.950053,-0.322648,-0.535994,-0.341502,-0.12331,-0.566679,0.520535,-0.610593,-0.964395,-0.402146,-0.616389,-1.28135,0.0718348,-1.29659,0.380766,-0.800238,-0.353873,1 +-1.66112,-0.139663,-0.893296,-1.014,-0.341502,-0.12331,-0.566679,0.520535,-0.610593,-0.206592,-0.59326,-0.627708,-0.0523347,1.00679,0.126654,-0.0671005,-1.44917,-1.42932,0 +0.646248,0.508649,-0.195837,0.898032,0.799435,-0.557978,0.486111,-0.759619,0.546752,0.344537,0.426016,0.475904,-0.113785,0.2054,-0.279986,-0.514967,0.984333,-0.0850121,0 +-0.568159,-0.787975,-0.322648,-0.29699,0.419123,0.0940239,-0.747158,0.648551,-0.610593,-0.482157,-0.656965,-0.712601,-0.974093,-0.328861,-1.29659,-0.850866,0.173164,0.58714,3 +0.0390448,0.508649,0.0577843,-0.207363,0.292352,0.311358,-0.386201,0.264505,-0.610593,0.344537,-0.370293,-0.469241,0.377819,0.2054,-0.483306,0.156833,-0.638004,0.0494182,3 +-2.02545,-1.11213,-0.449459,-0.745123,-0.341502,-0.557978,-0.656919,0.648551,-0.610593,-1.10218,-0.688817,-0.706942,-1.18917,1.00679,1.95654,0.828632,-1.28694,-1.16045,1 +-0.689599,-1.59837,-2.03459,-1.43226,-0.468273,-0.775311,-1.64955,2.31275,-1.38216,-1.79109,-1.80365,-1.40307,-1.12772,0.2054,2.97314,-0.962833,-1.1247,-1.16045,1 +-0.0823959,-0.301741,0.184595,-1.07375,-0.975356,0.311358,-0.416281,0.39252,-0.610593,0.344537,-0.46585,-0.503198,-0.298137,0.338965,1.14325,0.044866,-0.800238,0.0494182,3 +0.160485,0.346571,0.374811,-0.207363,0.292352,0.528691,-0.295962,0.264505,-0.224811,0.620102,-0.402146,-0.390007,0.316369,-0.195296,1.14325,0.044866,0.0109306,0.318279,3 +0.767689,0.0224151,1.13568,1.19679,0.419123,-0.12331,0.967387,-1.14366,0.932534,-0.0688097,1.34973,0.968284,0.43927,-0.0617305,-0.279986,-0.850866,0.0109306,-0.0850121,1 +1.86065,1.31904,1.70632,1.55529,0.926206,0.746025,1.56898,-1.27168,1.7041,1.4468,1.19047,1.5399,1.14595,-0.0617305,1.34658,1.72436,-0.151303,0.72157,2 +-1.05392,-0.301741,-1.14692,-1.22313,-0.721814,-0.12331,-0.566679,0.648551,-0.610593,-0.275483,-0.656965,-0.656006,-0.0523347,1.27392,0.533295,0.156833,-1.44917,-1.56375,0 +-0.0823959,0.670727,-0.195837,0.330397,0.419123,-0.340644,0.125154,-0.503588,0.16097,0.688993,0.0119352,0.130671,0.592896,-0.328861,-0.279986,-0.291034,1.3088,0.856,0 +-0.568159,-1.27421,-1.78097,-1.49201,-1.10213,-0.775311,-1.04796,1.16061,-0.996375,-1.44663,-1.19845,-0.984259,-0.881917,0.873227,1.95654,0.156833,-0.800238,-1.42932,2 +-0.446718,0.508649,-0.259243,-0.804874,-0.341502,0.528691,-0.265882,0.264505,-0.224811,0.826775,-0.497703,-0.395666,0.316369,0.472531,0.736615,-0.179067,-0.962471,-0.488303,3 +-0.203837,-0.787975,-0.00562104,-0.177488,0.165581,0.0940239,-0.686998,0.520535,-0.610593,-0.551048,-0.752522,-0.684303,-1.15844,-1.13025,0.533295,-1.4107,1.63327,1.39372,3 +-0.446718,-1.43629,-1.59076,-1.16338,-0.595044,-0.557978,-1.43899,1.9287,-1.38216,-1.44663,-1.64439,-1.26724,-1.31207,-0.595992,3.17646,1.16453,0.173164,-0.0850121,2 +-1.05392,0.0224151,-0.70308,-0.56587,0.165581,-0.12331,-0.777237,0.648551,-0.610593,-0.0688097,-0.561407,-0.752218,0.132017,-0.0617305,-0.889946,-1.0748,-0.313537,0.0494182,3 +-0.446718,0.184493,-0.132432,-0.774999,0.0388104,0.528691,-0.295962,0.264505,-0.224811,0.551211,-0.625112,-0.418305,0.347094,0.2054,2.15986,-0.626933,-0.638004,-0.353873,3 +-0.568159,-0.463819,-0.766486,-0.625621,0.0388104,-0.340644,-0.656919,0.520535,-0.610593,-0.344374,-0.402146,-0.661665,-0.66684,0.472531,-0.889946,-0.7389,-0.47577,-0.891594,0 +-1.05392,-0.625897,-1.02011,-0.416492,0.419123,2.91936,-0.596759,0.520535,-0.610593,-0.619939,-0.497703,-0.622048,-0.60539,0.338965,-0.0766656,0.380766,-0.800238,-0.622733,0 +0.403367,0.0224151,0.374811,0.121268,0.672665,0.311358,-0.356121,0.264505,-0.224811,0.620102,-0.497703,-0.423964,-0.543939,-0.729557,0.329975,-0.0671005,0.497632,0.58714,3 +0.767689,0.508649,0.818649,1.19679,0.799435,-0.340644,0.907227,-1.14366,0.932534,0.137864,0.871949,0.934327,0.777248,0.0718348,0.126654,-0.179067,0.497632,-0.219442,0 +0.767689,0.184493,1.3893,0.449899,-0.214731,0.0940239,0.847068,-0.887634,0.932534,-0.0688097,1.06306,0.781519,0.715797,0.0718348,1.34658,0.044866,0.0109306,0.183849,2 +-0.932481,-1.43629,-0.322648,-0.117737,-0.214731,-0.340644,-0.566679,0.520535,-0.610593,-1.37774,-0.46585,-0.616389,-1.3428,-0.863122,-1.29659,2.17223,1.14657,0.990431,2 +0.403367,-0.463819,1.19908,0.50965,-0.341502,0.0940239,0.516191,-0.631603,0.546752,-0.68883,0.61713,0.40233,-0.205961,-0.729557,0.126654,3.17993,0.822099,1.39372,2 +0.524807,-0.950053,-0.893296,-1.43226,-1.60921,-0.340644,-1.04796,1.28863,-0.996375,-0.413265,-0.784374,-1.01256,-1.25062,0.338965,-0.483306,-1.29873,-0.47577,-1.29489,3 +1.01057,1.48112,1.13568,-0.177488,-1.10213,0.311358,1.32834,-1.27168,1.31832,1.72236,0.967506,1.29654,0.807973,0.472531,1.14325,1.6124,-0.313537,-0.0850121,1 +-0.568159,0.346571,0.0577843,4.57273,9.03954,8.57004,-0.326042,0.264505,-0.224811,1.03345,1.28603,-0.429624,0.0398412,3.2774,-1.29659,0.156833,-0.800238,-0.219442,3 +-0.932481,0.508649,-0.449459,-0.984128,-0.468273,0.311358,-0.235802,0.264505,-0.224811,1.03345,-0.59326,-0.390007,0.316369,0.338965,-0.686626,-1.29873,-0.962471,-0.488303,3 +-0.81104,-0.463819,-1.14692,-0.56587,0.292352,0.311358,-1.07803,1.16061,-0.996375,-0.413265,-1.00734,-0.995578,-0.482489,-0.729557,0.126654,-1.29873,0.659865,0.72157,3 +-0.689599,-1.27421,-1.21032,-1.16338,-0.468273,-0.775311,-1.31867,1.67267,-0.996375,-1.23996,-1.51698,-1.188,-0.912642,0.2054,1.5499,0.828632,-0.800238,-1.02602,2 +-0.325277,-0.463819,-0.132432,-0.207363,0.545894,-0.12331,-0.626839,0.39252,-0.610593,-0.206592,-0.561407,-0.616389,-0.851192,-0.328861,-0.686626,-0.850866,0.0109306,0.452709,3 +-0.446718,-1.27421,-0.132432,0.0615168,-0.468273,0.0940239,-0.356121,0.136489,-0.224811,-1.10218,-0.529555,-0.378688,-1.8344,-1.66451,-0.686626,0.604699,1.95773,1.79701,2 +-1.53968,-0.463819,-1.21032,-1.31276,-0.848585,-0.12331,-0.596759,0.648551,-0.610593,-0.206592,-0.720669,-0.678644,-0.0830599,1.80818,0.126654,-0.626933,-1.61141,-1.83261,0 +1.49633,0.670727,1.57951,0.748655,-0.595044,0.528691,1.35842,-1.27168,1.31832,0.895666,1.12677,1.3022,-0.0830599,-0.729557,-1.29659,2.956,0.497632,1.39372,1 +-1.66112,-0.301741,-0.893296,-1.46214,-0.975356,-0.12331,-0.566679,0.520535,-0.610593,-0.206592,-0.561407,-0.627708,0.0398412,1.67462,-0.483306,-0.514967,-1.61141,-1.69818,0 +0.160485,0.0224151,-0.132432,0.50965,0.0388104,-0.340644,-0.145563,-0.119542,-0.224811,-0.206592,-0.0199171,-0.191923,0.101292,-0.996688,0.939935,0.604699,1.63327,1.12486,1 +1.13201,1.48112,1.57951,1.46567,0.292352,0.746025,1.59906,-1.3997,1.7041,1.79125,1.03121,1.63045,0.746523,-0.729557,-1.29659,0.604699,0.0109306,0.58714,1 +0.767689,0.184493,0.184595,-0.147612,0.292352,0.528691,-0.175643,0.136489,-0.224811,1.03345,-0.402146,-0.299454,-0.144511,-0.195296,2.36318,-1.4107,0.0109306,0.0494182,3 +-0.325277,-0.787975,-0.386053,0.0615168,0.672665,-0.340644,-0.596759,0.39252,-0.610593,-0.895504,-0.625112,-0.610729,-0.943368,-0.595992,-0.483306,0.492732,0.497632,0.58714,0 +-0.446718,-0.301741,-0.639675,0.0913924,-0.341502,-0.12331,-0.44636,0.136489,-0.610593,-0.275483,-0.46585,-0.452262,-0.513214,-1.53095,1.75322,-0.403,2.2822,1.79701,2 +-0.0823959,-1.43629,-1.14692,-0.117737,0.926206,-0.12331,-0.987796,1.0326,-0.996375,-0.826612,-0.879931,-0.910685,-1.4657,-0.729557,-0.889946,1.83633,0.659865,1.12486,3 +1.25345,0.832805,0.882054,1.25654,0.419123,0.311358,0.546271,-0.759619,0.546752,0.551211,0.585278,0.492882,0.623621,-0.996688,-0.686626,-0.626933,0.984333,1.39372,2 +0.0390448,-0.139663,0.12119,1.40592,1.56006,-0.557978,0.456031,-0.759619,0.546752,-0.206592,0.61713,0.481563,-0.636115,0.0718348,-0.483306,1.05256,1.14657,0.183849,0 +-0.0823959,-1.59837,-0.639675,0.0913924,0.0388104,-0.340644,-0.596759,0.39252,-0.610593,-1.65331,-0.625112,-0.59941,-1.52715,-1.39738,-0.279986,1.9483,2.2822,1.93144,1 +1.49633,0.670727,1.51611,1.25654,0.292352,0.0940239,1.17795,-1.14366,1.31832,0.688993,1.12677,1.16071,0.285643,-0.595992,-1.09327,1.2765,0.173164,0.856,2 +-0.568159,-0.787975,-0.195837,-0.446368,0.292352,0.0940239,-0.747158,0.648551,-0.610593,-0.619939,-0.656965,-0.72958,-0.789741,-0.195296,0.329975,-0.626933,-0.151303,0.183849,3 +1.9821,1.80527,1.32589,1.61505,0.292352,-0.775311,2.44129,-1.91176,2.47566,1.4468,2.9105,2.76236,1.97553,1.67462,-0.483306,-0.7389,-0.800238,-1.69818,0 +-1.05392,-1.43629,-0.259243,-0.595745,-0.848585,-0.340644,-0.656919,0.520535,-0.610593,-1.37774,-0.656965,-0.672984,-1.25062,-1.13025,0.736615,1.2765,1.3088,0.990431,1 +-0.0823959,-0.463819,-0.766486,-1.13351,-0.721814,-0.340644,-1.25851,1.54466,-0.996375,-0.206592,-1.03919,-1.13141,-0.697566,0.2054,-0.279986,-0.962833,0.0109306,-0.757164,3 +-0.81104,-0.950053,-0.512864,-0.506119,-0.468273,-0.557978,-0.5366,0.39252,-0.610593,-0.826612,-0.46585,-0.582432,-1.06627,-0.328861,-1.09327,2.2842,-0.313537,0.0494182,2 +-0.325277,0.0224151,-0.449459,-0.446368,-0.595044,-0.557978,-0.566679,0.39252,-0.610593,-0.137701,-0.59326,-0.593751,0.162742,-0.863122,1.95654,-1.18677,0.659865,0.318279,1 +-1.41824,-1.11213,-1.84438,-1.31276,-0.341502,-0.775311,-1.07803,1.28863,-0.996375,-1.37774,-1.1666,-1.02388,-0.881917,1.94175,-1.29659,-1.4107,-1.93587,-1.69818,1 +1.61777,1.15696,1.19908,1.46567,0.292352,0.528691,0.997467,-1.01565,0.932534,1.10234,0.967506,0.962625,0.531446,-0.996688,2.15986,-1.18677,1.3088,1.39372,1 +0.524807,-0.950053,-0.0690264,0.659028,0.292352,0.0940239,-0.0854037,-0.119542,-0.224811,-0.68883,-0.147327,-0.140987,-1.3428,-1.39738,0.329975,0.716665,1.3088,1.25929,2 +-1.05392,-0.787975,-0.639675,-0.894501,-0.341502,-0.775311,-1.10811,1.16061,-0.996375,-0.895504,-0.943636,-1.01822,-0.759016,-0.595992,-0.686626,-0.403,0.335398,-0.0850121,2 +0.524807,1.48112,1.3893,0.50965,-0.341502,0.311358,1.32834,-1.14366,1.31832,1.65347,1.09492,1.2739,1.29958,0.0718348,-1.09327,1.50043,-0.47577,-0.0850121,1 +1.13201,1.48112,0.565027,0.300521,-0.595044,0.528691,1.5389,-1.27168,1.7041,1.51569,0.999359,1.5116,0.715797,-0.0617305,-1.09327,2.17223,-0.47577,0.318279,1 +-0.203837,-1.43629,-0.259243,-0.117737,-0.595044,-0.12331,-0.47644,0.264505,-0.610593,-1.37774,-0.625112,-0.514517,-1.55787,-1.66451,-0.483306,0.716665,2.2822,2.06587,2 +1.9821,0.994884,1.3893,0.659028,-0.595044,0.746025,1.32834,-1.27168,1.31832,0.964558,1.19047,1.32484,0.469995,-0.595992,2.36318,-1.18677,0.335398,0.452709,2 +-1.41824,0.0224151,-0.893296,-0.894501,0.292352,-0.557978,-0.656919,0.648551,-0.610593,-0.344374,-0.625112,-0.678644,0.285643,1.00679,-1.29659,-1.29873,-1.28694,-1.56375,0 +0.524807,-1.11213,-0.766486,-1.31276,-1.2289,-0.12331,-1.16827,1.54466,-0.996375,-0.619939,-1.00734,-1.11443,-1.31207,0.2054,-1.29659,0.044866,-0.47577,-1.42932,3 +1.73921,0.994884,1.32589,0.838281,-0.214731,0.528691,1.26818,-1.27168,1.31832,0.826775,1.06306,1.25126,0.377819,-0.729557,0.126654,-1.0748,0.173164,0.58714,1 +1.49633,1.48112,1.32589,-0.237239,-1.86275,-0.992645,2.35105,-1.78374,2.47566,1.24012,2.46457,2.55862,2.06771,1.67462,-0.483306,-0.179067,-1.28694,-1.69818,0 +0.0390448,0.0224151,-0.0690264,-0.087861,0.672665,0.0940239,-0.717078,0.648551,-0.610593,-0.0688097,-0.784374,-0.718261,0.132017,-0.863122,0.939935,0.156833,0.822099,0.856,3 +0.281926,0.670727,1.00887,0.539526,-0.341502,-0.557978,1.32834,-1.27168,1.31832,0.275646,1.25418,1.35879,1.0845,0.606096,0.329975,1.72436,-0.151303,-0.891594,0 +-0.0823959,0.508649,0.12119,-0.56587,0.165581,0.528691,-0.386201,0.39252,-0.224811,1.17123,-0.561407,-0.486219,0.408545,0.0718348,0.329975,0.268799,-0.638004,-0.0850121,3 +-0.689599,-0.787975,-0.259243,0.50965,1.43329,-0.557978,-0.326042,0.00847383,-0.224811,-0.964395,-0.115474,-0.344731,-0.820467,0.0718348,-1.09327,-0.179067,0.659865,0.183849,0 +-1.17536,-0.950053,0.501622,0.330397,-0.214731,-0.340644,0.245473,-0.503588,0.16097,-1.17107,0.648983,0.164629,-0.912642,-0.195296,-0.483306,2.84403,0.173164,0.318279,1 +-0.568159,-0.139663,-0.639675,-0.267114,0.545894,-0.340644,-0.747158,0.648551,-0.610593,-0.0688097,-0.720669,-0.72392,-0.175236,-0.462426,0.939935,-1.29873,0.335398,0.318279,0 +-0.0823959,-1.27421,-0.576269,0.151143,0.799435,-0.340644,-0.5366,0.264505,-0.610593,-1.17107,-0.433998,-0.525836,-1.2199,-0.595992,-1.09327,1.05256,1.14657,1.25929,0 +-0.568159,-0.139663,-0.766486,-0.954252,-0.468273,-0.557978,-0.987796,1.0326,-0.996375,-0.137701,-0.656965,-0.944642,-0.267412,0.739661,0.736615,-1.0748,-0.47577,-1.16045,3 +1.01057,1.48112,1.51611,1.55529,0.799435,0.528691,1.14787,-1.14366,1.31832,1.10234,1.25418,1.12109,1.94481,-0.195296,-1.29659,1.50043,0.0109306,0.58714,2 +-1.90401,-1.43629,-1.40054,-1.58164,-0.721814,-0.557978,-1.37883,1.80069,-1.38216,-1.65331,-1.51698,-1.23894,-1.65005,0.739661,-0.686626,0.380766,-1.77364,-1.42932,1 +-0.325277,-0.463819,-1.02011,0.00176569,0.545894,-0.340644,-0.717078,0.39252,-0.610593,-0.551048,-0.625112,-0.650346,-0.482489,-0.729557,-0.483306,-1.4107,1.95773,1.52815,0 +-1.17536,-1.59837,-1.84438,-1.40239,-0.595044,-0.992645,-1.58939,2.31275,-1.38216,-1.7222,-1.70809,-1.38043,-1.43497,0.472531,0.736615,1.6124,-0.962471,-0.757164,2 +1.13201,0.184493,1.51611,1.19679,0.545894,0.311358,1.02755,-1.01565,0.932534,0.0689726,0.903802,0.973944,1.0845,-0.328861,0.533295,-0.291034,0.335398,0.452709,2 +0.767689,-0.625897,-0.449459,1.07729,1.17975,-0.775311,0.215394,-0.631603,0.16097,-0.68883,0.489721,0.221224,-0.728291,-0.0617305,0.126654,0.716665,1.3088,0.183849,0 +-0.325277,-0.463819,-0.0690264,0.718779,0.926206,-0.775311,0.00483551,-0.375572,-0.224811,-0.757721,-0.147327,-0.0334555,-0.574664,-0.595992,-0.686626,1.16453,1.47103,1.12486,0 +0.524807,0.0224151,-0.386053,-0.087861,-0.214731,-0.340644,-0.356121,0.136489,-0.224811,8.14316e-05,-0.147327,-0.390007,0.347094,-0.462426,1.34658,-0.291034,0.173164,0.0494182,1 +0.889129,0.994884,1.4527,1.28641,0.799435,0.311358,1.20802,-1.14366,1.31832,0.964558,1.06306,1.20599,1.51465,0.0718348,-0.279986,1.16453,-0.47577,-0.0850121,1 +-0.446718,-1.43629,-0.259243,0.300521,0.292352,-0.12331,-0.356121,0.136489,-0.610593,-1.51552,-0.211031,-0.412645,-1.00482,-0.863122,-1.09327,0.828632,0.497632,0.318279,1 +0.403367,0.508649,0.755243,0.868157,0.165581,0.0940239,0.365792,-0.631603,0.16097,0.48232,0.362311,0.306117,0.43927,-1.13025,2.76982,-0.179067,1.63327,0.990431,1 +-0.81104,-0.787975,-0.0690264,-0.207363,0.799435,0.311358,-0.686998,0.648551,-0.610593,-0.619939,-0.688817,-0.695622,-0.543939,-0.328861,-1.29659,0.044866,0.0109306,0.452709,3 +-0.0823959,-0.301741,-0.386053,-0.595745,-0.595044,-0.340644,-0.596759,0.39252,-0.610593,-0.344374,-0.529555,-0.593751,0.0398412,-0.462426,1.5499,-1.4107,0.0109306,-0.219442,2 +1.61777,1.6432,1.00887,0.898032,-0.341502,-0.340644,2.1405,-1.78374,2.08988,1.3779,2.20975,2.41147,2.15989,1.00679,-0.686626,-1.29873,-0.47577,-1.56375,0 +-0.203837,-1.27421,0.248,-0.0579854,-0.214731,-0.340644,-0.326042,0.136489,-0.224811,-1.17107,-0.242884,-0.378688,-0.943368,-0.595992,0.533295,0.940598,0.173164,0.0494182,2 +-0.932481,-0.301741,-1.02011,-1.16338,-0.721814,-0.340644,-0.50652,0.39252,-0.610593,-0.413265,-0.370293,-0.565453,-0.0523347,1.14036,-0.0766656,0.156833,-1.28694,-1.42932,0 +1.61777,1.80527,1.3893,1.85405,1.17975,0.528691,1.50882,-1.27168,1.7041,1.65347,1.19047,1.50028,1.29958,-0.195296,2.5665,-0.179067,0.0109306,0.0494182,2 +-1.41824,-0.139663,-0.639675,-0.56587,0.292352,-0.340644,-0.44636,0.39252,-0.610593,-0.275483,-0.242884,-0.508857,0.0705665,1.00679,-1.29659,0.380766,-0.962471,-1.16045,0 +-1.53968,0.184493,-0.70308,-1.16338,-0.721814,-0.340644,-0.47644,0.39252,-0.610593,0.0689726,-0.529555,-0.554134,0.50072,1.14036,-0.686626,0.156833,-1.44917,-1.29489,0 +-1.41824,-0.139663,-0.639675,-0.984128,-0.0879604,-0.340644,-0.656919,0.648551,-0.610593,-0.344374,-0.497703,-0.695622,0.254918,1.14036,-0.0766656,0.492732,-1.28694,-1.42932,0 +-0.0823959,0.346571,0.184595,-0.177488,0.545894,0.528691,-0.386201,0.39252,-0.224811,0.688993,-0.529555,-0.48056,0.101292,0.2054,0.126654,0.268799,-0.962471,-0.0850121,3 +-0.446718,-1.43629,-0.512864,0.0615168,-0.214731,-0.12331,-0.356121,0.136489,-0.610593,-1.37774,-0.370293,-0.412645,-1.5886,-1.53095,-0.0766656,0.940598,1.3088,1.12486,2 +2.10354,1.48112,1.32589,0.0615168,-1.48244,0.528691,1.56898,-1.3997,1.7041,1.65347,1.22233,1.62479,0.807973,-0.462426,1.75322,-0.7389,0.173164,0.318279,1 +1.13201,1.6432,1.13568,0.748655,0.0388104,0.528691,1.29826,-1.27168,1.31832,1.86014,0.903802,1.27956,1.36103,0.0718348,0.736615,0.156833,-0.313537,-0.219442,1 +-0.568159,-0.787975,-1.52735,-0.954252,-0.468273,-0.340644,-1.40891,1.67267,-1.38216,-0.551048,-1.35772,-1.2163,-0.759016,-1.26382,0.126654,-0.962833,1.63327,1.39372,3 +-0.81104,0.346571,-0.0690264,-0.595745,0.0388104,0.0940239,-0.656919,0.520535,-0.610593,0.275646,-0.561407,-0.650346,0.193468,-0.0617305,-1.29659,-0.7389,-0.151303,0.318279,3 +-0.203837,0.184493,-0.195837,0.210895,0.292352,-0.12331,-0.205723,0.00847383,-0.224811,0.0689726,-0.179179,-0.248518,0.101292,-0.729557,-0.889946,-0.291034,0.335398,0.318279,1 +-1.05392,-0.463819,-1.14692,-1.43226,-0.848585,-0.340644,-0.596759,0.648551,-0.610593,-0.137701,-0.688817,-0.661665,-0.0830599,1.67462,-1.09327,-0.7389,-1.61141,-1.83261,0 +-0.932481,0.184493,-0.766486,-0.595745,0.419123,-0.12331,-0.596759,0.520535,-0.610593,-0.137701,-0.59326,-0.616389,0.316369,0.606096,-0.0766656,-0.7389,-0.962471,-1.02602,0 +0.889129,1.80527,1.13568,-0.0281099,-0.848585,0.528691,1.35842,-1.27168,1.31832,1.86014,0.967506,1.36445,1.51465,0.2054,-0.889946,-1.0748,-0.638004,-0.488303,1 +0.0390448,-0.950053,0.438217,0.748655,0.0388104,0.0940239,0.0950747,-0.375572,0.16097,-0.895504,0.07564,0.0231399,-1.65005,-1.26382,-0.483306,1.16453,1.95773,1.79701,1 +-0.932481,-1.27421,-0.829891,-0.56587,0.165581,-0.12331,-0.927636,0.904582,-0.996375,-0.964395,-0.816226,-0.882387,-1.55787,-0.195296,-1.09327,-0.7389,0.0109306,-0.0850121,3 +-0.446718,-0.625897,-0.70308,0.00176569,0.799435,-0.340644,-0.566679,0.39252,-0.610593,-0.68883,-0.433998,-0.588091,-0.543939,-0.195296,-0.686626,0.604699,0.497632,0.183849,0 +1.25345,0.670727,0.438217,-0.0281099,-0.975356,-0.992645,1.29826,-1.27168,1.31832,0.344537,1.5727,1.37011,0.715797,0.739661,-1.09327,1.16453,0.173164,-0.891594,0 +-0.568159,-1.43629,-0.639675,-0.83475,-0.721814,-0.340644,-0.927636,0.904582,-0.996375,-1.51552,-0.816226,-0.871068,-1.37352,-0.0617305,-1.09327,-1.29873,-0.313537,-0.488303,1 +-0.446718,-0.950053,0.248,0.00176569,0.0388104,-0.340644,-0.205723,0.00847383,-0.224811,-1.17107,0.171197,-0.293795,-0.851192,0.2054,-1.09327,1.05256,-0.638004,-0.622733,1 +-1.17536,-0.139663,-0.322648,-0.56587,-0.341502,-0.775311,-0.50652,0.39252,-0.610593,-0.344374,-0.433998,-0.542815,0.0705665,0.606096,0.329975,-1.18677,-0.962471,-1.16045,2 +1.25345,1.96735,1.32589,1.40592,0.926206,0.528691,1.50882,-1.3997,1.7041,1.92903,1.25418,1.51726,1.36103,0.0718348,-0.483306,-1.0748,-0.47577,0.0494182,1 +-1.2968,-0.139663,-0.893296,-0.745123,-0.0879604,-0.12331,-0.656919,0.520535,-0.610593,-0.344374,-0.59326,-0.650346,0.162742,0.2054,-1.09327,-1.29873,-0.638004,-0.622733,0 +-1.05392,-0.950053,-1.59076,-1.28288,-0.721814,-0.557978,-1.64955,2.18474,-1.38216,-0.895504,-1.73995,-1.38609,-0.912642,-1.13025,2.15986,-0.626933,1.3088,0.856,3 +0.646248,1.6432,1.19908,1.10716,0.0388104,0.963359,1.59906,-1.3997,1.7041,2.2046,1.15862,1.59649,1.17668,-0.195296,-0.889946,-1.0748,-0.47577,0.0494182,1 +-0.689599,-0.139663,0.184595,-0.894501,-0.721814,0.528691,-0.356121,0.264505,-0.224811,0.48232,-0.402146,-0.435283,0.00911589,0.472531,-0.279986,0.380766,-0.800238,-0.0850121,3 +0.767689,0.832805,-0.0690264,0.838281,0.672665,-0.557978,0.516191,-0.887634,0.546752,0.688993,0.553426,0.51552,0.715797,0.2054,-0.0766656,-1.29873,1.3088,0.318279,0 +-1.53968,-0.139663,-0.639675,-0.894501,-0.214731,-0.557978,-0.47644,0.39252,-0.610593,-0.137701,-0.274736,-0.525836,0.101292,1.14036,-1.09327,0.268799,-1.1247,-1.29489,0 +-0.932481,-0.625897,-1.02011,-1.07375,-0.721814,-0.557978,-0.987796,1.0326,-0.996375,-0.826612,-1.07105,-0.938983,-0.390313,0.2054,-0.279986,0.156833,-0.962471,-0.891594,2 +-0.0823959,-0.625897,-0.195837,-0.29699,0.165581,-0.12331,-0.747158,0.648551,-0.610593,0.137864,-0.752522,-0.740899,-1.25062,-0.729557,-0.483306,-0.403,0.984333,0.990431,3 +1.61777,1.48112,1.00887,1.22666,0.545894,0.528691,1.47874,-1.27168,1.31832,1.4468,1.03121,1.49462,1.26885,-0.195296,1.5499,-1.4107,-0.151303,0.183849,2 +0.0390448,-1.59837,-1.02011,-0.655496,0.0388104,0.0940239,-1.13819,1.16061,-0.996375,-1.44663,-0.943636,-1.02954,-1.8344,-0.863122,0.329975,-0.626933,1.14657,0.72157,3 +1.37489,1.48112,1.51611,1.37604,0.799435,0.311358,1.17795,-1.14366,1.31832,1.24012,0.903802,1.13241,1.3303,-0.462426,1.5499,1.16453,0.0109306,0.452709,2 +-0.932481,-0.625897,-1.14692,-0.625621,-0.0879604,-0.775311,-0.566679,0.520535,-0.610593,-0.68883,-0.752522,-0.60507,-0.0523347,1.00679,-0.279986,-0.514967,-1.1247,-1.42932,2 +-1.05392,-1.59837,-2.22481,-1.76089,-0.848585,-1.20998,-1.55931,2.05672,-1.38216,-1.79109,-1.67624,-1.34081,-1.09699,2.20888,-0.279986,-0.403,-1.44917,-1.56375,3 +-1.05392,-1.92252,-2.66865,-1.61151,-0.595044,-1.20998,-1.70971,2.56878,-1.38216,-1.99776,-1.86735,-1.44834,-1.4657,1.80818,1.14325,0.940598,-1.28694,-1.69818,2 +-1.53968,-0.139663,-0.893296,-1.46214,-1.10213,-0.557978,-0.5366,0.520535,-0.610593,-0.0688097,-0.59326,-0.60507,0.101292,1.80818,-0.483306,-0.850866,-1.61141,-1.69818,0 +0.767689,1.15696,1.3893,0.599277,-0.341502,0.311358,1.17795,-1.14366,1.31832,1.03345,0.999359,1.14373,0.685072,-0.328861,-1.09327,1.05256,-0.313537,0.318279,2 +-0.0823959,-0.463819,-1.14692,-0.326865,0.799435,0.0940239,-1.04796,1.0326,-0.996375,-0.413265,-0.816226,-0.97294,-0.144511,-0.195296,0.126654,0.044866,0.497632,0.72157,3 +-0.446718,0.508649,-0.259243,-1.04388,-0.721814,0.528691,-0.265882,0.264505,-0.224811,1.30901,-0.625112,-0.418305,0.316369,0.472531,-1.09327,0.156833,-1.1247,-0.488303,3 +0.281926,-1.27421,-0.512864,0.898032,1.56006,-0.775311,-0.115483,-0.247557,-0.224811,-1.37774,-0.0199171,-0.118349,-1.18917,-0.0617305,-1.09327,-1.0748,1.14657,0.58714,0 +-1.05392,0.0224151,-1.08351,-1.22313,-0.721814,-0.12331,-0.5366,0.520535,-0.610593,-0.206592,-0.59326,-0.610729,0.347094,1.14036,-1.09327,-0.291034,-1.61141,-1.56375,0 +0.767689,1.6432,1.19908,0.599277,-0.595044,0.311358,1.59906,-1.3997,1.7041,1.99792,1.15862,1.64743,1.11523,-0.195296,0.126654,0.492732,-0.151303,0.183849,1 +-1.78257,0.346571,-0.512864,-0.83475,-0.0879604,-0.340644,-0.47644,0.264505,-0.610593,0.0689726,-0.433998,-0.514517,0.746523,0.606096,-0.0766656,-0.291034,-0.962471,-0.891594,0 +-0.568159,-1.43629,-0.322648,0.0913924,0.0388104,-0.12331,-0.356121,0.136489,-0.610593,-1.58442,-0.46585,-0.412645,-1.49642,-1.26382,-0.279986,1.05256,1.47103,1.25929,1 +-0.0823959,0.0224151,-0.576269,-0.147612,-0.341502,-0.340644,-0.295962,0.136489,-0.224811,-0.137701,-0.211031,-0.344731,0.408545,-0.996688,0.939935,0.268799,0.984333,0.72157,1 +-1.05392,-0.463819,-1.46394,-1.10363,-0.468273,-0.340644,-0.596759,0.648551,-0.610593,-0.275483,-0.720669,-0.678644,-0.0830599,1.40749,0.329975,-0.962833,-1.61141,-1.83261,0 +0.889129,1.6432,1.64292,1.76442,0.926206,0.746025,1.3885,-1.27168,1.31832,1.3779,1.28603,1.38143,1.2074,-0.195296,-0.889946,0.380766,-0.151303,0.452709,2 +-1.05392,0.346571,-0.449459,-1.43226,-1.10213,0.0940239,-0.356121,0.39252,-0.224811,1.17123,-0.656965,-0.463581,0.0398412,0.606096,-1.09327,-0.626933,-1.1247,-0.622733,3 +-0.0823959,-0.625897,-0.449459,-1.34263,-1.35567,-0.340644,-0.867477,1.0326,-0.996375,-0.482157,-0.784374,-0.882387,-0.789741,0.606096,-0.279986,0.268799,-0.800238,-1.42932,3 +0.160485,-1.43629,-0.576269,0.659028,1.43329,-0.557978,-0.386201,0.00847383,-0.610593,-1.51552,-0.147327,-0.373028,-1.55787,-0.195296,-0.889946,0.716665,1.63327,1.12486,0 +-0.325277,-0.950053,0.0577843,0.210895,-0.341502,-0.340644,0.00483551,-0.247557,-0.224811,-1.10218,0.0437876,-0.0787319,-1.00482,-0.729557,-1.29659,1.2765,0.497632,0.452709,2 +1.13201,1.6432,1.32589,1.25654,0.419123,0.528691,1.29826,-1.27168,1.31832,1.17123,1.28603,1.31918,2.28279,-0.0617305,-0.279986,0.380766,-0.151303,0.0494182,1 +-1.05392,-1.76044,-1.84438,-1.25301,-0.468273,-0.557978,-1.58939,2.18474,-1.38216,-1.85998,-1.64439,-1.37477,-1.4657,-0.328861,-0.686626,0.828632,-0.638004,-0.891594,2 +0.160485,-1.11213,-1.02011,-1.28288,-1.2289,-0.12331,-1.07803,1.41664,-0.996375,-0.551048,-0.975488,-1.05783,-1.06627,0.739661,0.939935,-0.514967,-0.800238,-1.69818,3 +1.25345,2.12943,1.32589,1.82417,0.926206,0.528691,1.50882,-1.3997,1.7041,1.92903,1.34973,1.56254,2.19061,-0.195296,0.126654,-0.962833,-0.313537,0.0494182,1 +-1.17536,-0.139663,-0.132432,-0.864625,-0.468273,0.528691,-0.386201,0.39252,-0.224811,0.620102,-0.720669,-0.514517,0.0398412,0.2054,-0.279986,0.492732,-0.962471,-0.353873,3 +0.0390448,-0.301741,-0.893296,0.0316412,0.672665,-0.557978,-0.807317,0.648551,-0.996375,-0.413265,-0.784374,-0.735239,0.0705665,-0.996688,0.736615,-0.514967,1.47103,0.990431,0 +-0.0823959,0.346571,0.184595,-0.237239,0.419123,0.746025,-0.416281,0.264505,-0.610593,0.620102,-0.306588,-0.486219,0.101292,0.472531,-0.889946,-0.403,-0.800238,0.0494182,3 +2.22498,0.832805,1.76973,0.50965,-0.721814,0.528691,1.35842,-1.27168,1.31832,0.757884,1.38159,1.33615,0.869424,-0.195296,2.36318,1.6124,0.335398,0.856,2 +-0.325277,-1.43629,-0.322648,-0.356741,-0.721814,-0.340644,-0.416281,0.136489,-0.610593,-1.51552,-0.370293,-0.446602,-1.5886,-0.996688,0.329975,0.268799,0.984333,0.72157,2 +-0.203837,-0.301741,-0.829891,-0.326865,-0.721814,-0.340644,-0.596759,0.39252,-0.610593,-0.344374,-0.59326,-0.60507,-0.205961,-1.26382,1.5499,0.604699,1.47103,0.990431,1 +0.646248,0.508649,1.3893,0.808406,0.165581,0.311358,0.967387,-1.01565,0.932534,0.275646,1.03121,0.928667,0.746523,0.0718348,0.329975,-0.962833,-0.151303,0.183849,2 +0.524807,2.12943,1.19908,1.16691,0.419123,0.746025,1.71938,-1.3997,1.7041,2.34238,1.15862,1.74364,1.26885,-0.195296,-0.0766656,-1.29873,-0.638004,0.0494182,1 +-1.2968,-1.27421,-1.78097,-1.52189,-0.848585,-0.992645,-1.19835,1.41664,-0.996375,-1.44663,-1.35772,-1.10311,-1.06627,1.14036,-0.483306,0.044866,-1.44917,-1.56375,2 +-0.325277,-0.950053,0.374811,0.599277,0.165581,0.0940239,0.185314,-0.375572,0.16097,-1.10218,0.266754,0.096714,-0.574664,-0.462426,-1.29659,1.16453,0.335398,0.318279,2 +-0.568159,-0.787975,-1.40054,-1.13351,-0.721814,-0.557978,-1.52923,1.9287,-1.38216,-0.757721,-1.45327,-1.30685,-0.66684,-0.996688,0.736615,-0.514967,0.659865,0.452709,3 +-0.568159,-1.59837,-0.766486,-0.924376,-0.468273,-0.340644,-1.28859,1.54466,-1.38216,-1.37774,-1.32586,-1.14839,-1.92658,-1.13025,-0.483306,0.716665,1.63327,1.52815,3 +1.13201,0.670727,1.13568,0.748655,-0.214731,0.311358,0.486111,-0.759619,0.546752,0.826775,0.426016,0.441946,0.101292,-1.39738,1.34658,-0.514967,1.47103,1.66258,2 +-1.66112,0.0224151,-0.70308,-1.22313,-0.721814,-0.340644,-0.5366,0.520535,-0.610593,-0.0688097,-0.561407,-0.582432,0.0398412,0.873227,-0.686626,0.380766,-1.28694,-1.16045,0 +-0.932481,-0.463819,-1.08351,-1.58164,-1.10213,-0.557978,-0.50652,0.520535,-0.610593,-0.482157,-0.433998,-0.593751,-0.0830599,1.67462,-0.279986,-0.962833,-1.61141,-1.69818,0 +0.767689,0.184493,-0.0690264,0.539526,-0.0879604,0.0940239,-0.0854037,-0.119542,-0.224811,0.413428,0.0119352,-0.140987,0.00911589,-1.26382,1.34658,-0.403,1.47103,1.52815,2 +-0.932481,-0.950053,-1.40054,-0.864625,-0.214731,-0.340644,-1.49915,1.80069,-1.38216,-0.964395,-1.54883,-1.28987,-1.03554,-1.53095,0.126654,-0.514967,1.7955,1.52815,3 +-1.2968,-1.27421,-1.27373,-1.67127,-1.10213,-0.557978,-1.40891,1.80069,-1.38216,-1.30885,-1.45327,-1.25592,-1.2199,0.873227,-1.29659,-0.626933,-1.28694,-1.42932,3 +-1.41824,0.0224151,-0.893296,-0.56587,0.926206,-0.775311,-0.626839,0.520535,-0.610593,-0.275483,-0.625112,-0.667325,0.285643,1.00679,-0.279986,-1.4107,-1.28694,-1.56375,0 +-0.0823959,0.346571,0.374811,0.927908,0.545894,-0.340644,0.125154,-0.375572,0.16097,0.206755,0.266754,0.0684163,0.930874,-0.863122,-1.29659,-1.0748,0.984333,0.856,2 +-0.325277,-0.301741,0.374811,-0.356741,-0.0879604,0.0940239,-0.596759,0.520535,-0.610593,0.620102,-0.752522,-0.644687,-1.06627,-1.13025,-1.09327,1.50043,1.3088,1.52815,3 +0.281926,0.0224151,-0.132432,-0.207363,0.165581,0.0940239,-0.686998,0.648551,-0.610593,8.14316e-05,-0.879931,-0.701282,-0.421038,-1.13025,-0.279986,-0.291034,1.63327,1.52815,3 +1.61777,1.96735,1.51611,0.300521,-1.35567,-0.12331,2.65185,-1.91176,2.86144,1.65347,2.75124,2.90951,1.76046,1.40749,-0.889946,0.828632,-1.28694,-1.56375,0 +-0.81104,-0.139663,-0.766486,0.300521,1.68683,-0.557978,-0.686998,0.520535,-0.610593,-0.482157,-0.688817,-0.644687,0.101292,-0.462426,-0.0766656,-1.29873,0.822099,0.72157,0 +-1.2968,0.184493,-0.576269,-0.954252,-0.341502,-0.557978,-0.626839,0.520535,-0.610593,-0.137701,-0.688817,-0.639027,0.254918,0.338965,0.329975,-1.4107,-0.638004,-0.622733,0 +-0.932481,-0.625897,-1.02011,-1.19326,-0.848585,-0.340644,-1.01788,1.16061,-0.996375,-0.826612,-1.1029,-0.984259,-0.298137,0.2054,-0.686626,-0.962833,-1.44917,-1.16045,1 +1.86065,1.48112,1.70632,1.6748,0.799435,0.528691,1.35842,-1.27168,1.31832,1.4468,1.19047,1.3305,1.14595,-0.595992,0.939935,2.17223,0.0109306,0.856,2 +0.0390448,-1.27421,-0.576269,0.50965,1.17975,-0.340644,-0.44636,0.136489,-0.610593,-1.44663,-0.561407,-0.440943,-1.31207,-0.729557,-0.889946,-0.514967,1.3088,1.39372,0 +0.767689,-0.139663,0.691838,0.718779,0.0388104,-0.12331,0.516191,-0.759619,0.546752,-0.0688097,0.426016,0.458925,-0.728291,-0.863122,-1.29659,-1.18677,0.659865,0.318279,1 +-1.41824,-0.301741,-0.576269,-0.446368,0.419123,-0.340644,-0.5366,0.39252,-0.610593,-0.344374,-0.338441,-0.559793,-0.451763,0.472531,-0.279986,-0.179067,-0.638004,-0.891594,0 +-0.932481,0.184493,-0.576269,-1.31276,-0.595044,-0.557978,-0.5366,0.520535,-0.610593,-0.0688097,-0.59326,-0.59941,0.408545,1.27392,0.533295,-0.179067,-1.44917,-1.56375,0 +2.71074,1.31904,1.76973,1.85405,0.672665,0.746025,1.44866,-1.27168,1.31832,1.17123,1.34973,1.42671,1.4532,-0.729557,1.95654,1.72436,0.497632,1.39372,2 +-0.568159,0.184493,-0.322648,-1.31276,-1.2289,0.311358,-0.386201,0.39252,-0.224811,0.826775,-0.561407,-0.503198,0.0705665,0.739661,0.126654,0.492732,-0.962471,-0.622733,3 +-0.568159,0.508649,0.184595,0.599277,0.292352,-0.12331,0.00483551,-0.247557,-0.224811,0.344537,-0.0199171,-0.0730724,0.469995,-1.13025,1.95654,-0.850866,0.984333,0.72157,2 +-1.2968,-0.625897,-0.766486,-0.416492,0.419123,-0.340644,-0.747158,0.648551,-0.610593,-0.482157,-0.656965,-0.740899,-0.851192,-0.195296,-0.483306,-0.0671005,-0.151303,-0.0850121,0 +-0.689599,-0.301741,0.12119,-0.984128,-0.848585,0.528691,-0.44636,0.39252,-0.610593,0.137864,-0.46585,-0.508857,-0.328862,0.0718348,-0.0766656,-1.18677,-0.638004,0.0494182,3 +0.281926,0.346571,1.32589,1.37604,0.926206,0.311358,0.937307,-1.01565,0.932534,-0.0688097,0.999359,0.89471,0.777248,0.0718348,-0.0766656,-0.7389,-0.313537,-0.219442,1 +-0.689599,-1.27421,-1.59076,-1.10363,0.0388104,-0.557978,-1.01788,1.16061,-0.996375,-1.58442,-1.19845,-0.989919,-0.943368,1.40749,1.95654,0.380766,-1.44917,-1.56375,2 +0.524807,-1.11213,-1.02011,-1.16338,-0.848585,-0.340644,-1.16827,1.28863,-0.996375,-0.68883,-0.911784,-1.06915,-1.5886,-0.462426,-0.686626,-0.0671005,0.335398,-0.219442,3 +-0.568159,0.0224151,-0.0690264,2.30218,5.10964,7.48337,-0.416281,0.39252,-0.224811,0.826775,0.362311,-0.525836,0.0705665,2.34245,0.533295,0.492732,-0.962471,-0.488303,3 +-0.81104,-0.463819,-0.386053,-0.29699,0.419123,-0.775311,-0.416281,0.136489,-0.610593,-0.68883,-0.147327,-0.440943,-0.543939,0.472531,-0.0766656,-0.0671005,0.0109306,-0.353873,0 +-0.0823959,-1.43629,-1.21032,-0.894501,-0.595044,-0.12331,-1.10811,1.16061,-0.996375,-0.826612,-0.975488,-1.01822,-1.65005,-0.729557,-0.686626,1.6124,0.659865,0.72157,3 +1.86065,1.6432,1.26249,0.00176569,-1.35567,-0.557978,2.17058,-1.78374,2.08988,1.17123,2.43272,2.43411,2.22134,1.54105,0.736615,-0.179067,-0.800238,-1.69818,0 +-0.446718,-1.11213,-0.449459,-0.147612,0.292352,-0.340644,-0.5366,0.264505,-0.610593,-1.17107,-0.656965,-0.537155,-1.09699,-0.863122,-1.29659,-1.4107,0.984333,1.12486,0 +0.524807,1.15696,0.248,1.13704,0.926206,-0.775311,0.696669,-1.01565,0.546752,0.895666,0.74454,0.736243,1.42248,0.338965,-0.483306,-0.7389,0.822099,-0.0850121,0 +-1.41824,-1.27421,-1.02011,-1.28288,-0.975356,-0.340644,-1.10811,1.41664,-0.996375,-1.44663,-1.29401,-1.06349,-1.00482,-0.0617305,2.15986,-0.626933,-0.962471,-1.16045,2 +-0.325277,-0.787975,1.00887,0.688903,0.292352,0.0940239,0.245473,-0.375572,0.16097,-0.895504,0.171197,0.14199,-0.298137,-0.863122,0.533295,2.50813,0.984333,1.25929,2 +0.524807,-0.787975,-0.322648,0.0615168,-0.0879604,-0.557978,0.0950747,-0.503588,0.16097,-0.619939,0.266754,0.096714,-1.03554,-0.0617305,-0.483306,0.492732,1.63327,0.72157,0 +1.49633,1.31904,1.00887,0.718779,-0.214731,0.311358,1.3885,-1.27168,1.31832,1.4468,1.12677,1.36445,1.3303,0.0718348,0.329975,0.940598,-0.151303,0.183849,2 +-0.0823959,-0.301741,-0.259243,-0.087861,-0.341502,-0.340644,-0.5366,0.39252,-0.610593,-0.482157,-0.211031,-0.554134,-0.0216094,-0.595992,1.75322,-1.18677,0.659865,0.183849,1 +0.0390448,-1.27421,-0.639675,0.718779,1.30652,-0.557978,-0.326042,0.00847383,-0.610593,-1.03329,-0.147327,-0.310773,-1.4657,-0.328861,-1.29659,0.156833,1.7955,1.12486,0 +-0.568159,-1.43629,-0.893296,-0.595745,-0.214731,-0.12331,-1.07803,1.16061,-0.996375,-0.964395,-1.13475,-0.989919,-1.7115,-1.39738,-0.0766656,0.604699,1.95773,1.79701,3 +-1.05392,0.0224151,-0.766486,-1.16338,-0.468273,-0.12331,-0.5366,0.520535,-0.610593,-0.137701,-0.561407,-0.59941,0.377819,0.873227,-0.889946,-0.850866,-1.28694,-1.29489,0 +-0.932481,0.0224151,-0.576269,-0.506119,0.165581,-0.557978,-0.596759,0.39252,-0.610593,-0.206592,-0.59326,-0.593751,0.0398412,-0.195296,-0.0766656,-1.29873,0.0109306,0.0494182,0 +1.49633,0.508649,1.57951,0.987659,-0.0879604,0.311358,1.14787,-1.14366,1.31832,0.344537,1.22233,1.10411,0.777248,-0.328861,-0.279986,1.72436,0.173164,0.990431,2 +1.61777,1.15696,1.32589,0.50965,-0.595044,0.528691,1.35842,-1.27168,1.31832,0.964558,0.903802,1.33615,0.43927,-0.863122,-0.0766656,-0.850866,0.0109306,0.318279,1 +1.86065,0.994884,1.13568,0.838281,-0.341502,0.311358,0.696669,-0.887634,0.546752,0.895666,0.680835,0.64003,0.623621,-1.13025,1.5499,-1.0748,1.14657,0.856,1 +1.86065,0.508649,1.57951,1.37604,0.0388104,0.311358,1.08771,-1.14366,0.932534,0.688993,1.06306,1.04186,-0.205961,-0.996688,0.533295,2.17223,0.984333,1.39372,1 +-0.446718,0.832805,0.501622,0.569401,-0.0879604,0.311358,0.365792,-0.631603,0.16097,0.688993,0.712687,0.294798,1.39175,-0.462426,-0.0766656,0.716665,0.335398,0.452709,2 +-0.0823959,0.0224151,0.0577843,-0.804874,-0.721814,0.311358,-0.356121,0.264505,-0.224811,0.48232,-0.274736,-0.429624,0.408545,0.338965,-1.09327,0.940598,-0.800238,0.183849,3 +-1.41824,-0.625897,-0.766486,-0.416492,0.292352,-0.340644,-0.626839,0.520535,-0.610593,-0.68883,-0.529555,-0.633367,-0.697566,-0.0617305,-0.279986,0.492732,-0.313537,-0.0850121,0 +0.281926,1.15696,1.3893,1.58517,0.672665,0.0940239,0.877148,-1.01565,0.932534,1.03345,0.903802,0.843774,1.57611,-0.729557,1.14325,0.828632,0.497632,0.72157,1 +-0.446718,-0.463819,-1.21032,-1.28288,-0.848585,-0.340644,-0.50652,0.520535,-0.610593,-0.413265,-0.497703,-0.588091,-0.0523347,1.14036,-1.29659,0.268799,-1.44917,-1.56375,0 +-0.0823959,-0.787975,-1.27373,-1.55176,-1.60921,-0.340644,-1.13819,1.41664,-0.996375,-0.206592,-0.911784,-1.08047,-0.574664,0.739661,0.329975,-0.7389,-0.800238,-1.56375,3 +-0.325277,-0.625897,-1.02011,-1.13351,-0.721814,0.0940239,-1.28859,1.54466,-0.996375,-0.275483,-0.943636,-1.14839,-0.60539,-0.0617305,-0.686626,-0.291034,0.335398,-0.219442,3 +0.160485,0.0224151,1.4527,1.16691,0.292352,0.311358,0.546271,-0.631603,0.546752,0.137864,0.426016,0.453265,-0.513214,-1.13025,0.126654,2.17223,1.47103,2.06587,2 +-0.568159,-1.27421,-1.97119,-1.73102,-0.975356,-0.775311,-1.46907,1.9287,-1.38216,-1.44663,-1.61254,-1.28422,-0.851192,1.27392,0.126654,-0.962833,-1.28694,-1.69818,3 +1.01057,0.994884,0.628433,0.748655,-0.214731,-0.557978,1.5389,-1.3997,1.7041,0.964558,1.85937,1.64743,1.05378,1.00679,0.126654,-0.626933,-0.151303,-1.29489,0 +1.37489,1.48112,1.13568,1.52542,0.926206,0.311358,1.56898,-1.3997,1.7041,1.51569,1.38159,1.57386,0.838698,0.0718348,-1.29659,0.044866,-0.313537,0.452709,2 +2.34642,1.96735,1.70632,0.748655,-0.721814,-0.557978,2.74209,-1.91176,2.86144,1.86014,3.16532,3.06798,2.65149,1.67462,0.939935,0.940598,-1.1247,-1.69818,0 +-0.81104,-0.301741,-1.08351,-1.25301,-0.721814,-0.12331,-0.596759,0.648551,-0.610593,-0.344374,-0.625112,-0.667325,-0.113785,1.67462,-0.0766656,-1.0748,-1.44917,-1.83261,0 +0.524807,0.994884,0.882054,1.01753,0.545894,0.311358,0.57635,-0.759619,0.546752,0.620102,0.585278,0.52684,1.72973,-0.595992,0.736615,-1.29873,0.335398,0.452709,2 +0.0390448,-1.11213,0.374811,0.300521,-0.214731,-0.340644,0.0349152,-0.247557,0.16097,-1.17107,-0.0199171,-0.027796,-0.943368,-0.863122,-0.889946,1.72436,0.984333,1.12486,2 +-1.41824,-0.139663,-1.21032,-1.37251,-0.975356,-0.340644,-0.5366,0.520535,-0.610593,-0.0688097,-0.720669,-0.627708,0.316369,1.14036,-0.686626,-0.962833,-1.61141,-1.83261,0 +1.49633,0.670727,0.882054,0.957783,-0.0879604,0.311358,0.365792,-0.631603,0.16097,0.688993,0.266754,0.306117,0.162742,-1.39738,2.5665,0.268799,2.11997,1.79701,1 +-0.568159,-0.139663,-0.00562104,-0.984128,-0.975356,-0.557978,-0.596759,0.520535,-0.610593,-0.275483,-0.59326,-0.610729,-0.205961,-0.595992,0.736615,0.156833,-0.151303,-0.353873,1 +-0.0823959,-0.301741,0.374811,0.0316412,0.545894,0.0940239,-0.566679,0.520535,-0.610593,-0.0688097,-0.784374,-0.59941,-0.974093,-0.996688,-0.889946,0.492732,1.14657,1.39372,3 +-0.568159,-1.11213,-0.132432,0.00176569,-0.341502,-0.340644,-0.235802,0.00847383,-0.224811,-1.17107,-0.0836219,-0.288135,-1.15844,-0.595992,-0.279986,0.268799,0.497632,0.183849,2 +0.524807,-0.139663,-0.259243,-0.267114,0.165581,-0.12331,-0.807317,0.776566,-0.996375,8.14316e-05,-0.911784,-0.791835,-0.113785,-1.26382,2.5665,-1.18677,1.95773,1.52815,3 +1.25345,1.15696,0.882054,0.569401,-0.341502,0.0940239,0.57635,-0.759619,0.546752,0.895666,0.553426,0.509861,0.930874,-0.729557,0.939935,-0.514967,0.659865,0.58714,1 +0.646248,1.96735,1.70632,1.52542,0.545894,0.528691,1.56898,-1.3997,1.7041,1.92903,1.44529,1.61347,1.88336,-0.328861,0.736615,1.38846,-0.151303,0.58714,1 +-0.932481,-0.463819,-1.08351,-1.31276,-0.975356,-0.340644,-0.566679,0.520535,-0.610593,-0.551048,-0.561407,-0.639027,-0.0830599,1.67462,-0.889946,-0.514967,-1.44917,-1.83261,0 +1.61777,1.96735,1.26249,0.449899,-0.848585,-0.340644,1.96002,-1.65573,2.08988,1.58458,1.73196,2.16245,1.66828,0.606096,0.126654,-0.179067,-0.313537,-1.16045,0 +1.86065,1.48112,1.32589,1.07729,0.165581,0.528691,1.59906,-1.3997,1.7041,1.86014,1.28603,1.58517,1.17668,-0.195296,-0.0766656,0.156833,-0.313537,0.58714,2 +-0.568159,-0.139663,-0.386053,-1.31276,-0.975356,0.311358,-0.386201,0.39252,-0.224811,0.206755,-0.816226,-0.497538,0.0398412,0.472531,1.14325,-0.0671005,-0.800238,-0.353873,3 +0.646248,0.994884,0.374811,0.569401,0.0388104,-0.775311,1.02755,-1.14366,0.932534,0.688993,1.06306,1.04752,1.36103,0.606096,0.329975,1.50043,0.335398,-0.757164,0 +0.403367,0.0224151,0.565027,-0.237239,0.165581,0.311358,-0.5366,0.520535,-0.610593,8.14316e-05,-0.720669,-0.59941,-0.113785,-0.996688,2.36318,0.828632,1.3088,1.25929,3 +-0.81104,-0.625897,-0.576269,-0.326865,0.292352,-0.340644,-0.5366,0.39252,-0.610593,-0.68883,-0.433998,-0.559793,-0.697566,0.0718348,-0.686626,-0.514967,0.173164,-0.219442,0 +-0.568159,-0.787975,-0.639675,-0.416492,0.165581,-0.340644,-0.686998,0.520535,-0.610593,-0.895504,-0.433998,-0.672984,-0.912642,-0.0617305,-0.483306,-0.291034,0.497632,0.0494182,0 +-0.932481,-0.787975,-0.449459,-0.685372,0.0388104,-0.557978,-0.867477,0.904582,-0.996375,-0.895504,-0.975488,-0.84843,-0.390313,-0.0617305,-0.686626,0.940598,-0.962471,-0.757164,1 +-1.2968,-1.27421,-1.78097,-1.13351,-0.0879604,-0.992645,-1.01788,1.16061,-0.996375,-1.44663,-1.1666,-0.955962,-1.03554,1.67462,-0.686626,-0.7389,-1.44917,-1.69818,2 +1.01057,1.48112,1.19908,0.629152,-0.468273,0.311358,1.59906,-1.3997,1.7041,1.58458,1.12677,1.63045,0.869424,-0.195296,1.34658,-0.7389,0.0109306,0.318279,1 +0.646248,1.6432,1.19908,1.49554,0.799435,0.311358,1.65922,-1.3997,1.7041,2.06682,1.25418,1.68139,1.17668,0.2054,0.939935,0.828632,-0.313537,0.0494182,1 +0.889129,1.48112,1.51611,0.569401,-0.595044,-0.340644,2.02018,-1.65573,2.08988,1.10234,2.14604,2.2247,2.40569,1.14036,-0.0766656,0.156833,-0.638004,-1.42932,0 +2.83218,1.15696,1.76973,1.76442,0.419123,0.746025,1.29826,-1.27168,1.31832,1.03345,1.25418,1.29088,1.39175,-0.863122,2.97314,1.38846,0.822099,1.25929,2 +-0.689599,-0.139663,-0.322648,-0.0579854,-0.341502,-0.557978,-0.5366,0.39252,-0.610593,-0.206592,-0.433998,-0.548474,0.0705665,-1.13025,0.533295,-0.0671005,2.11997,1.66258,1 +0.160485,-0.139663,0.12119,-0.326865,0.0388104,0.311358,-0.717078,0.648551,-0.610593,8.14316e-05,-0.816226,-0.72392,-0.267412,-1.13025,0.736615,-0.7389,1.63327,1.39372,3 +-0.568159,-0.787975,-0.829891,-0.655496,-0.468273,-0.557978,-1.10811,1.16061,-0.996375,-0.757721,-1.07105,-1.01822,-0.728291,-1.53095,1.95654,-0.7389,2.2822,1.79701,1 +0.403367,0.184493,1.19908,1.22666,0.545894,-0.12331,0.696669,-0.759619,0.546752,0.206755,0.61713,0.600414,-0.175236,-0.863122,-1.09327,2.17223,0.335398,0.58714,1 +-0.689599,-1.11213,-1.52735,-0.954252,-0.214731,-0.775311,-0.626839,0.648551,-0.610593,-1.17107,-0.816226,-0.684303,-0.543939,1.80818,1.14325,-1.4107,-1.44917,-1.69818,2 +-0.325277,0.184493,-0.259243,-0.625621,-0.0879604,0.0940239,-0.656919,0.520535,-0.610593,0.275646,-0.656965,-0.661665,0.746523,-0.328861,1.34658,-0.179067,0.0109306,0.58714,3 +-1.53968,0.346571,-0.829891,-0.685372,0.292352,-0.557978,-0.5366,0.39252,-0.610593,-0.0688097,-0.561407,-0.565453,0.623621,0.338965,-0.279986,-1.4107,-0.962471,-1.02602,0 +0.524807,0.832805,0.501622,0.688903,0.165581,0.0940239,0.245473,-0.503588,0.16097,0.48232,0.203049,0.181607,0.685072,-0.996688,0.736615,-1.29873,0.659865,0.72157,2 +-0.0823959,-0.463819,0.374811,0.569401,0.0388104,0.311358,0.425952,-0.631603,0.16097,-0.482157,0.61713,0.362713,-0.205961,-0.328861,-0.686626,-0.0671005,0.0109306,0.183849,1 +-0.325277,0.0224151,-0.386053,0.0615168,0.926206,-0.340644,-0.566679,0.39252,-0.610593,-0.275483,-0.59326,-0.565453,0.132017,-0.462426,1.14325,-1.29873,0.984333,0.72157,0 +1.86065,0.670727,1.70632,0.718779,-0.341502,0.311358,1.14787,-1.14366,1.31832,0.551211,1.15862,1.10411,1.17668,-0.328861,1.34658,2.06026,0.335398,0.856,2 +-0.81104,0.0224151,-0.00562104,-0.147612,-0.214731,-0.12331,-0.386201,0.136489,-0.610593,-0.275483,-0.242884,-0.418305,-0.0216094,-0.328861,-0.889946,-1.18677,0.173164,0.0494182,1 +0.767689,0.670727,0.882054,1.10716,0.165581,0.0940239,0.516191,-0.759619,0.546752,0.551211,0.426016,0.447606,0.0398412,-1.39738,-0.686626,-0.850866,1.3088,1.25929,1 +1.73921,1.15696,1.70632,0.390148,-0.848585,0.746025,1.41858,-1.27168,1.31832,1.58458,1.28603,1.39841,1.2074,-0.0617305,0.736615,1.72436,0.0109306,0.72157,2 +0.889129,0.184493,1.4527,0.77853,-0.0879604,0.311358,0.877148,-0.887634,0.932534,0.137864,0.776392,0.781519,0.623621,-0.863122,0.126654,2.84403,0.497632,1.25929,2 +0.160485,0.346571,-0.0690264,0.210895,-0.341502,-0.340644,-0.0252442,-0.247557,-0.224811,0.275646,0.234902,-0.0843915,0.316369,-0.729557,-0.483306,-0.962833,0.335398,0.318279,2 +-0.568159,0.346571,0.184595,-0.655496,-0.468273,0.311358,-0.47644,0.39252,-0.610593,0.206755,-0.433998,-0.514517,0.347094,0.2054,1.34658,-0.626933,-0.47577,0.183849,3 +-0.81104,0.0224151,-0.322648,-0.476243,-0.341502,-0.340644,-0.44636,0.39252,-0.610593,-0.206592,-0.242884,-0.508857,-0.0830599,0.338965,1.75322,0.156833,-0.800238,-0.891594,1 +1.73921,1.48112,1.4527,1.01753,0.0388104,0.528691,0.997467,-1.01565,0.932534,1.10234,0.871949,0.951305,1.85263,-0.595992,1.14325,-1.0748,0.173164,0.58714,2 +-0.446718,0.346571,0.184595,-0.595745,-0.214731,0.311358,-0.416281,0.264505,-0.610593,0.48232,-0.306588,-0.48056,0.347094,0.338965,-1.09327,-0.850866,-0.638004,0.0494182,3 +-1.41824,-1.27421,-1.46394,-1.04388,0.165581,-0.340644,-1.01788,1.28863,-0.996375,-1.37774,-1.19845,-0.995578,-0.974093,1.27392,0.939935,1.2765,-1.61141,-1.42932,2 +-1.17536,0.0224151,-0.893296,-0.625621,0.292352,-0.557978,-0.686998,0.648551,-0.610593,-0.413265,-0.656965,-0.695622,0.162742,0.338965,-0.279986,-1.29873,-0.962471,-1.16045,0 +-0.568159,0.346571,-0.0690264,-0.386617,-0.595044,-0.12331,-0.235802,0.00847383,-0.224811,0.0689726,-0.0517695,-0.293795,0.685072,-0.0617305,0.533295,0.268799,-0.313537,-0.353873,1 +0.281926,-0.625897,-0.322648,0.24077,0.292352,-0.775311,0.245473,-0.631603,0.16097,-0.964395,0.521573,0.255181,-0.820467,0.2054,-1.29659,-0.962833,1.14657,0.318279,0 +0.403367,0.0224151,-0.639675,0.539526,1.17975,-0.775311,-0.235802,-0.119542,-0.224811,-0.275483,-0.338441,-0.23154,0.347094,-0.328861,0.126654,-0.626933,1.14657,0.990431,0 +0.403367,0.346571,0.311406,-0.147612,0.292352,0.0940239,-0.386201,0.264505,-0.224811,0.0689726,-0.497703,-0.457922,0.224193,-0.595992,-1.09327,0.044866,0.497632,0.856,3 +0.281926,0.346571,-0.322648,1.04741,1.30652,-0.557978,-0.0553239,-0.375572,-0.224811,0.137864,-0.0199171,-0.0617533,0.224193,-0.462426,-0.0766656,0.380766,1.63327,0.990431,0 +-0.81104,-1.43629,-1.84438,-1.55176,-0.468273,-0.992645,-1.52923,2.05672,-1.38216,-1.58442,-1.61254,-1.32949,-1.12772,1.67462,0.533295,0.268799,-1.44917,-1.69818,3 +1.86065,1.15696,0.818649,0.599277,-0.468273,-0.992645,1.74946,-1.52771,1.7041,0.688993,2.33716,1.90211,1.29958,1.27392,-1.29659,0.716665,-0.313537,-1.29489,0 +1.25345,0.994884,1.64292,0.718779,-0.341502,0.528691,1.44866,-1.27168,1.31832,1.03345,1.38159,1.43803,0.869424,-0.0617305,1.75322,1.05256,0.173164,0.72157,2 +-0.81104,-1.27421,-1.40054,-1.10363,-0.595044,-0.557978,-1.22843,1.41664,-0.996375,-1.30885,-1.1029,-1.11443,-1.31207,-0.195296,-1.09327,0.156833,-0.47577,-0.488303,2 +-1.41824,-1.43629,-1.78097,-1.55176,-1.10213,-0.340644,-1.31867,1.67267,-0.996375,-1.51552,-1.35772,-1.19366,-1.43497,0.739661,-1.09327,-0.850866,-1.44917,-1.56375,2 +1.37489,1.80527,1.00887,1.19679,0.292352,0.528691,1.44866,-1.27168,1.31832,1.72236,1.15862,1.44935,1.26885,-0.0617305,-0.889946,0.716665,-0.151303,0.452709,1 +-1.66112,-0.950053,-1.40054,-1.40239,-0.721814,-0.557978,-0.897556,1.0326,-0.996375,-1.17107,-1.19845,-0.899366,-1.00482,1.00679,-1.29659,-0.850866,-1.61141,-1.29489,1 +1.49633,1.48112,1.13568,1.73455,0.672665,-0.992645,2.44129,-1.78374,2.47566,0.964558,2.9105,2.73406,2.68222,2.07531,-0.279986,-0.179067,-1.1247,-1.83261,0 +-1.53968,0.184493,-0.70308,-0.83475,-0.0879604,-0.340644,-0.47644,0.39252,-0.610593,8.14316e-05,-0.370293,-0.525836,0.469995,1.00679,-1.09327,0.156833,-1.1247,-1.16045,0 +0.767689,0.994884,1.70632,1.64492,0.672665,0.0940239,1.44866,-1.3997,1.31832,0.964558,1.5727,1.49462,0.9616,-0.0617305,-0.0766656,0.604699,0.0109306,0.452709,1 +-0.689599,-0.139663,-0.70308,-0.715248,-0.721814,-0.12331,-0.807317,0.904582,-0.610593,-0.344374,-0.943636,-0.814473,-0.0216094,-0.595992,0.126654,0.604699,-0.151303,0.183849,1 +0.0390448,0.670727,0.311406,-0.29699,0.292352,0.311358,-0.356121,0.264505,-0.224811,0.688993,-0.306588,-0.435283,0.869424,0.338965,-0.483306,-1.4107,-0.962471,-0.219442,3 +0.646248,-0.301741,0.438217,0.77853,0.165581,-0.12331,0.516191,-0.759619,0.546752,-0.275483,0.680835,0.458925,-0.267412,-0.595992,-0.0766656,0.044866,0.335398,0.452709,2 +-0.446718,0.346571,0.184595,-0.715248,-0.468273,0.0940239,-0.50652,0.39252,-0.610593,0.48232,-0.433998,-0.537155,0.285643,0.0718348,-0.483306,-1.18677,-0.47577,0.183849,3 +0.0390448,0.346571,0.184595,4.90136,9.67339,8.78738,-0.416281,0.264505,-0.610593,0.48232,4.1846,-0.486219,0.377819,8.35288,1.14325,-0.403,-0.151303,0.0494182,3 +0.767689,1.96735,1.57951,1.13704,0.165581,0.528691,1.74946,-1.3997,1.7041,2.2046,1.44529,1.78892,0.930874,-0.0617305,-0.0766656,0.716665,-0.47577,0.318279,1 +-0.932481,-0.463819,-1.08351,-1.67127,-1.48244,-0.12331,-0.50652,0.520535,-0.610593,-0.482157,-0.625112,-0.610729,-0.113785,1.67462,-0.483306,0.380766,-1.61141,-1.69818,0 +-0.325277,-1.11213,-0.766486,-0.267114,0.545894,3.57136,-0.867477,0.776566,-0.996375,-0.619939,-0.848079,-0.814473,-1.37352,-0.729557,-0.483306,-0.179067,0.497632,0.856,3 +-0.0823959,-0.139663,0.501622,-0.087861,0.419123,0.311358,-0.47644,0.39252,-0.610593,0.551211,-0.59326,-0.520177,-0.974093,-0.863122,0.533295,0.492732,0.822099,0.990431,3 +-0.932481,0.346571,-0.449459,-0.117737,0.799435,-0.557978,-0.44636,0.264505,-0.610593,-0.137701,-0.402146,-0.4749,0.469995,0.2054,0.126654,-1.0748,-0.151303,-0.219442,0 +-0.446718,0.670727,0.0577843,0.539526,0.165581,-0.340644,0.215394,-0.503588,0.16097,0.413428,0.521573,0.153309,1.4532,-0.328861,-1.09327,-1.18677,0.0109306,-0.0850121,2 +0.403367,-1.27421,-0.386053,0.00176569,-0.214731,-0.12331,-0.235802,0.00847383,-0.224811,-1.17107,0.0119352,-0.276816,-1.18917,-0.0617305,-1.29659,-1.4107,-0.151303,-0.488303,1 +1.73921,1.96735,1.51611,0.24077,-1.35567,-0.775311,2.62177,-1.91176,2.86144,1.51569,3.06976,2.97742,2.65149,1.94175,0.939935,-1.18677,-1.1247,-1.96704,0 +-0.568159,-0.625897,-0.449459,-0.207363,0.545894,-0.775311,-0.47644,0.264505,-0.610593,-0.826612,-0.433998,-0.497538,-0.636115,-0.0617305,-0.889946,-1.4107,-0.151303,-0.0850121,0 +0.524807,-1.11213,-0.766486,0.50965,0.799435,-0.557978,-0.145563,-0.247557,-0.224811,-0.826612,0.0119352,-0.152306,-1.40425,-0.195296,-0.686626,0.492732,1.7955,0.990431,0 +-0.81104,-0.463819,-1.14692,-0.56587,0.292352,0.311358,-1.07803,1.16061,-0.996375,-0.482157,-1.00734,-0.989919,-0.482489,-0.729557,0.126654,-1.4107,0.659865,0.72157,3 +1.61777,1.31904,1.64292,1.31629,0.292352,0.746025,1.11779,-1.14366,0.932534,1.03345,0.871949,1.05884,0.838698,-0.996688,2.97314,1.05256,0.822099,1.25929,2 +-1.05392,-1.27421,-0.132432,-0.326865,-0.341502,-0.12331,-0.47644,0.39252,-0.610593,-1.51552,-0.306588,-0.520177,-1.18917,-0.462426,-0.0766656,0.940598,0.335398,0.183849,1 +0.889129,1.15696,1.4527,-0.207363,-1.10213,0.311358,1.29826,-1.27168,1.31832,1.03345,1.19047,1.29654,0.900149,0.2054,1.14325,-0.179067,-0.47577,-0.219442,1 +0.281926,-0.950053,-0.322648,-0.267114,0.0388104,-0.12331,-0.867477,0.776566,-0.996375,0.137864,-0.879931,-0.825792,-1.55787,-1.39738,1.75322,-1.0748,1.95773,1.66258,3 +1.13201,0.508649,1.19908,1.04741,0.0388104,0.746025,0.937307,-1.01565,0.932534,0.688993,0.840097,0.877731,-0.328862,-0.863122,0.329975,1.05256,0.497632,0.856,1 +-0.689599,-0.787975,-0.576269,0.121268,0.799435,-0.340644,-0.566679,0.39252,-0.610593,-0.757721,-0.46585,-0.559793,-0.728291,-0.462426,-0.889946,0.828632,1.14657,0.58714,0 +-1.66112,-1.11213,-1.14692,-1.16338,-0.341502,-0.12331,-1.04796,1.28863,-0.996375,-1.51552,-1.1666,-1.02388,-1.2199,0.472531,-1.09327,1.16453,-1.61141,-1.02602,1 +-0.325277,-1.11213,-0.449459,-0.984128,-1.10213,-0.557978,-0.747158,0.776566,-0.610593,-1.17107,-0.752522,-0.763537,-0.789741,-0.462426,-1.09327,-0.626933,-0.47577,-0.622733,2 +-0.932481,0.0224151,-0.70308,-0.416492,0.545894,-0.340644,-0.686998,0.520535,-0.610593,-0.275483,-0.688817,-0.667325,0.0398412,-0.0617305,-0.279986,-0.7389,0.0109306,0.0494182,0 +-0.932481,-1.11213,0.248,0.181019,-0.214731,0.0940239,0.0349152,-0.247557,0.16097,-0.964395,0.07564,-0.0391151,-1.12772,-0.595992,-1.09327,1.72436,0.335398,0.452709,2 +-0.568159,0.0224151,-0.322648,0.569401,0.292352,0.0940239,-0.235802,0.00847383,-0.224811,0.206755,0.0437876,-0.282476,-0.0216094,-0.863122,-0.483306,-1.18677,0.822099,0.72157,2 +-1.90401,-1.43629,-1.97119,-1.58164,-0.721814,-0.992645,-1.46907,2.05672,-1.38216,-1.65331,-1.70809,-1.30685,-1.2199,1.54105,-1.09327,-0.0671005,-1.93587,-1.56375,1 +-1.66112,-0.301741,-0.70308,-1.07375,-0.214731,-0.340644,-0.566679,0.520535,-0.610593,-0.137701,-0.59326,-0.622048,0.0398412,1.14036,-0.0766656,0.268799,-1.44917,-1.56375,0 +-0.689599,-1.43629,-0.259243,-0.267114,0.0388104,-0.557978,-0.867477,0.904582,-0.996375,-1.7222,-0.879931,-0.865409,-1.40425,-0.863122,-0.483306,2.50813,0.822099,0.856,1 +-1.05392,0.0224151,-0.00562104,-1.07375,-0.721814,0.528691,-0.295962,0.264505,-0.224811,0.551211,-0.59326,-0.440943,-0.0523347,0.472531,0.736615,0.940598,-0.962471,-0.353873,3 +0.889129,1.31904,1.64292,0.449899,-0.975356,0.746025,1.41858,-1.27168,1.31832,1.65347,0.999359,1.38709,0.377819,-0.595992,-0.483306,1.2765,0.173164,0.72157,1 +-0.568159,-0.139663,-0.766486,-0.326865,0.292352,-0.557978,-0.837397,0.776566,-0.996375,-0.344374,-0.784374,-0.797494,-0.0523347,-0.863122,0.533295,-0.179067,0.659865,0.452709,0 +0.281926,-1.43629,-0.512864,0.420023,1.05298,-0.557978,-0.596759,0.264505,-0.610593,-1.44663,-0.338441,-0.559793,-1.4657,-0.462426,-1.29659,0.492732,1.95773,1.25929,0 +-0.81104,-0.301741,-0.766486,0.00176569,1.30652,-0.340644,-0.50652,0.39252,-0.610593,-0.206592,-0.370293,-0.559793,-0.113785,0.472531,-0.0766656,-0.0671005,-0.800238,-1.16045,0 +-0.0823959,-1.76044,-0.639675,-0.745123,-0.721814,-0.557978,-1.07803,1.16061,-0.996375,-1.7222,-0.975488,-1.00124,-1.52715,-1.26382,-0.279986,0.828632,1.7955,1.39372,2 +0.281926,-0.950053,-1.52735,-1.55176,-1.35567,-0.557978,-1.07803,1.41664,-0.996375,-0.619939,-1.1029,-1.04651,-0.759016,1.80818,-0.0766656,-1.4107,-1.28694,-1.83261,3 +0.524807,0.508649,1.19908,0.77853,-0.0879604,0.528691,1.14787,-1.27168,0.932534,0.275646,1.22233,1.18901,0.562171,-0.195296,-0.279986,-0.626933,0.0109306,0.0494182,1 +-0.446718,-1.76044,-1.02011,-0.326865,-0.341502,-0.340644,-0.867477,0.776566,-0.996375,-1.65331,-0.752522,-0.803154,-1.77295,-1.53095,-1.09327,-1.0748,1.95773,1.52815,2 +-1.05392,0.0224151,-0.766486,-1.46214,-0.975356,-0.340644,-0.596759,0.520535,-0.610593,-0.206592,-0.625112,-0.644687,0.347094,1.14036,0.329975,-0.962833,-1.28694,-1.56375,0 +-0.325277,-0.625897,0.691838,0.838281,0.419123,0.0940239,0.425952,-0.631603,0.16097,-0.757721,0.426016,0.362713,-0.66684,-0.863122,0.939935,1.2765,0.659865,0.58714,1 +-0.568159,-1.43629,-0.829891,-0.804874,-0.595044,-0.340644,-1.01788,1.16061,-0.996375,-1.51552,-1.1029,-0.984259,-1.43497,-0.863122,-0.686626,2.6201,0.659865,0.990431,1 +1.49633,1.31904,1.00887,1.01753,0.165581,0.528691,1.5389,-1.3997,1.7041,1.30901,1.25418,1.52858,1.2074,-0.195296,0.736615,1.2765,-0.151303,0.183849,1 +-0.932481,-1.11213,0.438217,0.210895,-0.341502,0.0940239,0.00483551,-0.247557,-0.224811,-1.10218,0.0437876,-0.0674128,-0.820467,-0.729557,0.126654,2.2842,0.659865,0.856,1 +2.22498,0.832805,1.3893,0.838281,-0.468273,0.528691,1.17795,-1.14366,1.31832,0.757884,1.09492,1.12675,0.347094,-0.729557,1.75322,1.05256,0.335398,0.856,2 +-1.17536,-1.27421,-0.766486,-0.715248,0.0388104,0.0940239,-0.987796,0.904582,-0.996375,-0.964395,-0.943636,-0.905026,-1.06627,-0.595992,0.939935,-0.403,0.822099,0.856,3 +1.25345,1.31904,1.64292,1.10716,-0.0879604,0.528691,1.44866,-1.27168,1.31832,1.3779,1.19047,1.43803,1.05378,-0.729557,-1.29659,-0.403,-0.151303,0.72157,2 +0.646248,0.346571,0.565027,1.70467,1.56006,-0.775311,0.997467,-1.14366,0.932534,8.14316e-05,1.44529,1.07016,0.347094,0.873227,-0.483306,-0.179067,0.497632,-0.622733,0 +-1.17536,-1.11213,0.0577843,-0.83475,-0.975356,-0.340644,-0.596759,0.520535,-0.610593,-1.10218,-0.370293,-0.639027,-0.789741,0.2054,-0.0766656,1.83633,-0.638004,-0.622733,2 +-1.05392,-0.463819,-0.766486,-1.16338,-0.721814,-0.340644,-0.566679,0.520535,-0.610593,-0.206592,-0.370293,-0.633367,-0.0830599,1.27392,0.736615,0.156833,-1.28694,-1.42932,0 +1.25345,0.994884,1.4527,-0.0281099,-0.975356,0.311358,1.17795,-1.14366,1.31832,0.964558,0.999359,1.13807,1.42248,-0.0617305,0.533295,0.828632,-0.313537,0.183849,2 +-1.05392,-1.27421,-0.893296,-0.715248,-0.214731,-0.557978,-1.16827,1.28863,-0.996375,-1.23996,-1.23031,-1.05783,-1.65005,-0.996688,-0.686626,0.156833,0.984333,0.990431,3 +-0.0823959,-0.463819,-1.14692,-1.37251,-1.35567,-0.340644,-1.01788,1.28863,-0.996375,-0.275483,-0.784374,-1.0069,-0.60539,0.739661,1.95654,-0.0671005,-0.638004,-1.42932,3 +-1.17536,-0.787975,-0.70308,-1.13351,-0.848585,-0.340644,-0.566679,0.520535,-0.610593,-0.964395,-0.688817,-0.622048,-0.298137,1.00679,1.14325,-1.29873,-1.44917,-1.29489,1 +-0.325277,0.670727,0.248,0.77853,0.165581,-0.12331,0.245473,-0.503588,0.16097,0.551211,0.457868,0.187267,0.807973,-0.729557,0.126654,-0.850866,0.497632,0.318279,1 +0.524807,0.346571,1.70632,0.987659,-0.341502,0.528691,0.907227,-0.887634,0.932534,0.413428,0.585278,0.826795,-0.298137,-1.53095,-1.09327,2.2842,0.822099,1.66258,2 +0.889129,0.994884,1.00887,0.748655,-0.214731,0.311358,0.786909,-0.887634,0.546752,0.895666,0.967506,0.747562,1.36103,-0.729557,-1.29659,-0.291034,0.497632,0.72157,2 +-0.446718,0.346571,-0.576269,-0.984128,-0.468273,0.528691,-0.235802,0.136489,-0.224811,0.344537,-0.529555,-0.361709,0.316369,0.606096,0.939935,-0.514967,-0.962471,-0.622733,3 +-0.325277,-1.43629,-1.40054,-1.28288,-0.721814,-0.557978,-1.49915,1.9287,-1.38216,-1.23996,-1.58068,-1.29553,-1.74223,-0.729557,-0.0766656,0.156833,0.497632,0.318279,3 +0.646248,0.832805,0.374811,1.04741,0.292352,0.311358,0.486111,-0.759619,0.546752,0.757884,0.648983,0.436287,0.562171,-0.863122,1.14325,-0.179067,0.822099,0.72157,1 +1.01057,1.31904,1.19908,2.06318,1.30652,-0.992645,2.08034,-1.65573,2.08988,1.03345,2.49642,2.28696,2.06771,1.67462,0.126654,1.05256,-0.800238,-1.56375,0 +-0.568159,0.184493,-0.512864,-1.014,-0.341502,0.0940239,-0.356121,0.39252,-0.224811,0.688993,-0.59326,-0.4749,0.0705665,0.873227,1.14325,-1.0748,-0.800238,-0.622733,3 +0.889129,1.15696,1.19908,0.838281,0.0388104,0.0940239,0.57635,-0.759619,0.546752,0.964558,0.61713,0.492882,0.869424,-0.729557,1.5499,0.268799,0.659865,0.856,2 +0.160485,1.96735,1.3893,1.76442,1.56006,0.311358,1.29826,-1.27168,1.31832,1.86014,1.12677,1.3022,1.48393,0.2054,-1.29659,-0.962833,-0.47577,-0.353873,1 +0.889129,1.31904,0.565027,0.748655,0.419123,-0.557978,1.05763,-1.14366,0.932534,0.895666,1.34973,1.10977,1.2074,0.739661,-0.279986,0.156833,0.497632,-0.488303,0 +-0.325277,-0.950053,-0.00562104,-0.147612,0.799435,0.311358,-0.777237,0.648551,-0.610593,-0.757721,-0.784374,-0.746558,-0.513214,-0.595992,1.34658,-0.403,0.335398,0.72157,3 +-0.325277,0.184493,-0.449459,0.479775,1.68683,-0.340644,-0.44636,0.136489,-0.610593,-0.0688097,-0.338441,-0.440943,0.531446,-0.0617305,0.329975,-0.514967,0.497632,0.452709,0 +0.0390448,-1.27421,-0.512864,0.00176569,-0.341502,-0.340644,-0.205723,0.00847383,-0.224811,-1.03329,-0.338441,-0.259837,-1.37352,-1.26382,-0.0766656,-0.7389,1.47103,1.12486,1 +-0.203837,-1.11213,-0.512864,0.270646,0.0388104,0.0940239,-0.235802,0.00847383,-0.224811,-0.895504,-0.242884,-0.293795,-1.31207,-1.26382,0.126654,1.83633,1.3088,1.39372,1 +0.160485,-0.301741,-0.70308,-0.29699,0.292352,-0.557978,-0.717078,0.520535,-0.610593,-0.482157,-0.625112,-0.667325,-0.113785,-0.729557,0.329975,-0.962833,0.984333,0.58714,0 +1.49633,1.15696,1.19908,1.31629,0.292352,0.528691,0.967387,-1.01565,0.932534,0.688993,0.808245,0.945646,0.900149,-0.996688,-0.889946,-0.962833,0.497632,1.12486,2 +-1.53968,-0.301741,-0.893296,-0.894501,0.0388104,-0.340644,-0.596759,0.648551,-0.610593,-0.206592,-0.529555,-0.661665,-0.113785,1.40749,-1.09327,0.156833,-1.44917,-1.56375,0 +-0.203837,-0.301741,-0.766486,-1.34263,-1.2289,-0.557978,-0.897556,1.0326,-0.996375,-0.275483,-0.784374,-0.893707,-0.0830599,0.873227,-0.483306,0.380766,-0.962471,-1.42932,3 +-1.2968,0.0224151,-0.576269,-0.237239,0.799435,-0.12331,-0.807317,0.648551,-0.996375,-0.275483,-0.625112,-0.763537,0.132017,-0.195296,0.736615,-1.0748,0.335398,0.452709,3 +1.13201,1.96735,1.4527,1.55529,0.926206,0.528691,1.47874,-1.3997,1.31832,1.72236,1.19047,1.50594,2.31351,0.0718348,0.736615,-1.18677,-0.313537,-0.0850121,1 +0.524807,-0.463819,0.501622,0.688903,-0.0879604,0.0940239,0.275553,-0.503588,0.16097,-0.275483,0.0119352,0.226884,-1.12772,-1.53095,-0.686626,-0.514967,1.63327,1.66258,2 +-0.446718,-0.625897,-1.27373,-0.655496,-0.214731,-0.557978,-1.22843,1.41664,-0.996375,-0.482157,-1.26216,-1.09745,-0.543939,-1.53095,1.34658,-0.962833,1.95773,1.66258,3 +1.49633,1.15696,1.57951,1.25654,0.0388104,-0.12331,0.937307,-1.01565,0.932534,0.895666,0.935654,0.917348,0.777248,-0.729557,0.533295,0.492732,0.822099,0.72157,1 +0.403367,0.346571,-0.0690264,0.420023,0.292352,-0.12331,-0.0252442,-0.247557,-0.224811,0.137864,0.139345,-0.0787319,0.224193,-0.328861,0.939935,-1.18677,0.497632,0.318279,1 +-1.05392,-0.787975,-1.02011,-1.43226,-1.2289,-0.992645,-0.50652,0.39252,-0.610593,-1.03329,-0.59326,-0.565453,-0.359587,1.94175,1.34658,-1.0748,-1.44917,-1.69818,1 +0.767689,0.670727,-0.132432,1.10716,1.05298,-0.557978,0.425952,-0.759619,0.16097,0.551211,0.553426,0.436287,0.715797,0.0718348,-0.686626,0.044866,1.47103,0.452709,0 +-1.41824,-0.301741,-0.70308,-0.446368,0.799435,-0.340644,-0.566679,0.520535,-0.610593,-0.344374,-0.561407,-0.622048,-0.0523347,0.739661,0.126654,-0.179067,-1.28694,-1.29489,0 +-1.90401,-0.301741,-0.766486,-0.655496,0.419123,-0.12331,-0.656919,0.648551,-0.610593,-0.206592,-0.625112,-0.684303,-0.205961,0.606096,-1.09327,-0.0671005,-1.28694,-1.29489,0 +0.281926,1.48112,1.3893,0.181019,-0.468273,0.311358,1.3885,-1.27168,1.31832,1.86014,1.03121,1.37011,1.4532,0.338965,1.34658,1.16453,-0.47577,-0.219442,1 +1.37489,0.994884,1.64292,0.957783,0.0388104,0.528691,1.5389,-1.3997,1.7041,1.03345,1.38159,1.53424,0.838698,-0.0617305,1.14325,0.380766,0.0109306,0.58714,2 +-0.203837,-0.787975,-1.27373,-0.745123,-0.341502,-0.12331,-1.25851,1.41664,-1.38216,-0.619939,-1.26216,-1.12575,-0.759016,-1.39738,1.34658,-1.29873,2.44444,1.93144,3 +-0.325277,-0.139663,-1.02011,-0.535994,0.165581,-0.340644,-0.957716,0.904582,-0.996375,-0.137701,-0.720669,-0.905026,-0.236686,-0.0617305,-1.09327,-0.403,-0.151303,-0.219442,3 +1.25345,1.6432,1.70632,1.82417,0.672665,0.746025,1.47874,-1.3997,1.31832,1.79125,1.31788,1.50594,1.57611,-0.729557,0.329975,1.05256,0.335398,0.856,1 +1.37489,0.832805,0.691838,0.121268,-0.975356,-0.992645,1.59906,-1.3997,1.7041,0.757884,2.08234,1.67007,0.9616,1.40749,-0.483306,-0.0671005,-0.47577,-1.56375,0 +1.61777,1.80527,1.4527,0.987659,-0.0879604,0.528691,1.56898,-1.3997,1.7041,2.13571,1.44529,1.61347,1.14595,-0.0617305,1.75322,-1.29873,0.0109306,0.0494182,1 +-1.41824,-0.787975,-0.576269,-0.83475,-0.595044,-0.12331,-0.47644,0.39252,-0.610593,-1.03329,-0.497703,-0.554134,-0.66684,0.338965,0.939935,-0.403,-1.28694,-1.16045,1 +0.403367,1.6432,1.3893,1.49554,1.17975,0.0940239,1.26818,-1.14366,1.31832,1.58458,1.06306,1.23428,1.48393,0.2054,-1.09327,1.2765,-0.47577,0.0494182,2 +0.889129,1.6432,1.19908,0.420023,-0.595044,0.963359,1.6893,-1.3997,1.7041,1.99792,1.15862,1.70403,0.900149,-0.195296,-0.279986,-0.291034,-0.47577,0.318279,1 +-0.568159,0.184493,-0.259243,-0.56587,0.165581,0.528691,-0.265882,0.264505,-0.224811,0.826775,-0.59326,-0.412645,0.0398412,0.0718348,-0.279986,-0.403,-0.638004,-0.219442,3 +0.0390448,0.0224151,0.438217,1.31629,1.17975,-0.775311,0.516191,-0.759619,0.546752,-0.206592,0.489721,0.52684,0.224193,-0.195296,-0.483306,0.044866,0.984333,0.318279,0 +-0.932481,-0.463819,-1.14692,-1.40239,-0.975356,-0.557978,-0.626839,0.648551,-0.610593,-0.344374,-0.59326,-0.684303,-0.113785,1.94175,-1.09327,-1.0748,-1.61141,-1.83261,0 +1.25345,1.6432,1.13568,0.957783,0.545894,0.311358,1.35842,-1.27168,1.31832,1.72236,1.12677,1.35879,1.42248,0.2054,-1.09327,-1.29873,-0.638004,-0.219442,2 +1.25345,1.48112,0.565027,1.19679,0.672665,0.528691,1.47874,-1.27168,1.31832,1.51569,1.09492,1.45501,0.654347,0.2054,-0.483306,0.940598,-0.313537,0.0494182,1 +0.0390448,0.184493,-0.195837,0.360272,0.0388104,-0.12331,-0.0553239,-0.119542,-0.224811,8.14316e-05,0.0437876,-0.124008,0.562171,-0.729557,1.14325,0.268799,0.335398,0.318279,1 +-0.932481,-1.11213,-0.386053,-0.774999,-0.341502,-0.12331,-0.807317,0.776566,-0.996375,-1.17107,-0.688817,-0.786175,-1.12772,-0.195296,-0.279986,-0.291034,0.0109306,0.0494182,3 +-0.446718,0.508649,-0.259243,-0.774999,-0.214731,0.528691,-0.235802,0.264505,-0.224811,0.757884,-0.529555,-0.373028,0.347094,0.338965,-0.889946,-1.18677,-0.800238,-0.353873,3 +-1.2968,0.184493,-0.70308,-0.386617,1.05298,-0.557978,-0.5366,0.39252,-0.610593,-0.0688097,-0.46585,-0.576772,0.715797,1.00679,-0.686626,-0.179067,-1.28694,-1.29489,0 +1.25345,1.96735,1.32589,1.58517,1.30652,0.746025,1.56898,-1.3997,1.7041,1.99792,1.09492,1.57386,1.3303,-0.0617305,0.939935,-0.0671005,-0.47577,-0.0850121,1 +-0.0823959,0.0224151,-0.0690264,0.24077,0.292352,-0.340644,-0.265882,0.00847383,-0.224811,-0.0688097,-0.274736,-0.322092,0.408545,-0.328861,0.939935,-0.179067,0.497632,0.452709,2 +-1.41824,-0.950053,0.248,-0.864625,-0.975356,-0.340644,-0.47644,0.520535,-0.610593,-0.964395,-0.46585,-0.576772,-1.09699,-0.195296,0.939935,0.604699,-0.962471,-0.891594,1 +1.01057,0.994884,1.64292,0.718779,-0.595044,0.311358,1.29826,-1.27168,1.31832,0.964558,0.967506,1.26258,0.285643,-0.863122,0.126654,0.940598,0.335398,0.72157,1 +1.73921,1.48112,1.70632,0.599277,-0.595044,0.528691,1.5389,-1.27168,1.7041,1.79125,1.28603,1.52292,1.2074,-0.328861,1.14325,1.16453,0.0109306,0.72157,2 +0.403367,0.0224151,-0.386053,0.181019,-0.214731,0.0940239,-0.356121,0.136489,-0.224811,0.0689726,-0.274736,-0.395666,-0.175236,-1.26382,1.95654,-0.0671005,1.47103,1.39372,2 +-1.05392,-0.301741,-1.02011,-1.16338,-0.595044,-0.557978,-0.5366,0.520535,-0.610593,-0.344374,-0.497703,-0.60507,-0.205961,1.80818,-0.483306,-0.403,-1.44917,-1.69818,0 +1.01057,1.48112,1.00887,0.24077,-0.721814,0.311358,1.50882,-1.27168,1.7041,1.58458,0.967506,1.50594,1.48393,-0.0617305,-0.279986,0.492732,-0.47577,0.0494182,1 +1.49633,1.48112,1.4527,-0.147612,-1.73598,-0.775311,2.35105,-1.78374,2.47566,1.17123,2.56012,2.55296,2.09843,1.54105,1.14325,-1.29873,-1.28694,-1.83261,0 +0.0390448,0.0224151,-0.639675,0.300521,0.926206,-0.557978,-0.386201,0.00847383,-0.610593,-0.275483,-0.242884,-0.378688,0.50072,-0.462426,-0.279986,-0.850866,0.659865,0.318279,0 +1.49633,1.6432,1.00887,1.64492,0.799435,0.528691,1.3885,-1.27168,1.31832,1.51569,1.06306,1.35313,1.2074,-0.595992,-0.889946,1.83633,0.0109306,0.72157,1 +0.0390448,-0.301741,-0.00562104,-0.984128,-0.975356,0.311358,-0.416281,0.264505,-0.610593,0.0689726,-0.402146,-0.457922,-0.421038,0.2054,-1.09327,-0.7389,-0.47577,0.183849,3 +-0.689599,-1.43629,-1.84438,-1.67127,-0.595044,-1.20998,-1.52923,2.05672,-1.38216,-1.37774,-1.64439,-1.33515,-1.18917,2.07531,0.126654,0.156833,-1.44917,-1.69818,3 +1.01057,1.48112,1.00887,-0.0579854,-1.10213,0.311358,1.44866,-1.27168,1.31832,1.79125,1.25418,1.42671,1.48393,-0.0617305,-1.29659,2.06026,-0.313537,0.318279,1 +0.889129,1.80527,1.13568,1.04741,0.0388104,0.746025,1.74946,-1.3997,1.7041,2.06682,1.34973,1.79458,0.900149,0.0718348,-1.29659,-0.179067,-0.47577,0.183849,1 +1.37489,1.48112,0.882054,0.479775,-0.595044,0.311358,1.50882,-1.3997,1.7041,1.51569,1.34973,1.50594,1.29958,0.338965,-0.279986,-0.0671005,-0.313537,-0.0850121,1 +-0.932481,-1.43629,-1.02011,-1.22313,-0.595044,-0.12331,-1.13819,1.41664,-0.996375,-1.44663,-1.29401,-1.06349,-1.09699,0.472531,-0.279986,1.6124,-0.962471,-1.16045,1 +-0.325277,-0.950053,-0.639675,-1.07375,-0.848585,-0.340644,-0.686998,0.648551,-0.610593,-1.10218,-0.59326,-0.712601,-0.789741,0.606096,0.533295,0.604699,-0.800238,-0.891594,2 +0.403367,0.184493,0.755243,1.19679,0.672665,0.311358,0.786909,-0.887634,0.546752,-0.0688097,1.12677,0.753221,0.592896,-0.328861,-1.29659,0.156833,-0.151303,0.183849,1 +2.5893,1.31904,1.13568,1.07729,0.292352,0.528691,1.5389,-1.3997,1.7041,1.24012,1.28603,1.52858,1.2074,-0.195296,2.97314,-0.179067,0.0109306,0.452709,2 +0.889129,0.994884,1.89654,0.957783,-0.341502,0.528691,1.35842,-1.14366,1.31832,0.964558,1.09492,1.28522,0.592896,-0.996688,-1.29659,2.6201,0.173164,1.39372,2 +-0.0823959,-1.59837,-0.259243,-0.207363,-0.214731,-0.12331,-0.566679,0.520535,-0.610593,-1.58442,-0.529555,-0.616389,-1.15844,-0.729557,-0.889946,2.2842,0.335398,0.318279,1 +0.160485,0.184493,0.628433,-0.29699,0.165581,0.528691,-0.265882,0.136489,-0.224811,0.620102,-0.402146,-0.384347,-0.113785,-0.328861,0.126654,0.940598,0.0109306,0.58714,3 +0.889129,1.6432,1.4527,0.390148,-0.341502,0.311358,1.3885,-1.27168,1.31832,1.99792,1.03121,1.34747,1.48393,0.2054,1.14325,1.50043,-0.47577,-0.0850121,1 +-0.932481,-0.301741,-0.766486,-1.28288,-0.721814,-0.557978,-0.626839,0.648551,-0.610593,-0.206592,-0.720669,-0.695622,-0.113785,1.80818,-0.0766656,-0.403,-1.61141,-1.83261,0 +-0.689599,-1.11213,-0.322648,-0.386617,-0.721814,-0.340644,-0.175643,0.00847383,-0.224811,-1.30885,-0.147327,-0.254178,-1.06627,-0.729557,-1.09327,-0.403,0.497632,0.318279,1 +1.13201,1.48112,1.57951,0.599277,-0.721814,0.528691,1.62914,-1.3997,1.7041,1.79125,1.15862,1.63611,0.777248,-0.328861,-1.29659,1.83633,-0.313537,0.72157,1 +0.160485,-1.27421,-0.70308,0.0615168,-0.0879604,0.0940239,-0.356121,0.264505,-0.224811,-0.964395,-0.338441,-0.423964,-1.52715,-1.26382,-0.279986,3.06796,1.14657,1.66258,2 +-0.568159,-1.11213,-0.512864,-0.924376,-0.341502,-0.340644,-0.987796,1.0326,-0.996375,-1.03329,-0.688817,-0.916345,-1.43497,-0.0617305,0.126654,-0.626933,0.0109306,-0.353873,3 +-2.14689,-1.11213,-1.52735,-1.31276,-0.468273,-0.775311,-1.07803,1.28863,-0.996375,-1.44663,-1.1666,-1.02388,-0.912642,1.94175,-1.29659,0.940598,-1.93587,-1.56375,1 +-0.203837,-0.463819,-0.449459,0.0913924,-0.214731,-0.12331,-0.656919,0.520535,-0.610593,-0.413265,-0.46585,-0.667325,-0.451763,-1.39738,3.17646,-0.291034,2.7689,2.06587,1 +1.61777,1.48112,1.64292,1.76442,0.799435,0.746025,1.47874,-1.27168,1.7041,1.51569,1.09492,1.47198,1.51465,-0.729557,1.34658,1.38846,0.173164,1.12486,2 +-1.05392,-0.787975,-0.449459,-0.954252,-0.721814,-0.340644,-0.50652,0.39252,-0.610593,-0.964395,-0.497703,-0.571112,-0.451763,0.472531,0.126654,0.380766,-1.1247,-1.16045,2 +-0.689599,-0.950053,-0.386053,-0.416492,0.0388104,-0.12331,-0.957716,0.904582,-0.996375,-0.757721,-1.03919,-0.899366,-1.55787,-1.26382,-0.686626,-0.7389,1.95773,1.79701,3 +-0.568159,-0.787975,0.438217,0.151143,-0.468273,-0.12331,0.245473,-0.503588,0.16097,-1.03329,0.426016,0.175948,-0.60539,-0.328861,0.126654,0.604699,0.0109306,0.0494182,2 +-0.0823959,-0.787975,-0.576269,-0.894501,-0.468273,-0.557978,-0.987796,1.0326,-0.996375,-0.68883,-0.720669,-0.933323,-1.15844,0.0718348,-1.29659,-1.4107,-0.313537,-1.02602,3 +-0.568159,-1.43629,-0.829891,-0.207363,0.165581,-0.557978,-0.867477,0.904582,-0.996375,-1.17107,-0.784374,-0.842771,-1.49642,-0.863122,-1.09327,2.84403,0.659865,1.12486,2 +-0.446718,-0.301741,-0.0690264,1.85405,4.47579,8.13538,-0.566679,0.520535,-0.610593,0.0689726,0.362311,-0.610729,-0.328862,2.47601,-0.279986,-0.403,-0.47577,0.0494182,3 +1.37489,1.15696,1.57951,1.13704,-0.214731,0.528691,1.47874,-1.27168,1.31832,1.30901,1.03121,1.47764,0.685072,-0.863122,-1.29659,0.828632,0.335398,0.990431,1 +-0.203837,0.0224151,-0.386053,-0.207363,-0.595044,-0.340644,-0.295962,0.00847383,-0.224811,-0.0688097,-0.147327,-0.333411,0.0705665,-0.462426,0.329975,-0.291034,0.173164,-0.0850121,2 +0.403367,-0.139663,0.818649,0.987659,0.545894,0.0940239,0.57635,-0.759619,0.546752,-0.275483,0.871949,0.487223,0.00911589,-0.0617305,1.75322,-0.179067,0.173164,0.183849,2 +1.86065,0.670727,1.32589,0.50965,-0.595044,0.528691,1.11779,-1.14366,0.932534,0.551211,0.74454,1.07582,0.347094,-0.996688,1.14325,0.940598,0.497632,0.72157,1 +0.160485,0.346571,-0.576269,0.77853,1.05298,-0.340644,-0.0553239,-0.375572,-0.224811,0.275646,-0.147327,-0.0560937,0.316369,-0.462426,0.533295,0.716665,1.7955,1.39372,0 +-0.932481,-0.301741,-1.33713,-1.49201,-1.10213,-0.12331,-0.566679,0.648551,-0.610593,-0.275483,-0.625112,-0.644687,-0.0830599,1.67462,0.329975,-0.514967,-1.61141,-1.83261,0 +-0.689599,0.508649,0.501622,0.270646,-0.214731,-0.12331,0.185314,-0.375572,0.16097,0.275646,0.362311,0.113693,0.715797,-0.595992,1.34658,0.380766,0.497632,0.452709,2 +1.61777,1.6432,1.32589,-0.0579854,-1.60921,-0.340644,2.50145,-1.78374,2.86144,1.65347,2.56012,2.62653,1.97553,1.40749,-0.279986,1.9483,-1.61141,-1.29489,0 +1.25345,0.670727,1.4527,1.19679,-0.0879604,0.528691,1.14787,-1.14366,1.31832,0.620102,0.903802,1.11543,-0.205961,-1.13025,-1.29659,0.716665,0.659865,1.52815,2 +-0.568159,-0.625897,-1.21032,-1.04388,-0.341502,-0.557978,-1.37883,1.80069,-1.38216,-0.757721,-1.29401,-1.22762,-0.759016,0.472531,1.14325,-1.0748,-0.47577,-1.02602,3 +-0.446718,-0.950053,-1.59076,-1.64139,-1.73598,-0.340644,-1.01788,1.28863,-0.996375,-0.619939,-1.07105,-1.01256,-0.728291,1.67462,1.14325,-0.514967,-0.962471,-1.83261,3 +0.524807,-0.139663,0.374811,0.210895,0.672665,0.311358,-0.326042,0.264505,-0.224811,0.0689726,-0.497703,-0.412645,-0.636115,-0.863122,1.5499,-0.403,0.822099,0.856,3 +1.01057,1.6432,1.19908,1.31629,0.672665,0.746025,1.59906,-1.3997,1.7041,1.99792,1.19047,1.57952,1.17668,-0.195296,-0.889946,0.940598,-0.313537,0.452709,2 +-0.932481,-0.787975,-1.02011,-0.894501,-0.341502,-0.340644,-1.40891,1.67267,-1.38216,-0.619939,-1.38957,-1.2163,-0.974093,-1.26382,0.126654,-0.179067,2.11997,1.66258,3 +0.889129,0.670727,1.32589,1.28641,0.672665,0.311358,0.967387,-1.01565,0.932534,0.551211,0.840097,0.911689,-0.0216094,-0.462426,-0.483306,-0.179067,0.0109306,0.0494182,1 +1.86065,1.6432,0.882054,0.659028,-0.595044,-0.557978,2.17058,-1.65573,2.08988,1.51569,2.49642,2.36053,2.06771,1.67462,0.329975,-0.403,-0.800238,-1.56375,0 +-0.203837,0.0224151,-0.512864,0.539526,1.56006,-0.340644,-0.356121,0.00847383,-0.610593,-0.344374,-0.306588,-0.367369,0.254918,-0.328861,0.329975,-0.7389,0.984333,0.72157,0 +-0.689599,-1.76044,-1.52735,-0.864625,-0.341502,-0.557978,-1.25851,1.41664,-0.996375,-1.23996,-1.29401,-1.11443,-1.89585,-1.26382,-0.483306,-0.291034,1.63327,1.39372,3 +-0.0823959,-0.950053,0.248,0.330397,-0.341502,0.0940239,-0.0553239,-0.247557,-0.224811,-0.964395,-0.0836219,-0.124008,-1.40425,-1.26382,-0.0766656,0.492732,1.3088,1.12486,2 +0.281926,-1.27421,-0.512864,0.539526,0.799435,-0.12331,-0.295962,0.136489,-0.224811,-0.964395,-0.179179,-0.35039,-1.25062,-0.462426,-0.686626,0.380766,0.173164,0.183849,2 +-0.689599,-0.301741,-0.766486,0.24077,1.56006,2.26736,-0.50652,0.39252,-0.610593,-0.344374,-0.274736,-0.554134,-0.205961,0.472531,-1.09327,-0.403,-0.47577,-0.891594,0 +-0.689599,-0.139663,0.12119,-1.014,-0.848585,0.746025,-0.416281,0.39252,-0.224811,0.688993,-0.402146,-0.503198,-0.328862,0.338965,0.126654,-0.179067,-0.962471,-0.0850121,3 +-0.203837,-0.787975,-1.02011,-1.73102,-1.73598,-0.340644,-0.897556,1.16061,-0.610593,-0.551048,-0.943636,-0.922004,-0.820467,1.67462,1.14325,0.716665,-1.1247,-1.69818,3 +-0.689599,-0.139663,-0.766486,-0.535994,-0.0879604,-0.12331,-0.777237,0.648551,-0.996375,-0.344374,-0.816226,-0.72958,-0.0523347,-0.595992,0.126654,-0.514967,1.14657,0.990431,0 +0.0390448,-0.950053,-0.449459,0.449899,1.30652,-0.12331,-0.416281,0.136489,-0.610593,-1.03329,-0.433998,-0.423964,-0.912642,-0.328861,-0.483306,-0.850866,0.497632,0.58714,0 +1.61777,0.994884,1.32589,0.390148,-0.721814,0.528691,1.32834,-1.27168,1.31832,0.964558,1.19047,1.31918,1.29958,-0.0617305,-0.889946,-0.962833,-0.151303,0.318279,2 +-0.932481,-1.11213,-1.52735,-1.49201,-0.721814,-0.992645,-1.52923,2.05672,-1.38216,-1.30885,-1.54883,-1.31251,-0.697566,0.739661,0.533295,-1.18677,-0.800238,-1.29489,3 +-1.78257,-0.950053,-0.639675,-1.25301,-1.10213,0.0940239,-0.807317,0.904582,-0.610593,-0.895504,-0.752522,-0.820132,-0.943368,0.606096,0.126654,0.940598,-1.28694,-0.891594,1 +-0.446718,-0.950053,0.438217,0.360272,0.0388104,-0.12331,0.185314,-0.375572,0.16097,-1.10218,0.362311,0.102374,-0.636115,-0.328861,0.939935,0.268799,0.0109306,-0.0850121,2 +-0.932481,0.0224151,-1.02011,-1.28288,-0.595044,-0.12331,-0.626839,0.648551,-0.610593,-0.206592,-0.59326,-0.672984,0.347094,1.80818,-1.29659,-0.626933,-1.61141,-1.83261,0 +2.34642,0.508649,1.00887,1.16691,0.0388104,0.0940239,1.02755,-1.01565,0.932534,0.206755,0.871949,0.979603,0.254918,-1.13025,2.15986,1.83633,0.659865,1.12486,2 +-0.81104,0.670727,0.248,0.629152,0.292352,0.0940239,0.245473,-0.503588,0.16097,0.344537,0.266754,0.175948,1.05378,-0.729557,0.939935,-0.626933,0.497632,0.452709,1 +1.73921,1.80527,1.26249,2.30218,1.68683,-0.557978,2.11042,-1.65573,2.08988,1.30901,2.40086,2.34921,1.63756,1.27392,0.533295,0.044866,-0.47577,-1.42932,0 +-0.932481,-0.787975,-1.02011,-0.924376,-0.341502,-0.992645,-0.957716,1.0326,-0.996375,-1.03329,-0.848079,-0.910685,-0.728291,0.2054,-0.0766656,0.156833,-0.47577,-0.757164,2 +-1.05392,-0.301741,-1.02011,-1.43226,-0.975356,-0.340644,-0.566679,0.648551,-0.610593,-0.0688097,-0.625112,-0.656006,0.00911589,1.94175,-1.29659,-0.850866,-1.61141,-1.83261,0 +0.889129,1.80527,1.19908,1.85405,1.30652,0.311358,1.44866,-1.27168,1.31832,1.58458,1.38159,1.46066,1.26885,-0.0617305,-0.889946,-0.7389,-0.313537,0.183849,2 +1.37489,1.6432,0.882054,0.360272,-0.721814,0.0940239,1.50882,-1.3997,1.7041,1.86014,1.34973,1.54556,1.26885,0.2054,-0.483306,-0.850866,-0.313537,-0.219442,1 +-0.689599,-0.950053,0.374811,0.748655,0.926206,-0.12331,-0.0252442,-0.119542,-0.224811,-1.03329,0.330459,-0.135327,-0.728291,0.2054,-0.686626,1.05256,-0.47577,-0.488303,1 +2.34642,1.31904,0.691838,0.838281,0.0388104,0.528691,1.41858,-1.27168,1.31832,1.17123,1.03121,1.40407,0.654347,-0.0617305,-0.0766656,1.38846,-0.151303,0.452709,2 +-0.568159,-0.463819,-0.449459,-0.864625,-0.848585,-0.557978,-0.717078,0.648551,-0.610593,-0.619939,-0.59326,-0.72392,-0.267412,-0.195296,1.75322,1.50043,0.335398,0.318279,1 +0.524807,-1.59837,-0.766486,0.390148,0.799435,-0.775311,-0.416281,0.00847383,-0.610593,-1.65331,-0.147327,-0.390007,-1.77295,-0.195296,-0.686626,1.05256,2.11997,1.25929,0 +0.889129,0.508649,0.184595,0.659028,-0.214731,0.528691,0.185314,-0.375572,0.16097,0.344537,0.107492,0.102374,0.377819,-1.39738,-0.279986,1.05256,1.3088,1.93144,2 +1.73921,1.48112,1.32589,1.28641,0.419123,0.528691,1.17795,-1.14366,1.31832,0.964558,1.25418,1.17769,2.00626,-0.195296,0.533295,-1.4107,0.0109306,0.183849,2 +-0.325277,-0.787975,0.0577843,-0.087861,-0.214731,-0.12331,-0.265882,0.00847383,-0.224811,-1.03329,0.0119352,-0.322092,-0.60539,-0.0617305,-0.279986,-0.626933,-0.47577,-0.622733,2 +-0.932481,-0.301741,-0.829891,-1.37251,-0.975356,-0.557978,-0.566679,0.648551,-0.610593,-0.275483,-0.46585,-0.650346,0.0705665,1.94175,-0.686626,-0.626933,-1.44917,-1.83261,0 +0.403367,-1.59837,-1.02011,-0.535994,0.292352,-0.12331,-1.22843,1.41664,-0.996375,-1.30885,-1.29401,-1.09745,-1.92658,-0.863122,-0.0766656,-1.18677,0.984333,0.58714,3 +1.37489,1.31904,1.64292,1.10716,0.165581,0.746025,1.59906,-1.27168,1.7041,1.3779,1.19047,1.5399,0.807973,-0.195296,1.75322,2.50813,0.0109306,0.990431,2 +0.0390448,-0.301741,-0.829891,-0.237239,-0.341502,-0.340644,-0.50652,0.264505,-0.610593,-0.344374,-0.433998,-0.514517,0.377819,-0.729557,1.14325,-0.179067,0.659865,0.318279,2 +0.281926,0.0224151,0.311406,0.00176569,0.672665,0.311358,-0.44636,0.39252,-0.610593,0.0689726,-0.688817,-0.503198,-0.0216094,-0.729557,0.533295,-0.514967,0.497632,0.72157,3 +-0.568159,0.346571,-0.132432,-1.13351,-0.975356,0.528691,-0.265882,0.264505,-0.224811,1.03345,-0.433998,-0.401326,-0.0216094,0.606096,-1.09327,-0.626933,-1.1247,-0.353873,3 +1.25345,1.6432,1.4527,1.40592,0.799435,0.528691,1.08771,-1.14366,0.932534,1.4468,1.03121,1.0362,1.26885,-0.195296,0.533295,0.604699,0.0109306,0.0494182,1 +1.86065,1.48112,1.32589,1.52542,0.545894,0.528691,1.35842,-1.27168,1.31832,1.30901,1.28603,1.34181,1.14595,-0.328861,-1.09327,1.16453,-0.151303,0.72157,2 +1.86065,1.31904,1.32589,1.22666,0.165581,0.528691,1.50882,-1.3997,1.7041,1.65347,1.28603,1.5116,1.14595,-0.195296,-0.0766656,-1.0748,-0.151303,0.452709,2 +0.646248,1.48112,1.13568,0.898032,0.0388104,0.0940239,0.937307,-1.01565,0.932534,1.24012,1.06306,0.906029,2.03698,-0.328861,-0.889946,-0.626933,0.0109306,0.318279,1 +-0.203837,0.184493,-0.00562104,0.0316412,-0.468273,-0.12331,-0.115483,-0.119542,-0.224811,0.0689726,-0.242884,-0.174944,-0.328862,-1.53095,0.329975,-0.179067,1.7955,1.66258,1 +-1.17536,-1.11213,-1.02011,-0.924376,0.0388104,-0.557978,-1.28859,1.67267,-0.996375,-1.10218,-1.42142,-1.17668,-1.09699,-0.328861,-0.483306,-0.626933,-0.638004,-0.757164,1 +-1.05392,-0.463819,-1.02011,-1.46214,-1.10213,-0.340644,-0.596759,0.520535,-0.610593,-0.206592,-0.497703,-0.650346,-0.359587,1.67462,-0.279986,-0.962833,-1.44917,-1.83261,0 +-0.568159,-1.43629,-0.893296,-0.83475,-0.341502,-0.12331,-0.897556,0.776566,-0.996375,-1.23996,-0.720669,-0.842771,-1.4657,0.0718348,0.126654,-1.29873,0.0109306,0.0494182,3 +1.73921,1.31904,1.3893,0.360272,-0.721814,0.528691,1.5389,-1.27168,1.7041,1.30901,1.19047,1.5399,1.2074,-0.0617305,1.75322,0.604699,0.0109306,0.452709,2 +1.25345,1.48112,1.19908,0.838281,0.292352,0.528691,1.32834,-1.27168,1.31832,1.65347,0.935654,1.29654,1.4532,0.2054,1.5499,-0.962833,-0.313537,0.0494182,2 +0.767689,0.994884,0.438217,0.898032,0.419123,-0.557978,0.967387,-1.14366,0.932534,0.757884,0.967506,1.03054,0.930874,0.2054,-0.0766656,-0.626933,0.659865,-0.353873,0 +-1.05392,-1.59837,-1.14692,-1.19326,-0.595044,-0.557978,-1.58939,2.05672,-1.38216,-1.58442,-1.61254,-1.35779,-1.5886,-0.996688,-1.09327,1.16453,1.14657,0.990431,3 +0.524807,1.6432,1.64292,-0.0281099,-1.10213,0.528691,1.65922,-1.3997,1.7041,2.06682,1.34973,1.68139,1.29958,0.0718348,0.329975,1.9483,-0.313537,0.318279,1 +-1.17536,-1.11213,-0.512864,-0.924376,-0.595044,-0.12331,-0.897556,1.0326,-0.996375,-1.44663,-0.911784,-0.893707,-1.4657,-0.0617305,0.533295,0.828632,-0.962471,-0.622733,1 +-0.568159,-1.11213,-0.259243,-0.476243,-0.0879604,-0.340644,-0.686998,0.648551,-0.610593,-1.44663,-0.720669,-0.712601,-1.00482,-0.462426,-1.29659,-0.403,-0.313537,-0.219442,1 +1.25345,1.6432,1.4527,1.61505,1.05298,0.311358,1.62914,-1.3997,1.7041,1.99792,1.54085,1.68139,1.3303,0.338965,1.5499,-0.179067,-0.151303,0.0494182,1 +-1.17536,-0.139663,-1.08351,-1.22313,-0.848585,-0.12331,-0.566679,0.648551,-0.610593,8.14316e-05,-0.625112,-0.650346,0.0398412,1.27392,-1.09327,-0.179067,-1.61141,-1.69818,0 +-1.66112,-1.43629,-0.829891,-1.25301,-0.721814,-0.340644,-1.22843,1.54466,-0.996375,-1.65331,-1.32586,-1.13141,-1.28135,-0.328861,-0.889946,0.940598,-0.962471,-0.622733,1 +-1.78257,-0.301741,-0.639675,-0.83475,0.0388104,-0.12331,-0.47644,0.39252,-0.610593,-0.275483,-0.433998,-0.542815,-0.0216094,0.739661,-1.29659,-0.514967,-1.1247,-1.02602,0 +-0.568159,-0.301741,-0.322648,-0.655496,-0.975356,-0.12331,-0.747158,0.648551,-0.610593,-0.137701,-0.816226,-0.746558,-0.0216094,-1.13025,1.34658,-0.850866,0.822099,0.72157,2 +-1.2968,-0.787975,-1.46394,-1.58164,-1.10213,-0.340644,-1.10811,1.41664,-0.996375,-0.757721,-1.38957,-1.07481,-0.543939,1.54105,1.14325,-0.7389,-1.93587,-1.69818,3 +-0.568159,0.832805,0.0577843,0.77853,0.419123,-0.557978,0.275553,-0.503588,0.16097,0.551211,0.585278,0.232543,1.0845,-0.195296,-1.09327,-0.7389,0.0109306,-0.219442,1 +-0.446718,-0.787975,0.0577843,0.270646,-0.0879604,-0.12331,0.275553,-0.503588,0.16097,-1.10218,0.330459,0.181607,-0.543939,-0.195296,-1.09327,0.156833,-0.313537,-0.353873,1 +-0.689599,-0.463819,-1.02011,-1.07375,-0.595044,-0.557978,-1.37883,1.67267,-1.38216,-0.275483,-1.32586,-1.20498,-0.451763,-0.863122,0.329975,-0.962833,0.659865,0.318279,3 +0.281926,-0.301741,-0.00562104,-0.237239,-0.848585,-0.775311,0.516191,-0.887634,0.546752,-0.482157,0.840097,0.532499,-0.390313,0.338965,-1.29659,-0.7389,0.984333,0.0494182,0 +-0.0823959,-0.950053,-1.21032,-0.685372,-0.468273,-0.340644,-1.22843,1.41664,-0.996375,-0.964395,-1.26216,-1.09745,-0.513214,-1.26382,0.533295,-0.626933,1.47103,1.12486,2 +0.524807,0.184493,-0.322648,0.898032,1.17975,-0.340644,-0.0854037,-0.247557,-0.224811,0.137864,-0.147327,-0.10137,0.162742,-0.462426,1.34658,-0.403,1.7955,0.990431,0 +-0.0823959,-0.950053,-0.259243,-0.147612,0.545894,-0.12331,-0.897556,0.904582,-0.996375,-0.551048,-1.00734,-0.84843,-1.49642,-1.13025,-0.483306,-0.626933,1.95773,1.66258,3 +0.767689,0.994884,1.70632,1.85405,1.05298,0.528691,1.5389,-1.3997,1.7041,1.03345,1.5727,1.59649,0.9616,0.0718348,0.939935,0.716665,0.0109306,0.318279,1 +-0.446718,-1.43629,0.184595,0.449899,0.292352,-0.557978,-0.265882,0.00847383,-0.224811,-1.58442,-0.0517695,-0.310773,-1.09699,-0.863122,0.533295,2.06026,0.984333,0.990431,2 +-0.689599,-0.787975,-0.195837,0.420023,0.0388104,-0.340644,0.215394,-0.375572,0.16097,-0.68883,0.362311,0.125012,-0.759016,-0.863122,-1.29659,1.83633,0.0109306,0.452709,1 +0.403367,1.31904,1.4527,1.6748,1.17975,0.746025,1.56898,-1.3997,1.7041,1.30901,1.19047,1.54556,0.838698,-0.328861,-0.686626,0.828632,-0.47577,0.58714,2 +-1.17536,-1.27421,-0.766486,-0.56587,-0.0879604,-0.340644,-0.957716,1.0326,-0.996375,-0.551048,-1.03919,-0.916345,-1.65005,-1.13025,-1.29659,1.16453,1.14657,1.25929,3 +-0.932481,-0.950053,-1.27373,-1.19326,-0.341502,-0.557978,-1.58939,2.05672,-1.38216,-0.895504,-1.64439,-1.34081,-0.912642,-1.13025,0.126654,-0.403,1.63327,1.12486,3 +-1.05392,-1.11213,-0.639675,-1.16338,-1.10213,0.0940239,-1.04796,1.28863,-0.996375,-1.10218,-1.38957,-1.01256,-1.5886,-0.996688,-1.09327,1.2765,-0.151303,0.318279,1 +-0.81104,-0.463819,-1.40054,-1.58164,-1.35567,-0.557978,-0.566679,0.648551,-0.610593,-0.482157,-0.625112,-0.656006,-0.113785,1.67462,-0.889946,0.156833,-1.77364,-1.83261,0 +1.13201,1.80527,1.4527,0.420023,-0.341502,0.311358,1.2381,-1.14366,1.31832,1.72236,0.903802,1.17769,1.3303,-0.0617305,1.34658,1.05256,-0.151303,0.0494182,1 +-0.446718,0.670727,0.184595,-0.83475,-0.595044,0.528691,-0.295962,0.264505,-0.224811,1.30901,-0.497703,-0.423964,0.347094,0.338965,-1.09327,-0.179067,-1.1247,-0.488303,3 +-1.66112,-1.76044,-2.54184,-1.76089,-0.595044,-1.20998,-1.64955,2.31275,-1.38216,-1.99776,-1.8355,-1.40873,-1.65005,1.94175,-0.483306,-0.626933,-1.61141,-1.69818,1 +-0.203837,-1.27421,-0.449459,0.659028,1.17975,-0.557978,-0.235802,-0.119542,-0.224811,-1.37774,-0.274736,-0.265497,-1.2199,-0.462426,-1.09327,0.156833,0.984333,0.856,0 +-1.05392,-1.92252,-2.03459,-1.94015,-1.10213,-0.992645,-1.61947,2.31275,-1.38216,-2.06665,-1.67624,-1.39741,-1.4657,1.40749,-1.09327,1.9483,-1.61141,-1.42932,2 +-0.689599,-1.76044,-0.829891,-0.506119,-0.595044,-0.775311,-0.927636,0.904582,-0.996375,-1.79109,-0.975488,-0.882387,-1.68077,-1.39738,0.533295,1.83633,2.44444,1.93144,1 +-0.203837,-0.463819,-0.829891,-0.476243,-0.468273,-0.12331,-0.867477,0.904582,-0.996375,-0.68883,-0.752522,-0.84843,-0.728291,-1.13025,0.736615,0.940598,1.63327,1.39372,1 +-1.2968,-1.27421,-2.098,-1.70114,-0.848585,-0.775311,-1.40891,1.80069,-1.38216,-1.37774,-1.42142,-1.25026,-0.881917,1.67462,0.329975,0.380766,-1.44917,-1.56375,3 +0.524807,-0.950053,-0.893296,-0.984128,-0.721814,-0.12331,-1.13819,1.41664,-0.996375,-0.275483,-0.943636,-1.06915,-1.25062,-0.0617305,-0.483306,-0.291034,-0.47577,-1.16045,3 +0.403367,1.6432,0.882054,0.0316412,-0.975356,0.311358,1.41858,-1.27168,1.31832,1.72236,0.967506,1.38709,1.3303,0.338965,-1.29659,-0.962833,-0.800238,-0.353873,1 +1.73921,1.80527,1.32589,1.94368,1.43329,0.311358,1.56898,-1.3997,1.7041,1.79125,1.38159,1.57386,1.2074,0.0718348,0.329975,-1.0748,-0.313537,0.183849,2 +-0.446718,0.508649,-0.0690264,-0.745123,-0.214731,0.0940239,-0.566679,0.39252,-0.610593,0.551211,-0.497703,-0.60507,0.777248,0.338965,-0.889946,-1.4107,-0.638004,-0.0850121,3 +0.281926,-0.787975,1.13568,0.270646,-0.468273,-0.12331,0.365792,-0.503588,0.16097,-0.964395,0.521573,0.260841,-0.451763,-0.595992,-0.279986,2.39616,0.497632,0.856,2 +1.49633,1.15696,1.64292,1.13704,0.292352,0.746025,1.56898,-1.27168,1.7041,1.3779,1.28603,1.52292,0.777248,0.0718348,3.17646,2.84403,0.173164,1.25929,2 +-1.17536,-1.43629,-0.449459,-0.984128,-0.848585,-0.557978,-0.867477,0.904582,-0.996375,-1.58442,-0.720669,-0.84843,-1.12772,-0.195296,-0.483306,2.6201,0.0109306,-0.0850121,2 +1.25345,1.31904,1.19908,0.629152,0.165581,0.311358,1.32834,-1.14366,1.31832,1.24012,0.935654,1.26824,0.838698,0.2054,1.34658,0.940598,-0.151303,0.318279,2 +-1.2968,-0.139663,-0.766486,-0.087861,0.926206,-0.775311,-0.777237,0.648551,-0.996375,-0.344374,-0.720669,-0.757877,-0.144511,-0.462426,0.126654,-0.7389,-0.151303,-0.353873,0 +-0.689599,-0.139663,-0.70308,-0.117737,1.05298,-0.340644,-0.747158,0.648551,-0.610593,-0.482157,-0.688817,-0.72392,-0.0830599,-0.195296,-0.483306,-0.962833,-0.151303,-0.353873,0 +0.524807,0.994884,0.12119,1.13704,1.30652,-0.340644,0.456031,-0.759619,0.16097,0.895666,0.330459,0.453265,0.715797,-0.0617305,0.533295,-0.179067,1.14657,0.452709,0 +-0.446718,-0.463819,-1.21032,-0.745123,-0.341502,-0.340644,-1.13819,1.16061,-0.996375,-0.413265,-1.1029,-1.02388,-0.390313,-0.996688,1.75322,-1.0748,1.3088,1.12486,3 +-0.932481,-0.787975,-1.21032,-1.014,-0.721814,-0.775311,-1.07803,1.16061,-0.996375,-0.895504,-1.1666,-1.0069,-0.267412,-0.328861,0.533295,-1.18677,-0.313537,-0.622733,2 +1.13201,0.670727,1.57951,0.300521,-0.975356,0.746025,1.17795,-1.14366,1.31832,0.757884,0.808245,1.15505,0.254918,-0.863122,-1.09327,-0.0671005,0.335398,0.58714,1 +-0.932481,-0.139663,-0.766486,-0.864625,0.292352,-0.557978,-0.626839,0.520535,-0.610593,-0.206592,-0.59326,-0.667325,0.316369,1.27392,0.736615,-1.29873,-1.28694,-1.69818,0 +1.01057,1.15696,1.19908,1.31629,0.292352,0.311358,1.02755,-1.01565,0.932534,0.620102,0.808245,0.996582,0.347094,-0.996688,-1.29659,0.716665,0.659865,0.990431,1 +-1.53968,-1.11213,-1.84438,-1.37251,-0.468273,-0.557978,-1.04796,1.28863,-0.996375,-1.37774,-1.32586,-1.02388,-0.820467,1.40749,0.736615,-0.7389,-1.93587,-1.56375,1 +0.403367,-0.625897,-1.27373,-1.07375,-0.721814,-0.340644,-1.16827,1.41664,-0.996375,-0.344374,-0.975488,-1.09179,-0.543939,0.739661,-0.279986,-0.626933,-0.800238,-1.29489,3 +0.281926,-0.625897,-0.829891,-0.476243,-0.721814,-0.340644,-0.837397,0.776566,-0.996375,-0.482157,-0.848079,-0.808813,-0.175236,-1.53095,0.939935,-0.514967,2.11997,1.79701,2 +-0.932481,-0.139663,-1.08351,-1.19326,-0.721814,-0.557978,-0.50652,0.520535,-0.610593,0.137864,-0.656965,-0.616389,0.0705665,1.40749,-0.483306,0.044866,-1.77364,-1.69818,0 +0.403367,0.670727,-0.386053,1.01753,1.43329,-0.340644,0.275553,-0.631603,0.16097,0.620102,0.171197,0.2665,0.347094,-0.0617305,-1.29659,-0.626933,1.3088,0.58714,0 +1.73921,1.6432,1.4527,1.82417,0.799435,0.528691,1.47874,-1.3997,1.31832,1.58458,1.25418,1.52292,1.0845,-0.462426,1.5499,-0.962833,0.173164,0.183849,1 +-0.325277,1.15696,1.00887,0.808406,0.0388104,0.0940239,0.726749,-0.887634,0.546752,0.895666,0.871949,0.690966,2.12916,-0.462426,-0.686626,-1.29873,0.173164,0.452709,1 +-1.17536,-0.301741,-0.386053,0.330397,1.68683,-0.340644,-0.416281,0.264505,-0.610593,-0.344374,-0.274736,-0.457922,-0.0523347,0.606096,-0.279986,-0.0671005,-0.638004,-0.757164,0 +0.160485,0.184493,1.3893,1.16691,0.545894,0.0940239,0.66659,-0.759619,0.546752,8.14316e-05,0.680835,0.583435,-0.175236,-0.595992,-1.29659,1.72436,0.173164,0.58714,2 +0.160485,-0.301741,0.0577843,0.868157,0.926206,-0.557978,0.245473,-0.631603,0.16097,-0.619939,0.0119352,0.249522,-0.359587,-0.595992,-0.0766656,-0.962833,1.14657,0.318279,0 +0.281926,0.184493,0.374811,-0.267114,0.292352,0.0940239,-0.5366,0.39252,-0.610593,8.14316e-05,-0.497703,-0.571112,0.224193,-0.328861,1.75322,-0.179067,0.497632,0.452709,3 +-0.932481,-0.139663,-0.322648,-0.416492,-0.214731,-0.340644,-0.50652,0.39252,-0.610593,-0.482157,-0.46585,-0.537155,-0.421038,-0.0617305,0.533295,-1.4107,-0.313537,-0.488303,1 +-0.446718,-1.11213,-0.195837,0.479775,0.926206,-0.557978,-0.265882,-0.119542,-0.224811,-1.23996,-0.338441,-0.265497,-1.28135,-0.863122,-0.889946,0.156833,1.47103,1.25929,0 +-1.05392,-1.11213,-0.449459,-1.10363,-0.975356,-0.340644,-0.656919,0.648551,-0.610593,-1.17107,-0.561407,-0.689963,-0.912642,0.338965,0.126654,1.38846,-0.962471,-1.02602,2 +1.37489,1.31904,1.4527,0.449899,-0.595044,0.528691,1.26818,-1.27168,1.31832,1.3779,1.12677,1.25126,1.3303,-0.195296,-1.29659,0.268799,-0.47577,0.183849,2 +-0.568159,-1.11213,-0.322648,-0.237239,0.0388104,-0.340644,-0.596759,0.520535,-0.610593,-1.30885,-0.46585,-0.639027,-0.66684,-0.195296,-0.0766656,0.940598,-0.151303,-0.353873,2 +0.524807,1.6432,1.3893,1.31629,0.672665,0.0940239,1.11779,-1.14366,0.932534,1.30901,1.09492,1.07016,1.39175,-0.0617305,-0.279986,0.716665,-0.313537,0.0494182,2 +-1.05392,-0.787975,-1.02011,-0.984128,-0.468273,-0.557978,-0.807317,0.904582,-0.610593,-0.757721,-0.784374,-0.820132,-0.328862,0.606096,-0.889946,1.05256,-1.1247,-1.29489,2 +0.403367,-1.27421,-0.259243,0.360272,0.0388104,-0.12331,-0.235802,0.00847383,-0.224811,-1.17107,-0.211031,-0.288135,-1.77295,-1.39738,-0.889946,1.72436,2.2822,2.06587,1 +0.403367,-0.625897,0.628433,0.838281,0.165581,0.311358,0.305633,-0.503588,0.16097,-0.551048,0.266754,0.232543,-1.18917,-1.26382,-0.483306,-1.0748,1.3088,1.12486,1 +0.767689,0.346571,0.374811,0.629152,-0.214731,0.311358,0.064995,-0.375572,0.16097,0.48232,-0.0836219,0.000501733,-0.175236,-1.79808,1.75322,0.604699,1.95773,1.93144,2 +-0.932481,-1.59837,-2.41503,-1.76089,-0.975356,-1.42731,-1.49915,2.05672,-1.38216,-1.85998,-1.58068,-1.31251,-1.15844,2.34245,-0.0766656,-1.29873,-1.44917,-1.69818,3 +-1.17536,-0.463819,-0.386053,-0.386617,0.292352,-0.340644,-0.5366,0.39252,-0.610593,-0.344374,-0.306588,-0.571112,-0.543939,0.338965,-1.29659,0.828632,-0.313537,-0.353873,0 +-0.568159,0.0224151,0.184595,-0.595745,-0.341502,0.528691,-0.326042,0.264505,-0.224811,0.688993,-0.370293,-0.440943,-0.0523347,0.338965,1.14325,0.380766,-0.962471,-0.353873,3 +-0.325277,-0.950053,-0.322648,-0.476243,-0.341502,-0.12331,-0.897556,0.904582,-0.996375,-0.619939,-0.943636,-0.85409,-1.5886,-1.39738,0.329975,0.492732,1.95773,1.79701,3 +0.281926,0.832805,0.755243,1.37604,0.672665,0.0940239,0.546271,-0.759619,0.546752,0.688993,0.808245,0.481563,1.2074,-0.729557,0.329975,-0.7389,0.659865,0.72157,2 +-0.689599,-1.59837,-1.40054,-0.774999,-0.341502,-0.340644,-1.22843,1.41664,-0.996375,-1.30885,-1.32586,-1.09745,-2.01875,-1.39738,-1.09327,-0.7389,2.11997,1.79701,3 +1.9821,0.184493,1.13568,0.838281,-0.0879604,0.0940239,0.726749,-0.887634,0.546752,0.0689726,0.648983,0.685307,-0.451763,-0.996688,0.939935,-0.626933,0.822099,0.990431,2 +-0.81104,-0.625897,-1.02011,-0.864625,-0.468273,-0.557978,-0.626839,0.648551,-0.610593,-0.826612,-0.784374,-0.689963,0.101292,0.873227,2.5665,-1.18677,-1.28694,-1.42932,2 +-0.568159,0.346571,0.0577843,0.00176569,-0.0879604,-0.12331,-0.145563,-0.119542,-0.224811,0.137864,0.0119352,-0.214561,0.469995,-0.0617305,0.126654,-0.291034,-0.313537,-0.353873,2 +-0.446718,-0.301741,-0.639675,-0.356741,0.292352,-0.12331,-0.987796,1.0326,-0.996375,-0.206592,-0.975488,-0.910685,-0.236686,-1.13025,-0.483306,-0.7389,1.95773,1.79701,3 +-0.446718,0.346571,0.184595,-0.237239,0.292352,0.311358,-0.175643,0.136489,-0.224811,0.826775,-0.370293,-0.288135,0.316369,0.0718348,0.533295,-1.4107,-0.638004,-0.0850121,3 +1.01057,-0.301741,0.882054,0.838281,0.165581,0.311358,0.486111,-0.631603,0.546752,-0.413265,0.426016,0.413649,-1.09699,-0.996688,0.329975,-0.0671005,0.984333,1.12486,1 +1.9821,1.31904,1.3893,1.61505,0.545894,0.311358,1.26818,-1.14366,1.31832,1.10234,1.09492,1.23994,1.0845,-0.729557,-0.279986,0.380766,0.173164,0.990431,2 +0.0390448,0.184493,0.565027,0.181019,1.05298,0.746025,-0.356121,0.264505,-0.224811,0.48232,-0.529555,-0.463581,0.531446,-0.462426,1.75322,0.940598,0.173164,0.58714,3 +-1.05392,-0.139663,-1.02011,-1.31276,-0.468273,-0.557978,-0.626839,0.520535,-0.610593,-0.206592,-0.59326,-0.661665,0.316369,1.54105,0.329975,-1.29873,-1.44917,-1.69818,0 +0.160485,0.994884,0.882054,0.808406,0.165581,0.0940239,0.63651,-0.759619,0.546752,0.895666,0.61713,0.583435,1.85263,-0.595992,1.34658,-1.4107,0.335398,0.318279,1 +1.13201,-0.625897,0.0577843,0.748655,0.165581,0.0940239,0.185314,-0.375572,0.16097,-0.413265,0.330459,0.0853949,-1.12772,-0.996688,0.126654,1.9483,1.3088,1.39372,1 +0.403367,0.346571,0.374811,0.420023,-0.214731,-0.340644,0.847068,-1.01565,0.932534,8.14316e-05,0.808245,0.883391,0.807973,0.2054,0.329975,-1.4107,0.497632,-0.622733,0 +-0.325277,-1.59837,-1.02011,-0.29699,-0.341502,-0.340644,-0.656919,0.520535,-0.610593,-1.17107,-0.625112,-0.667325,-1.5886,-1.13025,-1.09327,-1.29873,1.3088,0.990431,1 +-0.203837,-1.27421,-0.132432,0.330397,0.672665,-0.12331,-0.44636,0.264505,-0.610593,-1.30885,-0.274736,-0.491879,-0.943368,-0.462426,-0.0766656,-0.403,0.173164,-0.0850121,2 +0.767689,2.12943,1.70632,1.82417,1.05298,0.528691,1.71938,-1.3997,1.7041,2.34238,1.44529,1.76628,0.992325,-0.0617305,-1.29659,0.044866,-0.313537,0.318279,1 +-1.41824,-0.301741,-0.576269,-0.326865,0.799435,-0.340644,-0.5366,0.39252,-0.610593,-0.206592,-0.242884,-0.582432,-0.0523347,1.00679,-0.889946,0.492732,-0.962471,-1.02602,0 +1.37489,0.994884,-0.132432,1.13704,1.17975,-0.557978,0.786909,-1.01565,0.546752,0.757884,0.808245,0.787179,0.408545,0.338965,-0.0766656,0.828632,0.822099,-0.219442,0 +-0.932481,0.0224151,-0.766486,-1.40239,-0.721814,-0.340644,-0.626839,0.520535,-0.610593,-0.275483,-0.59326,-0.656006,0.347094,1.54105,0.533295,-0.850866,-1.44917,-1.69818,0 +-0.568159,-0.625897,-0.386053,0.420023,1.43329,-0.340644,-0.356121,0.136489,-0.610593,-0.826612,-0.242884,-0.378688,-0.66684,0.2054,0.329975,-0.0671005,0.335398,-0.0850121,0 +0.160485,0.184493,-0.386053,-0.207363,0.545894,0.528691,-0.205723,0.136489,-0.224811,0.48232,-0.433998,-0.333411,-0.0830599,0.2054,0.329975,-0.962833,-0.800238,-0.353873,3 +0.281926,0.184493,-0.766486,0.748655,1.05298,-0.557978,-0.0553239,-0.247557,-0.224811,8.14316e-05,-0.179179,-0.0730724,-0.113785,-0.462426,2.15986,-0.291034,1.7955,0.990431,0 +-0.446718,0.184493,-0.576269,-0.954252,-0.468273,0.528691,-0.235802,0.264505,-0.224811,0.688993,-0.59326,-0.378688,0.347094,0.472531,-1.29659,-0.403,-1.1247,-0.353873,3 +1.9821,1.80527,1.70632,0.898032,-0.595044,-0.775311,2.47137,-1.78374,2.47566,1.4468,2.65568,2.76236,2.86657,1.27392,0.939935,-0.291034,-0.962471,-1.69818,0 +0.646248,-1.11213,-0.512864,0.449899,0.545894,-0.557978,-0.145563,-0.247557,-0.224811,-1.17107,0.139345,-0.146646,-1.15844,-0.195296,-0.889946,1.05256,1.7955,0.856,0 +-1.05392,-0.463819,-1.02011,-1.46214,-1.10213,-0.340644,-0.596759,0.648551,-0.610593,-0.344374,-0.625112,-0.672984,-0.451763,1.67462,0.736615,-0.626933,-1.44917,-1.83261,0 +-0.689599,-0.787975,-0.829891,-0.685372,-0.341502,-0.340644,-1.16827,1.28863,-0.996375,-0.964395,-1.32586,-1.06349,-0.943368,-1.13025,-1.09327,-1.29873,0.659865,0.58714,1 +1.49633,1.96735,1.57951,1.97355,0.672665,-0.557978,2.80225,-1.91176,2.86144,1.58458,3.06976,3.09627,2.62076,1.80818,0.533295,2.06026,-1.44917,-1.56375,0 +-0.568159,-1.59837,-1.90778,-1.43226,-0.595044,-0.992645,-1.40891,1.80069,-1.38216,-1.58442,-1.58068,-1.2446,-1.43497,1.27392,-0.279986,0.044866,-1.28694,-1.56375,2 +1.37489,0.994884,1.4527,0.838281,-0.214731,0.528691,0.66659,-0.759619,0.546752,0.964558,0.585278,0.594754,0.592896,-1.13025,2.36318,-0.962833,1.14657,1.25929,2 +0.0390448,-0.787975,0.184595,0.50965,0.0388104,0.0940239,0.00483551,-0.247557,-0.224811,-0.619939,-0.147327,-0.0560937,-1.28135,-1.53095,-0.889946,-0.403,1.7955,1.93144,2 +-0.932481,0.0224151,-0.70308,0.0316412,1.05298,-0.557978,-0.686998,0.520535,-0.610593,-0.137701,-0.529555,-0.672984,0.43927,-0.195296,0.736615,-0.514967,-0.313537,-0.622733,0 +1.73921,0.994884,1.13568,1.10716,0.165581,0.311358,0.816988,-0.887634,0.932534,0.757884,0.808245,0.7702,0.807973,-0.996688,0.126654,0.380766,0.822099,1.25929,2 +-0.446718,0.184493,-0.449459,-1.07375,-0.848585,0.528691,-0.265882,0.264505,-0.224811,0.895666,-0.497703,-0.401326,-0.113785,0.606096,-1.29659,0.380766,-1.1247,-0.488303,3 +0.767689,-0.301741,0.628433,0.838281,0.0388104,0.311358,0.335713,-0.631603,0.16097,-0.344374,0.362311,0.277819,-0.66684,-1.13025,-0.0766656,-0.403,0.984333,1.25929,2 +-0.203837,-0.625897,-1.02011,-1.31276,-1.2289,-0.340644,-0.897556,1.16061,-0.996375,-0.344374,-0.911784,-0.933323,-0.421038,1.14036,0.126654,0.716665,-1.1247,-1.56375,3 +-0.568159,-1.11213,-0.00562104,-0.386617,-0.341502,-0.12331,-0.47644,0.264505,-0.610593,-1.30885,-0.306588,-0.503198,-1.15844,-0.328861,-1.09327,-1.29873,-0.313537,-0.488303,2 +-0.203837,-1.27421,-0.449459,0.449899,1.05298,-0.557978,-0.44636,0.136489,-0.610593,-1.17107,-0.147327,-0.435283,-1.4657,-0.195296,-1.29659,-0.962833,1.47103,0.856,0 +-1.2968,-0.463819,-0.70308,-0.506119,0.292352,-0.340644,-0.596759,0.520535,-0.610593,-0.413265,-0.529555,-0.616389,-0.513214,0.2054,-0.889946,-1.18677,-0.800238,-0.757164,0 +-0.0823959,0.346571,0.0577843,-0.117737,-0.214731,-0.340644,-0.0553239,-0.119542,-0.224811,-0.0688097,0.266754,-0.129668,0.807973,0.0718348,1.14325,-0.962833,-0.313537,-0.488303,1 +1.49633,1.31904,1.00887,0.688903,-0.468273,0.528691,1.44866,-1.27168,1.31832,1.24012,1.25418,1.43237,0.50072,-0.195296,0.939935,1.2765,-0.151303,0.318279,1 +1.73921,0.670727,1.32589,0.927908,0.0388104,0.311358,1.11779,-1.14366,0.932534,0.48232,1.22233,1.10411,1.23813,-0.0617305,-0.0766656,0.380766,0.0109306,0.318279,2 +0.281926,0.508649,0.0577843,0.24077,-0.341502,-0.12331,0.064995,-0.247557,0.16097,0.275646,0.203049,-0.0108174,0.654347,-0.729557,1.75322,-1.4107,0.984333,0.72157,1 +-0.0823959,-0.301741,-0.259243,-0.207363,0.292352,-0.12331,-0.957716,0.904582,-0.996375,-0.206592,-1.03919,-0.899366,-0.482489,-1.26382,2.15986,-0.0671005,2.2822,1.93144,3 +0.646248,1.15696,1.3893,0.24077,-0.848585,0.311358,1.2381,-1.14366,1.31832,1.24012,0.967506,1.22862,1.23813,0.0718348,-0.686626,-1.18677,-0.313537,-0.219442,1 +1.9821,1.48112,1.26249,0.957783,0.292352,0.528691,1.32834,-1.27168,1.31832,1.58458,1.06306,1.29654,1.42248,0.0718348,2.15986,0.380766,-0.151303,0.318279,2 +-1.41824,-0.301741,-0.766486,2.42169,5.48996,10.0914,-0.897556,0.904582,-0.996375,-0.206592,1.34973,-0.85409,-0.0830599,3.54453,-0.483306,-0.403,0.173164,0.452709,3 +-0.203837,-1.59837,-1.52735,-0.984128,-0.468273,-0.557978,-1.40891,1.80069,-1.38216,-1.10218,-1.48513,-1.23328,-1.80368,-1.13025,-0.0766656,0.492732,1.3088,0.990431,3 +0.0390448,0.670727,-0.00562104,-0.954252,-0.721814,0.311358,-0.295962,0.264505,-0.224811,0.826775,-0.402146,-0.412645,0.347094,0.472531,0.736615,-0.626933,-0.962471,-0.488303,3 +0.160485,-0.463819,0.882054,0.838281,0.419123,0.0940239,0.275553,-0.503588,0.16097,-0.482157,0.330459,0.192926,-0.789741,-0.729557,-1.09327,1.83633,0.659865,0.58714,1 +1.01057,1.48112,1.00887,0.957783,-0.0879604,-0.557978,1.6893,-1.52771,1.7041,1.17123,1.82752,1.84551,1.72973,0.873227,0.533295,0.156833,-0.151303,-1.16045,0 +0.767689,1.48112,1.26249,1.10716,0.419123,0.311358,0.877148,-1.01565,0.932534,1.10234,1.12677,0.832455,2.00626,-0.0617305,-0.483306,-0.179067,-0.313537,0.0494182,2 +1.37489,0.0224151,1.13568,0.77853,-0.0879604,0.311358,0.877148,-1.01565,0.932534,0.0689726,0.808245,0.826795,0.347094,-0.729557,0.329975,-0.850866,0.497632,0.58714,2 +1.61777,1.31904,1.64292,1.25654,0.165581,0.528691,1.50882,-1.27168,1.7041,1.3779,1.25418,1.49462,0.715797,-0.462426,0.736615,0.940598,0.173164,0.990431,2 +0.0390448,-0.139663,-0.766486,0.50965,1.30652,-0.12331,-0.47644,0.136489,-0.610593,-0.275483,-0.561407,-0.446602,0.101292,-0.729557,0.126654,-1.18677,1.63327,1.39372,0 +0.767689,1.15696,1.70632,1.6748,0.799435,0.311358,1.59906,-1.3997,1.7041,1.17123,1.66826,1.64743,0.992325,0.0718348,0.126654,1.72436,-0.151303,0.452709,1 +0.403367,-0.625897,0.374811,0.449899,-0.341502,0.0940239,0.185314,-0.375572,0.16097,-0.551048,0.107492,0.108033,-0.851192,-1.26382,-1.09327,-0.850866,1.14657,1.25929,2 +0.281926,0.184493,-0.512864,0.987659,1.56006,-0.775311,-0.175643,-0.247557,-0.224811,0.0689726,-0.115474,-0.180604,0.50072,-0.328861,0.126654,-0.514967,1.14657,0.58714,0 +1.25345,1.15696,1.76973,0.0913924,-1.10213,0.311358,1.50882,-1.3997,1.7041,1.24012,1.47714,1.53424,1.3303,0.2054,0.736615,1.72436,-0.151303,0.318279,1 +1.25345,1.31904,1.19908,0.898032,0.419123,0.528691,1.32834,-1.27168,1.31832,1.3779,0.871949,1.28522,1.42248,-0.0617305,1.14325,-0.0671005,-0.313537,0.318279,2 +-0.325277,-1.11213,-0.386053,0.0913924,-0.0879604,-0.12331,-0.0553239,-0.119542,-0.224811,-0.964395,0.234902,-0.140987,-0.912642,-0.195296,-1.29659,1.72436,0.0109306,0.318279,1 +1.37489,1.48112,1.64292,1.94368,1.05298,0.746025,1.3885,-1.27168,1.31832,1.3779,1.19047,1.39841,1.63756,-0.595992,-0.483306,1.05256,0.0109306,0.72157,2 +0.0390448,0.0224151,0.184595,-0.177488,0.799435,0.311358,-0.356121,0.39252,-0.224811,0.551211,-0.59326,-0.469241,0.0398412,0.0718348,2.15986,-0.179067,-0.313537,-0.0850121,3 +1.37489,0.184493,1.13568,0.77853,-0.0879604,0.0940239,0.726749,-0.887634,0.546752,0.137864,0.585278,0.662669,-0.421038,-0.996688,-0.279986,-0.403,0.822099,0.856,1 +0.0390448,0.0224151,0.184595,-0.267114,0.165581,0.311358,-0.326042,0.264505,-0.224811,0.620102,-0.46585,-0.412645,-0.390313,-0.595992,-1.09327,-0.7389,0.0109306,0.452709,3 +-0.325277,-1.27421,-0.386053,-0.924376,-0.848585,-0.12331,-1.10811,1.28863,-0.996375,-0.895504,-1.00734,-1.04085,-1.55787,-0.462426,-1.29659,-0.0671005,0.335398,-0.488303,3 +1.01057,0.508649,1.4527,1.34617,0.292352,0.311358,0.967387,-1.01565,0.932534,0.275646,0.808245,0.906029,0.101292,-1.13025,-1.29659,1.38846,0.497632,1.12486,2 +0.281926,-0.139663,-0.893296,0.629152,1.05298,-0.340644,-0.416281,0.00847383,-0.610593,-0.206592,-0.306588,-0.384347,-0.267412,-0.729557,-0.279986,-0.626933,2.11997,1.39372,0 +-1.05392,-1.43629,-0.639675,-1.25301,-0.721814,-0.340644,-1.25851,1.67267,-0.996375,-1.58442,-1.42142,-1.17102,-1.5886,-0.328861,-0.686626,1.9483,-0.800238,-0.219442,1 +1.13201,0.508649,0.882054,1.88393,1.17975,0.311358,1.08771,-1.14366,0.932534,0.344537,1.19047,1.09279,0.685072,-0.195296,-0.889946,0.268799,-0.151303,0.0494182,1 +0.889129,1.6432,1.57951,0.927908,-0.0879604,0.528691,1.6893,-1.3997,1.7041,2.06682,1.25418,1.64177,0.900149,0.2054,0.329975,2.50813,-0.313537,0.72157,1 +1.13201,1.15696,1.32589,0.0316412,-1.2289,-0.340644,2.02018,-1.65573,2.08988,0.826775,2.08234,2.12849,2.31351,1.27392,-0.686626,1.16453,-0.962471,-1.56375,0 +-1.05392,0.0224151,-0.576269,-0.0579854,0.926206,-0.12331,-0.777237,0.648551,-0.996375,8.14316e-05,-0.497703,-0.752218,0.0398412,-0.195296,-0.889946,-1.4107,0.173164,0.452709,3 +2.46786,1.96735,1.26249,0.360272,-1.2289,-0.557978,2.65185,-1.91176,2.86144,1.4468,3.13347,2.98874,2.65149,1.67462,-0.889946,0.940598,-1.1247,-1.56375,0 +-0.689599,-0.787975,-1.71757,-1.64139,-1.10213,-0.340644,-1.10811,1.54466,-0.996375,-0.619939,-1.48513,-1.08047,-0.513214,1.94175,-1.29659,-0.626933,-2.09811,-1.69818,3 +-0.932481,-1.27421,-0.322648,-0.745123,-0.975356,-0.340644,-0.44636,0.264505,-0.610593,-1.44663,-0.306588,-0.497538,-0.912642,-0.195296,1.5499,0.044866,-0.47577,-0.622733,1 +1.01057,0.994884,1.3893,1.43579,0.672665,0.311358,1.05763,-1.14366,0.932534,0.964558,0.999359,1.02488,0.623621,-0.595992,-0.686626,0.716665,-0.151303,0.183849,2 +1.37489,0.994884,0.691838,-0.267114,-1.35567,-0.340644,1.44866,-1.3997,1.31832,1.17123,1.63641,1.48896,1.02305,1.14036,0.533295,1.38846,-0.151303,-1.02602,0 +0.767689,0.832805,1.00887,1.04741,0.165581,-0.557978,1.47874,-1.3997,1.31832,0.551211,1.38159,1.57952,1.17668,0.606096,0.329975,-0.626933,0.0109306,-0.891594,0 +0.281926,-0.139663,0.184595,-0.087861,0.545894,0.311358,-0.416281,0.264505,-0.610593,0.137864,-0.688817,-0.48056,-0.482489,-0.729557,-0.686626,-0.291034,0.497632,0.856,3 +1.86065,1.15696,1.3893,0.898032,-0.214731,0.746025,1.3885,-1.27168,1.31832,0.964558,0.999359,1.42105,1.14595,-0.729557,0.939935,-0.626933,0.0109306,0.452709,2 +-0.81104,-0.950053,-0.512864,-0.117737,0.545894,-0.557978,-0.717078,0.520535,-0.610593,-0.964395,-0.497703,-0.689963,-1.09699,-0.328861,-0.686626,0.940598,0.984333,0.58714,0 +-0.446718,-0.625897,-0.259243,-0.715248,-0.848585,-0.340644,-0.927636,0.904582,-0.996375,-0.68883,-0.879931,-0.882387,-0.513214,-0.729557,-1.29659,-1.29873,0.497632,0.183849,1 +0.524807,0.508649,1.19908,1.01753,0.419123,0.0940239,0.847068,-1.01565,0.932534,0.275646,0.871949,0.815476,-0.0216094,-0.595992,-0.889946,-0.850866,0.0109306,0.183849,2 +0.281926,0.184493,0.374811,0.151143,0.799435,0.311358,-0.416281,0.264505,-0.610593,8.14316e-05,-0.497703,-0.486219,0.224193,-0.462426,1.5499,0.268799,0.822099,0.856,3 +-1.05392,-0.301741,-0.829891,-0.83475,0.0388104,-0.340644,-0.50652,0.39252,-0.610593,-0.206592,-0.338441,-0.559793,0.132017,1.54105,-1.09327,-0.962833,-1.28694,-1.56375,0 +-0.325277,-0.463819,-1.02011,-0.804874,-0.468273,0.0940239,-1.04796,1.16061,-0.996375,-0.413265,-0.816226,-0.97294,-0.328862,-0.462426,-0.0766656,-0.850866,0.335398,0.183849,3 +-1.66112,-0.301741,-0.893296,-1.37251,-1.10213,-0.340644,-0.566679,0.648551,-0.610593,-0.0688097,-0.625112,-0.639027,0.0398412,1.14036,0.126654,0.156833,-1.61141,-1.56375,0 +-0.0823959,0.184493,0.184595,0.00176569,0.545894,0.0940239,-0.5366,0.39252,-0.610593,-0.0688097,-0.625112,-0.571112,0.132017,-0.729557,-1.29659,-0.962833,0.984333,1.12486,3 +-0.0823959,0.994884,0.501622,1.19679,0.926206,-0.12331,0.425952,-0.631603,0.546752,0.551211,0.712687,0.374032,1.69901,-0.328861,-0.0766656,-1.29873,0.0109306,0.0494182,2 +0.281926,-0.787975,-0.259243,0.0316412,-0.468273,-0.340644,0.155234,-0.375572,0.16097,-0.619939,0.266754,0.0853949,-0.451763,-0.595992,-0.686626,1.83633,0.335398,0.58714,2 +-1.05392,-1.43629,-1.97119,-1.61151,-0.721814,-0.775311,-1.49915,2.05672,-1.38216,-1.65331,-1.58068,-1.31817,-1.4657,1.14036,1.34658,-0.850866,-1.28694,-1.56375,3 +0.767689,-1.43629,-0.576269,0.898032,1.43329,-0.557978,-0.205723,-0.119542,-0.224811,-1.44663,0.0119352,-0.220221,-1.52715,-0.0617305,-0.0766656,0.716665,1.7955,1.12486,0 +-0.325277,-1.43629,-0.639675,-0.207363,-0.214731,-0.12331,-0.566679,0.39252,-0.610593,-1.03329,-0.720669,-0.59941,-1.65005,-1.26382,-0.889946,1.05256,1.14657,1.25929,2 +-0.325277,-0.625897,-1.14692,-0.625621,-0.0879604,-0.12331,-1.19835,1.28863,-0.996375,-0.413265,-0.879931,-1.08047,-0.66684,-0.595992,-0.0766656,-0.0671005,0.822099,0.72157,3 +-0.932481,-0.950053,-1.52735,-1.31276,-0.848585,-0.775311,-1.55931,2.05672,-1.38216,-0.964395,-1.54883,-1.33515,-0.820467,-0.462426,0.126654,-0.7389,0.173164,-0.219442,3 +0.160485,1.31904,0.818649,0.987659,0.419123,0.311358,0.726749,-0.887634,0.546752,0.826775,0.999359,0.673988,1.91408,-0.195296,-0.686626,-1.18677,-0.151303,0.0494182,2 +-0.325277,-0.301741,-0.639675,-0.804874,-0.721814,-0.340644,-0.596759,0.520535,-0.610593,-0.551048,-0.656965,-0.639027,-0.298137,-0.0617305,1.34658,1.16453,-0.47577,-0.622733,2 +-1.53968,0.0224151,-0.893296,-0.954252,-0.214731,-0.340644,-0.50652,0.520535,-0.610593,0.206755,-0.688817,-0.60507,0.132017,1.14036,-0.686626,0.044866,-1.61141,-1.69818,0 +0.0390448,0.832805,0.12119,-0.924376,-0.595044,0.311358,-0.386201,0.39252,-0.224811,1.51569,-0.561407,-0.503198,0.377819,0.606096,-0.279986,-0.7389,-1.1247,-0.622733,3 +1.61777,0.0224151,0.628433,0.838281,0.0388104,0.311358,0.57635,-0.759619,0.546752,8.14316e-05,0.426016,0.487223,-0.482489,-1.13025,1.14325,0.828632,0.984333,0.990431,1 +2.5893,0.994884,1.13568,0.957783,-0.214731,0.746025,0.816988,-0.887634,0.932534,0.964558,0.585278,0.753221,0.285643,-1.39738,3.17646,-1.29873,1.47103,1.66258,2 +-0.446718,-0.139663,-0.829891,-0.506119,0.292352,-0.340644,-1.01788,1.0326,-0.996375,-0.206592,-0.752522,-0.950302,-0.390313,0.338965,-0.686626,-1.18677,-0.313537,-0.622733,3 +1.01057,1.15696,1.00887,1.6748,1.17975,0.311358,1.35842,-1.27168,1.31832,1.10234,1.25418,1.37011,0.746523,-0.195296,-1.29659,0.380766,-0.313537,0.0494182,1 +1.13201,1.31904,1.51611,0.0913924,-0.848585,0.311358,1.29826,-1.14366,1.31832,1.3779,0.999359,1.2456,1.48393,0.0718348,1.95654,1.2765,-0.313537,0.183849,2 +-1.17536,-0.301741,-0.766486,-1.37251,-0.975356,-0.12331,-0.5366,0.520535,-0.610593,-0.137701,-0.497703,-0.610729,0.0398412,1.14036,-1.09327,-0.0671005,-1.28694,-1.56375,0 +0.524807,-1.11213,-0.259243,0.659028,0.419123,-0.12331,0.00483551,-0.247557,-0.224811,-0.826612,0.266754,-0.0560937,-1.03554,-0.729557,0.533295,0.828632,0.497632,0.452709,2 +-0.689599,-0.950053,-0.766486,-0.087861,0.545894,-0.340644,-0.626839,0.39252,-0.610593,-0.964395,-0.688817,-0.610729,-0.974093,-0.462426,-0.279986,0.044866,0.659865,0.72157,0 +-0.325277,0.184493,1.19908,0.898032,0.419123,0.0940239,0.816988,-0.887634,0.932534,-0.137701,0.967506,0.758881,0.746523,0.0718348,-0.279986,-0.514967,-0.47577,-0.219442,1 +-0.325277,-1.43629,0.0577843,-0.207363,-0.0879604,-0.12331,-0.807317,0.776566,-0.610593,-1.37774,-0.816226,-0.803154,-1.15844,-1.26382,-1.29659,2.06026,0.659865,0.58714,2 +-1.66112,-0.139663,-0.893296,-1.46214,-1.10213,-0.12331,-0.5366,0.520535,-0.610593,-0.137701,-0.59326,-0.60507,0.469995,1.00679,-0.483306,0.380766,-1.44917,-1.42932,0 +0.403367,0.508649,1.4527,1.28641,0.292352,0.528691,0.967387,-1.01565,0.932534,0.48232,0.74454,0.917348,-0.390313,-1.13025,-0.889946,-0.626933,0.659865,0.856,1 +-0.203837,1.15696,0.691838,1.04741,0.672665,0.0940239,0.60643,-0.759619,0.546752,0.895666,0.808245,0.543818,2.00626,-0.0617305,-0.889946,-0.850866,-0.151303,-0.0850121,1 +-0.81104,-0.463819,-0.766486,-0.894501,-0.341502,-0.340644,-0.596759,0.520535,-0.610593,-0.413265,-0.370293,-0.639027,-0.574664,0.739661,-0.0766656,-0.403,-0.638004,-1.02602,0 +0.0390448,-1.27421,-0.639675,-0.685372,-0.214731,0.0940239,-1.07803,1.16061,-0.996375,-0.895504,-0.879931,-1.0069,-1.43497,-0.462426,-0.889946,-0.626933,0.497632,-0.0850121,3 +0.403367,-1.11213,-0.449459,0.569401,0.799435,-0.557978,0.064995,-0.503588,-0.224811,-1.30885,0.330459,0.0570972,-1.15844,0.2054,-0.889946,-0.7389,1.3088,0.452709,0 +0.281926,0.0224151,1.19908,0.957783,0.545894,0.0940239,0.696669,-0.887634,0.546752,-0.344374,0.935654,0.634371,0.623621,0.0718348,-0.686626,0.716665,0.0109306,0.183849,2 +1.49633,1.31904,1.00887,-0.446368,-1.86275,-0.992645,2.05026,-1.65573,2.08988,1.10234,2.36901,2.253,1.4532,1.27392,-0.483306,0.492732,-0.638004,-1.56375,0 +2.10354,0.832805,1.32589,0.898032,-0.214731,0.528691,1.26818,-1.27168,1.31832,0.551211,1.09492,1.26258,0.408545,-0.595992,0.533295,-0.403,0.173164,0.58714,2 +0.281926,-0.950053,-1.14692,-1.73102,-1.73598,-0.12331,-1.04796,1.41664,-0.996375,-0.482157,-0.911784,-1.02954,-1.09699,1.00679,0.126654,0.828632,-0.962471,-1.56375,3 +1.86065,0.346571,0.882054,1.10716,0.292352,0.0940239,0.877148,-1.01565,0.932534,0.137864,0.967506,0.826795,0.50072,-0.328861,-0.483306,0.044866,0.173164,0.318279,2 +-0.689599,-0.463819,-1.14692,-0.535994,0.0388104,-0.12331,-1.16827,1.28863,-0.996375,-0.413265,-1.23031,-1.05783,-0.421038,-1.26382,-0.686626,-1.18677,2.2822,1.93144,3 +-0.81104,-0.139663,1.00887,1.25654,1.05298,0.311358,0.60643,-0.759619,0.546752,-0.482157,0.808245,0.538159,0.101292,-0.195296,-0.889946,0.940598,-0.313537,-0.219442,1 +1.61777,1.48112,0.882054,0.957783,0.0388104,0.746025,1.47874,-1.27168,1.31832,1.51569,1.03121,1.43803,1.29958,-0.195296,-0.889946,0.940598,-0.313537,0.318279,2 +-0.81104,-1.27421,-1.90778,-1.58164,-0.975356,-0.557978,-1.61947,2.18474,-1.38216,-1.51552,-1.70809,-1.38043,-0.943368,0.2054,0.939935,1.05256,-0.47577,-0.757164,3 +-1.05392,-0.301741,-1.02011,-1.37251,-0.721814,-0.557978,-0.626839,0.648551,-0.610593,-0.206592,-0.720669,-0.684303,-0.113785,1.67462,-0.0766656,-0.179067,-1.61141,-1.83261,0 +1.61777,1.6432,1.32589,1.31629,0.799435,0.528691,1.50882,-1.3997,1.7041,1.65347,1.03121,1.52292,1.26885,-0.328861,0.736615,-0.626933,-0.313537,0.183849,2 +-0.0823959,-1.27421,-0.766486,-1.28288,-1.2289,0.0940239,-1.25851,1.54466,-0.996375,-0.757721,-1.03919,-1.14273,-1.7115,-0.195296,-0.889946,0.044866,0.335398,-0.757164,3 +2.5893,1.15696,1.13568,1.01753,0.0388104,0.311358,1.44866,-1.27168,1.31832,1.17123,1.28603,1.45501,1.2074,-0.0617305,1.5499,-0.962833,-0.151303,0.183849,2 +-0.446718,-0.950053,0.184595,-0.267114,-0.341502,-0.340644,-0.175643,0.00847383,-0.224811,-1.17107,0.0119352,-0.248518,-0.513214,-0.195296,0.126654,0.044866,-0.47577,-0.488303,2 +-1.05392,-0.301741,-1.02011,-1.46214,-0.975356,-0.775311,-0.626839,0.648551,-0.610593,-0.206592,-0.656965,-0.678644,-0.0216094,1.94175,0.329975,-1.18677,-1.61141,-1.96704,0 +-0.932481,-0.301741,-0.893296,-0.56587,0.292352,0.0940239,-0.927636,0.904582,-0.996375,-0.344374,-0.879931,-0.876728,-0.0216094,-0.462426,-0.0766656,-1.4107,0.497632,0.72157,3 +0.767689,0.994884,1.3893,-0.177488,-1.2289,0.311358,1.11779,-1.14366,0.932534,1.10234,0.903802,1.08148,0.562171,-0.462426,-0.279986,0.940598,-0.151303,0.0494182,1 +0.524807,0.184493,0.374811,0.659028,0.165581,-0.557978,0.696669,-0.887634,0.546752,-0.0688097,0.840097,0.696626,-0.0216094,0.0718348,-0.889946,1.50043,0.822099,0.183849,0 +-0.81104,-0.625897,-0.386053,-0.117737,0.672665,-0.340644,-0.626839,0.520535,-0.610593,-0.551048,-0.561407,-0.639027,-0.697566,-0.0617305,0.126654,0.044866,-0.151303,-0.0850121,0 +-1.2968,-0.787975,-1.84438,-1.64139,-1.10213,-0.557978,-1.10811,1.54466,-0.996375,-0.551048,-1.48513,-1.09179,-0.543939,1.80818,0.329975,-0.626933,-2.09811,-1.69818,3 +-1.05392,-1.11213,-1.21032,-1.16338,-0.848585,-0.340644,-1.40891,1.80069,-1.38216,-1.23996,-1.64439,-1.25026,-0.943368,-1.13025,2.76982,-0.514967,0.984333,0.72157,1 +2.10354,1.31904,1.64292,1.25654,-0.0879604,0.528691,1.14787,-1.14366,0.932534,1.30901,0.903802,1.10977,1.26885,-1.13025,2.97314,-1.18677,1.14657,1.25929,2 +1.13201,1.80527,1.13568,0.479775,-0.341502,0.528691,1.41858,-1.27168,1.31832,1.72236,0.967506,1.38143,1.36103,0.338965,1.75322,-0.179067,-0.47577,-0.219442,1 +-0.203837,-0.950053,-0.386053,0.330397,1.17975,-0.557978,-0.50652,0.264505,-0.610593,-1.17107,-0.306588,-0.508857,-0.974093,-0.0617305,-0.0766656,0.156833,0.984333,0.58714,0 +-0.689599,-0.625897,-0.132432,-0.655496,0.0388104,-0.12331,-0.686998,0.520535,-0.610593,-0.275483,-0.625112,-0.689963,-0.421038,-0.195296,-0.483306,0.380766,-0.151303,0.183849,3 +-1.17536,-1.11213,-1.40054,-1.22313,-0.721814,-0.775311,-1.10811,1.16061,-0.996375,-1.23996,-1.29401,-1.01256,-1.03554,0.338965,0.329975,-0.962833,-0.638004,-1.02602,1 +-0.568159,-0.139663,-0.132432,0.659028,0.545894,-0.557978,-0.205723,-0.119542,-0.224811,-0.344374,0.0119352,-0.248518,0.162742,-0.863122,1.34658,-0.179067,0.822099,0.452709,1 +-0.0823959,0.346571,0.12119,1.07729,1.17975,-0.340644,0.215394,-0.631603,0.16097,0.275646,0.0437876,0.204245,0.807973,-0.328861,0.126654,0.716665,1.47103,0.72157,0 +1.25345,1.15696,1.19908,1.10716,0.0388104,0.311358,0.877148,-1.01565,0.932534,0.895666,0.585278,0.832455,0.900149,-1.13025,-0.889946,-0.850866,0.984333,1.12486,1 +-1.53968,-0.301741,-0.893296,-0.625621,0.292352,-0.340644,-0.566679,0.520535,-0.610593,-0.275483,-0.433998,-0.622048,-0.113785,1.00679,-1.09327,-1.18677,-1.1247,-1.42932,0 +-0.689599,0.0224151,-0.00562104,-0.416492,-0.721814,-0.12331,-0.44636,0.264505,-0.610593,0.0689726,-0.274736,-0.469241,-0.144511,-0.462426,-0.686626,-1.4107,-0.151303,-0.353873,2 +1.13201,0.994884,1.4527,0.151143,-0.721814,0.528691,1.2381,-1.14366,1.31832,1.03345,1.06306,1.18901,1.4532,0.0718348,0.329975,-0.403,-0.313537,0.0494182,2 +-1.2968,0.184493,-0.893296,-0.894501,-0.341502,-0.557978,-0.566679,0.39252,-0.610593,-0.137701,-0.529555,-0.588091,0.254918,0.2054,-0.279986,-1.0748,-0.638004,-0.622733,0 +-1.78257,-1.11213,-1.71757,-1.46214,-0.848585,-0.775311,-0.807317,0.904582,-0.610593,-1.37774,-1.13475,-0.820132,-0.912642,1.14036,-0.483306,-1.18677,-1.44917,-1.69818,2 +0.403367,1.6432,1.32589,0.838281,0.165581,0.528691,1.3885,-1.27168,1.31832,1.65347,0.967506,1.34181,1.36103,0.338965,-0.279986,1.2765,-0.638004,-0.219442,1 +-1.2968,-0.950053,-0.829891,-1.25301,-0.975356,-0.775311,-1.01788,1.0326,-0.996375,-1.17107,-1.07105,-0.938983,-0.390313,-0.462426,1.95654,-0.7389,-0.313537,-0.757164,1 +0.524807,-1.11213,-0.639675,0.688903,0.926206,-0.775311,-0.0854037,-0.375572,-0.224811,-1.17107,0.0119352,-0.0730724,-1.12772,-0.328861,-1.09327,-1.0748,1.7955,0.856,0 +-0.446718,0.508649,-0.322648,-1.10363,-0.721814,0.311358,-0.356121,0.39252,-0.224811,1.10234,-0.625112,-0.486219,0.377819,0.739661,-1.09327,-1.0748,-1.1247,-0.622733,3 +-1.05392,-0.301741,-1.02011,-1.37251,-0.848585,-0.340644,-0.566679,0.520535,-0.610593,-0.137701,-0.529555,-0.644687,-0.0523347,1.40749,-0.483306,0.268799,-1.44917,-1.69818,0 +-1.53968,0.0224151,-0.893296,-0.446368,0.926206,2.91936,-0.5366,0.520535,-0.610593,-0.0688097,-0.0836219,-0.593751,0.347094,2.07531,-1.09327,-0.291034,-1.44917,-1.42932,0 +-0.446718,0.508649,0.184595,-0.356741,0.292352,0.528691,-0.235802,0.264505,-0.224811,1.30901,-0.433998,-0.367369,0.347094,0.2054,-0.686626,0.380766,-0.638004,-0.0850121,3 +1.25345,1.31904,1.64292,1.04741,0.292352,0.528691,1.5389,-1.27168,1.7041,1.65347,1.19047,1.5116,0.869424,-0.195296,1.5499,1.9483,0.0109306,0.990431,2 +0.160485,-0.301741,0.882054,0.987659,0.419123,0.311358,0.60643,-0.759619,0.546752,-0.344374,0.903802,0.532499,-0.267412,-0.195296,-0.0766656,1.6124,0.173164,0.183849,1 +-0.0823959,-0.463819,1.00887,0.688903,0.165581,0.0940239,0.486111,-0.631603,0.546752,-0.68883,0.553426,0.385351,-0.0523347,-0.328861,0.736615,0.940598,0.0109306,0.183849,2 +-0.81104,-1.11213,-0.70308,-1.37251,-1.10213,-0.12331,-0.957716,1.0326,-0.996375,-1.44663,-0.975488,-0.922004,-0.912642,0.338965,-1.29659,-0.403,-1.28694,-1.29489,2 +1.25345,1.80527,0.882054,1.85405,1.56006,0.528691,1.5389,-1.3997,1.7041,1.65347,1.09492,1.54556,1.3303,0.0718348,-0.0766656,0.380766,-0.47577,-0.0850121,1 +0.160485,-0.625897,-0.00562104,0.0316412,0.419123,0.0940239,-0.717078,0.648551,-0.610593,-0.206592,-0.816226,-0.712601,-1.06627,-1.13025,-0.483306,-0.514967,1.63327,1.52815,3 +1.37489,1.48112,1.4527,1.31629,0.672665,0.311358,0.937307,-1.01565,0.932534,1.03345,0.808245,0.88905,1.2074,-0.595992,0.736615,0.828632,0.173164,0.318279,1 +1.49633,1.6432,0.882054,0.808406,-0.214731,0.746025,1.56898,-1.3997,1.7041,1.72236,1.15862,1.5682,1.2074,-0.0617305,0.533295,0.044866,-0.47577,0.0494182,1 +-0.932481,-0.950053,0.12119,-0.595745,-0.595044,-0.12331,-0.386201,0.264505,-0.224811,-1.03329,-0.115474,-0.463581,-0.543939,0.2054,-1.29659,1.16453,-0.962471,-0.757164,1 +0.160485,0.670727,0.628433,0.718779,0.0388104,0.311358,0.275553,-0.503588,0.16097,0.413428,0.362311,0.215564,-0.113785,-1.13025,-0.889946,-1.4107,1.47103,1.39372,1 +0.646248,1.96735,1.13568,0.24077,-0.975356,0.963359,1.65922,-1.3997,1.7041,2.75573,1.09492,1.61913,1.17668,-0.0617305,-0.483306,-0.626933,-0.638004,0.318279,1 +-0.568159,-0.463819,-1.02011,-1.31276,-1.10213,-0.340644,-1.13819,1.28863,-0.996375,-0.275483,-0.848079,-1.05217,-0.390313,0.0718348,0.736615,0.492732,-0.151303,-0.622733,3 +0.160485,0.670727,-0.00562104,-0.894501,-0.721814,0.528691,-0.295962,0.264505,-0.224811,0.964558,-0.497703,-0.423964,0.316369,0.338965,0.126654,-0.291034,-1.1247,-0.622733,3 +0.403367,-1.27421,-0.766486,0.121268,0.545894,-0.340644,-0.5366,0.264505,-0.610593,-1.30885,-0.688817,-0.531496,-1.7115,-0.996688,-1.29659,0.380766,1.95773,1.66258,0 +0.767689,0.346571,-0.766486,0.479775,1.05298,-0.340644,-0.205723,-0.119542,-0.224811,0.344537,-0.306588,-0.191923,-0.0830599,-0.595992,0.533295,-0.7389,1.7955,1.25929,0 +1.73921,0.670727,1.70632,1.04741,-0.0879604,0.528691,1.29826,-1.27168,1.31832,0.757884,1.28603,1.2739,1.23813,-0.195296,1.95654,-0.179067,0.173164,0.452709,2 +-0.203837,0.184493,0.0577843,-0.446368,-0.721814,-0.557978,-0.265882,0.00847383,-0.224811,8.14316e-05,-0.115474,-0.327752,0.285643,-0.195296,0.736615,-0.850866,-0.47577,-0.622733,2 +-1.41824,-1.43629,-1.97119,-1.64139,-1.10213,-0.992645,-1.01788,1.16061,-0.996375,-1.51552,-1.23031,-0.97294,-0.943368,1.80818,1.75322,-0.962833,-1.28694,-1.83261,2 +2.10354,2.12943,1.4527,0.420023,-1.35567,-0.557978,2.89249,-1.91176,3.24723,1.79125,3.06976,3.27172,2.46714,1.67462,-0.483306,-0.514967,-1.28694,-1.69818,0 +-0.81104,0.0224151,-1.02011,-0.894501,-0.468273,-0.12331,-0.867477,0.776566,-0.996375,8.14316e-05,-0.656965,-0.825792,0.00911589,0.0718348,-0.686626,-0.0671005,-0.151303,0.0494182,3 +0.0390448,0.184493,-0.322648,0.00176569,-0.214731,-0.12331,-0.326042,0.136489,-0.224811,8.14316e-05,-0.242884,-0.378688,0.193468,-0.729557,1.14325,-1.18677,0.659865,0.452709,2 +0.160485,-0.301741,-0.386053,-0.804874,-0.595044,0.311358,-0.5366,0.39252,-0.610593,0.0689726,-0.497703,-0.571112,-0.482489,-0.195296,-0.889946,1.16453,-0.313537,0.58714,3 +-0.446718,-0.139663,-0.639675,-0.356741,0.292352,-0.12331,-0.957716,0.904582,-0.996375,-0.275483,-0.943636,-0.888047,-0.113785,-0.996688,0.533295,-0.962833,1.14657,0.990431,3 +-0.0823959,-1.76044,-1.02011,-0.864625,-0.721814,-0.340644,-1.16827,1.28863,-0.996375,-1.92887,-1.19845,-1.06915,-1.86513,-1.39738,-0.279986,1.83633,1.95773,1.52815,1 +-0.0823959,-0.950053,0.311406,0.420023,0.292352,-0.12331,0.00483551,-0.119542,-0.224811,-0.964395,0.362311,-0.10137,-0.789741,-0.0617305,0.126654,1.38846,-0.151303,-0.0850121,2 +-0.568159,0.184493,0.12119,-0.177488,0.545894,0.528691,-0.295962,0.264505,-0.224811,0.757884,-0.497703,-0.406986,0.0398412,-0.0617305,-1.09327,0.828632,-0.47577,0.183849,3 +1.49633,1.48112,1.19908,1.58517,0.672665,0.746025,1.59906,-1.3997,1.7041,1.72236,1.25418,1.59083,0.777248,-0.328861,-0.686626,-0.962833,-0.313537,0.72157,2 +-0.932481,-1.43629,-0.259243,-0.685372,-0.468273,-0.340644,-1.01788,1.16061,-0.996375,-1.65331,-1.07105,-0.961621,-0.820467,-0.863122,-1.29659,1.38846,0.173164,-0.0850121,2 +-1.05392,-1.43629,-1.02011,-1.37251,-0.848585,-0.775311,-1.46907,1.9287,-1.38216,-1.37774,-1.54883,-1.28987,-1.3428,0.0718348,-1.09327,0.604699,-0.47577,-0.757164,3 diff --git a/data/synthetic-control.arff b/data/synthetic-control.arff new file mode 100755 index 0000000..ceffe0f --- /dev/null +++ b/data/synthetic-control.arff @@ -0,0 +1,663 @@ +@relation synthetic-control +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'f17' real +@attribute 'f18' real +@attribute 'f19' real +@attribute 'f20' real +@attribute 'f21' real +@attribute 'f22' real +@attribute 'f23' real +@attribute 'f24' real +@attribute 'f25' real +@attribute 'f26' real +@attribute 'f27' real +@attribute 'f28' real +@attribute 'f29' real +@attribute 'f30' real +@attribute 'f31' real +@attribute 'f32' real +@attribute 'f33' real +@attribute 'f34' real +@attribute 'f35' real +@attribute 'f36' real +@attribute 'f37' real +@attribute 'f38' real +@attribute 'f39' real +@attribute 'f40' real +@attribute 'f41' real +@attribute 'f42' real +@attribute 'f43' real +@attribute 'f44' real +@attribute 'f45' real +@attribute 'f46' real +@attribute 'f47' real +@attribute 'f48' real +@attribute 'f49' real +@attribute 'f50' real +@attribute 'f51' real +@attribute 'f52' real +@attribute 'f53' real +@attribute 'f54' real +@attribute 'f55' real +@attribute 'f56' real +@attribute 'f57' real +@attribute 'f58' real +@attribute 'f59' real +@attribute 'f60' real +@attribute 'clase' {0,1,2,3,4,5} +@data +-0.354718,0.853862,-0.106328,-0.161895,-0.519427,0.567155,-1.19272,-0.292796,1.27533,-0.209334,0.833253,0.0406526,1.12611,0.319876,0.629801,0.286788,0.501908,-0.650901,-0.414388,-0.550676,-0.588774,0.013947,0.193337,-0.0240474,0.392439,-0.552646,-0.176529,-0.706586,-0.48447,0.464188,-0.524925,-0.349847,0.522026,-0.165519,-0.070262,-0.171701,-0.299857,0.297315,0.131332,-0.205989,0.470069,-0.293316,-0.0996231,0.134151,0.0703624,0.268327,-0.1713,-0.0862628,0.390889,-0.00975323,0.119428,-0.350598,0.286088,-0.305305,0.335356,0.314517,0.145931,0.220444,-0.291262,-0.27797,0 +-1.46726,-1.24398,-0.82668,0.1013,-0.710272,0.0886561,0.301982,1.37658,-0.0964741,0.571,-0.108223,0.410666,-0.435176,0.144367,-0.550905,-1.14698,-0.579257,0.760592,0.788131,0.235304,0.157694,-0.69356,0.779702,0.0941819,0.267598,0.409854,-0.561595,0.00024258,0.340576,-0.569895,0.418232,0.230434,-0.178731,-0.376973,-0.265895,0.123753,0.285951,-0.466537,-0.067547,-0.306137,0.503869,-0.270385,-0.421451,-0.329436,0.205116,-0.147341,-0.295877,0.0369922,-0.0850868,-0.034213,0.199009,0.100215,-0.205593,-0.0764158,0.249353,-0.253534,-0.118274,0.278052,0.134039,-0.224873,0 +0.394101,-0.0677069,-1.04648,-1.35834,-0.713497,-0.583384,-1.2971,0.707473,-0.609319,-0.176548,0.650794,-0.326884,-0.29429,-0.747854,-1.21311,0.661455,0.0801452,0.285241,0.108423,0.656293,-0.414664,0.317951,0.763093,0.328219,-0.64973,0.0234251,0.0898798,-0.43681,0.106716,-0.171054,-0.287312,-0.581794,-0.30655,-0.456002,0.147857,-0.474483,-0.190745,-0.461672,-0.205692,0.439538,0.234873,0.081663,-0.304768,-0.16616,0.0993814,-0.236422,-0.060449,0.429332,0.291991,-0.193777,0.27503,-0.208274,-0.281969,0.201394,-0.295441,-0.0170337,0.0719918,0.255062,-0.0297861,-0.0530006,0 +-1.21502,-0.0930575,0.670721,-1.13373,-0.693584,-1.3074,-0.521343,0.0603273,0.562195,-0.174281,0.141692,-0.00166735,0.0166653,-0.0622553,-0.0877427,-1.1785,-1.12233,0.67831,-0.770492,0.341209,0.546014,-0.572528,0.802746,0.235409,-0.0567641,0.470206,-0.452148,0.20327,-0.549558,-0.595673,-0.261239,-0.180606,0.208615,-0.300448,0.530884,0.43963,-0.453826,-0.178361,-0.121874,0.0185915,0.217807,-0.242329,0.0811358,-0.0665954,0.318519,-0.422906,0.384139,0.128728,0.29645,0.0909297,0.345622,-0.059779,-0.0909275,0.136191,0.314034,0.152748,0.0477016,-0.339605,-0.169434,-0.314574,0 +-0.812849,-0.400055,0.341825,-1.12978,-1.30076,-0.496053,1.36042,1.24704,-0.734217,1.0136,-0.0337026,-0.690422,1.01459,0.788333,-1.01936,-0.295205,0.345603,0.0629076,0.161084,-0.52763,-0.15711,0.342513,0.887079,0.407364,-0.61668,0.358612,-0.346226,0.250308,0.585023,-0.25991,0.319008,0.309672,-0.31023,-0.00130514,-0.0256884,0.0661105,-0.442222,0.353539,0.319764,0.28606,0.124428,-0.16327,0.375863,0.369655,0.28062,-0.335024,-0.0946115,-0.42739,0.158793,0.360208,-0.143258,-0.113194,0.422951,-0.134346,0.362713,-0.0163969,0.260873,0.204049,0.0702753,0.0555471,0 +-1.29149,-0.269429,-0.727084,0.385232,0.374404,-0.77814,0.0874675,-0.754251,0.31067,-0.311882,0.352942,-0.215651,-0.0564016,0.324161,-0.30551,-0.87128,0.39428,0.492939,-0.165267,0.766994,0.343443,-0.367968,0.450231,-0.242597,0.7171,0.317126,-0.0353216,0.0107096,-0.351641,-0.319992,-0.607615,0.437447,-0.0245804,-0.272928,0.53635,0.200334,-0.219704,-0.274114,-0.347836,0.469485,-0.140229,-0.320198,0.0869058,0.038688,0.366337,-0.17932,0.377038,0.243661,-0.123691,0.092609,-0.19818,0.436158,-0.200635,-0.297363,-0.176505,-0.334137,0.21154,-0.391396,0.202392,0.345422,0 +-0.378262,-0.409603,-0.18417,0.409476,-0.0627202,-0.602263,1.38828,0.808556,0.0568136,-0.695214,1.19121,0.887427,-0.137368,-0.80379,0.441807,0.0710653,0.367506,-0.956416,-0.182138,-0.322001,-0.652137,-0.544663,-0.308788,-0.20908,-0.0297899,0.120797,-0.46899,-0.314252,0.384048,-0.566208,-0.585713,0.504772,0.302093,0.185669,-0.480036,-0.0570046,-0.42723,-0.129385,0.399752,0.160454,0.0868142,0.448537,0.0829632,-0.359111,0.201194,0.160501,-0.457604,0.285152,-0.0968707,-0.416851,0.00576854,-0.387089,0.101395,0.32254,-0.304976,-0.288784,0.357051,-0.320252,-0.0219471,-0.239604,0 +0.265536,0.818698,0.698604,0.453961,-0.199141,0.89994,1.38423,-0.697709,0.0802777,0.665408,0.147591,-0.552371,0.344662,0.311898,0.0210091,-1.20287,-0.734402,-0.849094,0.0408771,0.231302,0.370312,0.634387,0.24666,0.357687,-0.106974,-0.264359,0.397981,0.405882,0.476748,-0.109893,0.470033,0.215361,-0.00991756,-0.478403,-0.0574418,-0.161989,-0.10596,0.0118629,0.304154,-0.252871,-0.18491,0.238965,0.229483,-0.204674,-0.426762,-0.315632,-0.462771,-0.266897,0.344068,0.050728,0.40259,0.107488,-0.371723,0.010375,0.403104,0.382894,-0.255422,0.207786,0.0828896,0.282707,0 +1.49697,0.896434,0.734955,-0.629394,-1.11825,-0.341573,0.4134,1.45437,0.0935327,-0.637577,0.28425,0.0955841,-0.302756,0.681376,-0.597279,-0.986324,0.20792,0.630773,0.522884,-0.709479,0.610593,-0.3751,-0.634151,0.087038,-0.150928,-0.128047,0.225252,-0.687729,0.127488,-0.0668947,0.603325,0.533762,-0.284708,-0.545761,-0.413995,-0.0432246,-0.458112,0.119388,-0.345937,0.180488,-0.0875483,0.221743,-0.430075,-0.0727588,-0.206458,-0.320382,0.10936,0.339642,-0.386117,0.153276,0.21252,0.27629,-0.376099,-0.281554,0.355437,-0.126233,-0.241354,-0.0718715,0.0146073,0.144037,0 +-0.242517,0.1433,0.246968,0.579681,-0.0306256,0.868055,-0.401014,1.11153,0.873301,1.26222,0.279057,-0.140939,0.109261,-1.08748,-0.803018,-0.549235,0.420442,0.502613,0.533547,-0.848085,-0.532965,0.517445,-0.259814,0.724645,0.193577,-0.345744,-0.721578,-0.529143,0.0174804,0.230898,-0.59842,-0.0574016,-0.245629,-0.323892,-0.495,0.355465,-0.181572,-0.452225,0.262318,-0.359146,0.454014,0.466785,0.310154,-0.255767,0.119376,0.359761,-0.154789,0.40084,0.121804,0.276739,0.420758,-0.283843,0.0650383,0.252944,0.203668,-0.411064,0.169621,-0.052552,0.349006,-0.277873,0 +1.49941,1.14664,-0.154479,-0.337181,-1.39582,-0.908529,-1.09942,0.860689,-0.689676,-0.352826,0.923529,-0.0848434,-0.5714,0.98373,-0.0983998,0.0815487,-1.17247,0.360159,0.50145,0.62873,0.247039,-0.64306,0.334317,0.604752,-0.352162,0.433477,-0.449711,0.554497,-0.00374064,-0.0928612,0.249943,0.27404,-0.101327,-0.368591,-0.15583,0.171385,-0.118555,0.102443,0.312549,-0.429139,-0.206826,0.164331,-0.447237,0.0443454,-0.198486,-0.330543,-0.376809,-0.440096,-0.0478271,-0.261082,0.0566071,-0.33175,0.0205182,-0.0992743,0.108138,-0.254609,0.255478,-0.121847,0.0182095,-0.0485742,0 +-0.946821,-1.63942,-0.356944,-0.39135,-0.0385027,0.568855,-0.860113,-0.0896626,-0.452441,1.26581,0.99676,-0.737566,0.580759,-0.890784,0.370003,-0.866252,0.501593,0.177222,-0.159106,0.926825,-0.175913,-0.0446482,-0.0285444,0.0276114,-0.49698,-0.0852559,0.615067,-0.588898,-0.0639949,-0.394267,-0.229965,0.430056,-0.575496,0.13172,0.388418,-0.445148,0.203309,0.21854,0.479651,0.339302,-0.17058,-0.360583,-0.0186646,0.0593246,0.375566,0.127774,0.343171,-0.116983,0.0918178,-0.00650194,0.192795,-0.0967024,0.159825,0.400274,-0.38379,0.0306405,-0.0873425,0.361431,-0.335887,0.241515,0 +1.20397,0.472665,-1.45617,-0.911255,-1.0787,0.632272,0.156223,-0.0898132,-0.303722,-0.553509,1.31408,0.730721,0.330162,0.0893949,-0.54322,-0.650837,0.214067,0.409525,-0.257196,0.936324,-0.15672,0.262743,-0.178553,-0.639696,0.369287,0.403837,0.2608,-0.220338,-0.421114,-0.11932,-0.0032136,0.188899,-0.478691,0.0482732,0.348461,-0.354427,0.474411,0.521403,0.269146,-0.0362954,0.0294949,0.152392,0.0485844,0.0677954,-0.372411,0.30332,-0.42811,-0.348126,0.0175106,-0.164601,0.201323,0.0334324,0.407795,0.289131,-0.378544,-0.29234,0.0368524,-0.162025,0.14889,0.168521,0 +0.0354688,-0.651949,-1.023,-1.00582,0.680218,0.504466,0.535815,1.45609,0.720521,0.12366,0.675946,-0.101246,-0.605647,-0.175223,0.510973,-0.237862,0.10059,-0.257244,0.366949,-0.604088,-0.113046,0.187805,-0.258005,-0.616833,-0.463942,0.568226,0.373188,0.561537,0.138427,-0.401694,0.448318,-0.566507,-0.318877,-0.556517,-0.118379,-0.498036,0.199607,0.437271,-0.0209682,0.186144,0.263889,-0.181323,-0.452921,0.0250887,0.0952402,0.391042,-0.00535902,-0.304993,-0.241238,-0.0078882,0.185802,0.189689,0.321628,-0.202205,-0.21459,-0.064363,0.264217,0.0410876,0.343879,0.235825,0 +-1.707,0.502874,0.684348,-0.627272,-0.547748,0.292266,-0.0673983,-1.03866,-0.757963,0.997715,0.389646,0.886264,0.014782,0.477723,0.399759,-0.315419,-0.175935,-0.844645,-0.386746,-0.832591,0.780739,-0.246785,0.222884,-0.580759,0.614092,-0.110341,-0.0416257,-0.59865,0.524934,-0.330917,-0.629017,-0.213174,-0.370369,-0.0665008,-0.0183347,-0.00230632,-0.464278,0.107949,-0.131602,-0.312479,-0.114929,0.359646,-0.169127,0.176459,-0.151441,0.231685,-0.421305,0.175057,-0.277854,-0.337784,0.0883644,-0.219543,0.185499,0.38898,-0.184853,0.298491,-0.297592,0.126342,0.246644,-0.269902,0 +-0.52259,-0.0273479,0.38145,-0.943044,-0.772758,-0.686768,0.563136,0.988935,-0.455148,0.745818,1.09004,0.234987,-0.0090617,0.44789,0.821137,-0.601293,0.291938,-0.355743,-0.282448,-0.67167,0.138065,0.373559,0.0834734,-0.174583,0.267022,-0.0190872,0.55889,0.426355,0.188422,0.410914,0.200519,-0.159571,-0.551614,0.301155,0.0387932,-0.153403,0.46539,0.310411,0.269945,-0.118198,0.446105,-0.381639,-0.0551352,-0.0644566,0.254349,0.0170348,-0.216006,-0.28593,-0.321262,-0.192862,0.0228185,0.17842,0.401494,0.340059,-0.398355,0.293038,0.329391,0.268326,-0.335489,0.226803,0 +-1.13958,-0.622991,-0.776492,-1.05294,0.746276,-0.977621,0.0311081,0.911553,-0.257132,0.503007,0.0296724,0.910173,-0.114475,0.0664266,0.311495,-0.447804,-0.81509,0.552321,0.835779,0.194942,-0.712151,-0.322067,0.0733541,-0.033222,-0.248184,-0.297036,0.443482,0.409991,0.130459,0.382182,-0.163391,0.323277,0.291167,0.389693,0.365932,0.114332,-0.260479,-0.401774,0.0635362,0.191632,0.459779,0.464078,-0.255109,0.0722723,0.290606,0.374904,-0.00962391,0.358653,-0.363565,0.0557157,-0.00298649,-0.0184486,-0.328657,0.372428,0.120046,0.16364,-0.357338,0.200484,0.0573983,0.293278,0 +1.56211,-0.966378,0.543243,0.649607,-1.01413,-0.17974,-1.35056,0.0437454,0.965484,0.13223,0.195652,-0.104962,-0.595371,0.0567606,0.474816,0.219201,-0.583034,0.770545,-0.932077,0.604718,0.0683033,-0.708126,-0.674003,-0.27565,0.307418,0.496196,0.0714365,0.530182,-0.430124,0.111006,-0.0691404,-0.134821,-0.50775,0.177463,0.462335,0.264102,0.183684,0.411913,0.164765,-0.404024,0.312886,-0.212942,0.03699,-0.120218,0.272004,-0.158911,-0.285435,0.271207,-0.399458,-0.271372,0.169481,0.443425,0.379019,0.393421,0.0972881,-0.138485,0.0131887,0.0218407,-0.222294,0.0817492,0 +-0.835764,0.145945,-0.208017,-0.622174,-0.926545,0.294784,-1.35498,0.350177,1.31096,1.10222,1.16514,0.119418,-0.338686,-0.0533314,-0.348262,-0.436192,0.809217,0.424843,-0.165438,-0.42093,-0.210877,-0.56676,-0.384331,0.0741447,-0.169322,0.0543828,-0.657679,-0.0625248,-0.402798,-0.346765,0.222881,0.0420543,-0.324264,0.392641,0.311436,-0.0207002,0.204672,0.319308,-0.276097,-0.385779,-0.108986,0.375467,-0.410339,-0.100824,0.0397232,0.3967,0.231952,-0.295329,0.064595,0.160836,-0.196673,-0.35057,0.00640746,-0.271747,0.0852043,0.0946064,-0.100592,-0.130457,0.32672,-0.199312,0 +-0.150084,-0.669002,-0.466456,-0.126957,0.14104,0.807177,0.692669,-1.00074,0.798603,-0.108366,0.0613246,-0.772435,0.526909,0.270692,-0.909062,-0.756167,0.084834,-0.275415,0.558395,0.435389,0.795847,-0.262811,-0.432721,0.483868,0.347202,0.159123,-0.505167,0.250274,-0.56634,-0.292643,0.0721998,0.357956,0.42666,0.462615,-0.251932,0.384993,0.323271,0.181768,0.438413,-0.435354,0.208472,0.0163404,-0.366418,0.0268059,-0.0997318,-0.150217,0.257101,0.383127,0.23514,-0.0881059,0.320617,-0.253524,0.320209,-0.200468,0.0187167,0.25477,-0.0694232,0.219783,-0.017095,-0.161043,0 +-1.20913,0.721192,-1.24937,-1.33447,-0.874611,-1.28307,-1.20642,0.208016,-0.567881,0.271479,0.15077,-0.84878,0.977928,0.11869,-0.92707,0.0271649,-0.628299,0.0443488,0.254673,-0.513101,-0.434683,0.0456402,0.169455,0.440613,0.457172,0.0861554,-0.197204,-0.58996,0.585473,0.260248,-0.16434,-0.490186,0.163387,0.158085,-0.00652463,-0.123321,-0.18064,0.39481,-0.130535,0.408296,0.36729,-0.32397,-0.204284,-0.106481,0.299418,0.0936085,-0.124632,0.0245794,0.230249,-0.180893,0.400615,-0.0705318,-0.167505,-0.326778,0.274782,0.381289,0.125539,0.210229,0.133404,-0.211477,0 +0.985374,-0.0328077,0.762704,0.550099,-0.708587,-1.58691,-0.38037,-0.99072,1.02907,-0.547704,0.184365,0.285095,0.44384,0.567518,-0.531015,-1.12404,0.473792,0.185145,-0.679588,0.496758,0.682397,0.6948,0.540919,-0.0877922,-0.432821,0.0579441,0.554737,-0.150969,0.55214,0.190969,-0.614579,-0.0266225,-0.284775,-0.385521,0.261794,0.38567,-0.107637,-0.0417703,-0.140207,0.326656,0.165159,0.0779839,-0.175068,-0.358237,0.3164,-0.467341,-0.43524,0.0648603,-0.14253,0.0249392,-0.40363,0.330855,0.43925,-0.305555,-0.385968,0.350888,-0.171339,-0.280682,-0.106305,0.240964,0 +0.480469,0.104264,0.465097,0.244421,0.53942,-0.466288,-0.596358,-1.03029,0.40526,1.24607,0.280099,-0.610606,0.262946,-1.1447,-0.8862,-0.219957,-0.947902,0.349848,0.435907,-0.449629,0.746992,-0.64938,0.499657,0.167847,-0.375661,-0.411868,-0.287784,-0.31768,-0.705614,-0.632177,0.471482,-0.509548,-0.317752,-0.357317,-0.067985,0.254259,-0.326512,-0.403457,0.248971,0.266409,-0.32378,0.453966,0.412754,-0.311283,0.0741402,-0.417226,-0.183756,0.0874203,0.211002,-0.0852976,0.116463,0.425378,0.404873,0.378632,0.0209487,0.260295,-0.356125,0.211834,-0.281468,-0.0753919,0 +0.640874,-0.861104,-0.228914,-0.837804,0.359474,-0.17528,0.619201,0.374975,0.504832,0.897743,-0.425593,0.181594,1.05057,-0.539506,0.00919135,0.205896,-0.162978,-0.684995,0.0153457,0.2484,0.211355,0.49247,0.0855212,-0.239894,-0.559424,0.414532,0.240343,0.208025,0.119552,0.364061,0.187697,0.431592,0.288898,0.347305,0.256035,0.125168,0.473073,-0.37305,0.0946022,-0.283906,0.279943,-0.32614,-0.311448,0.368505,-0.136572,-0.345904,0.348894,-0.335493,-0.185645,0.293032,0.251688,0.313729,0.431294,0.395759,-0.346426,-0.018911,0.28238,-0.242353,-0.384331,-0.14429,0 +0.055094,0.636049,0.513896,0.621907,0.128858,-0.0650067,-1.42582,0.206188,0.865781,0.935526,0.18728,-0.713844,-0.512046,0.157725,0.158496,0.426835,-0.770737,-0.799325,-0.203851,0.138275,0.848292,-0.196272,-0.214403,0.342188,0.487669,0.209919,0.360877,-0.182878,0.491524,-0.0155483,-0.19279,-0.44905,0.397525,-0.0352106,0.104781,0.133367,0.522682,-0.189616,-0.0713444,-0.0131456,0.409835,0.426174,0.213946,0.0411641,0.165467,0.0359186,0.0863614,-0.358515,0.344046,-0.181679,-0.247066,0.244868,-0.0217448,0.331624,0.146392,0.256349,-0.0138913,0.273807,0.325752,0.0522873,0 +1.19913,-1.2613,-1.50181,-0.103517,-0.675558,-1.22866,-0.513782,-0.0532512,-0.511966,0.627624,1.22871,-0.589042,0.138462,-0.696555,0.0934107,-0.341294,0.270581,-0.411032,-0.0107599,0.790726,-0.137361,-0.668985,-0.386725,-0.541003,0.505968,0.201311,0.242735,-0.735783,0.588169,0.497958,-0.0608318,-0.361021,-0.195711,-0.276181,-0.0208066,0.000119248,-0.327571,-0.0985775,0.0354354,0.0677828,0.239123,-0.19289,-0.337405,-0.0581476,-0.0746799,0.201413,0.364424,-0.250495,-0.41296,-0.358778,0.420553,0.0283907,-0.257307,-0.20161,-0.259365,0.125956,-0.272352,0.150323,0.0204721,-0.296175,0 +0.874431,0.479279,-1.04439,-1.1081,-1.20255,-1.406,0.165158,0.433818,-0.734555,-0.203478,-0.482415,1.12787,-0.406633,0.282882,0.543577,-0.486301,0.361061,-0.876646,-0.154605,-0.696087,-0.209285,0.760017,0.789755,-0.2951,-0.424026,-0.547488,0.133791,-0.489952,0.0516906,0.51942,-0.000117424,-0.260991,0.336262,-0.0403302,0.25942,0.409267,0.379571,0.114314,-0.0531249,0.406099,-0.191986,-0.250356,-0.339637,-0.401955,-0.0056262,-0.284241,0.37916,-0.423724,-0.138078,-0.332196,0.0680658,0.4086,-0.0389574,0.271511,0.10863,0.233722,-0.405121,-0.155766,0.281737,-0.397224,0 +-1.11521,-0.811461,-0.774265,0.0973993,0.0920006,0.507072,-0.26851,0.495651,-0.0355012,0.909541,-0.130743,0.285714,0.359437,-0.90366,-0.616976,-0.724187,0.755436,-0.59983,0.675747,0.524367,0.0212051,-0.463722,0.178883,-0.388497,-0.680215,0.284662,0.044092,0.423296,0.203603,0.476956,0.54824,-0.417765,-0.451977,-0.0420952,0.45554,0.34585,-0.0115266,0.220131,-0.0246444,-0.317464,-0.0617465,0.058328,0.358017,0.313073,-0.0159907,-0.246553,0.370731,-0.220076,-0.119956,0.393379,-0.258347,-0.338688,0.44456,0.411514,-0.0309535,-0.380133,0.323673,-0.0415915,0.0312724,-0.204886,0 +1.18183,-0.51418,0.140958,-0.6992,-0.0883482,-1.10516,0.0784343,-0.705774,0.84775,0.597981,0.612642,1.1467,0.789244,0.221695,-0.838471,-0.604868,0.144579,-0.566681,-0.169427,0.272942,-0.0754844,0.0725836,0.425963,0.0743649,-0.30411,0.276333,-0.611422,-0.395195,-0.683516,0.253251,0.135447,-0.518728,0.0686499,0.101918,0.359394,0.410137,0.386229,0.502193,0.256889,-0.0681523,0.181448,-0.00576565,0.23939,-0.378674,0.00333011,0.172368,-0.184232,-0.0107672,0.036568,-0.253186,0.21567,0.0712274,0.342808,0.314693,0.114079,0.340851,-0.264576,0.321333,-0.343136,-0.166137,0 +-1.13526,-1.02425,-1.19219,-0.347857,-0.22127,0.627569,0.525358,0.997947,-0.551524,-0.00980244,-0.298278,0.0121265,0.863445,-0.151513,-0.503564,-0.238546,-0.57586,-0.24284,0.55571,-0.52397,-0.696156,0.220669,0.34808,0.513336,0.00880803,-0.652597,-0.183463,-0.377735,-0.467195,-0.00946252,0.271648,-0.258424,-0.282182,-0.10328,0.265861,0.440896,0.477672,0.277705,0.069911,0.273096,0.224494,0.190552,-0.383728,-0.252133,0.0785616,-0.235165,0.0445135,-0.0203279,-0.337205,-0.249091,-0.0196755,-0.069688,0.213014,-0.175548,0.24814,0.336201,-0.370661,0.241387,0.175016,0.0514772,0 +-0.906683,1.08457,-0.929834,-1.37097,-0.868089,0.536087,-0.508014,0.99999,0.282712,0.210751,-0.165381,-0.89125,0.931063,-0.517911,0.445746,-1.13422,-0.105238,0.717148,0.0839157,-0.509332,0.853984,0.0397752,-0.27105,-0.559645,-0.0549187,0.0554433,-0.0018331,-0.689506,-0.166231,0.553316,0.124491,-0.446269,0.355443,0.450943,0.0964527,0.404679,-0.397398,0.21964,-0.292151,0.366757,-0.0272253,-0.0438174,0.177196,0.0637708,-0.382949,-0.123947,0.292981,-0.313981,0.396313,0.400853,-0.301853,-0.0209032,0.224736,0.0275763,0.0879758,0.0594825,0.189743,-0.287476,-0.376466,0.317769,0 +-0.20155,-1.10674,-0.781744,-0.690474,0.723597,0.0881703,-0.222166,1.47822,0.9072,0.0308149,0.558875,0.984885,0.211913,0.174552,-0.396359,-1.06891,0.0634112,-0.911825,-0.443179,-0.825958,0.34074,-0.394058,0.666408,0.123956,0.0479692,0.0548293,-0.637348,-0.355312,0.242768,-0.487041,-0.429944,-0.573508,-0.563875,-0.570471,-0.0754981,0.287241,-0.239397,0.177611,-0.107218,-0.36918,-0.136513,0.467329,-0.0233537,0.259811,-0.266124,-0.216659,0.0792821,0.23031,0.358162,-0.134289,-0.204288,-0.0686141,0.409907,0.386898,-0.27095,0.100059,-0.161842,0.155968,0.0604621,0.157718,0 +1.45947,-1.3868,0.0990113,-0.434825,-1.23377,0.766216,0.740806,-0.717925,0.781757,1.28908,0.410011,0.281923,0.770905,0.196018,0.573878,0.483544,-0.790503,-0.713524,0.00246366,0.199629,-0.0895418,-0.522276,-0.377443,0.698271,0.325512,0.521449,-0.441096,-0.158632,-0.419053,0.576088,-0.263074,0.102125,-0.0611327,0.403296,-0.397108,-0.517115,0.114508,-0.266408,0.0363242,-0.124381,-0.447842,-0.4553,-0.374591,-0.0888342,-0.127502,-0.241702,0.387798,-0.238918,0.330325,-0.0889205,0.42572,-0.259821,0.120567,-0.178603,0.368512,0.147024,-0.188461,-0.292758,0.368306,-0.184627,0 +-0.528684,-0.595091,0.0625265,0.286082,0.73261,0.626752,0.542295,-0.883314,0.344362,-0.198686,1.31258,-0.0897417,-0.433695,-0.0166897,0.74914,-0.322072,-1.07081,0.404563,-0.0496234,-0.0524972,-0.481556,0.039018,0.32816,0.316353,0.731228,-0.0604496,-0.0184686,0.307779,0.0875998,-0.450003,-0.405978,-0.32713,0.348512,0.143521,-0.00720683,-0.120711,0.174536,0.208901,0.0573311,0.273096,0.421784,-0.252013,0.353584,-0.0607923,-0.263542,0.204667,0.0518598,0.398421,-0.414546,0.39385,-0.166076,-0.295056,0.104497,-0.121761,0.389436,-0.330435,-0.34697,-0.0924587,-0.190547,-0.100408,0 +-1.26775,1.08332,-0.711706,-1.39723,0.356433,-0.0643442,0.613432,0.186057,-0.439468,0.444099,0.0338762,0.747875,0.683082,-0.772788,-0.67005,0.658188,-1.14102,-0.411079,-0.00453612,-0.918315,0.080213,0.0817391,0.0886993,0.695494,-0.673097,-0.259983,-0.461976,0.592638,-0.0947523,0.0584233,0.302162,-0.605717,0.359715,0.252085,0.296897,0.442733,0.0386756,0.321241,0.256865,0.0106113,0.315444,-0.426396,0.350443,-0.0539007,-0.214604,-0.314913,-0.209352,-0.210354,-0.0762269,-0.215507,0.365737,-0.186532,0.195878,0.415218,0.0680699,0.288846,0.354631,-0.260075,-0.128239,-0.0226313,0 +0.860042,-0.179596,0.537229,-1.01762,-0.97181,-0.809451,0.0660873,-1.08542,-0.447609,1.06576,-0.698805,0.923404,-0.448524,-1.13551,-0.140958,0.704346,-0.276935,-0.891328,0.0119312,-0.603574,0.441725,0.788792,0.444965,-0.67226,0.519521,0.590163,-0.376682,0.626797,-0.0691028,-0.586895,-0.427797,0.0201248,0.0405349,0.00286258,0.391829,0.191133,-0.177312,0.247239,0.0710098,0.428035,-0.419272,-0.216567,-0.00481508,-0.305426,0.380184,0.330128,-0.129322,0.332185,-0.0330388,0.184924,0.262969,-0.0295849,0.196667,-0.235662,0.171429,-0.160919,-0.248207,0.225726,0.041842,-0.010564,0 +-1.21522,-0.0234515,-0.897746,-0.0713514,-0.255324,0.739785,-1.21391,-0.0974697,0.732535,0.441643,-0.00535344,1.22541,-0.13543,-0.465518,-0.465912,-0.453397,-0.0630216,-0.199629,-0.0691793,0.303992,0.0857248,0.569665,-0.464169,-0.666474,0.342313,-0.295808,-0.174092,0.350108,-0.561188,0.376254,0.294353,0.324678,-0.55375,0.105448,0.53076,-0.524374,-0.0955414,0.275472,-0.0754973,-0.119748,0.00732009,0.265816,-0.074498,-0.368793,0.118899,-0.15358,0.374043,-0.135584,0.0229859,0.263227,0.0729777,-0.172425,0.277952,0.367514,0.404588,-0.35616,0.0838369,0.289006,-0.273918,0.174827,0 +1.41481,-0.721387,-0.614774,-0.543641,0.270866,-0.0349984,-0.113816,0.0973623,1.04861,-0.273103,0.649363,0.759792,-0.406688,0.335683,-1.17415,-1.17114,-1.08809,-0.047608,-0.879245,-0.471648,0.514084,0.162831,-0.485405,-0.150595,0.10447,0.215211,0.606623,0.458598,0.381439,0.562314,-0.625984,-0.469161,0.512016,-0.157516,-0.151205,-0.462769,0.0393278,-0.217857,0.199984,0.0384182,0.159152,-0.19849,-0.248546,0.424214,-0.174547,-0.407966,-0.403863,0.409323,-0.427726,0.368869,0.117369,-0.132119,0.146372,0.136813,0.0148326,-0.160116,-0.37812,-0.0470717,-0.357167,0.259694,0 +-0.802893,-1.37295,0.491247,-0.282773,0.0490063,-1.50662,0.718885,0.446679,1.33721,0.958866,-0.314174,-0.278014,0.211456,0.604865,0.388082,-0.112574,-0.726566,-0.894584,-0.317788,0.755455,-0.848925,0.144134,0.768266,0.75815,-0.481365,-0.0101114,0.343989,-0.632209,0.0495532,0.0889253,-0.145054,0.097447,-0.140148,-0.500119,-0.0990208,-0.222558,-0.00934975,-0.243216,-0.398398,-0.430281,-0.143556,0.343109,0.0751636,0.103296,-0.0220776,0.0701127,-0.445603,-0.345296,-0.228168,-0.189503,-0.0415596,-0.0590329,-0.0304619,-0.190985,0.0200316,0.283585,0.182772,0.316599,0.251445,-0.164354,0 +-0.0151676,-0.459583,-0.282509,0.419211,-0.983113,-1.16339,-1.42825,-0.336929,1.03197,0.994177,1.09762,0.178892,-0.267374,-0.375463,-0.956069,0.810925,-0.791414,-0.286051,-0.642603,0.075598,-0.570016,0.31506,0.289784,0.373321,0.442696,0.480991,-0.389874,0.235906,-0.0875069,-0.606629,-0.279462,-0.288532,-0.413614,-0.562931,-0.25948,0.11152,-0.267857,-0.426558,0.53864,-0.323503,-0.226119,0.101062,-0.283096,-0.15828,-0.139017,0.199735,0.237624,-0.0102833,0.0652383,0.24134,0.155892,0.258724,-0.194155,0.040114,-0.367822,0.230405,0.0497593,-0.30908,-0.202668,-0.0965,0 +1.28098,0.000479994,-0.158666,0.533383,0.668164,-0.363323,0.244764,1.07526,0.274496,0.965805,-0.114335,-0.85319,-0.531319,-0.787371,-0.449645,-1.11018,-0.947057,0.546847,-0.0904891,0.814115,0.185388,-0.323333,-0.445859,0.750028,-0.257555,0.311801,0.0714365,-0.464102,-0.232897,0.0938169,0.454792,0.534267,-0.570911,-0.0673141,0.49354,0.440729,-0.172424,0.256536,0.474553,0.317686,0.142142,0.444593,0.165687,0.364841,-0.105433,-0.318196,0.260969,-0.218404,0.415392,0.293503,0.219541,0.20943,-0.299819,-0.195825,0.137228,-0.0444827,0.15029,-0.0283266,0.336296,-0.291249,0 +0.731219,0.907113,0.380327,-0.0117249,-0.279597,-1.25664,-0.395417,0.135752,0.721348,0.712328,1.10475,0.991078,0.513214,-0.363329,0.443038,-0.579745,-0.622218,-0.97361,-0.135514,0.478912,0.664255,-0.163518,0.846788,0.706185,-0.471899,-0.58856,-0.13573,0.180767,-0.258931,-0.281215,0.0429581,-0.0265836,-0.328468,-0.17512,-0.458073,0.382612,0.04452,-0.0755431,0.200784,0.0596908,0.106204,-0.321108,-0.203024,0.0248127,-0.0642851,-0.156166,0.317495,-0.0516127,0.00704252,-0.294281,-0.136032,-0.00108519,-0.310295,-0.0661896,-0.123665,-0.100097,0.154188,0.382626,-0.36364,-0.237394,0 +0.438643,-0.82392,-0.0492119,0.258947,-0.212935,-0.610875,0.926478,-0.914349,0.735224,0.331967,-0.0739744,0.527004,0.0572215,0.502936,-0.292584,-0.0699222,0.731893,0.115731,-0.662267,-0.579266,0.542379,0.614259,0.59512,0.0585113,0.292726,-0.111904,0.373988,-0.13749,0.382404,-0.514044,-0.305034,0.390388,-0.017821,0.30536,-0.266639,-0.244802,-0.134572,-0.324957,0.202626,0.487083,-0.220379,-0.357643,0.169256,-0.413523,-0.438913,-0.340841,0.173254,0.215338,0.41749,-0.19462,0.0249489,-0.361351,0.215174,-0.218906,0.0813944,-0.287418,-0.35501,-0.182876,-0.312139,-0.283537,0 +0.258269,-0.0516162,-0.940531,-0.332151,-0.461301,0.115904,-1.04741,0.821503,-0.12242,1.04603,-0.0388249,-0.0197964,0.945088,-0.704385,0.785174,0.180774,0.240593,0.445728,0.778788,-0.705648,0.537468,0.634029,0.254133,-0.428205,-0.561449,-0.0949685,0.110382,0.385837,-0.360772,-0.431924,0.261432,-0.323843,-0.543949,-0.345276,-0.129862,-0.217821,-0.0279839,-0.418477,0.52101,0.244554,-0.271634,0.0578691,0.391564,-0.140801,0.415017,-0.195611,0.358542,-0.415703,-0.295494,-0.327394,-0.327113,0.288479,-0.317135,-0.216973,0.341195,-0.0434612,0.0739506,0.00670732,-0.307267,-0.35655,0 +1.04891,0.79063,0.681627,-1.22477,-0.637822,0.919548,-0.615921,-0.00451636,-0.660121,0.657645,-0.622395,-0.106013,0.573445,-0.783679,0.597127,-1.21906,-0.794098,-0.604031,-0.26016,-0.307021,-0.729798,-0.0489988,0.0941114,-0.479863,-0.348376,0.331885,0.244542,-0.233944,-0.615567,-0.232561,0.0633908,0.103836,0.262042,-0.266006,0.425115,0.226796,0.212143,0.055116,-0.416876,-0.172965,-0.0763435,0.0298825,0.00246348,-0.0140687,0.232219,0.0884881,0.17031,0.106483,0.363666,-0.217264,0.212655,-0.0429038,-0.330588,0.349319,0.20555,0.0688555,-0.364679,-0.240775,-0.363384,-0.366123,0 +-0.727768,0.614955,0.251174,-0.677095,0.0677831,0.949954,-0.403444,1.03294,-0.341776,0.59118,0.795366,0.0444436,-1.05734,-1.09347,-0.540828,0.0125941,-1.03431,0.223689,-0.0734475,0.393313,-0.807068,0.935046,-0.358202,0.49303,0.584649,0.28388,0.253158,0.37507,0.504809,0.20247,0.211778,-0.268246,-0.484754,0.0118911,0.331512,-0.175444,0.260135,0.272598,-0.372164,0.26629,-0.28326,0.340223,0.388368,0.0509611,-0.426232,-0.37826,-0.33478,0.256023,0.0108803,0.417546,-0.121586,0.315417,0.352217,0.0975712,0.309253,0.132337,-0.213305,0.303123,0.054155,0.0200191,0 +0.80088,0.667244,-0.941863,-0.243182,-0.638481,-1.02156,-1.47081,0.87269,0.446416,1.19726,0.00119956,0.130097,0.765803,0.260934,-0.239246,-0.0615081,-0.843919,0.717598,-0.0529293,0.72034,-0.834192,-0.511455,0.524896,0.512933,-0.0627078,-0.0210967,-0.0236859,0.458598,0.52751,-0.238406,0.286045,0.255106,0.457044,-0.0572321,-0.395345,0.509989,0.517888,-0.0967698,-0.384299,0.490287,-0.0992955,-0.272011,-0.0826942,0.136735,-0.0471296,-0.0845017,-0.136452,-0.0670388,0.0579647,-0.237601,0.132861,-0.156289,-0.010272,0.119808,0.0490272,0.0484711,-0.319119,0.0624276,0.180785,0.255533,0 +0.900064,1.11343,0.617526,-0.384249,-0.484108,-1.4604,-0.158369,-0.244212,1.22991,0.243485,0.967969,0.166768,0.839071,0.216852,-0.577249,0.0853795,-0.440298,-0.0979975,-0.909852,-0.278945,-0.850187,0.923825,0.269412,-0.541541,0.465309,0.4595,0.300799,-0.467784,0.502671,-0.467663,0.483273,0.260037,0.0302099,-0.0690421,-0.365966,-0.457953,0.294845,-0.157342,-0.222926,-0.42691,-0.355298,0.333394,-0.0482221,0.412952,-0.186918,0.179304,0.159738,-0.135613,0.357007,-0.383945,-0.333873,0.13686,0.196515,0.225693,-0.199088,-0.321792,-0.38577,-0.306215,0.155505,0.325098,0 +-0.444318,1.08916,-1.18787,-0.659934,-1.1081,-0.267866,0.492097,1.16239,1.32967,0.207402,-0.537294,-0.61344,0.1854,0.494828,-0.0916116,-0.749498,-0.253756,-0.254406,-0.568911,-0.101097,0.0189373,-0.434659,0.00031111,0.442497,-0.0184777,-0.198849,-0.498989,0.253701,-0.497273,0.137506,-0.620625,-0.412164,-0.00837309,-0.543829,-0.0876626,-0.366177,-0.0129241,0.168947,-0.339562,0.000522216,0.0818514,-0.420826,0.0737095,-0.0771207,-0.168013,-0.135713,0.184836,-0.212751,0.127469,0.414501,-0.29278,-0.250344,0.0113857,0.35284,-0.156997,-0.0736432,0.074465,-0.317294,0.21216,0.370406,0 +-0.888288,-0.0451703,-0.179983,-0.446442,0.581864,0.842441,-0.278795,-0.479413,0.138976,0.0262122,-0.265071,0.346088,0.372273,-1.05689,-1.17048,-0.620516,-0.317461,0.41692,-0.697375,-0.539589,0.467046,-0.52631,0.195292,0.00433251,-0.187369,-0.464998,-0.522134,-0.213979,-0.715797,0.186706,-0.349746,0.144943,-0.202432,0.387753,0.0974273,0.0412924,0.216717,0.0502509,0.223455,-0.0939622,-0.45763,-0.418687,-0.314193,-0.426785,0.326189,0.340819,-0.0930744,0.237766,0.410889,0.374457,-0.3503,-0.110865,-0.334327,0.409683,-0.0865239,0.353813,0.0335548,0.206717,0.209737,0.0679515,0 +-1.68872,-1.05992,-0.397141,-1.27492,-0.192546,-0.254331,-0.08193,-0.396331,0.268141,-0.346575,0.191819,1.23655,-0.688369,0.926421,-0.380673,0.757225,-0.494394,-0.244034,0.251879,0.185162,-0.688647,0.44818,-0.558701,-0.547608,0.122912,-0.586428,-0.347404,0.462753,0.111101,-0.100277,-0.394875,-0.388163,0.049182,-0.393357,-0.222686,-0.226372,-0.443899,-0.175978,-0.393615,0.200019,0.0069072,0.131164,0.228651,-0.387459,0.409317,-0.215381,0.00460683,-0.0205112,0.218334,0.234044,-0.10867,-0.307783,0.382447,0.354557,-0.316709,-0.321374,0.115514,-0.135403,0.152377,-0.316525,0 +-1.44549,0.91719,0.188482,-0.560853,-1.22932,-0.350097,-1.09159,-1.04782,1.32623,-0.724359,-0.200018,1.16482,-0.249583,-1.21549,-0.151615,-0.177202,-0.357855,-0.764936,0.110642,0.88028,-0.251517,0.197567,0.745128,-0.223013,0.265752,-0.380386,-0.359749,-0.557578,-0.266023,-0.535475,0.441281,-0.336991,-0.0289278,0.0903108,-0.496631,0.203041,0.104768,-0.0465105,-0.063895,0.128709,0.0298511,-0.211713,-0.0859447,-0.128275,-0.101125,0.251658,-0.227321,0.0707038,0.0880824,0.0216807,0.257513,0.36128,0.285299,0.28315,0.0161947,0.33839,-0.000397476,-0.199192,-0.349635,-0.339869,0 +-1.40252,-1.19275,0.264801,-0.464664,-0.428932,-1.49032,1.26299,0.527718,0.387661,0.874231,-0.622518,-0.858914,0.953554,0.217279,-0.879939,-0.165265,-0.532468,-0.905856,-0.0991496,-0.217295,0.370026,-0.211237,0.345646,0.694234,-0.0291308,0.637431,-0.526883,-0.33866,0.264745,-0.0324647,-0.453609,-0.594115,0.502597,0.116685,-0.273275,0.166253,0.121632,0.0875142,0.217137,0.457223,-0.447486,0.141766,-0.457486,0.431251,-0.0421252,0.0414675,-0.194465,0.427469,-0.059209,-0.351296,-0.163068,0.0908152,0.241055,-0.111785,-0.384188,0.326404,-0.343172,0.289812,0.0579175,-0.115256,0 +0.393471,-0.441496,-0.194028,-1.06644,-0.35965,-1.44168,0.90468,-0.123386,0.488606,0.184955,0.631258,0.251539,0.189495,0.0428646,0.819273,0.366038,-0.323475,-0.150775,-0.92843,0.229652,0.216206,0.310819,0.380751,0.0950382,-0.659052,-0.263254,0.601749,0.382952,-0.670549,0.240094,-0.242443,0.332603,-0.0832605,-0.251276,0.136464,0.445413,0.306788,-0.0524753,0.435383,0.308795,-0.350424,0.340309,0.0766256,-0.0803864,-0.175879,-0.0575124,-0.229284,-0.116932,-0.328133,0.0747661,0.225465,-0.10226,-0.280266,0.316505,-0.0850607,-0.185038,0.129001,0.28309,0.297857,0.168521,0 +-1.14221,-1.04827,0.0508026,0.464329,-0.177891,-0.656186,1.0131,1.06926,0.214576,-0.527575,0.483507,0.716383,0.924206,0.743231,-0.0212852,0.549917,0.576001,0.3207,-0.681404,-0.135807,0.867651,-0.600738,-0.443665,-0.257913,0.675482,-0.187786,0.57397,-0.0671871,0.575652,-0.0203142,-0.115041,0.513271,0.429349,-0.175361,0.299306,0.146242,-0.122756,0.255403,-0.290931,0.126217,0.222268,0.348165,0.2453,0.176513,0.188377,-0.0451872,0.254366,-0.284156,-0.0760953,-0.354948,0.122181,-0.229299,-0.17132,-0.345912,-0.176235,0.191089,-0.0428048,-0.305389,0.135218,-0.0327479,0 +-1.09083,0.480073,-0.379098,0.521697,-1.14861,0.0891419,-0.125722,0.517609,-0.339914,0.240325,0.545186,-0.811846,-0.674216,0.79978,-0.746198,0.576168,-0.521036,0.0526591,0.821081,0.792563,0.323979,0.409451,-0.0310842,0.239592,0.00136646,-0.0256404,-0.236905,-0.532917,0.131226,-0.0310402,0.173529,-0.356557,0.0940287,0.36794,-0.165168,-0.254548,-0.141043,0.413287,0.00131532,-0.328552,0.114017,0.0270823,0.115375,-0.273391,-0.357564,0.227124,-0.140219,-0.409566,0.0435273,0.404583,0.306476,0.216215,0.269305,-0.295626,-0.315623,-0.130306,-0.365793,-0.167723,0.367274,-0.343057,0 +1.59101,-0.653994,0.162065,-0.673759,-0.210718,-1.32483,-0.188095,0.700204,0.347821,0.0950814,-0.47535,-0.785591,0.993104,0.423029,0.831091,-0.681809,-0.652157,0.00141698,-0.0598825,0.348357,-0.37925,-0.190104,0.230942,-0.0492958,0.167921,-0.244811,-0.720949,0.0932223,-0.0802614,-0.332027,0.554172,-0.303421,-0.0823167,0.328739,0.0922177,-0.32945,-0.0690977,0.171521,0.173314,-0.315794,-0.260785,0.333736,0.190874,-0.443926,0.224573,0.281611,0.014118,0.000105836,0.341655,0.0723795,0.126966,0.364996,-0.124972,-0.162591,0.104497,-0.36934,-0.128589,0.162247,-0.19031,-0.169209,0 +-0.819486,-1.22561,-0.605829,-0.14612,-0.0352053,-0.217367,0.34057,0.662287,0.45042,0.414456,1.18162,0.537326,-0.0943248,-0.510768,-0.667659,-0.657746,-0.0344247,0.0355112,0.228505,-0.118429,0.66828,0.373958,0.249931,0.0244676,0.219892,-0.241116,0.173161,0.24328,0.472287,-0.612244,0.269125,0.559659,0.492129,0.0119281,0.231662,-0.33322,0.12856,-0.00915553,-0.329681,-0.0398182,-0.0150976,0.285013,0.104776,-0.0519306,0.284012,-0.223138,-0.0191351,0.154924,0.383615,-0.0419804,0.272977,0.163644,-0.0239535,-0.359065,-0.398699,0.293642,-0.294439,0.319999,0.141243,0.152864,0 +0.266251,-0.055248,-1.30646,0.510764,-1.20389,0.890445,0.18644,-0.560365,1.36454,-0.558798,1.3642,0.613276,0.111071,-0.662696,-0.27987,0.715582,-0.266348,0.185377,-0.893834,0.594986,-0.000586825,0.832009,0.60992,0.765661,0.116837,-0.277443,-0.409461,-0.495503,0.398418,-0.241674,0.557852,-0.0230145,-0.278616,0.318796,0.337855,0.503952,-0.142135,0.317659,0.508229,-0.413386,0.398687,-0.276406,-0.435643,-0.121851,-0.197646,0.126096,-0.256713,0.110633,0.42828,0.203739,-0.227446,0.332885,0.254072,-0.0217905,0.259407,-0.110936,0.0756983,-0.00609533,-0.0235687,-0.306078,0 +0.773559,0.90579,-1.48638,0.0208173,-0.549012,0.552647,-1.14883,0.680697,-0.169724,0.185899,-0.508291,-0.49408,-1.05284,-1.13455,0.621202,-1.01716,-0.688541,0.45365,-0.597686,-0.512478,0.282168,-0.378638,-0.493464,0.342641,0.0253928,-0.34513,-0.511631,0.532767,0.00234288,-0.602513,0.171424,-0.478944,0.356359,0.158325,0.204303,-0.469413,0.43068,0.49362,-0.368996,-0.21444,0.164382,-0.334564,-0.000219321,-0.136608,0.0369447,-0.267333,0.203173,-0.388539,0.381276,-0.262683,0.284231,0.0656976,-0.336965,-0.216007,0.179575,0.278272,-0.149832,0.0330125,0.0267793,0.284522,0 +1.09451,0.763596,-0.39322,-0.980172,-0.957558,0.307767,-1.26339,0.270236,-0.253954,-0.507584,0.145259,0.179173,-0.888681,-1.18694,-1.18391,-0.407495,-0.690049,0.526986,0.648787,-0.602204,0.912271,-0.156937,0.585346,0.201769,0.0873101,-0.355658,0.169293,-0.0213723,0.594209,-0.12174,0.454406,0.170977,-0.0889617,-0.501644,0.0188232,-0.394352,0.515525,-0.477242,0.167585,-0.277595,0.0077087,-0.0349889,0.220463,0.395865,-0.150108,-0.359696,0.12502,-0.204943,-0.136842,-0.165987,-0.334991,0.410497,0.410239,0.162673,-0.226155,0.049957,0.249661,-0.211241,-0.0519059,-0.00644865,0 +-0.927253,1.09428,-0.615745,0.350671,0.630428,-0.52637,-1.49487,-0.425473,-0.227708,0.0496724,1.24609,-0.396979,-0.820186,0.203643,-0.249833,0.350903,-0.795921,-0.202187,0.64975,-0.637365,0.383768,0.0498394,-0.567397,0.216228,0.0778913,-0.0254395,-0.244971,0.321927,-0.379494,-0.00462326,-0.272686,-0.25078,0.352822,0.516536,0.11815,-0.349813,-0.112617,0.419985,-0.36932,0.148775,-0.233818,0.119629,0.436083,-0.379011,-0.260839,0.123902,0.110053,0.232839,-0.0851964,0.297548,-0.194797,-0.111967,0.0801668,0.107223,-0.127947,-0.390627,-0.114739,-0.395979,0.25097,0.103363,0 +0.477207,0.873296,-0.912705,-1.26895,-0.156091,-0.649716,-0.630699,0.232254,-0.0768642,-0.696537,0.370393,1.08771,-0.914792,-0.329545,-1.18003,-0.541762,-0.355369,-0.963471,-0.436272,-0.104243,0.66834,-0.609426,0.470057,-0.286843,0.531624,-0.174623,-0.615415,0.217511,-0.456815,-0.227062,-0.0194451,0.371104,-0.184328,-0.13372,-0.354714,0.0967113,-0.148911,0.315759,0.11409,0.431645,0.48133,0.141276,-0.475395,-0.0820805,-0.462458,-0.225222,0.00503259,0.10083,0.265389,0.0560587,-0.359034,0.355952,-0.11109,0.282873,0.0326616,0.0767957,0.325638,0.280621,-0.101664,0.212001,0 +0.812237,0.0251331,-0.345411,-1.15416,-0.766511,0.142512,0.218081,-0.18025,1.33933,1.18603,0.802184,0.352019,0.957174,-1.10383,0.819976,-0.775749,-0.615525,0.391416,-0.329134,0.643602,-0.685238,0.0787515,0.0019201,0.654967,0.423511,0.226855,-0.533782,-0.586394,0.254562,-0.00604781,0.595517,-0.458765,0.287315,0.100531,-0.19344,-0.0612669,0.433754,0.118138,0.475385,-0.00796125,-0.097984,-0.171009,-0.0949962,0.292184,-0.114745,0.3293,0.030391,0.365274,-0.278388,-0.218022,0.0382548,0.439227,-0.0125915,0.00729969,0.176952,0.360367,-0.350097,-0.300371,-0.118118,0.154672,0 +0.753305,-0.797968,-0.329614,-0.992422,-1.24035,-0.846746,0.317668,1.25005,-0.54421,0.483016,-0.0100871,0.583718,0.0327013,-0.366873,-0.0193507,-0.774808,-1.03101,-0.406024,0.533314,0.665216,-0.743134,0.921196,-0.0340229,-0.320349,0.192834,0.142198,0.535996,-0.547204,-0.446709,0.0487343,-0.405488,-0.0334007,0.402397,-0.0908603,-0.16539,-0.376731,0.0479419,-0.131467,0.00493497,0.279111,-0.000322487,-0.0778632,0.218091,-0.0817662,-0.181444,-0.0462258,-0.152112,-0.102173,-0.238526,0.27456,-0.0243538,0.414751,-0.195678,-0.195129,0.145751,0.360632,0.250076,-0.123036,0.316522,-0.248599,0 +-1.27175,-0.67908,0.759488,0.0242734,0.0965803,0.130014,0.264843,0.886347,1.31711,0.221657,-0.60618,-0.0368183,1.04454,-0.696277,0.680097,0.445356,0.411428,0.62913,-0.471504,-0.596707,0.355083,-0.336427,-0.663206,0.602366,-0.569897,-0.594176,-0.441977,0.112079,0.48544,0.0492266,-0.285049,0.0174116,0.409433,0.108737,-0.117042,0.235768,-0.241168,-0.44197,-0.181865,0.0398242,-0.203766,-0.276009,-0.469563,-0.110199,-0.33068,0.0840068,-0.226635,0.0494049,0.418916,0.233022,-0.351524,0.0634662,0.173957,0.359572,0.296974,0.30385,-0.390618,-0.000832969,-0.197982,0.256272,0 +-1.16384,0.0415605,-0.539007,-0.934746,-0.390865,-0.197494,-0.746977,-0.714699,-0.618081,-0.498946,1.38574,0.134301,-0.211495,-1.16909,-0.856427,-0.239555,-0.946145,0.106227,-0.669159,-0.773869,0.853489,-0.454278,0.5331,0.228901,-0.543978,0.0799594,-0.650116,0.564884,-0.0453607,-0.0768979,-0.332097,-0.093753,-0.0839565,-0.503446,0.0248745,-0.526405,0.53061,-0.391036,0.36059,0.195538,-0.100332,0.291383,-0.185434,-0.0799954,-0.204073,-0.207667,0.0920335,0.010583,-0.0224026,0.0568161,0.141673,-0.047283,0.245584,-0.328292,0.178038,0.170605,-0.156104,-0.155184,0.0162097,0.0750869,0 +-1.72159,0.71643,0.719216,-0.658497,-1.13534,-1.3074,0.00614394,-0.448292,0.442073,-0.251841,0.308113,-0.581948,0.483519,-0.252755,-0.135137,0.421619,0.694647,-0.424629,0.57373,0.111102,-0.115629,-0.279594,0.177127,-0.310061,0.112607,-0.194216,-0.059188,-0.333017,-0.38686,0.174167,0.491623,-0.441484,-0.58155,-0.284904,-0.0126733,0.236867,-0.337464,-0.262859,-0.264438,-0.449054,-0.158485,0.292379,-0.458085,0.109659,-0.214498,0.158954,0.0767636,0.134542,-0.124788,-0.176462,-0.0367255,0.248787,0.0833449,0.388581,0.0141853,-0.406461,-0.0281304,0.259334,0.379651,0.323861,0 +-0.621546,0.101955,-0.0383064,-0.491868,-1.27911,-0.422832,-1.23526,0.98657,1.27417,-0.113862,1.367,1.18598,-0.177193,7.76123e-06,-0.23893,-0.623833,0.373835,0.487357,-0.0577252,0.466564,0.287574,-0.281218,-0.0418285,0.0348409,-0.445847,-0.391204,0.559394,0.183352,0.247558,-0.456392,-0.166415,-0.158715,-0.0127491,-0.0884206,0.519339,-0.449402,0.269841,0.424184,-0.00648956,-0.430872,-0.00198216,0.179523,-0.236547,-0.0862738,-0.420259,-0.388102,-0.386854,-0.0386061,-0.0524471,-0.198921,0.229754,-0.0297383,0.286517,-0.165025,-0.387903,-0.204135,0.349539,-0.335095,-0.360884,0.318028,0 +0.0392451,-1.64074,-1.32534,-0.218116,-0.761932,0.830517,1.2153,-0.404547,0.599628,-0.533707,0.0761086,1.19039,-0.470612,-1.01294,-1.01885,-0.278496,-0.242324,-1.00242,-0.0574924,0.284029,-0.737187,0.928424,0.548685,0.439304,-0.664733,-0.414537,0.333017,0.248658,-0.432097,0.561046,0.308166,-0.494222,-0.504394,0.338683,0.364798,0.0843813,0.270739,-0.299448,-0.157473,0.399964,-0.094446,-0.0916853,-0.392982,-0.187556,-0.123557,0.0907033,-0.177737,0.179904,0.367562,0.242626,0.058688,0.012408,0.374824,-0.073016,0.231949,-0.0371993,-0.0960877,0.286121,0.00745409,0.124374,0 +0.827371,0.52998,0.445456,-1.02454,0.112847,-1.49065,0.395825,0.549504,0.0553659,0.915913,0.560182,0.0746963,0.316997,-1.08297,-1.11003,-1.16254,-0.486358,0.610509,0.173112,0.00566418,0.457554,0.478014,-0.0766014,0.451659,0.512223,-0.443808,0.238112,0.485129,-0.541546,0.573773,-0.25438,-0.489408,0.411607,0.128255,0.400228,0.350719,0.215192,0.495245,0.364355,-0.333952,-0.11871,0.233255,-0.241003,-0.33839,-0.385228,-0.245892,0.374548,-0.323593,-0.193459,0.222732,-0.0792691,0.26689,-0.234119,-0.265597,-0.0305556,-0.0062412,-0.271844,0.0326296,-0.143609,-0.376661,0 +-0.25293,-1.03228,-0.290617,-1.14574,-0.365164,-0.906586,-1.17866,-0.179928,0.0433518,1.02155,1.18422,0.345394,-0.535085,-0.366947,-0.406893,0.494404,-0.243417,-0.89691,0.623644,0.66819,0.673251,0.254799,0.632233,-0.391017,0.265441,-0.394319,-0.110193,0.350616,0.391896,-0.589933,-0.484383,0.0605899,0.00814886,-0.510977,0.37869,-0.495944,0.493197,0.202237,0.250482,0.224839,-0.292271,0.29829,0.216831,0.151062,-0.260234,-0.0469521,0.305884,-0.44602,0.0155515,0.00176564,-0.382708,0.040322,-0.243348,-0.257229,0.372767,-0.366833,0.0199686,-0.390908,-0.0920177,0.296466,0 +-0.877274,0.475744,-0.514341,0.309762,0.0883002,0.947768,-0.953489,-0.39831,-0.279637,-0.00159309,0.312211,0.154982,-0.085676,0.784511,-0.153163,-0.574974,0.779957,-0.573518,-0.101028,0.581781,-0.750253,-0.0586086,-0.624723,0.264339,0.713493,0.132642,-0.0292234,-0.357897,-0.382344,0.00422776,-0.00486073,-0.313243,-0.191335,0.455832,-0.160056,0.315803,-0.2602,-0.227312,0.337087,-0.0380288,0.317905,-0.317709,-0.348315,0.423593,0.121708,-0.433256,0.0293302,-0.0218089,0.196645,-0.20178,0.118876,-0.352056,0.338487,0.0993353,0.230439,0.340387,-0.0398502,-0.000179301,-0.333605,-0.0339598,0 +-0.904566,0.384058,-0.653772,-0.478608,-0.0328605,-0.440983,0.603883,-0.783393,0.208766,-0.334656,-0.454401,-0.366914,0.288271,-0.445499,-0.97777,-0.99732,-0.726798,-0.827109,0.216818,-0.272996,-0.425252,0.111918,0.232206,-0.404131,0.494392,0.359348,-0.242282,-0.442487,-0.157539,0.368838,0.546593,0.426341,0.534029,-0.238477,0.355557,-0.282301,-0.372081,-0.0266834,-0.213464,-0.367798,0.291893,0.424432,0.445282,0.127812,-0.262815,0.053495,0.0651885,-0.0324401,0.158391,0.315862,0.188796,-0.200206,0.255118,-0.0651487,-0.0654515,-0.103726,0.209146,0.0354159,-0.219871,-0.0408619,0 +-1.29012,1.1516,-0.938018,-0.517378,0.762818,-1.47403,1.37755,0.237072,-0.070641,0.478293,-0.140529,0.500261,0.14605,0.0606381,-0.26559,0.226487,0.150544,-1.02121,0.212209,-0.368313,0.177278,0.840503,0.893475,0.190576,-0.470137,0.296629,0.544989,-0.199704,0.169305,-0.123248,-0.579437,0.343213,-0.134581,0.206305,0.413305,0.191423,0.346885,0.0666791,-0.194001,-0.119341,-0.0795495,0.342565,-0.394382,-0.119712,-0.258727,-0.441891,0.261179,0.101314,0.0231467,-0.374863,0.433703,0.0117456,-0.0345538,0.378409,-0.341497,-0.323444,0.160025,0.174423,0.187918,0.106312,0 +-0.248496,0.879477,0.392622,-0.23088,-0.123667,-1.01118,-0.00151466,1.15994,-0.76507,-0.060381,-0.132033,1.15201,0.875989,0.312993,0.226044,0.0188021,-0.68087,-0.638203,0.467429,0.543816,0.875431,0.326088,-0.354545,0.15011,0.525596,-0.258587,0.294163,0.0151987,-0.24501,-0.667518,-0.341667,-0.318523,-0.558584,-0.375236,0.364896,-0.328317,0.112264,-0.366135,0.166931,0.391401,-0.224483,0.312431,-0.431786,0.107627,0.406705,0.301323,0.235315,-0.264338,-0.352293,0.343966,-0.255672,0.210609,0.0905387,-0.34961,0.148199,0.221835,-0.0578684,-0.0387061,-0.28766,0.266836,0 +-0.113608,0.122711,-0.207598,0.513211,-0.380295,-0.0396133,0.27638,-0.331401,0.983571,0.0689764,0.138442,-0.436878,-0.86833,-0.364628,0.509935,-1.22881,-0.621904,0.257457,-0.933334,0.525519,-0.249655,0.522043,-0.341021,-0.528562,0.132679,0.645871,-0.0546916,-0.736544,0.459769,0.149856,0.100649,-0.447552,0.546004,0.504763,0.212888,-0.414328,0.330894,-0.250988,0.527304,0.171805,-0.276095,-0.0266739,0.372605,-0.375746,-0.241572,-0.272613,-0.396394,0.169866,-0.401497,0.221425,0.174527,0.0531527,0.00563891,-0.0688999,-0.0859238,0.245218,0.107448,0.0608033,0.0655193,0.168048,0 +1.24485,-1.31015,0.299878,-0.0671424,-0.552657,0.843169,-0.516212,1.10623,-0.655571,-0.411288,-0.594045,-0.575398,-0.577982,-0.868985,0.77872,-0.417414,-0.378482,-0.0666785,0.226736,0.157195,-0.81225,-0.574401,0.729943,-0.158864,-0.534211,-0.281708,-0.163921,0.436602,-0.618713,-0.239411,0.158413,-0.446016,-0.505261,0.470248,0.198385,0.32881,0.209466,0.216732,-0.401929,0.384331,-0.0628718,-0.151299,-0.264332,0.37309,0.366556,0.122573,-0.406829,0.0600433,-0.194183,-0.153996,0.111657,0.128052,-0.0124115,-0.249835,0.0569977,0.249868,0.264559,0.302614,-0.121791,-0.126539,0 +0.347984,-1.01629,-1.25846,-1.26768,-0.820112,-1.25949,-0.093467,-0.562344,0.0341015,1.24171,-0.639387,0.248161,0.955638,0.147984,-0.843061,-0.874923,0.406375,0.217766,0.228909,0.614326,0.374216,0.208539,-0.176213,0.741134,-0.494032,0.431747,-0.220143,-0.569234,-0.246895,-0.0847748,-0.0398153,0.137047,0.0333942,0.0108376,-0.241885,-0.523276,-0.241972,0.108316,0.266891,0.0838871,0.0916313,0.258247,-0.0597309,0.313579,0.241115,0.189596,0.261208,-0.184289,0.377731,-0.278353,0.303383,0.399765,-0.0858177,-0.272741,-0.0324437,0.354934,-0.0909039,-0.130966,0.226825,-0.313881,0 +-0.713693,-0.850064,-0.579831,-1.04194,0.199166,-1.58496,-1.10619,-0.80148,0.930533,-0.43923,-0.391026,0.724716,0.750974,0.114812,-0.953625,-0.0872635,-0.8556,-0.205257,-0.149188,0.679106,0.874545,0.277199,0.173364,-0.0842447,-0.452006,0.403714,0.524017,-0.692138,-0.555752,-0.207516,-0.556315,-0.263811,-0.162314,-0.098669,-0.517743,0.103839,0.0718276,0.312885,0.109727,-0.270613,0.260618,0.0344796,0.338848,0.256093,-0.200871,-0.205372,0.130562,0.39411,-0.182158,-0.202487,0.0388564,0.0632918,0.425416,0.289327,-0.000177668,-0.112395,0.334212,-0.200552,0.328669,0.24204,0 +0.608118,-1.62713,-1.03445,0.333014,-0.687667,0.934077,-0.226584,0.712828,1.14741,0.174496,-0.519843,0.587434,1.11651,-0.370342,-0.717849,0.692973,0.0356095,-0.705616,0.0518191,-0.813547,-0.0215377,0.384077,0.678907,-0.374209,0.269359,-0.557033,-0.511757,0.10474,0.0494326,-0.59871,0.585759,-0.500903,0.550523,0.231006,-0.490739,0.0935475,0.478265,0.30273,-0.291675,-0.0564736,-0.308147,0.396321,-0.345376,0.169277,-0.0627861,-0.275387,0.277531,-0.00538569,0.405728,0.349397,0.384294,0.0425255,0.376471,-0.324615,0.0390473,0.313376,-0.239831,-0.357016,0.252079,0.0404338,0 +-1.71243,0.482189,0.389558,0.182348,-0.262652,-0.519481,-1.13234,-1.03692,-0.809535,0.83576,1.03237,0.909422,-0.294692,0.0840703,0.626108,-1.14785,-1.14642,-0.0702755,0.230383,-0.900874,-0.665594,0.191247,0.562249,0.244669,0.741174,0.347012,0.531248,0.350327,-0.237238,0.316758,0.0306255,-0.21825,-0.408256,0.173083,0.0552636,0.477227,-0.221729,-0.141922,0.426932,-0.183438,-0.104793,0.144901,-0.0193256,-0.309144,0.404615,-0.294402,-0.28949,-0.347583,0.150715,0.102213,0.287685,-0.285015,-0.17526,0.132988,0.327581,-0.0952283,-0.387201,0.350986,0.109278,-0.255883,0 +-0.47985,0.583496,-1.2672,-0.0269352,-1.36206,-1.14433,-0.164481,1.2074,0.768145,-0.27537,0.174315,-0.622598,0.854504,-0.994197,-0.299425,0.654238,0.786154,0.752622,0.628207,-0.900641,-0.054969,0.529078,0.623337,0.285233,-0.389874,-0.614349,0.358863,-0.16686,-0.164828,0.244242,0.145049,0.0740199,-0.588691,0.406216,-0.353377,0.515412,0.149464,-0.0440613,-0.239569,0.490958,0.440842,-0.298543,0.166348,-0.416061,-0.0708717,0.116196,-0.294787,0.0603879,0.429888,-0.050298,-0.102562,0.00331493,-0.11874,-0.287833,-0.04034,0.0795021,-0.195168,-0.320985,0.239061,0.358604,0 +0.213326,-1.23975,-1.36392,-0.124374,-0.0913159,-0.531317,-1.23877,-0.141064,1.40258,0.477331,0.63873,0.795074,0.0102107,0.353048,-0.343672,-0.879557,0.74296,0.534041,0.186445,0.744929,-0.693002,0.286038,0.850351,0.604531,-0.13426,0.348285,0.232014,-0.589914,-0.32084,-0.0358899,-0.583075,0.563802,0.450714,-0.464763,-0.0489807,-0.419943,-0.462847,-0.466479,-0.342584,0.059539,-0.263166,0.153131,0.433975,0.421002,0.00268659,0.159542,-0.405985,-0.263773,-0.0755032,0.42174,0.316696,0.221313,0.337698,0.333213,0.220877,-0.164627,0.156807,0.134925,0.330156,-0.0557614,0 +0.556423,-0.486256,-0.648728,-1.21856,0.616835,-0.463373,0.0777225,1.47639,0.612526,0.960687,-0.533408,0.968952,-0.24876,0.0643116,0.212943,-0.257461,0.0818517,0.0117119,0.766371,0.214609,0.611419,-0.109466,-0.267234,-0.508476,0.0242903,-0.613612,0.0812302,-0.104439,-0.130979,0.244284,0.261692,-0.54729,-0.282706,-0.234004,-0.0168729,-0.0105322,-0.361604,0.375083,-0.0418539,-0.0674733,-0.0965834,-0.149214,0.30139,-0.150345,0.114341,-0.324195,-0.0624119,-0.198403,-0.432609,0.396208,-0.340398,-0.0244386,-0.270732,-0.225882,0.0685892,-0.190809,0.0958468,-0.147235,-0.320708,0.145009,0 +0.74887,0.468672,0.656466,-0.286674,-0.199617,-1.19477,0.835532,-0.791608,-0.761554,-0.689547,-0.00736703,0.361046,0.410598,-0.184963,0.598023,0.331629,-0.864116,-0.682267,-0.298186,0.185614,-0.16124,-0.679655,-0.172356,-0.0636325,-0.0167641,0.0526635,0.281806,-0.0121747,-0.0290174,-0.289144,0.170777,-0.556723,0.24121,-0.161961,0.30682,0.187002,0.0168059,-0.208893,0.12848,0.0547301,-0.239258,-0.00459889,0.424263,0.403631,0.00202035,-0.019665,-0.0813621,-0.0941812,-0.328374,-0.177141,0.180947,0.223335,0.411229,-0.118415,-0.145082,0.36911,0.278047,-0.0643114,-0.38028,-0.105807,0 +1.30713,-1.52768,-0.458424,-1.054,0.0730956,-0.942998,0.45351,-0.106718,0.484037,0.118799,0.990984,1.14456,-0.393998,0.354273,-0.81575,-0.977465,-0.381895,-0.611783,0.272336,-0.375631,0.613792,0.943843,-0.671317,-0.404889,0.0512646,0.394649,-0.139219,-0.561952,-0.099937,0.253827,0.502684,-0.0421919,0.548282,0.478056,0.0101672,-0.0904353,0.35749,0.380406,-0.0978374,0.244993,0.376657,0.230595,-0.208623,-0.304583,0.354935,-0.451791,-0.32423,0.265202,-0.121564,0.198408,-0.0554388,-0.315795,-0.0186914,0.277114,-0.222837,0.101545,-0.140045,0.236614,0.287172,0.0574525,0 +-0.332117,-0.751668,-0.934022,-0.0511793,0.0368426,0.660072,0.0452716,0.921575,0.180188,0.556935,0.968093,1.1409,0.884857,0.585032,0.0742244,0.529326,0.146584,0.301459,-0.348395,0.782099,-0.838833,0.158439,-0.210932,-0.532379,-0.221078,-0.585646,-0.13065,0.475378,-0.34878,-0.552737,0.106154,0.211043,0.392978,0.377338,-0.387442,0.393193,-0.254262,0.5047,-0.348757,0.418537,0.372164,0.357165,-0.177868,-0.140656,0.229494,0.0313066,-0.372782,-0.355743,-0.192224,0.401646,-0.0171276,0.00475142,-0.0478822,0.10283,0.23145,-0.14397,0.20728,-0.359485,-0.298608,0.272999,0 +0.619991,0.851649,-0.743166,-0.412446,-1.3494,1.05221,1.19674,-0.405816,0.420319,1.31752,0.26823,-0.752786,-0.213781,0.64171,-0.14954,0.0100802,-0.969142,-0.248825,0.730751,0.544611,0.0712169,0.637375,0.14665,0.331044,-0.39221,-0.321552,-0.684783,-0.192872,-0.492603,0.509344,0.549001,0.228324,-0.0845857,0.172713,0.142683,0.110746,-0.309784,-0.221464,-0.152609,-0.337818,-0.414552,0.4188,0.249585,-0.219706,-0.0812741,0.0755237,-0.312489,-0.161729,-0.385525,-0.315768,0.413249,-0.0684816,-0.323547,-0.148742,0.291619,0.349521,0.0367073,-0.169565,-0.330099,0.0520539,0 +1.30284,0.756356,0.60782,0.0483293,0.739205,-0.272084,0.781087,-0.0414869,0.398284,-0.570339,-0.403426,0.990947,0.333124,-0.590545,0.715428,-0.991472,-0.476069,-0.475081,-0.101198,-0.193392,-0.205695,0.703749,0.803039,-0.605469,0.427729,-0.342953,-0.728637,0.312268,-0.471426,0.375143,0.177095,0.35746,-0.213987,0.218216,-0.180097,-0.243246,-0.22521,0.245831,0.433638,0.380513,-0.017413,0.300095,0.209833,-0.40342,0.250654,0.289586,-0.021466,0.308225,0.0924611,0.267,0.281761,0.282412,-0.236231,-0.202678,-0.13347,0.090633,-0.0787687,-0.000951818,0.268841,0.215695,0 +-0.714008,-0.284101,-0.791242,0.0977928,0.705846,-0.319536,0.548064,-1.0746,0.861644,-0.435572,1.00344,0.430372,-0.546971,0.366276,-0.0389767,-0.0943607,-0.21762,0.806764,-0.951742,-0.105909,0.380614,0.895367,0.70513,0.377321,-0.265608,-0.407358,-0.196448,0.0311358,0.424145,0.271979,0.0145503,0.40799,0.152108,-0.381787,-0.100616,0.0548527,-0.206237,0.455108,0.441055,0.180752,0.00975697,0.444477,-0.286292,0.383814,-0.232426,0.329568,-0.140378,-0.29681,-0.229213,-0.15867,0.15035,-0.0284831,-0.34643,0.0904947,0.134456,-0.0160321,0.361457,-0.238788,-0.251625,0.355034,0 +1.67672,0.135002,-0.514341,0.613558,-0.24012,-0.761115,-1.46504,-0.53589,0.897461,0.884433,-0.690698,-0.696278,-1.05935,0.564327,-0.12339,0.423004,0.618052,-0.0931601,-0.508722,-0.907274,-0.580559,0.777723,-0.0196617,-0.571597,-0.33668,-0.299749,-0.174596,0.0671529,-0.662306,-0.629401,-0.0160779,0.136872,0.213305,0.102093,-0.208244,-0.242763,0.312759,0.195564,-0.356796,-0.177655,0.500631,0.154274,-0.0495907,-0.0873163,-0.107348,0.08843,0.351521,0.272174,0.0791494,-0.0407156,0.0542149,-0.156854,0.25428,-0.161922,-0.305987,-0.176925,0.242927,0.11276,0.127751,0.0884633,0 +1.15608,1.03281,0.679533,0.645655,0.659097,-1.20709,-1.24069,-0.965277,0.838782,0.187411,-0.231864,1.25249,0.0629265,-1.0419,0.731448,0.460936,-0.671377,0.682589,-0.0931742,-0.470169,0.623675,0.276331,0.674519,-0.166852,-0.361533,-0.276416,-0.33324,0.113002,-0.207336,-0.483616,-0.324174,-0.126788,-0.317933,-0.028899,0.480489,-0.380466,0.221596,0.0740518,-0.334666,0.287259,-0.176231,-0.239536,0.405817,-0.327297,0.404426,-0.0616451,-0.167779,0.140114,0.193341,-0.0240518,0.362304,0.443606,-0.35487,0.237527,-0.307255,0.216548,-0.278261,-0.17109,-0.151166,-0.19753,0 +0.160773,-1.08705,-0.92481,0.413685,0.010262,0.4036,0.334433,1.05354,1.32186,-0.602009,1.06572,-0.883462,0.816507,-1.10655,-0.220253,-0.399252,0.6969,-0.714268,0.827755,-0.00807031,0.0488242,0.0944742,0.54306,0.261819,0.446567,0.142109,-0.0550234,-0.390187,0.310103,0.519808,-0.290825,-0.508906,0.514781,-0.511356,-0.454298,-0.372302,-0.471681,-0.339186,0.507873,-0.00519733,0.28089,0.315317,-0.333128,0.071429,-0.118689,-0.220152,0.236246,0.328688,-0.324697,-0.0520558,-0.128735,0.417644,0.248582,0.143113,-0.0440285,-0.0554478,0.0735879,0.187635,-0.0232611,0.0721381,0 +0.917286,-0.484933,-1.25,-0.146804,-0.723315,0.880221,-0.487812,0.141581,0.969339,0.291539,0.703854,-0.73445,-0.657613,0.782396,-0.869352,-0.389658,-0.509471,0.409757,0.436078,-0.0845755,-0.378919,-0.0797971,-0.354452,0.672986,-0.314942,0.620049,-0.722802,-0.36391,-0.586706,0.146661,0.349897,0.373525,-0.155765,-0.390271,0.0160856,-0.509338,-0.153451,0.438005,-0.375937,-0.179412,-0.45593,-0.390981,-0.233779,-0.0761931,-0.165871,-0.289231,-0.25833,0.0270356,0.193984,0.208512,0.368546,0.117753,-0.359218,-0.303223,0.188119,-0.103971,-0.212507,0.315826,-0.0825313,0.12635,0 +1.23707,0.562402,-0.430124,-1.17765,-0.570536,-1.1677,1.23965,-0.697859,0.829814,-0.696794,0.123975,-0.660376,-0.694823,-0.0382851,-1.12437,0.571277,-0.556939,0.148988,-0.884367,-0.498245,-0.650049,0.584135,0.293002,0.0668173,-0.372845,0.0219068,-0.432859,-0.0717224,-0.00381737,-0.286756,-0.299217,0.385526,0.0324789,-0.147536,0.366419,0.250032,-0.386794,0.237017,0.204937,0.029799,-0.141451,-0.309689,0.352387,0.201964,-0.141046,0.321485,-0.40304,-0.06459,-0.187553,0.386476,0.0721001,0.331602,0.0703973,0.409358,-0.370769,-0.407171,0.0722095,0.0165784,-0.114426,0.0129485,0 +-0.160354,-0.318808,-1.28494,-0.0653802,0.390744,0.336539,-0.108146,-0.575613,-0.0511816,0.4402,0.735365,-0.500837,0.939986,-0.845404,-0.521519,-1.20543,-0.873792,0.24248,-0.601784,0.582528,0.0200337,0.59095,-0.701582,0.761074,0.242157,0.303596,-0.6226,0.0154065,-0.670429,0.437918,-0.579666,0.541726,0.388983,-0.553329,-0.391181,0.100745,-0.0695975,0.435805,-0.160293,-0.332218,0.0317294,0.356418,0.318747,-0.435563,-0.162615,0.185652,0.203491,0.420468,0.154955,0.207412,-0.33928,-0.123131,-0.311112,0.242367,0.313663,-0.154637,0.0106693,0.3199,-0.0248635,-0.189675,0 +-0.522819,-0.817834,-0.346115,-0.458812,-1.13723,-1.44322,-0.391834,1.14572,-0.748431,1.28308,0.0799945,-0.312752,-0.0228303,-0.813048,0.399319,-0.163007,-0.275659,0.00585124,0.0769625,0.681504,0.267509,-0.189002,-0.5193,0.74522,-0.143499,-0.204833,-0.735021,0.259344,0.441847,0.277824,0.212623,0.514448,-0.0855295,-0.220669,-0.27891,0.251359,-0.276344,-0.429949,0.23265,-0.179947,0.0124367,0.344991,-0.273819,0.0844074,0.160243,-0.0860197,0.211891,0.189252,-0.292321,-0.315196,-0.10443,0.428446,-0.270559,-0.2717,0.0100045,-0.0592686,0.0856242,0.34194,-0.0449642,-0.239318,0 +1.29769,1.10301,0.72405,-1.28973,-0.923375,-0.360077,1.40595,0.876239,0.374895,1.09514,0.555184,-0.227024,0.15042,-0.297319,-0.0860017,-0.777767,-0.986357,-0.990402,-0.864081,-0.110877,-0.0431044,0.754758,-0.628725,0.561448,0.706411,-0.321105,-0.409999,-0.715403,-0.507577,0.348643,0.0638912,0.496914,-0.293146,0.0399562,-0.0852261,0.170647,0.186258,-0.358704,0.394056,0.138183,-0.357913,0.348476,0.00286007,-0.374166,-0.395676,-0.146782,-0.200981,-0.134726,-0.275033,0.179779,0.0685612,-0.328061,-0.197942,-0.211884,0.275382,-0.284446,-0.13341,-0.237137,-0.331509,0.130446,0 +-0.622805,-1.06788,0.75138,-0.860491,-0.805256,-1.51441,0.913959,0.313594,0.792173,0.490401,-0.45751,0.245684,-0.109447,0.318503,0.0287646,-0.258213,0.639773,-0.282919,0.535534,-0.120375,-0.815449,0.338066,0.87418,0.379021,0.0517918,-0.224716,-0.467651,0.252939,-0.616696,0.407374,0.0470133,-0.559758,-0.0264395,-0.34717,0.166915,0.16374,0.260101,-0.220698,0.375691,-0.344864,-0.0501207,-0.368042,-0.0651821,0.357099,0.0575979,-0.0760766,0.174762,0.293899,0.392307,-0.361822,0.125196,0.447629,-0.28764,-0.0370521,0.28605,-0.297043,-0.147695,-0.0525982,0.301742,-0.00587834,0 +1.64491,0.837699,0.633418,2.39698,2.31686,2.17636,1.79197,-0.531331,-0.650588,-1.90829,-1.12431,-0.972474,-0.32318,-0.255501,0.209408,2.04465,2.20987,1.22633,0.300024,0.768411,-0.560073,-0.74333,-1.37998,-2.06523,-1.07066,-0.0543094,0.618808,1.0115,1.80399,1.41308,0.812156,1.05142,-0.0893716,-0.444331,-0.884698,-1.6042,-0.624634,-0.678513,0.155991,0.401594,1.20594,0.647686,1.33604,0.753418,-0.0792224,-0.218758,-0.914568,-1.02311,-0.54536,-0.560787,-0.470407,-0.351498,0.670914,0.857458,0.440826,1.05016,0.743789,0.161679,0.0492195,-0.361333,1 +-1.44486,0.701927,2.8635,1.75777,1.52102,1.56023,0.176204,-1.04907,-1.67498,-2.29712,-2.5069,-0.599345,0.733219,0.842525,0.728969,1.49859,1.45941,1.43048,0.783025,-0.841218,-0.88491,-2.41404,-1.30154,-0.851286,-0.284972,0.701021,1.40345,0.994192,1.73714,1.46645,0.797926,-0.386947,-0.681073,-0.679987,-1.68435,-0.500866,0.0285624,-0.152444,1.10121,0.691214,0.875311,0.927769,0.296491,-0.154562,-0.970318,-0.979643,-1.15062,-0.787667,-0.352615,-0.215621,0.118614,0.738735,0.773047,0.462503,0.939328,-0.2604,0.0374262,-0.386147,-1.19192,-1.09946,1 +1.57745,2.59605,1.38435,2.76605,1.25559,0.747315,2.24904,0.00296807,-1.36953,-1.34887,-2.39524,-0.888716,-0.623311,-0.306113,0.147734,2.4594,2.87147,2.43581,0.857912,0.872556,-1.12674,-0.806125,-0.804292,-0.860986,-1.25011,-1.42254,-0.3796,0.985837,1.66552,1.20356,1.50561,1.29688,0.466988,-0.634762,-0.818383,-0.890802,-0.940966,-0.917088,-0.152294,-0.272922,0.471971,0.731226,1.12989,1.36874,1.15028,0.398501,0.181142,-0.195287,-1.04904,-1.2012,-0.485617,-0.983177,0.213049,0.0352747,0.823426,1.19318,1.04186,0.510712,0.46249,0.180725,1 +-1.66234,2.61077,2.53624,1.97556,3.12543,2.47629,0.858679,-0.38575,-1.21988,-1.04933,-2.38847,-2.95691,-0.707824,-1.41275,0.990877,1.36378,2.85327,2.20178,2.26527,0.633013,0.604166,-0.567517,-1.34796,-1.65885,-2.29546,-0.632167,-1.41973,-0.422477,0.994932,1.56292,1.3196,1.01909,0.390842,0.565994,0.0509134,-0.765253,-1.18464,-1.31636,-1.19433,-0.612971,-0.58434,0.190366,0.996035,0.886383,0.605053,1.16069,0.338199,-0.217935,-0.780519,-0.545431,-1.06476,-0.933904,-0.565707,-0.516425,0.0386495,0.717635,0.928897,1.04972,0.660139,0.962127,1 +0.438958,0.696948,3.01909,1.39886,0.450024,-0.95735,-0.0345056,-3.45495,-1.62858,-1.53734,-0.244617,0.535168,1.88719,1.71046,2.28791,1.11549,-1.13174,-1.10408,-2.61772,-2.14039,-2.0291,0.427638,1.52476,1.38218,1.47063,1.95295,0.133826,0.144161,-1.2239,-1.95526,-1.87505,-0.454389,0.528481,1.27138,1.66165,0.707981,0.518887,0.410671,0.0829595,-0.517009,-1.20951,-0.776585,-0.209556,0.616221,0.3792,0.90662,1.06009,0.119746,-0.062674,-0.961404,-0.556719,-1.09563,-0.485329,-0.225787,0.500718,1.04413,0.881359,0.890955,0.332527,-0.453452,1 +-0.337581,0.97073,1.98119,0.506179,1.20269,-0.271708,-0.416773,-0.455217,-2.69103,-1.81861,-1.18722,0.563994,0.248922,0.822062,1.74475,0.765776,0.929337,-0.360317,-0.926707,-0.676809,-1.23697,-0.711665,0.610133,0.32954,1.60768,0.601617,0.570263,0.103643,-0.11468,-1.52885,-0.780772,-1.11389,-0.626349,-0.0601892,0.250303,0.782162,0.359319,0.0745516,-0.137662,-0.485687,-1.02461,-0.523781,-0.990882,0.222271,0.228457,0.931016,0.548305,0.614497,0.328388,-0.169217,-0.120249,-0.47498,-0.82544,-0.332584,0.341687,0.13572,0.75043,0.580133,0.655344,-0.0983146,1 +-0.463658,2.15754,1.6191,1.75724,2.01474,0.388673,-0.118087,-1.82117,-2.30624,-2.17111,-0.976256,1.21024,2.12169,2.77808,2.03281,0.335716,0.480038,-1.81132,-2.43715,-2.27554,-0.845005,-0.611835,1.1507,2.181,2.18172,0.920727,0.347262,0.163976,-1.44023,-1.63002,-1.57015,-0.679247,-0.324664,0.420032,0.922708,0.694244,0.862637,0.478084,-0.391627,-0.640195,-1.23334,-1.18173,-0.437361,0.390974,0.772043,1.22414,0.623745,0.709927,-0.448224,-0.785627,-1.10674,-1.30987,-0.341833,-0.403863,0.186622,0.850807,1.27815,0.939663,0.172183,-0.222442,1 +1.29285,1.24978,1.67833,1.48999,0.611065,1.02145,1.97904,-1.02156,-0.935016,-1.46076,-1.01239,-1.82255,-1.56557,-0.587539,0.727052,1.06502,0.906788,1.01167,0.625693,1.02627,0.279915,-0.142399,-0.642342,-0.710744,-1.32817,-1.54237,-1.42473,-0.563337,0.0174256,0.244138,0.870024,1.21998,1.31372,0.777254,0.671852,0.193655,-0.539721,-0.172713,-0.387975,-0.354425,-0.294303,-0.798621,-0.0919868,0.146279,0.585218,0.256837,1.02699,0.693482,0.696722,0.0120555,-0.467158,-0.404306,-0.572209,-0.452628,-0.465267,-0.189801,0.0438565,0.182914,0.489045,0.524884,1 +-0.50368,0.611949,2.18736,1.53731,0.988689,0.495855,-0.0181574,-0.865399,-1.90455,-1.31833,-0.450798,0.768669,2.49443,1.97335,2.04224,1.41563,-0.493599,-1.65644,-1.47351,-1.42271,-1.57956,-1.02441,-0.0792077,1.97076,1.32117,1.67089,0.615959,0.35469,-1.10994,-1.43862,-1.20857,-0.493298,-0.033094,0.744014,1.10502,0.626548,1.17044,0.319525,-0.174214,-0.334,-0.629815,-1.26672,-0.892435,0.084714,0.622784,0.579509,1.14139,0.804148,0.294293,0.0263897,-0.584442,-0.719232,-0.737238,-0.604379,-0.218656,0.39029,0.619159,0.585289,0.533233,-0.215281,1 +-1.46798,1.89814,1.14636,1.86026,1.39438,1.7441,2.10882,0.96089,-0.985704,-0.864433,-2.1883,-1.16812,-2.87052,-1.55063,-1.05853,0.406535,0.460653,2.03129,1.66247,2.56076,1.97779,0.619105,0.31711,-1.17669,-1.35283,-1.78215,-0.982804,-0.667107,-0.698457,0.213039,0.925224,0.465493,0.799696,1.58722,0.765854,0.822782,-0.27548,-0.513239,-1.06249,-0.546518,-0.71462,-0.877042,-1.0062,-0.472144,-0.209032,0.651348,0.493814,0.883493,0.547369,0.971874,0.46161,0.222421,-0.676821,-0.78628,-0.65856,-0.525165,-0.611927,-0.134736,-0.15457,0.111127,1 +0.206374,1.69861,2.14919,1.7981,1.39498,2.87168,1.81519,-0.05566,-1.88565,-1.27437,-2.61392,-3.26869,-2.16077,-0.385277,0.156386,0.603035,1.80842,2.90399,2.34202,1.95338,1.02871,-0.333453,-0.2502,-1.25135,-1.9912,-1.00345,-1.46028,-0.977632,0.0989777,0.522594,0.850071,1.55016,1.05499,0.70425,0.868229,0.576042,-0.826781,-0.467454,-1.15378,-1.32283,-1.39879,-0.256423,-0.272357,0.476771,0.536522,0.938795,1.15863,1.30663,0.351911,0.0632759,-0.655374,-0.545019,-0.894658,-0.59034,-0.812197,-0.228414,-0.274654,0.0591064,0.653575,1.19417,1 +0.607374,1.626,2.37211,1.97788,3.15573,1.85899,0.146822,0.666223,-0.324121,-2.04929,-1.34524,-2.0064,-1.53921,-0.014853,0.289917,0.975102,2.6142,1.81103,0.73474,0.0590138,-0.246065,-1.34407,-1.94322,-1.19706,-1.22195,-0.85319,-0.266126,-0.314552,1.56132,1.46647,1.21083,0.601845,0.757567,0.0162806,-1.01118,-0.893992,-0.900276,-1.09545,-0.727051,-0.374875,0.63823,0.465385,1.05093,1.41754,0.678581,0.17828,0.512244,-0.0857716,-0.636349,-0.833053,-1.2919,-0.693829,-0.588106,-0.269199,0.0659998,0.615083,0.866315,0.850012,0.669439,0.165475,1 +-0.421232,1.88347,1.82927,0.962009,1.69171,2.16362,2.55948,1.71871,0.37309,-0.247032,-2.17886,-2.407,-1.83868,-2.35083,0.101571,-0.891717,0.553203,1.6591,0.769615,2.03108,0.665141,1.20842,0.581782,-0.647807,-0.232366,-1.27032,-0.813943,-1.60816,-1.22827,0.02039,-0.39965,0.0489298,0.561324,1.46167,0.52648,0.182388,0.846976,-0.436114,-0.074455,-0.121234,-1.02571,-0.654947,-0.28539,-0.632898,-0.555898,0.330556,0.407037,0.74512,1.09531,0.52904,0.943349,0.225594,0.249641,-0.420098,-0.706525,-0.854832,-0.489474,-0.45739,-0.693463,-0.154594,1 +-0.0781055,0.985281,2.59247,2.55179,1.95772,1.53318,0.0581095,-1.0035,-1.99432,-2.03083,-2.46486,-1.91624,-2.15859,-0.248599,-0.308799,0.795584,1.20381,2.27494,1.09739,0.837893,-0.123544,-0.269295,-1.39837,-1.44406,-2.05717,-0.808278,-1.44397,-0.3771,0.103,1.22733,1.41483,1.84559,1.09542,1.05608,0.711739,-0.278759,-0.689701,-0.580435,-1.24559,-0.855341,-0.771721,0.333767,0.720522,1.05053,1.2852,1.08117,0.614934,0.779462,-0.312709,-0.0440669,-0.623539,-0.550061,-1.02323,-0.712203,-0.222122,-0.148534,0.745411,0.669514,0.955317,1.21438,1 +0.927471,0.396469,1.68282,1.33713,2.52727,2.72093,0.615838,0.0491221,0.49216,-1.90079,-1.67697,-1.66737,-0.527259,-1.72887,-0.47882,1.23201,1.20654,0.577887,1.46689,0.697341,1.37678,0.251742,-0.244349,-0.140283,-0.523954,-1.45224,-0.485271,-0.492572,-0.423843,0.576203,0.526942,1.31258,0.621625,1.18775,0.41778,-0.233544,-0.601189,-0.612442,-0.474079,-0.982561,-0.341008,-0.263564,0.0977225,0.450347,0.894646,0.264862,0.883377,0.410386,0.637115,-0.193591,-0.297635,-0.085329,-0.273294,-0.372428,-0.353762,-0.438991,0.053446,0.36503,0.539079,0.573756,1 +0.210465,-0.112227,0.745309,1.81974,1.19511,2.82815,1.73377,-0.226641,0.332931,0.058397,-2.19215,-1.95114,-2.03519,-2.61055,-1.42333,0.156574,0.852129,1.1787,2.222,1.25722,0.918985,1.61036,0.890164,-0.540685,-0.0991128,-1.35428,-1.39376,-1.21843,-0.883867,-0.43979,0.596789,0.774111,0.297593,0.389786,1.17318,0.502335,0.634589,-0.21305,-0.549866,-0.179628,-1.02355,-0.713285,-0.356737,-0.536829,0.0195317,-0.415018,-0.0390163,0.834238,0.357321,0.666609,0.405145,0.812728,-0.194501,-0.34869,-0.636025,-0.267212,-1.11596,-0.558227,-0.586761,-0.401411,1 +-0.840713,1.73346,0.917627,1.4692,1.25461,2.5339,-0.269664,0.432312,-1.37455,-0.6344,-2.15521,-1.47192,-2.08929,-0.557539,-0.396131,1.8134,1.29455,2.26161,2.12203,0.753384,-0.107744,-0.15143,-0.987291,-1.1471,-0.955206,-0.878577,-1.29668,0.284421,0.372013,0.522709,0.802815,0.761838,0.620567,-0.0732283,-0.015978,-0.495435,-0.986967,-1.12761,-1.11756,-0.0880829,-0.129607,0.0762493,0.956594,0.356623,0.825486,0.932701,0.762646,-0.318336,-0.0437627,-0.195877,-0.381102,-0.347174,-0.986294,-0.569442,0.0813675,0.658173,0.62586,0.797593,0.340244,0.639471,1 +-1.07141,2.69803,1.56729,2.53204,1.29861,-0.0771955,-1.45289,-2.17346,-1.74656,-1.50845,-1.96466,-1.22257,0.46026,2.66053,1.29475,0.903104,0.111443,-0.310951,-0.556665,-1.05037,-2.19273,-1.05067,-0.326487,0.282382,1.79839,1.51886,1.61215,1.42272,-0.423218,-0.885002,-1.71212,-0.921084,-0.916966,-0.0596809,-0.111309,0.78312,0.765553,0.786579,1.07698,0.595819,0.0060976,-0.556955,-0.677321,-1.13603,-0.61249,-0.412048,0.559036,0.73366,0.984733,0.695035,0.592468,-0.493152,-0.252536,-0.855721,-1.08249,-0.733846,0.0472663,0.296038,0.412276,0.756302,1 +0.320692,0.339346,1.07318,1.91316,1.98197,1.65765,1.12435,-0.412397,-1.8899,-2.44648,-1.30232,-1.24274,-1.30699,-1.64013,0.254973,1.14708,2.03994,2.03374,1.3494,1.56685,0.665291,-0.352039,-0.736488,-1.09954,-1.23939,-1.66185,-0.479161,0.267676,0.573372,0.923142,0.918812,1.09715,0.252289,-0.0496267,0.0662054,-1.21247,-0.636831,-1.02653,-0.407593,-0.699172,-0.156744,0.0533109,0.987131,1.13126,1.10598,0.336781,0.41714,0.248236,-0.649888,-0.299461,-1.09416,-0.738946,-0.559213,-0.488525,0.496855,0.524451,1.02679,0.482109,0.94037,0.774493,1 +-0.0691798,0.645165,1.21643,1.20235,2.51382,1.44102,0.202445,-0.511308,0.559694,-0.843893,-1.49998,-1.25074,-2.60762,-0.23461,-0.123548,0.923096,1.86263,1.71215,1.89681,1.97915,0.679679,0.145332,0.18839,-1.12023,-0.933324,-0.457585,-1.46292,-0.355797,-0.999136,-0.431871,-0.0115743,0.819225,0.972667,0.466062,0.705218,0.748451,-0.149132,-0.180227,-0.382594,-0.529822,-1.13927,-0.55428,0.0694325,-0.388655,0.614956,0.933812,0.606498,0.403942,0.935046,0.582733,0.178406,-0.137593,-0.456242,-0.980889,-0.440365,-0.386554,-0.214063,0.185608,-0.0668405,0.816398,1 +-0.0513283,1.62203,1.85898,1.01016,2.6353,2.27621,-0.126433,0.962912,-1.59383,-2.51693,-2.70708,-1.71914,-2.28679,-1.51412,-0.132798,0.297494,2.612,2.44366,1.96077,1.06529,1.06327,-1.19746,-1.79382,-2.10778,-1.02277,-1.27391,-0.799092,0.505925,0.475575,0.814427,1.06413,1.34591,0.519109,0.258378,0.476609,-0.290632,-1.09596,-0.645107,-0.827125,-0.600678,-0.525515,0.3103,0.722645,0.533797,1.01472,1.05393,0.142411,0.443394,0.014221,-0.976245,-0.894704,-1.2429,-0.658147,-0.152615,0.12712,-0.0267052,0.903743,0.982251,0.541816,0.344373,1 +-0.0388266,-0.455085,1.28297,0.694571,2.79844,1.5567,0.854924,-0.692805,-1.3195,-0.447646,-2.15602,-1.34615,-2.05837,-2.12057,-0.0251893,1.10609,0.0265301,2.31536,1.57352,2.47644,1.54162,1.46159,-0.356566,-1.15467,-1.67954,-1.33706,-1.12962,-1.09974,-0.271262,0.186716,0.964119,1.07966,0.440084,1.12091,1.33783,0.469133,0.67904,-0.417303,-0.571148,-0.673634,-1.32991,-0.576619,-0.997811,-0.637245,-0.362258,0.704121,0.189989,0.37853,0.465204,0.308323,0.0351973,0.500277,-0.172774,-0.725775,-0.735217,-0.49302,-0.481995,-0.43782,-0.0168578,0.214866,1 +-1.13349,0.60863,1.31858,1.63484,1.98137,0.633089,0.0181719,-0.473434,-1.38014,-2.34261,-1.59812,-2.33234,-2.47668,-0.658782,0.428336,0.995932,1.83914,1.4788,1.2528,1.47415,0.237788,-0.725377,-1.15683,-2.33607,-1.79763,-1.20391,-0.718546,0.171673,0.626983,0.927479,1.27734,0.677057,1.07305,0.368957,-0.756772,-0.703937,-0.638652,-0.91024,-1.1244,-0.830666,0.217863,0.997681,1.25339,1.37111,1.00498,0.696502,-0.10229,-0.655842,-0.645567,-1.28337,-1.14939,-0.96651,-0.866942,0.0790722,0.293137,0.607401,0.531192,0.596441,0.803991,0.274891,1 +0.914969,1.19186,0.962695,2.54963,1.20822,1.44621,-1.05921,-0.795974,-2.20428,-0.870977,-2.08664,-0.583956,0.387742,1.61007,1.16621,2.09226,0.94907,0.0955134,-0.563075,-1.51228,-1.95719,-2.1904,-0.959726,-0.184516,-0.323307,0.356211,0.893443,1.62323,0.786547,0.332323,-0.562215,-0.620674,-1.3148,-0.602187,-0.608521,-0.41801,0.315461,0.642307,1.08774,1.38306,0.350588,-0.150062,-0.749344,-0.816504,-0.812542,-0.581479,-0.8988,0.0960132,0.238831,0.593637,1.29082,1.07153,0.367318,-0.0082998,0.00727353,-0.995898,-1.03367,-1.15623,-0.379376,0.143123,1 +-0.917297,1.14147,1.55075,2.34764,0.92483,0.745394,0.455179,-0.071016,-1.62862,-0.62224,-2.72391,-2.48428,-2.30921,-0.0146489,0.160536,1.94327,1.86349,1.48786,1.6521,0.231146,0.552216,-0.760843,-1.47978,-1.80639,-0.707525,-0.62923,-0.563414,0.572858,0.528902,0.80148,0.84784,1.17271,1.01665,0.513348,-0.0756221,-1.09775,-0.787073,-1.11683,-0.330061,-0.671685,-0.307159,0.823741,0.786861,1.21599,0.791266,1.01792,0.342717,-0.105927,-0.661489,-1.02448,-0.628578,-1.09422,-0.552275,-0.30638,-0.032673,0.548457,0.752158,0.511663,0.442959,0.1767,1 +-1.72147,1.19484,1.33009,1.26921,1.342,1.98894,-0.260312,-2.6028,-1.51464,-3.25509,-2.21799,-2.22182,-0.0822567,1.96012,2.78324,3.00451,2.00658,1.64414,0.34477,-1.34584,-1.63294,-1.85778,-2.30471,-0.195269,0.139509,1.13544,1.5238,1.81716,0.789079,0.781777,-0.761663,-1.27094,-1.48826,-1.61562,-1.21908,-0.375984,0.219681,0.875943,0.955733,1.45656,0.562055,0.641168,-0.486126,-0.697453,-0.608364,-1.28946,-0.498853,-0.796832,-0.0707224,0.884074,1.03694,1.02924,0.810899,0.714467,0.0353925,-0.649436,-0.635835,-0.595288,-0.927653,0.0275758,1 +-0.0864019,-0.0317975,1.58907,1.47528,1.22004,1.56701,-0.142806,-0.679858,-2.64728,-1.09644,-2.2646,-1.54446,-2.0317,0.651636,0.112509,2.62526,3.00594,2.03174,0.27873,-0.545553,-0.344572,-0.638737,-2.27935,-1.72737,-1.63634,-0.0728528,0.717694,1.0202,1.89985,1.67158,1.58627,0.468936,0.171957,-0.544144,-0.632017,-1.23787,-1.52752,-1.22168,0.0237362,-0.143968,1.03792,0.788451,1.51463,0.851166,0.0621783,0.00402684,-0.83448,-0.599218,-1.25564,-0.802376,-0.344999,-0.366149,0.0322471,0.416516,1.01586,0.628171,0.421572,0.445213,-0.126643,-0.17731,1 +1.1501,0.515357,2.90126,1.41259,2.05453,0.465714,-1.40466,-1.78259,-1.71838,-0.639552,-1.26911,1.10997,1.93433,2.14395,1.19851,0.8774,0.675875,-1.88284,-2.14951,-2.3453,-1.98445,-0.587673,1.32014,1.2208,1.0745,0.828234,0.733792,-0.14708,-0.572807,-1.16195,-1.55536,-0.0286647,0.301263,0.415799,0.808487,0.778164,0.298411,0.199421,-0.471211,-1.19617,-0.890213,-0.630453,-0.00730348,-0.0786385,0.627213,1.2752,1.21094,0.499717,-0.319493,-0.836504,-0.905483,-1.15002,-0.151594,-0.258595,0.852354,0.485984,0.94187,0.682904,0.0428419,-0.463744,1 +-1.04786,2.4299,2.7673,1.71431,1.64954,0.112791,0.861895,-2.76238,-2.92396,-2.37109,-1.90881,-0.311513,1.21675,1.92845,1.00275,2.58977,0.261336,0.860208,-0.0860192,-2.57368,-1.54591,-1.20791,-0.34033,0.416649,1.55609,1.75656,1.11422,0.483721,0.66093,-0.0809202,-0.680005,-1.55096,-0.707319,-0.408282,-0.276757,0.894978,0.693625,1.12413,0.717151,0.804367,0.396501,-0.075553,-0.414343,-0.576278,-0.98013,-0.270572,-0.366764,0.715815,0.996392,1.16072,0.727092,0.0987648,-0.231197,-0.564461,-0.702276,-0.443548,-0.191369,-0.0482602,0.167177,0.594397,1 +-0.176432,1.68415,2.10069,2.5374,0.207189,0.449573,-2.38938,-2.43638,-2.9389,-0.664747,-0.833716,0.179699,2.457,1.47104,1.04374,1.15813,-1.38058,-2.42374,-1.59724,-1.98632,-0.124069,0.933339,1.39071,1.93575,1.2269,0.753324,0.395292,-1.46997,-0.933741,-1.62157,-0.989269,-0.688641,0.448693,1.24307,0.653734,0.65961,0.28491,-0.668991,-1.16147,-1.11052,-0.726699,-0.706253,0.191862,0.559923,0.576223,0.520483,0.117168,-0.141933,-0.378251,-1.1838,-1.14185,-0.4812,-0.454185,0.575586,0.588204,0.678213,0.805079,0.471696,-0.675856,-0.677761,1 +0.789952,1.07949,2.14199,1.53338,0.292006,0.250997,0.11091,-1.77102,-2.04994,-2.50457,-2.04678,-0.140207,0.673189,1.57382,2.07597,0.6796,0.88331,0.534816,0.365956,-0.805589,-1.21491,-0.884036,-0.90857,-1.18745,0.287454,0.423965,1.20326,1.33655,0.481516,-0.0196229,-0.114238,-1.03235,-1.28633,-1.45872,-1.08921,-0.640749,-0.433328,0.573371,0.611397,0.771903,0.347998,0.0326828,-0.0379108,-0.805595,-0.464836,-0.99979,-0.552088,-0.129073,-0.301269,0.615496,0.711189,0.42618,0.458512,0.0437841,0.134045,-0.107109,-0.593507,-0.832054,-0.799287,-0.440367,1 +-1.69899,2.0754,2.44143,2.43214,2.27005,1.4277,-0.769093,-0.69216,-1.5887,-2.27362,-1.44295,-0.395759,-0.229963,0.305089,0.928113,1.26308,1.09848,-0.248995,-0.714603,-1.35428,-2.34862,-1.78469,-0.966374,-0.422064,0.0296349,0.809434,1.66665,1.43377,0.183117,-0.411655,-0.570482,-0.962687,-1.46687,-0.5599,-0.744651,-0.314141,0.595618,1.21654,0.528985,1.02444,0.136531,-0.593848,-0.852457,-0.915701,-1.15459,-0.317179,-0.562826,0.64441,0.262911,0.462571,0.499751,0.880961,0.522882,-0.0824717,-0.245878,-0.533669,-0.421365,-0.137496,0.0535268,0.115702,1 +0.250173,2.04933,1.4656,1.67787,2.75779,0.6332,0.291599,0.904026,-0.466993,-1.87683,-2.11489,-2.59261,-2.38008,-1.28926,-0.289014,1.14441,2.97362,1.10474,1.2298,-0.100132,-0.0243912,-1.0415,-2.06659,-1.19533,-1.18978,-0.617687,0.243982,0.65716,0.841386,1.3214,1.81113,1.1271,1.09335,0.0256141,-0.199588,-0.990022,-1.05048,-1.38899,-1.08535,-0.540151,0.26231,0.476477,0.663546,0.596972,0.698856,0.771368,0.252303,-0.466461,-0.697893,-1.36776,-1.28411,-0.617918,-0.541695,0.186559,0.248362,1.17368,0.547963,1.09487,0.450042,-0.217705,1 +0.178538,0.628256,3.01059,1.54383,1.37392,1.67174,1.99912,-1.00307,-1.74838,-1.39723,-2.63945,-3.03491,-2.03087,-0.92134,1.34077,0.840648,2.90196,2.72156,2.39391,0.404073,0.00232678,-0.934811,-0.554658,-2.338,-2.26843,-1.66175,-1.03921,-0.0933257,0.35659,1.75557,1.39142,1.83143,1.43901,0.364336,0.142284,-0.538392,-1.06031,-1.01227,-0.717138,-0.386674,-0.115633,0.0885469,0.754116,1.48789,0.774224,0.894992,0.223394,0.524821,-0.26042,-0.95991,-0.675333,-0.723263,-1.19114,-0.409649,0.417872,0.697974,0.891258,0.578205,0.975379,0.818025,1 +1.55728,1.09794,1.03861,1.39021,1.21015,1.33213,0.203869,-1.36578,-1.80875,-2.76545,-1.56486,-0.00827339,-0.936113,0.139933,2.09625,1.46849,1.39337,-0.128138,0.047225,-1.58866,-2.1319,-1.20837,-1.97339,-0.700628,0.32169,1.30016,1.81635,0.854994,1.34849,0.133463,0.0226192,-1.08224,-1.45274,-1.06222,-1.13192,-0.709368,-0.278571,0.299823,1.41793,0.945798,1.26295,-0.00384439,0.210859,-0.989477,-0.8933,-1.13015,-0.414666,-0.43052,0.0791567,0.461985,1.31592,0.867719,0.302705,-0.0725091,-0.0813722,-0.69703,-0.822784,-1.00474,-0.638692,-0.153992,1 +-0.137467,0.642591,0.761067,1.001,1.99932,0.541563,0.341871,-1.80029,-0.686875,-2.59609,-1.79625,-1.8565,-0.607311,1.71046,1.86425,1.95642,0.87274,1.30194,-0.483268,-1.57354,-1.46605,-0.719416,-0.587862,-1.06193,0.120024,0.354246,1.33216,1.3593,1.30558,0.394553,0.339691,-0.685286,-1.17287,-1.24951,-0.480922,-0.141574,-0.147429,0.708528,0.472525,0.80102,0.490997,0.0889047,-0.0389917,-0.348256,-0.692824,-0.888078,-0.647878,-0.764909,0.0340826,0.676942,0.312393,0.89974,0.522301,0.360951,0.220877,0.0714425,-0.798962,-0.808021,-0.692226,-0.740573,1 +-1.10617,1.51935,0.972002,2.16094,1.89778,0.618273,0.127258,-1.82915,-1.19348,-0.474438,-0.961243,1.23494,2.33775,2.78021,0.858068,0.98904,0.00179363,-1.69841,-1.40144,-1.59043,-0.716266,-0.231599,0.0342595,1.20006,1.33612,1.69198,0.400898,-0.470565,-1.21581,-0.904621,-1.17224,-0.589739,0.25451,0.639664,1.0732,0.778313,0.938538,0.145463,-0.602981,-0.724335,-1.20557,-0.583892,0.021733,0.319321,0.252078,0.328944,0.469141,0.307594,-0.164906,-0.789278,-0.911237,-1.13395,-0.184143,-0.30129,0.204188,0.930143,0.896614,0.360976,0.314272,-0.43898,1 +-1.62463,1.22121,1.23194,1.54205,2.07767,-0.413911,-1.34234,-2.3639,-1.69702,-1.87487,0.59678,0.226354,2.61398,3.62119,1.95647,1.28463,-0.977758,-2.01593,-2.20352,-2.32124,-0.323231,0.633754,1.71747,2.17928,2.22924,0.634071,-0.238621,-0.383644,-1.29526,-1.66944,-0.940032,-0.651541,0.444755,1.38933,1.52294,0.759823,0.833636,0.148279,-0.63517,-1.20441,-0.570966,-0.836393,0.122202,0.759075,0.940207,1.20365,0.71911,-0.329239,-0.547897,-0.956202,-0.856732,-0.298871,0.22349,0.846313,1.07285,0.56908,1.04646,0.35059,0.012992,-1.09881,1 +0.425112,-0.136351,0.897167,1.10522,2.52877,2.58365,0.860962,0.636242,-0.024634,-0.940653,-2.11913,-2.56215,-0.707897,-0.680173,-0.096395,-0.000129632,1.67875,1.33446,1.76084,0.770856,1.43092,-0.00575452,-0.422189,-0.443606,-1.07602,-1.68677,-1.05248,-0.252858,-0.507215,0.344453,1.12437,1.31965,1.07114,0.554767,0.398182,0.0147517,0.246396,-0.89642,-0.524835,-0.8235,-0.838772,-0.342452,-0.0269929,-0.17391,0.0733756,0.250467,0.384723,0.535225,0.0491122,-0.305936,-0.103913,-0.738848,-0.934747,-1.02492,-0.856675,-0.454858,-0.382116,-0.0262534,0.744836,0.647592,1 +-0.681537,2.58694,1.72006,0.78561,1.44102,0.453039,0.41939,-0.612498,-2.54109,-2.02523,-1.01427,-1.19209,0.952329,0.269023,1.96321,2.62948,2.31171,0.085482,-0.547788,-1.14146,-2.00779,-1.5415,-1.79723,-0.312263,-0.364026,0.994789,1.65336,1.95892,0.788169,0.623129,0.306842,-0.0899312,-0.528114,-1.09838,-0.865809,-1.20129,0.191967,0.577178,0.841859,1.12136,0.538463,0.544918,0.0831965,-0.686452,-0.682051,-1.2048,-1.04036,-0.234556,-0.22335,0.682944,0.907989,0.456325,0.930951,0.874315,0.406442,-0.285255,-0.62581,-0.445743,-0.869229,-0.350744,1 +0.586147,1.20593,2.6968,2.53112,1.15702,1.36203,-1.01235,-3.47224,-3.13051,-2.60186,-1.33384,0.669935,3.04774,3.01891,3.00192,1.67778,-1.10169,-1.20252,-1.39712,-1.20221,-1.74163,-0.811714,1.31454,1.0612,2.41157,1.84604,0.955947,-0.711779,-1.66283,-1.55965,-0.8276,-0.154835,-0.0310348,0.653064,1.09453,1.4895,0.691719,0.171371,-0.667901,-1.43774,-0.871034,-0.783959,-0.0167905,0.0881637,0.865483,1.13277,0.834045,0.50111,-0.503598,-1.00971,-1.39707,-0.764872,-0.135745,-0.0462577,0.732468,1.10676,0.518852,0.551675,-0.0402403,-0.767605,1 +0.808862,0.40633,2.32681,2.04328,1.3139,3.13917,0.88033,0.356156,-0.985573,-0.684085,-2.40555,-3.27363,-2.74359,-2.65638,-1.9715,-0.281472,0.302127,1.73011,2.02424,1.90745,2.08937,0.818778,0.00213286,0.0774108,-1.38629,-1.39775,-1.12614,-1.53273,-1.28577,-0.255668,-0.0651059,0.433012,1.22261,1.01933,1.2201,1.3134,0.420473,0.188416,-0.223055,-1.06628,-0.961021,-0.994208,-0.98288,-0.253781,-0.141462,-0.104468,0.423172,0.884828,0.697826,1.03745,0.634226,0.435782,0.31253,-0.251944,-0.584217,-1.12943,-1.26269,-0.681533,-0.773796,-0.381411,1 +-0.0764177,1.40294,0.519929,1.42364,1.36608,0.900558,0.742941,-1.52685,-1.15035,-1.5066,-1.2108,-1.18026,0.758123,0.396016,0.420405,1.86886,0.838559,1.69506,0.0793371,-0.485071,-1.32308,-0.746373,-1.17944,-0.364827,-0.87813,0.50592,1.17391,1.2692,0.731324,0.79597,0.901862,-0.716444,-0.8535,-1.13777,-1.2175,-0.849031,-0.643344,-0.31326,0.533865,0.67495,1.37242,1.21495,0.0200378,0.2226,-0.740558,-0.466854,-0.940229,-0.485062,-0.474189,-0.235686,0.0554606,0.406787,0.93496,0.39213,0.75505,-0.0571326,-0.406031,-0.226045,-0.418052,-0.736581,1 +0.923695,1.47332,0.36807,0.617613,2.68695,2.28463,1.64609,0.520513,-0.95361,-0.830308,-0.97177,-2.8049,-2.86802,-2.25085,-1.36897,1.38774,0.605162,0.891713,2.53468,0.791644,1.19711,-0.0882229,-0.929088,-0.855445,-1.15128,-0.766882,-0.627886,-0.676951,-0.635276,0.442788,0.946699,1.09755,1.25674,1.13828,0.395001,0.120115,-0.500496,-0.396693,-0.478362,-0.431488,-0.684422,-0.361462,-0.134134,0.429963,0.171191,0.73193,0.928927,0.755619,0.398316,0.540702,0.377082,-0.493355,-0.200711,-0.894287,-0.778386,-0.777381,-0.032081,0.259188,0.0900043,0.849159,1 +1.38603,1.51291,1.08585,0.835946,1.31828,-1.07105,-0.976465,-2.50937,-1.05726,-1.72641,-0.665934,0.589592,1.742,1.67708,2.413,1.04378,-0.622185,-1.94051,-2.69556,-1.24858,-0.544454,0.48454,1.2643,2.00621,1.11772,0.238923,0.470793,-1.57381,-1.39906,-1.16021,-0.686104,0.343942,0.837183,0.618983,0.616762,0.227824,-0.164793,-0.700481,-0.488324,-1.01809,-0.271448,0.260635,0.418835,0.735641,1.27126,0.556827,0.528907,-0.165564,-0.843284,-0.820162,-0.579714,-0.646634,-0.171188,0.412204,0.851653,0.572941,0.672547,-0.135244,-0.232563,-0.838939,1 +1.48258,1.54302,1.20808,1.70122,0.378819,0.1583,-1.25345,-3.12594,-2.02326,-1.1182,-0.272913,0.400269,1.27243,2.40038,1.5616,0.75218,-0.779882,-1.49557,-2.32964,-1.53665,-0.681423,0.628082,1.55697,0.895438,0.996261,1.42063,-0.242454,-1.12961,-0.853296,-1.05276,-1.59937,-0.0369989,0.635821,0.663229,1.45986,1.02306,0.0778921,-0.337603,-0.959679,-0.625002,-0.559235,-0.822081,-0.377126,0.133891,0.479037,0.420828,0.740463,-0.135826,-0.616736,-0.3591,-1.02568,-0.543632,0.11894,0.406939,0.857034,0.536988,0.335722,-0.0850439,-0.346514,-0.91831,1 +-0.264488,0.320489,2.08396,2.15223,1.87851,2.64583,1.87641,-1.33234,-2.67337,-1.27514,-1.56815,-1.26451,-0.0244394,0.938387,1.7071,2.75241,2.41735,1.12688,2.03835,-0.182368,-1.37441,-1.83526,-2.38084,-1.917,-0.657039,-0.516374,0.188,1.15406,1.54801,1.34675,1.02189,0.572262,-0.448307,-0.299182,-1.04732,-1.69949,-0.970383,-0.806198,-0.195891,0.0305898,0.809815,1.53687,1.24812,0.743866,-0.152546,-0.065509,-0.416809,-1.36683,-1.3058,-0.431771,-0.537991,-0.282079,0.701981,0.614274,0.859853,0.824632,0.508425,0.501626,-0.197982,-0.483815,1 +0.166351,0.403348,1.14514,2.78704,1.33717,0.108794,0.582258,-0.650996,-2.5007,-2.5137,-0.955661,0.345882,0.969937,2.50463,1.50643,2.07042,0.625441,0.231658,-0.103418,-1.40997,-1.2563,-1.87998,-1.25997,0.127308,0.913433,1.60476,1.06122,0.680552,-0.165244,-0.579123,-0.931932,-1.55072,-0.979965,-0.438065,-0.221357,0.281327,0.664225,1.21288,1.07219,0.943665,0.135649,-0.826569,-0.825691,-1.16136,-0.492318,-0.195371,-0.168652,1.07372,1.23124,0.785585,0.758962,0.0760459,-0.390002,-1.07015,-0.808872,-0.578677,-0.617434,-0.108378,0.158812,0.934292,1 +-0.310919,1.84489,0.732728,2.3037,1.12068,0.271356,1.05496,-1.55696,-1.03323,-1.69942,-1.83191,-1.09358,-0.547446,1.06264,1.30495,1.48935,0.866228,1.97371,0.14204,-1.38641,-1.80463,-1.84448,-1.47797,-1.31443,-1.04156,0.426589,1.46701,1.81993,1.02385,0.503614,0.0144878,-0.184651,-0.271132,-1.04004,-1.54155,-1.20671,-0.681951,0.30363,0.492675,1.12985,0.766429,0.936107,0.575962,0.0165489,-0.671482,-1.24637,-0.641434,-0.93827,-0.847473,-0.300455,0.529244,0.575798,1.2793,1.17519,0.340791,0.000783571,-0.446275,-0.986723,-0.970944,-0.838849,1 +0.552533,0.893836,1.75541,1.34133,0.390634,0.103627,-0.739809,-1.22973,-1.10064,-0.797436,-0.704298,-0.238941,0.195511,1.11807,2.49701,1.86915,-0.083732,-1.21878,-1.39194,-1.76515,-1.1332,-0.416224,-0.158248,0.984859,0.576022,1.30495,1.34801,0.90217,-0.384087,-1.0922,-0.965813,-1.62111,-0.72183,-0.190119,0.743226,0.948744,1.01625,0.431148,0.0439917,-0.13086,-0.746381,-0.478238,-1.17072,-0.172906,-0.543747,0.609535,0.228525,0.837728,0.351838,0.727669,-0.00937758,-0.363506,-0.803305,-0.464747,-0.553266,-0.210689,-0.0371131,0.189899,0.900956,0.517502,1 +0.287364,1.51368,1.34798,1.51699,1.93517,0.112305,1.18918,-0.955793,-1.42645,-0.723312,-1.00897,-1.08949,-0.858584,-0.15578,1.53583,1.80535,0.797619,0.183718,0.530163,-0.10538,-2.17062,-1.5748,-1.26284,-0.496732,-0.766973,1.00717,0.33248,0.72744,1.0103,1.111,0.117548,0.238827,-0.83673,-1.23208,-0.698022,-0.930244,0.14168,0.0513339,0.611025,0.648261,1.10001,0.506509,0.494358,0.320203,-0.300594,-1.05889,-0.807888,-0.338624,-0.597204,-0.382495,0.320235,1.09646,0.508425,0.701288,0.381985,-0.236805,-0.714615,-0.736692,-1.13401,-0.612181,1 +-0.916439,1.2829,2.06752,1.89822,1.94882,2.40771,0.391406,0.0912113,-0.382725,-2.47104,-1.9925,-1.94193,-0.0737541,0.49199,0.905726,1.25663,1.57757,0.721769,0.867255,0.215902,-0.821802,-1.83187,-0.914421,-0.992819,-0.235038,0.516905,0.765278,1.46033,1.37826,1.47712,0.733959,-0.128403,-0.466249,-1.17998,-1.1149,-1.46576,-0.94133,0.0831822,0.353981,0.321592,1.16786,1.18831,0.348849,0.256369,0.039337,-0.600471,-0.598865,-1.28157,-1.11119,-0.231956,0.223016,-0.021977,0.955399,0.947088,0.467023,0.791916,0.527208,-0.328776,-0.827688,-0.656316,1 +-1.68786,1.97824,2.45393,1.25932,1.29568,0.311146,-0.0111125,-1.01229,-1.28698,-2.05235,-0.590707,0.788093,0.806798,2.54984,0.801001,1.33344,1.28019,0.0392323,-0.351095,-1.51609,-1.43812,-0.521574,0.127581,1.29175,1.23432,0.933733,1.19761,-0.0472109,-0.363512,-1.14757,-1.4192,-0.51797,-0.897002,0.420309,0.0266641,1.31019,1.11816,0.90076,0.364323,-0.599631,-0.552175,-0.423409,-0.445627,-0.453439,-0.326077,0.365222,0.916507,1.19749,0.436701,0.359401,-0.412349,-0.116318,-1.09469,-0.440915,-0.537784,0.208953,0.321767,0.371679,0.584344,0.630839,1 +-0.79617,0.518484,0.68648,2.69504,0.754922,0.707768,0.321988,0.0177649,-1.17347,-2.57847,-2.60486,-1.78021,-0.795556,0.418298,1.73383,2.77011,2.36891,1.69667,0.677376,-1.09179,-0.224378,-1.4956,-1.80479,-1.69668,-0.422684,0.584503,0.289735,0.727913,0.662092,0.777556,0.923858,-0.510978,-1.09737,-1.31695,-1.22032,-0.529929,-0.889637,0.172238,-0.0470814,0.401146,1.15183,0.844735,0.934579,0.539102,-0.109892,-0.43067,-1.07905,-1.23135,-0.60102,-0.456638,0.0581854,0.624875,0.973567,0.824813,0.710148,0.4149,-0.361526,-0.271326,-0.63118,-0.740625,1 +-0.115296,2.48347,2.4238,2.67985,2.36099,2.19343,2.73555,1.49211,-0.326716,-0.378382,-1.52515,-3.60188,-3.10342,-1.30019,-1.04906,0.27615,1.34865,2.55467,1.75842,2.52652,1.23409,0.372306,0.51459,-0.922725,-1.68962,-2.03947,-2.04249,-1.50329,-1.23126,-0.52564,-0.304221,0.467516,0.600174,1.05426,1.26946,1.40331,0.996515,0.264342,-0.774971,-0.771306,-1.01732,-0.818487,-1.12519,-0.933401,-0.423976,0.591929,0.661602,0.634498,1.45825,1.21707,0.790713,0.105606,-0.300414,-0.705789,-1.01807,-0.587228,-0.722787,-0.592871,-0.158448,0.227763,1 +1.35336,1.6704,0.383448,1.16015,1.57139,0.914778,0.628357,0.0158723,-1.10739,-2.21248,-2.36862,-0.966225,0.543951,1.33382,2.4005,2.18824,1.6675,0.503776,-0.0783986,0.0873704,-1.16508,-1.2097,-1.38169,-1.19892,0.217064,0.741892,0.919438,1.5642,0.960119,1.06116,-0.328094,-0.0303957,-0.705489,-0.700992,-0.848763,-0.443417,0.301553,0.825533,0.918914,0.774011,1.00987,0.697973,0.552789,-0.105124,-0.475329,-0.483298,-1.16241,-0.511647,-0.132266,-0.116253,0.694195,1.08604,1.10673,0.113448,0.131793,-0.645714,-0.458839,-0.748405,-0.630219,-0.305268,1 +0.122752,1.97549,1.90226,2.61282,2.47543,2.58473,2.51088,-0.706441,-0.963086,-1.52427,-1.71302,-3.38344,-1.02406,-0.757779,-0.374676,0.403063,2.67415,2.84113,2.98493,0.799353,0.515286,-0.435898,-1.80349,-2.12729,-2.28059,-1.79275,-1.33744,-1.04221,0.187052,0.354089,1.7386,1.25702,0.838603,0.990418,0.753335,0.126723,-0.496134,-1.41625,-1.03571,-0.969573,-0.45695,-0.197938,0.0982202,0.459224,1.01145,0.881613,0.712976,0.635407,0.399603,-0.459111,-0.392107,-1.25716,-0.642472,-1.07196,-0.509718,0.14234,0.423604,0.557895,0.869921,0.911071,1 +-1.59972,2.12822,1.5652,2.34758,0.991748,1.2068,1.81483,-1.12075,-0.832172,-1.20229,-1.69474,-1.43861,-0.469424,0.257464,0.877377,0.469692,0.685369,1.58304,1.91154,-0.0694862,-0.756065,-0.150177,-1.00976,-1.58132,-0.932641,-0.824533,0.415165,0.860176,0.58715,0.746227,1.12134,0.50801,0.0716149,0.47546,-0.53098,-0.678134,-0.452386,-0.880041,-0.0164113,-0.0130178,0.507723,0.470036,0.880674,0.315534,0.802743,0.241635,0.161823,-0.272835,-0.710437,-0.352361,-0.310177,-0.0741648,-0.0363055,0.308029,0.104577,0.881646,0.475943,0.811148,0.123886,0.177348,1 +-0.836908,0.290473,1.80647,2.12398,2.06454,-0.429567,-1.92238,-1.51562,-2.48134,-1.05698,-0.0167814,0.521599,0.881182,2.94951,2.48987,1.99463,-0.40234,-1.37116,-1.57067,-1.36996,-1.67136,-1.06216,0.109177,0.524652,1.50437,1.00176,1.33138,-0.391572,-0.113485,-0.803132,-0.848721,-0.943218,-0.0680638,-0.0969594,0.580268,0.829584,1.19356,1.09379,0.337693,-0.702775,-0.724036,-1.39019,-0.385159,0.0473735,0.412898,0.713526,0.745522,0.759593,0.854591,0.376851,-0.447348,-1.23117,-1.30026,-0.937017,-0.45348,0.216382,1.00798,1.06069,0.420032,0.802996,1 +0.932306,0.192606,1.55254,1.0717,2.54487,1.24666,0.364405,-0.825891,-1.15499,-1.18237,-0.655001,-1.72254,0.965,2.12818,1.81592,1.71014,0.765709,0.359678,0.136546,-1.34555,-1.57139,-1.81169,-0.868558,-0.497576,0.247382,1.73791,0.830139,0.808325,0.77313,-0.0508267,-0.551634,-0.946456,-0.92035,-0.675746,-0.0769511,-0.257711,1.06743,1.49705,1.35478,0.712119,0.188791,-0.39298,-1.01434,-1.17584,-1.19046,-0.492543,-0.385916,-0.130422,1.06607,0.857392,1.05082,0.517327,0.591934,-0.302933,-0.844355,-1.09593,-0.853029,-0.413945,-0.0120634,-0.00276105,1 +0.656952,2.1788,1.67269,0.802053,0.87394,1.04607,1.51189,-0.946308,0.452902,-0.519589,-1.88546,-0.925519,-0.778569,-0.613513,-0.436772,-0.104194,1.71691,1.25725,1.2722,1.18373,1.2426,-0.0506647,-0.0975316,-0.261118,-0.855026,-0.570129,-0.331089,-0.237625,0.342823,0.488112,0.416606,1.49313,1.34817,0.361111,0.130279,-0.121089,0.0856762,-0.943646,-0.494852,-0.474552,-0.715754,-0.815617,0.0961517,0.0890223,0.80618,0.427691,0.496549,0.522666,0.0142795,-0.0768014,-0.609214,-0.412591,-0.887263,-0.903216,-0.882076,-0.57418,-0.117364,-0.0798344,0.750053,0.335999,1 +1.50621,-0.178898,1.43725,1.76362,0.340221,0.657113,-0.433833,0.676374,-0.745723,-0.751632,-2.16738,-1.13888,-0.0299981,0.553306,1.32767,0.109493,1.75757,1.19605,1.93586,1.34633,0.788684,0.27808,-1.36506,-1.38142,-0.976955,-0.311013,-0.17042,-0.485636,0.111605,0.991185,1.43006,1.04508,1.0172,0.735143,-0.304683,-0.185111,-0.360088,-0.427233,-0.969609,-0.605007,0.0890811,0.355539,0.775244,1.03171,1.106,0.293181,0.601006,0.137137,0.123003,-0.601046,-0.850511,-0.904483,-0.548045,-0.401761,-0.138102,0.362947,0.379541,0.310181,0.777692,0.123032,1 +-0.915495,2.18253,2.6198,1.25999,0.317377,-0.620193,-1.19081,-2.95298,-1.05132,-1.88729,0.422163,1.83483,2.398,1.86577,0.387677,-0.433747,-0.201069,-2.01523,-0.908144,-1.71339,-0.576984,0.967235,1.56231,1.48844,0.684985,0.749551,0.0200425,-1.50339,-1.64931,-0.899897,-1.00651,-0.419953,0.686397,1.25629,1.2835,1.01149,-0.45281,-0.466196,-1.29593,-0.556287,-0.111877,0.0206652,0.287276,1.1886,0.688908,0.929026,-0.217694,-0.82723,-0.40448,-0.682028,-0.965013,-0.374482,0.0538356,0.474176,0.696945,0.516749,0.5624,0.00344559,-0.902842,-1.12498,1 +-1.33812,0.812926,1.20185,1.32762,1.96911,0.333691,-0.782275,-1.46461,-1.34376,-1.79843,-0.251312,0.239322,2.87112,1.50903,2.36193,1.45888,0.912703,-0.733617,-2.67859,-2.16375,-2.38331,-0.200608,-0.0905504,0.892306,1.75778,1.47892,0.0567918,-0.783271,-0.426156,-0.915179,-1.98223,-0.845609,-0.261322,1.13731,1.46972,1.70323,0.62827,0.0925876,-0.213036,-0.503437,-1.26213,-0.657117,-0.423426,-0.248239,0.732758,1.10529,0.74856,0.389205,-0.0426516,-0.517155,-1.19237,-0.662093,-0.813524,-0.307387,0.103316,0.709257,1.20592,0.849695,0.890483,0.325461,1 +-1.62051,1.34767,1.27625,2.49125,2.62626,0.632184,0.737664,0.476703,-0.295355,-2.68665,-2.82553,-2.25392,-1.20189,-1.44043,0.866931,1.80273,2.78346,1.13687,2.20505,1.24558,-0.220053,-0.298469,-1.76583,-1.90081,-1.57995,-1.33382,-0.566458,0.409679,1.18819,1.57391,1.63804,0.75507,0.956821,0.0442533,-0.729847,-0.355121,-1.1949,-0.802741,-1.00602,-0.572503,0.35492,0.532131,0.509498,0.927985,0.883168,0.189364,-0.172491,-0.33462,-1.01671,-0.768084,-0.895327,-0.815135,-0.844453,-0.0670818,0.61896,0.74202,0.47531,0.970439,0.375645,0.214645,1 +0.127158,0.204175,2.81044,1.14202,1.32165,1.54467,-1.22733,-1.80082,-0.968087,-2.40968,-2.50694,-1.91048,0.0989114,0.844789,2.23456,1.69707,1.3906,0.592384,0.201034,-1.21963,-2.29419,-2.00684,-1.55661,-0.76277,-0.051875,1.21595,0.667582,1.93105,0.471519,1.05344,0.252477,-0.763512,-0.732412,-1.46333,-1.19365,-0.545422,-0.204585,1.16838,0.565335,0.737513,0.431831,0.350063,-0.318058,-1.03192,-1.2586,-1.1057,-0.431394,-0.390247,0.322094,0.954974,1.16303,0.539802,0.845927,0.550598,0.13068,-0.874958,-0.988067,-0.959909,-0.308953,-0.17545,1 +-0.635535,-0.122208,2.40671,2.37149,2.24752,0.903959,-1.03201,0.704871,-1.61822,-2.35129,-2.12388,-1.76661,0.505772,0.440339,0.127862,1.42635,2.32669,1.85544,0.791142,-0.144668,-1.28903,-0.960144,-0.531135,-1.24141,-0.841473,-0.39596,0.676403,0.503997,1.53747,0.763499,0.717102,-0.063606,-0.671167,-0.769921,-0.594053,-0.4719,-0.232943,-0.786371,0.0122874,0.509954,0.648949,1.06923,0.322487,0.310789,-0.155991,-0.412789,-0.621257,-0.462993,-0.377725,-0.765076,-0.599616,0.455565,0.267795,0.925006,0.343501,0.621497,0.0308244,0.313964,-0.484956,-0.271075,1 +-1.34834,1.97136,0.977217,1.42234,1.63076,1.11662,1.185,-0.509888,0.611304,-0.681355,-2.13283,-2.35462,-2.58868,-0.857185,0.167676,0.518483,0.386924,0.798624,1.38269,1.59771,1.87089,0.801238,-0.15382,-0.968365,-0.25553,-0.995988,-1.21028,-0.510402,-1.20281,-0.808778,-0.258497,0.290894,0.472804,0.971344,0.363212,0.331095,0.222045,0.169955,0.207215,-0.431855,-0.49913,-0.619221,-0.803327,-0.487691,-0.492818,-0.311209,0.764414,0.968894,1.13477,0.946256,0.311267,0.517543,-0.321594,-0.580925,-0.675971,-0.650696,-0.736122,-0.627714,-0.689444,-0.101335,1 +-1.51137,1.90473,2.54036,2.26755,1.39416,0.863153,-1.13943,-0.959858,-0.640229,-1.05989,-0.079397,0.613896,1.66488,2.69082,2.09472,0.0916559,0.423126,-1.10107,-1.64498,-0.690902,-1.66334,-1.10144,0.428024,1.38009,0.791492,1.47419,0.990053,-0.197176,-0.140044,-1.54521,-1.60864,-0.667178,0.356788,0.0847014,0.787888,1.16102,0.806184,-0.073652,0.320265,-0.918193,-0.655997,-0.701306,-0.767338,0.218446,0.418553,0.991502,0.989855,0.365325,0.265988,-0.155147,-0.24921,-0.675147,-0.370726,-0.0918463,-0.106342,0.0862284,0.686371,0.604134,0.137692,0.0870311,1 +1.68922,0.829065,0.93565,1.61518,0.228787,0.375049,-2.356,-3.10417,-2.44358,-1.52614,-1.28471,1.34176,2.63219,2.74461,2.39338,-0.25115,0.383643,-1.75246,-1.63294,-1.73424,-0.882462,0.817029,0.874539,1.23234,1.09999,0.29673,0.711058,-0.749262,-1.24455,-1.22117,-0.855393,-0.700398,-0.155345,1.27975,1.14442,1.32168,0.924147,0.379265,-0.922319,-0.595062,-0.91115,-0.306648,0.354969,0.00793242,0.80244,0.346346,0.863726,-0.237613,-0.761257,-0.956173,-0.713056,-0.416677,-0.0279693,0.431426,0.309556,0.885639,0.88461,0.717013,-0.250452,-0.591066,1 +0.770956,0.85367,1.52906,1.53531,0.918326,0.803622,-0.928034,-2.25202,-2.19247,-2.28362,-2.52313,-0.105093,1.54974,2.72212,2.48764,2.38281,2.30746,0.970134,-0.343087,-1.56533,-2.52449,-1.3602,-0.57402,-0.400693,0.0790417,1.11418,1.6918,1.47259,0.975421,0.203213,-0.587954,-1.06734,-1.02142,-1.45345,-0.24752,0.0495709,0.28358,1.22215,1.25704,1.24233,0.504136,-0.274508,-1.01478,-1.1695,-1.16061,-0.594763,0.0617318,0.568475,1.05547,0.924976,0.648658,0.534056,-0.267568,-0.466376,-0.386265,-0.624142,-0.867631,-0.619652,-0.376755,0.0860136,1 +1.65026,0.352695,1.24456,1.34882,1.91888,0.573934,1.1976,-0.281096,-0.784398,-1.27511,-0.937168,-1.70618,-0.101145,-0.188989,1.57072,1.32044,1.12607,1.54392,0.450652,0.247575,-0.818873,-1.02683,-2.42431,-1.39843,-0.13698,0.67118,0.679057,1.94747,0.829658,1.6231,0.302276,-0.543313,-1.34874,-1.54404,-1.23532,-1.09079,-0.17001,0.155551,0.826241,0.653613,1.66156,1.03993,0.476511,0.274943,-0.799096,-1.02686,-0.718592,-0.823388,-0.208788,-0.357049,0.413376,1.27094,0.73993,0.554802,0.46208,0.401255,-0.590157,-0.555276,-1.1264,-1.24596,1 +-0.0591956,1.62239,1.65566,2.11209,2.40924,0.834315,-0.23655,-0.877249,-3.13508,-1.37613,-0.600598,0.564031,0.276313,2.65823,3.37104,2.74566,1.55956,0.0792027,-1.62662,-2.63491,-1.35681,-1.1315,-0.698856,0.612311,1.38739,0.874888,1.20359,0.809075,0.967496,-0.41021,-0.522778,-1.42142,-1.62057,-1.47543,-0.00593988,-0.0112792,0.492605,1.50827,1.14345,0.457359,-0.123672,-0.346963,-1.12222,-0.718764,-0.804691,-0.824121,0.305473,0.706445,1.36696,0.978362,1.05062,0.387799,-0.461109,-0.784685,-0.909312,-0.633701,-0.504946,-0.411693,0.527266,0.807306,1 +-1.07161,0.500012,2.10551,2.15062,0.74155,1.5189,1.87587,-1.39387,-1.84434,-1.43854,-2.54592,-2.29457,-0.562806,0.033143,1.19006,1.20466,2.41682,0.742979,0.468485,0.896615,-0.98669,-0.721398,-0.82223,-1.90068,-0.724169,-0.680685,0.609334,1.57589,1.54148,0.751286,0.485472,0.0893657,0.364491,-0.260526,-1.11999,-0.951933,-1.07872,-0.270915,-0.229712,0.579267,0.974422,0.484286,0.648887,0.25942,-0.0436394,-0.614228,-0.467851,-1.11127,-0.513554,-0.744867,-0.322343,-0.186169,0.107391,1.04957,1.17993,0.620535,0.230212,-0.236101,-0.172427,-0.299461,1 +0.969496,0.604252,2.02426,2.43635,1.82496,1.71621,-1.72693,-0.313637,-2.82487,-2.43163,-1.05403,-0.97559,0.465892,1.80562,2.32534,2.05293,1.05739,0.45934,-1.23308,-1.30628,-1.552,-0.72937,-0.641371,-0.763565,0.981737,0.645771,0.773184,0.959329,0.681012,0.25787,-0.860574,-0.683117,-0.659698,-0.581034,-0.477157,-0.0681042,0.979507,1.34634,1.14955,1.17406,0.410644,0.217574,-0.475846,-1.34256,-0.740566,-0.384717,-0.0366565,0.419251,0.519773,0.451388,1.1041,0.629764,-0.261482,-0.271234,-1.02322,-0.540455,-0.811321,-0.190377,0.129417,0.172442,1 +-1.1546,-0.127524,0.562523,0.3911,2.40279,1.71809,1.91341,-1.11507,-0.56916,-0.763208,-1.37154,-1.77087,-2.0878,-1.48917,-0.151211,1.89291,1.8193,1.66921,0.756267,0.550045,0.82225,-0.725019,-1.19299,-1.57152,-1.44047,-0.887263,-1.16132,0.155286,0.753455,0.479711,1.24299,1.08533,0.668026,0.566808,-0.00166946,-0.726944,-1.05862,-0.75064,-0.644268,-0.635179,-0.303224,-0.210585,0.819506,0.323453,0.687485,0.840403,0.64004,0.0307088,-0.35695,-0.224496,-1.02452,-0.773317,-0.535623,-0.231235,0.0333831,0.42495,0.467442,0.564861,0.570134,0.42445,1 +0.115915,0.173076,2.81164,2.86217,1.51583,0.421596,1.42429,-1.24809,-1.92688,-2.59898,-1.9429,-1.00151,0.0563804,1.19553,2.48593,2.73211,1.48706,0.462844,0.136003,-0.319261,-1.62927,-1.98743,-1.10138,-0.526605,-0.10145,0.144219,0.93565,1.49113,1.01943,1.45299,0.615449,-0.66181,-0.65047,-1.54511,-1.59703,-0.419785,0.0756306,-0.00663132,0.681398,1.4273,1.53291,0.365371,0.34657,-0.610598,-0.746274,-0.611293,-1.37917,-1.03298,-0.318879,0.0363366,0.535614,0.810085,1.32328,0.798311,0.245854,-0.392617,-0.58519,-1.13409,-1.06197,-0.42191,1 +-1.66969,0.929505,0.532833,2.66912,2.71711,3.40275,0.644263,0.430915,-0.90922,-0.398956,-2.7284,-2.18958,-1.07846,-1.14269,0.0031066,0.965679,0.774904,1.93634,1.97303,2.146,0.977242,1.64159,-0.0153932,-1.0543,-0.63058,-1.48411,-1.80759,-0.82058,-1.23508,0.00324315,0.836967,0.95791,1.34486,0.942309,0.651811,1.01369,0.599065,-0.568114,-0.819151,-0.605071,-0.679719,-0.60046,-0.593321,-0.610069,0.0222648,0.0560225,0.335739,1.18622,0.987262,0.402425,0.513793,0.173964,-0.26259,-0.56102,-1.0201,-1.23865,-1.15553,-0.550416,-0.171171,0.427762,1 +1.1255,0.400221,1.09994,1.36191,1.07193,2.19147,1.10992,-1.35408,-1.58387,-2.04318,-0.856624,-0.933044,-0.706233,0.104089,1.51135,1.72403,1.58123,2.43597,1.92528,0.759348,0.151041,-0.752293,-0.64782,-0.983779,-0.784613,-0.339225,0.489362,0.452828,0.839468,0.970781,1.41826,0.726868,0.182387,-0.495092,-0.0516121,-0.582404,-0.887681,-0.467637,-0.64182,-0.519581,0.0198769,0.495899,1.09433,1.18504,0.466272,0.113988,0.0165283,-0.517681,-0.81098,-0.59052,-0.990499,-0.758171,-0.283936,0.630779,0.496106,0.880956,1.04222,0.394478,0.0905491,0.173278,1 +0.520291,2.1289,1.98861,2.78222,1.47249,3.28241,0.0843746,0.260558,-0.366236,-1.08725,-1.36094,-2.47437,-2.38516,-0.837241,0.398633,1.243,1.36068,1.94567,2.78518,2.49421,1.79837,0.915193,-1.14902,-1.03237,-0.878753,-2.09136,-1.18346,-0.977689,0.10756,-0.112752,1.27375,1.35187,1.05612,1.012,0.611782,0.109032,-0.440672,-0.420677,-1.03338,-0.804968,-1.12011,-0.680017,-0.614776,-0.270363,0.920432,0.787253,0.902421,0.872693,0.498201,0.0709432,-0.340448,-0.759293,-0.501482,-1.17196,-0.898226,-0.61857,-0.739459,-0.122118,0.288647,0.874596,1 +-0.0857725,2.75383,0.844905,2.11183,0.536635,-0.91109,-1.0302,-2.84568,-1.14687,-1.74797,-0.673883,0.386663,0.9006,1.73263,2.19379,1.47725,0.605841,-0.483221,-1.69692,-2.85946,-1.51629,-0.636245,0.449273,0.662759,0.950377,1.18985,1.23068,-0.633513,-0.626814,-1.48136,-1.06023,-1.13697,0.180042,0.246402,1.57435,1.55456,0.425843,-0.00723946,-0.249596,-1.00597,-1.33764,-1.32008,-0.159594,0.239481,0.375679,1.07506,1.01678,0.224268,0.169495,-0.298776,-0.87507,-1.16475,-0.580725,-0.0839587,0.341998,1.03203,1.16398,0.970412,0.365345,-0.403219,1 +0.807603,1.0811,1.71772,2.39222,2.24992,2.26615,2.1197,1.88259,0.398453,-0.339962,-2.74859,-2.12337,-2.47741,-1.42911,-0.921811,0.325352,0.419249,0.875991,1.43317,2.99759,1.65549,0.463517,0.259545,-0.843897,-0.578789,-1.32532,-0.972633,-0.6953,-0.783746,-0.448442,0.267207,1.38358,0.639081,1.23422,1.36282,0.936661,-0.10446,-0.00661465,-0.684876,-0.684346,-0.823665,-0.912737,-0.866937,-0.0474077,-0.30603,0.637127,0.542676,0.648421,1.11599,0.655533,0.626207,0.235336,-0.0285855,-0.240569,-0.650523,-0.61272,-0.857415,-0.835098,0.112156,-0.105651,1 +-0.832502,0.757462,1.28375,0.738149,1.88595,0.244174,0.200064,-1.91784,-2.45659,-0.641081,-1.59171,-0.24945,2.23394,1.6997,1.01815,0.587746,-0.283827,-0.32275,-2.23176,-1.0243,-0.67911,0.198227,-0.408745,1.36984,1.40025,1.51967,1.03118,-0.255916,-0.776117,-1.50976,-1.16711,-0.558746,-0.798347,-0.245583,0.281658,1.18793,0.496484,0.493554,-0.00688546,-0.125332,-0.932239,-1.24552,-0.165535,-0.628061,0.650804,0.312217,0.693715,0.398311,0.243897,-0.509609,-0.788214,-0.869317,-0.556962,-0.796392,-0.296021,0.123581,0.934794,0.896383,0.808388,0.555013,1 +-0.267091,0.474565,2.80587,1.22603,2.51947,1.94906,0.119968,-1.27119,-2.63541,-0.971086,-1.47556,-0.993681,0.95679,2.33758,2.10486,2.38717,1.87043,-0.104261,-0.735633,-1.6006,-1.16478,-1.17,-0.388493,0.895988,0.923882,1.75101,1.89486,1.0425,-0.12289,-0.717503,-1.03184,-1.25555,-1.54241,-0.704042,-0.391713,0.260859,0.915652,1.55746,0.967214,0.423393,-0.0696643,-0.838874,-0.623167,-1.3653,-0.192891,-0.21395,0.578181,1.06204,1.38142,0.62362,0.669544,-0.116967,-0.124286,-0.454305,-0.666794,-0.535872,-0.3258,0.28068,0.967495,0.804487,1 +-1.04472,1.65435,1.89214,1.27715,0.910706,0.85856,0.101116,-0.944502,-1.47674,-1.62287,-2.24234,-2.80132,-1.96554,0.671153,0.221261,1.62814,1.40082,1.00331,1.41487,0.143803,-0.664137,-0.942301,-1.26031,-1.98136,-1.47304,-0.636721,-0.350333,0.935949,1.268,1.19784,1.45139,1.07968,-0.116323,-0.606438,-0.853627,-0.691493,-1.48941,-1.16475,-0.839309,0.23615,0.281271,0.48217,0.93989,0.793188,0.400383,0.654783,0.194773,-0.746441,-0.518159,-0.773936,-0.379587,-0.695425,-0.304188,0.628292,0.445809,0.578241,0.440995,0.45313,0.165581,0.0908483,1 +0.0183325,0.83996,1.97538,2.13878,0.147012,-0.372818,-0.268216,-1.43899,-0.988412,-0.245211,-1.20082,0.902441,0.857045,1.23377,2.29363,0.761312,-0.0624748,-1.28801,-1.90553,-1.75565,-1.38159,0.679848,0.229187,0.814445,1.42933,0.13934,0.400898,-1.00405,-1.40122,-1.69539,-0.58344,-0.061204,0.390613,0.828736,0.55422,0.776652,0.190663,0.0108299,-1.00596,-0.691511,-0.324598,-0.503961,-0.195706,0.463739,0.864082,0.919236,0.869521,-0.00647079,-0.544461,-0.893491,-0.912653,-0.388763,0.0171186,0.370718,0.357925,0.813833,0.190719,-0.0162569,-0.103568,-0.558818,1 +0.692884,2.82231,0.776769,1.91109,0.805574,-0.270869,-2.38609,-2.62304,-2.03164,-1.78062,0.0401113,0.907884,2.6649,3.03084,1.43039,0.0697143,-0.588734,-2.18832,-1.31609,-1.22265,-0.775785,1.4819,1.53098,2.18958,1.27443,1.13566,0.243593,-1.57549,-0.864761,-0.900389,-1.16838,-0.0850882,1.37418,1.35807,1.33675,0.557762,-0.368769,-0.50645,-1.28843,-0.676645,-0.996359,0.063874,0.125079,0.724471,0.689385,0.427321,0.0693307,-0.483155,-0.874739,-0.512611,-0.377584,-0.391385,0.128045,0.974549,0.590807,0.428976,-0.0678469,-0.701083,-0.873383,-0.592213,1 +-1.61044,1.44912,2.20209,2.76225,1.01888,0.758598,-1.41784,-0.82688,-2.54631,-2.66139,-2.3594,-1.42733,1.05608,1.24863,1.15036,1.18299,1.09313,-0.463003,-1.77606,-1.83091,-2.62802,-1.17708,-1.33639,0.65142,1.50035,1.96171,1.80338,1.49605,0.0718485,-0.797916,-1.02385,-1.63095,-0.917185,-0.942055,-0.621633,0.696995,0.553555,0.698281,1.14563,0.308507,-0.412666,-0.260989,-0.471623,-1.25378,-0.420789,-0.308507,-0.111678,0.199934,1.33817,1.00434,0.655672,-0.115195,-0.147495,-0.573531,-0.891766,-0.465584,-0.143606,-0.427553,0.625398,0.564151,1 +1.53554,0.0637362,1.55007,1.84848,3.25486,2.15307,2.97339,0.216533,-0.415891,-0.88573,-1.46052,-1.74677,-1.46821,-0.696629,-1.30318,-0.23882,2.04003,1.95783,2.779,2.17422,2.15106,-0.153261,-0.531215,-0.851959,-1.92351,-1.78253,-0.954716,-0.77862,-0.554907,0.770831,0.813438,1.62656,1.23523,1.02201,0.649064,-0.0672869,-0.459171,-0.667016,-0.824136,-0.635482,-1.52582,-1.07802,-0.0200488,-0.136547,0.650319,1.02108,1.25571,1.37316,0.673322,0.612052,0.237766,-0.672811,-1.01434,-1.17707,-1.16853,-1.11357,-0.744749,0.358935,0.00875525,0.995879,1 +-1.67201,1.9461,3.1212,2.74076,1.67112,0.369551,-3.42908,-2.90084,-2.08918,-1.01014,0.25636,2.00511,3.17745,1.45265,2.07759,0.717309,-1.81535,-1.78094,-2.12204,-1.33181,0.230354,0.476692,2.47836,2.18781,0.704458,-0.0852001,-0.563231,-1.56069,-1.06311,-0.976424,-0.215328,0.296194,0.659674,1.54447,0.704225,0.0885997,-0.0588066,-0.977544,-0.637077,-0.266244,0.141535,0.492943,0.943568,0.692221,0.3437,-0.204443,-0.790684,-0.927514,-1.16882,-0.828172,-0.228777,0.308883,0.74207,0.599911,0.557213,-0.251982,-0.631192,-0.813673,-0.986546,-1.02261,1 +-0.678905,0.642904,2.07387,2.42918,1.71749,0.608689,-0.26419,-0.824708,-1.65872,-2.89601,-1.13634,-1.27887,-0.414514,0.690541,1.22818,1.541,1.82722,1.45299,-0.924301,-1.57746,-2.57996,-2.17953,-1.15032,-0.398773,0.792283,1.09681,1.41823,2.06633,0.692554,0.649661,-0.257903,-1.2346,-1.31907,-0.809399,-1.43738,-0.0338211,0.181812,0.542047,1.17956,0.984493,0.757345,0.764532,-0.0425532,-0.850479,-0.821998,-1.37863,-0.846012,-0.01675,-0.0170955,0.622899,1.02316,0.934467,0.719228,0.0362142,-0.161555,-0.693866,-1.10825,-0.636568,-0.369986,-0.43073,1 +-0.675043,1.51197,1.3819,2.05893,2.69586,1.98443,2.07952,-1.01825,-0.622311,-2.12914,-2.6546,-2.27717,-2.92404,-0.119528,0.594172,1.65458,2.17655,2.61593,2.68111,2.31177,1.51955,0.453329,-1.67981,-1.63877,-1.01833,-1.04527,-1.28057,0.165545,0.488356,1.3755,1.36435,1.64317,1.74898,0.268423,0.244075,-0.862346,-1.30298,-0.951336,-1.38946,-1.46676,-0.811836,-0.0538981,0.0139879,0.740562,1.47001,1.40107,1.15457,0.692456,-0.0943194,-0.528617,-1.11676,-1.36517,-1.2391,-0.920458,-0.580643,-0.318873,0.709955,0.466639,1.00077,0.870248,1 +-1.08179,0.998004,3.08812,3.032,0.694489,2.0607,-1.46313,-1.81102,-1.64575,-1.19219,-0.485276,0.491309,1.39073,0.95733,1.41468,2.45236,1.01188,-0.669041,-1.79589,-0.896436,-2.74775,-1.14274,-0.55539,0.447084,0.824266,0.854056,1.28894,1.3741,0.395689,0.178452,-0.744754,-1.27514,-1.54347,-1.31818,-0.777911,0.720882,0.516499,1.38486,1.48617,0.274174,0.421048,-0.56191,-1.31483,-0.632982,-1.00092,-0.759291,0.145081,0.958974,0.913825,1.27589,0.824699,0.783872,-0.302485,-0.831727,-1.02877,-0.827927,-0.855595,-0.0931388,0.105266,0.570327,1 +-0.89544,3.0553,2.77769,1.60924,1.91498,0.715827,-2.3204,-3.46067,-2.54596,-2.20742,0.465049,1.71354,1.67261,2.08625,1.59649,0.683619,-1.33307,-1.29551,-2.8765,-1.74891,-0.721913,0.719651,1.24091,1.8905,1.63969,0.918506,-0.261526,-0.663725,-1.10238,-1.37606,-0.764916,0.571465,1.35939,1.173,1.208,1.07915,0.493629,-0.166939,-1.09257,-0.619769,-0.916137,-0.0281051,0.718454,1.09759,0.643702,0.726723,0.349587,-0.545051,-1.02012,-0.760881,-0.388484,-0.487532,0.353256,1.02739,0.639547,0.688342,0.382522,-0.356177,-0.393119,-0.904759,1 +-1.21228,0.773361,2.04835,0.846332,0.77031,0.687983,0.45459,0.129709,-0.642541,-1.86855,-0.618668,-0.692337,-1.25652,-0.0662441,-0.877336,-0.473508,0.57451,1.49837,1.44496,1.66006,0.438165,0.6777,-0.431644,-0.493478,-0.384541,-1.41247,-0.626993,-1.19241,-0.328655,0.63904,0.186654,0.750577,0.911174,0.305785,0.590466,0.647429,0.243872,-0.623788,-0.702093,-1.07836,-0.419458,-0.180452,-0.663339,-0.234272,0.0857387,0.726919,0.477815,0.31879,0.334791,0.249236,-0.473231,0.0403638,-0.525494,-0.496595,-1.02136,-0.722363,-0.379353,0.290142,0.137532,0.303174,1 +-1.18759,1.99192,0.953731,2.53598,2.86282,2.10862,3.004,0.244212,-0.494575,-1.83504,-2.14603,-2.08419,-3.0254,-2.14621,-0.616132,0.122456,1.34542,2.00005,1.74369,2.32167,2.28683,0.860893,0.824248,-0.796544,-1.42545,-1.70874,-0.795854,-0.845404,-0.964005,0.0319645,0.135093,0.65998,0.75463,1.52123,1.57162,1.20091,0.840124,0.162616,-0.451255,-0.587769,-0.572755,-0.597309,-0.861843,-0.696893,-0.0396723,-0.217756,0.418402,0.640979,1.02951,0.890941,0.878631,0.738379,0.0333965,-0.572592,-0.321382,-1.13764,-0.801211,-1.00914,-0.168152,-0.203168,1 +0.248285,0.379128,0.974743,1.26866,2.59349,0.0699975,-2.11568,-1.54906,-2.27975,-2.87328,-0.875789,-0.476871,2.37253,1.88335,2.55438,2.41219,0.999769,-1.15109,-1.40314,-2.74147,-2.65286,-0.795014,-0.0529053,0.939451,0.906279,1.68378,0.60954,1.04881,-0.23201,-1.65762,-1.24606,-1.46293,-0.36236,-0.224689,0.455132,0.60579,0.687976,0.681495,0.572679,-0.367558,-1.10081,-0.882269,-0.91672,-0.401879,-0.500722,0.883981,0.877005,1.28556,0.440466,0.653904,-0.331813,-0.541505,-1.30154,-0.475095,-0.59179,0.103197,0.110541,0.497216,1.08498,0.341424,1 +-0.556834,2.61453,1.94567,1.11295,2.30147,0.689948,0.480266,0.585335,-0.782819,-2.36789,-1.93879,-1.26145,-1.00739,0.0737735,0.088047,0.62289,2.56181,2.72559,1.32336,1.9398,0.895405,0.32076,-1.26125,-2.15032,-1.72356,-1.95976,-1.68152,-0.667915,0.225493,1.30865,0.683002,0.846649,1.21798,0.437119,0.552909,-0.17011,-1.13559,-1.22975,-1.50862,-0.550799,-0.457655,-0.462697,0.492911,1.05243,0.686773,0.694112,0.695065,0.339832,0.282736,-0.438317,-0.804839,-1.20862,-0.974337,-0.734338,-0.0664832,-0.411409,0.603126,0.528031,1.05432,0.924914,1 +1.04376,1.86697,1.49311,1.66972,1.01388,2.82275,0.40584,-0.702849,0.491727,-2.14277,-2.50899,-1.10801,-1.80723,-1.65505,0.111753,1.26123,0.379054,1.25923,1.80097,0.564948,1.42675,0.513259,-0.523356,-1.36753,-1.75733,-1.36415,-0.897613,-0.594761,-0.751213,-0.157217,1.24372,0.533217,1.01945,1.05743,0.196125,-0.435015,-0.402582,-0.503509,-0.883771,-0.690784,-1.20001,-0.298317,-0.00878097,-0.186697,0.37524,0.650236,0.534348,0.282314,0.159904,0.363953,-0.223455,-0.104938,-0.693362,-0.330806,-0.462617,-0.302582,-0.134815,0.323684,0.44228,0.621422,1 +0.157854,2.4439,2.4899,2.17155,2.10953,1.88173,0.697284,0.401299,-0.457743,-1.05512,-2.00204,-1.48469,-0.140056,-0.52882,1.84411,1.88981,0.805025,2.19325,0.851952,-0.798893,-0.0677648,-1.16783,-2.247,-0.466921,-1.30397,-0.402971,1.05677,1.177,1.1129,0.496261,0.145268,-0.136883,-0.587652,-0.981255,-1.49956,-1.45188,-0.244971,-0.290268,-0.195584,0.980251,0.728216,0.989724,0.681112,0.0431725,-0.450209,-0.358992,-1.17495,-0.985567,-1.17278,-0.364044,-0.0465988,0.132418,0.464965,1.16719,1.11839,0.568503,0.149908,-0.375312,-0.659505,-1.12828,1 +0.394101,-1.43055,-0.593991,-0.714855,-0.467053,-0.754955,1.6822,-0.0666501,0.352108,0.671384,1.65137,-0.460994,1.12536,-0.401474,0.955406,-0.214091,1.17355,-0.406489,-0.0196221,0.476561,1.35358,0.412397,1.16278,1.14554,0.286219,0.724052,0.168298,0.00469711,0.273262,0.482476,0.0712407,0.744771,0.111685,0.485043,0.739124,0.696108,1.00519,0.247498,1.1199,0.838412,1.19757,0.919578,0.662434,0.747553,0.391881,0.586664,0.602507,1.18251,0.526031,0.753872,0.425691,0.602993,0.912977,1.05424,1.11542,1.17054,0.622476,1.17054,1.05995,0.958608,2 +0.521006,0.574597,0.0902946,-0.308711,-0.119618,-0.722098,-0.53693,0.534041,0.444009,0.564835,0.619159,-0.0125898,-0.266405,0.0716399,0.311389,-0.00922781,0.61777,0.112816,1.27296,0.960196,1.47679,1.14506,1.22692,0.858948,1.43181,1.00237,0.50221,0.270434,1.16035,0.339907,0.655387,0.271288,0.262985,0.810079,0.715593,0.810707,1.21925,0.627812,0.834305,0.420126,0.766599,0.6698,0.928428,0.653316,1.1878,0.379058,0.574717,1.08747,0.653812,1.16714,1.10126,0.780721,0.968755,0.848888,0.588811,0.830635,0.634282,1.0486,0.715954,0.919405,2 +1.07706,-0.357122,-0.860253,0.874768,-1.05201,1.10664,0.188625,1.85799,1.37054,1.48013,0.750043,1.54963,1.40241,1.81831,0.513435,0.352117,2.01218,1.44198,0.587465,1.33103,1.93289,1.14381,1.0621,1.63207,1.15924,1.51527,1.75597,2.16942,1.0384,1.31875,1.1366,1.69808,1.62754,1.75462,1.24464,1.87427,1.70915,1.96016,1.2799,1.29325,1.55091,2.01672,1.59764,1.80207,1.41126,1.9698,2.03172,1.777,1.98412,1.44377,1.8265,1.48851,1.88656,1.68962,1.59272,2.11853,2.1496,1.79331,2.16767,1.68282,2 +-1.45253,0.0765318,-0.896414,-0.468411,0.147672,-0.710947,0.573028,0.660244,1.22254,2.02814,1.7077,1.56562,1.28886,0.314625,1.28149,0.952374,1.25631,0.468038,1.85894,0.780775,1.46031,1.41384,2.12765,1.17653,1.60502,0.681741,0.737419,1.63053,1.89505,1.21508,0.976107,1.58903,1.01325,1.33363,1.34427,1.27237,0.990197,1.50665,1.97994,1.19358,1.26261,1.92269,1.08527,1.12865,1.94655,1.62765,1.72881,1.78313,1.95635,1.82088,1.4196,1.48472,1.60672,2.08819,1.67899,1.39058,1.50992,1.77459,1.74241,1.75483,2 +-0.546135,1.30269,-0.465942,0.684425,0.833913,-0.884902,0.751974,0.343919,-0.228648,1.26318,0.0261575,1.01613,1.14198,0.281787,1.33245,0.0627196,-0.16384,0.744901,0.646521,0.623233,1.8046,1.51501,1.51812,0.799069,0.333098,1.20155,1.51218,1.17952,0.20357,0.733741,1.47633,0.395572,0.350047,1.04116,0.642818,0.772161,1.07566,1.31359,1.33034,1.295,0.787179,0.865822,0.938949,0.658744,0.833458,1.2097,0.566974,1.45071,1.2303,1.42395,0.984965,0.883994,1.35121,1.22809,1.08433,1.09834,1.43436,0.872137,1.0318,0.971984,2 +1.09597,-0.364963,-0.0620396,-0.192794,-1.16848,0.0639915,1.4437,0.789866,1.71049,0.561915,1.27356,1.11565,1.58956,1.16278,1.34344,0.111306,0.210422,0.195719,0.822106,0.925813,0.110475,0.891072,0.563153,0.640043,0.72701,0.620596,0.69408,0.622389,0.546758,1.29025,1.12255,0.927744,0.855831,1.24831,0.575404,1.20486,0.817238,0.983442,0.814469,0.525483,0.872794,0.67141,0.686346,0.898955,0.949383,0.916868,0.635609,0.928246,0.991122,1.22274,0.881823,1.02619,0.902183,1.16363,1.11878,0.811378,1.06843,0.869688,1.37791,0.766677,2 +-1.63427,-1.41721,-0.584037,0.782086,0.646988,0.0484463,1.41503,0.507393,-0.0813766,0.698022,2.1039,0.358081,2.00787,1.65102,1.97714,1.20714,1.01949,0.188881,0.321955,1.87872,1.25295,1.90575,1.22385,1.11862,0.667705,1.87925,1.12953,1.04739,1.43095,1.72939,1.88632,0.978692,1.67545,1.05912,1.49572,1.475,1.46065,1.66597,1.22371,1.67561,1.67007,1.81543,1.41478,1.82138,1.86683,1.67527,1.39311,1.21359,1.71601,2.0294,1.84996,1.59222,1.99763,1.64529,2.10101,1.44314,1.30816,1.86309,1.50654,1.89958,2 +-1.61674,-0.730599,-0.209882,0.773685,-0.292145,0.666078,0.133223,1.86158,0.976314,1.65371,1.06812,0.467024,0.586409,-0.287578,1.47634,1.56084,0.595834,1.13143,1.70211,1.84264,0.276385,1.33414,0.879765,0.761343,1.48682,0.338572,0.425611,0.389368,1.00538,1.08661,1.16807,1.34345,1.04106,1.49268,1.19745,1.45496,1.05465,1.0647,0.990572,1.24155,1.20108,1.00067,0.947767,0.728634,0.780068,1.42072,1.10889,1.40902,1.06111,1.55716,1.25701,1.40915,1.59768,1.06258,1.22543,1.43084,1.25318,0.934731,1.35581,1.52927,2 +0.603684,0.19186,0.741616,-0.823039,-0.758323,0.411416,1.42569,1.6814,0.111582,0.352216,1.87412,0.621703,0.483043,1.46592,0.305691,1.11455,0.736234,1.49421,1.49202,2.19948,2.17248,1.46064,1.06138,1.50453,1.3314,0.987477,1.5099,0.78244,1.39468,1.37885,0.84759,1.52992,0.970779,0.968406,1.86203,1.92981,1.23809,1.45964,1.07388,1.23527,1.21692,1.25486,1.41086,1.3028,1.87168,1.58555,1.91749,1.9463,1.38314,1.4261,1.61284,1.82105,1.6678,1.89408,1.41438,1.93748,1.76821,1.43823,1.49663,1.46468,2 +1.5103,0.428891,-0.956327,0.779554,-0.465295,0.516964,1.94367,1.17224,-0.0918113,0.841084,0.52392,1.56216,1.75689,1.83079,0.355512,1.15111,0.674914,1.94786,1.7667,1.8812,1.78455,1.86447,0.723055,0.947831,1.24397,0.689466,1.59311,1.06261,0.820637,1.08208,1.1652,1.01968,1.06716,1.77202,1.27141,1.45903,0.938529,1.24054,1.05918,1.17653,1.9269,1.50921,1.60072,1.06162,1.89067,1.39434,1.70699,1.70059,1.43436,1.8937,1.57911,1.74739,1.57669,1.92761,1.79875,1.93868,1.302,1.98634,1.30347,1.87767,2 +0.0659079,-0.54297,0.83594,-0.999009,0.72792,1.04786,1.45455,-0.252084,0.00920848,0.820836,0.20549,0.571219,0.567301,-0.390602,-0.29473,0.261597,-0.445418,0.932985,0.303408,0.822991,0.871631,1.14346,1.46902,0.804573,0.94665,0.281681,1.28199,0.632625,0.851602,1.38014,0.701162,0.303779,1.33382,1.30963,0.420402,0.823125,0.429469,0.878175,0.452423,0.51247,1.26577,0.714961,0.851987,1.12563,0.588238,0.802251,0.487665,1.12566,0.496725,1.04416,0.917926,1.28224,1.30629,1.06952,1.28518,1.24685,0.992199,0.622284,1.08623,0.942807,2 +-0.45642,-0.942663,-0.938285,-0.23656,0.688572,0.634502,0.702144,-0.42272,1.65578,1.3604,0.268583,1.42717,0.964452,1.571,1.01692,1.40602,0.28034,0.741692,0.490943,1.11274,0.655469,0.317648,1.3869,0.296609,0.300851,0.862474,0.336415,1.31592,1.4207,0.700767,0.8233,0.66106,0.819612,0.902471,1.19093,0.98025,1.24097,1.04513,1.37281,1.02848,0.543539,0.585327,0.955015,1.31318,1.01791,0.735584,0.652199,0.634219,1.2679,1.08749,0.942712,1.21216,1.23257,0.799879,1.38858,1.0797,1.06349,0.777897,1.35888,1.01213,2 +-0.0803084,-1.28052,-0.819295,-0.928416,-0.90938,1.34828,0.328812,1.3189,1.40562,0.525093,1.0817,1.33123,1.05401,1.78959,1.83186,0.543811,0.461514,0.798764,0.657091,1.10609,1.47344,1.71149,1.53891,1.13711,1.04288,0.719609,1.3345,1.45931,0.87997,0.852889,1.52573,1.48891,1.69611,0.88482,1.26008,1.44543,0.745733,1.15734,1.54198,1.06952,1.49749,1.51329,1.62155,1.47876,1.70321,0.816014,1.11061,1.10943,1.33041,1.76853,1.12164,1.36175,1.46803,1.1951,1.60657,1.46988,1.42536,1.76791,1.08827,1.12717,2 +-0.53246,-1.59329,-1.15938,0.470591,-1.21298,-0.979145,-0.707726,1.5627,1.44283,-0.107851,0.76548,0.0170435,0.942126,1.30775,1.40257,0.476909,-0.117796,1.27249,0.458489,0.309271,0.827161,0.953701,0.575586,0.75426,0.22556,0.770327,1.08302,1.36377,0.492992,0.57238,0.649413,0.211762,1.18621,0.177214,0.62198,0.331042,1.12754,1.11931,1.12565,0.903844,0.887123,0.822878,0.487709,1.00856,0.923793,1.05591,0.814944,0.39705,1.0315,0.767942,0.614508,0.589716,0.698214,0.956496,0.85458,0.691082,1.19658,1.0682,0.612854,0.824487,2 +1.06153,-0.543067,-1.18782,-0.0452937,-0.522999,0.0486671,0.82667,0.784748,1.64536,1.38534,1.22783,1.64622,1.63059,0.422621,1.39513,0.941737,0.458333,0.342158,0.973183,1.15773,0.472032,1.85007,0.947316,1.06575,0.80671,0.983938,1.53628,1.08643,0.673382,1.04847,0.635715,0.773245,0.766319,1.3702,0.935094,1.2593,1.52791,0.726014,0.718362,1.57378,1.03765,1.01888,1.25131,1.10397,1.14161,1.46047,1.34397,1.42885,0.782323,1.0229,1.26146,1.21601,0.939717,1.63567,1.01321,1.60196,1.00751,1.46157,1.52959,1.58399,2 +1.54792,-0.0729261,-1.10548,-1.12163,-0.477825,0.852907,0.383478,1.57502,0.471459,0.346566,1.1845,1.92829,1.69108,1.82892,0.516758,0.991503,1.83309,1.69639,1.42859,1.73202,1.27835,2.15255,2.16715,1.88973,1.55029,1.51822,1.2459,1.52058,1.84545,1.89443,1.40078,0.949761,1.31425,1.65416,1.46494,1.43908,1.79234,1.15594,1.67857,1.22694,1.8018,1.45749,1.68891,1.79613,1.53119,1.80625,1.72153,1.71904,1.44895,1.3401,1.95663,1.53495,2.10468,2.12603,1.59468,1.8782,1.60625,2.00472,1.50638,1.54468,2 +-0.106485,0.525026,0.741236,0.668017,0.681739,0.0389293,-0.428899,-0.609293,0.191958,0.0987739,0.606124,0.838314,0.360588,0.1747,1.43826,0.565924,0.75585,-0.151643,0.268905,0.204534,1.42455,0.913045,0.142049,1.23236,0.842888,1.15949,0.924804,0.945112,0.840433,1.03224,1.22728,1.18503,0.487257,1.26432,0.416424,0.992378,1.3741,0.546262,1.35594,0.42726,1.33415,0.863146,0.502142,0.951842,0.76685,0.943668,0.614241,1.03594,0.978256,0.944605,0.98006,1.13107,1.28319,1.39676,0.728415,0.805873,1.06127,0.761991,0.749784,1.3113,2 +0.768953,-0.521468,0.653116,-0.819052,0.79559,1.47286,0.83563,-0.419817,2.03998,0.99282,0.836556,0.919519,1.52639,1.30983,1.51526,1.06405,1.61179,1.06249,1.69236,1.02385,1.58413,2.08719,1.79577,0.487085,1.62836,0.62975,0.882071,1.48646,0.657609,1.23278,1.35064,0.703849,1.05016,0.693299,1.10471,1.72235,1.18965,1.42016,1.77264,1.61035,1.59336,1.7694,1.20519,1.42007,1.05241,1.12887,1.18999,1.30107,1.71555,1.22074,1.79748,1.43967,1.38819,1.19923,1.78578,1.27692,1.80671,1.57249,1.39063,1.80893,2 +0.687534,-0.732619,-0.944394,0.417552,0.934923,0.580889,-0.151496,-0.716355,1.11432,1.45436,-0.210863,0.42613,0.478509,0.694048,0.298903,0.273705,0.637934,-0.196234,0.987136,0.551602,0.81797,1.52784,0.336843,1.25223,1.28127,1.17307,0.0982204,0.461322,0.13948,0.353524,0.386186,0.385049,0.321046,0.809302,0.889395,1.01802,0.940435,1.13284,0.988511,0.245624,0.839236,0.798415,0.651741,0.518036,0.615319,0.588748,0.80982,0.574106,0.370194,0.647094,0.944361,1.21064,0.447475,1.10502,1.10118,0.811989,0.467706,0.62414,0.688835,1.02106,2 +0.880725,0.851505,0.503237,-0.560853,-0.646212,-0.977003,-0.118431,1.80859,1.04428,1.86241,1.11229,0.765891,0.69045,1.13007,-0.00616123,0.361112,1.03324,0.298451,0.539336,1.74129,0.69659,0.883307,2.24193,1.1974,1.8524,1.63096,0.969916,2.0385,0.869513,1.20259,1.74812,1.78644,1.65553,1.55302,1.28168,1.75311,1.51807,1.48864,1.21786,1.0479,1.54193,1.85745,1.28491,1.53133,1.38976,1.74169,1.46744,1.63055,1.32388,1.27807,1.28825,1.40748,1.67381,2.04693,1.49417,1.57396,1.84085,1.88563,1.90194,1.76536,2 +0.348213,-0.705104,-0.869826,0.304732,-0.605727,0.433144,-0.108171,0.614348,0.801029,0.341654,0.43919,0.963866,0.391161,-0.189694,0.826835,1.65078,1.02633,1.33055,0.598345,0.763023,1.20688,0.624323,1.90414,1.45302,1.5667,1.63856,1.78036,1.54638,1.73587,1.25853,1.10043,1.2371,1.14156,1.55326,1.1643,1.72032,1.41584,1.62264,1.73477,1.30804,1.85739,1.77814,1.2589,1.36706,1.7872,1.03794,1.12469,1.28753,1.11486,1.21402,1.27387,1.19406,1.4152,1.89902,1.78207,1.84183,1.29701,1.3287,1.35487,1.85967,2 +1.62211,0.670539,0.063992,0.599613,0.183741,1.07727,1.29559,-0.540944,-0.242598,0.594632,0.456288,-0.0954094,0.402169,1.06089,-0.235887,-0.157073,1.13369,0.133701,1.45018,0.821169,0.930954,0.944504,0.894033,0.36532,0.130498,0.751594,0.427899,1.05125,1.06971,0.608496,0.529475,0.240772,0.246073,0.994382,0.773651,0.495796,1.04409,0.663076,0.939194,0.696997,0.706786,0.745592,1.11109,0.26881,0.266054,0.911007,0.955743,0.296443,0.461103,0.437654,0.592808,0.498332,0.426371,0.998083,0.552627,0.665603,0.39992,0.939604,0.742721,0.478539,2 +-0.7304,-0.381366,0.487269,0.879558,-0.889302,1.11141,1.38212,0.973407,2.08058,0.549584,0.159531,1.45851,0.651741,-0.0603629,1.00278,0.490898,1.90546,0.23634,1.03053,2.10958,1.60829,1.75473,1.93905,1.71534,0.716381,1.85892,1.94847,1.7028,2.01313,1.19735,1.26692,1.33549,0.964496,1.15588,1.645,1.00786,1.76026,1.62845,1.03071,1.04862,1.41867,1.63544,1.2626,1.97309,1.55435,1.33009,1.35505,2.02006,1.91693,1.2281,1.99771,1.66015,1.50572,1.74117,1.59998,1.45666,1.34853,1.45359,1.92998,1.39719,2 +-0.166448,0.746182,-1.30658,0.222144,-1.24002,-0.740624,1.54417,1.61976,0.910942,-0.308173,-0.113063,1.46883,0.82128,-0.375945,1.09979,0.625934,0.896466,-0.110758,0.281772,0.40739,0.856192,0.797231,0.425271,0.550279,0.555614,0.915547,0.358222,0.695981,1.15049,0.0455395,0.840282,0.584311,0.232744,0.874618,0.67078,0.262994,0.358803,1.24075,0.968636,0.297867,0.479023,0.7901,0.914135,0.969197,0.762739,0.38574,0.481236,1.03187,0.48864,1.00497,1.05932,0.827427,1.25174,0.975928,0.812152,1.19604,1.04808,0.869087,0.579063,0.776224,2 +-0.555175,0.987374,0.484281,0.180483,0.957968,0.845157,-0.377277,1.29126,0.0184024,0.754234,0.703465,1.92977,0.288509,-0.147487,0.828242,-0.0845956,1.87945,1.74272,1.5372,1.11293,1.14287,2.01692,1.00753,0.49336,0.556441,1.62538,1.11119,0.735714,1.01978,0.679765,1.44692,1.52619,1.53932,0.814293,1.68321,1.39524,1.43,1.05417,1.13488,1.11421,0.930469,1.66901,1.58948,1.16583,1.46809,1.50565,1.57388,1.54541,1.85921,1.53407,1.88013,1.57319,1.72629,1.80435,1.28214,1.18528,1.85777,1.2999,1.26933,1.30196,2 +1.23687,-0.0196033,-0.0320829,0.167514,-0.516239,1.47425,0.284014,1.14983,1.1917,1.5712,0.09711,1.60998,1.25496,1.80929,1.98301,0.330911,1.06258,0.765026,0.544458,1.68479,1.56209,1.46805,1.47221,0.564885,1.73168,1.3933,0.725909,1.88541,1.79466,1.81534,1.23332,1.1369,1.25974,1.29349,1.15997,1.77107,1.00059,1.83241,1.41548,1.5755,1.66909,1.13212,1.49755,1.38336,1.031,1.74424,1.5456,1.44141,1.63272,1.29336,2.01879,1.33936,1.32244,1.40022,1.49614,1.5671,1.46547,1.3753,1.59932,2.04446,2 +-0.784813,-0.265004,-0.906882,-1.27688,0.770951,0.464897,0.777871,-0.118052,0.351657,0.507094,0.669481,1.24534,-0.129414,-0.446186,1.20409,-0.241556,0.692543,1.07592,0.586363,0.302155,0.550444,0.163106,1.36917,0.157327,0.596884,1.34617,0.257082,0.263983,0.706146,0.0818549,0.750107,0.274663,0.684805,0.283024,0.992426,0.36587,0.878553,1.12418,0.94535,1.24957,0.82808,1.02514,0.889173,0.513,0.935748,0.596955,0.487665,0.42876,0.965376,0.638441,1.00249,0.683534,0.656657,1.27684,0.952929,0.717993,0.621658,0.987183,0.768847,0.981621,2 +-0.567877,-0.630086,-0.266827,-0.656153,0.939943,1.45195,0.813489,0.333832,0.969057,1.58231,0.815502,0.381727,-0.109245,1.06286,1.41438,0.848788,0.768376,1.49958,0.583942,0.388097,1.45593,2.00927,1.12728,0.461262,1.1944,1.17577,0.658886,0.737826,0.735226,1.43585,1.63728,1.48751,1.13335,1.43757,1.59849,0.963043,1.51404,0.821976,1.29056,0.912918,0.888346,1.48114,1.25749,0.921454,1.71934,1.57572,1.35933,1.8265,1.22749,1.63077,1.27854,1.71314,1.66639,1.43559,1.10901,1.43232,1.3509,1.48528,1.12009,1.80283,2 +-0.703909,0.233422,0.810532,0.507975,-0.546392,0.535888,0.756,0.366415,1.93753,0.392473,0.303485,0.415621,0.23711,1.75183,0.519607,0.0608213,1.38314,1.76353,1.11607,0.799244,1.14088,1.4278,1.16282,1.11976,0.75958,1.53629,1.02364,1.44872,1.23313,1.93371,1.11327,1.99998,1.81168,1.9215,1.5773,1.52773,1.95791,1.86236,1.97607,1.37436,1.483,1.36988,1.61755,1.29688,1.43003,1.9155,1.68834,1.24711,1.44198,1.41677,1.46253,2.05222,1.5377,1.94449,1.91382,1.51015,1.8103,1.40007,1.58513,1.89829,2 +0.928844,1.14554,0.00417358,0.79408,-1.10764,-0.107314,-0.0542903,0.412332,1.11009,-0.0546447,1.62193,0.694651,1.74233,-0.0898803,-0.0145673,-0.107649,0.152913,1.48181,1.51549,1.75485,1.36107,0.568867,1.87114,1.52473,1.96162,1.66085,0.911154,1.62347,0.818137,1.26393,1.64211,1.18505,0.895081,1.13546,1.71915,1.07256,1.13094,1.72859,0.982484,1.05643,1.33438,1.63632,1.23312,1.24617,1.8212,1.00123,1.04645,1.22303,1.29269,1.68961,1.69332,1.29356,1.94271,1.67353,1.86953,1.29789,1.76943,1.33332,1.46046,1.38338,2 +-0.85393,0.215407,0.345156,-0.111234,0.0152997,-0.594226,-0.14072,1.22454,-0.189579,1.29519,1.57704,1.9142,-0.00924455,-0.229749,-0.194419,-0.0185825,0.837632,0.429929,0.931929,0.763989,0.967464,1.71708,1.22155,1.7426,0.370713,1.02882,1.34693,1.05154,1.42823,0.839901,1.09743,1.2594,1.41218,0.936459,0.918172,0.651252,0.657034,1.441,1.0158,0.851976,1.51467,0.940798,1.41347,1.01103,1.11131,1.36181,1.55335,0.936883,1.03087,0.8411,1.40995,1.56377,1.1358,1.64199,1.39353,1.09099,1.08549,1.46663,1.44916,1.19037,2 +-1.06709,-1.50668,-0.146391,0.119813,0.497543,-0.356323,1.26228,0.040971,1.93641,1.41242,0.26263,0.791809,0.880523,0.144181,1.09166,1.27432,0.593448,0.650231,0.174168,0.780339,0.700014,0.29014,0.458728,0.974841,1.356,0.479082,1.38449,1.03706,1.38307,1.26548,0.566984,1.1987,1.44252,0.673292,0.838026,1.05852,0.566193,0.75463,0.992576,0.697277,0.770493,1.35747,0.915512,0.848781,1.37174,1.2073,1.40123,1.60672,0.787243,1.44391,1.04489,0.920583,1.38087,1.07107,1.128,1.4757,1.00714,1.53465,1.58884,1.14977,2 +-1.35074,0.363807,-0.365966,-0.452328,-0.598802,0.198885,-0.299808,1.97034,1.72134,0.919657,0.513534,1.36802,0.981,0.997979,1.27014,1.49811,1.83579,0.952816,1.18589,1.64432,0.994933,1.20569,2.13366,0.836819,1.4899,1.34659,1.66603,1.01833,1.00388,0.959311,1.09106,1.71867,1.3755,1.43943,1.47555,1.68318,1.29242,1.80562,1.68402,1.81792,1.63581,1.35243,1.88462,1.83363,1.89843,1.89886,1.40551,1.89032,1.42705,1.90692,1.48109,1.481,2.09288,1.44461,1.57443,1.58901,1.65272,1.62692,1.63715,1.94549,2 +-0.697815,0.710225,-0.985066,0.0547112,0.660452,-0.373768,1.76063,0.685407,0.353857,-0.0951075,0.935664,0.0119013,2.00189,1.87836,0.024966,1.39654,-0.0196955,0.0892496,1.41631,0.834218,0.38934,2.06804,1.73995,1.54475,1.6179,1.67234,0.803252,1.28128,0.631423,0.901355,1.19897,1.49305,1.28954,0.754069,1.64324,0.821393,1.51664,1.62837,0.961663,1.50911,1.08973,1.39802,1.13164,1.31858,1.32537,0.984029,0.993701,1.11037,1.5855,1.70463,1.81365,1.31034,1.27415,1.22134,1.56033,1.70439,1.79504,1.71203,1.63783,1.57313,2 +-1.1776,0.399403,0.0424855,-0.633124,-1.05346,-1.11168,0.932295,-0.32353,1.62507,0.755213,1.80661,0.412881,1.48104,0.0832168,0.334462,0.337803,0.93734,0.271318,1.25851,1.61409,1.36618,0.755502,1.28506,0.309294,1.35075,1.11659,1.29454,0.33461,1.18114,1.09606,0.30139,1.40567,1.42576,0.702651,0.899052,0.597784,1.36354,0.77365,1.02586,1.02697,1.24275,0.59218,1.34758,0.854439,0.871562,1.14458,1.09367,0.735295,0.940543,0.729341,0.765262,1.45715,0.732023,1.0741,1.00233,0.804619,1.1727,0.968484,1.19279,1.11593,2 +-1.44706,-1.22878,0.672777,-0.294407,-0.170014,0.0247753,-0.308595,-0.613079,1.76663,0.437555,0.840265,0.790908,-0.0188808,0.249839,0.718734,1.38589,1.00931,0.91038,-0.0543417,1.60379,0.383468,1.55372,0.866082,0.39507,0.412007,1.05353,1.03139,1.35135,0.903646,1.12227,0.608339,0.49496,0.192884,0.649718,1.0234,0.275114,0.456005,0.889138,1.06427,1.17753,1.02706,0.449011,0.468292,1.1168,1.2769,1.12307,0.74721,0.823145,1.10194,0.608715,0.621366,0.911295,0.718937,0.937956,0.876272,1.18457,0.655136,0.900073,1.20652,1.15082,2 +1.57871,-0.806217,0.116197,-0.598426,0.726858,1.25799,1.23054,0.965063,1.42038,0.230072,0.30186,1.7342,0.434003,0.792674,-0.0652678,1.35242,1.95765,1.23213,2.13825,1.94719,1.04211,0.827796,2.08719,1.64608,1.02362,1.85543,1.46386,1.08485,1.50076,1.21003,1.73122,1.10719,1.39087,0.901731,1.7462,1.06147,1.64142,1.43902,1.16309,1.66744,1.62645,1.22903,1.51795,1.95219,1.54562,1.0878,1.11296,1.64179,1.17042,1.21427,1.86161,1.62136,1.75125,1.74323,1.86146,1.52887,1.66209,1.64559,1.63552,1.48266,2 +1.69311,-0.9931,-0.974884,0.491533,0.942672,0.738262,0.635966,1.70312,1.0703,1.64107,1.89171,0.121577,0.281012,0.133513,1.3531,0.388817,1.28662,1.24876,2.0346,1.01189,0.615895,0.781908,1.81264,0.548151,1.81365,0.720424,1.6343,0.999801,1.3884,0.997585,1.83715,1.7685,0.839566,0.880754,1.68303,0.989557,1.1264,1.05539,1.56863,1.25918,1.72967,1.53315,1.15871,1.59723,1.28073,0.987588,1.67276,1.09211,1.5132,1.95524,1.31514,1.33575,1.46309,1.75993,1.53405,1.951,1.30805,2.01394,1.85589,1.87845,2 +-0.095957,-1.24122,-0.596199,0.595764,-0.875124,0.63289,1.26974,1.58186,0.699576,0.965667,1.77915,1.54535,0.443164,-0.25294,-0.301395,0.354665,0.858756,1.11943,1.84168,1.41633,0.485219,1.461,1.52722,1.23313,0.552223,1.09619,0.645718,0.809572,1.3756,0.600724,1.70543,1.06455,0.872877,0.529465,1.4257,0.951302,1.13455,0.701722,1.32669,1.21443,1.39497,1.20543,1.02328,1.40564,0.898507,1.19006,1.13452,0.888772,0.863992,1.00736,1.27862,0.959619,1.47942,1.54601,1.68311,0.953884,1.15314,1.6437,1.69466,1.03741,2 +0.377823,0.523847,-1.11677,-0.483022,-0.543205,0.219708,-0.0648209,0.0739412,0.723285,1.70197,1.59287,0.882886,1.23311,0.147799,1.57271,0.17672,0.0509518,0.738715,1.82199,0.617176,1.95357,1.15964,1.04202,1.72762,1.79074,1.52704,0.559794,0.737364,1.21915,1.47778,1.74804,1.00518,1.7256,1.53703,0.82844,0.901393,0.81014,0.71341,0.996179,1.58614,0.988177,1.06077,1.70202,1.01051,1.12348,0.938265,1.65143,0.897255,1.7672,0.993811,1.16543,1.59594,1.64602,1.11893,1.00476,1.56592,1.52188,1.21047,1.36902,1.85338,2 +0.554735,-1.24168,-0.214222,-0.943096,-1.12732,1.08178,1.31577,0.178444,0.18549,0.850067,1.27398,1.70549,1.28051,-0.311734,1.27918,0.800852,0.661593,1.08608,1.64339,1.0962,1.23033,1.62493,1.08677,0.662502,0.540887,0.445847,1.17839,0.749562,1.34072,1.51128,0.384549,1.13094,0.402521,1.16244,0.573827,1.46088,1.40086,1.11241,0.596199,0.6873,1.17179,0.802569,1.10314,1.46327,1.42943,0.661349,0.66358,1.52316,1.34759,1.11796,1.47946,0.97443,0.864531,1.43469,1.31915,1.21978,1.38021,1.50398,0.885342,1.31735,2 +-1.6305,0.512375,-1.04863,0.064224,-0.207054,-1.22873,-0.10682,1.80728,-0.224041,-0.0732617,0.725985,1.73206,0.339067,-0.176429,1.63593,0.372656,0.641363,-0.0783068,0.973788,1.84113,1.07115,0.97986,0.980201,0.939892,0.866603,0.716874,0.400475,0.595904,1.43023,1.27096,0.335313,0.746881,0.491747,1.21872,0.6247,1.20578,0.467872,1.05702,0.713628,1.09908,0.778047,0.749824,1.00999,0.808896,0.944023,1.03156,1.03501,1.26953,1.4589,0.699158,0.697104,1.19861,1.47099,0.727661,1.28813,1.28415,1.07055,0.797507,0.899168,1.28049,2 +-0.353888,-1.2595,-0.505548,-0.962823,1.02461,0.904577,-0.856897,1.63602,2.06405,1.17315,0.593142,1.0103,2.12586,0.636441,0.801845,2.00581,1.63064,0.668201,1.06455,1.2043,1.1901,1.34184,1.3047,1.07511,1.17812,1.17546,1.33617,1.59851,0.964493,1.10685,1.05368,0.84129,0.877615,1.40185,1.59922,0.915331,1.1296,1.07745,1.35044,1.86879,1.90511,1.40972,1.05087,1.18146,1.89445,1.24427,1.27602,1.38269,1.43359,1.83117,1.807,1.33532,1.70874,1.66641,1.80792,1.54085,1.40838,1.42839,1.75117,1.57358,2 +0.670827,0.172138,0.0447123,0.127341,0.857599,0.582678,-0.0682084,1.08843,0.453598,0.511251,0.661957,1.55383,1.50953,-0.0136471,0.153273,1.26332,0.208649,0.267566,0.557371,0.723346,1.42634,1.71262,1.26088,0.646832,0.886315,1.63978,0.764901,1.16783,0.877712,0.966339,1.45454,1.45451,0.564289,1.6126,1.03984,1.31972,1.59639,1.09429,1.25541,1.15015,1.47087,1.339,1.45894,1.30374,1.44077,1.24951,1.39595,1.21833,1.43809,0.903539,1.56393,1.43637,1.50879,0.91107,1.39484,1.13265,1.58489,1.26784,1.22313,1.38188,2 +0.694143,1.068,-0.906501,0.148642,0.840233,-0.34844,0.365877,0.642952,0.304785,1.70691,0.533034,1.19108,1.54668,1.75747,0.422462,0.812789,0.875242,0.45979,0.572085,1.82334,0.713681,1.3578,1.96464,1.53262,0.940467,0.969358,1.60169,0.86905,1.15547,1.12964,1.45314,1.78485,1.55546,1.52496,1.53503,1.04603,1.03937,1.41402,1.492,1.86163,1.81961,1.1895,1.29082,1.03921,1.0852,1.5875,1.82701,1.87122,1.45773,1.21233,1.17578,1.92194,2.00287,1.68483,1.25284,1.3846,1.6267,1.26796,1.79458,1.38796,2 +-1.48468,1.06011,-0.254456,0.477572,-0.0709453,0.814309,-0.49925,0.279527,1.01614,1.51461,1.07836,0.988826,0.814331,1.40508,0.975489,1.65981,1.06472,1.66948,1.01729,1.10204,1.4981,1.42811,0.946146,1.55442,1.13915,0.777114,0.994309,1.68081,1.24,1.35688,0.916748,1.8309,1.77498,1.20046,0.92199,1.04036,1.69127,1.59465,1.10197,1.76539,1.20699,0.981665,1.61289,1.61104,1.03583,1.02719,1.37311,1.46532,1.19927,1.55722,1.21498,1.97964,1.80893,1.30613,1.44577,1.71672,1.77414,1.69011,1.72059,1.79138,2 +0.442219,1.0342,-0.518338,-1.17353,-0.114214,0.0888548,1.86991,0.848989,0.219878,1.22479,-0.00597164,0.815999,0.0859839,0.54737,0.200597,-0.0791059,0.646019,1.47015,1.24856,0.152524,0.650588,0.375335,1.33749,0.341638,0.999724,0.538608,1.1869,0.580186,0.697289,1.53551,1.4508,0.6826,1.14868,1.46058,0.736741,1.10447,0.956393,0.962407,0.818501,1.47587,0.784232,1.20688,1.0425,1.41689,1.32251,1.15342,1.45809,0.856673,0.873817,1.26005,1.5931,1.49222,1.01109,1.43753,0.884115,1.17457,1.30859,1.41807,0.938857,1.2532,2 +-0.492123,-1.58133,-0.567042,-0.587801,-1.00185,-1.18878,-0.0772907,-0.623725,1.04832,1.53407,0.484019,0.62784,0.578583,-0.41626,1.18895,1.1624,-0.0902102,0.0884434,1.25241,0.944624,1.42687,1.66455,1.20562,0.17175,0.745764,0.964557,1.50124,0.815607,1.48594,0.961773,1.27948,0.312133,1.09599,1.00957,0.953354,1.04889,1.3055,1.03688,1.34876,1.18662,1.42527,1.18633,0.926733,0.56765,0.574452,0.6005,0.868634,0.663106,1.42172,1.00524,1.2949,0.67859,0.757828,1.19618,1.056,1.40313,0.917949,1.09268,1.46003,0.876554,2 +-1.19159,-1.1936,-0.243798,0.598946,-1.00456,1.17081,1.0024,0.129322,0.360738,1.13903,1.56113,0.355434,1.18058,0.607147,0.613534,1.78645,0.892754,1.23086,0.358351,2.12845,0.544872,1.17129,1.01106,1.68463,1.36024,0.546322,1.74055,1.64933,1.7639,0.631655,0.818671,0.897869,1.02075,1.09848,1.2304,1.71861,1.43012,1.45629,1.45123,1.53499,1.56363,1.44206,1.61943,1.10467,1.01957,1.14791,1.57956,1.13177,1.28315,1.21774,1.80668,1.286,1.40426,1.2555,1.30916,1.70119,1.69819,1.90227,1.62346,1.40883,2 +-1.23877,0.591144,-0.897175,0.518857,-1.05815,-0.30653,1.24208,0.666911,0.632719,1.52268,0.371329,-0.447951,1.32688,0.121788,1.30459,0.952032,1.01203,0.948598,0.077754,0.0230114,0.919285,0.146186,1.11167,0.500676,1.06508,0.95902,0.120851,0.3493,0.495086,0.305026,0.218544,1.03082,0.59495,0.905696,0.217327,0.331816,0.892342,0.497578,0.858834,1.13231,0.561618,0.361559,0.867812,0.91362,0.33011,0.721515,0.482542,0.422088,0.966443,0.431458,0.60123,0.41602,0.529695,0.660903,0.843608,0.626665,0.629896,0.440347,1.12763,0.484521,2 +1.32753,0.970754,-0.66384,-0.137171,0.851426,0.675198,1.90678,0.587227,2.00947,0.870161,1.7982,0.692155,-0.145029,1.82476,1.49078,1.40381,0.255802,0.392082,1.22233,0.803744,1.67304,2.02404,1.10355,1.83979,1.20613,1.59066,0.621119,0.648527,1.02277,1.11057,0.871004,1.23702,0.655346,1.66855,0.889723,0.741244,0.886794,1.11932,1.04223,0.943289,1.58839,1.18247,0.987706,1.74504,1.20784,1.39662,1.31661,1.10167,1.48206,1.57044,1.28991,1.68166,1.55239,1.32638,1.82967,1.66265,1.35089,1.62046,1.58987,1.68259,2 +0.307218,-1.24944,0.170344,0.593694,0.466236,-0.600033,-0.917258,0.8363,-0.37543,0.80112,1.05885,1.15948,0.663791,1.05655,1.42298,-0.114421,-0.484055,0.731738,0.442208,1.49706,1.2454,0.983205,1.47416,1.3548,0.198838,1.29537,0.361003,0.366357,0.216866,0.902455,0.171403,0.266873,1.11221,1.11624,0.85882,0.753539,1.30028,0.476443,1.30408,0.873361,0.528821,1.10706,0.723415,0.795051,0.461934,0.642283,0.657467,1.12519,1.10093,0.63028,0.673267,1.19361,0.895591,0.901769,1.05164,0.536384,0.943057,1.33223,1.19506,0.70962,2 +1.26679,-1.0615,0.521661,-1.12523,0.196363,-0.085785,-0.2379,-0.284516,0.648907,0.455829,0.697566,1.4008,0.363094,1.26104,0.514947,0.0962734,0.806334,0.516831,0.664742,0.219016,1.64352,0.715286,1.44001,1.50068,1.60229,0.618966,0.863948,0.71253,0.40482,1.1686,1.47919,1.46435,1.48943,1.20948,0.85089,1.40196,0.831628,0.816036,1.10836,1.35501,1.14504,0.638928,1.2978,0.845615,1.39502,1.29573,1.16928,0.895759,1.59239,1.34502,1.21883,1.46596,1.22113,1.64121,1.39443,0.896339,1.55507,1.0905,1.49732,1.45013,2 +0.831662,0.141977,0.186807,-0.631515,-0.644526,0.663429,-0.291093,1.94383,1.67569,0.0457566,1.23025,1.70168,0.352196,0.374458,1.25848,0.616255,0.484346,1.15113,0.64933,0.38207,0.578589,1.78486,0.699558,1.13095,1.23751,1.01481,0.892288,0.806663,1.16326,1.74054,1.34502,1.27291,1.57885,1.08905,0.737148,1.08879,1.55773,0.841828,1.50526,0.96445,1.58929,1.27441,1.01787,1.32483,1.26702,1.66599,1.49968,1.49088,0.957971,1.6764,1.6366,1.1885,1.77237,1.13957,1.05971,1.52928,1.76441,1.31342,1.64249,1.58486,2 +1.2419,-0.915485,-1.27287,-0.364505,0.783225,-0.36414,0.361238,1.14284,1.63801,0.578454,1.64418,0.436302,1.50141,0.0666121,1.16341,0.0134321,0.982107,0.306312,0.48222,0.291846,0.0926784,1.42973,0.912903,0.375535,0.431061,0.906159,-0.0606868,0.989749,0.23926,0.533362,0.815241,0.304819,0.775261,0.676804,0.914672,1.088,0.630362,1.12034,1.16202,0.770249,1.00331,0.286514,0.767934,1.02493,0.504141,0.834135,1.04019,1.12266,0.297502,0.657398,0.532698,0.708087,0.633241,0.521914,0.803716,0.516205,0.900334,0.554904,0.648473,0.977,2 +1.08276,0.925152,0.365825,-0.147027,0.752578,0.53909,-0.206039,1.73585,-0.153875,1.29833,0.0355012,0.279934,0.954505,1.40308,-0.515082,-0.688547,-0.505395,0.738668,0.703063,1.47329,1.24999,1.00532,0.392028,0.667065,1.1863,-0.0521883,0.557998,0.367361,1.02619,0.522364,0.0909749,1.04643,0.0762769,0.888637,0.715371,0.175173,0.404253,0.532833,0.765281,0.25644,0.604397,0.317013,0.815587,0.593369,0.257491,0.332452,0.865978,0.47377,0.424033,1.12874,1.0154,0.455167,0.676716,1.14586,0.953563,0.941818,0.72397,0.437943,0.743509,0.992652,2 +1.17562,0.962889,0.677858,-0.279916,0.268924,1.22603,1.41668,-0.342499,1.20249,0.530726,0.0397227,0.225941,1.68532,0.806496,-0.0874085,0.417514,1.5257,0.641409,1.68434,1.91677,1.51294,1.26619,0.865311,0.928846,1.43281,0.849658,1.2839,1.0465,1.29194,1.40415,1.34727,0.565465,0.867824,0.617994,1.30852,1.0437,1.4572,0.903126,1.21307,1.05546,1.5218,1.68885,1.51642,1.57033,1.58759,1.04651,1.20811,1.11446,1.75072,1.05253,1.17553,1.03236,1.36242,1.65822,1.12528,1.36374,1.6544,1.31563,1.33178,1.20675,2 +-1.62366,-0.0253757,-1.35094,0.538464,-0.885968,-0.150902,-0.583569,0.0296153,0.20542,1.79467,0.935999,0.597737,1.37312,1.59055,1.59747,1.28003,-0.16944,1.39919,0.224098,1.77754,0.386862,1.19059,1.08347,1.50394,0.369263,1.2549,1.57199,1.19934,1.42898,1.40257,0.663633,0.5886,1.00866,0.944361,0.661823,0.799976,1.19521,0.697473,0.780527,0.762213,0.717667,0.960811,1.2668,1.16717,1.29331,1.14762,0.645488,1.08467,0.762644,1.38175,1.45464,1.23407,0.95839,1.29703,0.959969,1.18806,0.860907,1.02539,1.39649,0.916359,2 +0.820648,-1.09727,-0.0587661,0.112387,-0.0153294,0.619995,0.977584,1.80416,1.08664,1.99987,1.33835,0.45445,2.12442,1.1772,1.9567,1.2521,1.81811,1.38717,0.99887,2.06789,2.07478,1.67045,0.757083,1.98333,1.82247,0.744694,1.73006,1.80468,1.93185,0.864181,1.13985,1.92966,1.02754,1.42343,0.90808,1.92473,1.70766,1.89039,1.16007,1.62467,1.78453,1.84357,1.27368,1.08901,1.14616,1.15309,1.32286,1.15836,1.33739,1.52146,2.07166,1.45099,2.00612,1.62057,1.33867,1.83456,1.49402,1.42584,1.34563,1.73352,2 +1.62525,0.645766,0.138503,-1.08028,0.905357,-1.05442,0.598974,1.16086,0.173476,1.40391,1.62382,1.42068,0.549363,-0.469711,0.764405,-0.0628763,-0.276802,1.41297,0.276681,1.34605,1.5232,1.29245,0.599854,1.26927,1.00393,0.927225,1.04348,1.06693,0.510158,0.710005,1.06289,1.19367,1.09193,0.970947,0.494337,1.36499,0.441454,0.38892,1.05312,1.2145,0.687251,1.16332,0.470041,0.585972,0.630431,0.929963,0.512432,0.594239,1.03161,1.02364,0.976564,1.00373,1.21134,1.3086,0.969456,1.17724,0.736772,0.728687,1.29332,1.05176,2 +-1.10986,-1.03603,-0.411681,-0.52056,-0.592098,0.209241,-0.695993,0.929877,-0.0816586,1.34898,1.68569,0.201281,1.37437,0.928183,0.0277973,1.08645,0.809581,1.63172,1.17158,0.896132,0.859421,1.37637,1.82813,1.39985,1.26322,0.867944,1.68451,1.1902,1.02309,1.62177,1.57427,0.887862,0.950644,0.797594,1.66234,0.952058,1.15675,1.22,0.994555,0.868256,1.21192,1.33486,1.25336,1.41848,1.42953,1.20068,1.3457,1.24656,1.1372,1.64093,1.51183,1.53862,1.58853,1.23683,1.09133,1.35492,1.81826,1.78755,1.66923,1.63303,2 +-0.63605,-0.921859,-0.812938,0.328976,1.00701,0.181044,0.638003,0.606519,1.30669,1.78066,0.904559,0.116378,0.584726,1.69528,-0.0906795,-0.140536,1.29548,0.170183,0.283712,0.824237,1.94477,1.19439,0.849367,1.38552,1.92592,1.7935,1.48643,0.693165,1.0466,1.696,0.920939,1.58719,1.21638,0.949739,1.48038,1.15721,1.08682,1.12601,1.51159,1.6631,1.32472,1.16113,1.17413,0.957836,1.24835,0.95985,1.04518,1.60119,1.841,1.70904,1.32135,1.85106,1.4262,1.35951,1.43014,1.47738,1.93888,1.987,1.42811,1.8523,2 +1.52901,-1.30582,-0.0701093,-0.554882,0.482723,0.801436,1.68809,-0.566753,1.2853,1.21392,1.22108,1.67358,-0.00372247,0.598,-0.192854,-0.0644325,0.373868,0.0710164,1.45517,1.05279,0.928311,1.28348,0.552621,1.37711,1.03565,1.36199,1.29577,0.583267,0.572221,0.201475,1.43071,0.582259,1.24988,0.2754,0.928857,1.21295,0.947499,1.08286,0.56161,0.894018,0.821279,0.748206,0.832539,0.445341,0.562937,1.21586,0.635082,1.32658,0.839123,0.685395,0.86139,0.617777,1.35319,0.708256,1.09491,0.854389,0.747918,0.890658,0.719556,1.3053,2 +0.900265,-0.708086,0.216364,0.315083,-0.924383,0.805918,1.03495,-0.377792,1.47938,1.15203,0.476724,2.20877,1.42534,2.05779,0.96332,0.310388,0.712392,1.82954,1.60445,1.4966,1.24526,0.800976,0.961824,0.664729,0.932894,1.82261,1.8039,1.60181,1.21831,1.53933,0.905031,1.72265,1.13218,1.23571,1.51351,1.53565,1.80587,1.09377,1.03274,0.98224,1.02356,1.59613,1.7903,1.28179,1.33946,1.42927,1.73327,1.23446,1.72785,1.81532,1.17793,1.85879,1.92204,1.78263,1.98872,1.86557,1.85693,1.37478,1.98294,1.35025,2 +0.131049,-0.114945,-0.0571864,0.082343,0.772325,1.23063,-0.762441,1.40131,1.4446,0.765775,0.670612,2.08297,1.72699,1.18523,0.691194,0.946063,1.29924,0.489683,1.0885,1.91971,0.997442,1.44892,1.97056,1.787,1.79727,1.53973,1.34252,1.33195,0.586624,0.773932,1.12962,1.72385,0.659503,0.82541,1.46145,1.33319,0.822337,1.04753,1.19782,1.03157,1.24451,1.37646,0.974837,1.58716,1.25859,1.5724,1.30495,0.957082,1.50448,1.6961,1.27285,1.74465,1.06756,1.50454,1.14062,1.54115,1.16125,1.25208,1.63014,1.51722,2 +0.664305,1.29735,0.614348,0.714418,-1.0194,0.938759,-0.278157,0.60796,-0.153405,0.645314,1.40557,1.50532,0.603853,0.857015,1.62253,0.859306,0.04507,1.53432,0.0893168,1.54773,0.946979,0.874909,1.27882,0.423475,0.61003,1.06235,0.96963,0.346692,0.664866,1.32886,0.92366,0.519048,1.26927,0.720357,0.921547,1.0078,1.50259,1.435,1.15788,0.841096,1.32633,1.44142,1.50095,1.25674,1.03194,0.742041,1.3037,1.11596,1.15867,0.82718,1.15348,1.67081,1.35987,0.879654,0.966408,1.46945,0.998075,1.45458,1.3242,1.43809,2 +-0.763271,-1.29683,-0.528482,0.40448,0.311918,-0.9426,-0.469033,0.121472,1.17805,0.999913,1.19891,2.02134,1.54343,0.226054,0.697842,1.61562,0.183763,1.18264,2.09222,2.20753,1.61838,1.22894,1.55561,1.73611,1.18392,1.26238,0.873696,1.13662,0.748785,1.18594,1.54441,1.75383,1.2509,1.48515,1.73331,1.6771,1.9228,1.92995,1.93819,1.22096,1.46032,1.19093,1.45409,1.71921,1.23095,1.28079,1.65029,1.87691,1.53518,1.95282,1.33523,1.36089,1.59702,1.96269,1.45362,1.36451,1.42933,1.92209,1.58445,2.04135,2 +-1.45811,0.471751,-0.0717651,0.391751,0.592801,0.936109,1.15633,-0.341574,1.3678,0.498645,-0.0642951,0.682677,1.151,1.7102,0.617139,0.484314,0.951903,0.957855,0.441122,1.29887,0.376469,1.37892,1.38403,0.634294,0.435003,0.174004,0.945398,1.23895,1.49572,0.410851,0.603711,0.788659,0.680629,0.746685,0.806671,1.41804,1.21026,1.11673,0.69553,0.576487,1.08245,0.615087,0.995996,0.802088,0.694139,0.508514,1.2799,0.632731,0.80239,1.35716,1.45268,0.863263,1.50293,1.14198,1.40905,1.13104,0.95055,1.09763,1.42681,0.897565,2 +-0.0121351,-0.960077,-0.545878,-0.717353,-0.542051,-0.213149,-1.06731,0.619703,0.887327,1.41512,0.0581982,-0.00716613,0.669093,0.221286,0.497361,1.13986,0.286537,1.02798,0.978041,0.798403,0.483566,0.480244,1.61526,1.37959,0.516717,1.37576,0.716573,1.24863,0.935697,1.08367,0.595652,0.484408,0.497286,1.28061,0.775972,1.07657,1.10323,0.840762,1.1079,1.49278,1.09476,1.00423,1.00261,1.08399,1.49399,1.2161,1.29706,1.1885,1.17118,0.734315,1.35975,0.887237,0.805734,0.923709,0.900393,0.912511,0.941369,1.005,0.905065,1.07504,2 +-1.59417,-1.41899,-0.574274,0.0272334,-0.534229,0.47978,0.691147,1.62548,1.68127,0.00780128,0.665754,1.22186,0.794291,1.21031,0.983333,1.06415,-0.156467,0.0617912,1.76944,0.835729,1.01661,1.10874,0.298906,0.45331,0.354044,0.776947,1.35648,0.40849,1.60587,0.920293,1.24939,1.54873,0.66139,1.35312,0.833596,1.10953,0.818593,1.35688,1.54432,0.592272,1.05028,1.20113,1.32083,1.34216,1.02743,1.05829,1.23218,0.733785,0.926237,1.34463,0.845812,1.06898,1.38255,1.58064,1.60115,1.29611,1.24602,1.13853,1.01648,0.977908,2 +-1.41167,0.647257,-0.792193,0.784019,-0.913557,-0.42016,0.288604,0.944265,0.636216,-0.170503,0.560076,0.0231053,1.44184,0.0851649,1.021,-0.536717,0.788838,0.484783,1.31577,-0.132241,0.894309,0.424114,1.24432,1.02657,0.421881,0.884467,0.105039,0.37035,0.916515,0.24198,0.991765,0.627811,1.24243,0.47327,1.14641,0.33925,0.661507,0.962174,1.03029,0.857241,0.831618,1.04021,1.10169,0.452547,0.567267,0.519285,0.648367,0.792066,0.539182,0.746998,0.806736,1.30912,0.783779,1.13865,1.33332,1.11693,1.21247,0.606279,0.887688,0.945627,2 +-1.17371,0.661424,-0.854943,0.693408,-0.940375,0.373238,1.37212,0.370716,0.902481,0.628242,0.497655,1.31177,0.159929,0.311638,1.35667,0.676693,0.736681,1.62363,1.58899,1.81379,0.222949,0.483094,0.649214,0.515098,1.46177,0.512216,0.752453,0.536587,1.34602,0.2859,0.782914,0.878293,0.500032,1.07508,1.25318,0.881857,0.555681,1.44689,1.01195,1.41232,1.02029,1.40327,1.26778,0.882373,1.09812,1.13204,0.624027,1.1992,1.26203,1.02677,0.912844,1.21123,0.912444,1.07883,0.88603,1.00503,0.808205,1.31351,1.22809,0.896729,2 +0.680897,0.865623,-0.582191,0.201031,-0.877798,-0.43809,0.958928,0.038132,0.959882,-0.243391,0.184772,1.33805,0.0609517,1.37184,0.824232,-0.370316,0.929685,1.47263,1.26179,1.50293,1.68106,0.581134,0.626661,0.926705,0.759928,0.742395,0.369892,1.09417,0.502584,0.571657,0.666031,1.1339,0.932034,0.952141,0.510701,1.06384,0.59533,0.763903,0.680784,0.785099,1.1313,0.608304,0.57443,1.16862,0.774655,1.16282,0.463433,1.14325,1.2294,1.11461,0.545735,0.883325,0.57632,0.861054,1.27394,1.13063,0.772683,1.31969,0.737324,0.828226,2 +-1.0672,-1.5322,0.642611,-0.449847,-0.701754,1.07796,-1.03476,1.28261,1.7452,1.53726,1.29604,1.74469,0.95946,0.578278,-0.237189,-0.0386088,0.238787,-0.0910205,-0.0687603,1.55076,0.147496,1.55448,0.988592,1.21118,1.27749,1.28114,0.819739,0.0855712,1.17321,0.222874,0.379618,1.23269,0.990838,0.382356,0.403577,0.21146,1.13542,1.08701,0.736905,0.653134,0.405916,0.626008,1.22757,0.483164,0.924255,0.691999,0.540482,0.977194,0.552048,1.02069,0.562289,0.562611,1.24664,1.17198,1.17061,0.895118,0.982523,0.84815,1.07499,0.907279,2 +0.512939,1.25149,-0.109468,0.828162,-0.603932,1.46654,1.53345,0.966073,0.00740355,1.53766,1.3082,0.283669,1.04368,0.688667,1.40223,0.268249,1.4354,0.943001,0.65214,0.926809,1.27978,0.977202,0.408703,1.04239,1.36703,1.09881,0.666255,1.39627,0.958453,0.667437,1.38852,0.538439,1.65388,0.697402,1.20412,0.824953,1.29124,0.775641,1.42954,0.902997,1.31193,0.812447,0.859663,1.66769,1.48933,1.57126,1.30056,1.21049,1.0637,1.41283,1.60155,1.29532,1.62934,1.68218,1.46784,1.74085,1.01169,1.06808,1.63035,1.35214,2 +0.0219944,-1.33047,-1.40853,0.740253,-0.781881,0.259697,1.50411,1.79515,1.48852,1.43726,0.362232,0.970416,-0.116157,-0.0936836,0.332264,-0.17987,1.09386,1.03099,1.16277,1.49447,-0.08002,1.07355,1.49572,0.91939,0.419017,0.497625,0.632617,0.304201,1.22034,0.293253,0.58553,1.0654,1.07895,0.81603,0.247742,0.43702,1.05549,0.327073,1.17765,0.365335,0.446145,1.10753,0.577268,0.612028,0.405773,0.56234,1.05267,0.66645,1.21919,1.1846,1.13478,1.06959,0.803172,0.727904,1.18916,0.80099,1.04912,0.55629,1.05161,0.591746,2 +-0.924964,0.099381,-0.822302,0.580793,0.180902,0.500757,-0.930121,1.0721,0.839609,0.661732,1.98842,0.838877,1.64893,0.688259,0.897091,1.54569,1.09181,1.44823,1.69877,1.81307,0.458005,1.81525,0.952064,1.06922,0.695926,1.26464,1.5317,1.82886,0.55899,0.944228,1.05887,1.27645,1.16997,0.721725,1.6227,1.42081,1.39906,1.44907,0.839387,0.948793,0.79636,1.36012,1.35207,1.31155,0.940237,1.25694,1.30461,1.28323,1.11104,0.935795,1.31628,1.26351,1.50856,1.62639,1.6178,1.58376,1.33242,1.48738,1.29328,1.15943,2 +0.345266,-1.13202,-0.187519,0.178242,-0.0352053,0.979211,-0.420553,-0.314368,0.609311,0.00835086,0.679673,2.00539,0.696137,0.67735,-0.00563365,1.15941,0.799508,1.04589,2.09233,0.860846,1.68349,2.253,2.12737,1.08672,1.21034,1.84387,1.97978,0.885368,1.31628,1.75466,1.90403,1.3424,1.50023,1.17486,1.74347,1.0456,1.335,1.70677,1.32383,1.1131,1.11837,1.90667,1.53621,1.21443,1.47711,1.52942,1.8053,1.54535,1.56804,1.17469,1.62143,1.69923,1.33346,1.7902,1.78845,1.64529,1.56078,1.57696,2.03491,1.72422,2 +-0.442974,0.155638,-0.270614,-0.594182,-0.0873224,-0.458029,0.396389,2.00815,-0.0503731,0.169893,1.94405,1.03023,1.52716,1.49287,1.7813,0.159003,1.57916,1.02508,0.886407,0.384017,1.17971,0.617481,0.503274,0.384807,1.30098,0.406002,1.33353,0.399524,0.589397,0.885235,0.986939,0.549633,0.586503,0.558565,1.24785,0.947971,1.44255,1.06248,1.51253,1.1398,0.765708,1.48251,1.42947,1.51238,0.746931,1.41265,0.867522,0.900957,0.81663,1.07031,1.35958,1.21847,0.964213,1.04581,1.38461,1.23884,1.21981,1.09629,0.986083,1.35278,2 +-1.51464,0.44135,0.219733,-0.802507,-0.0889344,-0.610875,-0.477036,-0.274515,1.77753,0.808986,0.771044,-0.136341,0.0564353,0.254607,-0.298564,0.876374,0.192627,0.581779,1.50392,1.30753,0.777765,0.522236,0.248242,0.482253,0.988028,0.998987,0.67463,0.56643,0.909061,1.22004,1.03611,1.25109,1.15067,0.444567,0.689518,0.598355,1.23717,1.30702,0.525382,0.423569,1.00485,0.99947,1.19049,1.20303,1.07293,1.14051,0.522679,1.05678,0.681561,1.14834,1.16002,0.765052,0.833921,0.945797,1.32047,1.0037,1.22498,0.602899,1.11406,0.843625,2 +-1.30042,-0.552014,-0.24001,-0.0853298,0.158132,-0.157063,1.88992,1.08574,1.78246,0.269006,1.39391,0.214155,0.378581,1.56165,0.122797,0.185579,1.50805,0.911558,0.926466,0.996167,1.34676,1.92925,1.52037,1.17672,1.01921,0.825633,1.65775,0.502116,0.521437,1.60504,0.699161,1.25748,1.68093,1.61975,1.30601,0.707453,1.08616,0.774266,1.6302,1.25523,1.22774,0.861194,1.51953,1.02919,1.03728,1.42137,1.59369,0.937917,1.05577,1.40993,1.00249,1.57985,1.37848,1.03681,1.28017,1.16826,1.61984,1.34644,1.74717,1.43505,2 +-1.04818,0.702624,-1.31155,-0.943489,0.469973,1.12457,0.0224676,-0.13429,0.375741,0.0409822,0.141091,1.07189,0.798186,-0.525963,1.26452,0.550566,0.360564,0.111049,0.492076,0.583618,1.01087,0.723079,0.394528,1.46448,0.282445,1.25201,0.373004,1.10971,0.400074,0.139004,0.91557,0.996732,1.22085,0.75308,0.792735,0.993617,1.16648,0.635576,0.751513,0.7116,0.572345,1.07922,0.81764,0.977722,1.21089,0.701593,0.995931,1.14225,1.13527,0.788279,0.983196,0.619346,0.888155,1.19832,1.11851,0.784858,0.782536,1.23123,1.11385,1.13669,2 +-1.53689,0.089183,0.452916,0.0892381,0.0121672,-0.424885,-0.824397,-0.545332,1.12577,-0.0237309,0.245162,1.9552,1.7826,1.79959,0.0839494,0.0995056,1.1241,1.07087,1.30371,0.305098,1.39803,1.31974,1.20045,1.4373,0.820647,0.684264,1.43106,0.371042,0.40938,0.912521,1.19195,1.3895,1.27529,1.48294,1.16633,0.942558,1.03061,0.800499,0.802633,1.50061,0.95649,1.09758,1.44727,0.916832,0.818884,1.28463,1.06856,1.18386,1.14021,1.32665,1.54156,1.68076,1.50289,0.987283,1.12135,1.02735,1.52497,1.66642,1.40698,0.988342,2 +0.722837,0.383144,-0.450526,-0.835443,0.834738,-0.963776,-0.2027,1.51373,0.845231,0.285975,1.67506,0.505684,0.972991,0.680337,1.68041,1.36313,0.183067,1.33661,0.709799,1.26964,1.06729,1.31894,0.668003,0.737465,0.543188,0.739157,1.57971,1.09077,1.29282,1.38075,0.995487,0.822657,0.969625,1.29998,0.994809,1.07529,0.678303,0.820093,1.46069,1.09424,0.781585,0.657479,0.721253,1.1123,1.16373,0.775,0.945243,1.45758,1.36025,1.0041,1.21722,0.951607,1.0999,1.26265,1.66528,1.05583,1.16303,0.954368,0.970867,1.43575,2 +-0.519758,-0.0865394,0.60643,0.809889,0.808652,1.05959,-0.158467,1.98905,1.69601,1.69268,0.872359,0.870518,1.17791,1.03666,0.164792,0.647961,1.42011,1.40027,1.93065,1.65709,0.644971,2.15216,1.09536,1.9548,1.55305,1.44227,1.37494,1.82993,0.979137,1.23881,1.74701,0.868199,0.875251,1.69096,1.29086,1.00576,1.43156,1.01808,1.50771,1.78333,1.54457,1.21555,1.53742,1.18567,1.38554,1.78272,1.27272,1.28886,1.1406,1.86937,1.26826,1.51995,1.26194,1.95909,1.42229,1.61714,1.51992,1.98642,1.63492,1.55374,2 +0.944378,-0.339612,-1.23053,0.706222,-0.376778,1.02145,0.65796,1.53945,1.76932,0.903256,1.03143,0.249043,0.885753,0.679372,-0.198112,0.566779,1.33342,1.16842,0.5949,1.7164,1.70183,1.37927,1.14739,0.675151,0.540755,1.18263,0.27199,1.21016,1.20861,0.685495,0.35242,0.732576,0.615657,0.781394,1.01215,0.819108,0.561492,1.07773,0.505659,0.386824,0.827812,1.0114,0.880013,0.684869,0.714179,0.836532,0.486655,0.591218,1.01802,1.22902,0.555544,0.587297,0.705138,0.644702,1.01761,0.984537,1.05262,0.777996,1.2024,1.24478,2 +0.944064,0.69488,-1.28855,-0.418964,0.337235,-0.586895,0.140538,1.63815,-0.285842,0.355754,1.53753,1.13149,-0.0862428,0.333883,0.0503778,0.349962,-0.065192,0.846114,1.86091,0.479395,1.0434,0.768154,1.64308,0.43172,1.12745,1.53087,0.912047,0.720019,1.12818,1.11189,0.905489,1.14287,0.742875,1.26308,0.947772,1.50687,0.944789,1.55697,0.771728,1.60073,1.4335,0.730557,0.970101,0.893842,1.38712,1.1939,0.946657,1.48774,0.821798,1.2557,1.0387,1.29012,1.17379,1.26138,1.5235,1.36499,1.56852,1.72375,1.28549,1.30559,2 +0.497376,-0.998151,0.405678,-0.0821646,0.123308,-0.404284,0.740879,0.566129,-0.135637,-0.0317513,1.16484,0.284382,-0.126287,0.0362784,1.51237,-0.110932,1.72223,1.39061,0.389454,0.541714,1.32252,0.897543,0.608909,1.45334,1.53569,0.701769,1.49391,1.41333,1.22517,0.849632,0.634714,1.12458,0.773736,0.684483,0.822442,1.41835,1.49875,0.696457,0.71484,1.30413,1.65663,1.26971,0.708391,1.41932,1.10713,1.00973,1.55304,1.15152,1.00902,1.68462,1.09372,1.4967,1.71097,1.18849,1.43252,1.51597,1.52532,1.44011,1.16217,1.18364,2 +-0.715266,-1.54357,-0.156782,-0.280823,0.431119,-0.43151,-1.04326,0.228555,0.192146,0.734088,0.265845,1.75241,1.59622,1.15249,1.39984,0.786315,-0.142831,0.63192,0.60446,1.72335,1.47261,1.66395,1.20166,0.267361,0.783691,0.195908,1.30028,0.868104,1.29154,0.795038,0.762127,0.919069,1.22548,1.0176,0.519667,0.991148,0.922436,1.03924,0.941149,0.855299,0.426018,0.522696,0.583217,0.762088,0.614948,1.05858,0.792068,0.468645,0.866229,0.996076,1.20051,0.632448,0.926444,1.11565,1.03514,0.86081,1.06089,1.0396,1.00988,1.1452,2 +0.679324,0.314645,-0.728549,-1.08536,-0.142316,1.24948,-0.861095,-0.418935,0.303977,1.50187,0.233981,1.43393,1.40799,-0.108878,1.0531,0.486913,-0.170848,-0.00726551,0.139293,0.623171,1.44127,1.06456,0.662884,1.05493,1.49518,1.31823,0.646976,1.40391,1.23774,0.945977,0.944364,1.24897,0.318567,0.644728,0.536598,0.676852,0.849814,1.08693,1.43943,1.04809,0.842409,0.931526,1.36116,0.838708,0.699325,0.830939,0.831917,1.12623,0.772403,0.639806,0.906602,1.07278,1.18951,1.13413,1.03383,0.824287,1.14245,0.877935,0.944273,1.37078,2 +0.40357,-0.145178,-0.718253,0.801043,0.808816,0.639912,-0.282477,0.37362,1.84007,1.22634,0.530067,0.439361,-0.0156992,1.02725,-0.338079,0.926294,1.14519,1.15319,0.88037,1.37056,0.528352,0.504063,1.49327,0.632324,0.516597,0.602957,1.32527,1.25999,0.765567,1.39791,0.797363,0.886676,1.38175,0.472577,0.960911,0.939403,0.725244,1.42195,0.736533,0.545038,0.750901,1.11901,0.962107,0.54499,1.33069,1.35544,1.01766,1.03286,1.40033,0.986765,0.654674,1.28334,0.852809,0.822339,1.32562,1.46599,1.29235,1.41239,0.892931,1.4764,2 +0.264277,-1.53807,-0.356469,-0.383411,0.832759,-0.37231,1.08338,0.296302,0.832465,1.55698,1.73395,0.727174,0.21738,-0.0353723,0.803463,1.00412,1.52843,1.66633,1.34787,0.271525,1.83333,1.41945,0.989017,0.755459,1.73667,0.588142,0.903591,1.61055,1.6687,1.43036,1.48037,1.28651,0.57695,1.03145,0.591653,1.25168,1.00605,0.81567,1.58546,0.755934,1.05403,0.722794,1.62359,0.760294,1.47162,0.898449,0.871369,1.3919,1.66257,1.43096,0.907678,0.996389,1.50493,0.97436,1.1493,1.05622,1.68673,1.1394,1.10982,1.02392,2 +-1.64826,-0.798858,-1.03598,0.22803,0.820925,1.2836,1.46518,-0.230082,1.25123,1.63415,1.49965,0.156202,0.292605,0.669799,0.616225,1.46893,1.00666,0.894565,0.715572,0.802015,1.45833,0.465169,1.36023,1.02985,1.39007,0.648282,1.26521,0.438691,1.09187,1.33929,0.943665,1.24949,0.778531,1.30083,0.993312,1.0407,1.60576,1.27199,1.55587,1.42234,0.974714,1.18348,1.37602,0.765491,1.06035,0.749289,1.19901,1.60036,0.923606,1.3353,1.1019,1.48959,1.12287,1.06765,1.57399,1.57318,1.72297,1.22175,1.504,1.46204,2 +-1.17972,-0.133705,-0.984248,-0.0481509,-0.0451708,-1.2955,0.618071,0.829805,0.218505,0.265468,1.57782,0.0448565,-0.425576,0.407185,0.774147,0.346063,-0.0399751,1.10189,0.418307,0.438363,0.570043,1.61087,0.214387,0.00932346,0.569275,0.610012,0.446217,0.18551,1.1747,0.426081,0.780151,0.579614,0.648882,1.20294,0.443721,0.531046,0.942934,1.03811,0.50448,0.560822,0.334567,0.5815,0.478082,1.06018,0.369009,0.942521,0.545469,0.658062,0.807061,0.923383,1.24054,0.43998,0.92697,0.84586,0.823136,0.618094,1.04562,0.640944,1.11204,0.825187,2 +1.28476,-0.369076,-0.662165,-0.443944,0.571478,1.28406,0.438585,0.218597,1.3022,1.45369,1.75156,1.31766,1.5461,0.750967,0.329274,0.493292,0.657302,1.13026,2.00617,1.93735,1.80576,0.757415,1.35422,1.65456,1.4941,1.66344,0.939917,1.76596,0.78008,1.71612,1.81317,1.35432,1.50549,0.855757,1.76149,1.11302,1.40378,1.02781,1.73031,1.42705,1.54981,1.01678,1.23811,1.43555,1.05117,1.10406,1.34197,1.77478,1.26776,1.74888,1.75311,1.2984,1.81612,1.58884,1.37122,1.19051,1.73086,1.27158,1.33507,1.37527,2 +-0.41408,0.256632,0.692627,-0.254269,-0.465221,-0.895965,1.14806,1.70363,0.457565,0.924019,0.67796,-0.0672774,-0.308644,0.97694,0.252371,0.801741,0.525452,0.763212,0.18019,1.2783,1.56282,1.30987,0.702643,0.177744,1.44409,1.09956,1.2525,0.223362,0.915101,0.559098,0.395631,1.13095,1.35742,0.768642,0.351402,1.19375,0.3344,1.17193,1.0143,1.04617,0.90232,0.614877,1.0075,0.735357,0.870881,1.00918,0.486626,0.52051,1.26753,0.803406,1.28027,1.37156,0.589607,0.578526,1.11598,0.768308,1.24173,1.39017,1.06207,0.675174,2 +-0.60255,0.0737418,-1.22508,-0.13493,-0.655023,1.0247,0.975694,1.19652,0.632117,1.35946,0.962017,1.35728,0.602646,0.540301,1.31277,-0.58296,1.18323,0.716451,1.25322,0.287424,0.804048,1.28364,0.671354,0.100359,0.319784,0.47993,1.22425,-0.01124,0.193234,0.242388,0.510221,1.14777,0.493511,0.508025,1.07635,1.14119,0.955393,0.645765,0.406741,0.939008,0.293245,0.259204,0.263007,0.715303,0.322873,0.770708,0.757429,1.0619,0.405034,0.987808,0.545346,0.86479,1.15118,0.62129,1.05933,0.83898,0.870048,0.878681,0.659498,0.626814,2 +1.07171,0.45542,-1.30865,0.720475,-1.01327,0.372598,1.78927,0.68887,-0.282984,0.352611,0.934127,1.24554,0.785368,1.53313,1.24014,0.0444377,0.771557,-0.132913,0.888782,0.960554,1.59117,1.49911,1.02763,1.49721,1.08747,1.20987,0.473573,0.789111,1.44667,0.326101,0.526796,0.717785,1.33382,0.418498,1.2771,0.499742,0.559806,0.868328,1.05518,0.615582,0.857573,0.997362,0.865199,0.663159,1.12532,1.32736,0.582171,1.05829,1.12657,1.05681,0.985312,1.43956,0.935216,0.850868,0.83843,0.810257,1.31591,0.995483,1.2252,1.3183,2 +1.29549,0.576256,-0.975988,-0.955449,0.0580558,-0.35745,-0.554873,1.07763,-0.194787,1.17681,-0.0990383,0.34301,0.421039,-0.431455,0.667189,0.147032,0.447912,0.75287,0.22984,-0.0579629,0.0552372,0.232454,0.583338,0.233867,0.727741,0.720056,0.122167,1.15704,0.883423,1.12809,1.20213,0.983681,1.09883,1.04383,0.806335,0.901358,0.776979,0.343742,1.30977,1.01172,0.445012,0.693329,0.98367,0.474065,0.906819,1.04066,0.750436,0.752151,0.815431,1.10232,0.992751,0.971083,0.595963,1.31487,0.705036,0.65426,0.809972,0.881375,1.24037,1.30643,2 +-1.16868,-0.730262,-0.158267,-0.0179527,-1.10424,1.51106,0.554397,-0.210467,1.7417,1.11306,1.70683,0.769701,0.805299,0.102011,0.150477,1.42982,0.435303,1.03688,0.553662,1.01616,1.84856,1.43163,2.02266,1.88508,1.44441,1.0504,1.83406,0.857764,1.71612,1.55404,1.67358,0.938782,1.62426,1.0669,1.45384,1.53798,1.27461,1.03392,1.28287,0.965792,1.35407,1.49296,1.44391,1.64318,0.972762,1.51646,1.17735,1.06749,1.79626,1.28761,1.2906,1.67946,1.36887,1.37234,1.55576,1.45656,1.60715,1.39685,1.93971,1.36651,2 +1.35505,-0.885155,-0.418818,-1.08551,-0.955507,-0.0126081,-1.28097,-1.84188,-0.234852,-1.09694,-1.30875,-0.00697846,-1.8809,-1.77063,-1.00352,-2.16497,-1.74919,-1.50589,-1.3518,-1.59218,-1.77593,-1.25448,-1.81562,-1.25306,-1.20939,-1.10268,-1.93903,-1.51808,-1.70753,-1.76693,-0.984213,-1.0976,-1.75686,-1.33594,-1.52223,-1.2973,-1.58182,-1.55785,-1.79347,-1.39914,-1.52322,-1.14296,-1.98505,-1.44136,-1.71993,-2.08906,-1.99809,-1.30849,-2.03872,-2.11531,-1.70843,-1.86921,-1.47913,-2.12981,-1.70726,-2.07923,-1.8813,-2.00896,-1.98236,-2.28617,3 +-1.53028,1.04577,-0.26854,0.379312,-0.785288,0.438841,0.496933,0.530212,0.893024,0.310809,-0.4399,-0.467318,-1.19269,-1.45952,-1.27341,-0.954549,-0.519876,0.0299296,-0.508722,0.341614,-0.246576,-0.491093,-0.455047,-0.740421,-0.722,-1.03642,-0.479974,-0.661013,-0.793908,-0.177737,-0.181635,-0.593532,-0.242407,-0.992178,-0.862159,-0.564845,-1.03301,-0.402941,-0.44433,-0.974086,-0.936077,-0.29547,-1.09078,-0.909499,-0.773991,-0.91599,-0.300344,-1.00309,-0.583256,-0.95165,-1.06249,-0.611509,-0.969047,-0.305014,-0.823249,-0.524827,-1.15044,-0.626717,-0.824541,-0.854915,3 +-1.26723,-0.231403,0.43613,-1.12437,-0.891904,-1.68223,0.936149,0.642543,-0.796863,0.772885,0.102833,-1.17037,-0.510419,0.200711,-1.38497,-0.516041,-0.122767,-1.39995,-1.05733,-0.628614,-1.34518,-0.369607,-0.443359,-0.409342,-0.376824,-0.230778,-0.928584,-1.39931,-0.575624,-1.41066,-0.642882,-0.853749,-0.87395,-0.348741,-0.9303,-0.907983,-0.557373,-1.09042,-0.498997,-0.381761,-0.676658,-0.441097,-0.60749,-1.01142,-1.35699,-1.36031,-1.06854,-1.15394,-0.938001,-0.813531,-1.3419,-0.862916,-0.971159,-0.847604,-0.736147,-0.808657,-0.811308,-0.982781,-1.30658,-0.816496,3 +-0.66998,0.623614,-1.58028,-0.460164,-0.0935325,0.132046,-0.080089,-0.436097,0.82752,-0.0411457,-1.281,-0.138292,-0.817461,-0.546463,-1.34025,-1.32494,-1.30203,-1.06107,-0.728944,-0.398849,-0.813767,-0.774886,-0.727033,-1.08118,-1.53953,-0.939354,-1.81246,-1.79087,-1.29929,-0.610547,-0.799922,-1.5879,-1.0237,-1.58535,-1.70037,-1.6817,-0.821038,-1.46778,-0.910191,-1.51869,-1.16289,-0.881336,-0.852185,-0.979427,-1.02412,-1.21691,-1.53629,-1.41551,-1.51512,-1.30633,-1.11848,-1.17917,-0.979973,-1.00554,-1.35381,-1.7505,-1.39291,-1.56242,-1.39429,-1.13279,3 +0.193043,0.421747,0.44281,0.163083,0.564022,0.485764,0.716431,0.786619,-0.817563,-0.540181,-0.956456,-0.74085,0.514256,0.108263,0.213875,-0.310271,-1.24254,0.165035,-0.941622,0.061116,-1.27583,-0.40342,0.210105,0.0344617,-1.04554,-0.236829,-1.37805,-1.26565,-0.776293,-0.62034,-0.428151,-0.61338,-0.380389,-0.288795,-0.173567,-0.738167,-0.743249,-0.803015,-1.06496,-0.289298,-0.629686,-0.547217,-0.996434,-0.802031,-1.146,-1.1302,-0.403827,-0.68742,-0.492384,-0.984827,-0.995454,-0.970039,-0.437824,-0.797419,-0.549024,-0.92045,-1.19509,-0.728986,-0.813324,-1.11603,3 +0.767065,1.03567,-0.333877,-1.36094,-0.659529,-1.08418,-0.826901,0.127365,0.0231591,0.649144,0.14095,0.497933,-1.09832,-1.13364,-0.844802,-0.839966,-0.85999,0.154663,-0.9426,0.194303,-0.303616,-0.101082,-0.176386,-0.726439,-1.15386,-0.574047,-0.339178,-0.652958,-1.07272,-0.627767,-1.20324,-0.755937,-0.442911,-0.971321,-1.10665,-1.08011,-0.961989,-0.921812,-0.971241,-0.723888,-0.626593,-0.706572,-1.16142,-0.632975,-0.499215,-0.832001,-0.71126,-1.08003,-0.475878,-0.994303,-0.903968,-0.769126,-0.793397,-1.02283,-0.779155,-1.20809,-0.892489,-0.833448,-1.24016,-1.13115,3 +1.34612,-0.622534,-0.297925,0.282661,-0.170233,-1.7927,-1.09255,-1.36686,-0.925822,0.438552,-1.37724,-1.06344,-0.189974,-1.71263,-1.46722,-1.45373,-0.510117,-1.13065,-1.38952,-0.533921,-1.20192,-0.565424,-1.6515,-0.319223,-0.709082,-1.46877,-1.39425,-0.739603,-1.11038,-0.984186,-0.659354,-1.59137,-1.03384,-1.32151,-1.27039,-1.111,-1.53301,-1.06859,-1.49828,-1.17325,-0.899961,-1.59117,-0.857838,-1.42266,-1.61009,-0.836555,-1.4928,-1.49572,-1.00787,-1.40024,-1.14998,-1.24198,-1.0203,-1.08434,-1.545,-1.17202,-1.19115,-1.22709,-1.54717,-1.38767,3 +0.0921702,0.522452,-0.716825,-0.16003,-0.556321,-0.195352,-0.936429,0.180551,-0.509127,-0.297765,-0.0804744,-0.33165,-0.089717,0.141009,-0.0718273,-1.09011,-1.31737,-0.898957,0.00463654,-0.137364,-0.143879,-1.38137,-1.32449,-0.919667,-0.650461,-0.975145,-0.713638,-0.64945,-0.678441,-1.26008,-0.844739,-0.979919,-1.06841,-0.683961,-0.616122,-0.554835,-0.942152,-1.04503,-0.919725,-0.535454,-0.626714,-0.565885,-0.948548,-0.849789,-0.701349,-0.779148,-1.01559,-0.757152,-1.01591,-1.03432,-0.940213,-0.721505,-1.01598,-1.14014,-0.933459,-0.692121,-0.864294,-0.688347,-0.65264,-1.07834,3 +1.65561,0.0403338,-1.36824,0.174529,-0.765046,0.222026,0.808751,-0.70829,0.34722,0.151929,0.38961,-0.640202,0.250641,-0.0368009,-0.819936,-0.276034,-0.921243,-0.968804,0.00368979,-1.672,-0.59804,-0.444668,-0.0281056,-0.846234,-0.572881,-1.29679,-1.20153,-1.60093,-0.499608,-0.495578,-0.893652,-1.31087,-0.554999,-1.00682,-0.576572,-0.431816,-0.628005,-0.619181,-1.03866,-1.21261,-0.643449,-0.462363,-1.00122,-0.609479,-1.34982,-0.941033,-1.36447,-1.28212,-1.37122,-1.23762,-0.823736,-0.790241,-0.924139,-1.11455,-0.706747,-0.84398,-1.42656,-0.874913,-1.42527,-1.13503,3 +-0.043976,-0.782069,-0.244026,-0.819052,-0.901704,-0.431267,-0.431059,-0.714957,0.676206,-0.907112,-0.902336,-0.0509687,-1.89644,-1.1162,-0.261193,-0.524181,-0.706021,-1.90966,-0.996581,-1.01541,-0.605489,-1.51767,-1.56798,-0.755039,-0.631419,-1.34331,-0.834286,-1.03809,-1.6814,-1.5282,-0.733308,-1.41464,-1.17415,-0.965434,-1.52353,-1.18807,-1.2597,-1.54279,-1.24446,-1.00761,-1.02081,-1.74771,-1.48098,-1.69567,-1.86567,-1.03715,-1.8233,-1.58438,-1.18897,-1.42359,-1.69389,-1.57899,-1.13363,-1.65514,-1.92327,-1.78474,-1.52967,-1.23119,-1.66527,-1.92886,3 +1.13308,-0.870917,-1.63901,-0.0940385,-0.733537,-0.642584,-1.86535,0.634478,-0.848887,0.245495,-0.351267,-0.81179,-0.742291,-1.95423,-1.827,-2.01069,-0.790453,-2.08977,-0.522799,-1.19858,-1.02177,-2.02551,-1.33527,-1.61924,-1.26985,-1.97367,-1.73153,-1.72358,-1.12283,-2.12565,-1.64832,-1.72275,-1.89908,-1.30595,-1.70755,-1.73602,-1.37351,-1.89406,-1.39018,-1.76286,-1.34593,-1.70223,-1.22865,-1.27874,-1.66848,-1.78709,-1.86853,-1.79297,-1.74318,-1.57411,-1.66602,-1.40818,-1.57579,-2.01879,-1.34611,-2.14238,-1.41153,-1.62982,-1.4823,-2.13646,3 +-0.194197,0.292228,-1.41504,-1.43985,-0.110954,-1.75675,-1.4675,0.747261,-0.677174,-0.767209,0.53012,-1.03073,-1.6591,-1.79681,-1.07395,-1.00473,-1.47381,-1.95856,-1.57104,-1.86097,-1.20297,-1.55034,-0.409051,-1.78828,-1.24712,-0.753909,-1.31294,-1.24321,-1.90341,-1.81471,-1.50854,-1.45235,-1.45135,-1.7469,-1.30369,-1.13427,-0.975787,-1.74116,-1.18966,-1.57964,-1.81059,-1.02189,-1.63864,-1.47152,-1.75566,-1.45854,-1.7751,-1.83468,-1.67145,-1.9417,-1.59822,-1.40452,-1.61123,-1.2523,-1.67204,-1.67093,-1.74441,-1.31743,-1.64958,-1.49079,3 +0.848684,-0.195759,0.195219,-0.23988,-0.307112,0.152581,-1.79952,0.108159,-1.47441,-1.35261,-0.267438,0.0606772,-0.725177,-1.11043,-1.45595,-0.983707,-2.11481,-0.577379,-1.49397,-0.605427,-0.722244,-1.79738,-1.09588,-1.40584,-1.42013,-1.68336,-1.09701,-0.874935,-0.760892,-0.974392,-1.05696,-1.0653,-1.09305,-1.08085,-0.923548,-1.82442,-1.70352,-1.05798,-1.11292,-1.06835,-1.71735,-0.91749,-1.1087,-1.58796,-1.34486,-1.6964,-1.42589,-1.54881,-1.32417,-1.33004,-1.50305,-1.31923,-1.7063,-1.7885,-1.35046,-1.27853,-1.82136,-1.9711,-1.58962,-1.87247,3 +0.870627,-1.40323,-0.332412,-0.685017,0.149448,0.492543,-1.2507,-1.10841,-1.09898,0.191687,0.177018,-1.42696,-0.40773,-1.02694,-1.65311,-2.12885,-1.75226,-1.08318,-0.488173,-1.15845,-1.20165,-1.3473,-0.616904,-1.54584,-0.888795,-1.33899,-1.7082,-1.5316,-0.918538,-1.54586,-1.11944,-1.12382,-0.832297,-1.08378,-1.19756,-0.860878,-1.05989,-1.42472,-1.32882,-0.952789,-1.48014,-1.6962,-1.63694,-1.68474,-1.58849,-1.06556,-1.46539,-1.81646,-1.16306,-1.63783,-1.0801,-1.79196,-1.14791,-1.56734,-1.08505,-1.72994,-1.11512,-1.52593,-1.21302,-1.17283,3 +1.66579,-0.866203,-1.15974,0.177557,-1.45352,-1.70939,-1.69223,-0.304023,-0.0680088,-1.32038,-0.886722,-0.406419,-1.32458,-0.291215,-1.1528,-1.58721,-1.20749,-1.34576,-1.46698,-1.68771,-1.27958,-0.494328,-1.58933,-1.76281,-1.12038,-1.70773,-0.932497,-1.06102,-1.31883,-1.79444,-0.945756,-1.73566,-1.54174,-1.17398,-0.767412,-0.859964,-1.14235,-1.09714,-1.69722,-0.897128,-1.42309,-1.51116,-1.62016,-0.995303,-1.43822,-1.54579,-1.64231,-1.29963,-1.76164,-1.68192,-1.0432,-1.55863,-1.55865,-1.20999,-1.56001,-1.59554,-1.30278,-1.83655,-1.62531,-1.37149,3 +0.77682,0.899248,0.389101,-0.659284,0.0400301,-1.87376,-1.30691,-1.16708,0.349871,-0.437994,-0.136555,-0.274899,-1.89908,-2.21154,-1.82371,-1.25036,-1.36908,-1.25388,-1.32493,-0.757332,-1.20509,-1.10101,-1.88815,-1.66904,-1.78939,-1.37331,-1.08573,-1.47648,-2.05556,-1.6105,-1.63207,-1.4505,-1.0956,-1.15795,-1.10313,-1.48349,-1.6965,-1.17412,-1.23977,-1.59902,-1.16652,-1.94662,-1.37929,-1.76039,-1.72621,-2.01083,-2.1038,-1.29389,-2.15712,-1.95356,-2.02886,-1.81676,-1.78702,-1.39536,-1.49491,-1.81419,-2.16163,-1.83178,-1.4946,-1.59644,3 +-1.08065,-1.39784,-1.46812,-0.690646,-0.550752,-0.357361,-1.4686,-0.296861,-0.460206,-0.843635,0.118447,0.254279,0.0387354,0.0640333,-0.0999474,-1.15833,-0.688591,-0.194668,-1.52965,0.0809859,-0.856239,-0.580032,-0.876962,-0.27702,-0.558825,-1.07315,-0.401441,-1.31268,-1.08741,-0.828502,-0.595168,-0.296701,-0.367709,-0.589804,-0.685876,-0.556961,-1.02382,-0.845744,-0.608443,-0.496416,-0.643327,-0.55911,-0.828374,-0.690109,-0.630213,-1.05032,-0.338887,-0.528943,-0.799109,-0.836661,-0.94051,-0.651599,-0.82454,-1.05543,-0.725298,-1.04607,-0.572527,-0.618318,-0.777129,-1.10422,3 +-0.647494,0.708421,-0.384008,-1.20718,0.0947851,0.256738,-1.26239,-0.514362,-1.06909,-0.193001,-0.689373,-0.845908,-0.222905,-0.761861,-1.69456,-1.27627,-0.249415,-0.773495,-0.445786,-0.288008,-1.78704,-1.0829,-1.23279,-1.2558,-0.810904,-0.292794,-0.534205,-1.63194,-0.740449,-0.669215,-0.520474,-0.939065,-0.561701,-0.529497,-1.08432,-0.979124,-1.26419,-0.900493,-0.608605,-0.866445,-0.522625,-0.6785,-0.646146,-0.917939,-1.33716,-1.38407,-1.47726,-1.32117,-1.46903,-1.39182,-1.03686,-0.911715,-1.35585,-1.33401,-1.07192,-1.34778,-1.44256,-0.82942,-0.982328,-1.01473,3 +0.377107,-0.18722,-0.670425,0.160533,-0.789813,-1.01035,-0.410906,-0.926737,-1.34868,-1.00581,-1.15577,-0.485823,-0.302171,-2.04723,-1.78866,-1.99402,-1.75587,-1.88764,-0.812724,-1.16764,-0.852124,-1.39198,-0.430008,-0.821328,-0.520203,-0.745235,-1.58341,-0.583775,-1.07162,-0.726605,-0.605061,-1.6825,-1.54451,-0.878106,-1.36718,-0.726742,-0.895838,-0.926702,-1.41999,-1.61894,-0.844836,-0.999054,-0.846291,-1.50404,-1.67494,-1.57395,-1.24831,-1.08131,-1.73874,-1.11729,-1.28365,-1.29933,-1.14107,-1.74158,-1.74462,-1.5017,-1.40074,-1.50897,-1.64946,-1.22192,3 +-0.570395,0.697261,-1.53984,0.127683,0.0455075,-0.0620036,-0.639094,0.658738,-0.0545658,-1.24661,-0.307038,0.17709,-0.835033,-1.2495,-1.50932,-1.40303,-0.484536,-1.46319,-0.596786,-1.94807,-2.08498,-1.4803,-0.94595,-0.609702,-1.84045,-0.548269,-0.961409,-1.30836,-0.84662,-0.932096,-1.50484,-1.17418,-1.66987,-1.43178,-0.90489,-1.708,-1.38807,-0.954676,-0.958184,-1.13991,-1.55306,-1.05367,-1.56949,-1.00664,-0.928421,-1.5631,-1.13286,-1.85611,-1.20455,-1.86181,-1.76468,-1.09572,-1.58006,-1.48228,-1.31201,-1.18484,-1.51887,-1.90327,-1.73074,-1.73374,3 +1.42786,0.811507,-1.02791,-0.681851,-0.825315,0.238433,-0.489039,0.0139582,0.446585,-0.0586807,-1.16704,0.115946,-0.197873,-0.131661,-2.21524,-1.94993,-0.964404,-1.39139,-0.920933,-1.33094,-0.639551,-0.614905,-1.67004,-0.729423,-1.55015,-0.860559,-1.19908,-1.06051,-0.945404,-1.03401,-1.32599,-1.24085,-0.892598,-1.17459,-1.31881,-1.48194,-0.998639,-1.80633,-1.69194,-1.2257,-1.13911,-0.980214,-1.42383,-1.24521,-1.33926,-1.39636,-1.47677,-1.3609,-1.8452,-1.27396,-1.97164,-1.4295,-1.82982,-1.62322,-1.287,-2.02905,-1.81912,-1.74867,-1.81195,-2.05057,3 +0.172559,-1.50942,-1.5472,-0.402625,-0.207549,-0.30631,-1.66085,-0.87798,-0.470659,0.0255939,-0.33779,0.0449691,-1.49249,-1.23919,-1.74167,-1.08449,-1.26376,-0.708655,-1.01823,-0.741838,-1.54681,-1.66388,-0.349638,-1.59121,-0.966865,-1.7534,-1.96275,-1.44446,-1.93792,-0.805762,-1.01272,-0.764261,-0.8257,-0.927971,-1.26683,-1.75279,-1.12531,-1.08244,-0.81137,-1.25375,-1.42722,-1.43128,-1.64483,-1.33247,-1.20049,-1.74364,-1.31244,-1.17218,-1.73493,-1.66364,-1.45433,-1.25813,-1.87303,-1.10905,-1.76907,-1.21778,-1.58744,-1.29634,-1.59633,-1.98255,3 +-1.36619,-1.3259,-0.109887,-0.369261,0.338755,0.175877,0.633266,-1.65157,-0.821117,0.569901,0.502848,-0.478729,-0.839312,-2.01113,-2.06933,-1.19849,-1.28502,-1.6594,-1.33249,-1.17919,-0.911222,-1.04611,-0.531494,-0.651158,-0.712893,-1.8774,-1.62723,-1.86292,-1.24767,-1.45027,-1.0207,-0.925266,-1.87017,-1.26454,-1.92593,-1.30594,-1.21834,-1.38809,-1.65433,-1.65985,-1.16747,-1.44771,-1.95031,-2.01053,-1.47378,-1.83079,-1.20208,-1.45905,-1.77276,-1.44964,-1.48988,-1.41129,-2.04481,-1.59827,-1.65524,-1.60003,-1.99866,-1.87849,-1.81141,-1.80009,3 +1.34054,-1.52185,0.580851,0.483817,0.032208,0.705824,-1.06751,-0.155904,-0.00393369,-0.531611,-0.370643,-0.795444,0.583593,-1.26568,-0.0253476,-1.50706,0.00673098,0.0288133,-0.303012,-0.00266683,-1.05086,-0.844261,-1.05389,-1.0265,-0.418238,-1.04581,-0.34936,-0.584179,-0.169914,-0.219771,-1.12406,-0.547203,-0.339794,-0.991106,-0.678318,-0.97865,-0.350169,-0.758579,-1.05633,-0.212811,-0.916218,-0.353341,-1.02853,-1.00272,-0.685988,-0.642175,-0.745242,-0.415116,-1.08106,-1.01543,-1.16232,-0.441048,-0.851993,-0.994711,-0.802446,-0.939342,-0.815463,-0.619018,-0.861416,-0.760041,3 +-0.190192,-0.990887,-1.20325,0.411392,-1.07581,0.195573,-1.8046,-0.92364,-1.15069,0.316098,0.27692,0.0378563,-1.44418,-1.25191,-0.0964653,-0.846568,-1.28212,-0.416536,-0.603615,-1.03288,-0.975006,-0.32058,-1.74287,-0.863213,-1.57692,-0.822233,-0.752767,-1.21786,-0.92278,-0.883106,-1.40841,-1.5231,-0.867209,-1.34737,-0.765667,-0.86732,-0.941949,-1.45977,-1.02171,-0.839341,-0.82245,-1.03054,-0.824836,-1.11036,-0.855113,-1.29742,-1.25161,-1.11195,-1.07844,-0.885838,-0.995135,-1.62373,-1.666,-1.43719,-1.25685,-1.40433,-1.16416,-1.00735,-1.71045,-1.48077,3 +-0.0561631,-0.362365,-0.188756,-1.14711,0.383069,-0.539619,0.526733,-1.55683,-0.816811,-1.17122,0.147856,-1.40247,0.112589,-1.439,-0.471592,-0.366058,-1.37182,-1.49439,-2.14784,-1.32107,-2.01253,-1.49677,-1.39543,-1.72092,-1.89447,-1.34704,-1.46845,-1.23807,-0.850238,-1.13257,-1.30161,-1.50456,-1.60832,-1.2727,-0.853166,-1.49784,-1.62212,-1.04771,-0.98778,-1.07833,-1.92311,-1.83563,-1.11667,-1.30132,-1.49925,-1.57138,-1.82286,-1.24978,-1.49337,-1.187,-1.79701,-1.50034,-1.19681,-1.50366,-1.5637,-1.40851,-1.49563,-1.99535,-1.87686,-1.87332,3 +0.548871,0.99115,0.629117,-0.345462,0.0208686,-1.68972,-0.367974,-0.620628,0.892178,-0.359902,-0.450304,-0.0768862,-1.20801,-0.391771,-0.289173,-1.70325,-1.22086,-0.766874,-1.25275,-0.877485,-1.72724,-0.439367,-0.393546,-0.943423,-1.31618,-1.14421,-1.31362,-0.851762,-0.569376,-1.13252,-1.50512,-0.986658,-0.733098,-0.643707,-0.858252,-1.03296,-0.804488,-1.47181,-0.549834,-0.583663,-0.881437,-1.46634,-0.749056,-1.03881,-1.35649,-0.77564,-0.836075,-1.39356,-0.865448,-0.808186,-0.993854,-0.863397,-1.31314,-1.51734,-0.959083,-1.03274,-0.95147,-1.0251,-1.38274,-0.90763,3 +0.672086,-0.686127,-0.259709,-1.30171,-1.11572,0.0460174,0.790832,0.358888,0.450872,0.0568513,0.200774,-0.180012,-0.326106,-0.666203,-0.595292,-1.80188,-1.96882,-1.95845,-1.67623,-1.1916,-1.53054,-0.906863,-0.405461,-0.31274,-0.652294,-1.41083,-1.42995,-1.36098,-0.962448,-0.575761,-1.04771,-0.931159,-0.931715,-1.45134,-1.29707,-1.60102,-0.959821,-1.37781,-0.845514,-1.48924,-1.16247,-0.892988,-0.84556,-0.874542,-0.938801,-1.2282,-0.904638,-0.883963,-0.869169,-1.26309,-1.00049,-0.865817,-1.42554,-0.978347,-1.17645,-1.07087,-1.44594,-1.37968,-1.09815,-1.21323,3 +1.01132,-1.22951,-0.687877,-1.30229,0.148111,-0.235186,0.857648,1.0332,-0.603623,-0.50889,-0.363366,-1.01387,-1.00461,-0.0724407,-1.01642,-1.01907,-0.45796,-0.437855,-1.65757,-1.06991,-0.976883,-1.02098,-0.643818,-0.710536,-1.14244,-1.04969,-0.754185,-0.691699,-1.39086,-0.921076,-1.254,-1.16002,-0.587804,-1.15183,-0.706891,-0.557436,-1.18409,-0.561141,-0.909206,-0.480807,-0.782497,-0.390304,-1.35186,-1.30644,-1.3388,-1.24081,-0.944415,-1.29951,-0.621137,-0.938295,-0.820594,-0.582159,-0.882956,-0.613517,-1.22761,-0.989636,-1.08935,-1.19734,-1.16146,-1.35538,3 +-0.321733,0.912115,0.568042,-1.46582,0.471274,-0.0368974,-0.883457,-1.38155,-0.894743,-1.1757,-0.743228,-1.27618,0.118787,0.224589,-1.52761,-0.524215,-0.360787,-0.972959,-0.287073,-1.77655,-1.04406,-0.72272,-0.834995,-0.162705,-1.12921,-1.14803,-0.70953,-0.767553,-1.47045,-0.506649,-1.03906,-1.07193,-1.13545,-0.951342,-1.11691,-0.870967,-0.935596,-0.468395,-0.592478,-0.901793,-0.72253,-0.645193,-0.692539,-1.04978,-0.799618,-0.590906,-0.71787,-1.40698,-1.41442,-0.659126,-1.23134,-0.948289,-1.16563,-1.28589,-0.791313,-1.27908,-1.16803,-1.32629,-0.822304,-1.00322,3 +1.06971,-0.694617,-0.749028,-1.44782,-0.546008,-0.33422,-0.834707,-0.188788,-1.1241,0.553946,-0.918834,-0.4134,0.198126,-0.276836,-0.978386,-1.29735,-1.05763,-1.27694,-0.390207,-0.701055,-0.487879,-0.473525,-0.660267,-1.25451,-0.236297,-0.0717587,-1.07303,-0.757432,-0.471909,-0.775301,-0.673646,-1.01922,-0.929026,-0.574713,-0.840231,-0.463287,-0.481701,-0.483066,-1.12635,-0.509085,-0.739653,-0.89382,-0.731661,-0.597896,-1.07211,-0.813596,-1.0332,-0.470537,-1.14102,-0.770899,-0.393955,-0.548841,-0.975244,-0.931062,-0.558903,-1.23778,-1.21326,-0.81255,-0.877299,-1.25975,3 +-0.154575,0.368184,-0.857816,-1.16523,-1.60813,-1.23012,0.499903,-1.42015,-1.06271,-0.257268,-0.46099,-0.730547,-1.24824,-1.27585,-1.83885,-1.54434,-1.27032,-0.72571,-0.499922,-0.186214,-1.67382,-1.0601,-1.58497,-1.57941,-0.504469,-1.05932,-1.08886,-1.13374,-0.844571,-1.21341,-0.774934,-1.07795,-1.39911,-1.50965,-0.535764,-0.612363,-1.20735,-0.587316,-1.39651,-0.843383,-0.812727,-1.43978,-0.846158,-1.10394,-1.13591,-0.769924,-1.10235,-1.09789,-1.49739,-0.982226,-0.842556,-1.55405,-1.40013,-1.44266,-1.0836,-1.62573,-1.11632,-1.48642,-1.26941,-1.59083,3 +-0.0169699,0.448878,0.237566,0.0645491,-1.60194,-0.460988,0.0846692,-0.505415,-0.860243,-0.156094,0.630287,-1.03214,-0.0294495,0.0752206,-1.07291,-1.71625,-0.431236,-1.12051,-0.123408,-1.58752,-1.6227,-1.33774,-0.646451,-0.926334,-0.549813,-0.989167,-0.680664,-1.16449,-0.445612,-0.330142,-0.44113,-1.11216,-0.340995,-1.08656,-0.695666,-0.74772,-1.27049,-1.20403,-1.10581,-1.28863,-0.849985,-1.11788,-0.544922,-1.06719,-0.984589,-1.16265,-0.573816,-1.44526,-0.626071,-0.689224,-0.681582,-0.685279,-1.09056,-0.708215,-0.675803,-0.834939,-0.822032,-0.776149,-1.2274,-1.17503,3 +-0.23937,1.13116,0.180089,-1.24831,-1.26478,-0.558786,0.694903,-0.153689,0.650824,-1.06737,-0.589718,0.191653,-1.40701,-0.6124,0.15155,0.115958,-0.627669,-1.51437,-1.1907,-0.174239,0.0682583,-0.374357,0.0242465,-1.09242,-0.601881,-0.500555,-0.12795,-0.41576,-0.672643,-0.538565,-0.937874,-1.05831,-0.965187,-0.638292,-0.460713,-1.20556,-1.11852,-0.37445,-1.11662,-0.475007,-1.04668,-1.05493,-0.414693,-1.18451,-0.616828,-0.971051,-0.503125,-1.1696,-0.38176,-1.19121,-0.500905,-1.02875,-0.841836,-1.06557,-0.503016,-1.2365,-1.14288,-0.9595,-1.06103,-1.02826,3 +0.0255704,0.725522,0.390681,-0.185762,-0.947721,-1.55153,-0.0915524,-1.08294,-0.70782,-1.00296,-0.11709,-0.225259,-1.16394,-0.318265,-0.244504,-1.95983,-2.08099,-0.774409,-1.66435,-1.10044,-0.494637,-0.459386,-1.54495,-0.689557,-0.739232,-1.43923,-1.95109,-1.23368,-0.899092,-1.84811,-1.56707,-1.45468,-1.01941,-1.44645,-1.55556,-1.20234,-1.08179,-1.49304,-1.69898,-1.61763,-0.934239,-1.80786,-1.31691,-1.2319,-1.7705,-1.68178,-1.26943,-1.90928,-1.92034,-1.20989,-1.62422,-1.73691,-1.57682,-1.46156,-1.30425,-1.4538,-1.94886,-1.96847,-1.34677,-1.55679,3 +-1.00804,0.0964948,-0.636909,-0.191665,0.457974,0.377191,0.626884,0.354629,-0.616313,-1.16584,0.127261,0.0951525,0.00697428,-0.977388,-1.23739,-0.840377,-1.86655,-0.736067,-0.028919,-1.18162,-0.25437,-0.598646,-0.635839,-1.50997,-1.51047,-0.518227,-0.397665,-0.915984,-0.816959,-1.16849,-0.71986,-0.619857,-0.489607,-0.704568,-1.31061,-1.13931,-0.571476,-0.911548,-0.53685,-1.37799,-1.27245,-1.24958,-0.946628,-0.79494,-1.44378,-1.37232,-1.234,-1.26178,-1.28536,-1.02116,-0.774533,-1.29352,-0.78666,-1.07836,-1.51417,-1.05413,-1.23243,-1.06969,-1.06923,-1.61661,3 +1.42153,-1.7801,-0.109316,0.252548,-1.08387,-1.42406,-1.28823,-1.37475,-0.0559759,-1.45375,-1.42944,-1.16514,-1.1977,-1.46635,-1.34453,-2.08214,-1.72119,-1.70226,-0.812258,-2.11417,-0.946681,-1.99514,-1.54497,-0.923398,-1.78018,-0.946923,-2.19265,-2.23406,-1.96563,-1.73099,-1.77284,-1.5125,-1.84837,-1.5129,-1.74973,-1.24416,-1.23859,-1.40133,-1.81416,-1.62264,-1.14654,-1.74307,-1.38079,-1.30452,-2.01084,-1.54317,-1.79196,-1.38426,-1.29645,-1.50375,-2.06457,-1.63799,-1.3475,-2.10464,-1.97586,-1.61376,-2.19026,-1.60867,-1.913,-1.49943,3 +0.686161,-0.218752,-1.02827,-0.782558,-1.6957,-1.20515,-2.03213,-0.850559,-0.814555,-0.40799,-0.510641,-0.832546,-0.685114,-0.586018,-2.25508,-0.917062,-2.21526,-0.425001,-1.53735,-1.52593,-0.890677,-0.617535,-0.661676,-1.89846,-1.1376,-0.87112,-1.25943,-0.954228,-1.03885,-1.02813,-1.22236,-0.830682,-1.09454,-0.893289,-0.888676,-1.78752,-1.68698,-1.34326,-1.31987,-1.36969,-1.03871,-1.5683,-1.8614,-1.21328,-1.3837,-1.54417,-1.79564,-1.40965,-1.17391,-1.83218,-1.48622,-1.7124,-1.7702,-1.62687,-1.9644,-1.48305,-1.41124,-1.36481,-1.5252,-1.40638,3 +1.36314,-0.938045,0.527427,-0.021118,0.289386,-0.658548,-1.25402,-0.972332,0.830603,0.339112,-0.704493,-1.44334,-0.209228,-1.31015,-0.104309,-0.541933,-0.494145,-0.738811,-1.4895,-0.547157,-0.0827984,-0.191067,-0.0808034,-1.39343,-0.318609,-0.860146,-0.860932,-1.53915,-0.678485,-0.531254,-0.5692,-0.663881,-0.358604,-1.20007,-0.359304,-1.1325,-0.459001,-0.801516,-1.15154,-0.99591,-0.959952,-0.891712,-0.725331,-0.704145,-0.754322,-0.815725,-1.40081,-1.37588,-1.22735,-0.904267,-1.04781,-0.648572,-1.16324,-1.41056,-0.80014,-0.890871,-0.867275,-1.26852,-1.36252,-1.45366,3 +0.041877,0.0554143,-1.49947,-1.5294,0.374166,-1.30471,-1.35417,0.263203,-0.440596,0.225486,-0.178063,-0.295223,-0.399648,-2.05606,-1.10455,-0.270287,-1.0414,-1.84367,-0.508257,-1.23985,-0.628603,-0.705097,-0.537837,-0.659844,-0.881713,-1.68636,-1.07123,-1.04236,-0.741008,-0.602575,-0.830863,-0.715209,-1.00615,-0.769773,-1.3812,-0.997439,-0.866006,-0.847926,-0.871983,-1.39049,-1.02287,-1.57927,-1.27512,-1.21249,-0.890741,-0.908938,-1.1454,-1.11412,-1.31623,-1.59412,-1.2288,-1.68793,-1.48316,-1.15403,-1.3996,-1.37044,-1.38625,-1.13248,-1.31334,-1.61317,3 +-0.784612,-0.876834,-1.16663,-0.287375,-0.984212,0.507359,-1.73999,-1.37522,-0.244253,-0.965556,-0.537912,-0.422784,-0.066239,-0.821137,-1.98371,-2.0204,-1.67679,-1.65257,-0.490191,-0.442949,-0.39939,-0.0346529,-0.458318,-0.498518,-0.936871,-0.922619,-1.35905,-1.44903,-1.55733,-0.751629,-1.14317,-1.27391,-1.12238,-1.3039,-1.11112,-0.958375,-1.15379,-0.914414,-1.103,-1.00445,-1.26703,-1.30439,-1.22337,-0.821609,-0.7485,-1.46742,-1.05493,-0.743896,-1.05941,-1.45198,-0.765289,-1.42802,-0.719291,-1.26626,-0.910263,-1.10613,-0.941894,-1.01859,-1.03118,-1.03445,3 +0.199136,-1.06006,0.113971,-0.86032,-1.22205,-1.67622,0.11847,-0.701774,-0.936501,0.252605,-0.974384,-0.258271,-0.358397,-1.5336,-1.10912,-1.15541,-2.41892,-2.00717,-1.62026,-1.1435,-0.675941,-1.961,-0.884143,-2.00234,-1.15915,-1.93939,-1.82809,-1.75421,-1.8946,-1.2808,-1.42315,-1.9484,-1.42103,-1.15153,-1.56092,-1.63386,-1.46922,-1.22752,-1.40222,-1.14633,-1.87138,-2.05123,-1.92107,-1.41492,-1.81254,-1.99839,-1.25762,-2.10931,-1.88424,-1.47729,-1.76525,-2.14073,-1.86302,-1.68017,-1.64508,-1.51586,-2.2456,-2.08657,-1.88972,-1.61417,3 +-0.170653,1.01046,-0.412062,-1.53688,0.00243988,-0.400309,-0.915368,-0.763176,-0.526443,-0.501127,-1.19171,-1.53384,-0.478274,-0.532623,-0.419977,-1.63672,-1.95809,-1.70945,-1.53182,-0.907212,-0.544033,-1.71759,-1.71367,-1.1178,-0.887213,-1.49072,-0.962313,-0.540106,-1.27499,-1.00983,-0.799672,-1.41907,-1.63837,-1.29419,-0.974873,-0.769779,-1.32097,-0.86882,-1.35017,-1.25664,-1.3119,-1.27877,-0.799128,-1.28017,-1.40504,-1.32699,-1.37118,-1.35535,-1.63201,-1.68494,-0.971128,-1.59207,-1.51378,-1.64042,-1.69931,-1.51392,-1.29826,-1.75432,-1.07502,-1.78485,3 +-0.261541,-0.238042,-0.933679,0.307469,0.446635,-1.47385,0.373266,-0.890089,-0.61355,0.0432492,-0.455126,-1.21052,-1.45159,-0.409915,-0.713347,-1.7066,-0.355021,-0.508787,-0.38091,-1.75033,-0.185766,-0.274747,-1.57902,-0.408045,-0.942923,-1.32146,-1.04479,-1.63447,-0.851158,-1.01403,-1.29428,-1.51527,-1.16523,-1.21597,-0.603577,-1.07631,-1.15021,-1.11199,-1.04921,-1.21397,-0.749522,-1.26602,-0.949513,-1.07622,-1.68597,-1.47081,-0.929773,-1.49136,-0.982344,-1.33723,-1.67229,-1.48638,-0.901588,-1.02695,-1.30106,-1.61149,-1.32697,-1.0891,-1.70276,-1.69147,3 +-0.670294,-1.41252,-0.567555,-0.583267,0.0832076,0.139906,0.0294634,-1.47172,-0.841892,-0.559176,0.529484,-1.36782,-1.55843,0.102697,-0.707561,-0.837743,-0.913307,0.047093,-0.028919,0.097788,-0.884504,-0.537256,-0.341394,-0.77247,-0.832737,-1.28886,-1.35863,-1.41212,-0.398446,-0.40204,-0.992553,-1.3791,-0.632727,-0.371132,-1.11626,-1.31892,-0.659776,-0.860981,-1.23451,-0.943108,-1.11339,-1.14067,-0.984218,-1.1199,-1.3036,-0.974261,-0.620839,-1.39783,-1.38818,-0.83804,-1.05572,-0.581183,-0.62008,-1.01801,-1.43498,-1.0468,-1.4127,-1.18088,-1.03199,-1.16013,3 +-0.147223,-1.56395,-1.28477,-1.36419,-0.439282,-1.71789,-1.76051,-1.0027,-0.733465,0.402108,0.622657,-1.0071,-1.08285,-0.0236655,-1.26685,0.0593163,-0.723617,-0.22794,-1.29968,-0.171576,-0.963472,-0.624846,-0.617622,-0.124454,-0.263007,-0.647372,-0.813268,-1.25846,-0.871503,-0.704179,-0.918912,-0.417357,-1.00699,-1.11196,-1.35478,-1.35946,-1.15452,-1.28727,-1.14854,-1.03773,-1.03692,-0.53131,-1.21329,-0.593641,-1.3476,-1.24924,-0.823821,-0.579825,-0.970341,-0.834289,-0.976981,-1.24791,-1.03038,-0.733771,-0.985011,-1.1998,-1.219,-1.24195,-0.890157,-1.37398,3 +0.390868,-0.264499,-0.512324,-0.22443,-0.517577,0.102722,-0.262815,-1.51876,-1.29326,-1.01775,0.374067,-0.641872,-0.25814,-0.507336,-1.11726,-2.11462,-1.63592,-1.96247,-1.62406,-0.463395,-0.492565,-0.858111,-0.633752,-0.633458,-1.37837,-0.844393,-0.721097,-1.24269,-0.787999,-1.24345,-1.75542,-0.901304,-1.85041,-1.09345,-0.994303,-1.2827,-1.43359,-1.71099,-1.4577,-1.65795,-1.29421,-0.944208,-1.26852,-1.30032,-1.07148,-1.51378,-1.15748,-1.39075,-1.23741,-1.65596,-1.84653,-1.42031,-1.80667,-1.8773,-1.23203,-1.6463,-1.98058,-1.22163,-1.59046,-1.4177,3 +-0.77357,-1.17313,-0.593839,-0.990831,-1.06983,-1.24644,-0.630772,-0.612864,0.837785,0.467164,-1.32971,-0.201932,-1.21083,-1.35247,-0.179911,-0.478399,-1.15853,-0.440506,-0.89967,-0.565329,-1.96988,-1.17416,-0.670812,-1.49502,-0.956847,-0.42733,-0.866538,-1.63503,-1.6871,-1.00926,-1.50974,-1.2236,-1.23391,-1.1613,-1.6681,-1.30166,-1.13419,-1.11967,-1.26988,-1.06477,-1.50651,-1.10707,-1.46108,-1.57268,-1.57507,-1.24892,-0.954886,-1.41684,-0.906407,-1.68294,-0.960073,-1.66883,-0.925136,-1.64615,-1.19217,-1.0413,-1.2788,-1.046,-1.66366,-1.79978,3 +1.47071,-0.0312443,0.371287,-0.932762,0.16044,-0.0580732,0.908657,0.184724,0.813513,-0.813168,0.770108,0.557088,-1.20028,-1.46059,-0.723195,-0.956994,-0.404296,-1.15143,-0.761739,-1.02355,-0.869426,-1.16015,-1.09809,-1.27708,-1.20093,-0.851159,-0.691556,-1.04258,-1.03273,-0.252368,-0.927345,-0.331671,-0.42269,-0.489104,-0.881668,-0.70544,-1.06211,-0.744834,-0.860922,-1.16661,-0.579288,-0.961375,-0.761879,-0.533295,-0.663737,-0.650034,-0.560538,-1.22106,-1.05884,-1.11444,-1.08094,-0.835825,-1.17497,-0.712054,-1.07474,-1.24886,-1.16275,-0.817614,-1.09073,-0.529971,3 +1.30115,-0.314839,-1.01365,-0.522117,0.165679,-0.621408,-0.956116,-1.63883,-1.20517,-0.522578,0.629333,-1.66388,-1.17513,-0.45472,-1.89857,-1.3228,-0.860653,-0.70664,-0.277559,-1.25154,-0.564263,-0.630311,-0.386525,-0.625017,-1.12482,-1.81646,-0.900381,-0.831601,-1.05532,-1.45856,-1.03781,-1.41275,-0.931362,-1.17804,-1.30496,-1.3097,-1.27679,-1.46218,-1.01873,-1.36453,-1.62686,-0.932813,-0.975143,-1.67906,-1.53038,-1.66837,-1.13877,-1.39098,-1.16016,-1.13982,-1.61411,-1.35405,-1.05612,-1.34587,-1.23232,-1.28949,-1.32388,-1.18145,-1.77139,-1.33171,3 +0.358827,-1.58922,0.413291,-1.16044,-0.793935,-0.978637,0.297932,-0.753756,0.060085,0.367776,-0.137738,0.720681,-1.52765,-1.35078,-1.8136,-1.11038,-1.22668,-1.70531,-1.46909,-0.845454,-1.4971,-1.517,-0.326713,-0.805401,-1.03624,-0.534326,-0.956935,-1.48357,-1.26057,-1.26264,-0.863858,-1.28814,-0.769965,-1.35024,-1.1543,-1.075,-1.10453,-1.29942,-0.857626,-0.946583,-0.854591,-1.02104,-1.30296,-0.821717,-0.651654,-1.05711,-0.901174,-1.38536,-1.37346,-0.795323,-1.41199,-0.723228,-1.17572,-1.24447,-0.676207,-1.08071,-1.01765,-0.973432,-0.880164,-0.711662,3 +1.06047,-0.865986,-0.641914,-1.08678,-0.729562,0.0511844,-1.32147,-1.0267,0.101354,-0.179262,-1.18756,-0.66261,0.235702,-1.38303,-2.08319,-0.577265,-0.4738,-0.875963,-1.98335,-1.38152,-1.57061,-1.52301,-0.574046,-0.664333,-0.409131,-1.58763,-1.24659,-1.61815,-1.49345,-0.626007,-0.895841,-1.27139,-0.659431,-1.20857,-1.07292,-1.07433,-1.36816,-1.28318,-0.754877,-1.5246,-1.39662,-0.804735,-0.799641,-0.988442,-1.32657,-1.11127,-1.01116,-1.59052,-1.67663,-0.97796,-1.41036,-1.52189,-1.34764,-1.59662,-1.69252,-1.37374,-1.47047,-1.76763,-1.67672,-1.5988,3 +1.16804,-0.749263,0.0942533,-0.33133,-1.36066,-1.63412,0.149497,-1.20487,-1.14785,0.0733387,-1.19326,-1.67056,-1.30026,-0.245408,-2.06786,-1.99764,-2.2004,-1.43254,-0.560142,-0.952106,-2.18896,-1.27666,-1.95693,-0.640932,-0.722647,-1.50822,-1.66483,-1.08201,-1.36131,-1.33651,-2.03041,-0.806438,-1.35149,-1.15876,-1.42376,-0.920357,-1.3046,-1.60256,-1.59919,-1.32851,-1.12977,-1.62301,-1.5416,-1.74562,-1.48422,-1.8579,-1.76594,-1.80281,-1.24524,-1.89589,-1.55089,-1.83211,-1.5475,-1.31989,-1.91036,-1.667,-1.5612,-1.52463,-1.71255,-1.96006,3 +-1.5429,0.245135,0.647178,-0.334478,-0.662222,0.180315,0.934529,-0.0289698,-1.03735,-0.37979,0.85754,-0.745729,-0.0060081,-0.432308,0.146784,-1.78072,0.0221395,-1.73615,-1.66954,-0.126558,-0.0550892,-1.04019,-1.19126,-0.0349713,-0.883702,-1.17087,-0.515247,-1.32144,-1.0368,-0.290978,-0.281442,-0.604706,-1.25838,-0.537435,-0.754947,-0.400565,-0.407342,-0.490413,-0.500831,-1.15889,-1.19211,-0.495957,-0.666667,-1.26334,-1.32773,-1.29842,-0.944285,-0.976175,-1.22497,-0.908333,-0.81932,-1.27342,-0.925185,-1.3494,-1.1377,-0.928324,-1.13498,-0.746378,-0.848154,-0.944065,3 +0.161316,-0.793061,-0.706263,0.0435216,-1.55122,-1.68757,0.900433,-0.636156,-0.454528,0.122612,-0.912139,-0.719268,-0.203998,-0.133164,-1.69635,-1.91665,-0.300247,-1.43487,-1.36496,-0.00135879,-1.45498,-0.351778,-1.05724,-0.452939,-1.01352,-1.01999,-0.452778,-1.30682,-1.39292,-1.47031,-0.743451,-0.447543,-0.883693,-0.795445,-0.654893,-1.33834,-1.13663,-1.00868,-0.878374,-0.648319,-0.72185,-0.796116,-1.17848,-0.754985,-0.842992,-1.10091,-1.02488,-1.31517,-1.07302,-1.1685,-0.933171,-1.10309,-1.33486,-1.20987,-1.19417,-0.91966,-1.17438,-0.829334,-0.916975,-0.98518,3 +0.626084,0.740674,-0.23786,-0.214592,0.343628,-0.142821,-1.1953,-1.36587,-0.163614,-0.629076,-0.207984,-0.320991,-0.226544,-0.180232,-1.29261,-0.872272,-2.05367,-1.01784,-1.2026,-2.10703,-2.22922,-1.04202,-0.60225,-0.783419,-1.00965,-1.47271,-1.5305,-1.08636,-1.67546,-1.91209,-1.47576,-1.43241,-1.6292,-1.04394,-1.06445,-1.05849,-0.989119,-1.07146,-1.44664,-1.76237,-1.1185,-1.43161,-1.29887,-1.81568,-1.37687,-2.02126,-1.5529,-1.60995,-1.34783,-2.05162,-1.51743,-2.07113,-1.30615,-1.49281,-1.57316,-1.92331,-1.73789,-1.77289,-2.0256,-1.90642,3 +-0.0933537,-0.717057,-0.940055,-1.03306,-0.704795,-0.599017,-0.831001,0.803566,-0.84319,-0.328267,-0.123519,0.0471273,0.518297,-0.725256,-0.445864,-0.745838,-0.230809,-0.166605,-0.898072,-0.965965,0.205753,-0.965651,-0.204297,-0.650755,-0.0734088,-0.270287,-1.0692,-0.934194,-0.237567,-0.726343,-1.01744,-0.765409,-0.751937,-0.498188,-0.380682,-0.114919,-0.549208,-0.866187,-0.107396,-0.942373,-0.63022,-0.841013,-0.745806,-0.511064,-0.423264,-0.559385,-0.508154,-0.798357,-0.719648,-0.883037,-0.473422,-0.363694,-0.968805,-0.438854,-0.834712,-0.485531,-0.461826,-0.84246,-0.69163,-0.980863,3 +0.906873,1.11153,-0.913448,-0.133253,-1.29087,-0.826939,0.293391,0.526599,0.107972,-0.654133,-1.04595,0.081246,-0.278766,-0.807018,-1.10314,-0.443289,-1.76883,-1.78809,-0.808859,-1.29223,-1.06306,-1.16589,-1.02124,-1.89711,-0.647644,-1.9378,-1.19614,-1.1924,-1.56992,-1.34701,-1.98669,-1.21137,-1.58005,-1.68384,-1.17339,-1.75907,-1.64384,-1.48422,-1.29077,-1.46947,-1.7082,-1.14969,-1.41424,-1.94955,-1.28642,-1.13612,-1.68871,-1.46488,-2.01398,-1.61582,-2.01428,-2.03282,-1.51336,-1.56246,-2.00162,-1.87462,-1.4492,-1.97786,-1.7773,-2.07975,3 +0.273517,-1.43399,-0.225641,-0.963114,-1.37244,-1.04879,-1.01812,-1.32481,-0.281028,-0.425937,-0.330672,0.344868,-1.42858,-0.419748,-0.640559,-1.6928,-1.9191,-1.17514,-1.28987,-1.54527,-1.43474,-1.0673,-0.406378,-1.424,-0.544673,-1.45075,-0.78066,-1.40125,-1.8182,-1.20193,-1.07323,-1.0309,-1.93745,-1.7546,-1.29098,-1.43685,-1.38969,-1.56888,-0.978229,-1.19333,-0.967862,-1.54091,-1.92239,-1.2695,-1.73466,-1.57953,-1.37118,-1.2661,-1.62405,-1.77793,-1.57619,-1.63503,-1.48916,-1.35386,-1.65512,-1.97129,-1.30742,-1.35131,-1.68676,-1.52706,3 +1.34243,-1.25801,0.342681,-0.587903,-0.5304,-0.443257,-1.24464,-0.406181,-0.783401,0.529799,-0.015545,0.336311,-0.792301,-2.28714,-1.88572,-0.491328,-0.618988,-1.89839,-0.544714,-0.6594,-2.21982,-2.02671,-1.77092,-1.52192,-1.8777,-1.61277,-1.46541,-1.01704,-0.893414,-1.10526,-2.00243,-1.10279,-1.15886,-1.01036,-0.915991,-1.01137,-1.69832,-1.39446,-1.48588,-1.35627,-1.45332,-1.86041,-1.43036,-1.93084,-1.97324,-1.83595,-1.2139,-1.79824,-1.25806,-1.32268,-1.50099,-1.29894,-2.01971,-1.2698,-1.7022,-1.69929,-2.06377,-1.98414,-1.77679,-1.99955,3 +-1.11469,0.680497,-1.36151,0.0941314,-1.11669,-1.74247,-1.62948,-0.277225,-0.721958,0.41753,-0.673123,0.473461,-0.620861,0.120452,-0.0258048,-1.60471,-0.872781,0.220216,-0.172841,-1.36945,0.0795973,-1.09209,0.185106,0.0929097,-0.67257,-0.188143,-0.446073,-1.19792,-0.17854,-1.22613,-0.416444,-0.685743,-0.830771,-1.04302,-0.398083,-0.454015,-0.655922,-0.592948,-0.928685,-0.860606,-1.03005,-0.838197,-0.327638,-0.918077,-1.06517,-0.950242,-1.18661,-0.55294,-0.978404,-0.742902,-0.655515,-1.05249,-0.664545,-1.13329,-0.529671,-1.21182,-1.04544,-0.763756,-1.0877,-0.475377,3 +-1.67327,-0.969024,0.560525,-0.505093,-1.48943,-1.22941,-1.19157,0.93777,-0.721902,-0.0921364,-0.746584,-0.924074,0.619285,0.033514,-1.6711,-1.18985,-1.68846,-0.55682,-0.74493,-0.658201,-0.967166,-0.186166,-0.18197,-1.03979,-1.19664,-0.841647,-0.130364,-1.01049,-0.21901,-0.380221,-1.21327,-1.11155,-0.249567,-0.368499,-0.539778,-1.1836,-1.08342,-0.450651,-1.10833,-0.586586,-0.337648,-0.833009,-1.11088,-0.65621,-1.08627,-0.762981,-1.10703,-0.49573,-0.806258,-0.706702,-0.991143,-0.938276,-0.432562,-0.768085,-0.736194,-0.718191,-0.932759,-0.885774,-0.478335,-1.15269,3 +-1.3895,-1.46961,-0.446339,-0.0335052,-0.584477,-1.1584,0.671559,0.322885,-1.3192,0.350602,-0.379033,0.090029,-0.986451,-0.761379,-2.18303,-2.06743,-1.35805,-0.853901,-0.998816,-1.51214,-1.56032,-0.79405,-1.33889,-0.762855,-1.55561,-1.10662,-0.623401,-1.56655,-1.49524,-0.724479,-1.16796,-1.20594,-1.42617,-1.04969,-1.13487,-0.741498,-0.966614,-1.33039,-1.11686,-1.29839,-1.03862,-1.30595,-1.24104,-1.2852,-1.41848,-1.06629,-1.37688,-1.00121,-1.30242,-1.08566,-1.50881,-1.4166,-1.78591,-1.20739,-1.34247,-1.18646,-1.41802,-1.70237,-1.12698,-1.54821,3 +-1.32616,0.677202,0.538333,-0.959777,-0.694811,-0.840453,-1.85411,0.663126,-0.00652828,-0.0312704,0.768995,0.423503,-0.205918,-0.521918,-0.208049,-1.69152,-1.53734,-1.00304,-0.905972,-0.451062,-0.224063,-0.252912,-1.31932,-0.903348,-1.41076,-0.669298,-1.29724,-1.46666,-0.782881,-1.01896,-0.509027,-0.575745,-0.954081,-0.718014,-1.15416,-0.837897,-1.21258,-1.11253,-0.42742,-0.773327,-1.09451,-1.22456,-1.16877,-1.13904,-1.06769,-1.06015,-0.77711,-0.808028,-0.59485,-0.736135,-1.07353,-1.33337,-0.68731,-1.01704,-0.706423,-1.35657,-0.790599,-1.36662,-1.01447,-0.717378,3 +-1.54216,-0.172573,-0.759229,-1.08392,-1.55347,-1.11044,-1.40684,-0.335746,-1.20779,0.125308,0.0550895,-0.6451,0.0582272,-0.0137027,-1.1128,-1.34216,-1.13211,-0.836551,-1.45109,-0.5693,-0.457361,-1.57531,-0.594351,-1.39685,-0.450113,-0.96828,-0.408763,-0.890341,-1.21136,-1.34196,-0.576768,-0.722192,-1.15263,-1.44913,-0.576918,-1.10383,-0.990914,-1.45448,-1.34405,-1.23765,-0.771284,-0.798948,-1.58308,-1.19517,-1.03173,-1.33824,-1.20713,-1.09855,-1.26445,-1.55332,-1.44978,-1.01881,-1.50037,-0.998293,-1.45384,-1.59571,-1.38434,-1.6649,-1.6131,-1.10589,3 +1.12329,-0.545159,-0.621607,-1.39051,-0.573816,-0.903892,-0.138118,-1.44441,-0.928811,0.647907,-0.405846,-0.54447,-1.47084,0.0179854,-1.17732,-0.0646548,-0.638157,-1.4793,-1.63446,-0.239984,-1.39875,-1.35828,-0.42421,-1.4487,-0.837638,-1.30417,-0.219022,-1.06206,-0.313397,-0.765529,-0.279076,-0.770456,-1.30415,-0.808854,-0.995968,-1.00244,-0.81682,-0.56928,-0.685732,-0.559626,-0.56746,-0.891992,-0.889861,-0.885052,-0.983355,-1.10387,-0.920637,-1.06405,-0.727221,-0.62532,-0.845953,-0.69516,-0.607486,-0.955671,-0.75521,-0.78881,-0.76592,-1.33628,-1.35043,-0.673937,3 +0.971499,-0.716119,0.351912,0.36518,-1.61966,-0.795076,-0.489996,-0.326068,-0.775129,0.59446,-0.494956,-1.31396,-0.358214,-0.919485,-0.509156,-2.07349,-0.699079,-2.09908,-1.77759,-1.31169,-0.818513,-1.44636,-0.796579,-0.614032,-1.54099,-0.69857,-1.48447,-1.42468,-0.769299,-0.982614,-1.56781,-1.40292,-1.67756,-0.950233,-1.71179,-1.78821,-1.39593,-0.891596,-0.819991,-1.50107,-1.37566,-1.10163,-1.65041,-1.54939,-1.72792,-1.41369,-1.10096,-1.2513,-1.11496,-1.51376,-1.88139,-1.71533,-1.52504,-1.77853,-1.33714,-1.33662,-1.67475,-1.82273,-1.86059,-1.4749,3 +0.18652,-0.633477,-1.36069,-0.801977,-0.304804,-0.900469,-0.0581442,-0.340671,-0.152333,-0.263142,-0.347628,-0.139475,-0.840171,-1.04527,-0.463872,-0.75391,-2.03947,-1.96524,-2.03401,-1.54246,-0.710424,-0.729989,-1.57339,-1.30373,-1.74514,-0.701428,-1.18928,-0.828324,-1.24494,-1.16605,-1.31512,-0.98238,-1.0822,-1.83309,-1.49233,-1.67684,-1.17005,-1.24161,-1.67706,-1.56066,-1.27361,-1.46969,-1.44941,-1.14091,-1.56763,-1.62334,-1.70087,-1.64102,-1.57487,-2.0187,-1.70038,-1.96667,-1.34908,-1.28832,-1.4415,-1.45745,-1.68637,-1.92332,-1.42856,-1.89106,3 +-0.510403,-1.37054,-0.479246,-1.52608,-0.792707,-2.00325,0.107179,-0.637532,0.511732,-0.530546,-1.15017,-1.01714,-0.421042,-0.294072,-0.372179,-1.85922,-1.99994,-2.04957,-1.03791,-0.786778,-0.586446,-1.83776,-1.77408,-0.880436,-1.50219,-0.995162,-1.61674,-1.46285,-1.04368,-1.84672,-1.87963,-1.75114,-1.27118,-0.80768,-1.70884,-0.992641,-0.771979,-0.752931,-0.757124,-1.09586,-1.26959,-1.67126,-0.929831,-1.27893,-0.954071,-1.75413,-1.33114,-1.10642,-1.54698,-1.02259,-1.68567,-1.35466,-1.29109,-1.32632,-1.48491,-1.20098,-1.18528,-1.71465,-1.85428,-1.32722,3 +1.63595,-0.453281,-1.02393,-1.56297,-1.00238,-1.24286,-0.939841,-1.03584,-0.192418,-1.29192,0.17677,-0.730584,-0.446878,-1.39453,-1.09845,-0.439527,-2.02686,-2.00182,-2.12525,-1.78049,-0.58173,-0.412603,-1.7816,-1.05746,-1.84369,-1.08741,-1.16276,-1.46923,-1.8978,-1.77837,-0.913845,-1.29984,-1.02108,-1.44895,-1.57951,-1.55539,-1.17375,-0.946637,-1.18319,-1.80593,-1.46473,-1.36485,-1.11783,-1.81951,-1.37212,-1.13864,-1.46488,-1.65516,-1.5442,-2.02829,-1.86693,-1.68332,-1.54584,-1.68324,-1.55499,-1.4727,-1.44976,-2.04109,-1.39222,-2.06239,3 +0.319405,-1.48359,-0.61447,-1.26754,-1.60419,-0.158035,-1.25127,-1.58466,-1.00163,-1.04078,0.25908,-0.286834,-1.56269,-0.899355,-1.48224,-2.12182,-0.966922,-0.378721,-0.273058,-0.36987,-0.761457,-1.81341,-0.578288,-1.13279,-0.969897,-1.54035,-1.83138,-1.47949,-1.13077,-0.77527,-1.57524,-1.16818,-1.35331,-1.22793,-0.719162,-1.10743,-1.49529,-1.26302,-0.78213,-1.57747,-0.905159,-1.34258,-1.09086,-1.65528,-1.38606,-1.157,-0.907994,-1.23706,-0.953886,-1.20898,-0.988298,-1.00405,-1.13514,-1.16989,-1.26973,-1.3904,-1.78565,-1.25296,-1.70478,-1.60225,3 +-0.860882,-0.232798,-0.23668,-0.44918,-0.906339,-0.942424,-1.71886,-1.48749,-1.40608,0.00915806,-0.585585,-0.803007,-1.82784,-1.97159,-1.46884,-1.81703,-0.626013,-0.897406,-2.06295,-1.50421,-1.7838,-0.753945,-0.715917,-1.78544,-1.62389,-0.73377,-0.782342,-1.68901,-1.17111,-0.906181,-1.97883,-1.05843,-1.4226,-1.54563,-1.34782,-0.983914,-1.72618,-1.54316,-1.64198,-1.59421,-1.23035,-1.18972,-1.51487,-1.71169,-1.06069,-1.70117,-1.74008,-1.28355,-1.80047,-1.58695,-1.25035,-1.2766,-1.23894,-1.41487,-1.21374,-1.53158,-1.36308,-1.63754,-1.80146,-1.86458,3 +1.14464,0.309546,-0.30158,-0.867181,-0.968348,-0.817179,-0.32433,1.10163,0.510134,-0.824949,-0.928796,0.727418,-0.813713,-1.2485,-1.7643,-0.39142,-1.57465,-0.542603,-1.3516,-0.863221,-0.574851,-1.19421,0.0461342,-1.31909,-0.0927617,-1.0893,-0.822284,-0.775954,-1.11782,-1.15289,-0.51916,-0.969698,-0.679938,-1.23515,-0.666694,-0.964465,-0.768989,-0.73956,-0.629959,-0.77887,-0.312527,-0.303747,-0.876976,-1.23406,-0.939641,-0.58015,-0.992238,-1.18679,-0.64268,-0.523336,-0.591987,-0.756957,-0.591222,-0.488322,-0.506974,-1.24835,-0.900845,-0.985079,-0.588876,-0.828058,3 +1.452,0.526661,-0.563749,-0.747363,0.41335,-1.92404,-1.56934,-1.32675,-0.310584,-0.486013,0.0417716,0.0037939,-0.439564,-0.231011,-1.2529,-0.740331,-1.14117,-1.96445,-0.738101,-0.614848,-1.44835,-1.9844,-1.54557,-1.69751,-0.767381,-0.939421,-1.79878,-1.68507,-1.12865,-1.80621,-2.06965,-1.95095,-1.42161,-1.35697,-1.98728,-1.11182,-1.20091,-1.17969,-1.29624,-1.50661,-1.70522,-1.39881,-1.61758,-1.63025,-1.20969,-1.33855,-1.40243,-1.69591,-1.75521,-1.64564,-1.38162,-1.63769,-1.79362,-1.44946,-2.11449,-1.72698,-1.60648,-2.083,-1.98575,-1.76896,3 +-0.55117,-0.399598,-0.512781,-1.44589,0.296622,-1.29864,-1.52074,0.78378,-0.0947632,0.0478863,0.0552132,-0.756427,-1.54091,-1.60516,-0.300287,-1.2886,-1.42368,-0.741633,-1.0983,-0.808143,0.0261012,-1.36845,-0.780529,-0.163293,-0.1484,-0.686301,-0.394416,-0.387302,-0.999432,-0.764156,-0.176871,-1.21917,-0.47053,-0.490167,-1.00067,-0.271404,-0.47423,-0.796501,-0.867822,-1.12478,-1.23172,-0.811354,-1.17487,-0.719461,-1.16149,-1.25431,-1.05858,-0.725376,-1.0112,-0.458482,-0.728599,-0.747537,-1.04866,-1.14481,-0.527601,-1.24769,-1.22523,-0.647436,-1.17743,-1.26264,3 +-0.176117,-1.58422,0.317464,-0.719663,-0.581967,-1.84386,0.284652,-0.936974,-1.08616,-0.0748074,-0.214608,-0.443991,-0.76288,-1.41692,-1.27341,-1.48524,-0.234736,-0.307943,-1.10412,-0.307193,0.0739653,-0.938074,-0.192901,-0.736225,-1.26539,-0.384204,-0.301708,-0.510529,-0.221816,-0.815115,-0.757608,-1.16951,-0.564494,-0.704947,-0.439042,-0.889897,-0.482116,-0.413571,-0.562672,-0.328552,-0.722943,-0.594027,-0.965889,-0.344469,-0.399825,-1.01851,-1.20731,-1.16889,-0.407887,-0.584218,-0.551814,-0.407465,-0.593735,-0.823893,-0.830855,-0.579347,-0.607001,-1.15755,-1.15443,-0.535312,3 +1.6639,0.452534,-0.263344,-0.0891794,0.494245,-0.449373,0.603221,-1.19362,-1.13803,0.092385,-1.02504,-0.762338,-0.0707371,-1.08663,-1.69533,-1.34714,-1.25541,-0.634963,-0.776018,-1.23738,-0.0572068,-1.39275,0.108154,-0.773437,-0.114811,-0.917763,-0.527008,-0.902666,-0.629565,-1.09927,-0.893986,-0.882175,-1.03711,-1.00423,-0.891343,-1.09066,-0.508128,-1.11939,-0.971725,-0.46658,-0.747595,-0.856889,-0.699732,-0.488519,-0.957879,-0.956191,-1.13878,-0.453381,-0.85335,-1.16899,-0.868609,-1.19919,-0.999408,-1.26305,-0.843667,-1.12863,-0.936861,-1.09889,-0.841059,-0.704565,3 +0.806973,-0.0775681,-1.45629,-0.875958,-0.836947,-1.91691,0.332936,-1.09051,0.461306,-1.151,-0.38389,-0.365375,-0.214348,-1.54143,-0.354382,-1.28877,-0.680042,-1.82201,-1.35703,-0.504926,-0.149751,-1.59442,-1.20456,-0.785645,-1.36263,-0.287591,-1.41245,-0.678243,-1.1545,-1.57274,-1.53544,-0.999729,-1.09945,-1.24387,-1.33927,-0.866186,-0.425527,-0.722074,-1.25386,-0.849334,-1.44794,-0.572987,-1.29675,-0.878674,-0.828115,-0.653353,-1.03417,-1.2799,-0.979683,-1.12456,-0.775481,-0.708535,-0.866554,-1.03768,-1.21017,-1.05084,-1.46126,-1.33906,-0.994032,-1.21701,3 +-1.59909,-1.23403,0.639356,-0.946124,-0.868236,0.726515,0.505451,0.875895,-0.574424,0.714595,-1.12445,-0.119,-0.00831201,0.0600074,0.118735,-0.672574,-0.353928,-0.467949,-0.720221,-1.72639,-0.962901,0.0379579,-0.43913,-0.944646,-1.13065,-1.20483,-0.672621,-0.497361,-1.56947,-0.574158,-0.419916,-0.76889,-1.12647,-1.15025,-0.469573,-0.507035,-0.406233,-0.657261,-1.03656,-0.586842,-1.09841,-0.558324,-0.822659,-0.791628,-0.948113,-0.79833,-0.657873,-1.17217,-1.2243,-0.605398,-0.83499,-0.672198,-1.31754,-1.11167,-0.690523,-1.2595,-1.45743,-1.12764,-0.893317,-1.08998,3 +-1.62146,0.370541,-0.330109,-1.07149,-0.509278,-1.94824,0.280872,-0.894326,0.484771,-0.0756146,0.595226,0.268993,-0.154483,-1.40052,-0.926102,-1.50306,-1.24433,-1.58066,-1.2602,-1.00627,-0.417817,-1.95585,-1.0419,-0.526556,-1.29846,-1.80219,-1.06931,-1.59596,-0.772259,-1.04042,-1.00845,-1.60771,-1.43652,-1.92033,-1.56986,-0.930428,-1.71692,-1.63265,-1.72037,-1.00738,-1.41928,-1.0543,-1.3766,-1.07593,-1.44084,-1.84871,-1.87583,-1.38067,-1.43086,-1.53965,-1.44748,-1.37609,-1.69505,-1.42139,-1.48923,-1.80919,-1.27958,-1.48339,-1.50903,-1.80482,3 +0.0922846,-0.819831,-0.802318,-0.303578,-1.30217,-0.541275,0.701899,-1.23005,-1.25389,0.444236,-1.23083,-1.27844,-0.883909,-0.844513,-0.399243,-0.483256,-1.09642,-0.307462,-0.516902,-0.288568,-1.77982,-0.246427,-0.196465,-0.506886,-0.571275,-0.384025,-0.774093,-1.43661,-1.6823,-0.499925,-0.695038,-0.611766,-0.820609,-1.43598,-1.49635,-0.869157,-1.44977,-1.54035,-0.865632,-0.675207,-1.46034,-0.985449,-1.02175,-1.58883,-1.48131,-1.13076,-1.06104,-1.23474,-1.3793,-1.36348,-1.35273,-1.07483,-1.5462,-1.33037,-1.19329,-1.62361,-1.38252,-1.2088,-1.5947,-1.48029,3 +-0.766103,-1.08221,-1.5575,-1.51416,0.000626321,-0.296064,-1.05776,-1.45559,-1.11184,-1.11934,-0.120817,0.463421,-1.30704,-1.04149,-0.498094,-1.57011,-1.97766,-1.53101,-1.21429,-1.75557,-0.451174,-1.59149,-0.414743,-1.60882,-0.601341,-1.18341,-1.96156,-1.32113,-1.70691,-1.42039,-1.22898,-1.21969,-0.822592,-1.06742,-0.886417,-1.805,-1.02263,-1.33028,-0.952027,-0.935096,-1.69074,-0.890717,-1.27221,-0.939273,-1.04083,-1.24037,-1.27166,-1.32746,-1.42694,-1.68767,-1.24506,-1.39173,-1.57258,-1.69228,-1.82059,-1.87707,-1.15534,-1.92715,-1.67866,-1.28048,3 +0.523552,0.79924,0.555215,-1.54212,0.502196,-1.39445,-1.85858,0.750724,0.726556,0.123677,-0.437798,0.451841,-0.702119,-1.61833,-1.13233,-0.500717,-1.43822,-1.31586,-1.72968,-0.309404,-0.978866,-1.31503,-0.287832,-0.417929,-0.852258,-1.2588,-1.5041,-1.59052,-1.07137,-0.498385,-1.15961,-1.49795,-1.36598,-0.590626,-0.675784,-0.863066,-0.881066,-1.28771,-0.85079,-0.87675,-0.717624,-1.19695,-1.21761,-1.24358,-0.887478,-0.92005,-1.07816,-1.04248,-0.934507,-0.645564,-1.36963,-0.81577,-0.851328,-0.836911,-1.28213,-1.15731,-1.29542,-0.983989,-0.747138,-1.33779,3 +0.072545,-0.429999,-0.420055,-1.14316,-0.853343,0.653028,-1.22905,-0.636672,-0.0506175,0.144973,-1.15499,0.105212,-1.06736,-1.22497,-0.549744,-1.96383,-1.32301,-1.50174,-1.73559,-1.37876,-0.996407,-0.541345,-1.63202,-0.841035,-0.901305,-1.44289,-1.73313,-0.418841,-0.895168,-0.686027,-1.03156,-0.969805,-1.40597,-0.654094,-1.051,-1.03576,-1.38278,-1.14373,-0.835205,-1.17999,-0.959183,-0.872539,-1.28293,-0.681385,-1.34934,-0.700911,-1.04171,-1.56024,-0.883336,-0.923796,-0.958926,-0.876632,-1.45314,-1.52442,-1.61213,-0.902546,-1.23858,-1.25002,-1.35237,-1.5488,3 +-1.36945,-0.185657,0.277439,-0.0401608,0.43634,-0.360364,-0.0269452,-1.31507,0.472493,0.629084,0.153084,-1.14725,-0.483668,-1.5628,-1.15263,-0.541061,-0.481636,-1.95779,-1.11791,-1.22065,-2.0288,-0.350938,-1.70061,-0.523143,-0.494595,-0.607025,-1.11218,-0.855224,-1.32601,-1.02288,-1.20868,-0.83111,-0.9042,-0.859476,-1.63223,-1.51341,-1.48523,-1.53395,-0.965367,-1.61708,-0.963012,-1.46202,-1.13515,-1.1806,-1.30931,-1.53317,-1.25463,-1.42454,-1.73443,-0.989836,-1.74832,-1.20094,-1.19103,-1.50054,-1.82366,-1.07437,-1.5787,-1.44171,-1.14476,-1.51736,3 +-0.176661,0.980976,0.170496,-1.29162,-0.28207,-0.233199,-0.508014,0.349575,-0.429691,-0.363096,-1.46941,-1.75672,-1.0384,-0.384758,-0.472647,-2.06524,-0.58373,-0.831109,-2.27275,-1.79468,-0.558451,-0.474337,-1.90983,-0.919655,-1.80431,-0.98411,-1.55271,-0.918765,-1.04072,-0.860774,-1.14129,-1.25764,-1.58802,-1.50879,-1.13531,-1.98299,-1.80826,-1.15591,-1.07383,-1.87683,-1.71539,-1.61224,-1.333,-1.27312,-1.8829,-1.42504,-1.90597,-1.70621,-2.02446,-1.55781,-1.25248,-1.84883,-1.68201,-1.99437,-1.98644,-1.63173,-1.65714,-1.77566,-1.65381,-1.82278,3 +-0.153002,0.386199,-0.517767,-0.500166,-1.1498,-0.852664,-0.731733,1.04834,-1.19416,-1.1165,0.742059,-0.364981,-0.366534,-1.03739,-0.425992,-0.393711,-1.70531,-0.691879,-0.0106823,0.0514302,-0.172369,-1.03936,-0.831458,-0.278244,-0.0190769,-0.808613,-0.240875,-1.08894,-0.58629,-0.779125,-1.02281,-0.255438,-0.626626,-0.712396,-1.32261,-1.21578,-0.715264,-0.36716,-0.348919,-0.389134,-0.508271,-1.08831,-0.924356,-0.991631,-0.751801,-0.746857,-0.758571,-1.01191,-0.677944,-1.01805,-1.09243,-0.563066,-1.03526,-0.982173,-0.986852,-0.671565,-0.66589,-0.944479,-1.27069,-1.23007,3 +0.884931,-1.0154,-1.17457,-0.31227,-0.397405,-0.00264948,0.217541,-1.79233,-1.23979,-0.44701,-0.922402,-1.34679,-0.813731,-1.1126,-1.37518,-1.99005,-0.588469,-1.92433,-2.14315,-2.10594,-0.791374,-2.03917,-0.940684,-1.61588,-1.4342,-1.23666,-1.42674,-1.28549,-2.02811,-1.4636,-1.61,-2.05056,-1.82953,-1.7052,-1.16757,-2.00332,-1.94093,-1.68321,-1.47362,-1.78601,-1.72817,-1.55918,-1.76846,-2.096,-1.86996,-2.01084,-1.5619,-2.00225,-1.32816,-2.01761,-1.60792,-2.05072,-1.96127,-1.64504,-1.83756,-1.50467,-1.47523,-1.97169,-1.91816,-1.56083,3 +0.125899,-0.418767,0.116673,-0.428118,-1.45118,-1.12623,-1.60067,-1.29812,0.613071,-0.928305,0.511627,-1.0659,-0.489757,-2.29718,-1.40551,-1.58201,-0.944323,-0.606651,-1.48981,-2.07572,-0.921675,-1.16141,-1.45371,-0.678841,-1.57048,-1.53573,-1.4272,-2.15737,-1.16929,-1.1406,-1.11538,-1.51905,-1.80319,-0.889186,-1.66235,-1.00796,-1.31177,-1.57615,-1.78694,-1.55201,-1.05226,-1.44184,-1.78593,-1.50578,-1.75663,-1.96978,-1.51405,-1.85884,-1.99653,-1.50607,-1.96662,-1.86323,-1.58441,-1.97323,-1.92749,-2.01745,-1.85551,-1.43484,-1.60894,-1.98266,3 +0.849628,-1.60156,-0.447234,-0.319661,-1.46737,-0.112349,0.575974,-1.3912,0.907388,-0.483918,0.810733,-0.302862,-1.41059,-1.45566,-0.0874085,-0.223548,0.0770137,-1.53596,0.167215,-0.207454,-0.577525,-0.522552,-0.25742,-0.232138,-0.759987,-0.517323,-1.00146,-0.242126,-1.32498,-1.27637,-0.310361,-1.11042,-0.916003,-0.973631,-0.255184,-0.434989,-0.197801,-0.816361,-0.614083,-0.93615,-1.07632,-1.03582,-0.989234,-0.596999,-0.452253,-0.370852,-0.745415,-1.07017,-0.343207,-1.01214,-0.453385,-1.11894,-0.772085,-1.11999,-0.843357,-0.675107,-0.961185,-1.16035,-0.581589,-0.550516,3 +0.227716,-0.681557,-1.38343,-1.41947,-0.567111,-1.21155,-0.676307,-1.21147,0.359553,-0.127035,-0.921413,-0.434814,-0.851819,-0.701045,-1.4091,-2.3024,-2.24397,-1.0162,-0.73419,-1.65632,-2.21022,-1.6446,-1.3718,-0.907752,-1.52419,-0.692329,-1.78279,-1.42562,-2.14399,-1.97444,-1.64021,-1.00034,-1.81173,-1.80316,-1.2641,-1.28694,-1.16237,-1.23104,-1.15139,-1.15763,-1.17989,-1.51788,-1.20717,-1.91886,-1.87254,-1.23145,-1.34738,-1.74567,-1.95766,-1.41318,-1.55473,-1.35106,-1.94685,-1.67225,-2.01888,-1.47443,-2.01407,-1.98648,-1.55451,-1.77853,3 +0.609463,-1.20711,-0.0856396,-1.35614,0.562666,-0.130764,-1.31374,-0.696633,0.575393,-0.950408,0.367531,-1.2132,-0.012225,0.0988754,-0.133554,-1.50959,-1.57675,-0.9673,-0.7257,-0.0510957,-0.28639,-0.427362,-1.2973,-0.177409,-0.227789,-1.12476,-0.93887,-1.07728,-0.563885,-0.495494,-0.933976,-0.870009,-0.338459,-1.39489,-1.14543,-0.789051,-1.29782,-0.764519,-0.531024,-0.970555,-0.855514,-1.17922,-0.922964,-0.741654,-0.708465,-0.759502,-0.615123,-0.904441,-1.3796,-1.30708,-0.774915,-1.215,-1.17336,-0.900296,-0.897235,-1.31597,-0.776327,-0.762647,-0.867351,-1.41246,3 +0.379196,-0.641823,0.452688,-0.401153,-0.2168,0.260977,-1.52798,-1.09462,-0.820797,-0.782838,0.148174,0.160068,-0.618319,-0.25385,-0.492221,-1.48219,-1.77251,-1.57402,-0.374267,-1.73153,-1.13398,-1.23983,-1.55088,-1.24301,-1.12785,-0.885276,-1.04131,-0.751939,-1.87367,-1.83696,-1.21536,-1.25249,-1.21591,-1.77291,-1.33164,-1.7546,-1.1013,-1.65817,-1.17247,-0.905875,-0.915003,-1.55157,-1.05119,-1.23168,-1.19814,-1.18267,-1.27171,-1.06624,-1.41531,-1.35245,-1.51353,-1.77591,-1.79179,-1.76108,-1.86588,-1.35839,-1.35854,-1.83912,-1.47911,-1.65204,3 +1.54993,-1.63774,-0.866305,-0.555583,0.500456,-0.715142,0.563136,-0.836945,0.136061,-0.612915,0.190918,-1.59164,-1.85068,-0.613439,-0.302028,-0.630195,-1.52572,-0.856319,-1.6859,-1.64009,-1.5505,-0.364788,-1.33088,-1.40902,-0.578537,-1.6644,-1.49399,-1.85974,-0.868401,-0.855589,-0.775341,-1.46777,-1.31502,-1.54767,-0.711339,-0.7945,-0.99171,-1.21388,-0.778623,-1.41422,-0.896925,-1.07066,-1.36043,-0.961596,-0.939656,-1.61159,-1.20833,-1.65553,-1.53218,-1.34236,-1.1347,-1.4636,-1.2882,-0.982234,-1.34173,-1.50134,-1.11887,-1.17168,-1.12373,-1.23565,3 +1.39204,0.375207,0.0118626,-0.581042,-0.384472,-1.10657,-1.2154,-1.41942,-1.13187,-0.20626,-0.0296578,0.33023,-0.602521,-0.398821,-0.603311,-0.575469,-0.916041,-0.276422,-0.18324,-1.02934,-0.0929209,-0.84031,-1.10336,-0.718194,-0.431108,-0.826029,-0.604569,-0.597092,-0.21252,-0.673111,-0.808773,-0.534979,-1.12153,-0.600875,-0.633753,-0.526088,-1.14145,-0.978094,-0.421489,-1.10591,-0.414851,-0.82905,-0.81199,-0.99387,-1.18592,-1.26069,-1.10484,-1.20162,-0.58243,-0.842428,-0.478122,-0.710334,-0.676523,-0.732912,-0.703092,-0.652812,-1.2847,-0.811929,-1.10069,-1.27217,3 +-0.601291,-0.923807,-0.521593,-0.442969,-1.16418,-0.764405,0.766727,0.517502,-1.11602,-1.08761,0.031421,-1.29859,-0.456222,-1.37998,-1.19788,-1.99939,-0.89041,-0.0723221,-0.312247,-0.0448825,-0.0713242,-0.798236,-0.558196,-1.2681,-0.715781,-1.34523,-1.33574,-0.953813,-1.65156,-1.25109,-1.32086,-1.46106,-1.29909,-0.90595,-1.07859,-1.01943,-1.46022,-0.861564,-1.33684,-0.656523,-1.0124,-0.590418,-0.620772,-0.972766,-1.00209,-0.839714,-1.40453,-0.907858,-0.915383,-1.13091,-1.49672,-1.36305,-1.38061,-1.27946,-0.76844,-1.16251,-0.995084,-1.56246,-1.5345,-1.36147,3 +0.763918,-0.404504,-1.15942,-1.24515,-1.06267,-1.56948,-1.34997,0.192681,-0.31425,-0.155166,-0.243363,0.353539,0.095547,-0.899949,-0.176411,-1.52814,0.0241111,-1.52293,0.069854,-0.514144,-0.228013,-0.109164,-0.614204,-0.914884,-1.325,-0.675505,-1.50218,-1.3972,-0.950873,-1.04176,-1.25443,-1.25797,-1.05905,-1.02433,-1.37327,-0.996912,-0.785159,-1.21078,-0.743825,-0.488947,-1.28806,-0.6583,-1.2289,-0.58563,-1.08521,-1.34177,-0.623812,-1.18382,-0.859827,-1.28321,-0.847121,-0.651689,-1.04618,-1.31664,-0.814887,-0.859907,-0.960664,-0.925364,-1.17418,-1.14843,3 +-1.07235,0.0759545,-0.41033,0.338455,0.288104,0.534055,0.200236,-1.42305,0.0230651,-1.23741,-0.811955,-0.173124,-0.424388,-0.888335,-2.19641,-0.905056,-1.10015,-1.04169,-1.10706,-1.20649,-1.7998,-0.722403,-1.16074,-1.68673,-1.44459,-1.79825,-1.48343,-1.62798,-1.08092,-1.96091,-1.21353,-1.9193,-1.8283,-1.1304,-1.61864,-1.67836,-1.54969,-1.12904,-1.04363,-1.78074,-1.18521,-1.02885,-1.23087,-1.58703,-1.42298,-1.45238,-1.7647,-1.5945,-1.37052,-1.57338,-1.92654,-1.73995,-1.40387,-1.54045,-1.81663,-1.76261,-1.96569,-1.6292,-1.47835,-1.44262,3 +-1.10797,-0.0203729,-0.908823,-0.0740376,-0.905753,-1.43755,0.275717,-1.52695,-1.20914,-0.694149,0.480575,-1.22125,0.186881,-2.12345,-2.06538,-0.598437,-2.27279,-0.476616,-1.00726,-0.531367,-0.910126,-0.769902,-1.11632,-1.33531,-1.30098,-1.32845,-0.965516,-1.13008,-0.72894,-1.87127,-1.21097,-1.21532,-1.17085,-1.43675,-1.44807,-1.53118,-0.838622,-1.43788,-1.58418,-0.849414,-0.883162,-1.04922,-1.41942,-1.23592,-1.26682,-1.09583,-1.39316,-1.83464,-1.08815,-1.08848,-1.51791,-1.84239,-1.21667,-1.66748,-1.51093,-1.18946,-1.36376,-1.62266,-1.73222,-1.37264,3 +0.231807,0.25288,-0.152843,-0.420367,-0.0400598,-1.66309,0.284088,-0.378244,-0.119055,0.0171613,0.757231,-0.705924,-1.30635,-1.90855,-1.13154,-1.87837,-1.89702,-0.911019,-1.25849,-0.615487,-0.27831,-0.431217,-1.24357,-1.00456,-0.502695,-0.620991,-0.752012,-1.37,-0.705329,-1.03244,-1.18332,-0.442291,-0.848085,-1.09525,-0.856294,-1.16288,-0.533242,-1.33158,-1.36468,-0.68731,-0.729752,-1.00394,-1.08686,-0.940622,-1.47342,-1.2377,-0.997145,-1.48418,-1.11371,-0.933728,-0.77122,-1.0431,-0.971761,-0.983065,-1.40621,-1.17371,-1.41432,-1.34014,-1.52589,-1.00429,3 +1.45675,-0.895377,0.092312,0.517864,-0.508582,-0.232205,0.757301,-0.167604,0.964845,0.00546557,-0.305413,-0.588629,-0.70872,-0.812566,-0.206765,-0.185548,-0.622583,-0.75013,-0.59393,0.440605,-0.100295,-0.185051,-0.606997,0.632826,0.00484159,0.622505,0.285124,1.23081,1.52572,0.778143,1.43585,0.447279,1.16984,0.887177,0.42531,0.497598,0.532236,0.935132,0.874856,1.25248,0.605044,0.417517,0.910683,0.742739,1.00655,0.625295,1.03299,0.237363,0.258174,0.533477,1.06208,1.05688,0.772631,0.665155,1.00671,0.46745,0.417233,0.247138,0.416372,0.679867,4 +1.03924,-0.164058,0.763884,0.133158,-0.636869,-1.15933,0.0402149,0.293313,-0.453211,0.806169,1.02914,1.24305,-0.0787459,0.462528,0.278873,-0.633821,0.0595839,0.379973,-0.236289,-0.152454,0.483206,1.94869,1.67586,0.589901,0.557424,0.93725,1.3157,1.55239,1.58007,0.643712,0.668376,0.524815,0.705274,1.07325,0.885523,0.839981,1.25126,0.981851,0.470343,0.513676,1.27392,0.97983,0.537236,0.398234,0.742169,0.85673,0.451114,0.687617,0.383645,0.380945,0.857044,0.971585,0.770346,0.715643,1.0493,0.242226,0.606001,0.924391,0.660888,0.291735,4 +0.396103,-1.35421,-0.812139,-1.2239,0.721784,1.04833,-0.91257,-0.152614,1.41715,0.644094,1.10788,0.030387,-0.189279,0.350265,-1.18597,-0.746864,-0.85111,-0.953842,0.232836,0.551073,0.739438,0.267231,0.0403498,-0.189091,-0.38363,0.0546284,0.497885,0.567007,1.90837,1.32907,1.47046,2.21814,1.43372,1.69043,1.30558,1.82051,1.89757,1.2053,1.87162,1.94791,1.50892,1.19583,1.21761,1.61198,1.56095,1.16828,0.973459,0.949802,1.31825,1.04822,1.63018,1.63727,1.60433,1.25568,1.19572,1.06028,1.06624,0.798339,1.20312,0.995801,4 +-1.34685,-0.350508,-0.762027,-0.997709,-1.3572,0.864102,-0.5521,0.464444,0.129989,-0.621107,-0.0966891,0.0109442,-0.388695,-1.09913,-0.0801807,-0.184983,-0.925932,0.644432,0.104139,-0.380163,-0.701563,-0.634868,-0.201465,0.682014,0.275171,0.0414661,0.186604,0.516022,-0.466636,0.445606,-0.529783,-0.269957,0.394942,0.122895,-0.268659,-0.527828,-0.246207,-0.0611309,1.58201,1.56448,1.57283,1.05334,1.21158,1.63112,1.30725,0.945186,1.7381,1.04723,1.09571,1.17206,1.78115,1.61288,1.77999,1.03288,1.3438,1.60786,1.00282,1.50853,1.36823,1.55745,4 +1.31734,-0.323835,0.029201,0.536651,0.218602,-1.48595,1.03024,-0.165625,-0.758866,0.712259,0.699438,-0.40503,-0.116559,0.568483,-0.266504,0.401712,0.356306,0.440208,-0.0409629,0.164109,0.0936697,-0.14562,0.787946,1.08158,1.43011,0.508208,0.415291,1.55191,0.414959,1.21009,1.47922,0.21079,0.317289,0.705082,1.08638,1.05858,1.07144,0.732063,0.7201,0.525163,0.803015,0.9083,0.769505,1.05496,0.546659,0.716221,0.32184,0.95838,0.761848,0.97864,0.584888,0.410546,0.528871,0.814715,0.736055,0.915337,0.905926,0.198496,0.724504,0.723755,4 +-0.668521,0.0244115,-0.900753,0.498753,-0.0430091,-0.0799115,0.850407,1.03806,-0.373606,-0.211996,0.420008,1.08666,-0.82099,-0.333496,0.675068,-0.529192,0.289983,-0.491872,-0.77237,-0.00171694,-0.161015,0.236749,-0.625122,-0.640553,0.318251,0.229188,0.455828,0.0451226,-0.467524,0.297443,-0.237773,0.885509,1.43909,1.04275,1.16055,0.578169,0.851313,0.836397,0.655342,0.903181,1.01842,0.873297,1.25626,1.17503,1.06153,0.825768,1.07629,0.347875,0.900484,0.617461,0.56902,0.432205,0.849326,0.909745,0.442882,0.503489,0.918774,0.447108,1.07177,0.594941,4 +1.70195,-0.322247,-1.26537,-1.40541,-0.359852,-1.2371,0.179935,0.217414,1.30372,-0.174711,1.23286,1.2081,0.726051,-0.570508,-0.343285,-0.0912824,0.178047,-0.953114,-0.780581,0.431169,-0.675686,-0.682078,0.086492,0.333968,0.330473,0.283835,-0.190899,-0.0929103,0.164877,0.36272,0.102786,1.68869,1.24562,1.24496,1.90641,1.2775,1.42561,1.3366,1.38907,1.70673,0.961307,1.71023,1.51765,1.39689,1.4845,0.913251,1.41012,0.891514,1.50369,1.58412,1.45752,1.31759,1.09458,0.914801,1.10886,1.15144,1.45793,1.33792,1.04281,1.40289,4 +-1.33046,-1.17517,-0.925571,-0.569904,0.299058,-0.317748,-0.24011,-0.126074,0.608051,0.219578,-0.534238,0.380751,-0.167191,-0.583996,-0.538437,-0.184915,0.304049,-0.672189,-0.468074,-0.0902281,-0.819579,0.496256,0.503168,-0.252653,-0.605152,-0.295763,0.0317812,-0.492191,-0.00643712,-0.185174,0.331601,-0.373945,0.132297,0.0335429,0.0560698,0.117909,0.213134,1.80976,1.84096,1.94377,1.5545,1.18046,1.62758,1.31133,1.54624,1.65131,1.58091,1.52828,1.07702,1.31759,1.0491,1.23689,1.3492,1.66068,1.28249,1.29781,1.40508,1.33309,1.06206,1.29402,4 +0.754764,-1.49941,-0.369106,0.424378,0.558929,0.585151,-1.06896,0.307056,0.371361,0.218256,0.128126,0.464903,0.421679,-0.201586,-0.0582334,0.036588,-1.13274,0.170787,0.437676,-0.289285,2.57726,2.20503,1.91186,1.79792,1.93029,1.99689,2.05227,1.10773,1.10277,1.84863,1.05817,1.2989,1.10037,1.23849,0.887127,1.02368,1.13131,0.808589,0.997674,0.957796,1.62708,1.0888,0.712979,1.20673,1.10231,1.03599,0.723223,1.09873,0.6533,0.981149,1.16207,1.09862,1.28576,0.855633,1.17746,0.822178,0.644155,1.07145,0.598048,1.02249,4 +-0.699303,0.062221,-0.153433,0.399176,0.554679,0.0649851,-0.643684,0.414612,0.425772,-0.249642,0.693344,0.623204,1.08676,0.259783,0.12234,-1.01227,0.268941,0.411912,-0.281873,-0.298208,0.297667,0.0666222,-0.0754711,0.578243,0.384254,0.171303,0.174591,-0.280139,0.570259,-0.00734666,0.0838756,-0.182891,0.193742,0.524613,0.238006,0.216179,-0.163192,0.378998,-0.119911,1.59058,1.05396,1.20339,1.09613,1.47868,1.45538,0.947031,1.4995,0.780767,0.877435,1.58359,1.11608,1.17441,1.39357,1.06406,1.30965,1.23937,0.945715,1.4454,1.20959,1.25454,4 +0.689852,-0.899707,-0.524409,-0.555019,-0.505285,0.637947,0.999676,0.811954,-0.0865282,-0.517357,0.979892,-0.733906,-0.527552,0.681432,0.834063,0.394102,-0.391753,-0.613768,0.547841,-0.685856,-0.224994,0.388221,-0.638353,0.186172,-0.114979,-0.0897661,1.67769,0.826316,0.963276,0.874676,0.731488,0.737108,0.724837,0.56849,0.54793,0.419593,0.579042,1.1579,0.389871,1.25145,0.827594,0.596862,0.803915,1.14368,0.774458,0.9646,0.511075,0.727157,0.69632,0.967643,0.86335,0.861875,0.362742,0.463787,0.630565,0.380068,0.366713,0.878707,0.624821,0.347632,4 +1.65666,0.662722,-1.45939,0.507,-0.935411,0.243467,0.0468917,1.28044,0.116395,-0.485824,0.0306969,-0.314272,-0.585717,-0.930227,-0.872905,-0.706743,-0.220967,0.2291,0.66794,-0.853972,-0.455589,0.112579,-0.0553122,-0.317474,-0.4994,-0.359599,-0.467983,0.30015,-0.0738601,-0.36784,-0.572848,2.47299,2.41019,2.21681,1.80202,1.43458,1.40842,1.39495,1.57769,1.14032,1.70866,1.74886,1.61032,1.90881,1.93161,1.08664,1.62982,1.2345,1.14026,1.29583,1.41496,1.26054,1.33511,1.61522,1.5661,1.27453,0.996274,1.44189,1.53567,1.166,4 +-0.906369,-1.0571,0.704903,-0.230555,0.723396,-1.39392,-0.248308,-0.74083,0.944145,0.533526,-0.458287,-0.599439,-0.518629,-0.155334,0.105088,0.620821,0.464795,0.244123,-0.784802,0.0758783,0.121574,-0.334857,0.599761,-0.339358,0.0376277,-0.365337,0.0599724,-0.244918,0.313249,0.391871,-0.260582,0.0286632,0.463594,-0.125172,0.266605,0.412299,1.82456,1.74793,1.77079,1.35447,1.38369,1.90408,1.64757,1.64274,1.55341,1.07854,1.3013,1.59254,1.45198,0.960247,1.01378,1.05126,1.37028,1.30136,1.24883,1.54633,1.35686,1.29603,1.32937,0.883346,4 +0.811608,-0.48972,-0.970164,-0.612815,-1.2047,0.287983,-0.44672,-0.402418,-0.0840464,1.30472,0.352482,1.12072,-1.02699,0.320896,-0.420452,0.0315601,-0.48727,-0.251274,-0.756695,-0.0605635,0.876257,-0.66429,-0.231344,-0.680125,0.725512,-0.389407,-0.584615,-0.498677,0.0102679,-0.0580437,0.176751,-0.320381,2.23463,2.20629,1.33105,1.85638,2.04913,1.93212,2.03462,1.49043,1.31831,1.85852,1.57729,1.9162,1.70662,1.08193,1.22631,1.26184,1.53469,1.04602,1.16496,1.60796,1.40061,1.67577,1.61771,1.53825,1.26218,0.951251,1.24739,1.18652,4 +-0.632388,-0.519111,0.101961,0.184486,-0.874464,-0.89135,1.01077,0.886347,0.321932,0.511646,0.699102,1.23049,0.119318,-0.581417,0.126859,-0.95944,0.0386581,-0.913887,-0.614107,-0.471648,-0.0211022,-0.114519,0.319025,1.49554,1.76667,0.97082,1.65191,1.84255,1.02133,1.02456,1.67325,1.45531,1.60205,1.73077,0.7017,1.05737,0.807878,0.726223,0.679694,0.915259,1.30923,1.26449,1.21855,1.30243,0.770241,1.13768,0.913354,1.05922,1.15931,1.27847,0.983847,1.30089,0.761449,0.881858,0.706594,1.27766,0.555818,0.665294,0.925281,1.19036,4 +0.0618169,-0.987135,-1.22695,0.47853,0.772582,-0.663009,-1.36381,0.214726,-0.308347,0.968501,-0.28012,0.55202,0.503541,-0.626982,-0.759035,0.285403,-1.13597,-0.403745,-0.401739,0.46524,0.0614548,-0.0850426,0.488714,0.324169,-0.329981,-0.36911,1.18534,1.69249,0.815605,1.53079,0.975711,1.80701,0.90655,0.936191,1.35826,1.10978,0.960103,1.34737,0.662282,1.2311,1.04238,1.27178,0.642729,0.98397,1.17404,1.03164,1.24042,0.92579,0.62925,0.648073,0.883423,1.34888,1.09056,0.893706,1.18429,0.935834,0.948241,0.781344,0.791524,0.563069,4 +-0.874957,-1.11891,-1.09561,0.60437,-1.14086,0.969429,-0.60139,-1.01055,1.28466,-0.112849,0.742377,0.0700795,0.633803,-0.091012,-0.75478,0.0805397,-0.419306,0.339429,0.340611,0.395415,-0.212529,-0.683799,-0.547531,-0.146142,-0.157351,-0.321675,-0.194595,0.363541,0.539786,-0.0922851,1.02154,1.0376,0.722921,1.19247,1.38335,1.0151,0.930618,1.41418,1.26832,0.650083,0.880533,1.27955,1.34917,0.513659,1.17735,0.483311,0.665766,0.7682,1.01532,1.30529,0.983203,0.913686,0.999435,0.770647,0.650835,0.91937,0.984548,0.717984,0.840904,0.84842,4 +-1.46789,-0.178008,-1.22799,-0.646743,-0.586895,0.189457,0.178413,0.966116,1.10997,-0.229772,0.680556,-0.213661,-0.588935,0.308559,-1.20736,0.280563,-0.285517,-0.508214,-0.309128,-0.381237,0.493013,-0.56676,-0.524141,0.471965,-0.275158,-0.317656,-0.412985,-0.257463,-0.479439,0.30179,-0.117334,1.63385,1.52854,1.54971,1.20187,1.371,1.26962,1.36925,1.04925,1.31937,1.33561,0.830197,0.738936,1.12161,1.24878,0.96102,1.19381,0.849173,1.39963,0.970502,0.70145,1.02562,0.736316,1.26817,1.34802,0.694,1.19509,1.09633,1.3146,0.764299,4 +0.755078,1.1954,-0.931928,0.56637,0.281106,0.338085,0.0469898,-0.952266,-0.331548,-0.332011,-0.0355219,1.07557,0.0564719,0.403734,-0.60871,-0.990035,-0.750225,-0.265166,-0.697825,0.835853,-0.851133,0.718508,0.374302,0.592042,-0.045452,-0.0444628,0.502931,0.0477076,1.58028,1.54602,0.873381,0.974384,0.692499,1.63254,1.51384,1.47875,1.51413,0.625154,0.58496,1.25563,0.948847,1.13679,1.33035,1.3584,1.11257,0.453969,0.670883,1.01771,0.761431,0.713571,0.863902,1.0343,0.647982,0.93868,0.779946,0.831212,0.690605,1.13849,0.631724,0.584183,4 +1.32627,-0.529718,-0.350435,-0.816007,-1.30197,-0.35862,-0.30916,0.483327,0.441584,0.0860649,-0.0881225,0.0231428,0.938578,-0.39242,-0.675994,-0.802702,0.583192,0.447107,-0.607495,-0.665613,0.229723,0.62983,0.324251,-0.02828,0.0736252,1.75249,1.4488,1.72257,0.761413,0.826378,1.45021,1.36081,1.05827,0.619158,0.412331,1.04132,1.02155,1.3328,0.734934,1.15025,0.999528,0.778619,0.666104,0.99576,0.499591,0.56531,0.606426,0.741623,0.473033,0.451316,1.15065,0.48668,0.905202,0.972819,0.939995,0.867324,1.02651,0.291046,0.816746,0.975186,4 +0.584888,-1.52707,-0.357287,-0.515804,-1.14126,0.936573,-1.1738,-0.797136,0.885315,1.11527,1.14866,0.071731,0.16439,-0.675016,-0.553103,0.0105761,-0.8275,0.687426,-0.0959058,-0.364093,-0.353223,0.897942,0.176436,0.223188,-0.522767,0.0672101,0.44092,0.184333,0.383928,0.0153099,-0.390862,-0.493084,0.329712,-0.244456,0.431884,0.0446231,1.19013,0.93335,1.21463,0.73185,1.06463,1.28502,1.40552,1.16888,0.572393,1.08158,0.755134,0.797586,0.972298,0.681043,1.38094,1.10752,1.35403,0.636727,0.866798,0.976716,1.08444,0.919439,0.757617,1.0357,4 +-0.813907,-1.54668,0.666325,-0.243952,-1.30399,1.0188,-0.73166,1.30059,0.494961,0.341997,-0.677786,1.19005,-0.170208,-0.22667,-0.704607,0.686201,0.282013,0.80095,-0.912242,0.133292,-0.768681,0.408295,-0.302007,0.0451654,-0.317363,0.143839,0.311725,-0.566822,0.202474,0.489494,-0.475115,-0.305453,-0.574762,2.18737,1.87387,1.68877,1.43045,1.1796,1.72279,1.29716,1.31134,1.30505,1.76408,1.56342,1.04395,1.72625,1.73464,1.0156,1.58371,1.46168,1.10972,1.00538,1.74816,1.38394,1.3018,0.886794,1.10384,1.42678,1.47232,1.07467,4 +0.856666,-0.477069,-0.801157,-0.891459,-0.96637,-0.536749,1.11524,1.41376,-0.565945,0.667177,-0.541127,0.815268,0.951743,0.120805,-0.0451846,-0.909639,-0.988179,-0.583426,0.615558,-0.101674,-0.630525,-0.237423,-0.575309,0.0402723,-0.0781901,0.425606,-0.0677575,-0.0955761,-0.160356,0.181437,0.108113,-0.489194,-0.046918,-0.105184,0.0550332,-0.311215,0.259855,0.388587,0.48786,1.03213,0.806625,0.183622,0.467654,0.831679,0.403162,0.464486,0.694841,0.264058,0.156637,0.887211,0.442706,0.410894,0.882457,0.591875,0.77319,0.577392,0.12943,0.238958,0.293069,0.823054,4 +0.600966,-1.52857,-0.971553,0.106895,0.0351573,-0.997317,-1.24734,0.410354,1.16756,1.0153,0.0199401,-0.568849,0.598879,-0.182384,0.168186,-0.727026,-0.699294,0.493109,-0.321032,-0.0608438,0.751227,-0.12004,-0.367337,0.441506,0.0992813,0.455124,0.0960237,-0.0771463,-0.0611011,-0.130821,-0.0932947,-0.369773,0.0734454,1.26493,1.43853,2.15109,1.25853,1.26304,2.05817,1.82229,1.18007,1.76446,1.58856,1.0255,1.41173,1.30612,1.31304,1.71442,0.97012,1.75687,1.70624,1.51203,1.52092,1.04464,1.43088,1.31816,1.45993,0.964456,1.37423,1.14037,4 +0.94681,1.04931,-0.0578906,-0.619094,-1.39285,0.541033,1.11821,-0.492596,0.906862,0.673548,0.0643627,0.310937,-0.731613,0.619577,-0.73037,0.200492,0.716683,0.313754,0.649362,-0.542952,0.538189,-0.154514,0.14153,0.27081,0.128676,-0.402066,0.54158,-0.403793,-0.579263,0.0569987,-0.573734,-0.334559,0.127082,-0.391491,-0.313295,-0.34671,1.27881,1.15679,1.47014,1.09562,1.64049,1.73204,1.06411,1.66672,1.67467,1.51885,1.07329,1.35782,0.967547,1.64624,1.38892,0.99436,1.15764,1.14136,1.29825,0.926149,0.744402,1.17465,1.1429,1.43398,4 +1.36861,-0.747699,-0.566414,0.317187,0.0786096,-0.230726,-0.914288,-0.463928,-0.630095,-0.580489,1.13524,0.742076,-0.597127,-0.0692125,-0.79004,0.0627709,0.105329,-0.940121,-0.966098,-0.148732,2.81012,2.91938,2.87786,1.94739,3.08425,2.55064,2.87389,1.86958,1.732,2.40004,2.34519,2.15317,1.7573,1.33963,1.59842,1.80217,1.70397,1.5198,1.21585,1.2562,1.28439,1.44655,1.96002,1.05957,1.82195,1.79735,1.41414,1.66885,1.38836,1.15687,1.84924,1.36288,1.71892,1.41692,1.10115,1.48695,1.49115,1.15393,0.921416,1.2285,4 +1.71823,0.914016,-1.15824,0.484501,-0.487003,0.0143088,-1.19974,0.33209,0.16541,-0.289745,0.998385,-0.867265,0.182511,-0.536779,0.392531,0.183151,0.186017,-0.999689,0.183372,0.282659,0.139942,-0.446788,-0.432282,0.183261,0.101127,0.216483,0.510528,1.48913,1.63547,0.744425,1.79308,0.711279,1.53235,1.65345,0.946115,1.32162,1.04608,1.48247,0.629091,1.47746,0.888621,0.604742,1.22379,0.78149,0.551512,1.18524,0.945669,0.595038,1.20831,0.843758,1.02422,0.894308,1.20066,0.762908,0.674712,1.1693,0.577484,0.885052,1.10669,0.780216,4 +-1.35526,-1.07035,-0.854638,-0.698892,-0.252888,-0.0273804,1.14499,1.39955,0.794937,-0.443198,1.03724,-0.128684,-0.768878,0.731097,-0.172279,-0.345946,0.5566,-0.113533,-0.473785,0.888923,-0.287201,-0.625768,0.556783,-0.206658,-0.459628,0.166134,0.496169,-0.553343,0.00141117,-0.148743,0.0423013,-0.215391,1.34461,0.423451,0.416584,1.2111,0.392098,0.629478,0.576428,0.446599,1.1127,1.06314,0.735834,1.1503,0.915026,1.04088,0.997158,0.854401,0.639886,0.34323,0.930269,1.14478,0.492715,0.52551,0.392403,0.448127,1.01185,0.887357,0.899642,0.547067,4 +0.0883939,-1.54923,0.341121,0.21773,0.546674,-1.04696,0.0762742,0.940459,0.175018,-0.391674,0.960957,-0.019027,1.1204,0.574067,0.120792,0.619812,0.430962,0.180075,0.673124,0.74904,-0.57338,0.797176,-0.147796,-0.136674,-0.0699217,0.397228,1.81781,1.27171,1.21944,1.13844,1.45671,1.05144,1.51476,0.908727,1.36593,1.06136,1.52214,1.09256,0.955975,1.15649,1.11351,1.22479,0.870534,0.854753,0.909522,0.585022,1.14321,1.20075,1.22942,0.763398,0.56212,0.525911,1.13995,0.732189,0.645231,0.463377,1.1818,0.732285,0.991115,0.609543,4 +-0.109718,-1.38998,-0.232683,-1.17483,-0.848177,0.874789,-0.399394,0.957901,-0.369113,0.29135,-0.448555,1.19797,-0.787547,0.931875,-1.10719,-0.804583,-0.426066,0.601392,-0.703521,-0.856214,0.358116,-0.20679,-0.679069,0.501434,0.543595,0.742328,1.35128,1.65184,1.57067,0.454834,0.699484,1.03176,0.58514,1.06658,0.46152,0.82512,0.684477,0.520879,0.422294,0.795939,0.811596,1.0677,0.964424,0.93917,0.995285,0.644441,0.683822,0.741696,0.548992,1.09882,1.00411,0.338665,0.771759,0.801258,0.878606,0.580052,0.96039,0.647249,0.717274,0.38666,4 +0.817473,0.549414,-0.66285,-0.504751,-0.739802,0.45273,0.528795,1.30163,1.00655,1.23371,-0.678175,-0.512885,0.143435,-0.0419029,-1.19967,0.729212,0.0688953,0.267303,0.761529,-0.721547,0.371964,-0.521409,0.219706,0.303105,-0.647609,-0.491936,-0.0840955,0.196877,-0.335978,-0.0285786,0.621204,-0.00640452,-0.34314,1.44243,0.923133,1.10809,1.69029,0.935624,1.02258,1.60191,1.6139,1.52648,0.894866,1.31808,1.25727,1.11616,1.11687,1.08194,1.16709,1.10686,0.78447,1.43635,0.895771,1.21961,1.07587,0.672601,0.734411,0.711045,0.753342,0.628681,4 +-0.501907,-1.26226,-0.445502,0.309078,-1.22267,-0.248015,-0.607085,-0.00111826,1.08617,0.527549,0.845635,-0.911706,-1.05016,0.611469,0.454909,0.13046,-0.715912,0.804826,0.558333,0.830652,-0.164214,-0.120742,-0.631225,0.696252,-0.0350266,-0.0573349,0.475243,0.388376,-0.264937,-0.254065,-0.092148,-0.598822,0.506305,0.450537,0.0677204,0.0894785,0.0301209,0.219431,1.18478,0.326624,0.733584,0.85739,0.416751,0.518343,1.01589,0.613399,0.748221,0.502071,0.943336,0.533363,0.317807,0.297537,0.773338,0.891928,0.323461,0.693861,0.346123,0.358229,0.230889,0.731532,4 +-1.49676,-1.30801,-1.23386,-1.07455,0.474773,-1.55189,-1.2844,1.34909,0.509513,-0.713883,1.27464,-0.270301,-0.582553,0.540746,0.196605,0.574218,-0.297447,0.0285652,-0.83318,-0.531694,-0.353223,-0.635116,-0.233498,0.652276,-0.119556,-0.562861,0.167783,0.0455842,0.278589,-0.271023,-0.518378,1.14386,1.73336,1.00205,0.950102,0.788174,0.740287,1.14582,0.811633,1.40358,1.01972,0.829093,0.970684,1.49549,0.833352,1.24097,0.613873,1.30812,1.00149,0.89032,1.43517,0.884664,1.24916,0.928298,0.96152,1.32967,1.05456,0.936804,1.26288,1.27315,4 +0.877578,-0.532099,-0.886993,0.520944,-0.192692,0.340514,1.20143,-0.277311,-0.161922,1.17966,0.711625,1.21705,0.487011,0.528353,0.496253,0.0601372,-1.14442,-0.445762,0.10819,-0.91042,-0.219918,-0.329901,-0.541082,0.30445,0.373697,0.0967723,-0.212157,0.0307088,-0.659117,-0.096433,-0.219665,0.112229,0.391576,1.00451,1.56568,1.36316,1.43569,0.959741,1.58374,1.08429,0.808682,1.48422,0.729939,1.02598,0.700893,1.43657,1.37859,1.46979,0.78747,1.48384,1.12408,1.2578,0.789297,0.967695,0.706082,1.05254,0.691337,1.111,1.25053,1.12257,4 +1.53911,-0.667775,-0.966738,-0.731315,-0.896612,0.969827,0.944053,-0.24832,-0.486697,-0.181409,-0.350172,-0.6929,0.227894,-0.846907,-0.435049,-0.405221,-0.0456746,-0.393031,0.0541627,0.246407,0.613627,-0.395779,-0.165282,0.525912,1.55495,1.51328,0.544863,0.979259,0.339611,1.31176,1.38351,0.23872,1.05165,0.2905,0.447504,0.158932,0.944882,0.972971,0.847886,0.19128,0.861637,0.215801,0.193985,0.925517,0.38054,0.723338,0.85205,0.235046,0.45013,0.817741,0.893055,0.692739,0.719214,0.868773,0.838598,0.814025,0.833148,0.844056,0.386971,0.293731,4 +1.70172,-1.55577,-0.482538,-0.515359,0.493604,0.392405,1.22639,-0.302195,0.587257,1.28454,0.418136,1.06461,0.413158,0.202418,0.587894,-1.05415,0.143718,0.738901,-0.902262,-0.386906,1.03326,1.77369,0.831602,1.67548,1.5703,1.2772,1.43283,1.10346,0.289573,1.24744,0.763878,0.572719,0.57408,1.19636,1.1288,1.14329,0.752128,0.724557,0.498872,0.638532,0.504517,1.0266,1.1068,1.07857,0.577314,0.439022,0.89882,1.03285,1.00199,0.749063,0.723128,1.07047,0.660576,0.302203,0.394507,0.871437,0.337938,0.755679,0.653062,0.437373,4 +-0.615452,0.445535,0.721176,-0.979488,-1.33991,-1.25008,-1.40797,0.151302,1.02396,0.481316,-0.528798,-0.536663,0.200905,0.294867,-0.731654,-0.852365,-0.184219,0.123483,0.523459,0.507565,-0.31461,-0.270397,0.514351,-0.417782,-0.149131,-0.303801,-0.595667,0.51458,-0.0826291,0.130541,-0.00581982,-0.119008,-0.397292,-0.483966,-0.18901,0.221443,1.25162,0.850467,0.752127,1.195,1.39255,0.726022,1.28895,0.944061,0.827053,1.10323,1.10816,0.551714,1.37646,0.689833,1.06146,1.35301,1.20129,1.02334,1.16604,0.49194,0.505958,0.600198,0.982814,0.64406,4 +-0.562298,1.08668,0.505217,-0.0534378,-0.202383,0.761447,-1.08518,-0.771628,0.61544,1.10921,1.10768,1.14063,0.914204,0.831598,-0.669206,0.156711,0.411793,0.632091,-0.904544,-0.523519,0.113464,0.342774,0.723587,1.14097,1.5733,1.37523,0.649848,0.315441,1.3883,0.642821,1.37543,1.05558,1.04983,0.421011,0.357214,0.595508,1.12812,0.270882,0.926242,0.296181,0.40386,1.04343,0.71836,0.507365,0.245817,0.913106,0.900119,0.595639,0.222121,0.456461,0.485809,0.209326,0.90014,0.289699,0.737889,0.218618,0.0913884,0.590539,0.40679,0.603684,4 +-0.0167697,-0.464802,-0.961771,-0.136128,0.0841968,-1.3396,0.95451,0.845677,0.799919,0.590098,-0.621547,0.921133,0.0850148,0.792897,-0.763045,0.243315,-1.01106,-0.329897,0.540329,-0.0961299,0.0772243,0.562795,-0.576679,0.617645,0.572151,0.781535,0.988485,0.972728,1.55297,1.33419,1.38306,0.889097,1.50804,0.61682,0.961292,1.07756,1.06476,1.32038,0.967666,0.413312,0.968731,0.514521,0.936842,1.05529,0.884168,0.427771,1.01656,0.562309,0.932875,0.646887,0.745147,0.677377,0.793991,1.069,0.615986,1.02878,0.999341,0.947276,0.991846,0.80205,4 +0.274032,-0.83823,0.677992,-0.632542,-1.41027,-0.596036,-1.12303,1.0507,0.168513,-0.727056,-0.341287,-0.078031,-0.726859,0.137836,0.399759,0.121054,0.226476,0.00665748,-0.914911,0.621349,-0.424426,0.89238,0.00899435,0.365638,-0.456416,-0.202377,0.373439,-0.347857,-0.683714,-0.0410853,0.368432,0.227361,-0.445294,-0.11655,-0.0133201,-0.0682712,0.198489,-0.187841,-0.342116,0.823618,1.25271,1.05484,0.913832,0.438403,0.577798,0.702356,0.909031,0.808181,0.861689,0.745005,0.915491,0.568804,1.00198,0.591469,0.294998,0.422363,0.951024,0.397832,0.951221,0.300303,4 +0.812638,1.17041,-0.00882545,-1.1764,0.212887,1.00575,1.314,-0.460615,-0.504652,-0.377471,0.251821,-0.180706,-0.0511538,-0.0206414,-0.499572,-1.01189,-1.07743,0.427975,0.00263439,0.883021,0.261983,0.138971,0.116425,-0.488891,0.539329,0.666826,1.16141,1.58334,2.06923,1.98727,1.63429,1.9931,1.985,1.37562,1.45655,1.57828,1.14154,1.61889,1.74978,1.36417,1.59307,1.55068,1.24372,1.20167,1.00393,1.28644,1.56258,1.06324,1.53766,1.34101,0.867731,1.22126,1.45057,0.926297,1.51217,0.887802,0.849029,0.912401,0.668593,1.09399,4 +-0.937666,-0.694184,0.499907,-0.919673,-1.38505,-1.22614,0.624061,0.458616,1.2837,0.867859,-0.504017,1.14793,0.0299586,0.838815,0.884763,0.474993,-0.199544,0.177733,-0.35347,-0.151706,-0.209225,2.10696,1.86666,1.15152,1.27939,0.542761,0.704846,0.354263,0.799733,1.06508,0.661506,1.38027,1.02214,0.692828,0.477689,0.793886,0.938097,0.987258,0.62468,0.951917,0.493612,0.368894,0.467919,0.998619,0.286404,0.562427,1.05772,0.728345,0.866616,0.969508,0.432889,0.895905,0.363552,0.724416,0.445094,0.503814,0.287511,0.608841,0.888816,0.785647,4 +-0.256077,-0.636845,0.0984594,0.514716,0.659298,0.29909,0.569076,-0.504769,-0.179933,-0.423207,-0.206359,1.31519,0.952347,-0.397522,0.178386,-0.269261,0.238936,-0.200079,0.858408,-0.732183,-0.685403,1.67375,1.96135,2.59606,1.39715,1.37795,2.2943,1.83978,1.94064,1.83442,1.56386,1.54661,1.33124,1.54545,0.944733,1.3561,1.07605,1.03752,1.58856,1.45254,1.11945,1.15462,0.92496,1.039,1.38251,0.783294,1.49977,1.22256,0.726679,0.980634,0.863089,0.77107,1.03171,1.22173,0.697626,0.892803,1.20217,1.02026,1.2859,1.34535,4 +-0.555175,-0.60957,-1.42779,-1.3618,0.53255,0.621717,0.77333,1.18142,-0.200653,0.865455,-0.114652,-0.892207,0.502937,-0.253033,0.863765,-0.573605,-0.0821745,-0.761572,-0.913437,-0.707408,0.439622,0.597779,-0.249854,-0.593652,-0.407345,-0.662767,0.0455565,0.316376,-0.183824,0.090884,0.255531,-0.0651134,0.532704,0.445445,0.180355,0.542031,1.23234,0.606993,0.583377,0.700049,1.13295,0.578272,0.701595,0.907104,1.21384,1.15815,1.02742,1.02019,0.398937,0.714664,0.432606,1.12209,0.774632,0.885305,0.87286,0.903304,0.945498,0.369942,0.669702,0.940416,4 +-1.29967,-1.63288,-1.43514,-0.506633,0.30067,0.13708,-1.39239,-0.4641,0.804338,0.796328,0.895639,0.534436,-0.853355,-1.02037,0.185368,-0.966606,-0.769577,-0.919407,-0.489678,0.325886,2.81251,1.17288,1.19199,1.78807,1.44962,1.95096,0.849898,1.6941,1.5531,1.52616,1.46081,1.81193,1.02397,0.943584,0.873323,0.721312,0.848187,1.01715,0.983486,1.58449,1.18567,0.626809,1.37792,1.02493,0.694041,0.866492,0.554756,0.852876,1.19898,0.823071,1.2182,1.31551,0.865923,1.1936,0.792664,1.05558,1.11329,1.25174,1.16821,0.941803,4 +0.480154,0.189671,0.293806,-0.00575369,-0.967505,0.738328,1.3506,-0.292323,1.30075,1.12554,0.575743,0.82437,0.481654,-0.715145,0.0186174,0.341975,0.651752,0.0903969,0.836633,-0.151083,-0.107849,-0.381268,0.520109,0.590782,1.97359,1.63558,0.960775,1.27902,1.22778,1.54495,0.826865,1.46546,0.80166,1.25667,1.50324,0.944421,1.30153,1.26364,0.963667,1.04031,1.09351,1.17504,0.879336,0.503272,1.20504,0.435194,0.958139,0.762386,0.850307,0.559381,0.478469,1.06326,1.14663,0.734034,0.795665,1.07587,0.976001,0.989355,1.05726,0.771668,4 +-0.422061,0.900041,-0.237784,-0.956869,-1.41425,-0.420226,0.962463,0.811481,0.128823,0.493681,1.04827,-0.88896,0.661725,0.9513,-0.918945,-0.434243,-0.937381,0.688961,0.496949,0.778144,-0.495463,0.367088,0.698242,1.09703,1.18566,1.56201,1.23444,0.723793,1.05235,1.27078,1.45617,0.42073,1.3989,1.29178,0.353112,0.899381,1.11349,0.356322,0.413398,0.723342,0.943034,0.925918,0.530167,0.384964,0.815296,0.911043,0.324459,0.387511,0.835928,0.972102,0.266112,0.9645,0.304007,0.872321,0.887223,0.962879,0.812459,0.820002,0.64148,0.247432,4 +-1.71915,-0.561875,-0.383076,-0.169046,0.584832,0.162849,-1.37724,0.0813396,0.129782,0.494677,0.201622,0.376904,-0.00436244,-0.512252,-1.04978,0.451,0.0550773,-0.105052,0.0778161,0.90996,-0.645574,0.213386,-0.256888,0.16726,0.646567,0.121043,0.125554,0.302516,-0.490751,1.68952,1.35445,1.91172,1.94485,1.54588,1.86334,1.9104,1.82957,1.7005,1.26317,1.3808,1.68768,1.65392,1.109,1.78641,1.13296,1.66573,1.64169,1.57159,1.16447,1.11719,1.01941,1.06872,1.27844,0.841791,0.991817,0.961446,1.02903,1.48447,1.31866,0.928725,4 +0.494658,-1.57078,-0.63826,-0.0640627,0.499595,0.107072,1.15076,-0.155689,0.770984,0.110916,1.24745,0.22459,0.731775,0.659224,-0.909642,-1.18886,0.484379,-0.498989,-0.666986,-0.0721023,2.12266,2.84681,1.78628,2.16228,1.41197,1.835,2.48633,1.56766,1.06256,1.88353,2.11224,0.974112,1.4128,1.86663,1.17136,1.24004,1.0472,1.03852,1.82235,1.54367,1.26515,1.27079,1.68052,0.915597,0.995005,0.925097,0.769653,1.39363,0.813728,1.06533,1.48399,1.29924,1.45913,1.40497,1.22324,0.699068,1.30849,1.3226,1.31246,0.816321,4 +1.26722,0.751401,-1.19046,-1.20159,0.103706,0.227392,-0.742288,0.863679,-0.277155,-0.221322,-0.196185,0.140381,0.765602,-1.11099,0.629924,-0.270766,-0.0119084,0.530397,0.65945,0.737205,-0.238841,0.305464,-0.396884,0.477091,0.600312,0.0777043,-0.601125,-0.410532,0.489956,0.366146,-0.527876,-0.144682,0.0477806,-0.10888,-0.102503,-0.109189,0.909562,1.61052,0.929078,1.64756,1.29161,1.49878,1.45163,1.36809,1.18758,0.973447,0.898784,1.44596,1.30301,1.04539,0.792744,0.890591,1.06297,1.35923,1.29953,0.787147,0.979707,1.17111,0.943388,1.0034,4 +-1.2834,-0.39308,-1.00903,-1.26516,-0.304162,-1.47323,1.00211,0.765671,1.2538,-0.248818,-0.469698,0.696603,-0.077338,-0.50279,-0.973514,-0.665032,-0.35585,-0.991766,-0.883963,-0.90293,0.158249,0.253532,-0.423984,0.574341,0.179365,0.481437,1.09222,1.06371,0.57609,0.44438,1.39997,1.32103,1.28688,0.435806,1.1062,0.87473,0.945568,1.31318,0.804507,0.694481,0.504436,0.846166,1.13582,0.888245,0.659503,1.12647,0.82942,0.954047,0.641399,0.857071,0.906828,0.73568,0.860578,0.833255,0.621455,0.262146,0.7772,0.709757,0.692725,0.452084,4 +0.837756,-1.03271,-0.548162,-0.196764,-0.605727,0.615071,-0.154834,0.76094,-0.169442,0.341997,0.510231,0.960338,-0.558051,0.309857,0.0180371,-0.967871,-0.665777,0.353383,0.38843,0.217692,-0.283176,-0.315844,0.441109,0.586965,-0.389742,0.109968,-0.178543,-0.233182,0.377285,0.407876,0.174947,0.287889,-0.351749,-0.0794661,0.0942998,-0.0802408,-0.335719,0.110365,1.28628,0.99002,1.32879,1.28305,0.587688,0.506101,0.391359,0.615345,0.968862,1.0037,0.387643,0.430744,0.477266,1.13813,0.405309,1.11886,0.951688,0.559621,0.7292,0.914157,0.707205,0.671565,4 +1.44339,-1.63658,-0.75489,-0.822662,-1.03021,-1.03536,-0.160259,0.727991,-0.314702,0.283278,1.21871,-0.16665,0.0118929,0.630412,0.418558,-0.089709,-0.321355,0.00506052,-0.556308,0.0849723,0.323709,0.590909,0.312097,0.411768,0.287837,0.326225,-0.0716589,0.139372,0.567036,-0.391617,1.71077,2.23247,1.86925,1.98587,1.53294,1.65418,1.56184,1.84657,1.4531,1.64275,1.89268,1.97742,1.78448,1.19704,1.86171,1.17073,1.31428,1.53586,1.78825,1.77445,1.82002,1.59476,1.45339,1.3903,1.15945,1.06861,0.930902,1.3112,0.970386,1.0555,4 +-0.670723,0.428241,-0.192487,-0.59899,-0.744767,-0.313044,0.207526,0.840774,-0.527289,0.918558,0.356386,-0.416272,-0.758876,0.834993,-0.391013,0.787752,-0.288748,-0.612745,-0.507186,0.578184,0.0760228,-0.374384,1.07178,1.18924,1.33069,0.554472,0.535767,1.07264,0.842263,0.64411,0.380619,1.11253,0.714283,0.967861,0.270884,0.711285,0.805989,1.10851,0.749251,0.653278,0.181407,0.763724,0.330302,0.25597,0.682927,0.911653,0.187182,0.808349,0.93017,0.606907,0.436987,0.896358,0.246359,0.504429,0.30402,0.722716,0.396998,0.336499,0.553398,0.827552,4 +-0.835134,-1.21883,-0.103873,0.0317503,0.49441,-1.31632,0.0518501,-0.476574,-0.0763754,-0.378107,0.374738,0.669447,0.0785602,-0.590953,0.649885,-0.153892,-0.122701,-0.00712597,-0.162241,-0.687227,3.5331,2.77145,1.9884,2.83771,3.03882,2.48824,2.77804,1.48516,2.54509,2.14497,1.89833,2.17466,1.65333,1.26195,2.2077,1.9935,1.51915,1.82874,1.43884,1.74012,1.23293,1.14848,1.67178,1.78788,1.64137,1.60132,1.45296,1.66677,1.26766,1.22871,1.00442,1.67239,1.0523,1.43067,1.49325,1.31867,1.00348,1.28682,1.51543,1.33481,4 +-0.795855,-0.755396,0.50004,0.0220834,-0.388979,0.314723,1.3003,0.667341,0.00302282,0.319791,0.542148,1.17798,-0.520183,-0.0513648,0.843876,-0.161434,-0.0594263,0.622742,0.217455,-0.316847,-0.0284312,-0.472782,0.0394189,0.603137,-0.048975,0.586144,0.00464263,-0.439475,-0.711446,0.216705,-0.247343,-0.39991,0.192369,-0.423936,-0.0637855,-0.193838,1.6523,1.62225,1.82518,2.03898,1.1237,1.84041,1.51515,1.25898,1.25265,1.3345,1.10843,1.83286,1.36857,1.61647,1.528,1.71203,1.59708,1.50768,1.55164,1.31451,1.32147,1.64055,0.874715,0.937506,4 +-0.841857,1.15256,0.642839,0.0225796,0.745268,-0.53814,1.26866,0.331617,0.283408,-0.348034,0.679708,0.718316,-0.938837,0.977385,-0.244539,0.506581,-1.00765,-0.489081,-0.826227,-0.38879,0.91933,0.197924,0.411655,0.331093,2.65956,2.02355,1.973,2.10447,2.3555,1.87034,1.32436,1.73492,2.06745,1.25465,1.35547,1.3243,1.72126,1.45427,1.27875,1.69732,1.89053,1.44372,1.55929,0.940688,1.40177,0.860638,0.817809,1.05716,0.908869,1.07269,1.04273,1.04306,1.19998,1.57929,1.13812,1.28827,0.978573,1.18437,1.34474,1.38357,4 +0.257554,-0.105781,-1.3273,-0.268008,-0.937169,-0.78408,-0.941682,-0.0787586,0.579116,0.292552,0.600719,-0.554717,0.619029,0.646015,0.684564,0.380608,0.39549,0.376221,0.0619696,-0.0256822,0.724269,0.0302204,-0.238618,-0.691086,0.538933,0.266286,1.76466,2.2739,2.28237,1.66156,1.62174,2.17863,1.15276,1.34418,1.47186,1.23501,1.90724,1.68842,1.07892,1.85154,1.24979,1.14446,1.41672,1.22239,0.983444,1.33597,1.51357,1.09749,1.62432,1.37797,1.17312,1.56189,1.4147,1.08696,1.41241,1.19793,0.803403,0.754008,0.908071,0.777818,4 +1.54678,-0.222625,-0.818496,-0.311996,-0.311142,-0.724306,1.14507,0.868668,0.628827,-0.0341385,0.484743,-0.176859,-1.06144,0.265776,-0.0836803,-0.674198,0.422678,-0.522044,-0.303649,0.712165,0.258288,-0.0113855,2.01139,1.49238,1.70328,1.75625,0.60001,1.18965,1.45258,0.563078,0.939516,0.957794,1.32377,1.40658,0.601186,0.552032,0.777538,0.694516,0.916684,0.643612,0.402394,0.965191,1.12022,0.348957,0.795225,0.921342,0.608959,0.487018,0.489429,0.490039,0.625429,0.764354,0.868962,0.653827,0.346859,0.741774,0.425127,0.531907,0.414622,0.559653,4 +-1.71601,-1.48282,0.0433229,-0.39253,-0.424371,0.228364,-1.16975,0.24647,-0.17779,-0.32229,1.27587,-0.0869078,-0.279662,-0.455982,0.426366,-0.74329,-0.527663,0.762359,0.780216,0.82338,0.635584,1.90243,2.93534,2.68954,1.79289,1.89946,1.45339,1.30303,1.27745,1.15545,1.39783,1.9202,1.62183,1.19202,1.38116,1.4253,1.02246,1.70015,1.30771,1.62531,1.45321,1.03341,0.990187,1.61766,1.36166,1.12837,0.748495,1.00357,1.55445,1.4971,0.775007,1.03411,0.833298,0.798561,1.23066,1.35134,1.3209,1.34885,1.08216,0.70612,4 +-1.7199,1.09356,0.553026,-0.409691,-0.357434,0.0763348,-1.4041,1.38344,-0.78075,1.08183,-0.382919,-0.368584,-0.611023,-0.914569,-1.09254,-0.594076,0.0187596,0.680077,0.853116,-0.227993,-0.835348,0.435142,-0.212103,0.123736,0.498706,0.0757394,-0.0531699,0.0902103,0.553718,0.470263,-0.25856,0.477737,0.261241,0.0778261,0.00853702,0.425499,-0.285678,1.17297,1.03758,1.32603,0.834119,1.49198,1.00661,1.27927,0.870222,1.25699,0.754326,1.34997,0.827061,1.0854,0.687224,1.0714,0.976835,0.712521,1.2005,0.873573,0.614094,0.58863,0.836924,1.17775,4 +1.01719,-1.21192,-0.739874,-0.158062,-1.12633,0.292929,-0.271112,0.774446,0.486388,0.989574,0.961275,0.515481,0.723711,-1.14995,-1.09182,0.363968,-0.682941,-0.0864932,0.16633,-0.40131,0.711518,-0.0233221,-0.407921,-0.668309,-0.0524022,0.440611,0.501329,0.590688,-0.0431027,-0.202059,1.53268,1.84904,0.830204,1.55548,1.07105,1.21625,1.21152,1.59906,0.932552,1.20747,0.899267,0.706708,0.6244,1.31613,0.722545,1.19119,1.18141,0.908238,0.630061,0.88839,0.809433,0.616752,0.730846,0.654144,1.00796,0.523124,1.2583,0.96237,1.00541,1.12423,4 +1.37994,-0.174497,0.193449,-0.553068,-1.02757,-0.309136,-0.241828,0.30484,-0.683679,-0.485893,-0.550259,-0.295242,0.0857462,-0.022404,-1.14148,-0.865055,0.0585401,0.682248,0.865936,0.462219,0.0111126,-0.138392,0.625691,0.105766,-0.482108,1.52022,0.814281,1.24254,0.82854,1.01065,0.78576,0.510471,0.739071,0.900909,1.13739,0.383693,1.24633,0.60157,0.957001,0.680653,0.757005,0.863123,0.596903,0.789401,0.86328,0.802272,0.300761,0.649044,0.432966,0.944756,0.916645,0.516295,0.433572,0.475318,0.667504,0.587992,0.677533,0.529741,0.388586,0.651325,4 +-0.299676,0.774275,-0.805421,-0.0435143,0.509285,-0.790549,0.123969,0.183455,-0.750029,-0.0992809,0.246769,0.531621,-0.95118,0.492453,0.473515,0.430597,-0.936039,0.466395,-0.0472953,0.450089,0.70479,-0.267354,-0.155947,0.303643,-0.365452,0.270718,-0.63864,0.215226,0.227872,-0.443886,-0.550424,-0.287277,-0.0280126,0.30268,-0.376607,0.000954135,-0.380297,0.358105,0.30291,1.30255,1.55673,1.95119,1.24465,1.71737,1.46125,1.70078,1.73467,1.04218,1.69468,1.17102,1.47959,1.36073,1.08278,1.09042,1.29239,1.70353,1.46868,1.5539,1.57374,1.61695,4 +-1.63513,-0.115835,0.446864,-0.337438,0.123491,0.979145,-1.09915,1.39931,-0.819274,-0.573242,0.683029,0.918919,-0.715906,0.189747,-0.157805,-0.68357,0.237726,-0.700717,0.610824,0.119449,0.640706,0.675787,0.8003,0.608886,0.537747,-0.228288,0.507759,-0.307801,0.144029,-0.118053,0.151137,0.535765,-0.499208,-0.135522,0.312189,1.06339,0.688026,0.665733,0.826694,0.944727,1.17089,1.22286,1.21354,0.999125,0.672343,0.768224,1.06291,1.37126,1.30694,1.17224,0.658333,1.15953,0.561316,0.571078,0.755489,1.15573,1.07306,0.838965,1.03877,1.00576,4 +1.60634,1.03747,-1.03642,-1.06594,-0.0704507,0.534475,0.187692,1.33045,-0.829352,-0.582516,0.424477,-0.581742,0.132483,-0.354405,-0.738636,0.633887,0.695326,-0.589969,0.580047,0.773285,0.102275,0.186897,-0.352883,-0.128857,0.448017,0.511692,-0.519492,0.417411,-0.418933,-0.260486,-0.551029,0.0829084,0.244223,-0.434896,-0.353155,1.33184,1.17783,1.32708,1.3748,1.39508,1.24846,0.982225,1.06872,0.552249,0.500288,1.02135,0.978489,0.91601,1.11271,1.06456,0.957886,0.747137,1.09316,0.862649,0.868147,0.490667,0.598206,0.412695,0.892919,0.75146,4 +-0.448524,0.340091,0.0657429,-0.464784,-0.324936,0.963666,-0.463314,0.653448,1.30351,0.51077,0.101473,0.841598,0.457335,-0.897129,-0.350249,0.480894,-0.744758,0.441526,-0.289913,0.337098,-0.359455,0.456068,0.802547,-0.110215,0.45118,-0.641734,-0.0703546,-0.711537,1.74089,0.838089,0.604232,0.730019,1.63347,0.555718,0.649755,0.714809,1.02039,1.35887,0.564826,0.761031,1.34804,0.899005,0.485991,1.26548,1.21455,0.505187,0.803044,1.02506,0.952057,0.45451,0.539315,0.780407,0.757974,1.14583,1.01915,0.741476,0.815624,0.852679,0.633026,0.916754,4 +-0.100077,0.270053,0.706711,0.360474,0.7532,-1.1132,-0.446818,0.260213,-0.231581,0.632416,-0.125604,0.146575,0.600689,0.461303,-0.193452,0.777884,-0.204531,-0.185225,-0.644372,-0.671328,-0.291677,-0.676171,0.272098,0.514596,-0.148112,-0.331064,-0.51075,0.477709,1.01527,0.983329,0.603231,0.391837,1.02871,1.14602,0.884885,0.584233,0.800492,0.639258,1.13083,0.693411,0.62492,0.73268,0.955474,0.606164,0.890996,0.425149,0.518884,0.997033,0.560155,1.02461,0.43715,0.920757,0.58447,0.785963,0.247836,0.809561,0.661936,0.906122,0.850423,0.789788,4 +-0.591307,-1.52787,0.427299,-0.206756,-0.244828,1.03501,0.696449,0.0324327,0.92743,1.28341,1.38224,0.775444,0.234824,0.0649424,-1.10583,-0.941363,-0.295127,-0.918151,-0.0471246,-0.753968,0.37704,-0.30103,0.530321,-0.30715,0.648364,0.668713,0.123586,0.262599,1.15307,1.29569,0.829044,0.999591,1.51669,1.07848,0.554672,1.21275,1.11167,0.858623,0.537719,0.683162,0.926988,1.31284,0.944043,1.20818,1.22991,0.436734,0.403464,0.508083,0.446811,0.478005,1.13166,0.883206,0.751659,0.815661,1.15147,0.989638,1.1116,0.423074,0.645044,0.918336,4 +-0.0676064,-1.1599,-0.736448,-0.140029,-0.255929,0.742391,-1.51291,-0.378244,0.0155257,-0.561443,-0.31481,1.16338,0.48884,-0.199471,-0.446989,-0.367289,0.265047,0.0758228,0.113374,-0.276656,0.380344,-0.656346,0.536771,0.732241,-0.321102,0.503743,0.38932,-0.110705,0.581724,0.517043,-0.259477,-0.188103,2.14727,1.90677,2.02293,2.09074,1.52897,1.75315,1.19549,1.58828,1.26224,1.67879,1.82789,1.05154,0.908621,1.69016,1.60035,1.01349,1.40051,1.11269,0.95657,1.57579,1.0609,0.899444,1.10634,0.890701,1.12309,1.13549,1.46614,0.915374,4 +-0.547079,-0.326143,0.0521158,-0.380229,-0.311014,0.949159,-1.1463,0.802706,1.0136,0.179785,0.834278,0.121427,0.203319,-0.137542,-1.05791,0.35812,0.0116352,-1.00389,0.343916,-0.3749,-0.0440956,-0.330961,0.519085,-0.537675,-0.668555,1.79731,1.98773,2.05563,1.3601,2.02629,1.17818,1.44853,1.69937,1.60294,1.48687,1.07835,1.70041,1.26171,1.5054,1.0362,1.64955,0.668657,0.971827,1.27097,1.18101,0.979177,1.10084,0.720492,1.47451,1.405,1.15648,0.767158,0.857635,1.28767,1.03333,0.976245,1.26171,0.787306,0.642884,1.1662,4 +-0.985785,-0.308562,0.196019,-0.973705,-0.89903,-0.414242,0.636604,-0.169346,0.871647,1.02332,1.1774,0.61825,-0.588661,-0.270733,-0.39082,-0.68658,-0.648446,-0.676173,0.465722,0.765577,-0.0114452,0.734795,0.739065,1.50852,1.92925,1.31542,1.06213,0.519369,1.51932,1.09616,0.648684,1.20257,1.17043,1.09943,0.980678,1.36826,0.583362,0.867337,0.586374,1.08116,0.723836,0.798042,0.480485,0.325599,1.17594,0.301025,0.345235,0.947852,0.992087,0.371199,1.15288,0.459637,1.02426,0.90888,1.0434,0.488683,0.518489,0.717172,0.564211,0.31817,4 +0.920634,-0.604519,0.543662,-0.0625571,0.601979,-0.879095,1.34773,0.276172,0.135309,0.571808,-0.722014,0.00826048,0.423032,0.364625,0.280104,-0.590245,0.016324,-0.349929,0.764881,0.457298,0.775062,-0.589669,0.8003,0.0452143,0.640012,-0.630827,-0.703306,-0.18012,0.162345,0.0632311,-0.0395859,-0.505619,-0.233798,1.56398,1.16581,1.96977,1.77027,1.59443,1.48541,0.988742,1.27558,1.53128,0.954867,1.4761,1.34732,1.34708,0.976237,1.22711,1.4026,1.13299,1.26559,0.913303,0.935085,0.945972,1.15266,1.04671,1.386,1.43456,1.13197,0.890397,4 +0.889022,-1.02937,0.528912,0.490472,-0.0184619,0.326978,-0.832621,0.243395,-0.342678,0.930357,0.308113,-0.76292,1.09005,-0.961989,-1.02531,0.257458,0.00330135,0.755351,0.245035,-0.133518,-0.387029,2.80454,2.02017,1.20631,1.91462,2.12003,1.07371,1.36491,1.12844,1.83013,1.78135,0.892822,1.01333,1.74646,1.18296,1.22254,1.59176,1.14378,1.66349,1.51561,0.876008,0.854894,1.05647,1.4185,0.865271,1.21207,0.70936,0.833681,1.23743,1.44112,1.44866,0.736406,0.724712,1.34431,0.691044,1.08203,0.647301,1.33431,0.672048,1.07494,4 +1.10501,-0.743635,0.113704,-1.007,-0.512081,-0.87172,1.36699,-0.987086,0.454632,0.0170754,0.943647,0.875097,-0.382259,-0.147487,-0.602889,-0.935771,-0.0400745,-0.249677,0.415451,0.450369,0.113194,0.151665,0.737709,0.278664,-0.0129775,0.511491,-0.301307,-0.680009,-0.632798,0.392489,-0.484571,-0.0189787,-0.484506,0.273395,0.467022,0.353953,-0.0328373,-0.0901302,0.115189,1.42284,0.929441,0.881978,0.820859,1.31565,0.778978,0.815019,1.17847,0.696532,1.20439,1.2974,1.10801,0.745478,0.806842,0.940714,1.01229,1.12701,0.713952,1.26734,0.558154,1.24627,4 +-0.176031,1.19302,0.554491,-0.497771,0.610588,0.566824,0.47543,-0.0868237,1.36454,0.303905,-0.119845,0.64139,-1.05654,-0.00906453,0.476293,-0.915608,-1.10147,-0.702019,-0.906717,-0.876099,0.171436,0.0500459,0.410923,-0.274977,-0.655398,0.0792226,-0.191105,-0.684544,1.95957,2.07229,2.24763,1.80003,1.15207,2.04261,1.95928,1.55319,1.2419,1.45312,1.0522,1.43646,1.5658,0.994764,1.13402,0.887019,1.07945,0.797385,1.40559,1.33642,1.55206,1.50102,1.15271,1.50144,1.24016,0.954164,0.94949,0.845461,0.918477,1.05522,0.871927,1.26783,4 +1.42554,-0.645431,0.103217,0.25058,-1.15055,-0.23852,-1.04714,0.932307,0.361565,0.872136,-0.411462,0.147062,-0.505866,0.799372,0.252335,-0.0555567,-0.465615,0.609144,0.548136,-0.122431,0.842675,-0.341424,0.792202,2.39529,1.76925,2.60213,1.88099,2.2792,1.73019,2.06836,1.9167,1.49101,1.34184,1.31414,2.10951,2.11863,1.90683,1.92273,1.35701,1.91343,1.56722,1.65446,1.88341,1.16784,1.25084,1.71086,1.29719,1.693,1.63361,1.67669,1.43057,1.18703,1.76351,1.14623,1.44675,1.42683,0.999724,1.41087,0.966963,0.973566,4 +-1.67653,-1.19771,-0.603584,-1.27435,-0.819251,-0.295843,-0.647366,-0.861506,0.73763,-0.0283336,-0.0957706,0.0105313,0.150877,0.655959,0.572383,0.591115,-0.819033,0.660386,0.650091,0.914134,0.491466,0.219512,-0.386725,-0.358172,-0.357363,0.248412,-0.450375,1.62228,1.70192,0.781044,1.20553,1.66323,0.70945,1.51947,1.18954,0.588873,1.1137,1.1704,1.07761,0.713125,0.741218,0.71528,0.507204,1.27125,0.962919,1.2017,0.984406,1.15998,0.563883,0.708383,0.726653,0.826116,0.499598,0.716887,0.809164,0.768925,0.823519,0.90117,0.899585,0.967253,4 +-0.847121,-0.0351888,0.66387,0.102943,-0.396251,0.417069,0.362294,0.428033,0.833254,-0.15958,-0.146181,-0.470096,0.746201,0.546609,0.320657,0.77053,0.675063,-0.995921,-0.468307,-0.725487,0.516457,-0.326514,-0.0355388,0.452968,-0.33668,0.338193,-0.267201,-0.234498,0.588937,-0.449154,-0.0604043,-0.0454011,-0.365087,-0.234476,1.71383,0.990849,0.967632,0.926052,0.890886,0.89246,0.832751,1.00414,1.12026,1.49414,0.790592,0.761302,1.09294,0.802176,1.34432,1.22179,1.26195,1.05586,0.875685,1.19027,0.961621,1.09801,1.22678,1.08371,0.967463,1.19495,4 +0.269827,-0.759268,-0.834083,-0.139139,0.649058,-0.732101,1.14102,-0.863012,0.944972,-0.350679,-0.212859,0.535336,-0.713419,0.0931426,-0.272378,0.60324,0.241322,0.346949,0.636759,-0.509099,-0.294425,-0.417972,0.754064,0.693965,0.661618,0.370334,-0.719233,0.622435,0.147854,-0.180209,0.500619,0.238681,-0.390189,0.39546,0.303338,-0.494099,0.374506,0.111648,0.871196,0.336266,0.76447,0.713024,0.373562,0.902427,0.429046,0.170974,0.226136,0.647592,1.04048,0.945442,0.270599,0.524823,0.617067,0.53727,0.62246,0.865633,0.80742,0.915966,0.902296,0.895594,4 +-1.60381,0.958872,-0.441505,0.115313,-1.04804,-0.830538,0.500394,1.04991,1.40534,-0.211996,-0.32993,0.965442,-0.7985,-0.593606,-0.972864,-0.780093,-1.16846,-0.675429,-0.905056,0.0865139,0.111977,3.39771,2.05795,2.66819,2.69524,2.73795,2.74444,2.513,2.6564,2.17109,1.46716,1.42691,2.31515,1.75906,1.95126,1.59605,1.43082,1.35623,1.2791,1.40472,1.63159,1.41045,1.63349,1.6663,1.4955,1.78546,1.53294,1.58853,1.02803,1.62864,1.57494,1.56633,1.55009,1.47438,1.41436,1.63596,1.56066,1.03252,0.973879,1.42063,4 +-1.25607,-1.13279,0.17632,-1.20781,-1.01937,-0.960199,-1.15251,1.05679,0.0524517,0.652544,0.325317,1.13636,0.742179,0.146482,-0.83047,0.325848,-0.380255,-0.462383,0.564433,0.386897,0.525829,-0.336427,-0.2204,0.541863,0.726087,0.144208,-0.584695,-0.130197,-0.136328,1.3557,2.16582,1.98456,1.9421,1.26587,1.35331,0.894978,1.04231,1.36361,0.948178,1.1071,0.960975,0.736383,1.59715,1.58645,1.31886,1.49249,0.77158,1.3336,0.903971,1.00833,1.26538,0.803886,0.720543,1.34692,0.896994,1.14776,1.1528,0.944034,0.917,0.704293,4 +-1.49392,0.30423,0.0182955,-1.04088,0.58388,-0.620039,-1.09041,0.324347,1.2373,-0.668165,0.862556,0.773642,0.467007,-0.665683,-0.857464,-1.08374,0.284333,-0.761463,0.447935,0.181846,0.523185,0.745313,-0.0316294,-0.417746,-0.641317,0.0777936,0.311222,-0.0160292,-0.104727,-0.270144,-0.469455,0.304713,-0.0482527,0.0324894,-0.371991,-0.0014978,0.0926386,0.126335,1.3138,1.25172,1.31274,1.26918,1.69132,1.59687,1.17918,0.961572,1.06462,0.927968,1.31165,1.15084,1.64346,0.847413,0.810068,1.08769,1.38506,1.40787,0.729913,0.778551,1.30151,1.14019,4 +0.161631,-1.58254,0.599997,-0.360176,0.0729674,0.178593,0.756295,-0.930544,-0.194016,1.20267,0.919714,-0.587879,1.03319,-0.137283,-0.433571,0.681857,-0.756853,-0.527579,0.0861972,-0.832825,0.0127647,-0.26321,-0.471988,0.376195,-0.622228,-0.259402,-0.598779,0.49585,0.299602,-0.099743,0.225716,0.405598,-0.494136,0.26298,-0.0518425,1.74071,1.10431,1.34621,1.60199,1.61295,1.28025,1.14502,1.37776,0.872553,1.55578,1.17596,1.54083,0.925013,1.59084,1.27449,1.59504,1.49838,1.13216,0.945979,1.30434,1.31104,0.888647,1.47642,1.05931,1.47286,4 +-1.05608,0.233999,0.391156,0.513895,-0.601019,-0.483312,0.858507,0.803739,-0.736135,-0.599484,-0.729874,-0.586621,-0.0739918,0.913211,0.280561,0.362207,0.402117,-0.806504,-0.205621,0.566801,-0.830888,0.15647,-0.220546,-0.579719,0.47728,0.316713,-0.479459,0.569292,-0.221706,-0.365923,0.405566,0.502059,-0.391801,1.54265,1.55498,1.04838,0.889293,0.672548,1.26331,0.85053,1.20189,0.934972,1.22642,0.797121,1.00348,0.531138,1.06116,1.35906,1.27336,0.51014,1.33408,1.27657,1.03639,0.682768,0.805085,1.00003,0.958741,1.13385,0.478956,0.896528,4 +0.704871,-0.139766,-0.937029,0.297648,-0.400355,-1.34543,-1.21354,-0.18838,-0.392239,1.31046,1.24602,0.713962,-0.596724,-0.231846,-0.819232,0.240185,-0.763977,-0.997518,0.382283,0.0479265,0.537198,0.428313,0.67666,-0.456915,0.0132538,-0.350947,-0.605324,0.473266,0.451153,0.572045,-0.352238,-0.000511269,-0.296358,-0.560731,0.356789,0.0949361,0.220605,0.076626,0.505675,1.71156,1.08968,0.898017,0.816341,1.16768,1.51764,0.696407,1.49204,0.893662,0.85704,0.843222,1.17836,1.4836,1.48587,1.25354,1.40357,1.10259,1.16648,0.769749,1.1495,0.711409,4 +-0.575344,-0.709986,-0.997627,-0.528191,-1.18519,0.645653,0.852395,0.0326047,-0.135261,0.870762,0.273087,0.255743,-0.750885,0.813954,-0.491306,-0.0699906,0.281284,-0.686189,-0.715612,-0.645478,-0.00925253,2.01043,2.69178,2.0913,1.89619,1.23181,2.24797,1.79627,2.20507,1.86351,1.93758,1.96206,1.57258,1.04391,1.86828,1.1175,0.965794,1.78787,0.954949,1.11508,1.72227,1.69583,1.52379,1.03348,1.59752,1.5103,0.957691,1.0984,1.37323,1.07774,0.872141,0.840502,1.02539,0.91259,1.07481,1.17791,0.861296,0.81684,0.769564,1.04048,4 +1.43458,1.20257,-0.17865,-0.166292,-1.35869,-1.1955,-0.285178,0.809588,0.78313,0.12366,0.669464,0.531414,0.629305,0.865661,0.689664,0.783733,-0.569399,0.380082,-0.3876,0.307247,0.443272,0.198282,0.542475,1.48842,1.83486,1.72509,1.90384,2.25694,1.80514,2.32853,1.63368,1.08946,1.73219,1.34519,1.64025,1.85822,0.969572,1.46476,1.67098,0.943785,1.01031,1.08944,1.73194,1.09844,1.32462,1.19253,1.22458,1.08688,0.919468,1.54617,1.06438,0.870369,0.7953,1.1389,0.944621,1.36617,1.29347,0.746072,1.21589,1.30666,4 +-0.0424026,-0.908101,0.701611,-0.54773,-1.40362,0.952714,0.532305,1.40421,-0.0546974,-0.585281,0.419549,1.25228,-0.330019,-0.293979,0.327762,-0.58101,0.648653,0.425866,-0.0339476,0.566224,0.409345,0.736406,1.75536,0.843804,1.9655,0.659469,0.514967,1.59689,1.02468,0.90609,0.932229,1.03571,1.10965,1.00859,0.671427,1.30616,0.849043,0.63296,0.923293,0.936947,0.724719,1.1547,0.754014,1.01827,0.953047,0.939311,0.739099,0.505971,1.19983,1.09824,0.49869,0.797024,1.01258,0.668345,0.944446,0.613225,0.969583,0.445946,0.723575,0.867513,4 +-1.2795,-1.4421,0.693788,-1.13392,-0.000637678,-1.56794,0.65337,-1.0269,-0.141334,0.657593,0.388091,1.09176,-0.768549,-0.0440736,-1.1684,-1.153,-0.210314,-0.558324,-0.247914,0.391647,0.72553,0.792179,-0.514021,-0.52636,-0.583894,-0.226078,0.246224,0.618407,0.252304,0.364061,0.567797,-0.0892212,0.0869928,-0.298618,0.253005,1.04686,1.50686,1.20871,1.17092,0.940294,1.51691,1.09726,1.4379,1.34304,0.937398,1.06405,1.5217,1.14759,1.63556,0.92657,1.3628,0.891853,1.18535,1.41324,1.21621,1.32013,1.3554,1.16051,0.798498,0.82496,4 +0.249973,1.13993,-1.026,0.254789,0.256137,-1.52941,-0.787896,1.18583,0.0592954,1.25976,0.171454,0.315704,-0.816017,0.459263,0.593697,-1.15086,0.627728,0.758592,0.255868,0.699816,0.49049,1.39311,1.7158,1.58426,0.763103,0.460416,1.24151,0.246465,0.715934,1.38074,0.24176,0.295153,0.708249,0.295056,0.21342,1.20092,0.932355,0.444869,0.369171,0.2159,1.17961,0.874114,0.384402,0.375658,0.306459,0.172746,0.850311,0.465954,0.226901,0.22384,0.926355,0.8491,0.680392,0.355997,0.788436,0.714259,0.718015,0.357608,0.263783,0.234237,4 +-1.49289,0.453231,0.0359765,0.055002,-0.274413,-0.823561,1.36115,0.610649,0.473264,0.660736,-0.531006,-1.58395e-05,-0.79903,-0.369192,0.394993,0.199055,-0.0694667,0.70428,0.242753,-0.627866,-0.122027,0.491204,-0.531946,0.458754,-0.317135,2.26676,1.77611,1.37488,2.1003,1.7357,1.92121,1.65384,1.79937,1.51343,1.55927,1.75878,1.6833,1.64044,1.61478,1.68294,0.812123,1.57448,0.754582,0.904758,1.31356,1.07726,1.28714,1.20087,1.21958,1.01584,0.841841,1.44138,1.18785,1.40666,0.807189,1.20863,0.776488,1.26487,1.16102,0.906495,4 +-0.345906,-0.64976,0.245293,-1.03535,-1.18143,0.598201,0.159562,1.4474,-0.371388,-0.13612,1.21425,0.228306,-0.0722365,-0.086782,0.84472,-0.308134,0.0604951,-0.546014,0.103285,-0.616888,-0.017738,-0.60524,-0.14862,0.686735,-0.306494,-0.425689,0.0968589,0.331932,-0.0156556,-0.485009,-0.53951,-0.536398,-0.531346,-0.296003,0.973457,1.32202,1.32659,1.24955,1.20955,0.915331,1.24135,0.938565,0.989891,0.587704,0.510955,0.981857,0.87126,0.773839,0.961538,1.1122,0.374909,0.854239,0.810131,0.794932,0.299098,0.933287,0.610737,0.925038,0.600855,0.278825,4 +1.37773,0.0169074,0.641849,0.412624,0.527915,-1.11174,-0.237311,0.535998,0.0191168,1.06633,0.38666,0.53072,-0.955952,-1.17557,0.0364497,0.617058,-1.06721,-0.0523989,-0.358824,0.0509475,0.578108,-0.455586,-0.690306,1.98205,1.89557,1.04761,1.90274,1.06055,1.86413,1.74042,1.51518,0.963065,1.47139,1.5289,0.808328,1.17329,1.06097,0.864654,0.801728,1.36718,1.00103,1.07472,0.943623,1.02096,0.941335,0.714332,1.4009,1.04896,1.2094,0.998541,0.761709,0.993272,0.899642,1.27342,0.803965,0.859272,0.962098,0.934625,1.16697,0.596367,4 +0.564205,-1.37894,0.132908,-0.814929,-0.818848,0.475761,0.40584,-1.00304,0.792662,1.27432,0.215558,0.0239123,0.0922008,0.935345,-0.626789,-0.559975,-0.908668,0.300032,0.752511,0.793762,-0.750088,0.944449,0.166237,0.560237,-0.0127977,-0.191191,0.441801,-0.316202,-0.380458,-0.0725091,-0.382094,0.0520515,-0.244657,-0.534764,-0.32592,0.00666652,-0.378832,-0.0861231,1.39075,1.63974,1.21248,1.15262,1.67831,0.905946,1.60103,1.32524,1.03071,1.45625,0.797302,1.26688,1.12429,1.36333,1.03178,1.45198,0.709554,0.768129,1.19257,0.664192,0.668567,0.762893,4 +0.0520615,-0.256706,-1.23686,-0.959059,-0.135171,-1.52042,1.22602,0.0599186,0.996676,0.45035,0.352041,-0.534261,0.654685,0.12932,-0.582736,0.795721,-0.394968,-0.94485,-0.626415,0.238746,0.364184,-0.0770573,0.00548382,0.420759,0.29571,0.272649,-0.00771389,-0.540118,-0.454239,-0.485354,-0.618676,0.112083,1.35915,0.977249,0.526923,0.476945,1.44551,1.30582,1.3478,1.18073,0.639031,0.463137,1.0196,0.904581,0.498955,1.16356,0.377493,0.845419,1.16387,0.521909,1.2266,0.474421,0.668926,0.768457,0.552573,0.826045,0.511597,0.55837,0.890611,0.804934,4 +-0.767047,-1.43945,-1.11435,-1.00632,-0.585137,-1.4875,1.28435,0.0590584,1.30434,0.972159,0.489212,-0.694964,0.829471,-1.06772,0.693216,0.602915,-0.31375,0.702341,0.276495,-0.303191,-0.157546,0.508799,0.678668,-0.374209,0.227813,-0.202544,0.0440462,0.132667,-0.222747,-0.0773588,-0.284549,0.257537,0.242049,-0.155751,2.12206,1.35719,1.69016,2.01759,1.7337,1.67907,1.79773,1.70204,1.69128,1.30112,1.1862,1.13318,1.31577,1.36492,1.34718,1.20535,1.28064,1.38402,1.34602,1.13186,0.966186,0.944073,0.975691,1.13368,1.23312,1.12123,4 +1.68556,-0.254517,0.257607,-0.353007,-0.773912,-1.41322,-0.214606,0.380653,0.916037,0.746694,1.04366,-0.170647,0.417583,-0.23667,-0.503634,0.794148,0.450497,-0.581147,-0.969063,0.122765,0.810851,0.585856,0.639267,0.358495,0.126028,-0.390143,-0.338617,0.379143,-0.647366,-0.568009,0.222266,-0.249603,-0.329059,0.147975,0.122642,-0.392445,0.0891574,-0.389262,1.07042,1.91559,1.43282,1.20351,1.30156,0.897912,1.07651,1.52652,1.59491,0.946165,1.13628,0.87327,1.35338,0.924669,1.65282,1.52214,0.835287,0.842343,0.869389,1.39015,0.826476,1.09481,4 +1.33823,-1.27568,0.116064,-0.750152,-0.925592,-0.0962957,-1.37903,0.444873,1.00373,-0.0282134,0.316626,0.183508,0.305733,0.788258,-0.489231,0.621265,0.801496,0.350887,-0.934297,-0.644513,0.259069,-0.571413,-0.0220552,1.09015,0.520204,1.17939,0.676346,1.06208,0.904414,1.04661,0.824311,0.19631,0.908304,0.258785,0.918039,1.22129,0.584319,0.950286,0.328353,0.965896,0.491725,1.07821,0.226668,0.827516,0.352225,0.757068,0.152197,1.01513,0.972803,0.278354,0.519845,0.416299,0.357777,0.432453,0.245328,0.503489,0.484332,0.871424,0.305991,0.852017,4 +-0.438768,0.779927,-0.616164,0.564231,0.640045,-0.0874632,0.260793,-0.239244,-0.581004,0.906004,0.277114,-0.10104,-0.94776,0.859315,0.563994,0.708998,-0.557304,-0.499159,-0.27835,0.373179,0.133814,0.217337,-0.146134,-0.320177,0.715207,-0.357589,-0.0651946,-0.279539,-0.315414,-0.342649,-0.52749,-0.534619,0.247827,1.49486,1.5342,1.34175,1.35048,0.899252,0.796799,1.09844,0.998014,1.0638,0.955124,0.61767,1.11684,0.726171,1.18863,0.967516,0.629294,1.25995,0.623957,1.2688,0.464882,0.845002,0.998985,1.19789,1.11312,0.63164,0.484142,0.908887,4 +1.51757,-0.77774,-0.0875809,-1.26681,-0.891702,0.00847942,-1.3621,-0.93164,0.0253213,0.176007,0.633272,-0.566165,0.960593,-0.858428,0.706582,0.195156,-0.151728,-0.327169,0.505222,0.826183,0.146175,0.354697,0.720222,0.714895,0.445908,-0.255261,0.446125,0.614299,-0.153713,0.27487,0.603252,-0.126321,-2.0976,-1.56716,-1.81411,-1.41275,-1.13902,-1.02816,-1.58562,-0.934345,-0.874305,-1.24967,-1.6607,-1.45247,-1.26878,-1.36446,-1.59479,-1.58402,-1.01614,-0.94574,-1.37956,-1.32584,-0.721694,-0.951285,-0.796667,-1.22017,-0.779512,-0.977684,-0.764168,-0.950637,5 +-0.508944,-0.48034,-1.10562,-1.01958,-0.569474,-1.47072,1.06151,0.878841,1.33961,-0.38441,0.349497,-0.931355,-0.399776,0.336221,-0.894342,0.306506,-1.1665,0.692496,-0.684027,0.296097,0.113689,0.342416,-0.576333,0.68309,-0.602767,-0.247022,-0.704942,0.608148,0.438394,-0.16125,-0.509497,0.113765,-0.0507696,-1.33998,-2.12413,-1.1932,-1.48427,-1.54078,-1.25886,-1.77893,-1.03651,-1.86647,-1.3391,-1.09368,-1.08058,-1.75468,-1.47927,-1.16487,-1.55921,-1.52063,-1.33449,-0.957627,-0.831658,-0.865974,-1.63622,-1.0307,-1.44442,-1.56379,-1.50073,-1.47575,5 +-1.3748,0.947207,-0.250021,-0.790565,0.740689,0.0194979,0.771538,0.0834688,-0.304342,0.62467,-0.663832,0.710115,-0.0751255,0.156908,-0.653396,0.635135,0.142624,0.140337,0.479566,-0.350311,0.608716,0.386803,0.508101,0.361014,-0.679604,-0.127556,0.0473642,-0.614795,-0.689337,-0.84722,-1.02871,-0.567926,-1.16848,-1.22113,-0.842924,-0.326339,-0.882895,-0.12696,-0.73013,-0.437726,-1.05594,-0.813797,-0.361473,-1.02906,-0.994356,-0.576075,-0.856663,-0.387402,-0.152164,-0.873397,-0.870831,-0.211956,-0.598208,-0.795445,-0.855555,-0.442971,-0.367627,-0.584585,-0.193291,-0.589991,5 +1.41839,-1.58165,0.0753352,0.0432478,-1.21957,0.637527,0.717903,-0.192488,0.0794504,0.300367,0.846289,1.30066,-0.736586,-1.04659,-0.847968,-0.393232,-0.782649,0.424099,-0.167145,0.660918,-0.501966,-0.377358,-0.354239,-0.582092,-1.53429,-0.368608,-0.567385,-1.30567,-1.16484,-1.31088,-0.668048,-0.801624,-0.378244,-1.05132,-0.69167,-0.618664,-0.621246,-1.08404,-0.878091,-0.495864,-0.905531,-0.743504,-0.818428,-1.10082,-0.46529,-0.766394,-0.766884,-0.394455,-0.254952,-0.702336,-0.612406,-0.400143,-0.45044,-0.803934,-0.787706,-0.871376,-0.703205,-0.77368,-0.368646,-0.892931,5 +-0.299676,-0.453859,-0.0938045,-0.741803,0.774725,1.0283,-0.627458,-0.965213,0.112729,0.769588,0.0417893,1.02726,-0.343038,0.915048,0.276094,-1.08191,-0.892597,0.777553,-0.503818,0.65486,0.910559,0.768622,0.399887,0.179444,0.350102,-0.490496,-0.666923,0.333675,0.341584,0.156046,-1.31597,-1.04881,-0.356459,-0.75204,-1.16102,-0.645416,-0.989203,-0.472219,-0.168922,-0.980876,-0.750072,-0.477087,-0.30847,-0.277408,-1.05015,-0.981923,-0.555487,-0.754344,-0.653418,-0.436809,-0.393459,-0.927774,-0.307463,-0.573281,-0.314227,-0.672818,-0.591917,-0.727468,-0.549694,-0.466731,5 +0.229175,-1.03942,0.161856,-0.103209,0.0176628,0.235518,1.09568,-0.761606,-0.799044,0.256847,0.0203993,0.284964,-0.498753,0.434198,-0.305246,-0.672078,-0.0141616,-0.948958,-0.401459,-0.101051,-0.648833,-2.72215,-2.31702,-1.40956,-2.24042,-1.95182,-1.77506,-1.23137,-2.29912,-1.18977,-1.88942,-1.38153,-1.21436,-1.78015,-1.67863,-1.86162,-1.24511,-1.72929,-0.711304,-0.997204,-1.33624,-1.16868,-1.54478,-0.820199,-0.827805,-1.25388,-1.05696,-1.34167,-1.2592,-1.21878,-1.17797,-1.12507,-1.25123,-0.785679,-1.44409,-1.07807,-0.955915,-0.920485,-0.855532,-1.37346,5 +-1.66128,0.537918,-0.0715748,-0.0416322,-0.493249,0.316997,-1.3427,1.46273,0.840718,-0.653773,0.423965,-0.576637,-0.0491425,-1.04947,-0.803159,0.448434,0.776544,-0.79534,-0.682615,0.691454,-0.585845,-0.0446482,0.795473,0.747508,0.502756,-0.554901,-0.455798,0.412022,-0.124852,-0.451542,0.0117878,-0.94596,-1.18531,-1.5132,-0.74645,-1.08609,-1.16577,-1.06867,-0.774357,-0.556958,-0.746705,-0.50596,-0.897093,-0.742957,-0.637262,-0.435188,-0.683159,-0.499153,-1.03144,-1.19205,-0.570605,-0.689624,-0.415751,-0.398044,-1.12565,-0.843967,-0.428118,-0.707435,-0.485623,-0.394094,5 +-0.789647,0.638262,-0.938075,-0.797409,-1.4117,-0.0095388,-0.55264,-0.70971,0.0530721,0.537819,0.160308,-0.693031,0.490101,0.146148,-0.898721,-0.932812,0.377546,-0.528773,-0.234737,-0.456092,-0.261174,0.692322,0.286366,0.750749,-0.13118,0.100501,0.120805,0.310698,0.106629,-0.346451,0.616075,-0.257422,-1.45069,-0.576811,-0.657967,-1.0405,-1.25234,-0.426975,-1.11557,-1.08678,-0.324525,-0.751072,-1.06741,-0.47748,-0.932358,-1.01143,-0.517521,-0.399837,-1.10256,-0.488215,-0.521784,-0.81851,-0.404112,-0.597532,-0.915657,-0.687199,-0.310928,-0.975993,-0.459292,-0.305546,5 +0.942404,0.497751,-0.499515,-0.793833,-1.13736,-0.906674,1.31238,-0.519373,0.972384,1.17676,0.713957,0.0687658,-0.425906,-0.735108,0.549855,0.584839,-0.543005,-0.974851,-0.782862,0.601168,0.28394,0.649601,0.0511872,0.566255,-0.430269,0.395352,0.134501,-0.265264,-0.501899,-0.243182,0.512639,-0.272739,-0.363304,-1.67843,-0.770265,-0.986884,-1.46552,-1.41726,-1.28655,-1.51152,-1.24706,-0.88514,-1.58806,-1.30878,-1.24617,-0.915503,-1.12555,-1.02236,-1.14788,-1.28232,-1.02425,-0.573491,-1.32675,-0.867961,-1.1886,-1.03813,-0.571419,-1.32426,-0.973906,-0.806742,5 +0.332336,0.497919,0.144308,-0.27285,-0.85032,0.169584,1.33032,0.75595,-0.240135,-0.158893,0.674975,0.262631,-0.046802,0.662693,-0.730634,0.356871,0.314454,-0.119177,-0.313116,0.115852,0.56698,0.306524,-0.542345,0.1271,-0.0099457,-0.347955,0.360328,0.557083,-0.263644,-1.372,-1.15413,-0.592793,-1.54628,-1.47059,-0.817647,-1.09385,-0.385549,-1.02597,-0.699783,-1.11321,-0.826838,-1.23186,-1.12538,-0.478469,-0.749204,-0.537697,-1.06252,-1.07434,-0.36225,-0.777495,-0.864964,-0.283453,-0.507928,-1.05703,-1.01055,-0.430162,-0.974652,-0.467796,-0.629565,-0.346888,5 +0.47941,-0.662388,-1.22324,-0.17873,0.33249,0.328281,0.566008,1.34853,0.468921,-0.192812,-0.380976,1.28323,-0.508152,0.886087,0.452534,0.207213,0.0281207,0.17871,0.440579,-0.00897349,-0.5328,0.933586,0.772814,-0.147769,0.377831,0.228775,0.245927,-1.03769,-0.85825,-1.95409,-1.08786,-0.71553,-0.709788,-0.819444,-1.22636,-1.41616,-1.37841,-0.936924,-1.21162,-0.744625,-0.723469,-0.62591,-1.40917,-1.28377,-1.37927,-0.776831,-0.672522,-1.28512,-1.10629,-1.05318,-0.936384,-1.12982,-0.723335,-0.595301,-1.13428,-0.615612,-0.48032,-0.844005,-1.04698,-0.674248,5 +-0.782095,1.1281,0.152911,-0.626006,0.392704,-1.27739,-0.714796,0.0048822,-0.217837,0.753323,-0.182567,1.26985,-0.132668,-1.11744,-0.332118,0.127211,-0.783511,-0.33399,-0.464939,-0.428654,-1.67295,-1.98497,-2.27185,-2.17174,-2.19373,-1.85089,-0.978983,-1.17301,-2.12817,-0.893863,-1.38579,-1.73653,-1.55991,-1.54726,-1.05289,-1.49852,-0.678656,-0.698465,-1.08354,-1.16685,-1.03485,-0.732124,-1.20563,-0.875516,-1.45749,-1.07679,-1.39866,-1.4466,-0.931817,-0.673489,-0.66461,-0.663272,-0.587829,-0.909657,-1.31226,-0.83592,-0.838988,-0.725764,-1.03014,-0.913411,5 +-1.2335,0.178367,0.688821,-0.0196466,0.153277,0.600806,1.11073,0.74111,1.29212,-0.0201414,1.23662,-0.816669,0.731573,-0.260937,-0.568403,0.20947,-0.195104,0.185486,0.366887,0.516254,0.271144,0.0949423,0.735993,-0.347933,-0.323822,-0.210538,-0.0927566,-0.722604,0.287249,-0.288254,0.588584,0.0399441,-0.448231,-0.552479,-0.097559,-0.876214,-1.52723,-0.954951,-1.32752,-0.684418,-1.01279,-0.847664,-1.38854,-1.48757,-1.0592,-0.978982,-1.43501,-1.08843,-0.659076,-1.33225,-1.16053,-1.15764,-0.948587,-0.598167,-1.30639,-0.723703,-0.796027,-1.22114,-0.868954,-0.642032,5 +0.610521,-1.22349,-1.19347,0.00605185,0.499796,-0.887618,-0.480889,0.0443691,-0.751119,-0.13095,-0.598585,0.546916,-0.749404,-0.109212,-0.0212324,0.233584,-0.0392295,0.182865,-0.408009,-0.11832,0.792709,-0.321158,0.114669,0.364378,-0.452714,0.0890245,-1.0161,-1.66919,-1.27268,-0.972307,-1.26683,-0.90073,-1.45473,-0.736811,-0.968379,-0.93658,-0.885013,-0.965981,-1.1615,-1.36536,-1.39611,-1.22009,-0.568795,-0.541015,-0.696125,-1.33001,-0.833614,-0.739644,-0.543767,-0.481477,-0.798866,-0.765813,-0.81565,-0.57078,-1.04252,-1.20247,-0.595822,-0.674884,-1.07003,-1.02016,5 +1.00428,1.06573,0.553159,-0.63054,0.133713,-0.221319,1.21719,1.43903,1.18772,0.310963,0.22114,-0.320747,-0.153952,-1.17073,0.710714,-0.964092,-0.562473,-0.306672,-0.105482,-0.656519,-0.479799,0.870393,0.585639,0.280915,-0.246111,0.484228,0.396001,-0.187702,-1.43105,-1.7105,-1.52065,-1.80967,-1.89705,-1.56702,-1.555,-1.07573,-1.34742,-1.12655,-1.55927,-0.785852,-1.11256,-0.756493,-0.800543,-1.14571,-1.09674,-1.60061,-1.08917,-1.42089,-0.893804,-0.719014,-1.2874,-1.00656,-0.918995,-0.81708,-0.906783,-0.910294,-0.824314,-1.04153,-0.768354,-0.973216,5 +-0.412907,-0.01436,0.244665,0.201699,0.299187,-0.0956553,0.134057,1.42878,0.416446,0.468383,-0.574069,0.843324,0.740167,0.0060003,-0.62969,0.0589401,0.228117,-0.100556,-0.335916,0.131813,0.5352,0.732675,-0.655533,0.371473,0.668784,-0.0907039,0.478012,-0.343484,0.208426,-0.322684,-1.64263,-1.48692,-1.996,-1.27352,-1.75129,-0.897138,-1.72011,-1.11419,-1.061,-1.51783,-1.11839,-1.61086,-1.50442,-1.2497,-0.840743,-1.48184,-1.48447,-1.28737,-1.27166,-1.25042,-0.95945,-0.898326,-1.38681,-1.23686,-1.2042,-1.14461,-0.994629,-0.990004,-1.19479,-0.715907,5 +0.959741,-1.30229,-0.162092,-0.112944,0.710206,0.5532,-0.176926,-0.332197,1.26035,0.174358,0.66201,-0.204616,-0.767945,-0.00524267,-0.458614,-0.116781,-0.327551,-0.788844,-0.0543572,0.375063,0.0339859,0.600822,0.462983,-1.68622,-1.60339,-0.689371,-1.25974,-1.20965,-0.893864,-0.472575,-1.41678,-1.1877,-0.458804,-0.542536,-1.2366,-0.676113,-0.886969,-0.665933,-0.338132,-0.897423,-0.607997,-0.427275,-1.01052,-0.841441,-0.745835,-0.307947,-0.936801,-0.64587,-0.706205,-0.360822,-0.805235,-0.427109,-0.88288,-0.43417,-0.3071,-0.703644,-0.986444,-0.497007,-0.653268,-0.613866,5 +-0.593624,0.813575,0.235454,-0.3566,-0.0856554,-0.0907754,0.191571,0.108567,0.453805,0.674235,0.343086,0.800742,0.363606,0.893787,0.535962,-0.0924795,0.332149,-0.764998,-0.7424,0.441913,0.540727,-0.293141,-0.62096,-0.450847,-0.537519,-0.0505695,-1.46818,-1.26059,-0.983264,-0.477006,-1.21546,-1.43404,-0.49854,-0.574029,-1.04168,-1.34996,-1.01842,-0.929368,-0.959953,-0.280151,-0.711641,-1.17911,-0.943276,-0.6367,-0.692461,-0.440824,-0.848588,-0.71913,-0.338682,-0.320363,-0.936568,-0.306172,-0.962947,-0.885223,-0.304827,-0.822249,-0.554602,-1.01515,-0.269232,-0.814085,5 +1.01069,-0.267577,-0.355898,-0.709569,-0.963805,0.403688,-0.66558,0.995172,-0.163708,0.760829,-0.202403,-0.218541,0.0578249,-0.517577,-0.248989,0.238304,-0.387429,-0.904321,-0.595855,0.546837,-0.55381,-0.590771,-0.957399,-1.30618,-0.457375,-1.20657,-1.43599,-1.31424,-0.411325,-0.430227,-0.551863,-1.36801,-0.803372,-0.449792,-0.858021,-1.20729,-0.359944,-0.509091,-0.310298,-0.519773,-0.312745,-0.682148,-0.546236,-0.343058,-0.810006,-0.757359,-0.261556,-0.979028,-0.598424,-0.418602,-0.526066,-0.937327,-0.656084,-0.472837,-0.849567,-0.873591,-0.916865,-0.618312,-0.196918,-0.406978,5 +0.911393,0.179065,0.0114439,-0.365771,-0.966626,0.860194,-0.725081,-0.0979428,-0.826795,-0.0939225,-0.116984,-0.854504,-0.787071,-0.575072,0.180708,0.721687,-0.192553,-0.355061,0.0925762,0.724514,-0.110282,-0.129292,0.601223,-0.184419,-0.427021,-0.319632,-0.556298,-0.508301,0.147854,-0.445813,0.351888,-1.63477,-1.85072,-1.08647,-1.05033,-1.63651,-1.53887,-1.41085,-1.13951,-1.42641,-1.6115,-1.28621,-1.35836,-1.17919,-0.921009,-0.875165,-1.26985,-0.765357,-0.886406,-0.745296,-0.882863,-1.16429,-0.767876,-0.729499,-1.15149,-1.38974,-0.720228,-1.30366,-0.663857,-1.25598,5 +-0.614937,-0.93273,-0.691303,-0.146684,0.577358,-1.50956,-0.0120698,-0.110352,0.54204,0.248345,0.525086,0.214812,-0.542527,-0.44318,-0.489108,-0.815374,-0.844466,-0.997007,0.26487,-0.609351,0.261112,-0.328428,0.206967,-0.309706,-1.40536,-2.16797,-1.5237,-2.14725,-1.47352,-1.7954,-1.25368,-1.63087,-1.80838,-1.77552,-1.7103,-1.42847,-0.961862,-1.21144,-1.62253,-1.70956,-1.04089,-1.2978,-1.22586,-1.05369,-1.66982,-1.0567,-1.02692,-1.49353,-1.43606,-1.39253,-1.03355,-1.43359,-0.867613,-1.20891,-1.07529,-1.23479,-1.09775,-0.989588,-0.713211,-0.758648,5 +-0.0486964,-1.23516,-0.573037,-0.322347,-1.1975,-1.09284,-1.09601,-0.60396,-0.833977,-0.716407,0.0450393,0.348978,-0.174633,-0.46947,-0.517316,-0.97295,-0.111633,-0.774053,0.391285,-0.159196,-0.128425,0.709105,-0.27847,0.631664,-0.153397,-0.0955825,0.0039676,0.479959,0.28612,-0.628751,-0.574495,-0.356275,-0.0176875,0.335356,-1.93162,-1.41574,-1.85537,-1.82364,-1.5628,-1.8767,-1.41648,-1.5553,-1.41349,-1.1812,-1.39193,-1.38872,-1.77816,-1.46967,-1.79517,-0.944054,-1.18907,-1.59883,-1.00094,-1.28419,-1.32684,-1.37143,-1.3923,-1.3456,-1.56548,-1.31785,5 +-0.861082,-1.19939,-0.8011,-0.457118,-1.3208,-1.20232,0.818226,1.44022,0.308395,0.584877,0.834931,0.394264,-0.649842,0.353122,-0.571956,-0.736449,-0.682444,-0.455499,0.559699,0.417605,0.204086,0.041744,0.275569,0.327313,0.407358,-0.453689,-0.710285,-0.400019,0.164395,0.565194,-0.479598,-0.0818304,0.292464,-0.563171,0.396516,-0.0472233,0.488937,0.331671,-1.5443,-0.893757,-1.04111,-1.21069,-0.822114,-1.24917,-0.828713,-1.10763,-1.46379,-1.1837,-1.28284,-0.780403,-1.38578,-1.45324,-1.42126,-1.24186,-0.979394,-1.1139,-1.32082,-1.44349,-0.851615,-0.908258,5 +0.0335521,0.0290054,-1.1493,-0.679165,0.0376487,0.049992,0.909098,-0.222253,0.817104,-0.468925,0.544162,0.233485,-0.423419,-0.338469,-0.716864,-0.320515,0.104782,-0.757711,-0.674513,-0.218619,0.697791,-0.699521,-0.0144358,-0.649886,0.334488,-0.0864393,0.431206,-0.623242,-1.33565,-0.73488,-0.850483,-0.560127,-0.98599,-1.20519,-0.993638,-0.270753,-0.455757,-1.04122,-0.792149,-1.0662,-0.380217,-0.256618,-0.332592,-0.674654,-0.905148,-0.249066,-0.788807,-0.376456,-0.910822,-0.203495,-0.529017,-0.127566,-0.861555,-0.18201,-0.456225,-0.282264,-0.37008,-0.770253,-0.800883,-0.633626,5 +-1.25567,1.21926,-1.2484,0.138308,-1.08563,0.139818,0.123232,0.39945,1.06282,1.01997,0.750149,-0.349836,0.136652,-0.191104,0.357007,-0.777322,-0.865093,0.491791,-0.48569,0.0471791,0.534765,-0.282223,0.527143,0.215555,0.00128258,0.00284998,0.109044,-0.300092,0.307648,-2.43986,-2.20229,-2.23195,-1.23371,-1.29315,-1.60831,-1.89727,-1.62476,-1.31566,-1.50425,-1.77895,-1.21018,-1.40679,-0.903617,-1.61511,-1.69012,-1.06536,-1.21853,-1.04335,-1.18347,-1.17701,-1.14553,-1.16682,-1.22058,-0.855714,-1.39862,-1.27085,-1.02196,-1.16859,-1.23451,-1.34904,5 +0.938514,-0.512761,-0.868969,-0.978803,0.166668,0.309136,-0.649796,1.16751,0.32808,0.969583,0.695994,1.13333,1.09651,-0.12604,0.8351,0.0471911,0.146104,-0.407668,-0.808968,-0.176294,0.10977,-0.264325,-0.316754,-0.0722566,-0.419975,0.202249,-0.123167,0.25197,0.265107,-0.541352,-0.274677,0.119552,-0.00108932,-0.290541,0.455894,-0.270709,0.264361,0.518071,-1.6103,-0.84963,-1.45508,-0.964806,-1.08936,-1.43766,-1.46528,-1.66646,-1.47946,-1.06202,-0.96988,-1.29088,-1.50735,-0.989634,-0.791334,-1.26089,-1.20373,-1.47302,-1.32914,-1.00603,-1.37669,-1.38542,5 +1.61759,0.32198,0.278352,-0.200596,-1.40954,-0.477637,-1.34145,-0.362608,-0.489874,0.019789,0.402893,-0.194913,-0.167995,-0.626444,-0.403534,-0.288603,0.792417,0.137313,-0.764222,0.093786,0.414376,-0.35639,-0.224123,0.559601,-0.31269,0.440767,-0.394038,-2.0626,-2.15175,-2.6795,-2.66891,-2.45329,-1.7548,-1.39913,-1.72034,-1.42174,-1.59515,-1.21611,-1.65364,-1.21809,-1.32485,-1.29528,-1.82357,-1.17644,-1.95043,-1.11563,-1.16845,-1.56005,-1.24236,-1.58549,-1.51784,-0.969655,-1.0695,-1.2681,-1.40759,-1.6222,-1.32678,-0.925615,-1.10409,-1.14868,5 +1.48785,-0.924071,-0.724495,-1.0584,-0.973221,0.297213,-0.51415,0.31069,0.0119347,0.880723,0.908233,1.21445,-0.792045,0.00613017,0.142089,-0.932504,-0.794396,-0.517439,-0.584571,0.280774,0.377535,-0.536636,-0.487653,0.515759,0.627645,-0.389976,-0.721578,0.52814,0.0664665,0.367455,-0.0151188,-1.53565,-0.953042,-0.845707,-1.1958,-1.12754,-0.792079,-1.08933,-0.594126,-0.721156,-0.815901,-1.36079,-1.28078,-0.643454,-1.00164,-0.785605,-1.25992,-0.99004,-1.37659,-0.90914,-0.99907,-0.623238,-0.558423,-0.536851,-1.23578,-0.60937,-0.850193,-1.21846,-1.21504,-1.11257,5 +1.02002,0.729851,0.429678,0.388927,0.428353,-0.529042,1.40656,1.28597,1.02554,-0.69913,0.0748192,-0.882204,0.490979,0.914974,-0.577442,-0.264866,-0.258014,-0.517547,-0.628805,0.187498,0.538189,-0.233389,-0.0139438,0.506107,-0.635338,-0.299336,-0.419415,0.322862,-0.484185,0.143896,-0.191215,0.190183,-0.0223114,0.532995,-0.392519,0.4326,-1.35919,-0.595839,-0.806199,-0.645555,-1.52346,-0.718504,-0.631581,-1.36205,-0.879279,-1.24346,-0.820379,-0.683717,-0.728047,-1.16151,-1.21722,-0.868927,-0.67464,-0.974468,-0.506111,-0.940549,-0.559627,-1.20956,-0.752567,-0.489842,5 +1.29686,0.922482,-0.498411,-0.271772,0.499796,0.304588,1.30435,1.19476,0.527337,1.09472,0.256872,0.787642,-0.398039,-0.518041,-1.16712,-0.781461,-0.0293051,-0.0147076,-0.151081,0.794043,0.363358,-1.0772,-1.43004,-0.719882,-0.403163,-0.365047,-0.973285,-1.60529,-0.882924,-1.00147,-0.381292,-0.887164,-1.24954,-1.02968,-1.02499,-0.431271,-0.923238,-0.375924,-0.643969,-0.358499,-0.396862,-0.44105,-0.333781,-0.272517,-0.837753,-0.912961,-1.03976,-0.590786,-0.784781,-0.44747,-0.624161,-0.596245,-0.571849,-0.498062,-0.591075,-0.886168,-0.82062,-0.240023,-0.497782,-0.309286,5 +-1.68648,-1.22465,0.45008,-0.883555,-0.550367,0.649208,0.4757,0.900176,0.748122,0.619432,1.33729,0.78646,0.679662,-0.783215,0.648337,-0.245404,-0.628664,-0.930849,0.78734,0.51859,0.390331,0.582469,-0.00447598,0.297355,0.545309,0.10222,-0.377403,-0.306959,-0.237556,-0.184671,0.490549,0.306074,0.520873,-0.144144,-0.367561,-0.151593,-0.462872,-0.248756,-0.825655,-0.229913,-0.557559,-0.73781,-0.839261,-0.604113,-0.704203,-0.268466,-0.279113,-0.579972,-0.703478,-0.489387,-0.302589,-0.438468,-0.409291,-0.711764,-0.766127,-0.460695,-0.910507,-0.862024,-0.900944,-0.57025,5 +-1.6073,-0.0317494,0.142557,0.0597071,0.270334,0.392162,-1.15629,-0.309464,0.153189,0.422099,0.443288,-0.423703,0.146782,-0.770673,0.558174,-0.718167,-0.497923,0.493047,-0.026715,-0.331314,0.833469,0.266377,0.544869,-0.524831,0.413961,-0.393091,-0.570794,0.637264,0.591754,-0.468501,-0.742982,-0.621608,-0.850983,-0.652791,-0.757268,-0.411937,-0.196285,-0.260102,-0.62718,-1.05496,-0.646679,-0.241846,-0.914325,-0.669273,-0.213605,-0.906425,-0.296223,-0.236602,-0.895617,-0.46159,-0.182404,-0.608051,-0.260132,-0.647399,-0.802567,-0.877837,-0.257288,-0.895308,-0.664613,-0.419693,5 +0.675233,0.92645,-1.20367,-1.07549,0.0387844,-0.39088,-0.0433424,0.731389,0.522561,-0.616882,0.98943,-0.755132,0.0534548,0.136742,-0.605475,-0.469404,-0.926065,-0.410117,-0.230578,-0.611345,-0.31898,-0.196079,0.168391,0.759508,0.468568,0.217053,-0.114689,0.265149,-0.458788,0.110356,-0.389673,-1.22152,-0.526693,-0.425294,-1.28707,-0.993194,-1.24084,-0.643882,-0.536898,-0.759179,-0.457388,-0.644112,-0.494524,-1.17205,-0.641032,-0.941309,-0.402593,-1.13449,-1.1778,-0.626034,-1.03645,-0.620066,-0.673989,-0.592476,-0.539098,-1.03671,-0.784175,-0.325033,-0.68415,-0.491209,5 +-1.48963,-0.769418,-0.517272,-0.862442,-0.406876,-0.56912,0.747826,0.366114,0.182125,1.31336,-0.1415,0.674195,1.04608,0.620523,-1.07303,-0.559223,0.08495,0.671147,0.274214,-0.184937,-0.308768,0.643736,0.393929,0.59981,-0.277099,-0.0820518,-0.25862,0.147669,0.32717,-0.212827,0.240717,0.112151,-0.0859204,-0.870658,-1.44365,-0.973799,-1.51359,-1.65006,-1.62492,-1.22568,-1.62509,-1.36963,-0.905647,-0.836773,-0.970894,-1.44302,-1.05601,-0.987107,-0.798685,-1.44802,-1.40045,-1.34344,-1.31792,-0.682572,-1.14105,-1.3144,-1.36441,-1.02389,-1.32626,-1.19294,5 +1.17771,-0.132454,-0.459186,-1.0496,0.0145669,-0.439039,0.310279,-0.0231629,0.252893,0.854996,0.309738,1.20073,-0.806088,-0.386075,-0.0329799,0.427074,-0.731056,-0.311509,-0.00470685,-0.9043,-0.834027,0.667953,0.524803,0.182894,-0.353708,-0.192374,-0.50424,0.505936,-0.0514332,0.33468,0.0834586,0.288102,0.262213,0.0844796,0.326471,-0.493071,0.329555,-0.104909,0.268669,-1.40837,-0.608118,-1.41558,-1.41648,-0.72633,-0.921433,-1.36866,-1.40124,-1.09175,-1.176,-0.705152,-1.33638,-0.803023,-0.558292,-1.13771,-1.06186,-0.770362,-1.0414,-0.733701,-1.02718,-0.626692,5 +-1.47564,0.58263,-0.672709,-1.09214,0.0863584,-1.01622,-0.769683,0.693171,0.809997,1.23307,0.803208,-0.328667,-1.05465,-0.310398,0.0327038,0.128904,0.365137,-0.0777332,-0.117852,-0.311132,-0.106423,-2.23306,-2.38178,-1.62685,-2.40804,-1.20201,-1.03969,-1.65566,-1.38774,-1.13612,-1.08153,-1.5787,-1.89058,-1.89391,-0.806511,-1.07105,-0.85834,-0.981818,-1.40015,-1.54338,-0.805692,-1.16543,-1.50764,-1.48571,-1.04491,-1.2654,-1.51958,-1.32469,-1.25897,-0.96547,-0.961785,-0.969481,-1.28846,-0.805759,-0.749492,-0.597158,-1.30167,-0.941362,-0.727774,-1.0495,5 +0.93714,0.757775,0.131937,-0.515992,-1.32243,0.868783,0.159562,1.39047,0.642834,1.01903,0.0650868,-0.515362,0.96383,0.475069,0.65822,0.274406,0.132534,0.221347,-0.495033,0.886634,0.565973,-0.474599,-0.300438,0.69284,0.263859,-0.573065,0.366677,-0.336583,-0.0108655,0.364836,0.504101,-0.29106,-0.0195371,-0.449284,-0.403842,0.306769,-0.028382,-0.640833,-0.538716,-0.421031,-0.90579,-1.17564,-0.703169,-0.706866,-1.049,-0.790471,-0.697975,-0.93088,-1.01479,-0.606634,-0.781809,-0.256425,-0.54486,-0.942965,-0.757766,-0.547149,-0.681883,-0.88652,-0.639795,-0.631014,5 +1.13694,0.626693,0.771859,-0.227663,-0.402699,0.653028,-0.773487,0.794813,0.175281,0.199467,0.837263,-0.476495,0.398859,0.55813,-1.1748,-0.291801,-0.146923,0.366655,0.46105,-0.848319,-0.503889,0.362641,0.396376,-0.161421,0.00343955,0.147323,-0.0193954,-0.445234,-0.278376,-0.252368,0.500421,0.556761,-0.272209,0.105623,-1.6661,-1.43343,-0.602629,-1.36411,-0.656258,-1.07201,-0.729306,-0.931802,-1.27321,-0.800229,-1.35281,-1.20707,-1.24731,-1.01207,-0.910332,-0.747268,-0.70479,-0.47779,-0.804039,-1.08858,-1.18478,-1.0979,-1.00459,-1.01402,-1.10689,-0.550302,5 +0.501696,0.624576,-1.19549,-0.775047,-1.26909,0.414309,0.995258,-0.115557,1.13291,1.27376,-0.457775,-0.433218,0.933129,-0.00325752,-0.773579,0.792386,-0.289958,-0.937051,0.464123,0.631642,0.78592,-1.77256,-2.71273,-2.05519,-2.61814,-2.66895,-2.7271,-2.20452,-2.3243,-2.00516,-2.08013,-1.45268,-1.54999,-1.8153,-1.23728,-1.21164,-1.51769,-1.50575,-1.48188,-1.07217,-1.65839,-1.10275,-1.55534,-1.08157,-1.24549,-1.54229,-1.41417,-1.71162,-0.924879,-1.56563,-0.941062,-1.36623,-1.62248,-0.909272,-0.836863,-1.08698,-1.28335,-1.39888,-1.28071,-1.41468,5 +-0.816024,-0.470815,-1.02551,-1.01015,-0.733812,0.132929,-0.539654,-0.166658,1.28667,1.17574,-0.191504,0.286897,0.995792,-0.559135,-1.06656,-0.854383,-0.960262,-0.24546,-0.754196,0.51968,-0.762944,0.605819,0.135772,0.387694,0.114895,-0.349551,0.214921,0.0664374,-0.178234,-0.538398,0.554975,0.189395,-0.525187,0.424911,0.384254,0.329258,-1.78549,-1.35452,-1.25074,-1.67507,-1.0314,-0.902711,-1.43811,-0.882193,-0.887728,-0.897106,-1.05996,-1.46101,-0.935172,-0.780925,-1.00629,-1.48677,-1.44564,-1.29338,-0.927114,-1.47638,-0.778958,-1.44256,-1.28284,-0.759432,5 +-0.469751,-1.0579,-1.04698,-1.32768,-0.473538,-1.58205,-1.17316,0.270709,0.59976,1.0925,-0.199029,1.00087,-0.462969,0.615829,0.263766,-0.785805,0.0690775,0.65065,0.810139,-0.317704,0.0301261,-0.220338,-0.335357,-1.66315,-0.800059,-0.481409,-0.517032,-0.763814,-1.20636,-1.36078,-0.830123,-0.471164,-1.27682,-0.925097,-1.00861,-0.661375,-1.10478,-0.495303,-1.05835,-0.667842,-0.945387,-0.364791,-0.356838,-0.23385,-0.923084,-0.742594,-0.639695,-0.646743,-0.181924,-0.514783,-0.854574,-0.712538,-0.168966,-0.894862,-0.677185,-0.176275,-0.144774,-0.235645,-0.681663,-0.449285,5 +0.448742,0.296534,0.618573,-0.0612397,-0.0489261,-1.52406,-1.1911,0.956245,1.03189,-0.368146,-0.0883875,-0.223233,0.760976,-1.11793,-0.571569,0.246154,0.294423,-1.02758,-0.116145,-0.880849,0.722226,-0.123523,0.0626629,0.548738,0.310497,-0.2706,0.0139672,0.154582,-2.26431,-2.0228,-1.7964,-2.0514,-1.26349,-2.00033,-1.29808,-1.59521,-1.85338,-1.83542,-1.4621,-1.10715,-1.62701,-1.55393,-1.71833,-1.0011,-0.96601,-1.57639,-1.33848,-1.39396,-1.07156,-0.87777,-0.97868,-0.799397,-0.882458,-1.4511,-0.716457,-1.05199,-1.31453,-0.972104,-0.959458,-1.27211,5 +0.780597,0.233662,0.376559,-0.197448,0.027152,-0.650268,-1.50118,1.30335,0.46313,0.615963,-0.341146,-0.220755,-0.681987,-0.929819,-0.742452,0.572645,-0.748287,0.0988779,0.63738,-0.530713,0.941948,-2.14778,-1.88444,-1.39053,-1.6568,-2.09947,-1.92217,-2.36669,-1.78234,-1.67601,-1.70224,-1.76118,-1.80205,-1.19951,-1.60144,-1.58473,-1.47866,-1.50981,-1.36452,-1.47434,-1.45487,-1.33648,-1.09028,-0.87662,-1.32179,-0.730893,-0.980576,-1.45382,-1.44181,-1.12801,-0.950461,-0.680231,-0.962961,-1.15913,-0.910128,-0.827038,-0.971111,-0.845616,-0.579236,-0.648461,5 +0.362689,0.572648,-0.414403,0.264353,0.345277,-0.730798,-0.558212,1.42656,-0.0578749,0.961133,0.570621,-0.564363,-0.0711759,-0.869467,0.0397382,-0.563173,-0.235382,-0.635645,-0.298123,-0.169785,-0.102788,0.694043,-0.517346,-0.537003,0.454524,-0.535799,0.0061872,-0.284836,-0.0299053,-0.651408,-1.74768,-1.50974,-1.75327,-1.22506,-1.13157,-1.91323,-1.78443,-1.13765,-1.04364,-1.19586,-1.80486,-1.63328,-1.16971,-1.60631,-1.17898,-1.23527,-1.41215,-1.44843,-1.32769,-0.895649,-0.878935,-0.992019,-0.993114,-0.936043,-1.13336,-1.44089,-0.86992,-1.4584,-1.00576,-1.00513,5 +-1.06351,-0.0739844,0.511783,-0.601574,0.121201,0.202749,-0.73922,0.934695,-0.333146,0.714853,-0.516346,-0.327578,0.109188,-0.335463,-0.378158,-0.346254,-0.384264,-0.339464,-0.779618,-0.0747963,0.291825,0.0766863,-0.373055,-0.0147506,-0.362072,-0.424662,-0.0394747,0.209294,0.575937,-0.45766,-0.440015,0.154862,-0.580988,0.0359825,-1.1622,-1.01936,-0.555001,-0.520471,-0.473667,-0.186042,-0.234797,-0.865647,-0.928626,-1.10693,-0.681619,-0.333818,-0.649704,-0.542514,-0.692944,-0.38601,-0.898901,-0.787584,-0.196668,-0.147276,-0.807423,-0.716015,-0.620112,-0.409045,-0.532824,-0.349836,5 +1.02422,0.744859,-1.35022,0.0233324,-0.802288,-1.05466,0.366614,0.20707,0.117918,0.0719991,-0.497923,-0.467881,-0.499155,-0.487187,-0.897754,0.702533,-0.628233,-0.394396,0.729541,-0.401481,-0.52882,0.0373521,-0.0823193,0.378752,0.114021,-0.552155,-0.422275,0.417999,0.202672,-0.461849,0.328609,0.40731,-0.717368,-0.551481,-1.05715,-0.591965,-0.634739,-0.294133,-0.218401,-0.429123,-1.02905,-0.705763,-0.556275,-0.263747,-0.215566,-0.275823,-0.645584,-1.02979,-0.564966,-0.755915,-0.940864,-0.59856,-0.185749,-0.777271,-0.29592,-0.731033,-0.495324,-0.276767,-0.641884,-0.641176,5 +-1.51401,1.11706,0.143889,-0.874504,-1.15943,0.589523,-0.87273,1.35492,-0.719909,-0.576711,1.30466,-0.826803,-0.483503,0.245275,-0.588029,-0.0527862,0.355212,0.57305,0.589235,0.267336,0.94366,0.133712,-0.337897,0.183395,0.021702,0.0818461,-0.334544,-0.398288,-0.0247863,0.42472,0.577107,0.269606,-1.98705,-2.18605,-1.34706,-1.48412,-1.8971,-1.8928,-1.47247,-1.15281,-1.2232,-1.56009,-1.43456,-1.54538,-1.46373,-1.73963,-1.75836,-1.12997,-1.46002,-1.64907,-0.91944,-1.07661,-1.32598,-1.46266,-1.06235,-1.25463,-1.05209,-1.33659,-1.57013,-1.4772,5 +1.12424,-1.39847,-1.0281,-0.091455,0.740286,0.0363679,0.118642,-0.374695,0.579454,1.10574,-0.372092,0.556431,-0.908484,-0.869393,-0.227235,0.278237,-0.783146,-0.934431,-0.633477,0.50213,-0.201941,0.131798,0.849912,-0.603035,-0.27076,0.361603,-0.295804,-0.44715,-0.582683,-0.237568,-1.41548,-0.648215,-0.845453,-1.1737,-0.559393,-1.11692,-1.09024,-0.893054,-0.772087,-0.518783,-0.122458,-0.609724,-0.508716,-0.976062,-0.771364,-0.668097,-0.693515,-0.43797,-0.42891,-0.26657,-0.793515,-0.19271,-0.858778,-0.678179,-0.914322,-0.759769,-0.340026,-0.775846,-0.699572,-0.692952,5 +-0.126854,-1.50278,0.0679126,-1.16326,0.161026,-1.29369,-0.895608,1.43959,-0.604337,1.21233,1.18941,0.833885,0.555781,-1.18748,-0.232599,0.0770851,0.803368,0.0834509,-0.179003,-0.259667,0.443993,0.445357,0.246952,0.325258,0.288149,-0.098407,0.514395,-0.281616,0.262411,-2.72935,-1.77973,-1.53244,-2.34983,-1.49154,-1.57126,-1.81908,-2.12034,-1.5752,-1.73496,-1.24461,-1.50641,-1.93524,-1.29454,-1.14015,-1.51595,-1.10206,-1.55357,-1.26844,-1.0525,-1.80715,-1.34573,-1.01339,-1.39625,-1.17391,-0.929575,-0.988037,-0.968868,-1.54669,-1.07172,-1.00331,5 +0.133681,0.117251,-0.597855,-0.217432,-0.717728,-1.20409,-0.729033,-0.254793,0.433443,1.26613,1.31323,-0.548449,1.06917,0.719316,-1.20651,-0.374899,-0.508808,0.605888,0.156692,0.848887,0.916131,0.150096,-0.43062,-0.307957,0.45831,-0.116124,-0.108637,0.0560974,-0.547344,-0.457314,-0.476804,0.448271,-1.20004,-0.852278,-0.958801,-0.838591,-0.792401,-1.16475,-0.973463,-0.862004,-0.633936,-1.25649,-1.08218,-1.25189,-0.546154,-0.889364,-0.668741,-1.09454,-1.20771,-0.573671,-1.16448,-1.18281,-0.546231,-1.00727,-1.13882,-1.04899,-1.12746,-1.14566,-0.612297,-0.934804,5 +1.57639,0.238256,-0.777481,0.320011,0.689433,-0.345305,-1.30036,-0.828815,-0.714193,0.80574,0.654167,0.583099,0.79857,0.607592,-0.69402,0.63835,0.250252,0.121824,-0.288097,0.602429,0.228176,0.826557,-0.1833,-0.512121,0.529646,0.0536013,0.266429,-0.219403,-0.52255,-0.669173,-0.0228957,0.184008,-0.204253,-0.276504,-1.20936,-0.744908,-1.04301,-0.811721,-0.718398,-0.90613,-0.62737,-0.993173,-0.417298,-0.318696,-0.273649,-0.895182,-0.795576,-0.56283,-0.429751,-0.66247,-0.344312,-0.824396,-0.439985,-0.598863,-0.579578,-0.266629,-0.178667,-0.866468,-0.397432,-0.224931,5 +-0.13967,-0.756262,0.654506,0.545565,-0.61212,0.913476,0.828585,0.891401,1.01912,0.179785,0.851994,-0.196696,0.297267,0.296369,0.850523,-0.70517,0.11696,-0.770239,-0.78235,0.784949,0.552246,0.664015,0.474991,-0.357316,-0.0540799,-0.354229,0.0229143,-0.610721,0.147931,0.351104,-2.14206,-1.28419,-2.03991,-1.22737,-1.10392,-1.87735,-1.25953,-0.924186,-1.30916,-0.938347,-1.14473,-1.15947,-0.815372,-1.52091,-1.41747,-1.15153,-1.26375,-1.08815,-0.809526,-1.30532,-1.03088,-0.967389,-1.09159,-1.29919,-1.22865,-0.827018,-1.05292,-0.707442,-0.682759,-0.691967,5 +-1.35589,0.937153,-0.910117,0.321071,0.777088,0.165454,-0.762392,-0.577893,-0.670349,-0.660591,1.1748,-0.704967,0.086697,-0.0675057,-0.996306,-1.03664,-1.05188,-0.417807,0.110363,-0.288724,0.824082,-0.644272,-0.299174,0.547478,-0.266315,-0.634477,0.373943,-0.178089,0.0745559,-0.651209,-0.216027,-0.075869,-0.466964,-2.20262,-1.95454,-1.57995,-1.90813,-1.57705,-1.19021,-1.57524,-1.22601,-1.1501,-1.07263,-1.40185,-1.72344,-1.47133,-1.65497,-1.37475,-1.12678,-1.43224,-1.44831,-1.12904,-1.4044,-0.904277,-1.52037,-1.67741,-1.16576,-1.16412,-1.10694,-1.48763,5 +-1.46243,-0.304593,-0.891884,-1.02202,-0.898425,0.8019,-0.819095,0.0121516,-0.672624,0.105867,0.181769,-0.211653,-0.714827,-0.0764296,-1.05288,-0.658824,-0.698698,-0.0997029,-0.40236,-0.130326,0.912106,-1.41718,-1.87673,-1.98461,-0.936092,-1.8671,-2.26707,-0.986818,-1.71001,-1.24087,-1.09249,-0.910649,-1.8972,-1.30844,-1.17357,-1.39726,-1.35865,-1.28744,-1.42102,-1.22555,-1.30486,-1.24417,-1.21167,-0.645616,-0.875857,-1.39586,-1.17731,-1.21546,-1.32428,-0.676254,-0.716468,-0.983058,-1.33903,-0.920755,-0.748508,-1.31676,-0.863872,-0.944499,-0.624572,-0.535299,5 +1.24599,-0.417805,-0.309345,0.0575171,0.137212,0.127188,0.488685,0.494532,-0.166058,0.100697,0.0633382,0.971861,-1.03129,-0.85917,0.829473,0.0505773,-0.00716982,-0.932214,0.239447,-0.89927,-0.0602556,-0.0881816,-0.315238,-1.94139,-1.54599,-1.37112,-1.07893,-2.03744,-1.57979,-1.49653,-0.907997,-0.856073,-1.15769,-0.722376,-1.01246,-0.802251,-1.17144,-0.652979,-0.729257,-1.12291,-1.01526,-0.506419,-0.693176,-1.32537,-0.922947,-0.556886,-0.993797,-1.09791,-0.678836,-0.977174,-0.462048,-0.557006,-1.02894,-0.568408,-0.829378,-0.751252,-0.724706,-0.513586,-0.767931,-0.649699,5 +-1.58092,-0.22871,-0.350302,-0.829831,-0.749548,-0.560596,-0.0162918,-1.08453,0.053843,0.547025,-0.135601,-0.414132,-0.549311,-0.577465,-0.185574,0.0414107,-0.834193,0.570368,0.37384,0.612831,0.0277682,-0.368629,0.356829,-1.28337,-1.65106,-1.08577,-0.804401,-1.13333,-1.27136,-1.31346,-0.890368,-1.02858,-0.882044,-1.10882,-1.18881,-1.22672,-0.482133,-1.22327,-0.81671,-1.00518,-1.11186,-1.22804,-1.13844,-1.33363,-0.960332,-0.843404,-0.547657,-0.613244,-0.459401,-0.75042,-1.08222,-0.631202,-0.569993,-1.13377,-0.841921,-0.552329,-0.59999,-0.920742,-0.880997,-0.551371,5 +-1.30957,-1.21873,-1.15934,-0.238357,-0.33274,-0.349037,1.2272,1.38858,-0.211839,0.316081,0.661692,-0.837219,0.716251,-1.1272,-0.72462,-1.16952,0.804777,-0.611845,-0.756927,-0.581789,0.3809,-0.695735,-1.47052,-1.67899,-0.930568,-0.694082,-1.1658,-1.69573,-0.669672,-0.667057,-1.39476,-0.969757,-0.706995,-1.41874,-0.520933,-0.843706,-0.537248,-0.833548,-1.03181,-0.475718,-0.999363,-0.612462,-0.496608,-0.829222,-0.598544,-1.07184,-1.01435,-0.817867,-1.11765,-0.660648,-0.976953,-0.741058,-0.888274,-0.945438,-0.549301,-1.0218,-0.679205,-0.413601,-0.551143,-0.388896,5 +1.38698,-1.26917,0.251802,-0.701271,-0.647366,-1.096,-0.383709,-0.287979,0.118595,0.114076,-0.55577,1.08392,-0.497418,-0.0985816,-1.19631,-0.2243,-0.302185,0.534832,-0.647895,-0.823388,0.361811,-0.695226,-0.477985,0.169829,-0.0394723,0.0749579,0.272516,0.0395717,0.495426,0.463842,0.0226609,-0.326527,-0.577489,0.169996,-0.470795,-0.0521974,-0.319736,-0.436738,0.194522,-0.180514,-0.579976,-0.419177,-0.358953,-0.461811,-0.790859,-0.988925,-1.00282,-0.870319,-0.645304,-0.372248,-0.969167,-0.502148,-0.841725,-0.551801,-0.249466,-0.20797,-0.917122,-0.323606,-0.191541,-0.576037,5 +-0.818542,1.07882,0.607325,-0.708628,-0.789098,0.188397,1.04087,0.60368,-0.276178,0.622455,-0.141765,-0.462157,0.0743363,-0.351752,-0.161745,-0.955489,-0.184517,0.277954,-0.200778,-0.880164,-0.494637,0.330438,-0.411046,-0.266989,-0.291839,-0.652764,-0.259387,-0.197119,-0.0417325,0.0846935,0.405336,0.10901,0.0375985,0.0471457,-0.994028,-0.767511,-0.520731,-0.584992,-1.28179,-0.918696,-1.24051,-0.640285,-0.729313,-0.754065,-0.469689,-0.548156,-1.06154,-0.951247,-1.11134,-0.796181,-0.411507,-0.36845,-1.14685,-0.754797,-0.842737,-0.492476,-0.818761,-0.573268,-0.544598,-0.814377,5 +-0.221604,0.75626,0.601882,0.0083103,-0.924181,0.754712,-0.925629,0.324197,0.162101,0.929464,0.599412,0.939056,0.0502915,-0.509469,0.213717,0.290174,-0.845443,-0.00411811,-0.260905,-0.276531,-0.402363,-0.147988,0.424208,-0.67922,0.0304977,-0.0406113,0.3255,-0.423204,-0.448682,-0.2906,-0.339717,-0.224426,-0.375383,0.0133142,-0.304152,-1.7829,-0.789064,-1.59034,-1.52998,-0.755808,-1.11326,-0.802751,-1.52848,-1.18497,-0.80086,-0.871541,-1.54485,-1.39237,-0.932796,-1.32396,-1.06767,-1.4492,-1.4362,-1.25174,-1.38055,-0.871117,-1.33523,-1.1716,-0.665793,-0.811065,5 +-1.52482,-0.622895,-1.16983,0.112729,-0.267287,0.320332,-0.761312,-0.0200014,0.407967,1.15759,-0.116083,1.19956,0.206757,0.238466,0.109555,-0.782846,-0.891685,-0.720128,0.0361588,0.768209,-0.311246,0.180329,0.10681,-0.571058,0.525201,0.339309,0.609769,-0.0871863,0.356634,0.208514,0.183641,-0.143972,0.112619,0.0693797,-0.0867234,-0.0962179,-0.22748,-0.653671,-1.12949,-0.392146,-0.271254,-0.330481,-1.03523,-0.341318,-0.316864,-0.949763,-0.341376,-0.317728,-0.35809,-0.9531,-0.889367,-0.232778,-0.373987,-0.965688,-0.658972,-0.316087,-0.658285,-0.252799,-0.353,-0.253362,5 +-1.09936,-0.230826,-1.07235,-0.665272,-1.16178,-0.461584,-1.33045,-0.963234,1.37599,-0.511311,1.06552,-0.498903,-0.754579,0.750374,0.193106,-0.270646,0.108676,0.581019,-0.982053,-0.11505,-0.0718349,0.603135,-0.127384,0.679812,-0.321186,-0.613166,-0.372987,0.492169,-0.0885043,0.267213,-0.532577,-0.150964,0.356607,-1.80888,-1.0516,-1.19382,-1.43418,-1.30824,-0.848746,-1.36161,-1.75649,-1.52823,-1.52441,-1.27706,-0.898267,-1.11213,-1.33287,-1.12121,-1.58282,-1.37013,-0.793635,-0.869722,-0.826783,-1.03369,-1.07567,-1.01945,-0.960143,-1.32839,-1.26983,-0.96656,5 +0.824825,0.442263,-1.10177,-1.19084,-0.357232,-0.58281,-0.00475484,-0.0885442,-0.722616,-0.295052,1.01727,0.458222,-0.814334,-0.558115,-0.727715,0.706484,0.708332,-0.871235,-0.862654,0.485032,0.666072,0.523558,-0.510418,-0.164785,-0.430269,0.241647,-0.638686,-0.0660792,-0.552617,0.560156,-0.202088,-1.90083,-1.27471,-1.25936,-1.58115,-0.956565,-1.15596,-1.1872,-1.13106,-1.16291,-0.836837,-1.53987,-1.27524,-1.57711,-1.5383,-0.990654,-1.57284,-1.18584,-1.06327,-1.07281,-1.52538,-1.1446,-0.797863,-1.06996,-1.45407,-1.26863,-1.09648,-0.700925,-1.1288,-1.04999,5 +-0.734491,-0.723503,-0.438859,-0.159807,-1.3418,-1.4232,1.13427,0.246793,-0.808501,0.597414,0.252474,-0.437704,0.562565,-1.01451,0.661122,0.125689,-0.606578,0.688899,0.821702,0.69569,0.772959,0.658495,0.504444,0.564775,-0.119736,-0.356238,0.475792,-0.181101,-2.35045,-2.01077,-2.13735,-1.99634,-1.54798,-1.56129,-1.33354,-1.14073,-1.37918,-1.63263,-1.3561,-1.02068,-0.770013,-0.800426,-1.09259,-1.38091,-0.957955,-1.50931,-1.09304,-1.18154,-0.873972,-0.928969,-0.923899,-0.750235,-1.34961,-0.781069,-1.33423,-1.17703,-0.665415,-1.35317,-1.30031,-1.31935,5 +0.452003,0.368617,0.134164,0.363178,0.355224,-0.209727,-1.09908,-0.563613,1.2306,0.0954593,0.902316,0.62754,0.689061,0.0810091,-0.830399,-0.816896,-0.799632,-0.675088,0.00331729,-0.619862,0.573483,0.295345,0.359263,0.145841,-0.221425,-0.666619,0.0194705,-0.00649692,-0.603455,-0.346535,0.244929,-0.0225867,-0.303471,0.230673,-0.420534,-0.41939,0.0663898,0.257944,0.10715,-1.21749,-1.6131,-1.35339,-1.26004,-1.80658,-1.3712,-1.52388,-1.55623,-1.08698,-1.31693,-1.23021,-1.37922,-1.18887,-1.17557,-1.36796,-1.67701,-0.973557,-1.29608,-1.12639,-1.59797,-1.45075,5 +-0.891664,-1.58059,-0.0315309,-0.927269,-0.13409,-0.543395,-0.959798,-0.667943,0.0560427,1.10511,0.283597,-0.622804,-0.0769357,-0.0486375,-1.10293,-0.55676,-0.984219,-0.866459,0.0226404,-0.288833,0.394191,0.0373521,0.856747,0.272511,-0.169239,0.618207,-0.963972,-0.595049,-1.28013,-0.576169,-0.501084,-0.497373,-1.33759,-1.33191,-1.04852,-0.364665,-1.10598,-0.414012,-0.706788,-0.453255,-0.289478,-0.56625,-0.94994,-1.18193,-1.09587,-0.562559,-0.941579,-0.361506,-0.577737,-1.08018,-0.877208,-0.898417,-0.917721,-0.551024,-0.614925,-0.339968,-0.942547,-0.912429,-0.697097,-0.483523,5 +-1.26028,0.1826,-0.311514,0.189825,-0.203244,-0.72212,1.4101,0.477886,0.436263,0.834558,-0.383837,1.23601,-0.945347,-0.480304,-0.738372,0.115838,0.268328,0.756095,0.740374,-0.108307,0.890494,-0.70741,-0.696609,-0.522898,0.137256,0.467259,-0.0457331,-0.117191,-0.330026,0.365685,-0.42198,-0.104003,0.526784,-0.0812958,0.499688,-0.138367,-1.1477,-1.18993,-1.39593,-0.90216,-0.883696,-1.1393,-1.19423,-0.720481,-0.88741,-0.882108,-1.15263,-1.21578,-1.19402,-0.940924,-1.0875,-0.96907,-0.749832,-1.13926,-1.02677,-0.494572,-0.842405,-0.953333,-1.1318,-1.10289,5 +0.302926,-1.59966,0.398636,-0.684503,-0.0337215,0.348463,0.714197,0.905617,0.425227,0.717566,-0.00217409,-0.922178,-0.326654,0.46839,0.0813995,-1.02131,0.345536,-0.9026,0.507783,0.0415732,0.253993,-0.0893518,0.892305,0.21246,-0.412054,0.639764,-0.539285,-0.0549313,-0.583363,-0.645898,-0.171773,-0.0329436,0.225985,0.290398,-1.43291,-1.27286,-1.5486,-1.68779,-1.43867,-0.735351,-1.09556,-0.94613,-1.12235,-1.31496,-0.978699,-0.905241,-1.07444,-0.901398,-1.34933,-0.696377,-0.802864,-1.11342,-1.08895,-1.11341,-0.949157,-1.27919,-0.721487,-0.688452,-0.997737,-1.04966,5 +-0.189878,0.718282,-0.161388,0.224831,-0.0281526,-0.573823,1.09531,1.27263,-0.452929,1.09004,0.0575624,-0.107514,-0.0439678,-0.994475,-0.578163,-0.962706,0.050637,-0.943656,-0.569361,-0.373576,0.542649,0.103836,0.283773,-1.08351,-0.960227,-1.65607,-1.22815,-1.454,-0.844242,-1.18214,-0.856644,-1.40958,-1.03815,-1.37307,-1.10731,-1.35865,-0.536062,-0.969722,-0.822706,-0.882381,-0.468868,-0.994527,-1.1783,-1.05775,-0.783122,-1.02021,-0.57622,-0.631551,-0.450007,-0.900172,-0.816489,-0.56557,-0.530991,-0.714785,-0.468457,-0.427243,-0.81723,-0.698838,-0.788262,-0.362954,5 +-0.939354,0.978667,0.296947,-0.498284,0.696632,-0.252387,-0.330712,-0.794146,-0.552483,1.07704,-0.350684,0.0888279,-0.982886,0.5216,-0.447447,0.333065,0.707123,-0.257073,-0.950081,-0.358876,-0.365252,-2.30339,-1.69868,-1.20931,-1.25226,-2.09519,-1.84086,-1.26361,-1.57515,-2.26701,-1.05185,-2.06579,-1.81261,-1.08962,-1.20238,-1.37512,-1.04266,-0.82989,-1.38356,-1.18629,-0.963344,-1.4465,-0.781779,-1.27384,-1.20018,-1.15946,-1.48237,-0.727055,-1.07572,-1.46975,-0.877109,-0.926617,-0.933763,-0.936239,-1.31338,-0.735418,-0.99242,-1.20511,-0.822631,-0.829445,5 +1.15934,-1.61979,-0.560818,-0.187525,0.686666,-0.0454428,0.690951,-1.03644,0.354665,0.20936,0.668757,0.524583,0.445998,0.510153,0.192525,0.0922203,0.75933,-0.707554,0.218991,-0.0255109,-0.335351,-2.15174,-2.69223,-1.7292,-1.29233,-2.02568,-1.39805,-1.32018,-1.85686,-1.21033,-1.2767,-1.77994,-1.23189,-1.99102,-1.69951,-1.46298,-1.32215,-1.02796,-1.45539,-1.27824,-1.26411,-1.58011,-1.05787,-0.953141,-1.02341,-0.866689,-1.60387,-1.18927,-1.12073,-0.709139,-0.820806,-1.42771,-0.762184,-0.947919,-1.15697,-1.06043,-0.71631,-1.07922,-1.07313,-1.02257,5 +-0.396314,1.11627,-0.553338,-0.914831,-0.270511,0.906012,0.808481,0.768983,0.306327,0.792739,1.09536,0.859933,-0.38588,0.451916,-1.00684,0.1196,0.535127,-0.788503,0.347284,-0.792384,-0.334975,-2.3076,-2.65476,-2.14745,-2.56581,-2.51062,-2.20094,-2.02606,-2.22874,-1.64009,-2.45877,-1.83758,-1.52702,-2.28194,-1.39992,-1.32456,-1.3744,-2.03991,-1.85752,-1.26483,-1.3137,-1.67359,-1.48178,-1.13933,-1.57443,-1.06303,-1.21025,-1.21779,-1.32479,-1.24932,-1.29695,-1.50432,-1.1535,-1.40477,-1.27632,-1.20215,-1.20297,-1.13088,-1.39209,-1.26793,5 +1.18949,-0.931599,-0.488058,-0.0683914,-1.07495,-0.650687,0.88249,-0.665255,0.600305,1.03524,-0.182231,0.257263,0.633328,-1.18694,-0.362207,-0.763265,-0.54902,-0.319013,0.347967,0.864848,-2.23311,-1.79835,-2.34162,-1.45825,-1.41875,-1.82817,-2.3378,-1.61962,-2.32568,-1.59479,-2.01858,-1.3122,-1.40326,-1.14115,-1.0524,-1.27348,-1.72298,-1.47308,-1.43539,-1.59899,-1.57499,-1.04589,-1.30762,-1.08998,-1.5931,-0.79358,-1.27338,-0.797103,-1.37694,-1.06404,-0.973159,-0.70357,-1.21857,-1.18872,-0.833748,-0.706814,-1.11656,-1.02617,-0.842373,-0.737002,5 +1.2209,0.453399,0.0452642,-0.611497,-0.709869,0.264223,-0.44078,0.0172702,-0.700111,-0.7246,-0.0487516,0.136309,0.146251,0.472287,-0.921917,-0.163007,0.347541,0.0886914,0.376587,0.526204,0.657196,-0.245519,0.637605,0.14485,-0.0410062,-0.403797,-0.147709,0.592684,-0.455401,0.431957,-0.0568078,0.51295,0.498602,0.0589281,-2.00428,-1.22434,-1.60509,-1.44131,-1.86576,-1.38202,-1.29712,-1.50437,-1.46476,-1.77699,-1.88258,-1.91039,-1.7866,-1.13206,-1.29204,-1.44255,-1.12098,-1.49144,-1.01717,-1.12251,-1.39205,-0.9557,-1.58748,-1.37785,-1.11695,-1.20776,5 +-0.999031,-0.472835,-0.85715,0.621787,-0.95492,-1.15374,-1.53002,-0.683019,1.11178,-0.611077,0.351052,0.588823,-0.656279,0.0129576,-0.309115,-0.580942,-0.52097,-0.685166,0.337367,0.809023,-0.413883,-0.534502,-0.167476,0.49829,0.151288,-2.14395,-2.0602,-1.33373,-1.24374,-1.10982,-1.2648,-1.51679,-1.71327,-1.47731,-1.57854,-1.62324,-1.48451,-1.55381,-1.33148,-0.960202,-1.49995,-0.814543,-0.819346,-0.795354,-1.47243,-0.911487,-1.46065,-0.994102,-1.16167,-0.703472,-0.617919,-0.63176,-0.872785,-0.813688,-0.750638,-1.35213,-1.25111,-0.741003,-0.884266,-0.623672,5 +0.335797,0.281886,0.196932,-0.721254,-0.0657428,0.321215,0.612622,0.849398,1.33196,0.526914,1.26199,-0.2082,0.962148,0.76299,-1.06204,-0.0249102,-0.314181,0.0212782,-0.602761,-0.116825,-0.749322,0.463709,-0.280811,-0.414455,0.474644,0.318555,-0.472525,0.522162,-0.0476516,0.381177,0.428761,-0.356664,-0.27609,-0.284599,-0.170502,0.380511,-0.323268,-0.595289,-0.210426,-0.600678,-0.511752,-0.843642,-0.704172,-1.09653,-0.757926,-1.1181,-0.507418,-0.413569,-1.02787,-0.225989,-0.227121,-0.547739,-0.834157,-0.959896,-0.756357,-0.557384,-0.923282,-0.805056,-0.869383,-0.483296,5 +1.40034,-0.301394,0.22175,-0.73383,0.384021,0.419653,-1.38615,-0.234426,1.42115,0.987874,-0.362483,-0.676704,-0.177467,0.538835,-0.0261389,0.57114,-0.54062,-0.00929659,0.131052,-0.167839,-1.8263,-1.6272,-1.55679,-1.69128,-0.675242,-1.13704,-1.17226,-0.658302,-0.815775,-1.25195,-0.668163,-1.09907,-1.31877,-0.610846,-1.13291,-0.281519,-0.862398,-0.232502,-0.597325,-0.489178,-0.55751,-0.788151,-1.0535,-1.04944,-0.718921,-0.821608,-0.997564,-0.601044,-1.01349,-0.351061,-0.543016,-0.675189,-0.557101,-0.841014,-0.894113,-0.855933,-0.901828,-0.437239,-0.694925,-0.671623,5 +-0.694153,0.696732,0.220494,-0.484391,-0.469435,1.02457,-0.992519,0.0436593,-0.1905,0.805362,-0.0908426,0.380958,-0.797421,-0.712696,-0.0089574,-0.104228,-0.796037,-0.390365,0.427821,0.851285,-0.0115654,-2.40412,-1.03456,-1.49476,-1.31221,-1.85128,-1.14861,-1.99492,-1.5226,-2.18864,-1.85308,-1.16253,-1.35642,-1.53008,-1.45202,-1.53985,-0.841282,-1.30286,-1.48502,-1.06933,-0.729865,-1.30256,-1.12015,-0.895685,-1.47313,-1.01092,-1.24802,-0.859138,-0.855967,-1.22463,-1.29539,-1.13197,-1.31364,-1.1396,-1.3567,-1.27835,-0.919364,-0.604182,-0.937012,-0.667936,5 +-1.28331,1.13094,-0.516359,0.474954,0.506043,-1.30634,0.0875412,1.19919,-0.654537,0.636452,0.372848,-0.113726,-0.164978,0.263939,0.449879,-1.18346,-0.689204,-0.720361,-0.871268,0.0805654,0.455572,0.525279,-0.567743,0.482877,-0.460287,0.610202,-0.345047,0.260775,0.390252,-0.130779,0.14582,-0.317453,-0.556381,0.142477,-0.705341,-0.284235,-1.02225,-0.542922,-0.472124,-0.993705,-0.902058,-0.866705,-0.571906,-0.844645,-0.344633,-0.427838,-1.08814,-0.848741,-0.822684,-0.795573,-0.189602,-0.335536,-0.433047,-0.381451,-0.890869,-0.276187,-0.792914,-0.369838,-0.726633,-0.349817,5 +1.61999,-0.675809,-1.48742,0.268237,-1.24284,-0.510163,1.3735,-0.320992,0.343478,0.914969,-0.188784,-0.500142,-0.0839206,-1.02351,0.0587311,-0.689966,0.114939,-0.934043,0.371559,0.479488,0.833409,-0.464177,-0.596545,-0.0432773,0.735674,0.171258,-0.0727115,-0.228774,-0.0656829,0.233213,0.462298,-0.00729921,-0.550251,0.124623,-0.0857755,0.169997,-1.30082,-1.4234,-1.21788,-0.859591,-1.57221,-1.54318,-1.084,-1.62417,-1.22075,-0.959982,-1.60411,-0.940448,-1.20927,-0.841449,-0.790528,-1.34311,-0.898549,-1.48493,-1.00429,-0.978903,-1.21084,-0.825531,-1.27139,-0.970591,5 +0.114885,0.0336955,0.128378,-0.0674504,0.519709,-0.0924756,-0.403371,1.18086,-0.165983,0.0885208,-0.164921,1.25406,1.0221,-0.579988,-0.64907,-0.539368,0.130645,-0.962556,0.277582,-0.169894,0.635584,0.696314,-0.584192,-0.0839266,-0.524098,-0.635214,-0.434117,-0.00565449,-0.262877,-0.847115,-0.921685,-1.29381,-0.636522,-0.710926,-0.537492,-0.643008,-1.12825,-1.4263,-1.27662,-0.684346,-1.37682,-0.574013,-0.639528,-1.17779,-1.22631,-0.702044,-1.1059,-0.796004,-1.03473,-0.467993,-0.411741,-0.467163,-0.89877,-0.721165,-0.597616,-0.761739,-0.580006,-0.747018,-0.937229,-0.891434,5 +-1.01971,-1.05879,0.655686,-0.0288857,0.0928799,-0.0406732,1.21125,0.617036,1.36268,0.175938,0.382845,-0.338876,-0.632983,-0.89917,0.710785,0.257082,0.182604,-1.02803,0.580962,-0.579266,-2.65417,-1.92811,-1.5,-1.85435,-2.29171,-2.40325,-1.61766,-1.26503,-2.06737,-1.24302,-1.55972,-1.37772,-1.2295,-1.88463,-1.58758,-1.76072,-0.895338,-1.72839,-1.56512,-1.39502,-0.962373,-1.72712,-1.40051,-1.43637,-0.892074,-0.835284,-1.40278,-0.875231,-1.22947,-1.09395,-0.771206,-1.25939,-0.754402,-0.759853,-0.706983,-1.20675,-0.92563,-1.35506,-0.688617,-0.779361,5 +0.496546,-0.509394,-1.42585,0.304612,-0.0012422,-1.23288,0.673007,0.378437,1.05468,-0.580747,1.36097,0.609636,0.865456,-0.663568,-0.722685,-0.031426,-0.410674,0.377353,0.656315,0.0446097,0.82243,-0.126056,0.35179,0.426142,0.182577,-0.0458918,0.203159,-0.343103,-0.467283,-0.329953,-0.208906,0.10937,0.152775,0.390534,-0.502097,-0.346007,-1.42423,-0.606585,-1.27816,-1.36431,-0.552078,-0.537533,-1.19491,-1.22704,-1.25463,-1.34634,-0.731293,-1.34619,-0.696541,-1.11707,-0.610721,-0.786175,-1.2086,-1.17984,-0.681406,-0.991029,-0.488043,-0.733436,-0.945626,-0.873677,5 +-1.21439,0.0188556,0.189396,0.60129,-0.592208,0.038554,0.793262,0.254772,-0.276328,0.424039,0.932166,-0.357681,-0.952332,0.336091,-1.05791,-0.76778,0.402067,-0.985564,-0.783654,-0.59842,0.154285,0.555815,-0.376911,0.379828,-0.587057,-0.113411,-0.190819,0.134744,-0.485314,0.373876,-0.142219,-0.107475,0.331399,-0.536769,-0.177722,0.2602,-0.238525,0.450276,0.106463,-1.24879,-1.83584,-1.05271,-1.02489,-1.50459,-1.65901,-1.25442,-1.55187,-1.74907,-0.97988,-1.43004,-1.29559,-1.07559,-1.59446,-1.11002,-1.54323,-1.27932,-0.882332,-0.897487,-1.00974,-1.16219,5 +0.65927,0.219159,-0.764539,-1.07864,-1.2049,-0.545426,-0.639977,-0.246105,-0.779979,1.10782,-0.640817,1.31155,-0.0796236,-0.880636,-0.553297,-1.05579,-0.52256,-0.0265375,0.476431,0.470503,-0.262991,-0.343696,0.771444,-0.451471,-0.0593525,-0.873587,-1.53004,-1.46143,-2.17723,-1.29805,-0.849263,-0.867276,-1.15272,-1.40161,-0.935305,-1.69244,-1.63105,-1.38749,-0.794766,-1.12282,-0.979455,-1.51682,-1.48337,-1.15007,-1.22162,-1.38299,-1.28706,-1.23255,-1.16369,-1.29103,-0.698632,-0.832485,-1.24177,-1.30208,-0.574271,-0.863986,-1.06309,-0.83453,-1.23456,-1.19726,5 +1.1152,-0.917024,0.53799,-1.27459,-0.984725,0.291781,-0.529099,0.937835,0.0379558,-0.173148,0.345682,0.85222,-0.00401503,0.572638,-1.17565,-0.761178,-0.370993,0.703132,-0.341783,-0.784271,0.271534,0.0657135,0.563033,-1.42493,-1.42942,-1.40153,-1.10964,-1.95514,-1.43508,-0.936788,-1.07061,-1.2734,-0.986343,-1.59542,-0.913998,-1.05065,-0.917343,-1.62003,-0.998299,-0.895626,-1.18947,-1.32273,-0.950912,-1.06131,-1.07013,-0.914116,-1.2183,-0.961189,-0.632504,-1.18943,-1.27539,-1.1718,-0.633415,-0.791613,-0.938523,-0.564926,-1.22327,-0.979328,-1.25711,-0.705881,5 +0.997332,0.177838,-0.861337,-0.843142,-0.109946,1.00105,0.133076,1.0935,0.487422,0.933259,0.758203,-0.425843,0.871564,-0.635572,-0.314602,-0.337207,-0.823722,-0.23794,-0.139457,0.668704,-0.242761,-0.430308,-0.328761,-0.0141267,0.376381,0.424825,0.607252,0.0302011,-0.210756,-0.246639,-0.339144,-0.00844674,-1.36011,-1.88862,-1.84277,-1.77774,-1.54353,-1.44691,-0.847817,-0.810496,-1.27075,-1.56967,-1.14512,-1.24477,-1.00218,-1.03683,-1.06489,-1.18686,-0.738457,-1.3818,-0.654815,-0.927384,-1.21581,-1.35428,-1.10787,-1.37277,-1.23938,-1.21714,-1.16117,-0.654261,5 +1.26797,0.759699,-0.129947,0.338865,-0.591054,0.577776,-0.382457,0.485306,0.777471,0.73383,0.231773,0.416934,0.726929,-0.183609,-0.577777,0.541195,-0.72534,0.487295,-0.803272,-0.50871,-0.681423,0.807695,-0.658911,0.330506,-0.651443,-0.0252385,0.524647,-0.203939,0.0314451,0.408798,-0.447437,-0.267886,0.395113,0.321513,0.0951503,-0.419064,-0.207075,-0.397434,0.223399,-0.768677,-0.940109,-0.527016,-1.077,-0.746683,-0.516219,-0.957331,-0.511929,-0.438879,-0.600033,-0.576908,-0.763541,-0.874798,-1.17799,-0.716961,-0.729195,-0.691849,-0.445444,-0.582208,-1.00661,-0.618714,5 +0.911307,0.0346576,-0.154061,-0.36791,-0.287474,-1.24732,-1.17252,1.09398,-0.0109842,0.751108,0.197401,1.16117,-0.933461,0.5539,0.488762,0.376145,-0.338387,0.13305,0.38011,-0.165083,-0.016912,0.195901,0.0527031,-0.728212,-0.891946,-1.66427,-0.52035,-0.739187,-0.967063,-0.786509,-0.79938,-0.37661,-0.346754,-0.522667,-0.823973,-0.362635,-0.582419,-0.910474,-0.316309,-0.690521,-0.664263,-0.425898,-0.417034,-1.10821,-0.438201,-0.70691,-0.330761,-0.800021,-0.747828,-1.05004,-0.712823,-0.559336,-0.858231,-0.468505,-0.522025,-1.00405,-0.527799,-0.487591,-0.382812,-0.755103,5 +-0.752886,0.726676,-0.777614,-0.270779,0.750911,0.978262,0.209048,-0.317422,-0.772948,1.01449,-0.500131,0.272202,-1.01505,0.158059,-1.15194,-0.104981,-0.687017,-0.202017,-0.273213,-0.693518,-0.321128,-0.509128,0.0354164,0.585485,-0.383007,-0.117185,0.405246,0.633871,-0.284821,-0.586895,-0.0780953,-0.0880834,0.39109,0.246956,-0.385883,-0.456274,0.108096,-0.0465438,-0.310573,-1.22667,-1.45556,-1.90045,-1.35165,-1.76433,-1.5885,-1.25909,-1.3598,-1.1103,-1.58092,-1.1811,-1.33455,-1.32487,-0.968078,-0.988121,-1.51691,-1.26178,-1.24733,-1.4296,-1.3859,-1.51268,5 +-0.054275,-1.51072,-0.0476132,-1.24922,-0.253438,-0.811151,0.785947,-1.02081,0.0331238,0.721087,-0.50928,0.840847,0.488291,0.534216,-0.649651,-0.378097,-0.214274,-0.127146,-0.610227,-0.433559,0.65616,-0.0786819,0.539895,-0.0824465,0.41867,-0.472835,-0.11422,-0.0157753,0.43493,0.557537,-0.422095,0.167758,0.300272,-0.778599,-1.26118,-1.07837,-1.23158,-0.846835,-1.40044,-1.16693,-0.820337,-1.44053,-0.933517,-1.52644,-1.13337,-0.709518,-1.32382,-0.834481,-1.36841,-0.821219,-0.974957,-0.880035,-1.23328,-0.740009,-0.957836,-1.01437,-0.831991,-1.05541,-1.06558,-1.06931,5 +-0.699074,-0.466919,-0.822493,-0.497274,-0.00965054,-0.070262,-0.268069,0.782726,-0.342396,-0.699061,1.29784,-0.553141,0.822413,-0.933363,0.371867,0.247471,-0.256075,-0.224684,-0.92843,0.524834,-0.41169,0.102019,0.8003,0.719837,0.0672861,-0.361072,0.0438746,0.400204,0.378129,-0.453156,-0.0561927,0.388132,0.391891,-0.270654,-0.190445,0.495497,-1.15407,-0.718933,-1.10737,-1.12061,-0.585004,-0.836043,-0.349412,-0.897417,-0.37637,-1.13312,-0.651018,-0.889623,-0.498393,-0.713269,-0.879551,-0.748875,-0.868403,-0.681241,-0.500534,-0.68643,-0.519541,-0.732453,-0.387773,-0.487574,5 +-1.60424,0.511172,0.43436,-0.423516,-0.592684,-1.14491,-0.817475,0.0988678,0.383864,-0.14603,-0.701984,0.74733,0.814752,-1.18327,-0.57287,0.523973,-0.521036,-0.929361,-0.256513,-0.321488,0.580376,-0.660642,0.0253635,0.669438,-0.202372,-1.10882,-1.90116,-1.08559,-1.63569,-1.15293,-1.58956,-0.917777,-1.09114,-0.894223,-1.52153,-1.67183,-1.43713,-0.93874,-1.62374,-0.844997,-0.810954,-1.04847,-1.6129,-1.2386,-1.28543,-1.55892,-1.17066,-1.26829,-1.14633,-1.17442,-1.39752,-0.806907,-1.19093,-0.794594,-0.775022,-1.20682,-0.636838,-0.610038,-0.932576,-1.05316,5 +1.56326,-1.27799,-0.377423,-0.347293,-0.751508,-0.561811,-0.901843,0.816213,1.17758,0.122389,1.15723,1.08171,-0.192095,-0.0633499,-0.907373,-1.05352,0.720394,-0.255305,-0.941421,-0.822236,-0.23013,-0.406242,-0.0672666,-0.0899941,-0.11414,0.480209,-0.486049,0.33431,0.260843,0.144587,0.462788,0.239002,-0.557849,0.531775,0.128233,-1.69443,-0.804267,-1.64099,-1.16954,-1.522,-0.819698,-1.20269,-1.52495,-1.05662,-0.841803,-1.46777,-1.22486,-1.31393,-1.42299,-0.947763,-0.659033,-0.872671,-0.752415,-1.34938,-1.26525,-1.21021,-1.33503,-0.850978,-0.971637,-1.24889,5 +0.286219,-0.667054,-0.983296,-0.968298,-0.402168,-0.933017,-0.541643,-0.746981,0.988196,-0.353822,0.398477,0.394189,-1.0693,0.93618,-1.00083,-0.900045,-0.409266,0.263706,0.517359,0.597913,0.814545,-0.00071555,-0.505524,0.274627,0.687406,0.0825829,-0.530795,-0.671077,-0.54935,0.0871551,-0.110485,0.155261,-0.313443,-0.187818,0.131688,-1.15806,-1.83489,-1.09511,-1.18034,-1.54019,-1.74656,-1.52541,-0.978938,-1.03207,-1.21048,-1.07493,-1.70729,-1.25039,-0.986131,-1.06207,-1.40527,-1.42025,-1.25053,-1.3982,-0.791522,-1.37773,-1.31357,-0.898431,-1.1609,-0.958828,5 +-0.113208,-1.30113,-0.0569009,-0.130601,0.328387,-0.639823,-0.326834,0.332477,-0.589352,-0.251085,0.646961,-0.888416,0.277995,0.193086,0.686815,-0.332435,-0.466576,0.784391,0.176931,0.376324,-0.178166,0.0961538,0.291924,-0.0672167,-0.674631,-0.515101,-1.6638,-0.950431,-1.34562,-0.621021,-1.1869,-0.375238,-0.574381,-0.399604,-0.455636,-1.12835,-0.361663,-0.620906,-0.200052,-0.408346,-0.325926,-0.672876,-0.335158,-1.1305,-0.442555,-0.402054,-0.627528,-0.973646,-1.1017,-0.896814,-0.212265,-0.746407,-0.573227,-0.396895,-0.515774,-0.736996,-0.987592,-0.495825,-0.59944,-0.390918,5 +-0.745734,-1.32665,-1.03474,-0.0430181,-1.03155,-0.823229,0.0571768,1.24373,-0.170476,0.403859,-0.113681,0.613483,0.542488,-0.646277,-1.04687,0.241947,-0.944555,0.302715,0.663439,0.562736,-0.102503,-0.0638128,0.377241,-0.0710823,-0.399077,0.386454,0.361975,-0.116556,0.491644,-0.408921,0.456366,0.449165,-0.122225,0.38925,0.183217,0.413362,-0.166021,-1.51619,-0.737886,-0.794415,-1.21545,-1.21519,-1.14481,-1.58533,-1.47561,-1.01117,-0.953269,-0.76793,-0.865024,-1.04049,-0.753031,-1.26416,-0.880928,-0.763388,-1.23909,-1.06989,-0.661537,-1.2483,-1.2838,-1.25992,5 +1.68155,-1.02009,0.436663,0.615491,-1.21917,-1.39877,-1.09031,0.319121,1.08064,0.730361,0.508218,0.995282,-0.971257,0.975419,-0.0457649,-0.365476,-0.406168,-0.134324,0.264591,0.478507,-0.537125,-0.421483,-0.556241,-0.856191,-1.44474,-1.53047,-1.40425,-0.744369,-0.656289,-0.948907,-1.48333,-0.867247,-0.886611,-0.708533,-0.730804,-0.374033,-0.779281,-0.683728,-0.289728,-0.28794,-0.72117,-0.392622,-0.880133,-0.529546,-1.06433,-0.561048,-0.613868,-0.322208,-0.766053,-0.256166,-0.556811,-0.947055,-0.991716,-0.852821,-0.837821,-0.888881,-0.904433,-0.93167,-0.764354,-0.822167,5 +-1.56853,-1.59533,-0.688087,-0.872245,-0.933139,0.202904,0.626957,0.287463,1.39015,-0.506331,0.555767,-0.67036,-0.548708,0.0442932,-1.13703,-0.945639,-0.959649,-0.0711283,-0.104799,-0.717997,-0.701728,0.839195,-0.421498,-2.45903,-2.04665,-1.49769,-1.22416,-1.97541,-1.3595,-2.35862,-1.38792,-1.35058,-1.4138,-1.91758,-1.77189,-1.18669,-1.47393,-1.75816,-0.799469,-1.50077,-1.56893,-1.57751,-1.2211,-0.865842,-1.08293,-0.958457,-1.3373,-1.1991,-1.29739,-0.732806,-0.714967,-1.25934,-0.982673,-1.14183,-1.13569,-1.46011,-1.20149,-0.708313,-1.09034,-0.823126,5 +1.23424,0.0058676,0.0106826,-0.185454,-1.32579,-1.50103,-0.628342,0.156593,-0.31927,0.816456,0.568095,-0.519435,-0.636933,0.936643,0.302385,-0.600233,-0.300064,0.161175,0.670159,-0.773231,0.561573,-0.319437,-0.0750323,-0.381757,0.607621,0.450524,-2.47552,-2.05794,-1.9562,-2.53818,-1.71178,-1.32044,-1.15361,-2.05624,-1.83121,-1.83712,-1.42753,-1.41789,-1.80786,-0.94187,-1.32761,-1.84195,-1.41109,-1.41141,-1.01532,-1.46244,-1.51549,-1.15234,-1.05658,-1.34739,-1.35454,-1.00371,-1.4218,-0.78776,-1.35626,-1.0105,-1.07807,-1.20794,-1.17364,-1.29673,5 diff --git a/data/tic-tac-toe.arff b/data/tic-tac-toe.arff new file mode 100755 index 0000000..b7febcd --- /dev/null +++ b/data/tic-tac-toe.arff @@ -0,0 +1,970 @@ +@relation tic-tac-toe +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'clase' {0,1} +@data +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,1.22296,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,1.22296,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,1.22296,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,1.22296,1.23091,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,1.22296,0.098142,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,1.22296,0.098142,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,0.0583518,1.23091,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,0.0583518,1.23091,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,-1.10625,1.24135,0.0583518,0.098142,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,-1.10625,0.136133,1.22296,1.23091,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,-1.10625,0.136133,1.22296,1.23091,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,-1.10625,0.136133,1.22296,0.098142,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,1.22296,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,1.22296,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,1.22296,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,1.22296,1.23091,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,1.22296,0.098142,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,1.22296,0.098142,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,1.23091,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,1.23091,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,0.098142,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,-1.10625,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,-1.10625,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,-1.10625,1.23091,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,-1.10625,0.098142,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,-1.10625,0.098142,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,0.0583518,-1.03463,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,0.0583518,-1.03463,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,0.0583518,1.23091,-1.10625,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,0.0583518,1.23091,0.0583518,-1.03463,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,0.0583518,0.098142,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,0.0583518,0.098142,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,1.22296,1.24135,0.0583518,0.098142,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,-1.10625,1.23091,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,-1.10625,1.23091,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,-1.10625,0.098142,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,1.22296,1.23091,-1.10625,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,1.22296,0.098142,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,1.22296,0.098142,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,0.0583518,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,0.0583518,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,0.0583518,1.23091,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,0.0583518,0.098142,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,1.22296,0.136133,0.0583518,0.098142,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,1.23091,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,1.23091,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,0.098142,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,1.23091,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,1.23091,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,0.098142,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,1.22296,1.23091,-1.10625,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,1.22296,0.098142,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,1.22296,0.098142,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,0.0583518,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,0.0583518,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,0.0583518,1.23091,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,0.0583518,0.098142,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,1.24135,0.0583518,0.098142,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,1.22296,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,1.22296,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,1.22296,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,1.22296,1.23091,0.0583518,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,1.22296,0.098142,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,1.22296,0.098142,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,0.0583518,1.23091,1.22296,0.098142,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,0.0583518,1.23091,0.0583518,1.23091,1 +-1.03463,-1.10625,-1.03463,0.0583518,0.136133,0.0583518,0.098142,1.22296,1.23091,1 +-1.03463,-1.10625,1.23091,-1.10625,-0.96908,1.22296,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,-1.10625,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,1.22296,-1.03463,0.0583518,0.098142,1 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,0.0583518,-1.03463,1.22296,0.098142,1 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,0.0583518,-1.03463,0.0583518,1.23091,1 +-1.03463,-1.10625,1.23091,-1.10625,0.136133,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,-1.10625,1.23091,-1.10625,0.136133,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,1.22296,0.098142,-1.10625,0.098142,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,1.22296,0.098142,0.0583518,-1.03463,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,0.0583518,1.23091,-1.10625,0.098142,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,0.0583518,1.23091,0.0583518,-1.03463,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,0.0583518,0.098142,-1.10625,1.23091,1 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,0.0583518,0.098142,1.22296,-1.03463,1 +-1.03463,-1.10625,1.23091,0.0583518,-0.96908,1.22296,1.23091,-1.10625,0.098142,1 +-1.03463,-1.10625,1.23091,0.0583518,-0.96908,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,-1.10625,1.23091,0.0583518,-0.96908,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,-1.10625,1.23091,0.0583518,-0.96908,0.0583518,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,1.23091,0.0583518,-0.96908,0.0583518,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,0.098142,-1.10625,1.24135,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,-1.10625,0.098142,-1.10625,1.24135,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,-1.10625,0.098142,-1.10625,1.24135,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,0.098142,-1.10625,0.136133,1.22296,-1.03463,1.22296,1.23091,1 +-1.03463,-1.10625,0.098142,1.22296,-0.96908,1.22296,1.23091,-1.10625,0.098142,1 +-1.03463,-1.10625,0.098142,1.22296,-0.96908,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,-1.10625,0.098142,1.22296,-0.96908,1.22296,0.098142,-1.10625,1.23091,1 +-1.03463,-1.10625,0.098142,1.22296,-0.96908,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,-1.10625,0.098142,1.22296,-0.96908,0.0583518,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,0.098142,1.22296,-0.96908,0.0583518,1.23091,1.22296,-1.03463,1 +-1.03463,-1.10625,0.098142,0.0583518,-0.96908,1.22296,1.23091,-1.10625,1.23091,1 +-1.03463,-1.10625,0.098142,0.0583518,-0.96908,1.22296,1.23091,1.22296,-1.03463,1 +-1.03463,1.22296,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,1.22296,1.23091,1 +-1.03463,1.22296,-1.03463,-1.10625,-0.96908,1.22296,1.23091,1.22296,-1.03463,1 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,1.22296,-1.03463,-1.10625,1.23091,1 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,1.22296,-1.03463,0.0583518,0.098142,1 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,0.0583518,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,-1.03463,-1.10625,0.136133,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,1.22296,-1.03463,-1.10625,0.136133,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,-1.03463,-1.10625,0.136133,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,1.22296,-1.03463,-1.10625,1.23091,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,1.22296,-1.03463,0.0583518,0.098142,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,1.22296,0.098142,0.0583518,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,1.22296,0.098142,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,0.0583518,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,0.0583518,0.098142,1.22296,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,1.24135,-1.10625,1.23091,-1.10625,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,1.24135,-1.10625,0.098142,0.0583518,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,0.136133,-1.10625,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,-1.03463,1.22296,0.136133,-1.10625,0.098142,1.22296,-1.03463,1 +-1.03463,1.22296,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,1.22296,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,-1.03463,0.0583518,-0.96908,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,-1.03463,0.0583518,-0.96908,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,1.22296,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,1.22296,-1.03463,0.0583518,-0.96908,0.0583518,1.23091,1.22296,-1.03463,1 +-1.03463,1.22296,-1.03463,0.0583518,1.24135,-1.10625,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,-1.03463,0.0583518,0.136133,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,0.098142,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,-1.10625,0.098142,1.22296,0.098142,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,1.23091,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,1.22296,-1.03463,0.0583518,0.098142,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,1.22296,0.098142,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,0.0583518,-1.03463,1.22296,0.098142,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,0.0583518,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,0.0583518,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,0.0583518,0.098142,1.22296,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,1.24135,-1.10625,-1.03463,-1.10625,1.23091,1 +-1.03463,1.22296,1.23091,-1.10625,1.24135,-1.10625,-1.03463,0.0583518,0.098142,1 +-1.03463,1.22296,1.23091,-1.10625,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,0.098142,1 +-1.03463,1.22296,1.23091,-1.10625,1.24135,0.0583518,-1.03463,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,0.136133,-1.10625,-1.03463,1.22296,0.098142,1 +-1.03463,1.22296,1.23091,-1.10625,0.136133,-1.10625,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,1.23091,-1.10625,0.136133,1.22296,-1.03463,-1.10625,0.098142,1 +-1.03463,1.22296,1.23091,-1.10625,0.136133,1.22296,-1.03463,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,0.136133,0.0583518,-1.03463,-1.10625,1.23091,1 +-1.03463,1.22296,1.23091,-1.10625,0.136133,0.0583518,-1.03463,1.22296,-1.03463,1 +-1.03463,1.22296,1.23091,-1.10625,0.136133,0.0583518,-1.03463,0.0583518,0.098142,1 +-1.03463,1.22296,1.23091,1.22296,-0.96908,-1.10625,-1.03463,1.22296,-1.03463,1 +-1.03463,1.22296,1.23091,1.22296,-0.96908,-1.10625,1.23091,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,1.22296,-0.96908,-1.10625,0.098142,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,1.22296,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,1.22296,-0.96908,0.0583518,-1.03463,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,1.22296,-0.96908,0.0583518,0.098142,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,1.22296,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,1.22296,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,-0.96908,1.22296,0.098142,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,-0.96908,0.0583518,-1.03463,1.22296,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,-0.96908,0.0583518,1.23091,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,-0.96908,0.0583518,0.098142,0.0583518,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +-1.03463,1.22296,1.23091,0.0583518,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,-1.10625,1.23091,1.22296,0.098142,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,1.23091,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,-1.10625,0.098142,1.22296,1.23091,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,1.22296,0.098142,-1.10625,-0.96908,0.0583518,1.23091,1.22296,-1.03463,1 +-1.03463,1.22296,0.098142,-1.10625,1.24135,-1.10625,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,0.098142,-1.10625,1.24135,1.22296,-1.03463,-1.10625,0.098142,1 +-1.03463,1.22296,0.098142,-1.10625,1.24135,1.22296,-1.03463,0.0583518,-1.03463,1 +-1.03463,1.22296,0.098142,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,1.23091,1 +-1.03463,1.22296,0.098142,-1.10625,1.24135,0.0583518,-1.03463,0.0583518,0.098142,1 +-1.03463,1.22296,0.098142,-1.10625,0.136133,-1.10625,-1.03463,1.22296,1.23091,1 +-1.03463,1.22296,0.098142,-1.10625,0.136133,1.22296,-1.03463,-1.10625,1.23091,1 +-1.03463,1.22296,0.098142,-1.10625,0.136133,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,1.22296,0.098142,-1.10625,0.136133,1.22296,-1.03463,0.0583518,0.098142,1 +-1.03463,1.22296,0.098142,-1.10625,0.136133,0.0583518,-1.03463,1.22296,0.098142,1 +-1.03463,1.22296,0.098142,-1.10625,0.136133,0.0583518,-1.03463,0.0583518,1.23091,1 +-1.03463,1.22296,0.098142,1.22296,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,0.098142,1.22296,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +-1.03463,1.22296,0.098142,1.22296,-0.96908,1.22296,-1.03463,0.0583518,-1.03463,1 +-1.03463,1.22296,0.098142,1.22296,-0.96908,1.22296,0.098142,-1.10625,-1.03463,1 +-1.03463,1.22296,0.098142,1.22296,-0.96908,0.0583518,-1.03463,1.22296,-1.03463,1 +-1.03463,1.22296,0.098142,1.22296,-0.96908,0.0583518,1.23091,-1.10625,-1.03463,1 +-1.03463,1.22296,0.098142,1.22296,-0.96908,0.0583518,0.098142,0.0583518,-1.03463,1 +-1.03463,1.22296,0.098142,1.22296,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +-1.03463,1.22296,0.098142,1.22296,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +-1.03463,1.22296,0.098142,0.0583518,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,1.22296,0.098142,0.0583518,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,1.22296,0.098142,0.0583518,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +-1.03463,1.22296,0.098142,0.0583518,-0.96908,1.22296,0.098142,0.0583518,-1.03463,1 +-1.03463,1.22296,0.098142,0.0583518,-0.96908,0.0583518,1.23091,0.0583518,-1.03463,1 +-1.03463,1.22296,0.098142,0.0583518,-0.96908,0.0583518,0.098142,1.22296,-1.03463,1 +-1.03463,1.22296,0.098142,0.0583518,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +-1.03463,0.0583518,-1.03463,-1.10625,1.24135,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,0.0583518,-1.03463,-1.10625,1.24135,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,0.0583518,-1.03463,-1.10625,1.24135,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,-1.03463,-1.10625,0.136133,1.22296,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,-1.03463,1.22296,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,0.0583518,-1.03463,1.22296,-0.96908,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,0.0583518,-1.03463,1.22296,-0.96908,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,0.0583518,-1.03463,1.22296,-0.96908,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,1.23091,1.22296,-1.03463,1 +-1.03463,0.0583518,-1.03463,1.22296,1.24135,-1.10625,1.23091,0.0583518,-1.03463,1 +-1.03463,0.0583518,-1.03463,1.22296,1.24135,-1.10625,0.098142,1.22296,-1.03463,1 +-1.03463,0.0583518,-1.03463,1.22296,0.136133,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,0.0583518,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,-1.03463,0.0583518,-0.96908,1.22296,1.23091,1.22296,-1.03463,1 +-1.03463,0.0583518,-1.03463,0.0583518,1.24135,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,1.23091,1.22296,0.098142,1 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,1.23091,1 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,0.098142,1.22296,1.23091,1 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,0.0583518,1.23091,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,-1.10625,-1.03463,1.22296,0.098142,1 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,-1.10625,-1.03463,0.0583518,1.23091,1 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,1.22296,-1.03463,-1.10625,0.098142,1 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,1.22296,-1.03463,0.0583518,-1.03463,1 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,1.23091,1 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,0.0583518,-1.03463,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,0.0583518,-1.03463,0.0583518,0.098142,1 +-1.03463,0.0583518,1.23091,-1.10625,0.136133,-1.10625,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,1.23091,-1.10625,0.136133,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,-1.10625,0.136133,1.22296,-1.03463,0.0583518,0.098142,1 +-1.03463,0.0583518,1.23091,-1.10625,0.136133,0.0583518,-1.03463,1.22296,0.098142,1 +-1.03463,0.0583518,1.23091,-1.10625,0.136133,0.0583518,-1.03463,0.0583518,1.23091,1 +-1.03463,0.0583518,1.23091,1.22296,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,1 +-1.03463,0.0583518,1.23091,1.22296,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,1.22296,-0.96908,1.22296,-1.03463,0.0583518,-1.03463,1 +-1.03463,0.0583518,1.23091,1.22296,-0.96908,1.22296,0.098142,-1.10625,-1.03463,1 +-1.03463,0.0583518,1.23091,1.22296,-0.96908,0.0583518,-1.03463,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,1.22296,-0.96908,0.0583518,1.23091,-1.10625,-1.03463,1 +-1.03463,0.0583518,1.23091,1.22296,-0.96908,0.0583518,0.098142,0.0583518,-1.03463,1 +-1.03463,0.0583518,1.23091,1.22296,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +-1.03463,0.0583518,1.23091,1.22296,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +-1.03463,0.0583518,1.23091,0.0583518,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,0.0583518,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,0.0583518,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +-1.03463,0.0583518,1.23091,0.0583518,-0.96908,1.22296,0.098142,0.0583518,-1.03463,1 +-1.03463,0.0583518,1.23091,0.0583518,-0.96908,0.0583518,1.23091,0.0583518,-1.03463,1 +-1.03463,0.0583518,1.23091,0.0583518,-0.96908,0.0583518,0.098142,1.22296,-1.03463,1 +-1.03463,0.0583518,1.23091,0.0583518,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +-1.03463,0.0583518,0.098142,-1.10625,-0.96908,1.22296,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,0.098142,-1.10625,-0.96908,1.22296,1.23091,1.22296,-1.03463,1 +-1.03463,0.0583518,0.098142,-1.10625,1.24135,-1.10625,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,0.098142,-1.10625,1.24135,1.22296,-1.03463,-1.10625,1.23091,1 +-1.03463,0.0583518,0.098142,-1.10625,1.24135,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,0.0583518,0.098142,-1.10625,1.24135,1.22296,-1.03463,0.0583518,0.098142,1 +-1.03463,0.0583518,0.098142,-1.10625,1.24135,0.0583518,-1.03463,1.22296,0.098142,1 +-1.03463,0.0583518,0.098142,-1.10625,1.24135,0.0583518,-1.03463,0.0583518,1.23091,1 +-1.03463,0.0583518,0.098142,-1.10625,0.136133,1.22296,-1.03463,1.22296,0.098142,1 +-1.03463,0.0583518,0.098142,-1.10625,0.136133,1.22296,-1.03463,0.0583518,1.23091,1 +-1.03463,0.0583518,0.098142,-1.10625,0.136133,0.0583518,-1.03463,1.22296,1.23091,1 +-1.03463,0.0583518,0.098142,1.22296,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +-1.03463,0.0583518,0.098142,1.22296,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +-1.03463,0.0583518,0.098142,1.22296,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +-1.03463,0.0583518,0.098142,1.22296,-0.96908,1.22296,0.098142,0.0583518,-1.03463,1 +-1.03463,0.0583518,0.098142,1.22296,-0.96908,0.0583518,1.23091,0.0583518,-1.03463,1 +-1.03463,0.0583518,0.098142,1.22296,-0.96908,0.0583518,0.098142,1.22296,-1.03463,1 +-1.03463,0.0583518,0.098142,0.0583518,-0.96908,1.22296,1.23091,0.0583518,-1.03463,1 +-1.03463,0.0583518,0.098142,0.0583518,-0.96908,1.22296,0.098142,1.22296,-1.03463,1 +-1.03463,0.0583518,0.098142,0.0583518,-0.96908,0.0583518,1.23091,1.22296,-1.03463,1 +1.23091,-1.10625,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,1.22296,1.23091,1 +1.23091,-1.10625,-1.03463,-1.10625,-0.96908,1.22296,1.23091,-1.10625,1.23091,1 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,-1.10625,1.23091,1.22296,-1.03463,1 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,1.22296,-1.03463,-1.10625,1.23091,1 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,1.22296,-1.03463,0.0583518,0.098142,1 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,1.22296,0.098142,-1.10625,0.098142,1 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,1.22296,0.098142,1 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,0.0583518,1.23091,1 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,0.098142,-1.10625,1.23091,1 +1.23091,-1.10625,-1.03463,1.22296,1.24135,-1.10625,-1.03463,1.22296,-1.03463,1 +1.23091,-1.10625,-1.03463,1.22296,1.24135,-1.10625,0.098142,0.0583518,-1.03463,1 +1.23091,-1.10625,-1.03463,1.22296,0.136133,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +1.23091,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,1.23091,1 +1.23091,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,1.23091,-1.10625,0.098142,1 +1.23091,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,0.098142,-1.10625,1.23091,1 +1.23091,-1.10625,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +1.23091,-1.10625,-1.03463,0.0583518,-0.96908,0.0583518,1.23091,-1.10625,1.23091,1 +1.23091,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,1.23091,0.0583518,-1.03463,1 +1.23091,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,-1.10625,-1.03463,0.0583518,0.136133,-1.10625,1.23091,1.22296,-1.03463,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,0.098142,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,0.098142,1.22296,0.098142,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,1.23091,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,1.22296,0.098142,-1.10625,0.098142,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,0.0583518,1.23091,-1.10625,0.098142,1 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,0.0583518,0.098142,-1.10625,1.23091,1 +1.23091,-1.10625,1.23091,-1.10625,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,1.22296,-0.96908,-1.10625,-1.03463,-1.10625,1.23091,1 +1.23091,-1.10625,1.23091,1.22296,-0.96908,-1.10625,0.098142,-1.10625,0.098142,1 +1.23091,-1.10625,1.23091,1.22296,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,0.098142,1 +1.23091,-1.10625,1.23091,1.22296,-0.96908,0.0583518,0.098142,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,1.22296,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,1.22296,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,0.0583518,-0.96908,-1.10625,1.23091,-1.10625,0.098142,1 +1.23091,-1.10625,1.23091,0.0583518,-0.96908,-1.10625,0.098142,-1.10625,1.23091,1 +1.23091,-1.10625,1.23091,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,0.098142,1 +1.23091,-1.10625,1.23091,0.0583518,-0.96908,1.22296,0.098142,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,0.0583518,-0.96908,0.0583518,-1.03463,-1.10625,1.23091,1 +1.23091,-1.10625,1.23091,0.0583518,-0.96908,0.0583518,1.23091,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,0.0583518,-0.96908,0.0583518,0.098142,-1.10625,0.098142,1 +1.23091,-1.10625,1.23091,0.0583518,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,-1.10625,1.23091,0.0583518,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,-1.10625,0.098142,-1.10625,-0.96908,-1.10625,1.23091,1.22296,0.098142,1 +1.23091,-1.10625,0.098142,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,1.23091,1 +1.23091,-1.10625,0.098142,-1.10625,-0.96908,-1.10625,0.098142,1.22296,1.23091,1 +1.23091,-1.10625,0.098142,-1.10625,-0.96908,1.22296,1.23091,-1.10625,0.098142,1 +1.23091,-1.10625,0.098142,-1.10625,-0.96908,1.22296,0.098142,-1.10625,1.23091,1 +1.23091,-1.10625,0.098142,-1.10625,-0.96908,0.0583518,1.23091,-1.10625,1.23091,1 +1.23091,-1.10625,0.098142,1.22296,-0.96908,-1.10625,0.098142,-1.10625,1.23091,1 +1.23091,-1.10625,0.098142,1.22296,-0.96908,1.22296,-1.03463,-1.10625,0.098142,1 +1.23091,-1.10625,0.098142,1.22296,-0.96908,1.22296,0.098142,-1.10625,-1.03463,1 +1.23091,-1.10625,0.098142,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,1.23091,1 +1.23091,-1.10625,0.098142,1.22296,-0.96908,0.0583518,0.098142,-1.10625,0.098142,1 +1.23091,-1.10625,0.098142,1.22296,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,-1.10625,0.098142,1.22296,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,-1.10625,0.098142,0.0583518,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +1.23091,-1.10625,0.098142,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,1.23091,1 +1.23091,-1.10625,0.098142,0.0583518,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +1.23091,-1.10625,0.098142,0.0583518,-0.96908,1.22296,0.098142,-1.10625,0.098142,1 +1.23091,-1.10625,0.098142,0.0583518,-0.96908,0.0583518,1.23091,-1.10625,0.098142,1 +1.23091,-1.10625,0.098142,0.0583518,-0.96908,0.0583518,0.098142,-1.10625,1.23091,1 +1.23091,-1.10625,0.098142,0.0583518,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,0.098142,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,0.098142,1.22296,0.098142,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,1.23091,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,-1.10625,1.23091,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,0.0583518,0.098142,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,0.0583518,-1.03463,1.22296,0.098142,1 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,0.0583518,-1.03463,0.0583518,1.23091,1 +1.23091,1.22296,-1.03463,-1.10625,1.24135,-1.10625,1.23091,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,-1.10625,1.24135,-1.10625,0.098142,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,-1.10625,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,-1.10625,0.136133,-1.10625,1.23091,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,-1.10625,0.136133,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,1.22296,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,-1.10625,1.23091,1 +1.23091,1.22296,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,1.22296,-1.03463,1 +1.23091,1.22296,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,0.0583518,0.098142,1 +1.23091,1.22296,-1.03463,1.22296,-0.96908,-1.10625,0.098142,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,1.22296,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,0.098142,1 +1.23091,1.22296,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,1.22296,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,1.22296,0.136133,-1.10625,-1.03463,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,1.22296,0.136133,-1.10625,0.098142,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,1.22296,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,-1.10625,-1.03463,1.22296,0.098142,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,-1.10625,-1.03463,0.0583518,1.23091,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,0.098142,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,-1.10625,1.23091,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,1.22296,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,0.0583518,0.098142,1 +1.23091,1.22296,-1.03463,0.0583518,1.24135,-1.10625,-1.03463,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,1.24135,-1.10625,0.098142,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,0.136133,-1.10625,-1.03463,1.22296,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,0.136133,-1.10625,1.23091,-1.10625,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,0.136133,-1.10625,0.098142,0.0583518,-1.03463,1 +1.23091,1.22296,-1.03463,0.0583518,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,0.098142,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,0.098142,1 +1.23091,1.22296,0.098142,-1.10625,-0.96908,-1.10625,-1.03463,0.0583518,1.23091,1 +1.23091,1.22296,0.098142,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,0.098142,1 +1.23091,1.22296,0.098142,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,1 +1.23091,1.22296,0.098142,-1.10625,-0.96908,-1.10625,0.098142,-1.10625,1.23091,1 +1.23091,1.22296,0.098142,-1.10625,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,1.22296,0.098142,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,0.098142,1 +1.23091,1.22296,0.098142,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,0.098142,-1.10625,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,0.098142,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,0.098142,1.22296,0.136133,-1.10625,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,0.098142,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,0.098142,0.0583518,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +1.23091,1.22296,0.098142,0.0583518,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,-1.03463,-1.10625,-0.96908,-1.10625,1.23091,1.22296,0.098142,1 +1.23091,0.0583518,-1.03463,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,1.23091,1 +1.23091,0.0583518,-1.03463,-1.10625,-0.96908,-1.10625,0.098142,1.22296,1.23091,1 +1.23091,0.0583518,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +1.23091,0.0583518,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,0.0583518,1.23091,1 +1.23091,0.0583518,-1.03463,-1.10625,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +1.23091,0.0583518,-1.03463,-1.10625,1.24135,-1.10625,1.23091,0.0583518,-1.03463,1 +1.23091,0.0583518,-1.03463,-1.10625,1.24135,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,0.0583518,-1.03463,-1.10625,0.136133,-1.10625,1.23091,1.22296,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,1.22296,0.098142,1 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,0.0583518,1.23091,1 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,1.22296,-1.03463,-1.10625,0.098142,1 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,1.22296,-1.03463,0.0583518,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,1.23091,1 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,1.22296,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,0.0583518,0.098142,1 +1.23091,0.0583518,-1.03463,1.22296,1.24135,-1.10625,-1.03463,0.0583518,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,1.24135,-1.10625,0.098142,-1.10625,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,0.136133,-1.10625,-1.03463,1.22296,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,0.136133,-1.10625,0.098142,0.0583518,-1.03463,1 +1.23091,0.0583518,-1.03463,1.22296,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,-1.03463,0.0583518,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +1.23091,0.0583518,-1.03463,0.0583518,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +1.23091,0.0583518,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,1.23091,1 +1.23091,0.0583518,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +1.23091,0.0583518,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,0.098142,1 +1.23091,0.0583518,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,1.22296,0.098142,1 +1.23091,0.0583518,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,0.0583518,1.23091,1 +1.23091,0.0583518,-1.03463,0.0583518,1.24135,-1.10625,-1.03463,1.22296,-1.03463,1 +1.23091,0.0583518,-1.03463,0.0583518,1.24135,-1.10625,1.23091,-1.10625,-1.03463,1 +1.23091,0.0583518,-1.03463,0.0583518,1.24135,-1.10625,0.098142,0.0583518,-1.03463,1 +1.23091,0.0583518,-1.03463,0.0583518,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,-1.03463,0.0583518,0.136133,-1.10625,1.23091,0.0583518,-1.03463,1 +1.23091,0.0583518,-1.03463,0.0583518,0.136133,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,0.098142,1 +1.23091,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,-1.03463,0.0583518,1.23091,1 +1.23091,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,0.098142,1 +1.23091,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,1 +1.23091,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,0.098142,-1.10625,1.23091,1 +1.23091,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +1.23091,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,0.098142,1 +1.23091,0.0583518,1.23091,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,1.23091,-1.10625,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,1.23091,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,1.23091,1.22296,0.136133,-1.10625,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,1.23091,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,1.23091,0.0583518,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,1.23091,0.0583518,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +1.23091,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +1.23091,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +1.23091,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,0.098142,1 +1.23091,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,0.098142,1.22296,0.098142,1 +1.23091,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,1.23091,1 +1.23091,0.0583518,0.098142,-1.10625,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,0.098142,1.22296,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,0.098142,1.22296,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,0.098142,1.22296,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,0.098142,0.0583518,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +1.23091,0.0583518,0.098142,0.0583518,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,-1.10625,-1.03463,1.22296,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +0.098142,-1.10625,-1.03463,1.22296,-0.96908,1.22296,-1.03463,0.0583518,1.23091,1 +0.098142,-1.10625,-1.03463,1.22296,-0.96908,1.22296,1.23091,-1.10625,0.098142,1 +0.098142,-1.10625,-1.03463,1.22296,-0.96908,1.22296,0.098142,-1.10625,1.23091,1 +0.098142,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +0.098142,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,1.23091,-1.10625,1.23091,1 +0.098142,-1.10625,-1.03463,1.22296,1.24135,-1.10625,1.23091,0.0583518,-1.03463,1 +0.098142,-1.10625,-1.03463,1.22296,1.24135,-1.10625,0.098142,1.22296,-1.03463,1 +0.098142,-1.10625,-1.03463,1.22296,0.136133,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,1.22296,1.23091,1 +0.098142,-1.10625,-1.03463,0.0583518,-0.96908,1.22296,1.23091,-1.10625,1.23091,1 +0.098142,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,1.23091,1.22296,0.098142,1 +0.098142,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,1.23091,1 +0.098142,-1.10625,1.23091,-1.10625,-0.96908,-1.10625,0.098142,1.22296,1.23091,1 +0.098142,-1.10625,1.23091,-1.10625,-0.96908,1.22296,1.23091,-1.10625,0.098142,1 +0.098142,-1.10625,1.23091,-1.10625,-0.96908,0.0583518,1.23091,-1.10625,1.23091,1 +0.098142,-1.10625,1.23091,1.22296,-0.96908,-1.10625,1.23091,-1.10625,0.098142,1 +0.098142,-1.10625,1.23091,1.22296,-0.96908,-1.10625,0.098142,-1.10625,1.23091,1 +0.098142,-1.10625,1.23091,1.22296,-0.96908,1.22296,-1.03463,-1.10625,0.098142,1 +0.098142,-1.10625,1.23091,1.22296,-0.96908,1.22296,0.098142,-1.10625,-1.03463,1 +0.098142,-1.10625,1.23091,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,1.23091,1 +0.098142,-1.10625,1.23091,1.22296,-0.96908,0.0583518,1.23091,-1.10625,-1.03463,1 +0.098142,-1.10625,1.23091,1.22296,-0.96908,0.0583518,0.098142,-1.10625,0.098142,1 +0.098142,-1.10625,1.23091,1.22296,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,-1.10625,1.23091,1.22296,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,-1.10625,1.23091,0.0583518,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +0.098142,-1.10625,1.23091,0.0583518,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +0.098142,-1.10625,1.23091,0.0583518,-0.96908,1.22296,0.098142,-1.10625,0.098142,1 +0.098142,-1.10625,1.23091,0.0583518,-0.96908,0.0583518,1.23091,-1.10625,0.098142,1 +0.098142,-1.10625,1.23091,0.0583518,-0.96908,0.0583518,0.098142,-1.10625,1.23091,1 +0.098142,-1.10625,1.23091,0.0583518,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,-1.10625,0.098142,-1.10625,-0.96908,1.22296,1.23091,-1.10625,1.23091,1 +0.098142,-1.10625,0.098142,1.22296,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +0.098142,-1.10625,0.098142,1.22296,-0.96908,1.22296,-1.03463,-1.10625,1.23091,1 +0.098142,-1.10625,0.098142,1.22296,-0.96908,1.22296,1.23091,-1.10625,-1.03463,1 +0.098142,-1.10625,0.098142,1.22296,-0.96908,1.22296,0.098142,-1.10625,0.098142,1 +0.098142,-1.10625,0.098142,1.22296,-0.96908,0.0583518,1.23091,-1.10625,0.098142,1 +0.098142,-1.10625,0.098142,1.22296,-0.96908,0.0583518,0.098142,-1.10625,1.23091,1 +0.098142,-1.10625,0.098142,0.0583518,-0.96908,1.22296,1.23091,-1.10625,0.098142,1 +0.098142,-1.10625,0.098142,0.0583518,-0.96908,1.22296,0.098142,-1.10625,1.23091,1 +0.098142,-1.10625,0.098142,0.0583518,-0.96908,0.0583518,1.23091,-1.10625,1.23091,1 +0.098142,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,1.23091,1.22296,0.098142,1 +0.098142,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,1.23091,1 +0.098142,1.22296,-1.03463,-1.10625,-0.96908,-1.10625,0.098142,1.22296,1.23091,1 +0.098142,1.22296,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +0.098142,1.22296,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,0.0583518,1.23091,1 +0.098142,1.22296,-1.03463,-1.10625,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +0.098142,1.22296,-1.03463,-1.10625,1.24135,-1.10625,1.23091,0.0583518,-1.03463,1 +0.098142,1.22296,-1.03463,-1.10625,0.136133,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,1.22296,0.098142,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,0.0583518,1.23091,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,1.22296,-1.03463,-1.10625,0.098142,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,1.22296,-1.03463,0.0583518,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,1.23091,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,1.22296,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,0.0583518,0.098142,1 +0.098142,1.22296,-1.03463,1.22296,1.24135,-1.10625,-1.03463,0.0583518,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,1.24135,-1.10625,0.098142,-1.10625,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,0.136133,-1.10625,-1.03463,1.22296,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,0.136133,-1.10625,1.23091,-1.10625,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,0.136133,-1.10625,0.098142,0.0583518,-1.03463,1 +0.098142,1.22296,-1.03463,1.22296,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,-1.03463,0.0583518,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +0.098142,1.22296,-1.03463,0.0583518,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,1.22296,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,1.23091,1 +0.098142,1.22296,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +0.098142,1.22296,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,0.098142,1 +0.098142,1.22296,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,1.22296,0.098142,1 +0.098142,1.22296,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,0.0583518,1.23091,1 +0.098142,1.22296,-1.03463,0.0583518,1.24135,-1.10625,1.23091,-1.10625,-1.03463,1 +0.098142,1.22296,-1.03463,0.0583518,1.24135,-1.10625,0.098142,0.0583518,-1.03463,1 +0.098142,1.22296,-1.03463,0.0583518,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,-1.03463,0.0583518,0.136133,-1.10625,1.23091,0.0583518,-1.03463,1 +0.098142,1.22296,-1.03463,0.0583518,0.136133,-1.10625,0.098142,1.22296,-1.03463,1 +0.098142,1.22296,1.23091,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,0.098142,1 +0.098142,1.22296,1.23091,-1.10625,-0.96908,-1.10625,-1.03463,0.0583518,1.23091,1 +0.098142,1.22296,1.23091,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,0.098142,1 +0.098142,1.22296,1.23091,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,1 +0.098142,1.22296,1.23091,-1.10625,-0.96908,-1.10625,0.098142,-1.10625,1.23091,1 +0.098142,1.22296,1.23091,-1.10625,-0.96908,-1.10625,0.098142,1.22296,-1.03463,1 +0.098142,1.22296,1.23091,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,0.098142,1 +0.098142,1.22296,1.23091,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,1.23091,-1.10625,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,1.23091,1.22296,-0.96908,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,1.23091,1.22296,0.136133,-1.10625,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,1.23091,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,1.23091,0.0583518,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,1.23091,0.0583518,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,0.098142,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +0.098142,1.22296,0.098142,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +0.098142,1.22296,0.098142,-1.10625,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,1.22296,0.098142,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,0.098142,1 +0.098142,1.22296,0.098142,-1.10625,-0.96908,-1.10625,0.098142,1.22296,0.098142,1 +0.098142,1.22296,0.098142,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,1.23091,1 +0.098142,1.22296,0.098142,-1.10625,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,0.098142,1.22296,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,0.098142,1.22296,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,0.098142,1.22296,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,0.098142,0.0583518,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,1.22296,0.098142,0.0583518,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,-1.03463,-1.10625,-0.96908,1.22296,-1.03463,1.22296,1.23091,1 +0.098142,0.0583518,-1.03463,-1.10625,1.24135,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,0.0583518,-1.03463,1.22296,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +0.098142,0.0583518,-1.03463,1.22296,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,0.0583518,-1.03463,1.22296,-0.96908,1.22296,-1.03463,-1.10625,1.23091,1 +0.098142,0.0583518,-1.03463,1.22296,-0.96908,1.22296,-1.03463,1.22296,-1.03463,1 +0.098142,0.0583518,-1.03463,1.22296,-0.96908,1.22296,-1.03463,0.0583518,0.098142,1 +0.098142,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,1.22296,0.098142,1 +0.098142,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,-1.03463,0.0583518,1.23091,1 +0.098142,0.0583518,-1.03463,1.22296,1.24135,-1.10625,-1.03463,1.22296,-1.03463,1 +0.098142,0.0583518,-1.03463,1.22296,1.24135,-1.10625,1.23091,-1.10625,-1.03463,1 +0.098142,0.0583518,-1.03463,1.22296,1.24135,-1.10625,0.098142,0.0583518,-1.03463,1 +0.098142,0.0583518,-1.03463,1.22296,0.136133,-1.10625,1.23091,0.0583518,-1.03463,1 +0.098142,0.0583518,-1.03463,1.22296,0.136133,-1.10625,0.098142,1.22296,-1.03463,1 +0.098142,0.0583518,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,1.22296,0.098142,1 +0.098142,0.0583518,-1.03463,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,1.23091,1 +0.098142,0.0583518,-1.03463,0.0583518,-0.96908,0.0583518,-1.03463,1.22296,1.23091,1 +0.098142,0.0583518,-1.03463,0.0583518,1.24135,-1.10625,1.23091,0.0583518,-1.03463,1 +0.098142,0.0583518,-1.03463,0.0583518,1.24135,-1.10625,0.098142,1.22296,-1.03463,1 +0.098142,0.0583518,-1.03463,0.0583518,0.136133,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,-1.03463,1.22296,1.23091,1 +0.098142,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,1.23091,-1.10625,1.23091,1 +0.098142,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,1.23091,1.22296,-1.03463,1 +0.098142,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,0.098142,1 +0.098142,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,0.098142,1.22296,0.098142,1 +0.098142,0.0583518,1.23091,-1.10625,-0.96908,-1.10625,0.098142,0.0583518,1.23091,1 +0.098142,0.0583518,1.23091,-1.10625,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,1.23091,1.22296,-0.96908,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,1.23091,1.22296,1.24135,-1.10625,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,1.23091,1.22296,0.136133,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,1.23091,0.0583518,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,1.23091,0.0583518,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,1.23091,1.22296,0.098142,1 +0.098142,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,1.23091,0.0583518,1.23091,1 +0.098142,0.0583518,0.098142,-1.10625,-0.96908,-1.10625,0.098142,1.22296,1.23091,1 +0.098142,0.0583518,0.098142,1.22296,1.24135,0.0583518,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,0.098142,1.22296,0.136133,1.22296,-1.03463,-1.10625,-1.03463,1 +0.098142,0.0583518,0.098142,0.0583518,1.24135,1.22296,-1.03463,-1.10625,-1.03463,1 +-1.03463,-1.10625,1.23091,-1.10625,-0.96908,1.22296,1.23091,0.0583518,1.23091,0 +-1.03463,-1.10625,1.23091,-1.10625,-0.96908,1.22296,0.098142,1.22296,1.23091,0 +-1.03463,-1.10625,1.23091,-1.10625,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,-1.10625,1.23091,1.22296,0.098142,0 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,-1.10625,1.23091,0.0583518,1.23091,0 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,1.22296,1.23091,-1.10625,0.098142,0 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,1.22296,1.23091,0.0583518,-1.03463,0 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,1.22296,0.098142,-1.10625,1.23091,0 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,0.0583518,1.23091,-1.10625,1.23091,0 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,0.0583518,1.23091,1.22296,-1.03463,0 +-1.03463,-1.10625,1.23091,-1.10625,1.24135,0.0583518,1.23091,0.0583518,0.098142,0 +-1.03463,-1.10625,1.23091,-1.10625,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,-1.10625,1.23091,-1.10625,0.136133,1.22296,1.23091,-1.10625,1.23091,0 +-1.03463,-1.10625,1.23091,-1.10625,0.136133,1.22296,0.098142,0.0583518,1.23091,0 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,1.22296,-1.03463,0.0583518,1.23091,0 +-1.03463,-1.10625,1.23091,1.22296,1.24135,-1.10625,1.23091,-1.10625,0.098142,0 +-1.03463,-1.10625,1.23091,1.22296,1.24135,-1.10625,1.23091,0.0583518,-1.03463,0 +-1.03463,-1.10625,1.23091,1.22296,1.24135,1.22296,-1.03463,-1.10625,0.098142,0 +-1.03463,-1.10625,1.23091,1.22296,1.24135,1.22296,-1.03463,0.0583518,-1.03463,0 +-1.03463,-1.10625,1.23091,1.22296,1.24135,1.22296,0.098142,-1.10625,-1.03463,0 +-1.03463,-1.10625,1.23091,1.22296,1.24135,0.0583518,1.23091,-1.10625,-1.03463,0 +-1.03463,-1.10625,1.23091,1.22296,0.136133,1.22296,-1.03463,-1.10625,1.23091,0 +-1.03463,-1.10625,1.23091,0.0583518,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,-1.10625,1.23091,0.0583518,-0.96908,1.22296,-1.03463,1.22296,1.23091,0 +-1.03463,-1.10625,1.23091,0.0583518,-0.96908,1.22296,0.098142,0.0583518,1.23091,0 +-1.03463,-1.10625,1.23091,0.0583518,1.24135,-1.10625,1.23091,-1.10625,1.23091,0 +-1.03463,-1.10625,1.23091,0.0583518,1.24135,-1.10625,1.23091,1.22296,-1.03463,0 +-1.03463,-1.10625,1.23091,0.0583518,1.24135,-1.10625,1.23091,0.0583518,0.098142,0 +-1.03463,-1.10625,1.23091,0.0583518,1.24135,1.22296,-1.03463,-1.10625,1.23091,0 +-1.03463,-1.10625,1.23091,0.0583518,1.24135,1.22296,1.23091,-1.10625,-1.03463,0 +-1.03463,-1.10625,1.23091,0.0583518,1.24135,0.0583518,1.23091,-1.10625,0.098142,0 +-1.03463,-1.10625,1.23091,0.0583518,1.24135,0.0583518,1.23091,0.0583518,-1.03463,0 +-1.03463,-1.10625,1.23091,0.0583518,0.136133,1.22296,-1.03463,0.0583518,1.23091,0 +-1.03463,-1.10625,1.23091,0.0583518,0.136133,1.22296,0.098142,-1.10625,1.23091,0 +-1.03463,-1.10625,0.098142,-1.10625,-0.96908,1.22296,1.23091,1.22296,1.23091,0 +-1.03463,-1.10625,0.098142,-1.10625,1.24135,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,-1.10625,0.098142,-1.10625,0.136133,0.0583518,1.23091,1.22296,1.23091,0 +-1.03463,-1.10625,0.098142,1.22296,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,-1.10625,0.098142,1.22296,1.24135,1.22296,-1.03463,-1.10625,1.23091,0 +-1.03463,-1.10625,0.098142,1.22296,1.24135,1.22296,-1.03463,1.22296,-1.03463,0 +-1.03463,-1.10625,0.098142,1.22296,1.24135,1.22296,-1.03463,0.0583518,0.098142,0 +-1.03463,-1.10625,0.098142,1.22296,1.24135,1.22296,1.23091,-1.10625,-1.03463,0 +-1.03463,-1.10625,0.098142,1.22296,1.24135,1.22296,0.098142,-1.10625,0.098142,0 +-1.03463,-1.10625,0.098142,1.22296,1.24135,1.22296,0.098142,0.0583518,-1.03463,0 +-1.03463,-1.10625,0.098142,0.0583518,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +-1.03463,-1.10625,0.098142,0.0583518,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,1.22296,-1.03463,-1.10625,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,-1.10625,1.23091,1.22296,0.098142,0 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,-1.10625,0.098142,1.22296,1.23091,0 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,1.22296,0.098142,1.22296,-1.03463,0 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,0.0583518,1.23091,1.22296,-1.03463,0 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,0.0583518,0.098142,1.22296,0.098142,0 +-1.03463,1.22296,-1.03463,-1.10625,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,1.22296,-1.03463,1.22296,1.24135,-1.10625,-1.03463,1.22296,0.098142,0 +-1.03463,1.22296,-1.03463,1.22296,1.24135,1.22296,-1.03463,-1.10625,0.098142,0 +-1.03463,1.22296,-1.03463,1.22296,1.24135,1.22296,-1.03463,0.0583518,-1.03463,0 +-1.03463,1.22296,-1.03463,1.22296,1.24135,1.22296,0.098142,-1.10625,-1.03463,0 +-1.03463,1.22296,-1.03463,1.22296,1.24135,0.0583518,-1.03463,1.22296,-1.03463,0 +-1.03463,1.22296,-1.03463,0.0583518,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,1.22296,-1.03463,0.0583518,1.24135,-1.10625,-1.03463,1.22296,1.23091,0 +-1.03463,1.22296,-1.03463,0.0583518,1.24135,-1.10625,0.098142,1.22296,0.098142,0 +-1.03463,1.22296,-1.03463,0.0583518,1.24135,1.22296,-1.03463,1.22296,-1.03463,0 +-1.03463,1.22296,-1.03463,0.0583518,1.24135,0.0583518,-1.03463,1.22296,0.098142,0 +-1.03463,1.22296,-1.03463,0.0583518,1.24135,0.0583518,0.098142,1.22296,-1.03463,0 +-1.03463,1.22296,1.23091,-1.10625,-0.96908,1.22296,0.098142,-1.10625,1.23091,0 +-1.03463,1.22296,1.23091,-1.10625,1.24135,-1.10625,1.23091,-1.10625,0.098142,0 +-1.03463,1.22296,1.23091,-1.10625,1.24135,-1.10625,1.23091,0.0583518,-1.03463,0 +-1.03463,1.22296,1.23091,-1.10625,1.24135,-1.10625,0.098142,1.22296,-1.03463,0 +-1.03463,1.22296,1.23091,-1.10625,1.24135,0.0583518,1.23091,-1.10625,-1.03463,0 +-1.03463,1.22296,1.23091,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,1.23091,0 +-1.03463,1.22296,1.23091,0.0583518,1.24135,-1.10625,-1.03463,1.22296,-1.03463,0 +-1.03463,1.22296,1.23091,0.0583518,1.24135,-1.10625,1.23091,-1.10625,-1.03463,0 +-1.03463,1.22296,0.098142,-1.10625,1.24135,-1.10625,1.23091,1.22296,-1.03463,0 +-1.03463,1.22296,0.098142,-1.10625,1.24135,-1.10625,0.098142,1.22296,0.098142,0 +-1.03463,1.22296,0.098142,-1.10625,1.24135,0.0583518,0.098142,1.22296,-1.03463,0 +-1.03463,1.22296,0.098142,1.22296,1.24135,-1.10625,-1.03463,1.22296,-1.03463,0 +-1.03463,1.22296,0.098142,0.0583518,1.24135,-1.10625,-1.03463,1.22296,0.098142,0 +-1.03463,1.22296,0.098142,0.0583518,1.24135,-1.10625,0.098142,1.22296,-1.03463,0 +-1.03463,1.22296,0.098142,0.0583518,1.24135,0.0583518,-1.03463,1.22296,-1.03463,0 +-1.03463,0.0583518,-1.03463,-1.10625,-0.96908,1.22296,1.23091,1.22296,1.23091,0 +-1.03463,0.0583518,-1.03463,-1.10625,1.24135,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,0.0583518,-1.03463,-1.10625,0.136133,0.0583518,1.23091,1.22296,1.23091,0 +-1.03463,0.0583518,-1.03463,1.22296,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,0.0583518,-1.03463,1.22296,1.24135,1.22296,-1.03463,-1.10625,1.23091,0 +-1.03463,0.0583518,-1.03463,1.22296,1.24135,1.22296,-1.03463,1.22296,-1.03463,0 +-1.03463,0.0583518,-1.03463,1.22296,1.24135,1.22296,-1.03463,0.0583518,0.098142,0 +-1.03463,0.0583518,-1.03463,1.22296,1.24135,1.22296,1.23091,-1.10625,-1.03463,0 +-1.03463,0.0583518,-1.03463,1.22296,1.24135,1.22296,0.098142,-1.10625,0.098142,0 +-1.03463,0.0583518,-1.03463,1.22296,1.24135,1.22296,0.098142,0.0583518,-1.03463,0 +-1.03463,0.0583518,-1.03463,0.0583518,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +-1.03463,0.0583518,-1.03463,0.0583518,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,1.22296,1.23091,-1.10625,1.23091,0 +-1.03463,0.0583518,1.23091,-1.10625,-0.96908,1.22296,0.098142,0.0583518,1.23091,0 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,-1.10625,1.23091,-1.10625,1.23091,0 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,-1.10625,1.23091,1.22296,-1.03463,0 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,-1.10625,1.23091,0.0583518,0.098142,0 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,1.22296,1.23091,-1.10625,-1.03463,0 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,0.0583518,1.23091,-1.10625,0.098142,0 +-1.03463,0.0583518,1.23091,-1.10625,1.24135,0.0583518,1.23091,0.0583518,-1.03463,0 +-1.03463,0.0583518,1.23091,-1.10625,0.136133,1.22296,0.098142,-1.10625,1.23091,0 +-1.03463,0.0583518,1.23091,1.22296,-0.96908,1.22296,-1.03463,-1.10625,1.23091,0 +-1.03463,0.0583518,1.23091,1.22296,1.24135,-1.10625,1.23091,-1.10625,-1.03463,0 +-1.03463,0.0583518,1.23091,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,1.23091,0 +-1.03463,0.0583518,1.23091,0.0583518,-0.96908,1.22296,0.098142,-1.10625,1.23091,0 +-1.03463,0.0583518,1.23091,0.0583518,1.24135,-1.10625,1.23091,-1.10625,0.098142,0 +-1.03463,0.0583518,1.23091,0.0583518,1.24135,-1.10625,1.23091,0.0583518,-1.03463,0 +-1.03463,0.0583518,1.23091,0.0583518,1.24135,0.0583518,1.23091,-1.10625,-1.03463,0 +-1.03463,0.0583518,1.23091,0.0583518,0.136133,1.22296,-1.03463,-1.10625,1.23091,0 +-1.03463,0.0583518,0.098142,-1.10625,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +-1.03463,0.0583518,0.098142,-1.10625,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +-1.03463,0.0583518,0.098142,1.22296,1.24135,1.22296,-1.03463,-1.10625,0.098142,0 +-1.03463,0.0583518,0.098142,1.22296,1.24135,1.22296,-1.03463,0.0583518,-1.03463,0 +-1.03463,0.0583518,0.098142,1.22296,1.24135,1.22296,0.098142,-1.10625,-1.03463,0 +-1.03463,0.0583518,0.098142,0.0583518,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,-1.10625,1.23091,0.0583518,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,-1.10625,0.098142,1.22296,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,1.22296,-1.03463,0.0583518,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,1.22296,0.098142,-1.10625,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,0.0583518,-1.03463,1.22296,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,0.0583518,1.23091,-1.10625,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,0.0583518,0.098142,0.0583518,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,-1.10625,1.23091,1.22296,0.098142,0 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,-1.10625,1.23091,0.0583518,1.23091,0 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,1.22296,1.23091,0.0583518,-1.03463,0 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,1.23091,1.22296,-1.03463,0 +1.23091,-1.10625,-1.03463,1.22296,-0.96908,0.0583518,1.23091,0.0583518,0.098142,0 +1.23091,-1.10625,-1.03463,1.22296,1.24135,-1.10625,-1.03463,0.0583518,1.23091,0 +1.23091,-1.10625,-1.03463,1.22296,1.24135,-1.10625,1.23091,-1.10625,0.098142,0 +1.23091,-1.10625,-1.03463,1.22296,1.24135,-1.10625,0.098142,-1.10625,1.23091,0 +1.23091,-1.10625,-1.03463,1.22296,1.24135,1.22296,-1.03463,-1.10625,0.098142,0 +1.23091,-1.10625,-1.03463,1.22296,1.24135,1.22296,-1.03463,0.0583518,-1.03463,0 +1.23091,-1.10625,-1.03463,1.22296,1.24135,1.22296,0.098142,-1.10625,-1.03463,0 +1.23091,-1.10625,-1.03463,1.22296,1.24135,0.0583518,-1.03463,-1.10625,1.23091,0 +1.23091,-1.10625,-1.03463,1.22296,1.24135,0.0583518,1.23091,-1.10625,-1.03463,0 +1.23091,-1.10625,-1.03463,1.22296,0.136133,-1.10625,1.23091,-1.10625,1.23091,0 +1.23091,-1.10625,-1.03463,1.22296,0.136133,-1.10625,1.23091,0.0583518,0.098142,0 +1.23091,-1.10625,-1.03463,1.22296,0.136133,1.22296,1.23091,-1.10625,-1.03463,0 +1.23091,-1.10625,-1.03463,1.22296,0.136133,0.0583518,1.23091,-1.10625,0.098142,0 +1.23091,-1.10625,-1.03463,1.22296,0.136133,0.0583518,1.23091,0.0583518,-1.03463,0 +1.23091,-1.10625,-1.03463,0.0583518,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +1.23091,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,-1.03463,1.22296,1.23091,0 +1.23091,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,1.23091,-1.10625,1.23091,0 +1.23091,-1.10625,-1.03463,0.0583518,1.24135,-1.10625,0.098142,0.0583518,1.23091,0 +1.23091,-1.10625,-1.03463,0.0583518,1.24135,1.22296,-1.03463,-1.10625,1.23091,0 +1.23091,-1.10625,-1.03463,0.0583518,1.24135,0.0583518,-1.03463,0.0583518,1.23091,0 +1.23091,-1.10625,-1.03463,0.0583518,1.24135,0.0583518,0.098142,-1.10625,1.23091,0 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,1.22296,-1.03463,0.0583518,1.23091,0 +1.23091,-1.10625,1.23091,-1.10625,1.24135,-1.10625,-1.03463,0.0583518,1.23091,0 +1.23091,-1.10625,1.23091,-1.10625,1.24135,-1.10625,1.23091,-1.10625,0.098142,0 +1.23091,-1.10625,1.23091,-1.10625,1.24135,-1.10625,1.23091,0.0583518,-1.03463,0 +1.23091,-1.10625,1.23091,-1.10625,1.24135,-1.10625,0.098142,-1.10625,1.23091,0 +1.23091,-1.10625,1.23091,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,1.23091,0 +1.23091,-1.10625,1.23091,-1.10625,1.24135,0.0583518,1.23091,-1.10625,-1.03463,0 +1.23091,-1.10625,1.23091,-1.10625,0.136133,1.22296,-1.03463,-1.10625,1.23091,0 +1.23091,-1.10625,1.23091,1.22296,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,0 +1.23091,-1.10625,1.23091,1.22296,0.136133,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,-1.10625,1.23091,0.0583518,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,-1.10625,1.23091,0.0583518,1.24135,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,-1.10625,0.098142,-1.10625,1.24135,-1.10625,-1.03463,1.22296,1.23091,0 +1.23091,-1.10625,0.098142,-1.10625,1.24135,-1.10625,1.23091,-1.10625,1.23091,0 +1.23091,-1.10625,0.098142,-1.10625,1.24135,-1.10625,0.098142,0.0583518,1.23091,0 +1.23091,-1.10625,0.098142,-1.10625,1.24135,1.22296,-1.03463,-1.10625,1.23091,0 +1.23091,-1.10625,0.098142,-1.10625,1.24135,0.0583518,-1.03463,0.0583518,1.23091,0 +1.23091,-1.10625,0.098142,-1.10625,1.24135,0.0583518,0.098142,-1.10625,1.23091,0 +1.23091,-1.10625,0.098142,1.22296,-0.96908,-1.10625,1.23091,1.22296,-1.03463,0 +1.23091,-1.10625,0.098142,1.22296,-0.96908,-1.10625,1.23091,0.0583518,0.098142,0 +1.23091,-1.10625,0.098142,1.22296,-0.96908,0.0583518,1.23091,0.0583518,-1.03463,0 +1.23091,-1.10625,0.098142,1.22296,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,-1.10625,0.098142,1.22296,1.24135,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,-1.10625,0.098142,1.22296,0.136133,-1.10625,1.23091,-1.10625,0.098142,0 +1.23091,-1.10625,0.098142,1.22296,0.136133,-1.10625,1.23091,0.0583518,-1.03463,0 +1.23091,-1.10625,0.098142,1.22296,0.136133,0.0583518,1.23091,-1.10625,-1.03463,0 +1.23091,-1.10625,0.098142,0.0583518,1.24135,-1.10625,-1.03463,0.0583518,1.23091,0 +1.23091,-1.10625,0.098142,0.0583518,1.24135,-1.10625,0.098142,-1.10625,1.23091,0 +1.23091,-1.10625,0.098142,0.0583518,1.24135,0.0583518,-1.03463,-1.10625,1.23091,0 +1.23091,1.22296,-1.03463,-1.10625,1.24135,-1.10625,-1.03463,1.22296,0.098142,0 +1.23091,1.22296,-1.03463,-1.10625,1.24135,-1.10625,-1.03463,0.0583518,1.23091,0 +1.23091,1.22296,-1.03463,-1.10625,1.24135,-1.10625,0.098142,-1.10625,1.23091,0 +1.23091,1.22296,-1.03463,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,1.23091,0 +1.23091,1.22296,-1.03463,-1.10625,1.24135,0.0583518,-1.03463,1.22296,-1.03463,0 +1.23091,1.22296,-1.03463,1.22296,-0.96908,-1.10625,1.23091,-1.10625,0.098142,0 +1.23091,1.22296,-1.03463,1.22296,-0.96908,0.0583518,1.23091,-1.10625,-1.03463,0 +1.23091,1.22296,-1.03463,0.0583518,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,1.22296,-1.03463,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,1.22296,-1.03463,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,1.22296,0.098142,-1.10625,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,0.0583518,-1.03463,-1.10625,1.23091,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,0.0583518,-1.03463,1.22296,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,0.0583518,-1.03463,0.0583518,0.098142,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,0.0583518,1.23091,-1.10625,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,0.0583518,0.098142,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,-1.10625,-0.96908,0.0583518,0.098142,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,1.24135,-1.10625,-1.03463,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,-1.10625,1.24135,-1.10625,-1.03463,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,1.24135,-1.10625,0.098142,-1.10625,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,-1.10625,-1.03463,1.22296,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,-1.10625,-1.03463,0.0583518,0.098142,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,-1.10625,0.098142,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,-1.10625,0.098142,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,0.0583518,-1.03463,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,0.0583518,-1.03463,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,-1.10625,0.136133,0.0583518,0.098142,-1.10625,-1.03463,0 +1.23091,1.22296,1.23091,1.22296,-0.96908,-1.10625,-1.03463,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,1.22296,-0.96908,-1.10625,-1.03463,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,1.22296,-0.96908,-1.10625,0.098142,-1.10625,-1.03463,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,-1.10625,-1.03463,1.22296,-1.03463,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,-1.10625,-1.03463,0.0583518,0.098142,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,-1.10625,0.098142,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,-1.10625,0.098142,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,0.0583518,-1.03463,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,0.0583518,-1.03463,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,0.0583518,-0.96908,0.0583518,0.098142,-1.10625,-1.03463,0 +1.23091,1.22296,1.23091,0.0583518,0.136133,-1.10625,-1.03463,-1.10625,0.098142,0 +1.23091,1.22296,1.23091,0.0583518,0.136133,-1.10625,-1.03463,0.0583518,-1.03463,0 +1.23091,1.22296,1.23091,0.0583518,0.136133,-1.10625,0.098142,-1.10625,-1.03463,0 +1.23091,1.22296,0.098142,-1.10625,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,1.22296,0.098142,-1.10625,1.24135,-1.10625,-1.03463,1.22296,-1.03463,0 +1.23091,1.22296,0.098142,1.22296,-0.96908,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,0.0583518,-1.03463,-1.10625,1.24135,-1.10625,-1.03463,1.22296,1.23091,0 +1.23091,0.0583518,-1.03463,-1.10625,1.24135,-1.10625,1.23091,-1.10625,1.23091,0 +1.23091,0.0583518,-1.03463,-1.10625,1.24135,-1.10625,0.098142,0.0583518,1.23091,0 +1.23091,0.0583518,-1.03463,-1.10625,1.24135,1.22296,-1.03463,-1.10625,1.23091,0 +1.23091,0.0583518,-1.03463,-1.10625,1.24135,0.0583518,-1.03463,0.0583518,1.23091,0 +1.23091,0.0583518,-1.03463,-1.10625,1.24135,0.0583518,0.098142,-1.10625,1.23091,0 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,-1.10625,1.23091,-1.10625,1.23091,0 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,-1.10625,1.23091,0.0583518,0.098142,0 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,1.22296,1.23091,-1.10625,-1.03463,0 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,1.23091,-1.10625,0.098142,0 +1.23091,0.0583518,-1.03463,1.22296,-0.96908,0.0583518,1.23091,0.0583518,-1.03463,0 +1.23091,0.0583518,-1.03463,1.22296,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,0.0583518,-1.03463,1.22296,0.136133,-1.10625,1.23091,-1.10625,0.098142,0 +1.23091,0.0583518,-1.03463,1.22296,0.136133,0.0583518,1.23091,-1.10625,-1.03463,0 +1.23091,0.0583518,-1.03463,0.0583518,1.24135,-1.10625,-1.03463,0.0583518,1.23091,0 +1.23091,0.0583518,-1.03463,0.0583518,1.24135,-1.10625,0.098142,-1.10625,1.23091,0 +1.23091,0.0583518,-1.03463,0.0583518,1.24135,0.0583518,-1.03463,-1.10625,1.23091,0 +1.23091,0.0583518,1.23091,-1.10625,-0.96908,1.22296,-1.03463,-1.10625,1.23091,0 +1.23091,0.0583518,1.23091,-1.10625,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,0.0583518,1.23091,-1.10625,1.24135,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,0.0583518,1.23091,1.22296,-0.96908,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,0.0583518,0.098142,-1.10625,1.24135,-1.10625,-1.03463,0.0583518,1.23091,0 +1.23091,0.0583518,0.098142,-1.10625,1.24135,-1.10625,0.098142,-1.10625,1.23091,0 +1.23091,0.0583518,0.098142,-1.10625,1.24135,0.0583518,-1.03463,-1.10625,1.23091,0 +1.23091,0.0583518,0.098142,1.22296,-0.96908,-1.10625,1.23091,-1.10625,0.098142,0 +1.23091,0.0583518,0.098142,1.22296,-0.96908,-1.10625,1.23091,0.0583518,-1.03463,0 +1.23091,0.0583518,0.098142,1.22296,-0.96908,0.0583518,1.23091,-1.10625,-1.03463,0 +1.23091,0.0583518,0.098142,1.22296,0.136133,-1.10625,1.23091,-1.10625,-1.03463,0 +1.23091,0.0583518,0.098142,0.0583518,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +0.098142,-1.10625,-1.03463,-1.10625,-0.96908,1.22296,1.23091,1.22296,1.23091,0 +0.098142,-1.10625,-1.03463,-1.10625,1.24135,-1.10625,1.23091,1.22296,1.23091,0 +0.098142,-1.10625,-1.03463,-1.10625,0.136133,0.0583518,1.23091,1.22296,1.23091,0 +0.098142,-1.10625,-1.03463,1.22296,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +0.098142,-1.10625,-1.03463,1.22296,1.24135,1.22296,-1.03463,-1.10625,1.23091,0 +0.098142,-1.10625,-1.03463,1.22296,1.24135,1.22296,-1.03463,1.22296,-1.03463,0 +0.098142,-1.10625,-1.03463,1.22296,1.24135,1.22296,-1.03463,0.0583518,0.098142,0 +0.098142,-1.10625,-1.03463,1.22296,1.24135,1.22296,1.23091,-1.10625,-1.03463,0 +0.098142,-1.10625,-1.03463,1.22296,1.24135,1.22296,0.098142,-1.10625,0.098142,0 +0.098142,-1.10625,-1.03463,1.22296,1.24135,1.22296,0.098142,0.0583518,-1.03463,0 +0.098142,-1.10625,-1.03463,0.0583518,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +0.098142,-1.10625,-1.03463,0.0583518,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +0.098142,-1.10625,1.23091,-1.10625,-0.96908,1.22296,-1.03463,1.22296,1.23091,0 +0.098142,-1.10625,1.23091,-1.10625,-0.96908,1.22296,0.098142,0.0583518,1.23091,0 +0.098142,-1.10625,1.23091,-1.10625,1.24135,-1.10625,1.23091,-1.10625,1.23091,0 +0.098142,-1.10625,1.23091,-1.10625,1.24135,-1.10625,1.23091,1.22296,-1.03463,0 +0.098142,-1.10625,1.23091,-1.10625,1.24135,-1.10625,1.23091,0.0583518,0.098142,0 +0.098142,-1.10625,1.23091,-1.10625,1.24135,1.22296,-1.03463,-1.10625,1.23091,0 +0.098142,-1.10625,1.23091,-1.10625,1.24135,1.22296,1.23091,-1.10625,-1.03463,0 +0.098142,-1.10625,1.23091,-1.10625,1.24135,0.0583518,1.23091,-1.10625,0.098142,0 +0.098142,-1.10625,1.23091,-1.10625,1.24135,0.0583518,1.23091,0.0583518,-1.03463,0 +0.098142,-1.10625,1.23091,-1.10625,0.136133,1.22296,-1.03463,0.0583518,1.23091,0 +0.098142,-1.10625,1.23091,-1.10625,0.136133,1.22296,0.098142,-1.10625,1.23091,0 +0.098142,-1.10625,1.23091,1.22296,1.24135,-1.10625,1.23091,-1.10625,-1.03463,0 +0.098142,-1.10625,1.23091,0.0583518,-0.96908,1.22296,-1.03463,0.0583518,1.23091,0 +0.098142,-1.10625,1.23091,0.0583518,1.24135,-1.10625,1.23091,-1.10625,0.098142,0 +0.098142,-1.10625,1.23091,0.0583518,1.24135,-1.10625,1.23091,0.0583518,-1.03463,0 +0.098142,-1.10625,1.23091,0.0583518,1.24135,0.0583518,1.23091,-1.10625,-1.03463,0 +0.098142,-1.10625,1.23091,0.0583518,0.136133,1.22296,-1.03463,-1.10625,1.23091,0 +0.098142,-1.10625,0.098142,-1.10625,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +0.098142,-1.10625,0.098142,-1.10625,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +0.098142,-1.10625,0.098142,1.22296,1.24135,1.22296,-1.03463,-1.10625,0.098142,0 +0.098142,-1.10625,0.098142,1.22296,1.24135,1.22296,-1.03463,0.0583518,-1.03463,0 +0.098142,-1.10625,0.098142,1.22296,1.24135,1.22296,0.098142,-1.10625,-1.03463,0 +0.098142,-1.10625,0.098142,0.0583518,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +0.098142,1.22296,-1.03463,-1.10625,1.24135,-1.10625,-1.03463,1.22296,1.23091,0 +0.098142,1.22296,-1.03463,-1.10625,1.24135,-1.10625,0.098142,1.22296,0.098142,0 +0.098142,1.22296,-1.03463,-1.10625,1.24135,1.22296,-1.03463,1.22296,-1.03463,0 +0.098142,1.22296,-1.03463,-1.10625,1.24135,0.0583518,-1.03463,1.22296,0.098142,0 +0.098142,1.22296,-1.03463,-1.10625,1.24135,0.0583518,0.098142,1.22296,-1.03463,0 +0.098142,1.22296,-1.03463,0.0583518,1.24135,-1.10625,-1.03463,1.22296,0.098142,0 +0.098142,1.22296,-1.03463,0.0583518,1.24135,0.0583518,-1.03463,1.22296,-1.03463,0 +0.098142,1.22296,1.23091,-1.10625,-0.96908,1.22296,-1.03463,-1.10625,1.23091,0 +0.098142,1.22296,1.23091,-1.10625,1.24135,-1.10625,-1.03463,1.22296,-1.03463,0 +0.098142,1.22296,1.23091,-1.10625,1.24135,-1.10625,1.23091,-1.10625,-1.03463,0 +0.098142,1.22296,0.098142,-1.10625,1.24135,-1.10625,-1.03463,1.22296,0.098142,0 +0.098142,1.22296,0.098142,-1.10625,1.24135,-1.10625,0.098142,1.22296,-1.03463,0 +0.098142,1.22296,0.098142,-1.10625,1.24135,0.0583518,-1.03463,1.22296,-1.03463,0 +0.098142,1.22296,0.098142,0.0583518,1.24135,-1.10625,-1.03463,1.22296,-1.03463,0 +0.098142,0.0583518,-1.03463,-1.10625,-0.96908,0.0583518,1.23091,1.22296,1.23091,0 +0.098142,0.0583518,-1.03463,-1.10625,0.136133,-1.10625,1.23091,1.22296,1.23091,0 +0.098142,0.0583518,-1.03463,1.22296,1.24135,1.22296,-1.03463,-1.10625,0.098142,0 +0.098142,0.0583518,-1.03463,1.22296,1.24135,1.22296,-1.03463,0.0583518,-1.03463,0 +0.098142,0.0583518,-1.03463,1.22296,1.24135,1.22296,0.098142,-1.10625,-1.03463,0 +0.098142,0.0583518,-1.03463,0.0583518,-0.96908,-1.10625,1.23091,1.22296,1.23091,0 +0.098142,0.0583518,1.23091,-1.10625,-0.96908,1.22296,-1.03463,0.0583518,1.23091,0 +0.098142,0.0583518,1.23091,-1.10625,-0.96908,1.22296,0.098142,-1.10625,1.23091,0 +0.098142,0.0583518,1.23091,-1.10625,1.24135,-1.10625,1.23091,-1.10625,0.098142,0 +0.098142,0.0583518,1.23091,-1.10625,1.24135,-1.10625,1.23091,0.0583518,-1.03463,0 +0.098142,0.0583518,1.23091,-1.10625,1.24135,0.0583518,1.23091,-1.10625,-1.03463,0 +0.098142,0.0583518,1.23091,-1.10625,0.136133,1.22296,-1.03463,-1.10625,1.23091,0 +0.098142,0.0583518,1.23091,0.0583518,-0.96908,1.22296,-1.03463,-1.10625,1.23091,0 +0.098142,0.0583518,1.23091,0.0583518,1.24135,-1.10625,1.23091,-1.10625,-1.03463,0 +-1.03463,-1.10625,1.23091,1.22296,-0.96908,-1.10625,-1.03463,1.22296,1.23091,0 +-1.03463,-1.10625,1.23091,1.22296,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +-1.03463,-1.10625,1.23091,1.22296,1.24135,-1.10625,-1.03463,1.22296,-1.03463,0 +-1.03463,1.22296,-1.03463,-1.10625,-0.96908,1.22296,1.23091,-1.10625,1.23091,0 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,-1.10625,1.23091,-1.10625,1.23091,0 +-1.03463,1.22296,-1.03463,-1.10625,1.24135,1.22296,1.23091,-1.10625,-1.03463,0 +-1.03463,1.22296,-1.03463,1.22296,-0.96908,-1.10625,1.23091,-1.10625,1.23091,0 +-1.03463,1.22296,-1.03463,1.22296,1.24135,-1.10625,-1.03463,-1.10625,1.23091,0 +-1.03463,1.22296,1.23091,1.22296,-0.96908,-1.10625,-1.03463,-1.10625,1.23091,0 +1.23091,-1.10625,-1.03463,-1.10625,-0.96908,1.22296,1.23091,1.22296,-1.03463,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,1.22296,-1.03463,1.22296,-1.03463,0 +1.23091,-1.10625,-1.03463,-1.10625,1.24135,1.22296,1.23091,-1.10625,-1.03463,0 +1.23091,-1.10625,1.23091,-1.10625,-0.96908,1.22296,-1.03463,1.22296,-1.03463,0 +1.23091,-1.10625,1.23091,-1.10625,1.24135,-1.10625,-1.03463,1.22296,-1.03463,0 +1.23091,-1.10625,1.23091,1.22296,-0.96908,-1.10625,-1.03463,1.22296,-1.03463,0 +1.23091,1.22296,-1.03463,-1.10625,-0.96908,1.22296,1.23091,-1.10625,-1.03463,0 diff --git a/data/vertebral-column-2clases.arff b/data/vertebral-column-2clases.arff new file mode 100755 index 0000000..0986da5 --- /dev/null +++ b/data/vertebral-column-2clases.arff @@ -0,0 +1,319 @@ +@relation vertebral-column-2clases +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'clase' {0,1} +@data +0.146989,0.500302,-0.664054,-0.184304,-1.44549,-0.706803,0 +-1.2437,-0.747682,-1.45042,-1.03957,-0.263602,-0.578738,0 +0.483492,0.467329,-0.0992095,0.272383,-0.895846,-0.794133,0 +0.51076,0.710132,-0.410737,0.125617,-1.20521,-0.401682,0 +-0.625807,-0.788648,-1.27256,-0.215595,-0.732153,-0.489278,0 +-1.17466,-0.361996,-1.44503,-1.23848,0.931806,-0.640774,0 +-0.409981,-0.168153,-0.795564,-0.4011,0.198943,-0.540664,0 +-0.877604,-0.677739,-1.23375,-0.621622,-0.0488487,-0.984501,0 +-0.969272,-0.400964,-0.49805,-0.945698,0.531585,-0.346303,0 +-1.3812,-1.25227,-0.537934,-0.839908,-2.52902,-0.682575,0 +-0.625807,-0.449924,-1.11032,-0.468151,-0.696111,-0.90862,0 +-1.69798,0.0176953,-1.96352,-2.19283,0.160648,-0.686835,0 +-0.671641,0.241513,-0.629021,-1.04329,0.105083,-0.486349,0 +-0.401859,0.291472,-1.01493,-0.733372,-0.521906,-0.512708,0 +-0.185453,0.664169,-0.265753,-0.733372,-0.0833893,-0.546522,0 +-0.938523,-0.499883,-0.853234,-0.832458,0.465507,-0.55584,0 +0.193403,0.281481,0.141173,0.0384518,-0.421287,-0.716654,0 +-1.69507,-1.43912,-1.04403,-1.10438,0.83269,-0.603765,0 +-1.26458,-0.409957,-1.12811,-1.31895,0.393422,-0.662074,0 +-1.08879,-0.52886,-1.17554,-1.00381,-0.0999088,-0.733162,0 +-0.96173,-0.336017,-0.759992,-0.984439,1.24192,-0.528417,0 +-0.323535,0.351424,-0.52446,-0.677497,0.547354,-0.635449,0 +0.14931,0.686151,0.111529,-0.319895,-0.863558,-0.280007,0 +-0.867741,-0.446927,-1.16584,-0.781052,0.00446413,-0.833005,0 +-1.41369,0.521285,-1.23591,-2.20401,-0.175748,-0.786412,0 +-0.369949,0.909969,-0.894735,-1.15355,0.265021,-0.658346,0 +-1.99271,-0.677739,-2.04437,-2.05352,0.546603,-0.968792,0 +-0.981456,-0.103206,-0.265753,-1.18335,-0.649556,-0.46079,0 +-0.925179,0.438353,-1.35502,-1.51488,-0.514397,-0.629591,0 +0.370357,0.734112,-0.142866,-0.0718088,-0.333434,-0.753663,0 +-0.561408,-0.214116,-0.506674,-0.561276,-0.430298,-0.410735,0 +-0.818426,-0.645765,-1.06667,-0.569471,-1.43798,-0.530014,0 +-0.902552,-0.010282,-1.30166,-1.15206,0.00446413,-0.551847,0 +-1.2669,-0.45492,-0.643034,-1.28691,0.524827,-0.62826,0 +-0.052012,1.44453,-0.289467,-1.14387,0.105834,-0.661009,0 +-1.68347,-0.9705,-1.4903,-1.4374,-0.307153,-0.583264,0 +-1.64808,-1.05443,-0.858624,-1.33012,1.07673,-0.529482,0 +-1.43864,0.189555,-1.68325,-1.9887,1.47319,-0.70707,0 +-0.270159,1.12979,-0.228563,-1.18857,0.404686,-0.625331,0 +-0.468579,0.14659,-0.865631,-0.711022,-0.102161,-0.655151,0 +-1.45082,-0.583815,-1.95867,-1.42772,-0.824512,-0.792269,0 +-0.815525,-0.913547,-1.23375,-0.36534,-0.183257,-0.645566,0 +-0.385614,0.168572,-1.03217,-0.620877,0.28154,-0.558237,0 +0.336127,0.877995,-0.238804,-0.223045,0.247751,-0.721447,0 +-0.259135,-0.124189,0.5578,-0.24018,-0.292886,-0.762183,0 +-0.556186,0.547264,-0.265753,-1.12152,-0.0375854,-0.767508,0 +-0.705872,0.468328,-0.848923,-1.25562,-0.0405889,-0.527618,0 +-1.11084,-0.096212,-1.14374,-1.35396,-0.349202,-0.819959,0 +-1.15667,0.0436741,-0.966419,-1.51786,0.234986,-0.741149,0 +-1.08647,0.0356806,-1.71937,-1.42176,0.0329977,-0.6453,0 +-0.302068,0.289474,-0.966419,-0.603742,-0.153222,-0.605363,0 +0.808391,2.39976,-1.30597,-0.750507,-0.748673,-0.567023,0 +-0.596798,1.22072,-0.853234,-1.67655,0.778626,-0.54732,0 +-1.76063,-0.561833,-0.966419,-1.84194,-0.393505,-0.395026,0 +-1.12128,-0.0222722,-0.994985,-1.42325,-0.115677,-0.954947,0 +-0.744744,-0.425944,-0.821974,-0.638757,-1.47703,-0.533209,0 +-0.9948,-1.00647,-1.28603,-0.527006,-0.385996,-0.547054,0 +-0.791158,-0.219112,-0.750829,-0.853318,-0.125439,-0.65595,0 +-1.0035,0.211537,-0.912521,-1.44634,0.520322,-0.777892,0 +-0.718636,-0.261078,-0.882339,-0.728157,0.461002,-0.488479,0 +0.80549,1.44953,1.44657,-0.0472236,1.92523,0.794306,0 +1.69316,1.51448,1.68156,1.04495,0.904024,1.75014,0 +-0.926339,-0.81063,0.00373457,-0.585116,1.26069,0.0749026,0 +0.997529,0.383398,0.673679,0.995037,-0.232815,0.0168604,0 +0.908182,0.439352,1.6724,0.838586,0.45124,-0.42245,0 +1.35956,2.37278,0.542709,-0.0226385,-0.218549,0.00780795,0 +1.04394,0.463333,0.434914,0.995037,0.0457628,0.0288416,0 +0.879173,0.179564,0.658588,0.995037,-1.65349,1.15161,0 +0.672049,0.140595,-0.0501628,0.758126,-0.278619,-0.673256,0 +-0.11003,-1.77884,-0.0232141,1.18501,-1.19245,0.0469465,0 +0.699898,-0.0152779,0.00373457,0.910851,0.0953211,0.154777,0 +1.53187,1.53746,-0.223174,0.820706,1.28848,2.00813,0 +1.4199,1.54645,0.481266,0.670215,0.581143,1.27888,0 +-0.289304,0.255502,-0.427445,-0.561276,0.355127,0.219742,0 +0.680172,0.553259,2.10573,0.460869,1.48821,0.812145,0 +0.564136,2.2259,0.872561,-0.935268,2.29842,3.17058,0 +1.52317,1.84821,0.931848,0.577835,1.61361,2.25148,0 +-0.0995865,-0.986487,0.0759571,0.60838,-1.45826,0.673163,0 +0.401107,-0.010282,0.44246,0.522704,-0.510643,0.182733,0 +-0.740102,-0.544847,-0.696932,-0.543396,-0.0308274,-0.12292,0 +0.963879,1.29166,0.945861,0.274618,-0.433301,1.18383,0 +0.784024,0.357419,0.293703,0.739501,0.171911,1.285,0 +1.63166,1.15377,-0.23557,1.23493,0.288298,0.679287,0 +1.19537,0.72412,1.39914,0.995037,2.54696,1.03606,0 +0.918625,2.48369,0.284001,-0.672282,0.47677,0.634557,0 +-0.873543,-0.76267,-0.373547,-0.552336,3.3902,-0.15913,0 +-0.0409886,0.0336823,0.392335,-0.0777688,0.105083,-0.111205,0 +-0.904292,-0.731695,-0.393489,-0.614917,0.913034,0.294558,0 +-0.225485,-0.0742299,-0.53524,-0.23422,0.703537,-0.0606179,0 +0.620414,0.635193,-0.443614,0.323043,0.14563,0.0261791,0 +1.22786,1.1198,0.339515,0.741736,-0.23657,0.11484,0 +0.606489,0.261497,0.58906,0.583795,-0.130695,0.165693,0 +1.44194,-0.170152,1.0639,1.97844,0.488034,1.32387,0 +-0.139039,-0.27007,1.494,0.0228067,-0.325174,0.637486,0 +1.95366,-0.216114,0.850463,2.66981,-0.227559,0.717893,0 +-0.172689,1.6094,-0.0550136,-1.42101,1.7315,3.2603,0 +2.09813,0.191554,2.06315,2.55135,0.206452,1.00597,0 +0.825216,0.221529,1.66054,0.894461,-0.642798,0.186727,0 +0.995788,0.488312,2.2615,0.913831,0.385913,0.929561,0 +-0.114671,-0.361996,-0.563805,0.122637,-0.181004,0.108982,0 +1.39785,1.28067,0.730272,0.839331,-0.744168,-0.0313306,0 +1.12807,0.12261,0.613314,1.35636,-0.235068,0.325975,0 +0.57458,-0.406959,0.499591,1.04123,-1.16992,-0.0201481,0 +-0.621746,-1.10639,0.057632,0.0272768,-0.530166,-0.0254731,0 +0.981284,1.18475,0.609003,0.376684,0.0397557,1.79087,0 +0.261864,1.00489,-0.0528577,-0.413021,-0.10066,-0.513241,0 +0.261864,-0.769664,0.313106,0.910851,-1.74059,0.623108,0 +1.04046,1.58742,1.31236,0.152437,1.54903,1.35423,0 +0.155111,-1.12038,0.596606,1.03452,-0.546685,0.434338,0 +0.470728,-0.24609,0.597145,0.787926,0.413696,0.351535,0 +0.197464,-0.382979,0.549176,0.539094,-0.284626,0.402655,0 +1.42164,1.20573,1.69342,0.926496,0.675004,1.19874,0 +-1.07196,-2.40733,0.860703,0.419149,-0.475351,0.0277766,0 +0.537448,0.173568,-0.184906,0.5607,-1.60919,0.662247,0 +1.18899,1.92814,1.88799,0.0883671,1.73976,1.58613,0 +4.02257,-0.913547,-0.191374,5.8465,-0.768196,10.4434,0 +0.579221,-0.504879,0.565346,1.1202,-0.280121,0.814807,0 +1.48198,2.11898,-0.218862,0.323043,0.313078,0.950328,0 +0.292613,0.661171,-0.331507,-0.117254,1.3906,-0.264032,0 +0.0147084,-0.179144,-0.470563,0.152437,-0.365722,0.143595,0 +-0.333978,-0.543848,-0.589137,-0.0226385,-0.0210659,0.374965,0 +1.35666,0.553259,1.89769,1.32954,0.505304,1.44475,0 +1.13561,3.05023,0.0252935,-0.815323,-0.541429,1.10315,0 +0.300156,-0.699721,0.245734,0.906381,-0.657816,0.735732,0 +0.825216,-0.322028,-1.04727,1.29974,-0.806491,0.285505,0 +-0.721537,-1.18433,0.276455,-0.0434986,-1.68803,0.174213,0 +0.590825,0.415372,0.390718,0.448204,-1.11961,0.0402903,0 +1.1565,-0.0542462,0.787403,1.52548,-0.111172,0.838237,0 +1.74132,1.07184,0.963648,1.43682,-1.2788,0.865927,0 +0.971421,-0.080225,-0.115918,1.30719,-0.542931,0.359256,0 +-0.604921,-0.841605,-1.06505,-0.149289,-1.3674,0.0126004,0 +0.538609,-0.375984,0.327119,0.971942,0.0757981,-0.223296,0 +0.529906,0.357419,0.0452356,0.413189,-0.0841402,0.759428,0 +1.23308,0.2575,1.00407,1.39138,0.113342,0.777799,0 +-0.481343,-0.0332632,1.40992,-0.593312,1.43039,0.762623,0 +0.964459,1.27967,1.37704,0.284303,-0.548938,1.48549,0 +1.59685,2.2279,1.60826,0.389349,-0.0991579,0.811346,0 +1.32881,1.67535,1.4277,0.457144,-0.55945,0.62231,0 +0.670309,0.715128,1.50586,0.327513,-0.807242,0.802294,0 +1.42744,0.352423,2.14508,1.57018,-0.665325,0.312396,0 +0.525845,-0.214116,1.21319,0.834861,-0.964928,0.0906113,0 +1.68272,3.13316,1.08168,-0.175364,1.25469,2.45091,0 +1.43846,0.0736497,2.63069,1.79219,-0.545183,0.867525,0 +0.0077463,0.305461,0.679608,-0.21783,-0.0518522,2.09174,0 +-0.0264842,-0.323027,0.329275,0.206823,-0.960422,0.109515,0 +1.45877,2.51266,1.44549,-0.000288389,-0.959671,0.441793,0 +1.45529,1.29066,1.41746,0.906381,-0.229061,1.12046,0 +-0.314252,-2.12856,0.219324,1.18352,-0.600749,0.145725,0 +0.305377,-0.770663,-0.0598644,0.965982,-1.01599,0.346476,0 +1.08804,0.639189,-0.599916,0.919791,-1.44925,0.277252,0 +1.19595,0.314454,0.472103,1.30123,-1.79465,0.378426,0 +-0.723277,-1.35619,0.345444,0.082407,0.557866,0.231723,0 +0.168455,-0.342012,-0.204309,0.472044,-0.450572,0.145991,0 +-0.186033,-0.239096,0.650504,-0.0606337,-0.0886455,0.107651,0 +-1.12012,-1.17433,-0.488349,-0.563511,-1.09408,0.0362966,0 +0.365716,-0.299047,1.08599,0.692565,-2.66268,0.409843,0 +1.10138,0.917962,1.00892,0.72907,0.0502681,0.942607,0 +-0.944325,-1.60199,-0.313721,-0.0181685,-0.697613,0.439663,0 +-0.200537,-1.71789,-0.147178,1.02335,-1.11661,0.688872,0 +0.218931,-0.502881,0.903821,0.656805,-1.7023,0.349139,0 +1.8295,1.78326,1.37381,1.01888,-0.165236,0.845692,0 +0.392404,-1.03445,-0.0124347,1.27516,-1.51082,0.421825,0 +3.34435,2.08901,-0.0587864,2.7376,-2.7708,1.27116,0 +3.21555,1.99608,1.34039,2.6415,-0.99271,1.46179,0 +-0.380392,-0.822621,-0.475952,0.125617,0.486532,-0.0323956,0 +1.34622,0.272488,1.3571,1.52548,0.567627,1.14442,0 +-0.203438,-1.06642,0.273761,0.533879,-0.596243,0.279914,0 +0.687134,-0.112199,0.427907,0.965982,-3.59227,-0.378785,0 +2.02386,0.727118,2.32995,2.05667,-2.14832,0.835042,0 +-0.942584,-1.64295,-0.750829,0.0146117,-1.47553,-0.0635467,0 +0.25026,-0.237097,0.372393,0.498119,-0.468593,-0.130109,0 +1.03872,-0.350005,1.49615,1.59477,-0.990458,-0.370265,0 +-0.222004,-0.407958,-0.439841,0.0190817,-1.81943,-0.138096,0 +-0.560827,-0.8476,0.235493,-0.0889439,-2.92248,-0.0867103,0 +0.0530001,0.783072,-0.691542,-0.515831,-1.09033,-0.11866,0 +-0.228386,-0.857592,0.0349951,0.346138,-1.43723,0.649733,0 +0.37906,-0.425944,0.766383,0.804316,-1.29156,0.204832,0 +1.17912,0.169572,0.523306,1.38765,-2.13631,0.475873,0 +1.16926,0.878994,0.483422,0.846036,0.163652,0.696859,0 +0.47711,3.18612,0.869327,-1.76297,0.533087,0.755967,0 +-1.311,-1.30523,-1.46713,-0.710277,2.99824,0.194714,0 +0.239237,-0.231102,0.846151,0.480239,-2.07398,0.13401,0 +0.866989,1.39857,2.03028,0.070487,-0.832772,0.763421,0 +0.60939,1.99608,1.75756,-0.705062,0.543599,1.10422,0 +1.19305,0.325445,2.14777,1.28931,0.563873,0.31639,0 +1.79701,0.696143,1.76187,1.78847,-0.0458451,0.700853,0 +1.19421,0.371407,1.44657,1.25728,-2.09125,0.608731,0 +-0.00443742,-1.22629,0.424673,0.908616,-0.667577,0.105787,0 +1.46109,2.10899,1.65731,0.303673,0.219217,0.949529,0 +1.27137,1.17276,1.35386,0.758126,-0.066119,0.971095,0 +-0.973334,-0.772661,0.00373457,-0.673772,-2.2144,0.388277,0 +1.50692,2.27386,0.496357,0.239603,-1.54086,0.784189,0 +0.810712,1.57243,0.808962,-0.131409,2.14373,2.62743,0 +0.565877,-0.719704,1.31721,1.26324,0.0990756,0.169687,0 +0.704539,0.138597,0.866093,0.801336,-0.0721261,-0.0244081,0 +0.623314,-1.22629,1.83625,1.71471,-0.54218,0.31852,0 +0.189922,-0.477901,0.723804,0.600185,-2.11003,0.790845,0 +-0.0966856,2.00208,3.97813,-1.61695,1.32978,2.42322,0 +0.832758,-0.362995,0.579898,1.34072,-0.203531,0.183,0 +0.858866,-0.0872193,0.504981,1.16788,0.0720437,0.140666,0 +0.166135,0.247508,0.839144,0.0287668,0.982116,0.299883,0 +0.406908,1.57243,2.39031,-0.649187,2.07841,1.65083,0 +0.917464,2.43673,2.22862,-0.638757,1.07748,1.99482,0 +0.762557,-0.782653,0.596606,1.56198,-1.44099,0.0181917,0 +-0.229546,-0.316033,-0.374086,-0.0591437,-1.21647,-0.0140244,0 +1.13793,1.63838,1.78774,0.239603,0.575887,1.97006,0 +2.02966,2.89835,0.381016,0.445224,-1.59492,1.35742,0 +0.788665,0.127606,1.29889,0.917556,0.787637,1.25385,0 +1.57713,0.28248,2.25772,1.81454,0.226726,1.34278,0 +-0.709933,-0.112199,-0.840838,-0.827988,-1.73008,0.0544015,0 +-1.27561,-0.0582429,-0.906593,-1.59534,0.729068,-0.487414,1 +-0.323535,0.142594,-0.0178244,-0.521791,0.59541,-0.646897,1 +-0.936202,-0.858591,-0.271142,-0.561276,0.848458,-0.567289,1 +-0.706452,-0.00928277,-0.211855,-0.900253,0.830437,-0.724376,1 +-0.858458,-0.687731,-0.503979,-0.589586,0.920543,-0.790405,1 +-1.7264,-0.418949,-0.864014,-1.90452,1.83887,-0.753663,1 +-0.556186,-1.08541,-1.1335,0.0958171,0.0172292,-0.728369,1 +-1.29765,-1.0974,-0.0798064,-0.848103,1.06546,-0.531345,1 +-0.514993,-0.157162,-0.912521,-0.543396,0.861223,-0.673256,1 +0.221252,0.877995,-0.0523187,-0.370555,-0.881579,-0.617078,1 +-0.92866,0.424364,-1.10278,-1.50892,-0.310907,-0.707602,1 +-0.321794,-1.16634,0.057632,0.457144,0.679509,-0.716921,1 +-0.255074,-0.44293,0.577203,0.00343663,-0.126941,0.12975,1 +0.516562,0.135599,1.29566,0.56219,-1.07681,-0.711862,1 +1.70186,0.509295,2.08202,1.80635,-1.30808,-0.619207,1 +-0.0444697,-0.981491,0.183752,0.67394,0.54435,-0.613883,1 +0.200945,-0.14817,0.603074,0.368489,1.83512,-0.53241,1 +0.0605424,0.213536,0.0517033,-0.0814938,0.0577769,-0.571815,1 +-1.30229,-0.923539,-1.38466,-0.984439,0.441479,-0.596576,1 +-0.989579,-0.743685,-0.857007,-0.716237,1.46569,-0.78295,1 +0.296675,0.559254,0.573969,-0.0360486,0.466258,-0.808776,1 +-0.382133,-0.459916,-0.696932,-0.147799,0.0202327,-0.565159,1 +-1.00814,-0.371988,-0.62417,-1.01722,0.795896,-0.674321,1 +-1.14971,-0.838608,-1.12703,-0.851083,1.59183,-0.766975,1 +-1.32086,-0.814627,-0.53524,-1.08799,1.33803,-0.335919,1 +0.199205,0.242512,-0.633333,0.074957,-0.36422,-0.994618,1 +0.0767874,-0.39397,0.650504,0.392329,0.2898,-0.665535,1 +0.0953531,-0.357999,0.327119,0.389349,1.15332,-0.568088,1 +0.493355,-0.424944,0.196148,0.950337,0.652477,-0.4118,1 +-0.234768,0.189555,-0.450082,-0.443566,1.59709,-0.749669,1 +-1.09343,-0.869582,-0.857007,-0.755722,-0.102161,-0.861227,1 +-0.520215,-0.401963,-0.912521,-0.36832,0.660737,-0.329263,1 +-1.24196,-1.19931,-1.34747,-0.700592,1.02567,-0.720382,1 +-1.49955,-1.00247,-0.481342,-1.17814,0.455746,-0.808776,1 +0.146989,0.978913,-0.0172854,-0.541161,-0.256093,-0.502058,1 +-0.736041,-0.684733,0.111529,-0.434626,0.560869,-0.710797,1 +-0.803922,-0.169153,-0.643034,-0.906958,0.109588,-0.458926,1 +-0.618845,-0.080225,-1.2898,-0.734862,0.26427,-0.649294,1 +-0.76447,-0.896561,-0.882339,-0.31319,0.199694,-0.656749,1 +-0.565469,0.26949,-0.804727,-0.926328,0.33185,-0.639176,1 +-1.41195,-1.8338,-0.986361,-0.445801,1.35305,-0.755793,1 +-1.14565,-1.56901,-0.10406,-0.30127,1.6016,-0.682308,1 +-1.01975,-2.33739,0.327119,0.432559,0.277035,-0.789607,1 +0.191082,0.3804,0.758298,-0.0375386,0.122353,-0.370531,1 +0.723105,0.203544,0.48935,0.776751,-0.502383,-0.678581,1 +0.408649,-0.288056,0.327119,0.739501,0.428714,-0.00869946,1 +-0.333398,-0.778656,-0.211855,0.152437,0.384412,-0.480758,1 +-0.599699,-2.04962,-0.53524,0.758126,1.04219,-0.920867,1 +-1.16885,-0.734692,-0.752446,-0.953893,0.757601,-0.6879,1 +0.181219,-0.0612405,-0.139094,0.277598,-0.0623646,-0.709732,1 +-0.368789,-0.559835,-0.481342,-0.0554187,0.322088,-0.696153,1 +0.840301,-0.262077,0.0969771,1.27367,-0.921376,-0.657814,1 +-1.04295,-0.316033,-1.43425,-1.10364,0.825181,-0.679912,1 +-1.54945,-1.38516,-1.42455,-0.956873,0.781629,-0.747539,1 +-0.347902,-1.07142,-0.265753,0.352098,-0.460333,-0.817563,1 +-0.715155,-0.794643,-0.658665,-0.325855,1.32902,-0.557438,1 +-0.819587,-0.731695,-0.497511,-0.506146,0.250003,-0.714524,1 +-0.443051,-0.812629,-0.266291,0.0369618,0.388166,-0.650625,1 +-0.194155,-0.105205,-0.489966,-0.170894,-0.308655,-0.56649,1 +-1.35509,-0.106204,-1.50539,-1.6609,0.532336,-0.503922,1 +-0.532979,-0.865586,0.273222,-0.0382836,0.641965,-0.757124,1 +-1.04295,-0.100209,-0.53524,-1.26531,0.203448,-0.490343,1 +-1.22629,-1.05243,-0.804727,-0.789993,-0.00755002,-0.64956,1 +-1.42819,-1.64195,-0.456549,-0.609702,0.675755,-0.743546,1 +-1.00408,-0.755675,-1.23914,-0.725177,0.4167,-0.65382,1 +0.394144,-0.0822234,-0.0501628,0.567405,1.47695,-0.568088,1 +-0.531819,-0.390972,-1.0063,-0.39216,1.00539,-0.652489,1 +0.305377,-0.432938,-0.427445,0.714915,0.861223,-0.752864,1 +-1.16537,-1.88576,-1.12919,-0.0904339,0.106584,-0.864422,1 +-0.678603,0.0476709,0.00373457,-0.906958,1.59409,-0.422184,1 +-0.603761,-0.410956,-0.941626,-0.468896,0.0908158,-0.617876,1 +0.218351,-0.304043,-0.432834,0.507059,-0.190015,-0.541729,1 +-0.395477,-0.408957,-0.557876,-0.202184,-0.301146,-0.627195,1 +-0.667,-0.44293,-0.00327209,-0.527006,0.636709,-0.68577,1 +-0.0769596,-0.298048,-0.470563,0.122637,0.234235,-0.624799,1 +0.423733,-0.0992096,-0.467329,0.618065,0.132865,-0.570484,1 +0.0715658,-0.0432551,-0.271142,0.124127,0.225224,-0.617876,1 +-1.59296,-1.78484,-1.77111,-0.714002,0.185427,-0.451205,1 +0.816514,-0.182142,0.360535,1.18352,-0.938647,-0.684172,1 +-0.932141,-0.337016,-1.06128,-0.945698,1.03618,-0.795997,1 +-1.39686,-0.365992,-1.70805,-1.52084,0.61268,-0.695355,1 +-0.546323,-0.333019,-0.861319,-0.453251,-0.159229,-0.516169,1 +-1.49317,-1.49008,-1.20896,-0.807128,0.692274,-0.712395,1 +-0.672802,-1.19432,0.192376,0.0272768,1.44091,-0.171644,1 +-0.827129,-0.747682,-0.804727,-0.505401,0.761356,-0.835934,1 +-0.816106,-1.0914,-0.206465,-0.23422,0.933308,-0.634916,1 +-1.20889,-0.133182,-0.822513,-1.45305,1.0512,-0.832473,1 +-0.865421,0.121611,-0.978815,-1.20198,-0.0841402,-0.616811,1 +0.348891,0.335437,-1.08877,0.197883,0.82443,-0.659677,1 +1.30038,1.23371,0.340593,0.749186,-0.541429,-0.538268,1 +-0.56953,-1.10739,-0.912521,0.0943271,-0.0999088,-0.705738,1 +1.65429,0.853015,0.921069,1.48897,-0.483611,-0.5388,1 +-0.342101,0.394389,-1.2165,-0.733372,0.031496,-0.739286,1 +-1.51522,-1.54703,-1.05319,-0.792228,0.779377,-0.789873,1 +-0.894429,-0.522865,-0.396184,-0.758702,2.25036,-0.938173,1 +-0.730819,-0.391971,-0.858624,-0.645462,-0.0353327,-0.813303,1 +-0.380392,0.317451,-1.22405,-0.725177,-0.266605,-0.71133,1 +0.0553208,0.514291,-0.310487,-0.31319,0.581894,-0.7723,1 +-0.884566,-0.88457,-0.557876,-0.476346,0.0472645,-0.694556,1 +-1.54655,-1.24628,-0.82413,-1.0567,0.452742,-0.705472,1 diff --git a/data/wine.arff b/data/wine.arff new file mode 100755 index 0000000..bc1b0f0 --- /dev/null +++ b/data/wine.arff @@ -0,0 +1,194 @@ +@relation wine +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'clase' {0,1,2} +@data +1.51434,-0.560668,0.2314,-1.1663,1.90852,0.806722,1.03191,-0.657708,1.22144,0.251009,0.361158,1.84272,1.01016,0 +0.245597,-0.498009,-0.825667,-2.48384,0.018094,0.567048,0.731565,-0.818411,-0.543189,-0.292496,0.404908,1.11032,0.962526,0 +0.196325,0.0211715,1.10621,-0.267982,0.0881098,0.806722,1.21211,-0.497005,2.12996,0.268263,0.317409,0.786369,1.39122,0 +1.68679,-0.345835,0.486554,-0.806975,0.9283,2.48444,1.4624,-0.979113,1.02925,1.18273,-0.426341,1.18074,2.32801,0 +0.294868,0.227053,1.83523,0.450674,1.27838,0.806722,0.661485,0.226158,0.400275,-0.318377,0.361158,0.448336,-0.0377675,0 +1.47739,-0.515911,0.304301,-1.28608,0.858284,1.5577,1.36229,-0.175599,0.662349,0.729811,0.404908,0.335659,2.23274,0 +1.71143,-0.417446,0.304301,-1.46574,-0.261969,0.327374,0.491291,-0.497005,0.67982,0.082781,0.273659,1.36384,1.72465,0 +1.30494,-0.166807,0.88751,-0.567423,1.48843,0.487157,0.48128,-0.416654,-0.595603,-0.0034896,0.448658,1.36384,1.74053,0 +2.25341,-0.623328,-0.716315,-1.64541,-0.191954,0.806722,0.951817,-0.577356,0.67982,0.0612134,0.536158,0.335659,0.946649,0 +1.05858,-0.882918,-0.35181,-1.04653,-0.121938,1.09433,1.12201,-1.13982,0.45269,0.932547,0.229909,1.32159,0.946649,0 +1.35421,-0.157856,-0.242458,-0.447646,0.368173,1.0464,1.29221,-1.13982,1.37868,0.298458,1.27991,0.786369,2.42327,0 +1.37884,-0.76655,-0.169557,-0.806975,-0.331985,-0.151973,0.401188,-0.818411,-0.0365136,-0.0250573,0.929908,0.293405,1.6929,0 +0.923081,-0.542765,0.158499,-1.04653,-0.75208,0.487157,0.731565,-0.577356,0.382804,0.233755,0.842408,0.406082,1.81992,0 +2.15487,-0.542765,0.0855974,-2.42395,-0.612049,1.28607,1.66263,0.547563,2.12996,0.147484,1.27991,0.166643,1.28008,0 +1.69911,-0.417446,0.0491469,-2.24429,0.158126,1.60563,1.61257,-0.577356,2.39203,1.05333,1.06116,0.546929,2.54077,0 +0.775267,-0.471154,1.21557,-0.687199,0.858284,0.886613,0.881737,-0.497005,-0.228701,0.967055,1.41116,0.377913,1.78817,0 +1.60057,-0.372689,1.28847,0.151234,1.41841,0.806722,1.112,-0.255951,0.662349,0.492567,0.492408,0.053965,1.6929,0 +1.02162,-0.685988,0.923961,0.151234,1.06833,1.0464,1.3723,0.306509,0.22556,0.665108,0.754908,-0.0587126,1.21657,0 +1.46507,-0.668085,0.413653,-0.896807,0.578221,1.60563,1.9029,-0.336302,0.470162,1.57095,1.19241,0.293405,2.96311,0 +0.787585,0.683574,0.705257,-1.28608,1.13835,0.646939,1.00187,-1.54157,0.12073,0.0180781,0.0111587,1.05398,0.311541,0 +1.30494,-0.632279,-0.315359,-1.04653,1.83851,1.12629,1.14203,-0.979113,0.889479,0.255322,0.579908,1.54694,0.105132,0 +-0.0869865,1.31017,1.03331,-0.267982,0.158126,0.18357,0.381165,-0.898762,0.67982,-0.240734,0.317409,1.27933,0.0733763,0 +0.87381,-0.426398,-0.0237543,-0.866863,0.0881098,0.503135,0.851702,-0.738059,0.173145,-0.542681,0.667408,1.9554,0.914893,0 +-0.18553,-0.659133,0.559455,-0.507534,-0.331985,0.295418,0.34112,-0.818411,-0.228701,-0.486605,0.579908,1.43427,0.851383,0 +0.615134,-0.471154,0.88751,0.151234,-0.261969,0.375309,0.581394,-0.657708,0.12073,-0.66346,0.711158,1.70187,0.311541,0 +0.0608283,-0.256321,3.111,1.64844,1.69847,0.535092,0.651474,0.868969,0.574991,-0.637579,0.754908,0.828623,0.263908,0 +0.479637,-0.50696,0.923961,-1.01658,-0.472017,0.886613,0.911771,-0.175599,-0.246172,-0.111328,-0.163841,0.856793,1.42298,0 +0.368776,-0.551717,-0.825667,-0.747087,-0.402001,0.167592,0.160914,-0.738059,-0.420888,-0.477978,0.273659,0.222981,1.70878,0 +1.0709,-0.390592,1.58007,-0.02843,0.508205,1.0464,0.941805,0.0654548,0.295446,-0.240734,1.27991,1.11032,0.533829,0 +1.25566,-0.587522,-0.570513,-1.04653,-0.261969,0.567048,0.301074,-0.818411,0.67982,-0.154463,0.361158,1.37793,0.914893,0 +0.898446,-0.748647,1.21557,0.899835,0.0881098,1.12629,1.22213,-0.577356,1.37868,0.27689,1.01741,0.138473,1.70878,0 +0.713677,-0.605425,-0.0237543,-0.118262,0.438189,0.902591,1.16206,-1.13982,0.627406,0.794514,0.579908,0.377913,2.43915,0 +0.836856,-0.453252,-0.0237543,-0.687199,0.298157,0.199549,0.661485,0.467212,0.662349,-0.525427,1.19241,0.363828,0.771994,0 +0.935399,-0.721793,1.21557,0.00151402,2.2586,1.0464,0.711542,1.11002,-0.420888,0.147484,1.27991,0.546929,1.55,0 +0.627452,-0.480106,1.03331,-0.148206,0.718252,0.0877008,0.501302,-0.577356,-0.0889283,-0.37014,0.623658,0.363828,1.10543,0 +0.590498,-0.471154,0.158499,0.300954,0.018094,0.646939,0.951817,-0.818411,0.470162,0.0180781,0.361158,1.20891,0.549707,0 +0.34414,-0.623328,1.72587,-1.19625,0.718252,0.487157,0.651474,-0.175599,-0.403416,-0.197599,0.579908,0.237066,0.422685,0 +0.0608283,-0.614377,0.668807,-0.447646,-0.121938,0.247483,0.401188,-0.577356,-0.263644,-0.348572,0.711158,-0.143221,1.13718,0 +0.0854641,-0.748647,-0.97147,-1.19625,-0.121938,0.167592,0.611428,-0.657708,-0.385945,-0.585816,0.973658,0.110304,0.86726,0 +1.50202,1.48025,0.523004,-1.88496,1.97854,1.12629,1.01189,-1.30052,0.854536,0.0180781,-0.295091,1.29342,0.0416209,0 +0.689041,-0.560668,-0.206007,-0.986639,1.20836,1.36596,1.26217,-0.175599,1.3088,0.462372,-0.0325913,1.08215,0.152765,0 +0.504273,1.34598,-0.898568,-0.208094,-0.682064,0.247483,0.651474,-0.738059,-0.193758,-0.335632,-0.207591,0.546929,0.914893,0 +1.08321,-0.399543,0.814609,-1.34597,0.0881098,1.52574,1.53248,-1.54157,0.190617,0.160425,-0.338841,1.33567,1.10543,0 +0.294868,1.4713,-0.278908,-0.597367,0.228141,0.55107,0.601417,-0.336302,0.12073,-0.301123,-0.601341,0.546929,-0.212422,0 +0.0608283,-0.50696,-0.97147,-0.747087,0.508205,1.12629,0.97184,-0.657708,0.767178,-0.00780313,-0.338841,1.03989,0.438563,0 +1.4897,1.525,0.26785,-0.17815,0.788268,0.886613,0.62144,-0.497005,-0.595603,0.0784675,-0.382591,1.01172,1.05779,0 +1.69911,1.12219,-0.315359,-1.04653,0.158126,1.52574,1.14203,-0.738059,1.04672,-0.0681926,0.361158,1.16666,1.01016,0 +1.10785,-0.587522,-0.898568,-1.04653,0.0881098,1.28607,1.36229,-1.22017,0.959365,0.449431,-0.207591,1.01172,0.756117,0 +1.35421,-0.283175,0.122048,-0.208094,0.228141,0.726831,0.891748,-0.336302,1.37868,0.492567,0.492408,0.194812,0.994282,0 +1.15712,-0.542765,-0.35181,-0.627311,0.578221,0.934548,1.51246,-0.336302,0.854536,1.65722,0.711158,0.687776,1.62939,0 +0.0608283,-0.542765,-1.19017,-2.12451,-0.542033,0.678896,1.24215,-1.54157,2.30467,0.92392,0.711158,0.420167,1.28008,0 +1.02162,-0.614377,0.85106,-0.687199,-0.402001,0.247483,0.961828,-1.13982,1.22144,0.233755,1.23616,1.06806,1.64527,0 +1.00931,-0.524863,0.194949,-1.64541,0.788268,2.53237,1.71269,-0.336302,0.487633,0.859217,0.229909,0.913131,1.4071,0 +0.947717,-0.390592,1.14266,-0.717143,1.06833,1.12629,0.7616,0.226158,0.155674,0.535702,0.754908,0.448336,1.99458,0 +0.910764,-0.596474,-0.424711,-0.926751,1.27838,0.487157,0.871725,-1.22017,0.0508442,0.341593,-0.163841,0.828623,0.994282,0 +0.689041,-0.542765,0.340752,0.300954,1.13835,1.06237,0.751588,-1.30052,1.50098,0.514134,0.0986586,0.589183,1.18481,0 +1.50202,-0.56962,-0.242458,-0.956695,1.27838,1.44585,0.97184,-0.818411,0.767178,0.57021,-0.0763412,0.983555,0.708483,0 +0.356458,-0.327932,1.14266,-0.806975,0.158126,1.12629,1.2021,-0.416654,0.12073,0.406296,0.492408,0.321574,1.66114,0 +0.886128,-0.811307,0.486554,-0.836919,0.578221,1.76542,1.64261,-1.38087,0.78465,0.751378,-0.295091,0.363828,1.70878,0 +-0.776789,-1.24992,-3.66881,-2.6635,-0.822096,-0.503494,-1.46094,-0.657708,-2.04574,-1.34068,0.404908,-1.11506,-0.720508,1 +-0.826061,-1.1067,-0.315359,-1.04653,0.0881098,-0.391646,-0.940343,2.15459,-2.06321,-0.771298,1.27991,-1.32634,-0.212422,1 +-0.444206,-0.873967,-1.26307,-0.806975,0.018094,-0.439581,-0.619977,1.35108,-1.69631,0.298458,0.0986586,-1.43901,-0.942795,1 +0.824538,-0.972432,-1.62758,-0.447646,-0.402001,-0.311755,-0.239543,-0.336302,-1.50412,-0.542681,1.19241,-0.213644,-0.371199,1 +-0.776789,-1.07985,-0.752766,-0.148206,-0.892112,1.9252,1.07195,-1.38087,0.487633,-0.262302,1.14866,0.363828,-1.03806,1 +-1.02315,-0.793404,0.595906,-0.148206,0.298157,-0.647298,-0.279589,0.708266,-0.979978,-0.909331,2.15491,-0.537592,-1.24447,1 +-0.776789,-1.00824,0.705257,-0.417702,-0.121938,0.199549,0.62144,0.0654548,0.854536,-0.197599,1.01741,-0.438999,-0.218773,1 +0.134736,-1.18726,-2.42949,-1.34597,-1.52225,1.09433,1.15205,-0.818411,1.20397,0.104349,0.711158,0.800454,-0.777667,1 +-0.776789,-1.04404,-1.62758,0.0314581,-1.52225,-0.295777,-0.0293031,-0.738059,-0.962506,-0.16309,0.711158,1.22299,-0.752263,1 +0.418047,-1.24992,-0.0237543,-0.747087,0.718252,0.375309,-0.730103,1.51178,-2.04574,-0.814434,0.273659,-0.960133,0.00986557,1 +-0.973876,-1.02614,-2.24724,-0.806975,3.5889,-0.711211,-0.750126,-1.78263,1.58834,-0.952467,1.41116,0.645522,-0.0917516,1 +-0.875332,-0.650182,-0.570513,0.27101,0.228141,-1.90958,-1.01042,0.0654548,-0.228701,-0.866196,-0.225091,-1.11506,0.39093,1 +1.05858,-0.739696,1.10621,1.64844,-0.962128,1.0464,0.83168,-1.22017,0.487633,-0.723849,1.76116,0.772285,-1.06982,1 +0.602816,-0.605425,-0.461161,1.349,-0.892112,-0.663277,-0.189486,-0.738059,-0.979978,-0.568562,0.0986586,0.237066,-0.872933,1 +-0.0130791,-0.596474,0.85106,3.14564,2.74871,1.60563,0.861714,-1.22017,0.644877,-0.73679,1.54241,1.25116,0.756117,1 +-1.28182,-1.11565,-0.242458,0.450674,0.0881098,1.73346,0.110857,-1.86298,0.103259,-0.797179,0.142409,0.73003,0.441738,1 +-1.65136,-0.408495,-1.62758,-1.04653,-0.191954,-1.09469,-0.459794,-0.175599,-0.770319,-0.542681,1.19241,-0.664355,-1.01266,1 +0.0361925,-1.28573,-2.39304,-1.04653,-0.962128,-0.551429,0.000731172,-0.979113,-0.228701,-0.197599,1.01741,-0.185475,-1.12698,1 +-1.42964,0.495595,-0.497612,-0.447646,0.858284,-0.918928,-0.71008,0.547563,-1.11975,-1.03874,0.0111587,-0.129136,-0.784018,1 +-0.826061,-1.20517,-1.51823,-1.40586,2.53866,-0.63132,-0.179474,-0.095248,2.0426,-0.715222,0.448658,-0.424915,0.00986557,1 +-0.370298,1.37283,0.122048,1.04956,0.0881098,0.854656,0.521325,0.547563,0.627406,-1.07325,1.01741,0.73003,-0.901513,1 +-1.23255,-1.26783,-1.33598,-0.148206,-0.962128,0.199549,0.230994,-0.497005,-0.281115,-1.10344,1.84866,0.715946,-1.48899,1 +-0.345662,-0.471154,-0.606964,-0.208094,-0.962128,-0.151973,0.501302,-0.818411,0.312918,-0.499546,0.886158,0.744115,-0.104454,1 +-1.13401,-1.07985,0.523004,1.349,-1.52225,-0.471538,-0.449783,0.306509,-0.33353,-1.23285,1.54241,0.152558,-0.371199,1 +0.0608283,1.36388,-0.169557,0.899835,-1.03214,-1.03078,-0.439772,1.99389,0.0508442,-0.111328,-0.513841,-0.847456,-0.736385,1 +-1.42964,-1.29468,0.778159,-0.447646,-0.402001,-0.151973,0.180937,-1.13982,1.32627,-0.866196,-0.732591,0.659607,-0.720508,1 +-0.407252,-1.21412,-0.461161,-0.447646,-0.0519219,-0.151973,-0.0893717,-0.497005,-0.228701,-1.05168,1.19241,0.772285,-0.942795,1 +-1.03547,-0.650182,-0.206007,0.989667,-0.682064,-0.823059,-0.339657,0.547563,-0.0539851,-1.12501,1.62991,-0.495338,-0.799896,1 +-1.66368,-0.596474,0.923961,1.94788,-0.822096,-0.599364,-0.419749,0.306509,-0.438359,-1.0603,1.76116,0.842708,-0.587135,1 +-1.676,-0.24737,0.340752,0.630339,-1.10216,-0.551429,-0.339657,0.94932,-0.420888,-0.974034,0.186159,0.194812,-0.212422,1 +-1.13401,-0.900821,-0.242458,1.22922,-2.08238,-0.151973,-0.439772,0.467212,-0.368473,-1.43127,0.492408,0.842708,-0.387076,1 +-1.13401,-0.453252,-0.169557,-0.297926,-1.31221,-1.11067,-0.529874,1.27073,0.0857873,-1.14658,0.536158,-0.481254,-0.847529,1 +-1.23255,-0.739696,0.194949,0.750115,-0.962128,-1.35034,-0.78016,1.11002,0.0683157,-0.628952,0.404908,0.053965,-0.942795,1 +-0.382616,-0.721793,-0.38826,0.360842,-1.38222,-1.46219,-0.56992,1.75283,0.0508442,-0.866196,0.0111587,-0.777032,-0.799896,1 +-0.875332,0.441886,-0.534063,-0.447646,-0.822096,0.247483,0.220983,-0.898762,0.697292,-1.25441,0.842408,0.96947,-1.45088,1 +-1.70063,-0.31003,-0.315359,-0.447646,-0.121938,1.15824,0.230994,-1.54157,-0.420888,-0.779925,0.886158,0.490591,-1.27623,1 +-0.65361,-0.730744,-0.606964,-0.148206,4.35908,0.327374,0.241005,-0.336302,2.95112,-1.0603,0.886158,0.0257956,0.603691,1 +-1.46659,-0.193662,1.36137,0.600395,2.39863,-1.11067,-1.04046,-1.78263,-0.0539851,-1.10344,-0.0325913,-0.495338,-0.387076,1 +-0.875332,-0.82921,-1.40888,-1.04653,-1.03214,0.407266,0.471268,-0.577356,0.312918,-0.930899,1.19241,0.180727,-1.01266,1 +-0.776789,-1.13356,-0.97147,-0.297926,-0.822096,1.95716,1.7227,-0.979113,0.627406,-0.240734,0.361158,0.222981,-0.275933,1 +-0.875332,0.746233,-0.570513,-0.447646,-0.822096,0.886613,0.961828,0.708266,2.12996,-1.18971,2.02366,0.30749,-1.08252,1 +-1.13401,-0.229467,-2.42949,-0.597367,-0.191954,-0.104038,0.140891,-0.818411,-0.33353,-0.758358,1.36741,0.490591,-0.117156,1 +-0.493477,-0.891869,-1.70048,-0.297926,-0.822096,-1.35034,-0.670034,-0.577356,-0.420888,-1.12501,0.361158,0.222981,-0.587135,1 +-0.813743,0.101734,0.340752,0.450674,-0.121938,0.423244,0.0808226,-0.175599,-0.490774,-0.974034,-0.688841,1.08215,-0.980902,1 +-1.45427,-0.551717,-1.77338,0.00151402,-0.962128,0.327374,-0.389714,0.0654548,-0.298587,-1.29324,-0.0763412,-0.241814,-1.05394,1 +-0.604338,-0.542765,-1.40888,0.300954,-1.03214,-0.151973,-0.109395,-0.336302,-0.193758,-0.913645,0.361158,1.34976,-0.237826,1 +-0.7152,0.191248,-0.35181,0.750115,-0.682064,-0.982841,-0.189486,2.39565,-0.298587,-1.01717,-0.426341,0.96947,-1.37149,1 +-0.924604,-0.542765,-0.898568,-0.148206,-1.38222,-1.03078,0.000731172,0.0654548,0.0683157,-0.715222,0.186159,0.786369,-0.752263,1 +-0.345662,-0.524863,-0.315359,0.899835,-1.10216,-1.46219,-0.269577,0.94932,0.0683157,-0.758358,-0.338841,-0.269983,-0.822125,1 +-0.961558,-0.936626,-1.55468,-0.148206,-0.542033,0.103679,0.0107426,0.226158,0.854536,-1.01717,-0.426341,0.575099,-1.38102,1 +-1.71295,-0.882918,1.21557,0.151234,-0.402001,0.710852,0.891748,-0.577356,1.57087,-1.03874,0.0111587,0.913131,-0.212422,1 +-1.89772,1.25646,-1.99209,0.00151402,0.508205,1.41389,0.55136,-0.979113,3.47527,-0.930899,-0.907591,0.27932,-0.587135,1 +-0.592021,0.0838312,-0.716315,0.450674,-0.822096,0.407266,0.241005,-0.818411,-0.648018,-1.31912,-0.251341,0.237066,-1.33974,1 +-1.52818,0.307616,2.01748,0.151234,0.228141,-0.870994,0.000731172,1.91354,-0.945035,-0.542681,1.19241,-0.157305,-0.444236,1 +-1.95931,-1.42895,0.486554,0.450674,-0.822096,0.295418,-0.0192917,0.467212,-0.263644,-0.853255,0.623658,-0.424915,-0.993604,1 +-1.13401,-0.847112,0.486554,0.899835,-1.10216,0.423244,0.261028,0.547563,-0.962506,-0.930899,-0.120091,0.814539,-1.14921,1 +-2.42739,-0.739696,-0.606964,0.600395,-1.03214,0.263461,0.140891,1.27073,0.732235,-1.36225,3.29241,0.363828,-1.07934,1 +-1.45427,-0.775501,-1.37243,0.390786,-0.962128,-0.503494,-0.42976,-0.497005,-0.1064,-1.34068,-0.0325913,1.01172,-0.799896,1 +-0.7152,-0.650182,-0.643414,0.899835,0.578221,-0.471538,0.0607997,-0.175599,0.0333726,-1.29324,0.448658,0.490591,-1.27623,1 +-0.284073,0.978969,-1.40888,-1.04653,-1.38222,-1.06273,-0.78016,0.547563,-1.32941,-0.715222,-1.12634,-0.692524,-1.19049,1 +-1.23255,0.978969,-1.33598,-0.148206,-0.892112,-0.471538,-0.389714,0.0654548,0.487633,-1.62969,-0.120091,0.617353,-0.580784,1 +-1.91004,0.056977,0.194949,0.151234,-0.261969,0.966504,0.7616,-0.336302,0.417747,-0.779925,-0.688841,1.09623,-0.387076,1 +-1.77454,-0.256321,3.14745,2.69648,1.34839,1.41389,3.05422,0.868969,0.487633,0.406296,-0.120091,1.51877,-0.895162,1 +-0.7152,1.87411,1.32492,2.0976,0.158126,-0.151973,0.100845,0.547563,0.208088,-1.28461,-0.163841,0.715946,-1.21272,1 +0.0608283,3.10045,-0.862118,0.600395,-0.962128,0.519113,0.62144,-0.497005,0.732235,-1.0603,-0.995091,0.687776,-1.16508,1 +-1.39268,1.76669,0.0855974,0.450674,-1.24219,0.902591,1.00187,-1.22017,2.30467,-0.974034,-0.907591,1.44835,-1.16508,1 +-1.14633,-0.157856,-0.716315,0.450674,-1.03214,0.487157,0.62144,0.0654548,-0.420888,-0.991288,-0.426341,0.941301,-1.17143,1 +-0.702882,-0.721793,-0.278908,0.600395,-0.962128,0.710852,1.12201,0.226158,0.312918,-0.482292,-1.17009,0.321574,-1.254,1 +-1.49123,-0.18471,1.50717,2.69648,-0.542033,-0.263821,0.210971,1.75283,0.295446,-0.887764,0.0549087,-0.241814,-0.891987,1 +-0.776789,-0.632279,-0.242458,1.49872,-0.822096,-0.120016,0.421211,0.306509,0.540048,-1.26735,-0.295091,0.237066,-1.28575,1 +-1.18328,1.75774,0.0491469,0.750115,-1.38222,-0.311755,-0.279589,0.467212,-0.420888,-1.0603,-0.732591,-0.0587126,-0.529976,1 +-0.173212,-0.882918,-0.169557,-0.447646,1.55844,-1.25447,-0.78016,-1.22017,-1.13722,-0.413275,-0.863841,-1.86155,-0.371199,2 +-0.148576,0.585109,0.122048,0.151234,0.298157,-1.59001,-0.810194,-0.979113,-1.32941,0.147484,-0.951341,-1.67845,-0.688752,2 +-0.234801,-0.0235854,0.122048,1.349,-0.121938,-1.82969,-0.940343,-0.738059,-1.32941,0.27689,-1.30134,-1.76296,-0.593486,2 +-0.370298,1.08639,-0.0237543,0.600395,0.438189,-0.950885,-0.830217,-1.54157,-1.31194,-0.0250573,-0.776341,-1.86155,-0.466465,2 +-0.604338,-0.981383,-0.424711,-0.597367,-1.03214,-0.471538,-1.45093,1.91354,-0.595603,0.169052,-0.907591,-1.55169,-0.307688,2 +-0.493477,0.110685,-0.606964,-0.297926,-0.402001,-1.07871,-1.37083,2.15459,-1.13722,0.880784,-0.995091,-1.4531,-0.164789,2 +-0.924604,2.1337,0.632356,0.450674,-0.75208,-1.46219,-1.56105,1.35108,-1.38182,-0.521113,-0.907591,-1.88972,-0.0854005,2 +-0.579703,2.84086,0.996862,1.64844,-0.261969,-0.807081,-1.4309,2.15459,-0.857677,-0.0250573,-0.601341,-1.29817,-0.736385,2 +0.602816,1.12219,-0.643414,0.00151402,-0.822096,-1.07871,-1.55104,1.75283,-1.24205,0.27689,-0.645091,-1.11506,-0.529976,2 +-0.197848,0.558254,0.88751,1.349,0.0881098,0.0397661,-1.4309,1.35108,-1.36435,-0.0595655,-0.295091,-0.65027,-0.49822,2 +-0.0869865,0.423984,1.21557,0.450674,-0.261969,-1.20654,-1.53102,1.35108,-1.46918,-0.197599,-0.820091,-0.424915,-0.466465,2 +0.442683,0.200199,-0.0602049,0.151234,-0.75208,-1.43023,-1.53102,0.0654548,-1.66137,0.233755,-1.12634,-0.19956,0.105132,2 +0.63977,0.746233,1.28847,1.19928,-0.191954,-1.19056,-1.51099,1.11002,-1.81861,-0.305437,-0.295091,-0.777032,-0.720508,2 +0.762949,2.33958,-0.0602049,0.151234,-0.542033,-0.471538,-1.23067,0.868969,-0.997449,-0.283869,-0.207591,-0.791117,-0.625242,2 +-0.924604,1.38178,-0.606964,-0.297926,0.858284,-1.46219,-1.2507,-0.577356,-0.787791,1.35959,-1.34509,-0.86154,0.343297,2 +0.196325,1.10429,-0.789217,0.450674,0.158126,-1.27045,-1.48096,0.547563,-0.508246,-0.45641,-1.56384,-1.31225,0.263908,2 +1.08321,2.42014,-0.497612,0.151234,-1.38222,-2.10132,-1.6912,0.306509,-1.59148,-0.0681926,-1.65134,-1.80522,-1.05394,2 +-0.160894,2.03523,0.413653,0.600395,-0.962128,-0.950885,-1.38085,0.868969,-1.27699,1.11803,-1.82634,-1.05873,-0.387076,2 +0.393412,0.808893,0.0491469,0.600395,-0.542033,-0.583385,-1.27072,0.708266,-0.595603,1.45017,-1.78259,-1.39676,-0.307688,2 +0.097782,1.39968,-0.0237543,0.600395,0.9283,-1.41425,-0.64,-0.175599,-0.787791,1.8729,-1.69509,-1.80522,-0.625242,2 +0.615134,0.701476,0.923961,1.349,1.62846,-1.43023,-0.459794,-1.13982,-0.595603,1.52781,-1.60759,-1.84747,-0.784018,2 +-0.259437,0.298664,0.413653,0.750115,0.858284,-1.30241,-0.670034,-0.979113,-0.578132,2.47679,-2.08884,-1.60803,-0.847529,2 +0.134736,-0.390592,1.39782,1.79816,1.13835,-0.151973,-0.750126,-0.818411,-0.0539851,0.880784,-1.52009,-1.80522,-1.02218,2 +0.282551,0.862601,-0.315359,-0.297926,-0.121938,-0.791103,-1.20064,1.99389,0.487633,2.35601,-1.73884,-1.55169,-0.2283,2 +-0.518113,-0.936626,-0.97147,0.151234,0.228141,-1.30241,-1.45093,1.35108,-0.33353,1.09646,-1.65134,-1.49535,-0.339443,2 +0.208643,2.55441,-0.169557,0.750115,-0.472017,-0.886972,-1.40087,1.99389,-0.0714567,1.22587,-1.56384,-1.59394,-0.0695228,2 +1.03394,1.59661,0.0491469,0.00151402,-0.75208,-0.791103,-1.20064,0.94932,-0.0539851,1.70467,-1.69509,-1.36859,-0.847529,2 +-0.678246,0.620914,0.996862,2.24732,-0.191954,-0.63132,-1.45093,2.15459,-0.787791,1.05333,-1.25759,-1.24183,0.422685,2 +1.64984,-0.587522,1.21557,1.64844,-0.121938,0.806722,-0.720092,1.35108,1.93777,3.42577,-1.69509,-0.917879,-0.275933,2 +0.590498,-0.596474,0.996862,0.899835,-0.75208,0.487157,-0.930331,1.27073,1.22144,2.88658,-1.69509,-1.1714,-0.402954,2 +-0.789107,1.33702,0.0491469,0.450674,-0.822096,0.00780959,-1.11054,1.11002,-0.962506,1.11803,-1.73884,-1.4531,-0.720508,2 +0.849174,0.826796,0.632356,0.151234,0.508205,-0.743168,-1.47095,1.11002,-1.38182,0.354534,0.0111587,-1.11506,-0.212422,2 +-0.18553,0.835747,0.778159,0.750115,0.438189,-1.03078,-1.4309,1.91354,-1.10228,0.225128,-0.382591,-0.706609,-0.561731,2 +-0.0500328,0.996872,-0.0602049,-0.297926,0.438189,-1.44621,-1.33079,0.306509,-1.13722,0.0957216,-1.21384,-1.21366,-0.2283,2 +0.960035,0.379227,-0.242458,0.750115,-0.682064,-1.51012,-1.35081,0.38686,-0.979978,1.95054,-1.12634,-1.31225,-0.418832,2 +0.898446,1.81145,-0.38826,0.899835,-0.822096,-1.62197,-1.56105,1.27073,-0.770319,0.673735,-0.776341,-1.21366,-0.720508,2 +0.553544,1.22066,0.85106,1.04956,0.788268,-0.950885,-1.11054,0.547563,-0.228701,2.42503,-0.470091,-1.48127,-0.164789,2 +-0.222483,0.925261,-0.242458,0.00151402,-0.822096,-1.30241,-1.37083,0.306509,-1.08481,2.24386,-1.03884,-1.21366,-0.196544,2 +0.713677,0.218102,1.17912,1.49872,0.368173,-1.19056,-1.19063,0.226158,-0.0889283,1.5537,-0.951341,-1.14323,0.00986557,2 +0.491955,2.02628,1.79878,1.64844,0.858284,-0.503494,-1.07049,-0.738059,-0.840205,1.48468,-1.25759,-0.974218,-0.371199,2 +-0.986193,0.620914,-0.169557,-0.148206,-0.261969,-1.66991,-1.54103,0.306509,-1.50412,0.190619,-1.30134,-1.10098,-0.752263,2 +-0.284073,0.0480257,-0.315359,0.00151402,-0.962128,-1.44621,-1.52101,0.94932,-1.66137,2.08857,-1.69509,-1.38267,-0.879284,2 +1.42812,0.155442,0.413653,0.151234,-0.612049,-0.982841,-1.33079,0.627915,-0.613075,2.0023,-1.47634,-1.27,-0.275933,2 +0.87381,2.96618,0.304301,0.300954,-0.331985,-0.982841,-1.42089,1.27073,-0.927563,1.1396,-1.38884,-1.22774,-0.0218898,2 +0.491955,1.40864,0.413653,1.04956,0.158126,-0.791103,-1.28073,0.547563,-0.316058,0.967055,-1.12634,-1.48127,0.00986557,2 +0.331822,1.73984,-0.38826,0.151234,1.41841,-1.12665,-1.3408,0.547563,-0.420888,2.21798,-1.60759,-1.48127,0.279786,2 +0.208643,0.227053,0.0126963,0.151234,1.41841,-1.03078,-1.35081,1.35108,-0.228701,1.82976,-1.56384,-1.39676,0.295664,2 +1.39116,1.57871,1.36137,1.49872,-0.261969,-0.391646,-1.27072,1.59213,-0.420888,1.78663,-1.52009,-1.42493,-0.593486,2 diff --git a/data/zoo.arff b/data/zoo.arff new file mode 100755 index 0000000..7a80aa6 --- /dev/null +++ b/data/zoo.arff @@ -0,0 +1,120 @@ +@relation zoo +@attribute 'f1' real +@attribute 'f2' real +@attribute 'f3' real +@attribute 'f4' real +@attribute 'f5' real +@attribute 'f6' real +@attribute 'f7' real +@attribute 'f8' real +@attribute 'f9' real +@attribute 'f10' real +@attribute 'f11' real +@attribute 'f12' real +@attribute 'f13' real +@attribute 'f14' real +@attribute 'f15' real +@attribute 'f16' real +@attribute 'clase' {0,1,2,3,4,5,6} +@data +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,-1.68999,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,-0.874235,3 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,-1.68999,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,2.58886,1.13253,0 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,-1.11001,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,2.58886,-0.874235,3 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,-0.874235,3 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,-1.68999,2.58886,-0.874235,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,2.58886,-0.874235,1 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,-0.874235,3 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,0.891973,-1.22878,-2.13669,-1.94211,-0.291839,-0.447635,-1.39747,-1.68999,-0.382446,-0.874235,6 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,-1.22878,-2.13669,-1.94211,-0.291839,-0.447635,0.569698,-1.68999,-0.382446,-0.874235,6 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,-1.22878,-2.13669,-1.94211,-0.291839,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,6 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,1.13253,3 +-0.856761,-0.494438,-1.17934,1.20371,-0.55552,1.33704,0.891973,0.805758,0.463379,0.509805,-0.291839,2.21184,-1.39747,0.585862,-0.382446,1.13253,0 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,2.58886,-0.874235,1 +-0.856761,2.00247,0.839533,-0.822537,1.78229,1.33704,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,1.13253,1 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,-0.291839,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,5 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,-1.68999,-0.382446,-0.874235,4 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,0.509805,3.39262,-0.447635,0.569698,-1.68999,-0.382446,-0.874235,4 +1.15563,-0.494438,-1.17934,1.20371,1.78229,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,-0.413883,-1.68999,2.58886,1.13253,0 +-0.856761,-0.494438,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,-0.291839,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,5 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,2.58886,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,-0.413883,-1.68999,-0.382446,1.13253,0 +-0.856761,2.00247,0.839533,-0.822537,1.78229,1.33704,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,-1.11001,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,-0.874235,3 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,2.58886,-0.874235,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,-0.874235,0 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,-0.874235,3 +1.15563,-0.494438,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,3.39262,-0.447635,1.55328,-1.68999,2.58886,-0.874235,5 +1.15563,-0.494438,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,-0.291839,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,5 +-0.856761,2.00247,0.839533,-0.822537,-0.55552,-0.740515,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +-0.856761,-0.494438,0.839533,-0.822537,1.78229,-0.740515,0.891973,-1.22878,-2.13669,0.509805,-0.291839,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,5 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,-1.22878,-2.13669,-1.94211,-0.291839,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,6 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,1.33704,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,-0.874235,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,-0.291839,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,5 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,-0.874235,4 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,-1.22878,-2.13669,-1.94211,-0.291839,-0.447635,2.53686,-1.68999,-0.382446,1.13253,6 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,-0.874235,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +-0.856761,2.00247,0.839533,-0.822537,-0.55552,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,1.13253,1 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,2.58886,-0.874235,1 +-0.856761,2.00247,0.839533,-0.822537,-0.55552,1.33704,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,1.13253,1 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,1.13253,3 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,-0.874235,3 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,3.39262,-0.447635,-1.39747,0.585862,-0.382446,-0.874235,2 +1.15563,-0.494438,0.839533,1.20371,-0.55552,1.33704,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,2.58886,1.13253,0 +-0.856761,-0.494438,-1.17934,1.20371,-0.55552,1.33704,0.891973,0.805758,0.463379,0.509805,-0.291839,2.21184,-1.39747,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,2.58886,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,2.58886,1.13253,0 +-0.856761,2.00247,0.839533,-0.822537,-0.55552,-0.740515,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,1.13253,1 +-0.856761,-0.494438,-1.17934,-0.822537,-0.55552,-0.740515,0.891973,-1.22878,-2.13669,0.509805,3.39262,-0.447635,2.53686,0.585862,-0.382446,-0.874235,6 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,-1.11001,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,-0.874235,3 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,1.33704,0.891973,0.805758,0.463379,0.509805,-0.291839,2.21184,-1.39747,-1.68999,-0.382446,1.13253,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,1.33704,0.891973,0.805758,0.463379,0.509805,-0.291839,2.21184,-0.413883,0.585862,-0.382446,1.13253,0 +-0.856761,-0.494438,-1.17934,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,3.39262,-0.447635,-1.39747,0.585862,-0.382446,-0.874235,2 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,-1.22878,-2.13669,-1.94211,3.39262,-0.447635,-1.39747,-1.68999,-0.382446,-0.874235,6 +-0.856761,2.00247,0.839533,-0.822537,1.78229,1.33704,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +-0.856761,2.00247,0.839533,-0.822537,1.78229,1.33704,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,-1.39747,0.585862,-0.382446,-0.874235,2 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,-0.291839,-0.447635,-1.39747,-1.68999,-0.382446,-0.874235,6 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,-1.11001,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,-0.874235,3 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,0 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,-1.22878,-2.13669,-1.94211,-0.291839,-0.447635,1.06149,-1.68999,-0.382446,-0.874235,6 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,3.39262,2.21184,-1.39747,0.585862,-0.382446,1.13253,3 +-0.856761,2.00247,0.839533,-0.822537,1.78229,1.33704,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,1.13253,1 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,-0.291839,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,5 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,-1.68999,-0.382446,-0.874235,4 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,2 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,-0.874235,2 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,1.33704,0.891973,0.805758,0.463379,-1.94211,-0.291839,2.21184,-1.39747,0.585862,-0.382446,1.13253,3 +1.15563,-0.494438,-1.17934,1.20371,1.78229,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,0 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,-0.874235,0 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,0.891973,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,1.13253,1 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,-1.11001,0.805758,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,1.13253,0 +1.15563,-0.494438,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,3.39262,-0.447635,1.55328,-1.68999,-0.382446,-0.874235,5 +1.15563,-0.494438,-1.17934,1.20371,-0.55552,-0.740515,0.891973,0.805758,0.463379,0.509805,-0.291839,-0.447635,0.569698,0.585862,-0.382446,1.13253,0 +-0.856761,-0.494438,0.839533,-0.822537,-0.55552,-0.740515,-1.11001,-1.22878,-2.13669,0.509805,-0.291839,-0.447635,-1.39747,-1.68999,-0.382446,-0.874235,6 +-0.856761,2.00247,0.839533,-0.822537,1.78229,-0.740515,-1.11001,-1.22878,0.463379,0.509805,-0.291839,-0.447635,-0.413883,0.585862,-0.382446,-0.874235,1 diff --git a/deps b/deps new file mode 100755 index 0000000..5f72fdf --- /dev/null +++ b/deps @@ -0,0 +1 @@ +mvn dependency:resolve diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..38c7bf5 --- /dev/null +++ b/pom.xml @@ -0,0 +1,88 @@ + + 4.0.0 + com.testpbc4 + PBC4Project + jar + 1.0-SNAPSHOT + PBC4Project + http://maven.apache.org + + + + nz.ac.waikato.cms.weka + weka-dev + 3.9.6 + + + weka.classifiers.trees + PBC4cip + 1.0 + + + junit + junit + 3.8.1 + test + + + + nz.ac.waikato.cms.weka + weka-dev + 3.9.6 + + + org.apache.commons + commons-lang3 + 3.12.0 + + + + nz.ac.waikato.cms.weka + discriminantAnalysis + 1.0.3 + + + + + + org.apache.maven.plugins + maven-jar-plugin + 3.3.0 + + + + true + lib/ + com.testpbc4.App + + + + + + org.apache.maven.plugins + maven-assembly-plugin + + + create-my-bundle + package + + single + + + + + + com.testpbc4.App + + + + jar-with-dependencies + + + + + + + + diff --git a/run b/run new file mode 100755 index 0000000..cd2271a --- /dev/null +++ b/run @@ -0,0 +1 @@ +java -jar target/PBC4Project-1.0-SNAPSHOT-jar-with-dependencies.jar diff --git a/setup b/setup new file mode 100755 index 0000000..35e9322 --- /dev/null +++ b/setup @@ -0,0 +1,2 @@ +mvn install:install-file -Dfile=lib/PBC4cip-1.0.jar -DgroupId=weka.classifiers.trees -DartifactId=PBC4cip -Dversion=1.0 -Dpackaging=jar -DgeneratePom=true + diff --git a/src/main/java/com/testpbc4/App.java b/src/main/java/com/testpbc4/App.java new file mode 100644 index 0000000..807946d --- /dev/null +++ b/src/main/java/com/testpbc4/App.java @@ -0,0 +1,197 @@ +package com.testpbc4; + +import weka.core.*; +import java.util.Random; +import java.io.File; +import java.io.FileWriter; +import java.io.PrintWriter; +import java.util.Scanner; + +import weka.classifiers.trees.PBC4cip; + +import java.util.ArrayList; +import java.util.Iterator; + +import weka.core.converters.ConverterUtils.DataSource; + +public class App { + static int numFolds = 5; + static String path = "data/"; + static String datasetsFile = path + "datasets.txt"; + static String outputFile = "results_pbc4.txt"; + static boolean debug = true; + static boolean stratify = false; + static boolean normalizeData = false; + + public static void printAndExit(String s) { + System.out.println(s); + System.exit(0); + } + + private static Instances getInstances(String fileName) { + DataSource source = null; + System.out.println(String.format("Reading file " + path + "%s.arff", fileName)); + try { + source = new DataSource(String.format(path + "%s.arff", fileName)); + System.out.println("File read."); + return source.getDataSet(); + } catch (Exception e) { + printAndExit( + String.format("*** Error trying to read " + path + "%s.arff file... (%s)", fileName, + e.getMessage())); + } + return null; + } + + private static void validation(Instances instancesIn, int seed, ArrayList accuracy, + ArrayList timeSpent, ArrayList complexity) throws Exception { + PBC4cip pb4 = new PBC4cip(); + Random rand = new Random(seed); + pb4.setSeed(seed); + Instances instances; + Instances training = null; + Instances test = null; + long startTime; + // Normalize normalize = new Normalize(); + + // normalize.setInputFormat(instancesIn); + // if (normalizeData) { + // instances = Filter.useFilter(instancesIn, normalize); + // } else { + instances = instancesIn; + // } + instances.randomize(rand); + if (stratify) { + instances.stratify(numFolds); + } + for (int i = 0; i < numFolds; i++) { + startTime = System.currentTimeMillis(); + training = instances.trainCV(numFolds, i); + test = instances.testCV(numFolds, i); + pb4.buildClassifier(training); + // let's classify + int aciertos = 0; + for (int j = 0; j < test.numInstances(); j++) { + double v = pb4.classifyInstance(test.instance(j)); + double trueValue = test.instance(j).value(test.classIndex()); + if (trueValue == v) + aciertos++; + } + double acc = aciertos / (double) test.numInstances(); + double tspent = (System.currentTimeMillis() - startTime) / 1000.0; + if (debug) { + System.err.println(String.format("%f, %f", acc, tspent)); + } + accuracy.add(acc); + timeSpent.add(tspent); + complexity.add(0.0); + } + } + + private static double[] meanAndDeviation(ArrayList input) { + double sum = 0.0; + int i = 0; + double[] results = new double[4]; // 0 -> mean, 1 -> std + Iterator it = input.iterator(); + // Compute mean + while (it.hasNext()) { + i++; + sum += (double) it.next(); + } + results[0] = i != 0 ? sum / (double) i : 0; + it = input.iterator(); + sum = 0.0; + while (it.hasNext()) { + sum += Math.pow((double) it.next() - results[0], 2); + } + results[1] = i != 0 ? Math.sqrt(sum / (double) i) : 0; + return results; + } + + private static void initializeOutput() { + try { + File f = new File(outputFile); + f.delete(); + } catch (Exception e) { + printAndExit( + String.format("*** Error trying to delete the output file %s... (%s)", outputFile, e.getMessage())); + } + } + + private static void store(String dataset, double[] accuracy, double[] timeSpent, double[] complexity) + throws Exception { + // Append output + FileWriter file = new FileWriter(outputFile, true); + PrintWriter linePrint = new PrintWriter(file); + linePrint.printf("%s; %f; %f; %f; %f; %f; %f%n", dataset, accuracy[0], accuracy[1], timeSpent[0], timeSpent[1], + complexity[0], complexity[1]); + linePrint.close(); + } + + public static void main(String[] args) throws Exception { + Instances instances = null; + Scanner sc; + File file = null; + Random gen; + double[] accuracyStat = new double[2]; + double[] timeStat = new double[2]; + double[] complexityStat = new double[2]; + int[] seeds = { 57, 31, 1714, 17, 23, 79, 83, 97, 7, 1 }; + String dataset; + String debugMsg, stratMsg, normMsg; + ArrayList timeSpent; + ArrayList accuracy; + ArrayList complexity; + + debugMsg = debug ? "With debug output" : ""; + stratMsg = stratify ? "stratified" : "without stratification"; + normMsg = normalizeData ? " with normalization" : " without normalization"; + try { + file = new File(datasetsFile); + } catch (Exception e) { + printAndExit(String.format("*** Error trying to read datasets file... (%s)", + e.getMessage())); + } + System.out.println(String.format("%d fold cross validation %s %s %s", + numFolds, stratMsg, debugMsg, normMsg)); + initializeOutput(); + sc = new Scanner(file); + while (sc.hasNextLine()) { + dataset = sc.nextLine(); + if (debug && dataset.equals("balloons")) { + printAndExit("* Check error output. Debug End."); + } + timeSpent = new ArrayList<>(); + accuracy = new ArrayList<>(); + complexity = new ArrayList<>(); + for (int seed : seeds) { + // Establece la semilla + gen = new Random(seed); + // Obtiene los datos + instances = getInstances(dataset); + instances.randomize(gen); + instances.setClassIndex(instances.numAttributes() - 1); + System.out.println("Instances:"); + System.out.println(instances.toString()); + try { + validation(instances, seed, accuracy, timeSpent, complexity); + } catch (Exception e) { + printAndExit(String.format("*** Error training dataset %s... (%s)", dataset, + e.getMessage())); + } + + } + accuracyStat = meanAndDeviation(accuracy); + timeStat = meanAndDeviation(timeSpent); + complexityStat = meanAndDeviation(complexity); + try { + store(dataset, accuracyStat, timeStat, complexityStat); + } catch (Exception e) { + printAndExit(String.format("*** Error storing results of dataset %s... (%s)", + dataset, e.getMessage())); + } + } + sc.close(); + printAndExit("* End."); + } +} diff --git a/src/test/java/com/testpbc4/AppTest.java b/src/test/java/com/testpbc4/AppTest.java new file mode 100644 index 0000000..da8ac43 --- /dev/null +++ b/src/test/java/com/testpbc4/AppTest.java @@ -0,0 +1,38 @@ +package com.testpbc4; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..89265e2 --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +artifactId=PBC4Project +groupId=com.testpbc4 +version=1.0-SNAPSHOT diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..7af0389 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1 @@ +com/testpbc4/App.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..675a9e7 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1 @@ +/Users/rmontanana/Code/PBC4cip/src/main/java/com/testpbc4/App.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..2d72396 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1 @@ +com/testpbc4/AppTest.class diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..743c8cf --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1 @@ +/Users/rmontanana/Code/PBC4cip/src/test/java/com/testpbc4/AppTest.java diff --git a/target/surefire-reports/TEST-com.testpbc4.AppTest.xml b/target/surefire-reports/TEST-com.testpbc4.AppTest.xml new file mode 100644 index 0000000..9f6e221 --- /dev/null +++ b/target/surefire-reports/TEST-com.testpbc4.AppTest.xml @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/target/surefire-reports/com.testpbc4.AppTest.txt b/target/surefire-reports/com.testpbc4.AppTest.txt new file mode 100644 index 0000000..57273b9 --- /dev/null +++ b/target/surefire-reports/com.testpbc4.AppTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: com.testpbc4.AppTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.009 s -- in com.testpbc4.AppTest