Expose a few methods of Client and WSTester as API for Jim, new distributables.
authorpvtroshin <pvtroshin@e3abac25-378b-4346-85de-24260fe3988d>
Mon, 27 Jun 2011 17:11:09 +0000 (17:11 +0000)
committerpvtroshin <pvtroshin@e3abac25-378b-4346-85de-24260fe3988d>
Mon, 27 Jun 2011 17:11:09 +0000 (17:11 +0000)
git-svn-id: link to svn.lifesci.dundee.ac.uk/svn/barton/ptroshin/JABA2@4343 e3abac25-378b-4346-85de-24260fe3988d

23 files changed:
testsrc/compbio/ws/server/RegistryWSTester.java
webservices/compbio/ws/client/Jws2Client.java
website/archive/TO1381.fasta [deleted file]
website/archive/aacon-ws-client.jar [deleted file]
website/archive/datamodel-1.0.jar [deleted file]
website/archive/datamodel-1.1.jar [deleted file]
website/archive/datamodel-2.0.jar [moved from website/archive/datamodel-1.2.jar with 57% similarity]
website/archive/datamodel-src-1.1.jar [deleted file]
website/archive/datamodel-src-2.0.jar [moved from website/archive/datamodel-src-1.2.jar with 50% similarity]
website/archive/full-jaba-client-2.0.jar [moved from website/archive/full-jaba-client.jar with 72% similarity]
website/archive/full-jaba-client-pack.zip
website/archive/jaba-no-binaries.war
website/archive/jaba-no-jaxws-no-binaries.war [deleted file]
website/archive/jaba-no-jaxws-windows.war [deleted file]
website/archive/jaba-no-jaxws.war [deleted file]
website/archive/jaba-source.jar [deleted file]
website/archive/jaba-windows.war [deleted file]
website/archive/jaba.war
website/archive/jabaws-src-2.0.jar [new file with mode: 0644]
website/archive/jaxws-lib.zip [deleted file]
website/archive/min-jaba-client-2.0.jar [new file with mode: 0644]
website/archive/min-jaba-client.jar [deleted file]
website/archive/out.txt [deleted file]

index 64c70ab..8608351 100644 (file)
@@ -5,8 +5,11 @@ import static org.testng.Assert.assertNotNull;
 import static org.testng.Assert.assertTrue;\r
 import static org.testng.Assert.fail;\r
 \r
+import java.net.ConnectException;\r
 import java.util.EnumSet;\r
 \r
+import javax.xml.ws.WebServiceException;\r
+\r
 import org.testng.annotations.Test;\r
 \r
 import compbio.metadata.AllTestSuit;\r
@@ -18,34 +21,66 @@ public class RegistryWSTester {
 \r
        @Test(groups = {AllTestSuit.test_group_webservices})\r
        public void testGetSupportedServices() {\r
-               compbio.data.msa.RegistryWS reg = Jws2Client\r
-                               .connectToRegistry(WSTesterTester.SERVER);\r
-               assertEquals(EnumSet.of(Services.AAConWS, Services.JronnWS,\r
-                               Services.MuscleWS, Services.ClustalWS),\r
-                               reg.getSupportedServices());\r
+               try {\r
+                       compbio.data.msa.RegistryWS reg = Jws2Client\r
+                                       .connectToRegistry(WSTesterTester.SERVER);\r
+                       assertEquals(EnumSet.of(Services.AAConWS, Services.JronnWS,\r
+                                       Services.MuscleWS, Services.ClustalWS),\r
+                                       reg.getSupportedServices());\r
+               } catch (ConnectException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               } catch (WebServiceException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               }\r
        }\r
        @Test(groups = {AllTestSuit.test_group_webservices})\r
        public void testTestService() {\r
-               compbio.data.msa.RegistryWS reg = Jws2Client\r
-                               .connectToRegistry(WSTesterTester.SERVER);\r
-               assertNotNull(reg.testService(Services.AAConWS));\r
+               compbio.data.msa.RegistryWS reg = null;\r
+               try {\r
+                       reg = Jws2Client.connectToRegistry(WSTesterTester.SERVER);\r
+                       assertNotNull(reg.testService(Services.AAConWS));\r
+               } catch (ConnectException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               } catch (WebServiceException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               }\r
        }\r
 \r
-       @Test(dependsOnMethods = {"testTestService"},groups = {AllTestSuit.test_group_webservices})\r
+       @Test(dependsOnMethods = {"testTestService"}, groups = {AllTestSuit.test_group_webservices})\r
        public void testIsOperating() {\r
-               compbio.data.msa.RegistryWS reg = Jws2Client\r
-                               .connectToRegistry(WSTesterTester.SERVER);\r
-               assertTrue(reg.isOperating(Services.AAConWS));\r
+               try {\r
+                       compbio.data.msa.RegistryWS reg = Jws2Client\r
+                                       .connectToRegistry(WSTesterTester.SERVER);\r
+                       assertTrue(reg.isOperating(Services.AAConWS));\r
+               } catch (ConnectException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               } catch (WebServiceException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               }\r
        }\r
 \r
-       @Test(dependsOnMethods = {"testTestService"},groups = {AllTestSuit.test_group_webservices})\r
+       @Test(dependsOnMethods = {"testTestService"}, groups = {AllTestSuit.test_group_webservices})\r
        public void testGetLastTestedOn() {\r
-               compbio.data.msa.RegistryWS reg = Jws2Client\r
-                               .connectToRegistry(WSTesterTester.SERVER);\r
-               assertNotNull(reg.getLastTestedOn(Services.AAConWS));\r
+               try {\r
+                       compbio.data.msa.RegistryWS reg = Jws2Client\r
+                                       .connectToRegistry(WSTesterTester.SERVER);\r
+                       assertNotNull(reg.getLastTestedOn(Services.AAConWS));\r
+               } catch (ConnectException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               } catch (WebServiceException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               }\r
        }\r
 \r
-       @Test(dependsOnMethods = {"testTestService"},groups = {AllTestSuit.test_group_webservices})\r
+       @Test(dependsOnMethods = {"testTestService"}, groups = {AllTestSuit.test_group_webservices})\r
        public void testGetLastTested() {\r
                try {\r
                        Thread.sleep(1000);\r
@@ -53,16 +88,32 @@ public class RegistryWSTester {
                        e.printStackTrace();\r
                        fail(e.getMessage());\r
                }\r
-               compbio.data.msa.RegistryWS reg = Jws2Client\r
-                               .connectToRegistry(WSTesterTester.SERVER);\r
-               System.out.println(reg.getLastTested(Services.AAConWS));\r
-               assertTrue(reg.getLastTested(Services.AAConWS) > 0);\r
+               try {\r
+                       compbio.data.msa.RegistryWS reg = Jws2Client\r
+                                       .connectToRegistry(WSTesterTester.SERVER);\r
+                       System.out.println(reg.getLastTested(Services.AAConWS));\r
+                       assertTrue(reg.getLastTested(Services.AAConWS) > 0);\r
+               } catch (ConnectException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               } catch (WebServiceException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               }\r
        }\r
 \r
        @Test(groups = {AllTestSuit.test_group_webservices})\r
        public void testTestAllServices() {\r
-               compbio.data.msa.RegistryWS reg = Jws2Client\r
-                               .connectToRegistry(WSTesterTester.SERVER);\r
-               System.out.println(reg.testAllServices());\r
+               try {\r
+                       compbio.data.msa.RegistryWS reg = Jws2Client\r
+                                       .connectToRegistry(WSTesterTester.SERVER);\r
+                       System.out.println(reg.testAllServices());\r
+               } catch (ConnectException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               } catch (WebServiceException e) {\r
+                       e.printStackTrace();\r
+                       fail(e.getLocalizedMessage());\r
+               }\r
        }\r
 }\r
index e775727..d93e43f 100644 (file)
@@ -32,6 +32,7 @@ import java.net.ConnectException;
 import java.net.MalformedURLException;\r
 import java.net.URL;\r
 import java.util.Arrays;\r
+import java.util.Collections;\r
 import java.util.List;\r
 import java.util.Set;\r
 import java.util.logging.Level;\r
@@ -56,6 +57,7 @@ import compbio.metadata.Option;
 import compbio.metadata.Preset;\r
 import compbio.metadata.ResultNotAvailableException;\r
 import compbio.metadata.WrongParameterException;\r
+import compbio.util.FileUtil;\r
 \r
 /**\r
  * A command line client for JAva Bioinformatics Analysis Web Services\r
@@ -134,7 +136,7 @@ public class Jws2Client {
                // Test service and quit\r
                boolean testService = CmdHelper.testService(cmd);\r
                if (testService) {\r
-                       testService(hostname, service);\r
+                       testService(hostname, service, new PrintWriter(System.out, true));\r
                        System.exit(0);\r
                }\r
 \r
@@ -194,26 +196,44 @@ public class Jws2Client {
                log.fine("Disconnected successfully!");\r
        }\r
 \r
-       // TODO make public?\r
-       private void testService(String hostname, Services service)\r
-                       throws IOException {\r
+       /**\r
+        * Asks registry to test the service on the host hostname\r
+        * \r
+        * @param hostname\r
+        * @param service\r
+        * @param writer\r
+        * @throws ConnectException\r
+        * @throws WebServiceException\r
+        */\r
+       public static void testService(String hostname, Services service,\r
+                       PrintWriter writer) throws ConnectException, WebServiceException {\r
                RegistryWS registry = connectToRegistry(hostname);\r
                if (registry != null) {\r
                        String message = registry.testService(service);\r
-                       System.out.println("Service " + service + " testing results: ");\r
-                       System.out.println(message);\r
-                       ((Closeable) registry).close();\r
+                       writer.println("Service " + service + " testing results: ");\r
+                       writer.println(message);\r
+                       FileUtil.closeSilently(((Closeable) registry));\r
                }\r
+               writer.flush();\r
        }\r
 \r
-       // TODO make public?\r
-       private void listServices(String hostname) throws IOException {\r
+       public static Set<Services> getServices(String hostname)\r
+                       throws WebServiceException, ConnectException {\r
                RegistryWS registry = connectToRegistry(hostname);\r
+               Set<Services> services = Collections.EMPTY_SET;\r
                if (registry != null) {\r
-                       Set<Services> services = registry.getSupportedServices();\r
+                       services = registry.getSupportedServices();\r
+                       FileUtil.closeSilently(((Closeable) registry));\r
+               }\r
+               return services;\r
+       }\r
+\r
+       private static void listServices(String hostname)\r
+                       throws WebServiceException, IOException {\r
+               Set<Services> services = Jws2Client.getServices(hostname);\r
+               if (!services.isEmpty()) {\r
                        System.out.println("Supported services are: "\r
                                        + Services.toString(services));\r
-                       ((Closeable) registry).close();\r
                } else {\r
                        System.out.println("Failed to connect to the registry! ");\r
                }\r
@@ -383,9 +403,10 @@ public class Jws2Client {
         * @return compbio.data.msa.RegistryWS - instance of a RegistryWS web\r
         *         service\r
         * @throws WebServiceException\r
+        * @throws ConnectException\r
         */\r
        public static compbio.data.msa.RegistryWS connectToRegistry(String host)\r
-                       throws WebServiceException {\r
+                       throws WebServiceException, ConnectException {\r
                URL url = null;\r
                String service = "RegistryWS";\r
                log.log(Level.FINE, "Attempting to connect...");\r
@@ -400,7 +421,7 @@ public class Jws2Client {
                Service serv = Service.create(url, qname);\r
 \r
                if (serv == null) {\r
-                       System.err.println("Could not connect to " + url\r
+                       throw new ConnectException("Could not connect to " + url\r
                                        + " the server is down?");\r
                }\r
 \r
diff --git a/website/archive/TO1381.fasta b/website/archive/TO1381.fasta
deleted file mode 100644 (file)
index 8a51f01..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
->Foobar_dundeefriends\r
-MTADGPRELLQLRAAVRHRPQDFVAWLMLADAELGMGDTTAGEMAVQRGLALHPGHPEAVARLGRVRWTQQRHAEAAVLLQQASDAAPEHPGIALWLGHALEDAGQAEAAAAAYTRAHQLLPEEPYITAQLLNWRRRLCDWRALDVLSAQVRAAVAQGVGAVEPFAFLSEDASAAEQLACARTRAQAIAASVRPLAPTRVRSKGPLRVGFVSNGFGAHPTGLLTVALFEALQRRQPDLQMHLFATSGDDGSTLRTRLAQASTLHDVTALGHLATAKHIRHHGIDLLFDLRGWGGGGRPEVFALRPAPVQVNWLAYPGTSGAPWMDYVLGDAFALPPALEPFYSEHVLRLQGAFQPSDTSRVVAEPPSRTQCGLPEQGVVLCCFNNSYKLNPQSMARMLAVLREVPDSVLWLLSGPGEADARLRAFAHAQGVDAQRLVFMPKLPHPQYLARYRHADLFLDTHPYNAHTTASDALWTGCPVLTTPGETFAARVAGSLNHHLGLDEMNVADDAAFVAKAVALASDPAALTALHARVDVLRRESGVFEMDGFADDFGALLQALARRHGWLGI\r
-\r
->Foobar\r
-MGDTTAGEMAVQRGLALHQQRHAEAAVLLQQASDAAPEHPGIALWLHALEDAGQAEAAAAYTRAHQLLPEEPYITAQLLNAVAQGVGAVEPFAFLSEDASAAESVRPLAPTRVRSKGPLRVGFVSNGFGAHPTGLLTVALFEALQRRQPDLQMHLFATSGDDGSTLRTRLAQASTLHDVTALGHLATAKHIRHHGIDLLFDLRGWGGGGRPEVFALRPAPVQVNWLAYPGTSGAPWMDYVLGDAFALPPALEPFYSEHVLRLQGAFQPSDTSRVVAEPPSRTQCGLPEQGVVLCCFNNSYKLNPQSMARMLAVLREVPDSVLWLLSGPGEADARLRAFAHAQGVDAQRLVFMPKLPHPQYLARYRHADLFLDTHPYNAHTTASDALWTGCPVLTTPGETFAARVAGSLNHHLGLDEMNVADDAAFVAKAVALASDPAALTALHARVDVLRRESGVFEMDGFADDFGALLQALARRHGWLGI\r
-\r
->dundeefriends\r
-MTADGPRELLQLRAAVRHRPQDVAWLMLADAELGMGDTTAGEMAVQRGLALHPGHPEAVARLGRVRWTQQRHAEAAVLLQQASDAAPEHPGIALWLGHALEDHQLLPEEPYITAQLDVLSAQVRAAVAQGVGAVEPFAFLSEDASAAEQLACARTRAQAIAASVRPLAPTRVRSKGPLRVGFVSNGFGAHPTGLLTVALFEALQRRQPDLQMHLFATSGDDGSTLRTRLAQASTLHDVTALGHLATAKHIRHHGIDLLFDLRGWGGGGRPEVFALRPAPVQVNWLAYPGTSGAPWMDYVLGDAFALPPALEPFYSEHVLRLQGAFQPSDTSRVVAEPPSRTQCGLPEQGVVLCCFNNSYKLNPQSMARMLAVLREVPDSVLWLLSGPGEADARLRAFAHAQGVDAQRLVFMPKLPHPQYLARYRHADLFLDTHPYNAHTTASDALWTGCPVLTTPGETFAARVAGSLNHHLGLDEMNVADDAAFVAKAVALASDPAALTALHARVDVLRRESI
\ No newline at end of file
diff --git a/website/archive/aacon-ws-client.jar b/website/archive/aacon-ws-client.jar
deleted file mode 100644 (file)
index 1cbd308..0000000
Binary files a/website/archive/aacon-ws-client.jar and /dev/null differ
diff --git a/website/archive/datamodel-1.0.jar b/website/archive/datamodel-1.0.jar
deleted file mode 100644 (file)
index c7d7e8b..0000000
Binary files a/website/archive/datamodel-1.0.jar and /dev/null differ
diff --git a/website/archive/datamodel-1.1.jar b/website/archive/datamodel-1.1.jar
deleted file mode 100644 (file)
index 36dfa7f..0000000
Binary files a/website/archive/datamodel-1.1.jar and /dev/null differ
similarity index 57%
rename from website/archive/datamodel-1.2.jar
rename to website/archive/datamodel-2.0.jar
index ecbf161..0c3c02a 100644 (file)
Binary files a/website/archive/datamodel-1.2.jar and b/website/archive/datamodel-2.0.jar differ
diff --git a/website/archive/datamodel-src-1.1.jar b/website/archive/datamodel-src-1.1.jar
deleted file mode 100644 (file)
index c082cd0..0000000
Binary files a/website/archive/datamodel-src-1.1.jar and /dev/null differ
similarity index 50%
rename from website/archive/datamodel-src-1.2.jar
rename to website/archive/datamodel-src-2.0.jar
index 06610ed..b9ce647 100644 (file)
Binary files a/website/archive/datamodel-src-1.2.jar and b/website/archive/datamodel-src-2.0.jar differ
similarity index 72%
rename from website/archive/full-jaba-client.jar
rename to website/archive/full-jaba-client-2.0.jar
index 79644c4..b5953c1 100644 (file)
Binary files a/website/archive/full-jaba-client.jar and b/website/archive/full-jaba-client-2.0.jar differ
index ba40d1a..6cf2206 100644 (file)
Binary files a/website/archive/full-jaba-client-pack.zip and b/website/archive/full-jaba-client-pack.zip differ
index 8e76378..e7447d5 100644 (file)
Binary files a/website/archive/jaba-no-binaries.war and b/website/archive/jaba-no-binaries.war differ
diff --git a/website/archive/jaba-no-jaxws-no-binaries.war b/website/archive/jaba-no-jaxws-no-binaries.war
deleted file mode 100644 (file)
index 426285d..0000000
Binary files a/website/archive/jaba-no-jaxws-no-binaries.war and /dev/null differ
diff --git a/website/archive/jaba-no-jaxws-windows.war b/website/archive/jaba-no-jaxws-windows.war
deleted file mode 100644 (file)
index 11de750..0000000
Binary files a/website/archive/jaba-no-jaxws-windows.war and /dev/null differ
diff --git a/website/archive/jaba-no-jaxws.war b/website/archive/jaba-no-jaxws.war
deleted file mode 100644 (file)
index 7b1078e..0000000
Binary files a/website/archive/jaba-no-jaxws.war and /dev/null differ
diff --git a/website/archive/jaba-source.jar b/website/archive/jaba-source.jar
deleted file mode 100644 (file)
index 9328cc2..0000000
Binary files a/website/archive/jaba-source.jar and /dev/null differ
diff --git a/website/archive/jaba-windows.war b/website/archive/jaba-windows.war
deleted file mode 100644 (file)
index 76876ba..0000000
Binary files a/website/archive/jaba-windows.war and /dev/null differ
index 91a3bdc..4f289e2 100644 (file)
Binary files a/website/archive/jaba.war and b/website/archive/jaba.war differ
diff --git a/website/archive/jabaws-src-2.0.jar b/website/archive/jabaws-src-2.0.jar
new file mode 100644 (file)
index 0000000..8cf38fc
Binary files /dev/null and b/website/archive/jabaws-src-2.0.jar differ
diff --git a/website/archive/jaxws-lib.zip b/website/archive/jaxws-lib.zip
deleted file mode 100644 (file)
index 084df15..0000000
Binary files a/website/archive/jaxws-lib.zip and /dev/null differ
diff --git a/website/archive/min-jaba-client-2.0.jar b/website/archive/min-jaba-client-2.0.jar
new file mode 100644 (file)
index 0000000..7773157
Binary files /dev/null and b/website/archive/min-jaba-client-2.0.jar differ
diff --git a/website/archive/min-jaba-client.jar b/website/archive/min-jaba-client.jar
deleted file mode 100644 (file)
index 28403e3..0000000
Binary files a/website/archive/min-jaba-client.jar and /dev/null differ
diff --git a/website/archive/out.txt b/website/archive/out.txt
deleted file mode 100644 (file)
index 6398644..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-Conecting to JABAWS version 2 service\r
-
-
-calling analise.........\r
-#RawScore -0.226 -0.217 -0.479 -0.251 0.182 0.735 0.558 0.353 0.015 -0.322 -0.526 -0.755 -0.976 -1.206 -1.426 -1.609 -1.725 -1.826 -1.908 -1.993 -2.116 -2.229 -2.353 -2.472 -2.645 -2.818 -3.048 -3.296 -3.528 -3.753 -3.892 -4.033 -4.09 -4.096 -4.071 -4.013 -3.948 -3.894 -3.885 -3.878 -3.891 -3.888 -3.932 -4.051 -4.239 -4.397 -4.6 -4.737 -4.814 -4.844 -4.841 -4.841 -4.782 -4.755 -4.716 -4.664 -4.641 -4.64 -4.684 -4.71 -4.773 -4.88 -5.057 -5.267 -5.468 -5.648 -5.831 -5.958 -6.082 -6.213 -6.376 -6.567 -6.776 -7.042 -7.294 -7.526 -7.759 -8.028 -8.274 -8.492 -8.72 -8.931 -9.063 -9.123 -9.131 -9.102 -9.043 -9.009 -8.977 -8.937 -8.901 -8.881 -8.912 -8.968 -9.068 -9.147 -9.241 -9.368 -9.464 -9.583 -9.715 -9.814 -9.871 -9.948 -10.055 -10.185 -10.335 -10.535 -10.708 -10.866 -11.033 -11.274 -11.519 -11.733 -11.993 -12.176 -12.307 -12.428 -12.519 -12.594 -12.65 -12.7 -12.784 -12.87 -12.964 -13.053 -13.15 -13.257 -13.379 -13.539 -13.714 -13.922 -14.086 -14.252 -14.46 -14.599 -14.72 -14.878 -15.01 -15.143 -15.262 -15.401 -15.563 -15.705 -15.852 -16.013 -16.195 -16.432 -16.672 -16.945 -17.167 -17.362 -17.544 -17.765 -17.968 -18.11 -18.24 -18.358 -18.46 -18.543 -18.631 -18.705 -18.782 -18.841 -18.893 -18.965 -19.057 -19.166 -19.25 -19.383 -19.482 -19.598 -19.76 -19.943 -20.081 -20.225 -20.379 -20.538 -20.73 -20.921 -21.158 -21.362 -21.58 -21.82 -22.03 -22.225 -22.451 -22.653 -22.832 -22.978 -23.095 -23.219 -23.325 -23.427 -23.528 -23.568 -23.566 -23.525 -23.522 -23.504 -23.477 -23.453 -23.474 -23.536 -23.531 -23.563 -23.585 -23.558 -23.542 -23.507 -23.503 -23.472 -23.406 -23.357 -23.261 -23.112 -22.976 -22.864 -22.809 -22.751 -22.736 -22.803 -22.919 -23.074 -23.24 -23.503 -23.767 -24.034 -24.305 -24.526 -24.737 -24.873 -24.993 -25.102 -25.195 -25.301 -25.424 -25.547 -25.656 -25.758 -25.831 -25.879 -25.879 -25.857 -25.837 -25.814 -25.726 -25.597 -25.479 -25.368 -25.304 -25.257 -25.236 -25.271 -25.383 -25.515 -25.688 -25.854 -26.017 -26.218 -26.385 -26.505 -26.593 -26.693 -26.78 -26.852 -26.926 -26.992 -27.072 -27.179 -27.316 -27.474 -27.593 -27.745 -27.868 -27.948 -28.039 -28.146 -28.246 -28.368 -28.489 -28.571 -28.685 -28.816 -28.93 -29.035 -29.078 -29.1 -29.08 -29.012 -28.91 -28.781 -28.592 -28.424 -28.279 -28.136 -28.062 -27.99 -27.914 -27.874 -27.916 -27.96 -28.055 -28.164 -28.284 -28.443 -28.598 -28.747 -28.834 -28.915 -28.957 -29.011 -29.026 -29.027 -29.045 -28.991 -28.915 -28.77 -28.671 -28.587 -28.507 -28.401 -28.309 -28.251 -28.294 -28.425 -28.521 -28.581 -28.647 -28.755 -28.81 -28.868 -28.888 -28.895 -28.912 -28.882 -28.846 -28.844 -28.878 -28.906 -28.965 -29.034 -29.122 -29.246 -29.463 -29.661 -29.816 -29.958 -30.107 -30.236 -30.276 -30.287 -30.288 -30.262 -30.276 -30.297 -30.313 -30.31 -30.3 -30.294 -30.304 -30.309 -30.298 -30.341 -30.382 -30.374 -30.376 -30.316 -30.219 -30.088 -29.972 -29.895 -29.857 -29.893 -29.999 -30.104 -30.164 -30.209 -30.252 -30.32 -30.441 -30.544 -30.614 -30.679 -30.675 -30.661 -30.643 -30.568 -30.506 -30.466 -30.467 -30.506 -30.583 -30.706 -30.9 -31.114 -31.329 -31.53 -31.725 -31.947 -32.151 -32.304 -32.48 -32.654 -32.838 -33.008 -33.11 -33.154 -33.187 -33.175 -33.148 -33.111 -33.076 -33.051 -33.066 -33.055 -33.044 -33.014 -33.012 -33.082 -33.162 -33.311 -33.504 -33.718 -33.927 -34.095 -34.215 -34.341 -34.48 -34.638 -34.785 -34.904 -35.065 -35.209 -35.374 -35.5 -35.601 -35.658 -35.705 -35.754 -35.755 -35.768 -35.761 -35.748 -35.763 -35.763 -35.784 -35.834 -35.952 -36.121 -36.274 -36.476 -36.688 -36.871 -37.015 -37.091 -37.14 -37.165 -37.164 -37.168 -37.176 -37.158 -37.122 -37.071 -37.049 -37.041 -37.047 -37.102 -37.152 -37.175 -37.215 -37.27 -37.322 -37.392 -37.4 -37.402 -37.371 -37.312 -37.233 -37.171 -37.092 -37 -36.974 -36.999 -37.044 -37.137 -37.219 -37.314 -37.351 -37.446 -37.547 -37.678 -37.804 -37.88 -37.926 -37.939 -37.921 -37.923 -37.941 -37.948 -37.95 -37.979 -38.034 -38.076 -38.13 -38.221 -38.307 -38.411 -38.529 -38.698 -38.88 -39.12 -39.379 -39.615 -39.839 -40.013 -40.206 -40.395 -40.541 -40.656 -40.75 -40.834 -40.897 -40.997 -41.084 -41.158 -41.247 -41.367 -41.513 -41.718 -41.991 -42.237 -42.458 -42.616 -42.76 -42.921 -43.109 -43.244 -43.348 -43.465 -43.562 -43.624 -43.691 -43.731 -43.704 -43.664 -43.634 -43.61 -43.599 -43.619 -43.654 -43.674 -43.745 -43.883 -44.035 -44.21 -44.424 -44.581 -44.977 -45.238 -45.415 -45.591 -45.592 -45.159 -45.403 -45.741 -45.307 -45.729 
-#Dydx 0.004 -0.131 0.114 0.217 0.276 -0.088 -0.102 -0.169 -0.169 -0.169 -0.131 -0.135 -0.139 -0.149 -0.158 -0.16 -0.155 -0.15 -0.148 -0.149 -0.146 -0.145 -0.147 -0.151 -0.149 -0.15 -0.147 -0.141 -0.133 -0.125 -0.111 -0.091 -0.069 -0.05 -0.038 -0.032 -0.029 -0.03 -0.027 -0.032 -0.043 -0.053 -0.064 -0.07 -0.074 -0.071 -0.065 -0.055 -0.046 -0.04 -0.036 -0.037 -0.034 -0.025 -0.021 -0.023 -0.031 -0.044 -0.057 -0.065 -0.078 -0.094 -0.114 -0.136 -0.15 -0.159 -0.168 -0.169 -0.172 -0.179 -0.187 -0.196 -0.206 -0.214 -0.208 -0.202 -0.201 -0.19 -0.181 -0.168 -0.146 -0.119 -0.097 -0.076 -0.061 -0.049 -0.041 -0.029 -0.02 -0.018 -0.023 -0.032 -0.04 -0.053 -0.057 -0.06 -0.069 -0.083 -0.092 -0.104 -0.118 -0.124 -0.124 -0.128 -0.132 -0.138 -0.148 -0.159 -0.162 -0.166 -0.174 -0.174 -0.176 -0.175 -0.166 -0.15 -0.139 -0.127 -0.117 -0.11 -0.107 -0.109 -0.107 -0.108 -0.112 -0.115 -0.118 -0.127 -0.132 -0.133 -0.139 -0.149 -0.152 -0.158 -0.16 -0.156 -0.154 -0.152 -0.149 -0.148 -0.15 -0.155 -0.163 -0.168 -0.176 -0.184 -0.193 -0.193 -0.198 -0.193 -0.185 -0.181 -0.176 -0.164 -0.156 -0.144 -0.137 -0.134 -0.124 -0.116 -0.104 -0.098 -0.089 -0.084 -0.083 -0.088 -0.096 -0.109 -0.117 -0.126 -0.13 -0.136 -0.143 -0.152 -0.153 -0.155 -0.16 -0.17 -0.183 -0.193 -0.199 -0.202 -0.205 -0.195 -0.187 -0.182 -0.168 -0.152 -0.14 -0.134 -0.126 -0.116 -0.107 -0.089 -0.064 -0.045 -0.03 -0.021 -0.011 -0.007 -0.011 -0.01 -0.011 -0.008 -0.002 0.006 0.006 0.014 0.028 0.04 0.051 0.052 0.05 0.045 0.041 0.04 0.031 0.018 -0.003 -0.021 -0.044 -0.073 -0.102 -0.127 -0.147 -0.159 -0.16 -0.166 -0.173 -0.171 -0.166 -0.155 -0.147 -0.143 -0.133 -0.123 -0.107 -0.09 -0.071 -0.047 -0.025 -0.007 0.004 0.01 0.014 0.013 0.014 0.017 0.014 0.007 -0.001 -0.007 -0.021 -0.038 -0.055 -0.076 -0.095 -0.111 -0.125 -0.129 -0.124 -0.119 -0.113 -0.109 -0.108 -0.104 -0.099 -0.101 -0.106 -0.111 -0.116 -0.111 -0.109 -0.106 -0.105 -0.103 -0.106 -0.103 -0.105 -0.111 -0.103 -0.095 -0.084 -0.069 -0.046 -0.022 -0.001 0.026 0.044 0.053 0.058 0.06 0.062 0.057 0.062 0.06 0.059 0.049 0.038 0.017 -0.004 -0.023 -0.05 -0.074 -0.094 -0.099 -0.091 -0.084 -0.065 -0.042 -0.027 -0.007 0.005 0.01 0.015 0.024 0.024 0.029 0.034 0.041 0.038 0.035 0.026 0.008 -0.007 -0.018 -0.026 -0.034 -0.043 -0.043 -0.04 -0.042 -0.034 -0.03 -0.028 -0.027 -0.032 -0.042 -0.06 -0.072 -0.074 -0.08 -0.09 -0.103 -0.113 -0.111 -0.098 -0.086 -0.075 -0.068 -0.058 -0.054 -0.054 -0.052 -0.043 -0.025 -0.009 -0 0.006 0.006 0.003 0.011 0.01 0.013 0.01 0.01 0.019 0.024 0.025 0.024 0.022 0.015 -0 -0.015 -0.031 -0.038 -0.04 -0.04 -0.046 -0.048 -0.045 -0.044 -0.035 -0.034 -0.027 -0.024 -0.026 -0.024 -0.029 -0.041 -0.061 -0.081 -0.101 -0.127 -0.14 -0.143 -0.14 -0.143 -0.148 -0.159 -0.168 -0.169 -0.166 -0.152 -0.129 -0.101 -0.077 -0.056 -0.036 -0.021 -0.012 -0.012 -0.015 -0.023 -0.038 -0.048 -0.052 -0.055 -0.063 -0.068 -0.079 -0.091 -0.109 -0.127 -0.14 -0.146 -0.148 -0.152 -0.157 -0.148 -0.139 -0.134 -0.122 -0.11 -0.092 -0.078 -0.069 -0.062 -0.061 -0.063 -0.059 -0.061 -0.056 -0.057 -0.054 -0.055 -0.062 -0.077 -0.09 -0.104 -0.109 -0.106 -0.109 -0.101 -0.094 -0.078 -0.062 -0.046 -0.036 -0.027 -0.016 -0.01 -0.01 -0.013 -0.017 -0.012 -0.011 -0.005 -0.01 -0.017 -0.023 -0.029 -0.019 -0.007 0.005 0.013 0.018 0.02 0.019 0.012 0.002 -0.007 -0.011 -0.018 -0.033 -0.044 -0.049 -0.054 -0.054 -0.052 -0.06 -0.063 -0.068 -0.068 -0.057 -0.051 -0.047 -0.041 -0.033 -0.031 -0.034 -0.044 -0.061 -0.074 -0.084 -0.1 -0.115 -0.13 -0.145 -0.165 -0.173 -0.178 -0.169 -0.164 -0.162 -0.157 -0.154 -0.154 -0.152 -0.142 -0.135 -0.13 -0.128 -0.124 -0.125 -0.127 -0.132 -0.139 -0.15 -0.159 -0.163 -0.168 -0.169 -0.162 -0.156 -0.147 -0.133 -0.119 -0.108 -0.096 -0.079 -0.066 -0.048 -0.038 -0.027 -0.025 -0.027 -0.034 -0.046 -0.062 -0.077 -0.085 -0.095 -0.1 -0.109 -0.124 -0.128 -0.129 -0.131 -0.088 -0.088 -0.001 0.217 -0.122 -0.169 0.217 -0.211 -0.211 
-#SmoothedScore -0.226 -0.217 -0.479 -0.251 0.182 0.735 0.558 0.353 0.015 -0.322 -0.51 -0.848 -1.025 -1.286 -1.548 -1.934 -2.111 -2.112 -2.288 -1.736 -1.924 -1.696 -1.922 -2.308 -2.569 -2.813 -3.151 -3.377 -3.715 -3.976 -3.749 -4.01 -4.215 -4.553 -4.119 -4.345 -3.912 -3.684 -3.676 -3.667 -3.928 -3.495 -3.7 -3.926 -4.187 -4.573 -4.761 -4.938 -4.504 -4.842 -5.104 -5.442 -5.443 -4.891 -4.457 -4.459 -3.906 -4.111 -4.373 -4.759 -5.02 -5.197 -5.535 -5.102 -5.278 -5.664 -5.841 -6.084 -6.075 -6.263 -6.451 -6.627 -6.629 -6.89 -7.095 -7.356 -7.618 -8.004 -8.342 -8.68 -8.868 -9.055 -9.317 -9.174 -8.946 -9.208 -9.469 -8.917 -9.122 -9.123 -8.571 -8.137 -8.56 -8.821 -9.159 -9.403 -9.74 -9.307 -9.308 -9.57 -9.908 -10.113 -9.885 -10.146 -9.713 -9.901 -10.163 -10.367 -10.629 -10.89 -11.152 -11.413 -11.675 -11.882 -11.873 -12.05 -12.312 -12.313 -12.5 -12.839 -13.176 -12.624 -12.829 -13.033 -12.481 -12.689 -13.111 -13.102 -13.363 -13.551 -13.889 -14.227 -13.997 -14.241 -14.417 -14.594 -14.77 -15.108 -15.123 -14.896 -15.139 -15.316 -15.577 -15.915 -15.688 -16.074 -16.412 -16.269 -16.53 -16.718 -17.104 -17.281 -17.542 -17.804 -18.19 -18.452 -18.639 -18.206 -18.592 -18.159 -18.42 -18.807 -19.011 -18.459 -18.685 -18.946 -19.172 -19.51 -19.367 -19.572 -19.344 -19.605 -19.462 -19.724 -19.986 -20.19 -20.378 -20.716 -20.977 -20.993 -21.254 -21.431 -21.422 -21.598 -21.86 -22.048 -22.309 -22.731 -22.993 -23.254 -23.112 -23.498 -23.674 -23.122 -23.46 -23.722 -23.169 -23.16 -23.337 -23.723 -23.9 -23.757 -23.857 -23.424 -22.871 -23.209 -23.386 -23.772 -23.339 -23.564 -23.951 -23.808 -23.578 -23.145 -23.37 -22.937 -23.198 -23.2 -22.647 -22.639 -22.205 -22.543 -22.881 -22.872 -23.258 -23.52 -23.858 -24.083 -24.288 -24.55 -24.888 -25.075 -25.252 -25.428 -25.616 -25.064 -24.836 -25.174 -25.362 -25.588 -25.589 -25.927 -26.153 -26.414 -26.405 -26.262 -25.829 -25.601 -25.374 -24.941 -24.798 -24.789 -25.127 -25.303 -25.294 -25.471 -25.809 -26.07 -26.258 -26.52 -26.377 -26.368 -26.706 -26.707 -26.479 -26.866 -26.857 -27.118 -27.456 -27.023 -27.024 -27.362 -27.624 -27.615 -27.876 -27.976 -27.978 -28.4 -28.576 -28.578 -28.579 -28.146 -28.568 -28.34 -28.678 -29.016 -29.242 -29.014 -29.352 -29.529 -29.095 -29.339 -28.906 -28.472 -28.039 -27.606 -27.782 -27.23 -27.435 -27.821 -28.047 -28.308 -28.646 -28.823 -28.27 -28.532 -27.98 -28.366 -28.553 -28.94 -28.71 -28.953 -29.291 -29.553 -29.76 -29.208 -28.774 -28.766 -28.623 -28.19 -28.451 -27.899 -28.142 -28.368 -28.14 -28.348 -28.734 -29.072 -28.639 -28.411 -28.673 -28.898 -29.16 -29.498 -28.945 -28.393 -28.655 -28.993 -29.197 -28.645 -28.871 -29.078 -28.935 -29.14 -29.141 -29.527 -29.865 -30.042 -30.38 -30.567 -30.134 -30.396 -30.621 -30.809 -30.257 -30.114 -29.886 -29.877 -29.734 -29.911 -30.297 -30.683 -30.945 -31.149 -30.597 -30.045 -29.902 -30.079 -30.07 -30.257 -30.272 -29.839 -30.177 -29.625 -29.83 -30.017 -29.584 -29.97 -30.356 -30.694 -30.709 -30.725 -30.95 -30.72 -30.49 -30.348 -30.555 -30.655 -30.993 -30.763 -30.211 -30.399 -30.256 -30.482 -30.743 -30.92 -31.146 -31.484 -31.745 -32.131 -32.469 -32.646 -32.85 -33.237 -32.684 -32.457 -32.314 -32.7 -33.038 -33.281 -33.619 -33.957 -33.814 -33.381 -32.829 -32.396 -32.6 -32.862 -32.634 -32.896 -33.072 -33.41 -33.587 -33.848 -34.074 -34.335 -34.337 -34.598 -34.786 -34.353 -34.739 -34.511 -34.773 -34.96 -35.137 -35.475 -35.861 -36.087 -36.313 -35.76 -35.86 -36.198 -35.646 -35.647 -35.095 -35.283 -35.49 -35.828 -36.09 -36.266 -36.474 -36.65 -36.651 -36.913 -36.685 -37.023 -37.249 -37.587 -37.359 -37.35 -37.352 -36.799 -37.007 -36.777 -37.038 -37.04 -37.031 -37.022 -37.283 -37.14 -36.913 -37.174 -37.512 -37.756 -37.747 -37.314 -37.329 -36.776 -37.163 -37.5 -37.492 -37.483 -36.93 -36.497 -36.702 -36.693 -36.919 -37.18 -37.442 -37.618 -38.004 -38.266 -37.833 -37.69 -38.028 -37.798 -37.799 -37.8 -38.138 -37.705 -38.043 -37.815 -38.02 -38.246 -38.016 -38.402 -38.664 -38.436 -38.208 -38.47 -38.732 -38.957 -39.343 -39.605 -39.705 -39.966 -40.353 -40.614 -40.952 -41.214 -41.071 -40.843 -40.291 -40.552 -40.814 -41.152 -41.143 -41.404 -41.743 -41.744 -42.005 -42.182 -42.568 -42.34 -42.727 -43.064 -43.241 -43.418 -43.622 -43.479 -43.046 -43.432 -43.658 -43.863 -44.089 -43.861 -43.428 -43.653 -43.915 -43.687 -43.46 -43.685 -43.252 -43.513 -43.851 -44.189 -44.377 -44.639 -44.977 -45.238 -45.415 -45.591 -45.592 -45.159 -45.403 -45.741 -45.307 -45.729 
-#Disorder 
-#GlobDoms 
-#Dydx 0.217 0.114 0.004 0.004 -0.131 0.217 -0.102 -0.113 -0.131 -0.131 -0.115 -0.131 -0.142 -0.149 -0.156 -0.162 -0.173 -0.177 -0.183 -0.19 -0.197 -0.207 -0.212 -0.213 -0.206 -0.202 -0.19 -0.181 -0.168 -0.146 -0.119 -0.097 -0.076 -0.061 -0.049 -0.041 -0.035 -0.034 -0.041 -0.052 -0.06 -0.073 -0.082 -0.09 -0.097 -0.108 -0.123 -0.133 -0.146 -0.159 -0.163 -0.156 -0.153 -0.152 -0.151 -0.151 -0.157 -0.163 -0.16 -0.162 -0.166 -0.155 -0.148 -0.138 -0.126 -0.117 -0.11 -0.107 -0.109 -0.107 -0.109 -0.115 -0.122 -0.129 -0.13 -0.134 -0.131 -0.133 -0.142 -0.144 -0.138 -0.135 -0.124 -0.116 -0.114 -0.107 -0.102 -0.094 -0.091 -0.089 -0.084 -0.083 -0.088 -0.092 -0.102 -0.105 -0.104 -0.099 -0.098 -0.093 -0.089 -0.077 -0.072 -0.07 -0.067 -0.068 -0.06 -0.046 -0.034 -0.026 -0.02 -0.011 -0.007 -0.011 -0.01 -0.011 -0.008 -0.002 0.006 0.006 0.014 0.028 0.04 0.051 0.052 0.05 0.045 0.041 0.04 0.031 0.018 -0.003 -0.021 -0.044 -0.073 -0.102 -0.127 -0.147 -0.159 -0.16 -0.166 -0.173 -0.171 -0.166 -0.155 -0.147 -0.143 -0.133 -0.123 -0.107 -0.09 -0.071 -0.047 -0.025 -0.007 0.004 0.01 0.014 0.013 0.014 0.017 0.014 0.007 -0.001 -0.007 -0.021 -0.038 -0.055 -0.076 -0.095 -0.111 -0.125 -0.129 -0.124 -0.119 -0.113 -0.109 -0.108 -0.104 -0.099 -0.101 -0.106 -0.111 -0.116 -0.111 -0.109 -0.106 -0.105 -0.103 -0.106 -0.103 -0.105 -0.111 -0.103 -0.095 -0.084 -0.069 -0.046 -0.022 -0.001 0.026 0.044 0.053 0.058 0.06 0.062 0.057 0.062 0.06 0.059 0.049 0.038 0.017 -0.004 -0.023 -0.05 -0.074 -0.094 -0.099 -0.091 -0.084 -0.065 -0.042 -0.027 -0.007 0.005 0.01 0.015 0.024 0.024 0.029 0.034 0.041 0.038 0.035 0.026 0.008 -0.007 -0.018 -0.026 -0.034 -0.043 -0.043 -0.04 -0.042 -0.034 -0.03 -0.028 -0.027 -0.032 -0.042 -0.06 -0.072 -0.074 -0.08 -0.09 -0.103 -0.113 -0.111 -0.098 -0.086 -0.075 -0.068 -0.058 -0.054 -0.054 -0.052 -0.043 -0.025 -0.009 -0 0.006 0.006 0.003 0.011 0.01 0.013 0.01 0.01 0.019 0.024 0.025 0.024 0.022 0.015 -0 -0.015 -0.031 -0.038 -0.04 -0.04 -0.046 -0.048 -0.045 -0.044 -0.035 -0.034 -0.027 -0.024 -0.026 -0.024 -0.029 -0.041 -0.061 -0.081 -0.101 -0.127 -0.14 -0.143 -0.14 -0.143 -0.148 -0.159 -0.168 -0.169 -0.166 -0.152 -0.129 -0.101 -0.077 -0.056 -0.036 -0.021 -0.012 -0.012 -0.015 -0.023 -0.038 -0.048 -0.052 -0.055 -0.063 -0.068 -0.079 -0.091 -0.109 -0.127 -0.14 -0.146 -0.148 -0.152 -0.157 -0.148 -0.139 -0.134 -0.122 -0.11 -0.092 -0.078 -0.069 -0.062 -0.061 -0.063 -0.059 -0.061 -0.056 -0.057 -0.054 -0.055 -0.062 -0.077 -0.09 -0.104 -0.109 -0.106 -0.109 -0.101 -0.094 -0.078 -0.062 -0.046 -0.036 -0.027 -0.016 -0.01 -0.01 -0.013 -0.017 -0.012 -0.011 -0.005 -0.01 -0.017 -0.023 -0.029 -0.019 -0.007 0.005 0.013 0.018 0.02 0.019 0.012 0.002 -0.007 -0.011 -0.018 -0.033 -0.044 -0.049 -0.054 -0.054 -0.052 -0.06 -0.063 -0.068 -0.068 -0.057 -0.051 -0.047 -0.041 -0.033 -0.031 -0.034 -0.044 -0.061 -0.074 -0.084 -0.1 -0.115 -0.13 -0.145 -0.165 -0.173 -0.178 -0.169 -0.164 -0.162 -0.157 -0.154 -0.154 -0.152 -0.142 -0.135 -0.13 -0.128 -0.124 -0.125 -0.127 -0.132 -0.139 -0.15 -0.159 -0.163 -0.168 -0.169 -0.162 -0.156 -0.147 -0.133 -0.119 -0.108 -0.096 -0.079 -0.066 -0.048 -0.038 -0.027 -0.025 -0.027 -0.034 -0.046 -0.062 -0.077 -0.085 -0.095 -0.1 -0.109 -0.124 -0.128 -0.129 -0.131 -0.088 -0.088 -0.001 0.217 -0.122 -0.169 0.217 -0.211 -0.211 
-#SmoothedScore -0.226 0.207 0.435 0.444 0.453 0.191 0.624 0.42 0.194 -0.068 -0.454 -0.642 -0.818 -0.385 -0.723 -0.984 -1.322 -1.324 -1.511 -1.699 -1.875 -1.877 -2.138 -2.343 -2.605 -2.866 -3.252 -3.59 -3.928 -4.116 -4.303 -4.565 -4.422 -4.194 -4.456 -4.718 -4.165 -4.37 -4.371 -3.819 -3.386 -3.808 -4.069 -4.407 -4.651 -4.989 -4.99 -5.251 -5.589 -5.794 -5.566 -5.828 -5.395 -5.582 -5.844 -6.049 -6.31 -6.572 -6.833 -7.095 -7.302 -7.293 -7.47 -7.732 -7.733 -7.92 -8.258 -8.596 -8.044 -8.249 -8.453 -7.901 -8.108 -8.531 -8.522 -8.783 -8.971 -9.309 -9.647 -9.417 -9.679 -10.065 -10.326 -10.514 -10.081 -10.467 -10.034 -10.295 -10.681 -10.886 -10.334 -10.559 -10.821 -11.046 -11.384 -11.241 -11.446 -11.219 -11.48 -11.337 -11.599 -11.86 -12.065 -11.922 -12.308 -12.485 -11.932 -12.271 -12.532 -11.98 -11.971 -12.147 -12.534 -12.71 -12.567 -12.667 -12.234 -11.682 -12.02 -12.196 -12.583 -12.149 -12.375 -12.761 -12.618 -12.388 -11.955 -12.181 -11.747 -12.009 -12.01 -11.458 -11.449 -11.016 -11.354 -11.692 -11.683 -12.069 -12.33 -12.668 -12.894 -13.099 -13.36 -13.698 -13.886 -14.062 -14.239 -14.427 -13.874 -13.647 -13.985 -14.172 -14.398 -14.399 -14.737 -14.963 -15.224 -15.216 -15.073 -14.639 -14.412 -14.184 -13.751 -13.608 -13.599 -13.937 -14.114 -14.105 -14.281 -14.619 -14.881 -15.069 -15.33 -15.187 -15.178 -15.516 -15.518 -15.29 -15.676 -15.667 -15.929 -16.267 -15.833 -15.835 -16.173 -16.434 -16.425 -16.687 -16.787 -16.788 -17.21 -17.387 -17.388 -17.389 -16.956 -17.378 -17.151 -17.489 -17.827 -18.052 -17.825 -18.163 -18.339 -17.906 -18.149 -17.716 -17.283 -16.85 -16.416 -16.593 -16.041 -16.245 -16.632 -16.857 -17.119 -17.456 -17.633 -17.081 -17.342 -16.79 -17.176 -17.364 -17.75 -17.52 -17.764 -18.101 -18.363 -18.57 -18.018 -17.585 -17.576 -17.433 -17 -17.261 -16.709 -16.953 -17.178 -16.951 -17.158 -17.545 -17.882 -17.449 -17.222 -17.483 -17.709 -17.97 -18.308 -17.756 -17.204 -17.465 -17.803 -18.008 -17.455 -17.681 -17.889 -17.746 -17.95 -17.951 -18.338 -18.676 -18.852 -19.19 -19.378 -18.945 -19.206 -19.432 -19.619 -19.067 -18.924 -18.697 -18.688 -18.545 -18.721 -19.108 -19.494 -19.755 -19.96 -19.408 -18.855 -18.712 -18.889 -18.88 -19.068 -19.083 -18.65 -18.988 -18.435 -18.64 -18.828 -18.395 -18.781 -19.167 -19.505 -19.52 -19.535 -19.761 -19.531 -19.301 -19.158 -19.365 -19.466 -19.804 -19.574 -19.021 -19.209 -19.066 -19.292 -19.554 -19.73 -19.956 -20.294 -20.556 -20.942 -21.28 -21.456 -21.661 -22.047 -21.495 -21.267 -21.124 -21.51 -21.848 -22.092 -22.43 -22.768 -22.625 -22.191 -21.639 -21.206 -21.411 -21.672 -21.445 -21.706 -21.883 -22.221 -22.397 -22.659 -22.884 -23.146 -23.147 -23.409 -23.596 -23.163 -23.549 -23.322 -23.583 -23.771 -23.948 -24.285 -24.672 -24.897 -25.123 -24.571 -24.671 -25.009 -24.456 -24.458 -23.905 -24.093 -24.301 -24.638 -24.9 -25.077 -25.284 -25.461 -25.462 -25.723 -25.496 -25.834 -26.059 -26.397 -26.17 -26.161 -26.162 -25.61 -25.817 -25.587 -25.849 -25.85 -25.841 -25.832 -26.094 -25.951 -25.723 -25.985 -26.323 -26.566 -26.557 -26.124 -26.139 -25.587 -25.973 -26.311 -26.302 -26.293 -25.741 -25.308 -25.512 -25.503 -25.729 -25.991 -26.252 -26.429 -26.815 -27.076 -26.643 -26.5 -26.838 -26.608 -26.61 -26.611 -26.949 -26.515 -26.854 -26.626 -26.83 -27.056 -26.826 -27.213 -27.474 -27.247 -27.019 -27.281 -27.542 -27.768 -28.154 -28.415 -28.515 -28.777 -29.163 -29.425 -29.763 -30.024 -29.881 -29.654 -29.101 -29.363 -29.624 -29.962 -29.954 -30.215 -30.553 -30.554 -30.816 -30.992 -31.378 -31.151 -31.537 -31.875 -32.051 -32.228 -32.433 -32.29 -31.857 -32.243 -32.468 -32.673 -32.899 -32.671 -32.238 -32.464 -32.725 -32.498 -32.27 -32.496 -32.062 -32.324 -32.662 -33 -33.188 -33.449 -33.787 -34.049 -34.225 -34.402 -34.403 -33.97 -34.213 -34.551 -34.118 -34.54 
-#Disorder 
-#RawScore -0.226 0.207 0.435 0.444 0.453 0.191 0.624 0.42 0.194 -0.068 -0.16 -0.35 -0.523 -0.688 -0.852 -1.012 -1.185 -1.321 -1.461 -1.619 -1.798 -2.009 -2.263 -2.555 -2.788 -3.013 -3.276 -3.522 -3.74 -3.968 -4.179 -4.311 -4.371 -4.379 -4.35 -4.291 -4.233 -4.176 -4.126 -4.108 -4.144 -4.202 -4.336 -4.468 -4.584 -4.725 -4.901 -5.05 -5.223 -5.409 -5.562 -5.681 -5.805 -5.923 -6.064 -6.207 -6.359 -6.501 -6.706 -6.919 -7.139 -7.374 -7.591 -7.725 -7.845 -7.938 -8.013 -8.07 -8.12 -8.204 -8.289 -8.371 -8.45 -8.545 -8.701 -8.836 -9.016 -9.2 -9.396 -9.552 -9.756 -9.947 -10.062 -10.152 -10.236 -10.318 -10.39 -10.475 -10.552 -10.656 -10.716 -10.768 -10.839 -10.95 -11.065 -11.151 -11.309 -11.403 -11.489 -11.635 -11.785 -11.863 -11.908 -11.95 -12.013 -12.091 -12.181 -12.298 -12.34 -12.363 -12.331 -12.329 -12.314 -12.287 -12.264 -12.284 -12.347 -12.341 -12.373 -12.395 -12.368 -12.352 -12.317 -12.313 -12.282 -12.216 -12.167 -12.071 -11.923 -11.786 -11.675 -11.619 -11.561 -11.547 -11.613 -11.73 -11.884 -12.051 -12.313 -12.577 -12.845 -13.116 -13.336 -13.548 -13.683 -13.803 -13.913 -14.005 -14.111 -14.235 -14.357 -14.467 -14.568 -14.642 -14.689 -14.689 -14.668 -14.647 -14.625 -14.537 -14.408 -14.289 -14.179 -14.114 -14.067 -14.047 -14.081 -14.193 -14.326 -14.499 -14.665 -14.828 -15.028 -15.196 -15.316 -15.403 -15.503 -15.59 -15.662 -15.737 -15.802 -15.883 -15.989 -16.126 -16.285 -16.403 -16.556 -16.679 -16.758 -16.849 -16.956 -17.056 -17.179 -17.299 -17.382 -17.496 -17.627 -17.741 -17.846 -17.888 -17.91 -17.891 -17.823 -17.72 -17.591 -17.402 -17.235 -17.09 -16.947 -16.873 -16.801 -16.724 -16.684 -16.726 -16.77 -16.865 -16.975 -17.094 -17.254 -17.409 -17.558 -17.645 -17.725 -17.767 -17.822 -17.836 -17.837 -17.855 -17.801 -17.726 -17.58 -17.481 -17.397 -17.317 -17.211 -17.119 -17.062 -17.105 -17.235 -17.331 -17.391 -17.458 -17.565 -17.621 -17.678 -17.698 -17.706 -17.723 -17.692 -17.656 -17.655 -17.689 -17.716 -17.776 -17.844 -17.933 -18.056 -18.273 -18.471 -18.626 -18.769 -18.917 -19.046 -19.086 -19.097 -19.098 -19.072 -19.087 -19.107 -19.123 -19.12 -19.111 -19.104 -19.114 -19.119 -19.109 -19.151 -19.193 -19.185 -19.186 -19.126 -19.03 -18.898 -18.783 -18.706 -18.668 -18.704 -18.81 -18.914 -18.975 -19.02 -19.062 -19.131 -19.251 -19.354 -19.424 -19.489 -19.485 -19.471 -19.453 -19.378 -19.316 -19.277 -19.278 -19.317 -19.393 -19.516 -19.71 -19.924 -20.139 -20.341 -20.535 -20.757 -20.962 -21.115 -21.29 -21.465 -21.648 -21.818 -21.921 -21.964 -21.997 -21.985 -21.959 -21.921 -21.886 -21.861 -21.877 -21.865 -21.854 -21.824 -21.822 -21.892 -21.972 -22.122 -22.314 -22.529 -22.737 -22.906 -23.026 -23.152 -23.291 -23.449 -23.596 -23.714 -23.876 -24.02 -24.184 -24.311 -24.412 -24.469 -24.516 -24.565 -24.565 -24.578 -24.571 -24.559 -24.573 -24.574 -24.594 -24.645 -24.763 -24.931 -25.084 -25.286 -25.499 -25.681 -25.826 -25.902 -25.951 -25.976 -25.974 -25.979 -25.986 -25.968 -25.932 -25.882 -25.86 -25.851 -25.858 -25.912 -25.962 -25.986 -26.025 -26.081 -26.132 -26.202 -26.211 -26.213 -26.182 -26.123 -26.044 -25.982 -25.902 -25.81 -25.785 -25.809 -25.854 -25.948 -26.03 -26.125 -26.161 -26.256 -26.358 -26.488 -26.614 -26.69 -26.737 -26.75 -26.732 -26.733 -26.752 -26.759 -26.761 -26.79 -26.844 -26.886 -26.94 -27.032 -27.117 -27.221 -27.34 -27.508 -27.691 -27.93 -28.189 -28.426 -28.649 -28.823 -29.016 -29.206 -29.352 -29.467 -29.56 -29.645 -29.708 -29.808 -29.894 -29.969 -30.058 -30.177 -30.323 -30.529 -30.802 -31.047 -31.268 -31.426 -31.571 -31.732 -31.919 -32.054 -32.158 -32.275 -32.372 -32.434 -32.501 -32.542 -32.514 -32.474 -32.444 -32.421 -32.409 -32.429 -32.465 -32.485 -32.556 -32.693 -32.846 -33.021 -33.234 -33.392 -33.787 -34.049 -34.225 -34.402 -34.403 -33.97 -34.213 -34.551 -34.118 -34.54 
-#GlobDoms 
-#RawScore -0.226 -0.217 -0.479 -0.251 0.182 0.735 0.558 0.353 0.015 -0.322 -0.526 -0.755 -0.967 -1.2 -1.424 -1.607 -1.732 -1.833 -1.923 -2.043 -2.157 -2.266 -2.377 -2.531 -2.68 -2.868 -3.082 -3.293 -3.484 -3.653 -3.782 -3.865 -3.87 -3.845 -3.788 -3.723 -3.668 -3.659 -3.653 -3.665 -3.662 -3.706 -3.826 -4.013 -4.171 -4.374 -4.511 -4.589 -4.618 -4.616 -4.616 -4.557 -4.53 -4.49 -4.438 -4.415 -4.414 -4.458 -4.485 -4.548 -4.655 -4.832 -5.042 -5.242 -5.422 -5.605 -5.733 -5.857 -5.987 -6.15 -6.341 -6.55 -6.816 -7.069 -7.301 -7.533 -7.802 -8.049 -8.266 -8.494 -8.706 -8.837 -8.897 -8.906 -8.876 -8.817 -8.784 -8.752 -8.712 -8.675 -8.655 -8.686 -8.757 -8.829 -8.883 -8.964 -9.136 -9.272 -9.422 -9.621 -9.753 -9.8 -9.855 -9.895 -9.942 -9.992 -10.097 -10.152 -10.19 -10.265 -10.357 -10.473 -10.567 -10.67 -10.79 -10.945 -11.14 -11.317 -11.526 -11.801 -12.012 -12.254 -12.487 -12.679 -12.866 -13.087 -13.29 -13.432 -13.562 -13.68 -13.781 -13.865 -13.953 -14.026 -14.103 -14.163 -14.215 -14.286 -14.379 -14.488 -14.572 -14.704 -14.803 -14.92 -15.081 -15.265 -15.402 -15.547 -15.701 -15.859 -16.051 -16.243 -16.48 -16.684 -16.902 -17.141 -17.352 -17.547 -17.772 -17.974 -18.153 -18.3 -18.416 -18.54 -18.646 -18.749 -18.85 -18.89 -18.888 -18.847 -18.844 -18.826 -18.798 -18.775 -18.795 -18.858 -18.853 -18.885 -18.906 -18.879 -18.864 -18.829 -18.824 -18.793 -18.728 -18.678 -18.582 -18.434 -18.298 -18.186 -18.13 -18.073 -18.058 -18.125 -18.241 -18.396 -18.562 -18.824 -19.088 -19.356 -19.627 -19.847 -20.059 -20.194 -20.314 -20.424 -20.516 -20.622 -20.746 -20.868 -20.978 -21.08 -21.153 -21.2 -21.2 -21.179 -21.159 -21.136 -21.048 -20.919 -20.801 -20.69 -20.625 -20.578 -20.558 -20.592 -20.705 -20.837 -21.01 -21.176 -21.339 -21.54 -21.707 -21.827 -21.914 -22.014 -22.101 -22.174 -22.248 -22.313 -22.394 -22.5 -22.638 -22.796 -22.914 -23.067 -23.19 -23.269 -23.361 -23.468 -23.568 -23.69 -23.81 -23.893 -24.007 -24.138 -24.252 -24.357 -24.399 -24.421 -24.402 -24.334 -24.232 -24.103 -23.914 -23.746 -23.601 -23.458 -23.384 -23.312 -23.236 -23.195 -23.238 -23.281 -23.376 -23.486 -23.605 -23.765 -23.92 -24.069 -24.156 -24.237 -24.279 -24.333 -24.348 -24.348 -24.367 -24.312 -24.237 -24.091 -23.992 -23.908 -23.828 -23.722 -23.63 -23.573 -23.616 -23.746 -23.842 -23.903 -23.969 -24.076 -24.132 -24.189 -24.209 -24.217 -24.234 -24.203 -24.168 -24.166 -24.2 -24.228 -24.287 -24.355 -24.444 -24.567 -24.785 -24.982 -25.138 -25.28 -25.428 -25.557 -25.597 -25.608 -25.61 -25.583 -25.598 -25.618 -25.635 -25.632 -25.622 -25.615 -25.626 -25.63 -25.62 -25.663 -25.704 -25.696 -25.698 -25.638 -25.541 -25.41 -25.294 -25.217 -25.179 -25.215 -25.321 -25.426 -25.486 -25.531 -25.573 -25.642 -25.763 -25.866 -25.936 -26 -25.996 -25.983 -25.964 -25.89 -25.828 -25.788 -25.789 -25.828 -25.904 -26.027 -26.221 -26.435 -26.65 -26.852 -27.046 -27.268 -27.473 -27.626 -27.801 -27.976 -28.159 -28.33 -28.432 -28.475 -28.508 -28.496 -28.47 -28.432 -28.397 -28.372 -28.388 -28.376 -28.366 -28.335 -28.333 -28.403 -28.483 -28.633 -28.826 -29.04 -29.249 -29.417 -29.537 -29.663 -29.802 -29.96 -30.107 -30.226 -30.387 -30.531 -30.695 -30.822 -30.923 -30.98 -31.027 -31.076 -31.076 -31.089 -31.082 -31.07 -31.084 -31.085 -31.105 -31.156 -31.274 -31.443 -31.595 -31.798 -32.01 -32.192 -32.337 -32.413 -32.462 -32.487 -32.486 -32.49 -32.497 -32.479 -32.443 -32.393 -32.371 -32.362 -32.369 -32.423 -32.473 -32.497 -32.536 -32.592 -32.643 -32.714 -32.722 -32.724 -32.693 -32.634 -32.555 -32.493 -32.414 -32.321 -32.296 -32.321 -32.366 -32.459 -32.541 -32.636 -32.673 -32.767 -32.869 -32.999 -33.125 -33.201 -33.248 -33.261 -33.243 -33.244 -33.263 -33.27 -33.272 -33.301 -33.355 -33.398 -33.451 -33.543 -33.629 -33.733 -33.851 -34.02 -34.202 -34.442 -34.7 -34.937 -35.161 -35.335 -35.528 -35.717 -35.863 -35.978 -36.072 -36.156 -36.219 -36.319 -36.406 -36.48 -36.569 -36.688 -36.834 -37.04 -37.265 -37.504 -37.89 -37.662 -38.048 -38.386 -38.563 -38.739 -38.944 -38.801 -39.223 
-#Dydx 0.004 -0.131 0.114 0.217 0.276 -0.088 -0.102 -0.169 -0.169 -0.169 -0.131 -0.135 -0.141 -0.152 -0.16 -0.164 -0.158 -0.155 -0.152 -0.146 -0.144 -0.142 -0.146 -0.141 -0.14 -0.133 -0.125 -0.119 -0.11 -0.105 -0.086 -0.069 -0.05 -0.038 -0.032 -0.029 -0.03 -0.027 -0.032 -0.043 -0.053 -0.064 -0.07 -0.074 -0.071 -0.065 -0.055 -0.046 -0.04 -0.036 -0.037 -0.034 -0.025 -0.021 -0.023 -0.031 -0.044 -0.057 -0.065 -0.078 -0.094 -0.114 -0.136 -0.15 -0.159 -0.168 -0.169 -0.172 -0.179 -0.187 -0.196 -0.206 -0.214 -0.208 -0.202 -0.201 -0.19 -0.181 -0.168 -0.146 -0.119 -0.097 -0.076 -0.061 -0.049 -0.041 -0.029 -0.02 -0.018 -0.023 -0.032 -0.04 -0.049 -0.059 -0.068 -0.084 -0.094 -0.098 -0.106 -0.105 -0.097 -0.086 -0.079 -0.075 -0.076 -0.082 -0.087 -0.09 -0.093 -0.095 -0.103 -0.113 -0.122 -0.129 -0.139 -0.153 -0.173 -0.185 -0.198 -0.202 -0.2 -0.19 -0.184 -0.18 -0.176 -0.164 -0.156 -0.144 -0.137 -0.134 -0.124 -0.116 -0.104 -0.098 -0.089 -0.084 -0.083 -0.088 -0.096 -0.109 -0.117 -0.126 -0.13 -0.136 -0.143 -0.152 -0.153 -0.155 -0.16 -0.17 -0.183 -0.193 -0.199 -0.202 -0.205 -0.195 -0.187 -0.182 -0.168 -0.152 -0.14 -0.134 -0.126 -0.116 -0.107 -0.089 -0.064 -0.045 -0.03 -0.021 -0.011 -0.007 -0.011 -0.01 -0.011 -0.008 -0.002 0.006 0.006 0.014 0.028 0.04 0.051 0.052 0.05 0.045 0.041 0.04 0.031 0.018 -0.003 -0.021 -0.044 -0.073 -0.102 -0.127 -0.147 -0.159 -0.16 -0.166 -0.173 -0.171 -0.166 -0.155 -0.147 -0.143 -0.133 -0.123 -0.107 -0.09 -0.071 -0.047 -0.025 -0.007 0.004 0.01 0.014 0.013 0.014 0.017 0.014 0.007 -0.001 -0.007 -0.021 -0.038 -0.055 -0.076 -0.095 -0.111 -0.125 -0.129 -0.124 -0.119 -0.113 -0.109 -0.108 -0.104 -0.099 -0.101 -0.106 -0.111 -0.116 -0.111 -0.109 -0.106 -0.105 -0.103 -0.106 -0.103 -0.105 -0.111 -0.103 -0.095 -0.084 -0.069 -0.046 -0.022 -0.001 0.026 0.044 0.053 0.058 0.06 0.062 0.057 0.062 0.06 0.059 0.049 0.038 0.017 -0.004 -0.023 -0.05 -0.074 -0.094 -0.099 -0.091 -0.084 -0.065 -0.042 -0.027 -0.007 0.005 0.01 0.015 0.024 0.024 0.029 0.034 0.041 0.038 0.035 0.026 0.008 -0.007 -0.018 -0.026 -0.034 -0.043 -0.043 -0.04 -0.042 -0.034 -0.03 -0.028 -0.027 -0.032 -0.042 -0.06 -0.072 -0.074 -0.08 -0.09 -0.103 -0.113 -0.111 -0.098 -0.086 -0.075 -0.068 -0.058 -0.054 -0.054 -0.052 -0.043 -0.025 -0.009 -0 0.006 0.006 0.003 0.011 0.01 0.013 0.01 0.01 0.019 0.024 0.025 0.024 0.022 0.015 -0 -0.015 -0.031 -0.038 -0.04 -0.04 -0.046 -0.048 -0.045 -0.044 -0.035 -0.034 -0.027 -0.024 -0.026 -0.024 -0.029 -0.041 -0.061 -0.081 -0.101 -0.127 -0.14 -0.143 -0.14 -0.143 -0.148 -0.159 -0.168 -0.169 -0.166 -0.152 -0.129 -0.101 -0.077 -0.056 -0.036 -0.021 -0.012 -0.012 -0.015 -0.023 -0.038 -0.048 -0.052 -0.055 -0.063 -0.068 -0.079 -0.091 -0.109 -0.127 -0.14 -0.146 -0.148 -0.152 -0.157 -0.148 -0.139 -0.134 -0.122 -0.11 -0.092 -0.078 -0.069 -0.062 -0.061 -0.063 -0.059 -0.061 -0.056 -0.057 -0.054 -0.055 -0.062 -0.077 -0.09 -0.104 -0.109 -0.106 -0.109 -0.101 -0.094 -0.078 -0.062 -0.046 -0.036 -0.027 -0.016 -0.01 -0.01 -0.013 -0.017 -0.012 -0.011 -0.005 -0.01 -0.017 -0.023 -0.029 -0.019 -0.007 0.005 0.013 0.018 0.02 0.019 0.012 0.002 -0.007 -0.011 -0.018 -0.033 -0.044 -0.049 -0.054 -0.054 -0.052 -0.06 -0.063 -0.068 -0.068 -0.057 -0.051 -0.047 -0.041 -0.033 -0.031 -0.034 -0.044 -0.061 -0.074 -0.084 -0.1 -0.115 -0.13 -0.145 -0.165 -0.173 -0.178 -0.169 -0.164 -0.162 -0.157 -0.154 -0.154 -0.152 -0.142 -0.135 -0.13 -0.128 -0.124 -0.125 -0.127 -0.132 -0.139 -0.15 -0.159 -0.174 -0.193 0.114 -0.193 -0.169 -0.088 -0.088 -0.102 0.071 -0.211 -0.211 
-#Disorder 
-#GlobDoms 
-#SmoothedScore -0.226 -0.217 -0.479 -0.251 0.182 0.735 0.558 0.353 0.015 -0.322 -0.51 -0.848 -1.025 -1.286 -1.548 -1.934 -2.111 -2.112 -2.288 -1.736 -1.924 -1.696 -2.082 -2.344 -2.587 -2.925 -3.151 -3.489 -3.75 -3.523 -3.784 -3.989 -4.327 -3.894 -4.12 -3.687 -3.459 -3.45 -3.441 -3.703 -3.269 -3.474 -3.7 -3.962 -4.348 -4.535 -4.712 -4.279 -4.617 -4.878 -5.216 -5.217 -4.665 -4.232 -4.233 -3.681 -3.885 -4.147 -4.533 -4.795 -4.971 -5.309 -4.876 -5.053 -5.439 -5.615 -5.859 -5.85 -6.037 -6.225 -6.402 -6.403 -6.665 -6.869 -7.131 -7.392 -7.779 -8.116 -8.454 -8.642 -8.83 -9.091 -8.948 -8.721 -8.982 -9.244 -8.691 -8.896 -8.897 -8.345 -7.912 -8.334 -8.596 -8.934 -9.177 -9.515 -9.082 -9.083 -9.344 -9.682 -9.887 -9.659 -9.661 -9.848 -10.186 -10.524 -9.972 -10.177 -10.381 -9.829 -10.036 -10.459 -10.45 -10.711 -10.899 -11.237 -11.009 -11.395 -11.733 -11.59 -11.852 -12.04 -12.426 -12.602 -12.864 -13.126 -13.512 -13.773 -13.961 -13.528 -13.914 -13.481 -13.742 -14.128 -14.333 -13.781 -14.006 -14.268 -14.493 -14.831 -14.689 -14.893 -14.665 -14.927 -14.784 -15.046 -15.307 -15.512 -15.7 -16.038 -16.299 -16.314 -16.576 -16.752 -16.743 -16.92 -17.182 -17.369 -17.631 -18.053 -18.315 -18.576 -18.433 -18.819 -18.996 -18.444 -18.782 -19.043 -18.491 -18.482 -18.659 -19.045 -19.221 -19.079 -19.179 -18.745 -18.193 -18.531 -18.708 -19.094 -18.66 -18.886 -19.272 -19.129 -18.899 -18.466 -18.692 -18.259 -18.52 -18.521 -17.969 -17.96 -17.527 -17.865 -18.203 -18.194 -18.58 -18.842 -19.18 -19.405 -19.61 -19.871 -20.209 -20.397 -20.574 -20.75 -20.938 -20.385 -20.158 -20.496 -20.684 -20.909 -20.911 -21.249 -21.474 -21.736 -21.727 -21.584 -21.151 -20.923 -20.695 -20.262 -20.119 -20.111 -20.448 -20.625 -20.616 -20.793 -21.131 -21.392 -21.58 -21.841 -21.698 -21.69 -22.028 -22.029 -21.801 -22.187 -22.178 -22.44 -22.778 -22.345 -22.346 -22.684 -22.945 -22.937 -23.198 -23.298 -23.299 -23.722 -23.898 -23.899 -23.901 -23.467 -23.89 -23.662 -24 -24.338 -24.563 -24.336 -24.674 -24.85 -24.417 -24.66 -24.227 -23.794 -23.361 -22.928 -23.104 -22.552 -22.757 -23.143 -23.368 -23.63 -23.968 -24.144 -23.592 -23.854 -23.301 -23.687 -23.875 -24.261 -24.031 -24.275 -24.613 -24.874 -25.082 -24.529 -24.096 -24.087 -23.944 -23.511 -23.773 -23.22 -23.464 -23.69 -23.462 -23.67 -24.056 -24.394 -23.961 -23.733 -23.994 -24.22 -24.482 -24.819 -24.267 -23.715 -23.976 -24.314 -24.519 -23.967 -24.192 -24.4 -24.257 -24.462 -24.463 -24.849 -25.187 -25.363 -25.701 -25.889 -25.456 -25.717 -25.943 -26.131 -25.578 -25.435 -25.208 -25.199 -25.056 -25.233 -25.619 -26.005 -26.267 -26.471 -25.919 -25.367 -25.224 -25.4 -25.391 -25.579 -25.594 -25.161 -25.499 -24.947 -25.151 -25.339 -24.906 -25.292 -25.678 -26.016 -26.031 -26.046 -26.272 -26.042 -25.812 -25.669 -25.877 -25.977 -26.315 -26.085 -25.533 -25.72 -25.577 -25.803 -26.065 -26.241 -26.467 -26.805 -27.067 -27.453 -27.791 -27.968 -28.172 -28.558 -28.006 -27.778 -27.635 -28.022 -28.36 -28.603 -28.941 -29.279 -29.136 -28.703 -28.15 -27.717 -27.922 -28.183 -27.956 -28.217 -28.394 -28.732 -28.909 -29.17 -29.396 -29.657 -29.658 -29.92 -30.108 -29.674 -30.06 -29.833 -30.094 -30.282 -30.459 -30.797 -31.183 -31.408 -31.634 -31.082 -31.182 -31.52 -30.968 -30.969 -30.417 -30.604 -30.812 -31.15 -31.411 -31.588 -31.795 -31.972 -31.973 -32.235 -32.007 -32.345 -32.57 -32.908 -32.681 -32.672 -32.673 -32.121 -32.328 -32.098 -32.36 -32.361 -32.352 -32.343 -32.605 -32.462 -32.235 -32.496 -32.834 -33.077 -33.069 -32.635 -32.65 -32.098 -32.484 -32.822 -32.813 -32.804 -32.252 -31.819 -32.024 -32.015 -32.24 -32.502 -32.763 -32.94 -33.326 -33.588 -33.154 -33.012 -33.349 -33.12 -33.121 -33.122 -33.46 -33.027 -33.365 -33.137 -33.342 -33.568 -33.338 -33.724 -33.985 -33.758 -33.53 -33.792 -34.053 -34.279 -34.665 -34.926 -35.027 -35.288 -35.674 -35.936 -36.274 -36.535 -36.393 -36.165 -35.612 -35.874 -36.136 -36.473 -36.465 -36.726 -37.064 -37.065 -37.327 -37.504 -37.89 -37.662 -38.048 -38.386 -38.563 -38.739 -38.944 -38.801 -39.223